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

47706 строки
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  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. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. }
  1868. //species
  1869. function getSpeciesInfo(speciesList) {
  1870. let result = new Set();
  1871. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1872. result.add(entry)
  1873. });
  1874. return Array.from(result);
  1875. };
  1876. function getSpeciesInfoHelper(species) {
  1877. if (!speciesData[species]) {
  1878. console.warn(species + " doesn't exist");
  1879. return [];
  1880. }
  1881. if (speciesData[species].parents) {
  1882. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1883. } else {
  1884. return [species];
  1885. }
  1886. }
  1887. characterMakers.push(() => makeCharacter(
  1888. {
  1889. name: "Fen",
  1890. species: ["crux"],
  1891. description: {
  1892. title: "Bio",
  1893. text: "Very furry. Sheds on everything."
  1894. },
  1895. tags: [
  1896. "anthro",
  1897. "goo"
  1898. ]
  1899. },
  1900. {
  1901. front: {
  1902. height: math.unit(12, "feet"),
  1903. weight: math.unit(2400, "lb"),
  1904. name: "Front",
  1905. image: {
  1906. source: "./media/characters/fen/front.svg",
  1907. extra: 1804/1562,
  1908. bottom: 205/2009
  1909. }
  1910. },
  1911. diving: {
  1912. height: math.unit(4.9, "meters"),
  1913. weight: math.unit(2400, "lb"),
  1914. name: "Diving",
  1915. image: {
  1916. source: "./media/characters/fen/diving.svg"
  1917. }
  1918. },
  1919. goo: {
  1920. height: math.unit(12, "feet"),
  1921. weight: math.unit(3000, "lb"),
  1922. capacity: math.unit(6, "people"),
  1923. name: "Goo",
  1924. image: {
  1925. source: "./media/characters/fen/goo.svg",
  1926. extra: 1307/1071,
  1927. bottom: 134/1441
  1928. }
  1929. },
  1930. maw: {
  1931. height: math.unit(5.03, "feet"),
  1932. name: "Maw",
  1933. image: {
  1934. source: "./media/characters/fen/maw.svg"
  1935. }
  1936. },
  1937. gooCeiling: {
  1938. height: math.unit(6.6, "feet"),
  1939. weight: math.unit(3000, "lb"),
  1940. capacity: math.unit(6, "people"),
  1941. name: "Goo (Ceiling)",
  1942. image: {
  1943. source: "./media/characters/fen/goo-ceiling.svg"
  1944. }
  1945. },
  1946. back: {
  1947. height: math.unit(12, "feet"),
  1948. weight: math.unit(2400, "lb"),
  1949. name: "Back",
  1950. image: {
  1951. source: "./media/characters/fen/back.svg",
  1952. },
  1953. info: {
  1954. description: {
  1955. mode: "append",
  1956. text: "\n\nHe is not currently looking at you."
  1957. }
  1958. }
  1959. },
  1960. full: {
  1961. height: math.unit(1.6, "meter"),
  1962. weight: math.unit(3200, "lb"),
  1963. name: "Full",
  1964. image: {
  1965. source: "./media/characters/fen/full.svg",
  1966. extra: 1133/859,
  1967. bottom: 145/1278
  1968. },
  1969. info: {
  1970. description: {
  1971. mode: "append",
  1972. text: "\n\nMunch."
  1973. }
  1974. }
  1975. },
  1976. gooLounging: {
  1977. height: math.unit(4.53, "feet"),
  1978. weight: math.unit(3000, "lb"),
  1979. capacity: math.unit(6, "people"),
  1980. name: "Goo (Lounging)",
  1981. image: {
  1982. source: "./media/characters/fen/goo.svg",
  1983. bottom: 116 / 613
  1984. }
  1985. },
  1986. lounging: {
  1987. height: math.unit(10.52, "feet"),
  1988. weight: math.unit(2400, "lb"),
  1989. name: "Lounging",
  1990. image: {
  1991. source: "./media/characters/fen/lounging.svg"
  1992. }
  1993. },
  1994. },
  1995. [
  1996. {
  1997. name: "Small",
  1998. height: math.unit(2.2428, "meter")
  1999. },
  2000. {
  2001. name: "Normal",
  2002. height: math.unit(12, "feet"),
  2003. default: true,
  2004. },
  2005. {
  2006. name: "Big",
  2007. height: math.unit(20, "feet")
  2008. },
  2009. {
  2010. name: "Minimacro",
  2011. height: math.unit(40, "feet"),
  2012. info: {
  2013. description: {
  2014. mode: "append",
  2015. text: "\n\nTOO DAMN BIG"
  2016. }
  2017. }
  2018. },
  2019. {
  2020. name: "Macro",
  2021. height: math.unit(100, "feet"),
  2022. info: {
  2023. description: {
  2024. mode: "append",
  2025. text: "\n\nTOO DAMN BIG"
  2026. }
  2027. }
  2028. },
  2029. {
  2030. name: "Megamacro",
  2031. height: math.unit(2, "miles")
  2032. },
  2033. {
  2034. name: "Gigamacro",
  2035. height: math.unit(10, "earths")
  2036. },
  2037. ]
  2038. ))
  2039. characterMakers.push(() => makeCharacter(
  2040. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2041. {
  2042. front: {
  2043. height: math.unit(183, "cm"),
  2044. weight: math.unit(80, "kg"),
  2045. name: "Front",
  2046. image: {
  2047. source: "./media/characters/sofia-fluttertail/front.svg",
  2048. bottom: 0.01,
  2049. extra: 2154 / 2081
  2050. }
  2051. },
  2052. frontAlt: {
  2053. height: math.unit(183, "cm"),
  2054. weight: math.unit(80, "kg"),
  2055. name: "Front (alt)",
  2056. image: {
  2057. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2058. }
  2059. },
  2060. back: {
  2061. height: math.unit(183, "cm"),
  2062. weight: math.unit(80, "kg"),
  2063. name: "Back",
  2064. image: {
  2065. source: "./media/characters/sofia-fluttertail/back.svg"
  2066. }
  2067. },
  2068. kneeling: {
  2069. height: math.unit(125, "cm"),
  2070. weight: math.unit(80, "kg"),
  2071. name: "Kneeling",
  2072. image: {
  2073. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2074. extra: 1033 / 977,
  2075. bottom: 23.7 / 1057
  2076. }
  2077. },
  2078. maw: {
  2079. height: math.unit(183 / 5, "cm"),
  2080. name: "Maw",
  2081. image: {
  2082. source: "./media/characters/sofia-fluttertail/maw.svg"
  2083. }
  2084. },
  2085. mawcloseup: {
  2086. height: math.unit(183 / 5 * 0.41, "cm"),
  2087. name: "Maw (Closeup)",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2090. }
  2091. },
  2092. paws: {
  2093. height: math.unit(1.17, "feet"),
  2094. name: "Paws",
  2095. image: {
  2096. source: "./media/characters/sofia-fluttertail/paws.svg",
  2097. extra: 851 / 851,
  2098. bottom: 17 / 868
  2099. }
  2100. },
  2101. },
  2102. [
  2103. {
  2104. name: "Normal",
  2105. height: math.unit(1.83, "meter")
  2106. },
  2107. {
  2108. name: "Size Thief",
  2109. height: math.unit(18, "feet")
  2110. },
  2111. {
  2112. name: "50 Foot Collie",
  2113. height: math.unit(50, "feet")
  2114. },
  2115. {
  2116. name: "Macro",
  2117. height: math.unit(96, "feet"),
  2118. default: true
  2119. },
  2120. {
  2121. name: "Megamerger",
  2122. height: math.unit(650, "feet")
  2123. },
  2124. ]
  2125. ))
  2126. characterMakers.push(() => makeCharacter(
  2127. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2128. {
  2129. front: {
  2130. height: math.unit(7, "feet"),
  2131. weight: math.unit(100, "kg"),
  2132. name: "Front",
  2133. image: {
  2134. source: "./media/characters/march/front.svg",
  2135. extra: 1992/1851,
  2136. bottom: 39/2031
  2137. }
  2138. },
  2139. foot: {
  2140. height: math.unit(0.9, "feet"),
  2141. name: "Foot",
  2142. image: {
  2143. source: "./media/characters/march/foot.svg"
  2144. }
  2145. },
  2146. },
  2147. [
  2148. {
  2149. name: "Normal",
  2150. height: math.unit(7.9, "feet")
  2151. },
  2152. {
  2153. name: "Macro",
  2154. height: math.unit(220, "meters")
  2155. },
  2156. {
  2157. name: "Megamacro",
  2158. height: math.unit(2.98, "km"),
  2159. default: true
  2160. },
  2161. {
  2162. name: "Gigamacro",
  2163. height: math.unit(15963, "km")
  2164. },
  2165. {
  2166. name: "Teramacro",
  2167. height: math.unit(2980000000, "km")
  2168. },
  2169. {
  2170. name: "Examacro",
  2171. height: math.unit(250, "parsecs")
  2172. },
  2173. ]
  2174. ))
  2175. characterMakers.push(() => makeCharacter(
  2176. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2177. {
  2178. front: {
  2179. height: math.unit(6, "feet"),
  2180. weight: math.unit(60, "kg"),
  2181. name: "Front",
  2182. image: {
  2183. source: "./media/characters/noir/front.svg",
  2184. extra: 1,
  2185. bottom: 0.032
  2186. }
  2187. },
  2188. },
  2189. [
  2190. {
  2191. name: "Normal",
  2192. height: math.unit(6.6, "feet")
  2193. },
  2194. {
  2195. name: "Macro",
  2196. height: math.unit(500, "feet")
  2197. },
  2198. {
  2199. name: "Megamacro",
  2200. height: math.unit(2.5, "km"),
  2201. default: true
  2202. },
  2203. {
  2204. name: "Gigamacro",
  2205. height: math.unit(22500, "km")
  2206. },
  2207. {
  2208. name: "Teramacro",
  2209. height: math.unit(2500000000, "km")
  2210. },
  2211. {
  2212. name: "Examacro",
  2213. height: math.unit(200, "parsecs")
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(7, "feet"),
  2222. weight: math.unit(100, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/okuri/front.svg",
  2226. extra: 1,
  2227. bottom: 0.037
  2228. }
  2229. },
  2230. back: {
  2231. height: math.unit(7, "feet"),
  2232. weight: math.unit(100, "kg"),
  2233. name: "Back",
  2234. image: {
  2235. source: "./media/characters/okuri/back.svg",
  2236. extra: 1,
  2237. bottom: 0.007
  2238. }
  2239. },
  2240. },
  2241. [
  2242. {
  2243. name: "Megamacro",
  2244. height: math.unit(100, "miles"),
  2245. default: true
  2246. },
  2247. ]
  2248. ))
  2249. characterMakers.push(() => makeCharacter(
  2250. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2251. {
  2252. front: {
  2253. height: math.unit(7, "feet"),
  2254. weight: math.unit(100, "kg"),
  2255. name: "Front",
  2256. image: {
  2257. source: "./media/characters/manny/front.svg",
  2258. extra: 1,
  2259. bottom: 0.06
  2260. }
  2261. },
  2262. back: {
  2263. height: math.unit(7, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Back",
  2266. image: {
  2267. source: "./media/characters/manny/back.svg",
  2268. extra: 1,
  2269. bottom: 0.014
  2270. }
  2271. },
  2272. },
  2273. [
  2274. {
  2275. name: "Normal",
  2276. height: math.unit(7, "feet"),
  2277. },
  2278. {
  2279. name: "Macro",
  2280. height: math.unit(78, "feet"),
  2281. default: true
  2282. },
  2283. {
  2284. name: "Macro+",
  2285. height: math.unit(300, "meters")
  2286. },
  2287. {
  2288. name: "Macro++",
  2289. height: math.unit(2400, "meters")
  2290. },
  2291. {
  2292. name: "Megamacro",
  2293. height: math.unit(5167, "meters")
  2294. },
  2295. {
  2296. name: "Gigamacro",
  2297. height: math.unit(41769, "miles")
  2298. },
  2299. ]
  2300. ))
  2301. characterMakers.push(() => makeCharacter(
  2302. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2303. {
  2304. front: {
  2305. height: math.unit(7, "feet"),
  2306. weight: math.unit(100, "kg"),
  2307. name: "Front",
  2308. image: {
  2309. source: "./media/characters/adake/front-1.svg"
  2310. }
  2311. },
  2312. frontAlt: {
  2313. height: math.unit(7, "feet"),
  2314. weight: math.unit(100, "kg"),
  2315. name: "Front (Alt)",
  2316. image: {
  2317. source: "./media/characters/adake/front-2.svg",
  2318. extra: 1,
  2319. bottom: 0.01
  2320. }
  2321. },
  2322. back: {
  2323. height: math.unit(7, "feet"),
  2324. weight: math.unit(100, "kg"),
  2325. name: "Back",
  2326. image: {
  2327. source: "./media/characters/adake/back.svg",
  2328. }
  2329. },
  2330. kneel: {
  2331. height: math.unit(5.385, "feet"),
  2332. weight: math.unit(100, "kg"),
  2333. name: "Kneeling",
  2334. image: {
  2335. source: "./media/characters/adake/kneel.svg",
  2336. bottom: 0.052
  2337. }
  2338. },
  2339. },
  2340. [
  2341. {
  2342. name: "Normal",
  2343. height: math.unit(7, "feet"),
  2344. },
  2345. {
  2346. name: "Macro",
  2347. height: math.unit(78, "feet"),
  2348. default: true
  2349. },
  2350. {
  2351. name: "Macro+",
  2352. height: math.unit(300, "meters")
  2353. },
  2354. {
  2355. name: "Macro++",
  2356. height: math.unit(2400, "meters")
  2357. },
  2358. {
  2359. name: "Megamacro",
  2360. height: math.unit(5167, "meters")
  2361. },
  2362. {
  2363. name: "Gigamacro",
  2364. height: math.unit(41769, "miles")
  2365. },
  2366. ]
  2367. ))
  2368. characterMakers.push(() => makeCharacter(
  2369. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2370. {
  2371. front: {
  2372. height: math.unit(1.65, "meters"),
  2373. weight: math.unit(50, "kg"),
  2374. name: "Front",
  2375. image: {
  2376. source: "./media/characters/elijah/front.svg",
  2377. extra: 858 / 830,
  2378. bottom: 95.5 / 953.8559
  2379. }
  2380. },
  2381. back: {
  2382. height: math.unit(1.65, "meters"),
  2383. weight: math.unit(50, "kg"),
  2384. name: "Back",
  2385. image: {
  2386. source: "./media/characters/elijah/back.svg",
  2387. extra: 895 / 850,
  2388. bottom: 5.3 / 897.956
  2389. }
  2390. },
  2391. frontNsfw: {
  2392. height: math.unit(1.65, "meters"),
  2393. weight: math.unit(50, "kg"),
  2394. name: "Front (NSFW)",
  2395. image: {
  2396. source: "./media/characters/elijah/front-nsfw.svg",
  2397. extra: 858 / 830,
  2398. bottom: 95.5 / 953.8559
  2399. }
  2400. },
  2401. backNsfw: {
  2402. height: math.unit(1.65, "meters"),
  2403. weight: math.unit(50, "kg"),
  2404. name: "Back (NSFW)",
  2405. image: {
  2406. source: "./media/characters/elijah/back-nsfw.svg",
  2407. extra: 895 / 850,
  2408. bottom: 5.3 / 897.956
  2409. }
  2410. },
  2411. dick: {
  2412. height: math.unit(1, "feet"),
  2413. name: "Dick",
  2414. image: {
  2415. source: "./media/characters/elijah/dick.svg"
  2416. }
  2417. },
  2418. beakOpen: {
  2419. height: math.unit(1.25, "feet"),
  2420. name: "Beak (Open)",
  2421. image: {
  2422. source: "./media/characters/elijah/beak-open.svg"
  2423. }
  2424. },
  2425. beakShut: {
  2426. height: math.unit(1.25, "feet"),
  2427. name: "Beak (Shut)",
  2428. image: {
  2429. source: "./media/characters/elijah/beak-shut.svg"
  2430. }
  2431. },
  2432. footFlexing: {
  2433. height: math.unit(1.61, "feet"),
  2434. name: "Foot (Flexing)",
  2435. image: {
  2436. source: "./media/characters/elijah/foot-flexing.svg"
  2437. }
  2438. },
  2439. footStepping: {
  2440. height: math.unit(1.44, "feet"),
  2441. name: "Foot (Stepping)",
  2442. image: {
  2443. source: "./media/characters/elijah/foot-stepping.svg"
  2444. }
  2445. },
  2446. plantigradeLeg: {
  2447. height: math.unit(2.34, "feet"),
  2448. name: "Plantigrade Leg",
  2449. image: {
  2450. source: "./media/characters/elijah/plantigrade-leg.svg"
  2451. }
  2452. },
  2453. plantigradeFootLeft: {
  2454. height: math.unit(0.9, "feet"),
  2455. name: "Plantigrade Foot (Left)",
  2456. image: {
  2457. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2458. }
  2459. },
  2460. plantigradeFootRight: {
  2461. height: math.unit(0.9, "feet"),
  2462. name: "Plantigrade Foot (Right)",
  2463. image: {
  2464. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2465. }
  2466. },
  2467. },
  2468. [
  2469. {
  2470. name: "Normal",
  2471. height: math.unit(1.65, "meters")
  2472. },
  2473. {
  2474. name: "Macro",
  2475. height: math.unit(55, "meters"),
  2476. default: true
  2477. },
  2478. {
  2479. name: "Macro+",
  2480. height: math.unit(105, "meters")
  2481. },
  2482. ]
  2483. ))
  2484. characterMakers.push(() => makeCharacter(
  2485. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2486. {
  2487. front: {
  2488. height: math.unit(7 + 2/12, "feet"),
  2489. weight: math.unit(320, "kg"),
  2490. name: "Front",
  2491. image: {
  2492. source: "./media/characters/rai/front.svg",
  2493. extra: 1802/1696,
  2494. bottom: 68/1870
  2495. }
  2496. },
  2497. frontDressed: {
  2498. height: math.unit(7 + 2/12, "feet"),
  2499. weight: math.unit(320, "kg"),
  2500. name: "Front (Dressed)",
  2501. image: {
  2502. source: "./media/characters/rai/front-dressed.svg",
  2503. extra: 1802/1696,
  2504. bottom: 68/1870
  2505. }
  2506. },
  2507. side: {
  2508. height: math.unit(7 + 2/12, "feet"),
  2509. weight: math.unit(320, "kg"),
  2510. name: "Side",
  2511. image: {
  2512. source: "./media/characters/rai/side.svg",
  2513. extra: 1789/1710,
  2514. bottom: 115/1904
  2515. }
  2516. },
  2517. back: {
  2518. height: math.unit(7 + 2/12, "feet"),
  2519. weight: math.unit(320, "kg"),
  2520. name: "Back",
  2521. image: {
  2522. source: "./media/characters/rai/back.svg",
  2523. extra: 1770/1707,
  2524. bottom: 28/1798
  2525. }
  2526. },
  2527. feral: {
  2528. height: math.unit(9.5, "feet"),
  2529. weight: math.unit(640, "kg"),
  2530. name: "Feral",
  2531. image: {
  2532. source: "./media/characters/rai/feral.svg",
  2533. extra: 945/553,
  2534. bottom: 176/1121
  2535. }
  2536. },
  2537. dragon: {
  2538. height: math.unit(23, "feet"),
  2539. weight: math.unit(50000, "lb"),
  2540. name: "Dragon",
  2541. image: {
  2542. source: "./media/characters/rai/dragon.svg",
  2543. extra: 2498 / 2030,
  2544. bottom: 85.2 / 2584
  2545. }
  2546. },
  2547. maw: {
  2548. height: math.unit(1.69, "feet"),
  2549. name: "Maw",
  2550. image: {
  2551. source: "./media/characters/rai/maw.svg"
  2552. }
  2553. },
  2554. },
  2555. [
  2556. {
  2557. name: "Normal",
  2558. height: math.unit(7 + 2/12, "feet")
  2559. },
  2560. {
  2561. name: "Big",
  2562. height: math.unit(11, "feet")
  2563. },
  2564. {
  2565. name: "Macro",
  2566. height: math.unit(302, "feet"),
  2567. default: true
  2568. },
  2569. ]
  2570. ))
  2571. characterMakers.push(() => makeCharacter(
  2572. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2573. {
  2574. frontDressed: {
  2575. height: math.unit(216, "feet"),
  2576. weight: math.unit(7000000, "lb"),
  2577. name: "Front (Dressed)",
  2578. image: {
  2579. source: "./media/characters/jazzy/front-dressed.svg",
  2580. extra: 2738 / 2651,
  2581. bottom: 41.8 / 2786
  2582. }
  2583. },
  2584. backDressed: {
  2585. height: math.unit(216, "feet"),
  2586. weight: math.unit(7000000, "lb"),
  2587. name: "Back (Dressed)",
  2588. image: {
  2589. source: "./media/characters/jazzy/back-dressed.svg",
  2590. extra: 2775 / 2673,
  2591. bottom: 36.8 / 2817
  2592. }
  2593. },
  2594. front: {
  2595. height: math.unit(216, "feet"),
  2596. weight: math.unit(7000000, "lb"),
  2597. name: "Front",
  2598. image: {
  2599. source: "./media/characters/jazzy/front.svg",
  2600. extra: 2738 / 2651,
  2601. bottom: 41.8 / 2786
  2602. }
  2603. },
  2604. back: {
  2605. height: math.unit(216, "feet"),
  2606. weight: math.unit(7000000, "lb"),
  2607. name: "Back",
  2608. image: {
  2609. source: "./media/characters/jazzy/back.svg",
  2610. extra: 2775 / 2673,
  2611. bottom: 36.8 / 2817
  2612. }
  2613. },
  2614. maw: {
  2615. height: math.unit(20, "feet"),
  2616. name: "Maw",
  2617. image: {
  2618. source: "./media/characters/jazzy/maw.svg"
  2619. }
  2620. },
  2621. paws: {
  2622. height: math.unit(27.5, "feet"),
  2623. name: "Paws",
  2624. image: {
  2625. source: "./media/characters/jazzy/paws.svg"
  2626. }
  2627. },
  2628. eye: {
  2629. height: math.unit(4.4, "feet"),
  2630. name: "Eye",
  2631. image: {
  2632. source: "./media/characters/jazzy/eye.svg"
  2633. }
  2634. },
  2635. droneOffense: {
  2636. height: math.unit(9.5, "inches"),
  2637. name: "Drone (Offense)",
  2638. image: {
  2639. source: "./media/characters/jazzy/drone-offense.svg"
  2640. }
  2641. },
  2642. droneRecon: {
  2643. height: math.unit(9.5, "inches"),
  2644. name: "Drone (Recon)",
  2645. image: {
  2646. source: "./media/characters/jazzy/drone-recon.svg"
  2647. }
  2648. },
  2649. droneDefense: {
  2650. height: math.unit(9.5, "inches"),
  2651. name: "Drone (Defense)",
  2652. image: {
  2653. source: "./media/characters/jazzy/drone-defense.svg"
  2654. }
  2655. },
  2656. },
  2657. [
  2658. {
  2659. name: "Macro",
  2660. height: math.unit(216, "feet"),
  2661. default: true
  2662. },
  2663. ]
  2664. ))
  2665. characterMakers.push(() => makeCharacter(
  2666. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2667. {
  2668. front: {
  2669. height: math.unit(9 + 6/12, "feet"),
  2670. weight: math.unit(700, "lb"),
  2671. name: "Front",
  2672. image: {
  2673. source: "./media/characters/flamm/front.svg",
  2674. extra: 1751/1632,
  2675. bottom: 46/1797
  2676. }
  2677. },
  2678. buff: {
  2679. height: math.unit(9 + 6/12, "feet"),
  2680. weight: math.unit(950, "lb"),
  2681. name: "Buff",
  2682. image: {
  2683. source: "./media/characters/flamm/buff.svg",
  2684. extra: 3018/2874,
  2685. bottom: 221/3239
  2686. }
  2687. },
  2688. },
  2689. [
  2690. {
  2691. name: "Normal",
  2692. height: math.unit(9.5, "feet")
  2693. },
  2694. {
  2695. name: "Macro",
  2696. height: math.unit(200, "feet"),
  2697. default: true
  2698. },
  2699. ]
  2700. ))
  2701. characterMakers.push(() => makeCharacter(
  2702. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2703. {
  2704. front: {
  2705. height: math.unit(5 + 3/12, "feet"),
  2706. weight: math.unit(60, "kg"),
  2707. name: "Front",
  2708. image: {
  2709. source: "./media/characters/zephiro/front.svg",
  2710. extra: 2309 / 2162,
  2711. bottom: 0.069
  2712. }
  2713. },
  2714. side: {
  2715. height: math.unit(5 + 3/12, "feet"),
  2716. weight: math.unit(60, "kg"),
  2717. name: "Side",
  2718. image: {
  2719. source: "./media/characters/zephiro/side.svg",
  2720. extra: 2403 / 2279,
  2721. bottom: 0.015
  2722. }
  2723. },
  2724. back: {
  2725. height: math.unit(5 + 3/12, "feet"),
  2726. weight: math.unit(60, "kg"),
  2727. name: "Back",
  2728. image: {
  2729. source: "./media/characters/zephiro/back.svg",
  2730. extra: 2373 / 2244,
  2731. bottom: 0.013
  2732. }
  2733. },
  2734. hand: {
  2735. height: math.unit(0.68, "feet"),
  2736. name: "Hand",
  2737. image: {
  2738. source: "./media/characters/zephiro/hand.svg"
  2739. }
  2740. },
  2741. paw: {
  2742. height: math.unit(1, "feet"),
  2743. name: "Paw",
  2744. image: {
  2745. source: "./media/characters/zephiro/paw.svg"
  2746. }
  2747. },
  2748. beans: {
  2749. height: math.unit(0.93, "feet"),
  2750. name: "Beans",
  2751. image: {
  2752. source: "./media/characters/zephiro/beans.svg"
  2753. }
  2754. },
  2755. },
  2756. [
  2757. {
  2758. name: "Micro",
  2759. height: math.unit(3, "inches")
  2760. },
  2761. {
  2762. name: "Normal",
  2763. height: math.unit(5 + 3 / 12, "feet"),
  2764. default: true
  2765. },
  2766. {
  2767. name: "Macro",
  2768. height: math.unit(118, "feet")
  2769. },
  2770. ]
  2771. ))
  2772. characterMakers.push(() => makeCharacter(
  2773. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2774. {
  2775. front: {
  2776. height: math.unit(5, "feet"),
  2777. weight: math.unit(90, "kg"),
  2778. name: "Front",
  2779. image: {
  2780. source: "./media/characters/fory/front.svg",
  2781. extra: 2862 / 2674,
  2782. bottom: 180 / 3043.8
  2783. }
  2784. },
  2785. back: {
  2786. height: math.unit(5, "feet"),
  2787. weight: math.unit(90, "kg"),
  2788. name: "Back",
  2789. image: {
  2790. source: "./media/characters/fory/back.svg",
  2791. extra: 2962 / 2791,
  2792. bottom: 106 / 3071.8
  2793. }
  2794. },
  2795. foot: {
  2796. height: math.unit(2.14, "feet"),
  2797. name: "Foot",
  2798. image: {
  2799. source: "./media/characters/fory/foot.svg"
  2800. }
  2801. },
  2802. },
  2803. [
  2804. {
  2805. name: "Normal",
  2806. height: math.unit(5, "feet")
  2807. },
  2808. {
  2809. name: "Macro",
  2810. height: math.unit(50, "feet"),
  2811. default: true
  2812. },
  2813. {
  2814. name: "Megamacro",
  2815. height: math.unit(10, "miles")
  2816. },
  2817. {
  2818. name: "Gigamacro",
  2819. height: math.unit(5, "earths")
  2820. },
  2821. ]
  2822. ))
  2823. characterMakers.push(() => makeCharacter(
  2824. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2825. {
  2826. front: {
  2827. height: math.unit(7, "feet"),
  2828. weight: math.unit(90, "kg"),
  2829. name: "Front",
  2830. image: {
  2831. source: "./media/characters/kurrikage/front.svg",
  2832. extra: 1845/1733,
  2833. bottom: 119/1964
  2834. }
  2835. },
  2836. back: {
  2837. height: math.unit(7, "feet"),
  2838. weight: math.unit(90, "kg"),
  2839. name: "Back",
  2840. image: {
  2841. source: "./media/characters/kurrikage/back.svg",
  2842. extra: 1790/1677,
  2843. bottom: 61/1851
  2844. }
  2845. },
  2846. dressed: {
  2847. height: math.unit(7, "feet"),
  2848. weight: math.unit(90, "kg"),
  2849. name: "Dressed",
  2850. image: {
  2851. source: "./media/characters/kurrikage/dressed.svg",
  2852. extra: 1845/1733,
  2853. bottom: 119/1964
  2854. }
  2855. },
  2856. foot: {
  2857. height: math.unit(1.5, "feet"),
  2858. name: "Foot",
  2859. image: {
  2860. source: "./media/characters/kurrikage/foot.svg"
  2861. }
  2862. },
  2863. staff: {
  2864. height: math.unit(6.7, "feet"),
  2865. name: "Staff",
  2866. image: {
  2867. source: "./media/characters/kurrikage/staff.svg"
  2868. }
  2869. },
  2870. peek: {
  2871. height: math.unit(1.05, "feet"),
  2872. name: "Peeking",
  2873. image: {
  2874. source: "./media/characters/kurrikage/peek.svg",
  2875. bottom: 0.08
  2876. }
  2877. },
  2878. },
  2879. [
  2880. {
  2881. name: "Normal",
  2882. height: math.unit(12, "feet"),
  2883. default: true
  2884. },
  2885. {
  2886. name: "Big",
  2887. height: math.unit(20, "feet")
  2888. },
  2889. {
  2890. name: "Macro",
  2891. height: math.unit(500, "feet")
  2892. },
  2893. {
  2894. name: "Megamacro",
  2895. height: math.unit(20, "miles")
  2896. },
  2897. ]
  2898. ))
  2899. characterMakers.push(() => makeCharacter(
  2900. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2901. {
  2902. front: {
  2903. height: math.unit(6, "feet"),
  2904. weight: math.unit(75, "kg"),
  2905. name: "Front",
  2906. image: {
  2907. source: "./media/characters/shingo/front.svg",
  2908. extra: 1900/1825,
  2909. bottom: 82/1982
  2910. }
  2911. },
  2912. side: {
  2913. height: math.unit(6, "feet"),
  2914. weight: math.unit(75, "kg"),
  2915. name: "Side",
  2916. image: {
  2917. source: "./media/characters/shingo/side.svg",
  2918. extra: 1930/1865,
  2919. bottom: 16/1946
  2920. }
  2921. },
  2922. back: {
  2923. height: math.unit(6, "feet"),
  2924. weight: math.unit(75, "kg"),
  2925. name: "Back",
  2926. image: {
  2927. source: "./media/characters/shingo/back.svg",
  2928. extra: 1922/1852,
  2929. bottom: 16/1938
  2930. }
  2931. },
  2932. frontDressed: {
  2933. height: math.unit(6, "feet"),
  2934. weight: math.unit(150, "lb"),
  2935. name: "Front-dressed",
  2936. image: {
  2937. source: "./media/characters/shingo/front-dressed.svg",
  2938. extra: 1900/1825,
  2939. bottom: 82/1982
  2940. }
  2941. },
  2942. paw: {
  2943. height: math.unit(1.29, "feet"),
  2944. name: "Paw",
  2945. image: {
  2946. source: "./media/characters/shingo/paw.svg"
  2947. }
  2948. },
  2949. hand: {
  2950. height: math.unit(1.07, "feet"),
  2951. name: "Hand",
  2952. image: {
  2953. source: "./media/characters/shingo/hand.svg"
  2954. }
  2955. },
  2956. frontAlt: {
  2957. height: math.unit(6, "feet"),
  2958. weight: math.unit(75, "kg"),
  2959. name: "Front (Alt)",
  2960. image: {
  2961. source: "./media/characters/shingo/front-alt.svg",
  2962. extra: 3511 / 3338,
  2963. bottom: 0.005
  2964. }
  2965. },
  2966. frontAlt2: {
  2967. height: math.unit(6, "feet"),
  2968. weight: math.unit(75, "kg"),
  2969. name: "Front (Alt 2)",
  2970. image: {
  2971. source: "./media/characters/shingo/front-alt-2.svg",
  2972. extra: 706/681,
  2973. bottom: 11/717
  2974. }
  2975. },
  2976. pawAlt: {
  2977. height: math.unit(1, "feet"),
  2978. name: "Paw (Alt)",
  2979. image: {
  2980. source: "./media/characters/shingo/paw-alt.svg"
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Micro",
  2987. height: math.unit(4, "inches")
  2988. },
  2989. {
  2990. name: "Normal",
  2991. height: math.unit(6, "feet"),
  2992. default: true
  2993. },
  2994. {
  2995. name: "Macro",
  2996. height: math.unit(108, "feet")
  2997. },
  2998. {
  2999. name: "Macro+",
  3000. height: math.unit(1500, "feet")
  3001. },
  3002. ]
  3003. ))
  3004. characterMakers.push(() => makeCharacter(
  3005. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3006. {
  3007. side: {
  3008. height: math.unit(6, "feet"),
  3009. weight: math.unit(75, "kg"),
  3010. name: "Side",
  3011. image: {
  3012. source: "./media/characters/aigey/side.svg"
  3013. }
  3014. },
  3015. },
  3016. [
  3017. {
  3018. name: "Macro",
  3019. height: math.unit(200, "feet"),
  3020. default: true
  3021. },
  3022. {
  3023. name: "Megamacro",
  3024. height: math.unit(100, "miles")
  3025. },
  3026. ]
  3027. )
  3028. )
  3029. characterMakers.push(() => makeCharacter(
  3030. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3031. {
  3032. front: {
  3033. height: math.unit(5 + 5 / 12, "feet"),
  3034. weight: math.unit(75, "kg"),
  3035. name: "Front",
  3036. image: {
  3037. source: "./media/characters/natasha/front.svg",
  3038. extra: 859 / 824,
  3039. bottom: 23 / 879.6
  3040. }
  3041. },
  3042. frontNsfw: {
  3043. height: math.unit(5 + 5 / 12, "feet"),
  3044. weight: math.unit(75, "kg"),
  3045. name: "Front (NSFW)",
  3046. image: {
  3047. source: "./media/characters/natasha/front-nsfw.svg",
  3048. extra: 859 / 824,
  3049. bottom: 23 / 879.6
  3050. }
  3051. },
  3052. frontErect: {
  3053. height: math.unit(5 + 5 / 12, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Front (Erect)",
  3056. image: {
  3057. source: "./media/characters/natasha/front-erect.svg",
  3058. extra: 859 / 824,
  3059. bottom: 23 / 879.6
  3060. }
  3061. },
  3062. back: {
  3063. height: math.unit(5 + 5 / 12, "feet"),
  3064. weight: math.unit(75, "kg"),
  3065. name: "Back",
  3066. image: {
  3067. source: "./media/characters/natasha/back.svg",
  3068. extra: 887.9 / 852.6,
  3069. bottom: 9.7 / 896.4
  3070. }
  3071. },
  3072. backAlt: {
  3073. height: math.unit(5 + 5 / 12, "feet"),
  3074. weight: math.unit(75, "kg"),
  3075. name: "Back (Alt)",
  3076. image: {
  3077. source: "./media/characters/natasha/back-alt.svg",
  3078. extra: 1236.7 / 1192,
  3079. bottom: 22.3 / 1258.2
  3080. }
  3081. },
  3082. dick: {
  3083. height: math.unit(1.772, "feet"),
  3084. name: "Dick",
  3085. image: {
  3086. source: "./media/characters/natasha/dick.svg"
  3087. }
  3088. },
  3089. paw: {
  3090. height: math.unit(0.250, "meters"),
  3091. name: "Paw",
  3092. image: {
  3093. source: "./media/characters/natasha/paw.svg"
  3094. }
  3095. },
  3096. },
  3097. [
  3098. {
  3099. name: "Normal",
  3100. height: math.unit(5 + 5 / 12, "feet")
  3101. },
  3102. {
  3103. name: "Large",
  3104. height: math.unit(12, "feet")
  3105. },
  3106. {
  3107. name: "Macro",
  3108. height: math.unit(100, "feet"),
  3109. default: true
  3110. },
  3111. {
  3112. name: "Macro+",
  3113. height: math.unit(260, "feet")
  3114. },
  3115. {
  3116. name: "Macro++",
  3117. height: math.unit(1, "mile")
  3118. },
  3119. ]
  3120. ))
  3121. characterMakers.push(() => makeCharacter(
  3122. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3123. {
  3124. front: {
  3125. height: math.unit(6, "feet"),
  3126. weight: math.unit(75, "kg"),
  3127. name: "Front",
  3128. image: {
  3129. source: "./media/characters/malik/front.svg"
  3130. }
  3131. },
  3132. side: {
  3133. height: math.unit(6, "feet"),
  3134. weight: math.unit(75, "kg"),
  3135. name: "Side",
  3136. image: {
  3137. source: "./media/characters/malik/side.svg",
  3138. extra: 1.1539
  3139. }
  3140. },
  3141. back: {
  3142. height: math.unit(6, "feet"),
  3143. weight: math.unit(75, "kg"),
  3144. name: "Back",
  3145. image: {
  3146. source: "./media/characters/malik/back.svg"
  3147. }
  3148. },
  3149. },
  3150. [
  3151. {
  3152. name: "Macro",
  3153. height: math.unit(156, "feet"),
  3154. default: true
  3155. },
  3156. {
  3157. name: "Macro+",
  3158. height: math.unit(1188, "feet")
  3159. },
  3160. ]
  3161. ))
  3162. characterMakers.push(() => makeCharacter(
  3163. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3164. {
  3165. front: {
  3166. height: math.unit(6, "feet"),
  3167. weight: math.unit(75, "kg"),
  3168. name: "Front",
  3169. image: {
  3170. source: "./media/characters/sefer/front.svg",
  3171. extra: 848 / 659,
  3172. bottom: 28.3 / 876.442
  3173. }
  3174. },
  3175. back: {
  3176. height: math.unit(6, "feet"),
  3177. weight: math.unit(75, "kg"),
  3178. name: "Back",
  3179. image: {
  3180. source: "./media/characters/sefer/back.svg",
  3181. extra: 864 / 695,
  3182. bottom: 10 / 871
  3183. }
  3184. },
  3185. frontDressed: {
  3186. height: math.unit(6, "feet"),
  3187. weight: math.unit(75, "kg"),
  3188. name: "Front (Dressed)",
  3189. image: {
  3190. source: "./media/characters/sefer/front-dressed.svg",
  3191. extra: 839 / 653,
  3192. bottom: 37.6 / 878
  3193. }
  3194. },
  3195. },
  3196. [
  3197. {
  3198. name: "Normal",
  3199. height: math.unit(6, "feet"),
  3200. default: true
  3201. },
  3202. ]
  3203. ))
  3204. characterMakers.push(() => makeCharacter(
  3205. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3206. {
  3207. body: {
  3208. height: math.unit(2.2428, "meter"),
  3209. weight: math.unit(124.738, "kg"),
  3210. name: "Body",
  3211. image: {
  3212. extra: 1225 / 1050,
  3213. source: "./media/characters/north/front.svg"
  3214. }
  3215. }
  3216. },
  3217. [
  3218. {
  3219. name: "Micro",
  3220. height: math.unit(4, "inches")
  3221. },
  3222. {
  3223. name: "Macro",
  3224. height: math.unit(63, "meters")
  3225. },
  3226. {
  3227. name: "Megamacro",
  3228. height: math.unit(101, "miles"),
  3229. default: true
  3230. }
  3231. ]
  3232. ))
  3233. characterMakers.push(() => makeCharacter(
  3234. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3235. {
  3236. angled: {
  3237. height: math.unit(4, "meter"),
  3238. weight: math.unit(150, "kg"),
  3239. name: "Angled",
  3240. image: {
  3241. source: "./media/characters/talan/angled-sfw.svg",
  3242. bottom: 29 / 3734
  3243. }
  3244. },
  3245. angledNsfw: {
  3246. height: math.unit(4, "meter"),
  3247. weight: math.unit(150, "kg"),
  3248. name: "Angled (NSFW)",
  3249. image: {
  3250. source: "./media/characters/talan/angled-nsfw.svg",
  3251. bottom: 29 / 3734
  3252. }
  3253. },
  3254. frontNsfw: {
  3255. height: math.unit(4, "meter"),
  3256. weight: math.unit(150, "kg"),
  3257. name: "Front (NSFW)",
  3258. image: {
  3259. source: "./media/characters/talan/front-nsfw.svg",
  3260. bottom: 29 / 3734
  3261. }
  3262. },
  3263. sideNsfw: {
  3264. height: math.unit(4, "meter"),
  3265. weight: math.unit(150, "kg"),
  3266. name: "Side (NSFW)",
  3267. image: {
  3268. source: "./media/characters/talan/side-nsfw.svg",
  3269. bottom: 29 / 3734
  3270. }
  3271. },
  3272. back: {
  3273. height: math.unit(4, "meter"),
  3274. weight: math.unit(150, "kg"),
  3275. name: "Back",
  3276. image: {
  3277. source: "./media/characters/talan/back.svg"
  3278. }
  3279. },
  3280. dickBottom: {
  3281. height: math.unit(0.621, "meter"),
  3282. name: "Dick (Bottom)",
  3283. image: {
  3284. source: "./media/characters/talan/dick-bottom.svg"
  3285. }
  3286. },
  3287. dickTop: {
  3288. height: math.unit(0.621, "meter"),
  3289. name: "Dick (Top)",
  3290. image: {
  3291. source: "./media/characters/talan/dick-top.svg"
  3292. }
  3293. },
  3294. dickSide: {
  3295. height: math.unit(0.305, "meter"),
  3296. name: "Dick (Side)",
  3297. image: {
  3298. source: "./media/characters/talan/dick-side.svg"
  3299. }
  3300. },
  3301. dickFront: {
  3302. height: math.unit(0.305, "meter"),
  3303. name: "Dick (Front)",
  3304. image: {
  3305. source: "./media/characters/talan/dick-front.svg"
  3306. }
  3307. },
  3308. },
  3309. [
  3310. {
  3311. name: "Normal",
  3312. height: math.unit(4, "meters")
  3313. },
  3314. {
  3315. name: "Macro",
  3316. height: math.unit(100, "meters")
  3317. },
  3318. {
  3319. name: "Megamacro",
  3320. height: math.unit(2, "miles"),
  3321. default: true
  3322. },
  3323. {
  3324. name: "Gigamacro",
  3325. height: math.unit(5000, "miles")
  3326. },
  3327. {
  3328. name: "Teramacro",
  3329. height: math.unit(100, "parsecs")
  3330. }
  3331. ]
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3335. {
  3336. front: {
  3337. height: math.unit(2, "meter"),
  3338. weight: math.unit(90, "kg"),
  3339. name: "Front",
  3340. image: {
  3341. source: "./media/characters/gael'rathus/front.svg"
  3342. }
  3343. },
  3344. frontAlt: {
  3345. height: math.unit(2, "meter"),
  3346. weight: math.unit(90, "kg"),
  3347. name: "Front (alt)",
  3348. image: {
  3349. source: "./media/characters/gael'rathus/front-alt.svg"
  3350. }
  3351. },
  3352. frontAlt2: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(90, "kg"),
  3355. name: "Front (alt 2)",
  3356. image: {
  3357. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3358. }
  3359. }
  3360. },
  3361. [
  3362. {
  3363. name: "Normal",
  3364. height: math.unit(9, "feet"),
  3365. default: true
  3366. },
  3367. {
  3368. name: "Large",
  3369. height: math.unit(25, "feet")
  3370. },
  3371. {
  3372. name: "Macro",
  3373. height: math.unit(0.25, "miles")
  3374. },
  3375. {
  3376. name: "Megamacro",
  3377. height: math.unit(10, "miles")
  3378. }
  3379. ]
  3380. ))
  3381. characterMakers.push(() => makeCharacter(
  3382. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3383. {
  3384. side: {
  3385. height: math.unit(2, "meter"),
  3386. weight: math.unit(140, "kg"),
  3387. name: "Side",
  3388. image: {
  3389. source: "./media/characters/sosha/side.svg",
  3390. bottom: 0.042
  3391. }
  3392. },
  3393. },
  3394. [
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(12, "feet"),
  3398. default: true
  3399. }
  3400. ]
  3401. ))
  3402. characterMakers.push(() => makeCharacter(
  3403. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3404. {
  3405. side: {
  3406. height: math.unit(5 + 5 / 12, "feet"),
  3407. weight: math.unit(170, "kg"),
  3408. name: "Side",
  3409. image: {
  3410. source: "./media/characters/runnola/side.svg",
  3411. extra: 741 / 448,
  3412. bottom: 0.05
  3413. }
  3414. },
  3415. },
  3416. [
  3417. {
  3418. name: "Small",
  3419. height: math.unit(3, "feet")
  3420. },
  3421. {
  3422. name: "Normal",
  3423. height: math.unit(5 + 5 / 12, "feet"),
  3424. default: true
  3425. },
  3426. {
  3427. name: "Big",
  3428. height: math.unit(10, "feet")
  3429. },
  3430. ]
  3431. ))
  3432. characterMakers.push(() => makeCharacter(
  3433. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3434. {
  3435. front: {
  3436. height: math.unit(2, "meter"),
  3437. weight: math.unit(50, "kg"),
  3438. name: "Front",
  3439. image: {
  3440. source: "./media/characters/kurribird/front.svg",
  3441. bottom: 0.015
  3442. }
  3443. },
  3444. frontAlt: {
  3445. height: math.unit(1.5, "meter"),
  3446. weight: math.unit(50, "kg"),
  3447. name: "Front (Alt)",
  3448. image: {
  3449. source: "./media/characters/kurribird/front-alt.svg",
  3450. extra: 1.45
  3451. }
  3452. },
  3453. },
  3454. [
  3455. {
  3456. name: "Normal",
  3457. height: math.unit(7, "feet")
  3458. },
  3459. {
  3460. name: "Big",
  3461. height: math.unit(12, "feet"),
  3462. default: true
  3463. },
  3464. {
  3465. name: "Macro",
  3466. height: math.unit(1500, "feet")
  3467. },
  3468. {
  3469. name: "Megamacro",
  3470. height: math.unit(2, "miles")
  3471. }
  3472. ]
  3473. ))
  3474. characterMakers.push(() => makeCharacter(
  3475. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3476. {
  3477. front: {
  3478. height: math.unit(2, "meter"),
  3479. weight: math.unit(80, "kg"),
  3480. name: "Front",
  3481. image: {
  3482. source: "./media/characters/elbial/front.svg",
  3483. extra: 1643 / 1556,
  3484. bottom: 60.2 / 1696
  3485. }
  3486. },
  3487. side: {
  3488. height: math.unit(2, "meter"),
  3489. weight: math.unit(80, "kg"),
  3490. name: "Side",
  3491. image: {
  3492. source: "./media/characters/elbial/side.svg",
  3493. extra: 1601/1528,
  3494. bottom: 97/1698
  3495. }
  3496. },
  3497. back: {
  3498. height: math.unit(2, "meter"),
  3499. weight: math.unit(80, "kg"),
  3500. name: "Back",
  3501. image: {
  3502. source: "./media/characters/elbial/back.svg",
  3503. extra: 1653/1569,
  3504. bottom: 20/1673
  3505. }
  3506. },
  3507. frontDressed: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(80, "kg"),
  3510. name: "Front (Dressed)",
  3511. image: {
  3512. source: "./media/characters/elbial/front-dressed.svg",
  3513. extra: 1638/1569,
  3514. bottom: 70/1708
  3515. }
  3516. },
  3517. genitals: {
  3518. height: math.unit(2 / 3.367, "meter"),
  3519. name: "Genitals",
  3520. image: {
  3521. source: "./media/characters/elbial/genitals.svg"
  3522. }
  3523. },
  3524. },
  3525. [
  3526. {
  3527. name: "Large",
  3528. height: math.unit(100, "feet")
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(500, "feet"),
  3533. default: true
  3534. },
  3535. {
  3536. name: "Megamacro",
  3537. height: math.unit(10, "miles")
  3538. },
  3539. {
  3540. name: "Gigamacro",
  3541. height: math.unit(25000, "miles")
  3542. },
  3543. {
  3544. name: "Full-Size",
  3545. height: math.unit(8000000, "gigaparsecs")
  3546. }
  3547. ]
  3548. ))
  3549. characterMakers.push(() => makeCharacter(
  3550. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3551. {
  3552. front: {
  3553. height: math.unit(2, "meter"),
  3554. weight: math.unit(60, "kg"),
  3555. name: "Front",
  3556. image: {
  3557. source: "./media/characters/noah/front.svg"
  3558. }
  3559. },
  3560. talons: {
  3561. height: math.unit(0.315, "meter"),
  3562. name: "Talons",
  3563. image: {
  3564. source: "./media/characters/noah/talons.svg"
  3565. }
  3566. }
  3567. },
  3568. [
  3569. {
  3570. name: "Large",
  3571. height: math.unit(50, "feet")
  3572. },
  3573. {
  3574. name: "Macro",
  3575. height: math.unit(750, "feet"),
  3576. default: true
  3577. },
  3578. {
  3579. name: "Megamacro",
  3580. height: math.unit(50, "miles")
  3581. },
  3582. {
  3583. name: "Gigamacro",
  3584. height: math.unit(100000, "miles")
  3585. },
  3586. {
  3587. name: "Full-Size",
  3588. height: math.unit(3000000000, "miles")
  3589. }
  3590. ]
  3591. ))
  3592. characterMakers.push(() => makeCharacter(
  3593. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3594. {
  3595. front: {
  3596. height: math.unit(2, "meter"),
  3597. weight: math.unit(80, "kg"),
  3598. name: "Front",
  3599. image: {
  3600. source: "./media/characters/natalya/front.svg"
  3601. }
  3602. },
  3603. back: {
  3604. height: math.unit(2, "meter"),
  3605. weight: math.unit(80, "kg"),
  3606. name: "Back",
  3607. image: {
  3608. source: "./media/characters/natalya/back.svg"
  3609. }
  3610. }
  3611. },
  3612. [
  3613. {
  3614. name: "Normal",
  3615. height: math.unit(150, "feet"),
  3616. default: true
  3617. },
  3618. {
  3619. name: "Megamacro",
  3620. height: math.unit(5, "miles")
  3621. },
  3622. {
  3623. name: "Full-Size",
  3624. height: math.unit(600, "kiloparsecs")
  3625. }
  3626. ]
  3627. ))
  3628. characterMakers.push(() => makeCharacter(
  3629. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3630. {
  3631. front: {
  3632. height: math.unit(2, "meter"),
  3633. weight: math.unit(50, "kg"),
  3634. name: "Front",
  3635. image: {
  3636. source: "./media/characters/erestrebah/front.svg",
  3637. extra: 1262/1162,
  3638. bottom: 96/1358
  3639. }
  3640. },
  3641. back: {
  3642. height: math.unit(2, "meter"),
  3643. weight: math.unit(50, "kg"),
  3644. name: "Back",
  3645. image: {
  3646. source: "./media/characters/erestrebah/back.svg",
  3647. extra: 1257/1139,
  3648. bottom: 13/1270
  3649. }
  3650. },
  3651. wing: {
  3652. height: math.unit(2, "meter"),
  3653. weight: math.unit(50, "kg"),
  3654. name: "Wing",
  3655. image: {
  3656. source: "./media/characters/erestrebah/wing.svg",
  3657. extra: 1262/1162,
  3658. bottom: 96/1358
  3659. }
  3660. },
  3661. mouth: {
  3662. height: math.unit(0.39, "feet"),
  3663. name: "Mouth",
  3664. image: {
  3665. source: "./media/characters/erestrebah/mouth.svg"
  3666. }
  3667. }
  3668. },
  3669. [
  3670. {
  3671. name: "Normal",
  3672. height: math.unit(10, "feet")
  3673. },
  3674. {
  3675. name: "Large",
  3676. height: math.unit(50, "feet"),
  3677. default: true
  3678. },
  3679. {
  3680. name: "Macro",
  3681. height: math.unit(300, "feet")
  3682. },
  3683. {
  3684. name: "Macro+",
  3685. height: math.unit(750, "feet")
  3686. },
  3687. {
  3688. name: "Megamacro",
  3689. height: math.unit(3, "miles")
  3690. }
  3691. ]
  3692. ))
  3693. characterMakers.push(() => makeCharacter(
  3694. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3695. {
  3696. front: {
  3697. height: math.unit(2, "meter"),
  3698. weight: math.unit(80, "kg"),
  3699. name: "Front",
  3700. image: {
  3701. source: "./media/characters/jennifer/front.svg",
  3702. bottom: 0.11,
  3703. extra: 1.16
  3704. }
  3705. },
  3706. frontAlt: {
  3707. height: math.unit(2, "meter"),
  3708. weight: math.unit(80, "kg"),
  3709. name: "Front (Alt)",
  3710. image: {
  3711. source: "./media/characters/jennifer/front-alt.svg"
  3712. }
  3713. }
  3714. },
  3715. [
  3716. {
  3717. name: "Canon Height",
  3718. height: math.unit(120, "feet"),
  3719. default: true
  3720. },
  3721. {
  3722. name: "Macro+",
  3723. height: math.unit(300, "feet")
  3724. },
  3725. {
  3726. name: "Megamacro",
  3727. height: math.unit(20000, "feet")
  3728. }
  3729. ]
  3730. ))
  3731. characterMakers.push(() => makeCharacter(
  3732. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3733. {
  3734. front: {
  3735. height: math.unit(2, "meter"),
  3736. weight: math.unit(50, "kg"),
  3737. name: "Front",
  3738. image: {
  3739. source: "./media/characters/kalista/front.svg",
  3740. extra: 1314/1145,
  3741. bottom: 101/1415
  3742. }
  3743. },
  3744. back: {
  3745. height: math.unit(2, "meter"),
  3746. weight: math.unit(50, "kg"),
  3747. name: "Back",
  3748. image: {
  3749. source: "./media/characters/kalista/back.svg",
  3750. extra: 1366 / 1156,
  3751. bottom: 33.9 / 1362.78
  3752. }
  3753. }
  3754. },
  3755. [
  3756. {
  3757. name: "Uncomfortably Small",
  3758. height: math.unit(10, "feet")
  3759. },
  3760. {
  3761. name: "Small",
  3762. height: math.unit(30, "feet")
  3763. },
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(100, "feet"),
  3767. default: true
  3768. },
  3769. {
  3770. name: "Macro+",
  3771. height: math.unit(2000, "feet")
  3772. },
  3773. {
  3774. name: "True Form",
  3775. height: math.unit(8924, "miles")
  3776. }
  3777. ]
  3778. ))
  3779. characterMakers.push(() => makeCharacter(
  3780. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3781. {
  3782. front: {
  3783. height: math.unit(2, "meter"),
  3784. weight: math.unit(120, "kg"),
  3785. name: "Front",
  3786. image: {
  3787. source: "./media/characters/ggv/front.svg"
  3788. }
  3789. },
  3790. side: {
  3791. height: math.unit(2, "meter"),
  3792. weight: math.unit(120, "kg"),
  3793. name: "Side",
  3794. image: {
  3795. source: "./media/characters/ggv/side.svg"
  3796. }
  3797. }
  3798. },
  3799. [
  3800. {
  3801. name: "Extremely Puny",
  3802. height: math.unit(9 + 5 / 12, "feet")
  3803. },
  3804. {
  3805. name: "Horribly Small",
  3806. height: math.unit(47.7, "miles"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Reasonably Sized",
  3811. height: math.unit(25000, "parsecs")
  3812. },
  3813. {
  3814. name: "Slightly Uncompressed",
  3815. height: math.unit(7.77e31, "parsecs")
  3816. },
  3817. {
  3818. name: "Omniversal",
  3819. height: math.unit(1e300, "meters")
  3820. },
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3825. {
  3826. front: {
  3827. height: math.unit(2, "meter"),
  3828. weight: math.unit(75, "lb"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/napalm/front.svg"
  3832. }
  3833. },
  3834. back: {
  3835. height: math.unit(2, "meter"),
  3836. weight: math.unit(75, "lb"),
  3837. name: "Back",
  3838. image: {
  3839. source: "./media/characters/napalm/back.svg"
  3840. }
  3841. }
  3842. },
  3843. [
  3844. {
  3845. name: "Standard",
  3846. height: math.unit(55, "feet"),
  3847. default: true
  3848. }
  3849. ]
  3850. ))
  3851. characterMakers.push(() => makeCharacter(
  3852. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3853. {
  3854. front: {
  3855. height: math.unit(7 + 5 / 6, "feet"),
  3856. weight: math.unit(325, "lb"),
  3857. name: "Front",
  3858. image: {
  3859. source: "./media/characters/asana/front.svg",
  3860. extra: 1133 / 1060,
  3861. bottom: 15.2 / 1148.6
  3862. }
  3863. },
  3864. back: {
  3865. height: math.unit(7 + 5 / 6, "feet"),
  3866. weight: math.unit(325, "lb"),
  3867. name: "Back",
  3868. image: {
  3869. source: "./media/characters/asana/back.svg",
  3870. extra: 1114 / 1043,
  3871. bottom: 5 / 1120
  3872. }
  3873. },
  3874. dressedDark: {
  3875. height: math.unit(7 + 5 / 6, "feet"),
  3876. weight: math.unit(325, "lb"),
  3877. name: "Dressed (Dark)",
  3878. image: {
  3879. source: "./media/characters/asana/dressed-dark.svg",
  3880. extra: 1133 / 1060,
  3881. bottom: 15.2 / 1148.6
  3882. }
  3883. },
  3884. dressedLight: {
  3885. height: math.unit(7 + 5 / 6, "feet"),
  3886. weight: math.unit(325, "lb"),
  3887. name: "Dressed (Light)",
  3888. image: {
  3889. source: "./media/characters/asana/dressed-light.svg",
  3890. extra: 1133 / 1060,
  3891. bottom: 15.2 / 1148.6
  3892. }
  3893. },
  3894. },
  3895. [
  3896. {
  3897. name: "Standard",
  3898. height: math.unit(7 + 5 / 6, "feet"),
  3899. default: true
  3900. },
  3901. {
  3902. name: "Large",
  3903. height: math.unit(10, "meters")
  3904. },
  3905. {
  3906. name: "Macro",
  3907. height: math.unit(2500, "meters")
  3908. },
  3909. {
  3910. name: "Megamacro",
  3911. height: math.unit(5e6, "meters")
  3912. },
  3913. {
  3914. name: "Examacro",
  3915. height: math.unit(5e12, "lightyears")
  3916. },
  3917. {
  3918. name: "Max Size",
  3919. height: math.unit(1e31, "lightyears")
  3920. }
  3921. ]
  3922. ))
  3923. characterMakers.push(() => makeCharacter(
  3924. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3925. {
  3926. front: {
  3927. height: math.unit(2, "meter"),
  3928. weight: math.unit(60, "kg"),
  3929. name: "Front",
  3930. image: {
  3931. source: "./media/characters/ebony/front.svg",
  3932. bottom: 0.03,
  3933. extra: 1045 / 810 + 0.03
  3934. }
  3935. },
  3936. side: {
  3937. height: math.unit(2, "meter"),
  3938. weight: math.unit(60, "kg"),
  3939. name: "Side",
  3940. image: {
  3941. source: "./media/characters/ebony/side.svg",
  3942. bottom: 0.03,
  3943. extra: 1045 / 810 + 0.03
  3944. }
  3945. },
  3946. back: {
  3947. height: math.unit(2, "meter"),
  3948. weight: math.unit(60, "kg"),
  3949. name: "Back",
  3950. image: {
  3951. source: "./media/characters/ebony/back.svg",
  3952. bottom: 0.01,
  3953. extra: 1045 / 810 + 0.01
  3954. }
  3955. },
  3956. },
  3957. [
  3958. // TODO check why I did this lol
  3959. {
  3960. name: "Standard",
  3961. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(200, "feet")
  3967. },
  3968. {
  3969. name: "Gigamacro",
  3970. height: math.unit(13000, "km")
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(6, "feet"),
  3979. weight: math.unit(175, "lb"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/mountain/front.svg",
  3983. extra: 972 / 955,
  3984. bottom: 64 / 1036.6
  3985. }
  3986. },
  3987. back: {
  3988. height: math.unit(6, "feet"),
  3989. weight: math.unit(175, "lb"),
  3990. name: "Back",
  3991. image: {
  3992. source: "./media/characters/mountain/back.svg",
  3993. extra: 970 / 950,
  3994. bottom: 28.25 / 999
  3995. }
  3996. },
  3997. },
  3998. [
  3999. {
  4000. name: "Large",
  4001. height: math.unit(20, "meters")
  4002. },
  4003. {
  4004. name: "Macro",
  4005. height: math.unit(300, "meters")
  4006. },
  4007. {
  4008. name: "Gigamacro",
  4009. height: math.unit(10000, "km"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Examacro",
  4014. height: math.unit(10e9, "lightyears")
  4015. }
  4016. ]
  4017. ))
  4018. characterMakers.push(() => makeCharacter(
  4019. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4020. {
  4021. front: {
  4022. height: math.unit(8, "feet"),
  4023. weight: math.unit(500, "lb"),
  4024. name: "Front",
  4025. image: {
  4026. source: "./media/characters/rick/front.svg"
  4027. }
  4028. }
  4029. },
  4030. [
  4031. {
  4032. name: "Normal",
  4033. height: math.unit(8, "feet"),
  4034. default: true
  4035. },
  4036. {
  4037. name: "Macro",
  4038. height: math.unit(5, "km")
  4039. }
  4040. ]
  4041. ))
  4042. characterMakers.push(() => makeCharacter(
  4043. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4044. {
  4045. front: {
  4046. height: math.unit(8, "feet"),
  4047. weight: math.unit(120, "lb"),
  4048. name: "Front",
  4049. image: {
  4050. source: "./media/characters/ona/front.svg"
  4051. }
  4052. },
  4053. frontAlt: {
  4054. height: math.unit(8, "feet"),
  4055. weight: math.unit(120, "lb"),
  4056. name: "Front (Alt)",
  4057. image: {
  4058. source: "./media/characters/ona/front-alt.svg"
  4059. }
  4060. },
  4061. back: {
  4062. height: math.unit(8, "feet"),
  4063. weight: math.unit(120, "lb"),
  4064. name: "Back",
  4065. image: {
  4066. source: "./media/characters/ona/back.svg"
  4067. }
  4068. },
  4069. foot: {
  4070. height: math.unit(1.1, "feet"),
  4071. name: "Foot",
  4072. image: {
  4073. source: "./media/characters/ona/foot.svg"
  4074. }
  4075. }
  4076. },
  4077. [
  4078. {
  4079. name: "Megamacro",
  4080. height: math.unit(70, "km"),
  4081. default: true
  4082. },
  4083. {
  4084. name: "Gigamacro",
  4085. height: math.unit(681818, "miles")
  4086. },
  4087. {
  4088. name: "Examacro",
  4089. height: math.unit(3800000, "lightyears")
  4090. },
  4091. ]
  4092. ))
  4093. characterMakers.push(() => makeCharacter(
  4094. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4095. {
  4096. front: {
  4097. height: math.unit(12, "feet"),
  4098. weight: math.unit(3000, "lb"),
  4099. name: "Front",
  4100. image: {
  4101. source: "./media/characters/mech/front.svg",
  4102. extra: 2900 / 2770,
  4103. bottom: 110 / 3010
  4104. }
  4105. },
  4106. back: {
  4107. height: math.unit(12, "feet"),
  4108. weight: math.unit(3000, "lb"),
  4109. name: "Back",
  4110. image: {
  4111. source: "./media/characters/mech/back.svg",
  4112. extra: 3011 / 2890,
  4113. bottom: 94 / 3105
  4114. }
  4115. },
  4116. maw: {
  4117. height: math.unit(3.07, "feet"),
  4118. name: "Maw",
  4119. image: {
  4120. source: "./media/characters/mech/maw.svg"
  4121. }
  4122. },
  4123. head: {
  4124. height: math.unit(2.82, "feet"),
  4125. name: "Head",
  4126. image: {
  4127. source: "./media/characters/mech/head.svg"
  4128. }
  4129. },
  4130. dick: {
  4131. height: math.unit(1.43, "feet"),
  4132. name: "Dick",
  4133. image: {
  4134. source: "./media/characters/mech/dick.svg"
  4135. }
  4136. },
  4137. },
  4138. [
  4139. {
  4140. name: "Normal",
  4141. height: math.unit(12, "feet")
  4142. },
  4143. {
  4144. name: "Macro",
  4145. height: math.unit(300, "feet"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Macro+",
  4150. height: math.unit(1500, "feet")
  4151. },
  4152. ]
  4153. ))
  4154. characterMakers.push(() => makeCharacter(
  4155. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4156. {
  4157. front: {
  4158. height: math.unit(1.3, "meter"),
  4159. weight: math.unit(30, "kg"),
  4160. name: "Front",
  4161. image: {
  4162. source: "./media/characters/gregory/front.svg",
  4163. }
  4164. }
  4165. },
  4166. [
  4167. {
  4168. name: "Normal",
  4169. height: math.unit(1.3, "meter"),
  4170. default: true
  4171. },
  4172. {
  4173. name: "Macro",
  4174. height: math.unit(20, "meter")
  4175. }
  4176. ]
  4177. ))
  4178. characterMakers.push(() => makeCharacter(
  4179. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4180. {
  4181. front: {
  4182. height: math.unit(2.8, "meter"),
  4183. weight: math.unit(200, "kg"),
  4184. name: "Front",
  4185. image: {
  4186. source: "./media/characters/elory/front.svg",
  4187. }
  4188. }
  4189. },
  4190. [
  4191. {
  4192. name: "Normal",
  4193. height: math.unit(2.8, "meter"),
  4194. default: true
  4195. },
  4196. {
  4197. name: "Macro",
  4198. height: math.unit(38, "meter")
  4199. }
  4200. ]
  4201. ))
  4202. characterMakers.push(() => makeCharacter(
  4203. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4204. {
  4205. front: {
  4206. height: math.unit(470, "feet"),
  4207. weight: math.unit(924, "tons"),
  4208. name: "Front",
  4209. image: {
  4210. source: "./media/characters/angelpatamon/front.svg",
  4211. }
  4212. }
  4213. },
  4214. [
  4215. {
  4216. name: "Normal",
  4217. height: math.unit(470, "feet"),
  4218. default: true
  4219. },
  4220. {
  4221. name: "Deity Size I",
  4222. height: math.unit(28651.2, "km")
  4223. },
  4224. {
  4225. name: "Deity Size II",
  4226. height: math.unit(171907.2, "km")
  4227. }
  4228. ]
  4229. ))
  4230. characterMakers.push(() => makeCharacter(
  4231. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4232. {
  4233. side: {
  4234. height: math.unit(7.2, "meter"),
  4235. weight: math.unit(8.2, "tons"),
  4236. name: "Side",
  4237. image: {
  4238. source: "./media/characters/cryae/side.svg",
  4239. extra: 3500 / 1500
  4240. }
  4241. }
  4242. },
  4243. [
  4244. {
  4245. name: "Normal",
  4246. height: math.unit(7.2, "meter"),
  4247. default: true
  4248. }
  4249. ]
  4250. ))
  4251. characterMakers.push(() => makeCharacter(
  4252. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4253. {
  4254. front: {
  4255. height: math.unit(6, "feet"),
  4256. weight: math.unit(175, "lb"),
  4257. name: "Front",
  4258. image: {
  4259. source: "./media/characters/xera/front.svg",
  4260. extra: 2377 / 1972,
  4261. bottom: 75.5 / 2452
  4262. }
  4263. },
  4264. side: {
  4265. height: math.unit(6, "feet"),
  4266. weight: math.unit(175, "lb"),
  4267. name: "Side",
  4268. image: {
  4269. source: "./media/characters/xera/side.svg",
  4270. extra: 2345 / 2019,
  4271. bottom: 39.7 / 2384
  4272. }
  4273. },
  4274. back: {
  4275. height: math.unit(6, "feet"),
  4276. weight: math.unit(175, "lb"),
  4277. name: "Back",
  4278. image: {
  4279. source: "./media/characters/xera/back.svg",
  4280. extra: 2095 / 1984,
  4281. bottom: 67 / 2166
  4282. }
  4283. },
  4284. },
  4285. [
  4286. {
  4287. name: "Small",
  4288. height: math.unit(10, "feet")
  4289. },
  4290. {
  4291. name: "Macro",
  4292. height: math.unit(500, "meters"),
  4293. default: true
  4294. },
  4295. {
  4296. name: "Macro+",
  4297. height: math.unit(10, "km")
  4298. },
  4299. {
  4300. name: "Gigamacro",
  4301. height: math.unit(25000, "km")
  4302. },
  4303. {
  4304. name: "Teramacro",
  4305. height: math.unit(3e6, "km")
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(6, "feet"),
  4314. weight: math.unit(175, "lb"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/nebula/front.svg",
  4318. extra: 2566 / 2362,
  4319. bottom: 81 / 2644
  4320. }
  4321. }
  4322. },
  4323. [
  4324. {
  4325. name: "Small",
  4326. height: math.unit(4.5, "meters")
  4327. },
  4328. {
  4329. name: "Macro",
  4330. height: math.unit(1500, "meters"),
  4331. default: true
  4332. },
  4333. {
  4334. name: "Megamacro",
  4335. height: math.unit(150, "km")
  4336. },
  4337. {
  4338. name: "Gigamacro",
  4339. height: math.unit(27000, "km")
  4340. }
  4341. ]
  4342. ))
  4343. characterMakers.push(() => makeCharacter(
  4344. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4345. {
  4346. front: {
  4347. height: math.unit(6, "feet"),
  4348. weight: math.unit(225, "lb"),
  4349. name: "Front",
  4350. image: {
  4351. source: "./media/characters/abysgar/front.svg"
  4352. }
  4353. }
  4354. },
  4355. [
  4356. {
  4357. name: "Small",
  4358. height: math.unit(4.5, "meters")
  4359. },
  4360. {
  4361. name: "Macro",
  4362. height: math.unit(1250, "meters"),
  4363. default: true
  4364. },
  4365. {
  4366. name: "Megamacro",
  4367. height: math.unit(125, "km")
  4368. },
  4369. {
  4370. name: "Gigamacro",
  4371. height: math.unit(26000, "km")
  4372. }
  4373. ]
  4374. ))
  4375. characterMakers.push(() => makeCharacter(
  4376. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4377. {
  4378. front: {
  4379. height: math.unit(6, "feet"),
  4380. weight: math.unit(180, "lb"),
  4381. name: "Front",
  4382. image: {
  4383. source: "./media/characters/yakuz/front.svg"
  4384. }
  4385. }
  4386. },
  4387. [
  4388. {
  4389. name: "Small",
  4390. height: math.unit(5, "meters")
  4391. },
  4392. {
  4393. name: "Macro",
  4394. height: math.unit(1500, "meters"),
  4395. default: true
  4396. },
  4397. {
  4398. name: "Megamacro",
  4399. height: math.unit(200, "km")
  4400. },
  4401. {
  4402. name: "Gigamacro",
  4403. height: math.unit(100000, "km")
  4404. }
  4405. ]
  4406. ))
  4407. characterMakers.push(() => makeCharacter(
  4408. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4409. {
  4410. front: {
  4411. height: math.unit(6, "feet"),
  4412. weight: math.unit(175, "lb"),
  4413. name: "Front",
  4414. image: {
  4415. source: "./media/characters/mirova/front.svg",
  4416. extra: 3334 / 3071,
  4417. bottom: 42 / 3375.6
  4418. }
  4419. }
  4420. },
  4421. [
  4422. {
  4423. name: "Small",
  4424. height: math.unit(5, "meters")
  4425. },
  4426. {
  4427. name: "Macro",
  4428. height: math.unit(900, "meters"),
  4429. default: true
  4430. },
  4431. {
  4432. name: "Megamacro",
  4433. height: math.unit(135, "km")
  4434. },
  4435. {
  4436. name: "Gigamacro",
  4437. height: math.unit(20000, "km")
  4438. }
  4439. ]
  4440. ))
  4441. characterMakers.push(() => makeCharacter(
  4442. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4443. {
  4444. side: {
  4445. height: math.unit(28.35, "feet"),
  4446. weight: math.unit(99.75, "tons"),
  4447. name: "Side",
  4448. image: {
  4449. source: "./media/characters/asana-mech/side.svg",
  4450. extra: 923 / 699,
  4451. bottom: 50 / 975
  4452. }
  4453. },
  4454. chaingun: {
  4455. height: math.unit(7, "feet"),
  4456. weight: math.unit(2400, "lb"),
  4457. name: "Chaingun",
  4458. image: {
  4459. source: "./media/characters/asana-mech/chaingun.svg"
  4460. }
  4461. },
  4462. laser: {
  4463. height: math.unit(7.12, "feet"),
  4464. weight: math.unit(2000, "lb"),
  4465. name: "Laser",
  4466. image: {
  4467. source: "./media/characters/asana-mech/laser.svg"
  4468. }
  4469. },
  4470. },
  4471. [
  4472. {
  4473. name: "Normal",
  4474. height: math.unit(28.35, "feet"),
  4475. default: true
  4476. },
  4477. {
  4478. name: "Macro",
  4479. height: math.unit(2500, "feet")
  4480. },
  4481. {
  4482. name: "Megamacro",
  4483. height: math.unit(25, "miles")
  4484. },
  4485. {
  4486. name: "Examacro",
  4487. height: math.unit(6e8, "lightyears")
  4488. },
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(5, "meters"),
  4496. weight: math.unit(1000, "kg"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/asche/front.svg",
  4500. extra: 1258 / 1190,
  4501. bottom: 47 / 1305
  4502. }
  4503. },
  4504. frontUnderwear: {
  4505. height: math.unit(5, "meters"),
  4506. weight: math.unit(1000, "kg"),
  4507. name: "Front (Underwear)",
  4508. image: {
  4509. source: "./media/characters/asche/front-underwear.svg",
  4510. extra: 1258 / 1190,
  4511. bottom: 47 / 1305
  4512. }
  4513. },
  4514. frontDressed: {
  4515. height: math.unit(5, "meters"),
  4516. weight: math.unit(1000, "kg"),
  4517. name: "Front (Dressed)",
  4518. image: {
  4519. source: "./media/characters/asche/front-dressed.svg",
  4520. extra: 1258 / 1190,
  4521. bottom: 47 / 1305
  4522. }
  4523. },
  4524. frontArmor: {
  4525. height: math.unit(5, "meters"),
  4526. weight: math.unit(1000, "kg"),
  4527. name: "Front (Armored)",
  4528. image: {
  4529. source: "./media/characters/asche/front-armored.svg",
  4530. extra: 1374 / 1308,
  4531. bottom: 23 / 1397
  4532. }
  4533. },
  4534. mp724: {
  4535. height: math.unit(0.96, "meters"),
  4536. weight: math.unit(38, "kg"),
  4537. name: "H&K MP724",
  4538. image: {
  4539. source: "./media/characters/asche/h&k-mp724.svg"
  4540. }
  4541. },
  4542. side: {
  4543. height: math.unit(5, "meters"),
  4544. weight: math.unit(1000, "kg"),
  4545. name: "Side",
  4546. image: {
  4547. source: "./media/characters/asche/side.svg",
  4548. extra: 1717 / 1609,
  4549. bottom: 0.005
  4550. }
  4551. },
  4552. back: {
  4553. height: math.unit(5, "meters"),
  4554. weight: math.unit(1000, "kg"),
  4555. name: "Back",
  4556. image: {
  4557. source: "./media/characters/asche/back.svg",
  4558. extra: 1570 / 1501
  4559. }
  4560. },
  4561. },
  4562. [
  4563. {
  4564. name: "DEFCON 5",
  4565. height: math.unit(5, "meters")
  4566. },
  4567. {
  4568. name: "DEFCON 4",
  4569. height: math.unit(500, "meters"),
  4570. default: true
  4571. },
  4572. {
  4573. name: "DEFCON 3",
  4574. height: math.unit(5, "km")
  4575. },
  4576. {
  4577. name: "DEFCON 2",
  4578. height: math.unit(500, "km")
  4579. },
  4580. {
  4581. name: "DEFCON 1",
  4582. height: math.unit(500000, "km")
  4583. },
  4584. {
  4585. name: "DEFCON 0",
  4586. height: math.unit(3, "gigaparsecs")
  4587. },
  4588. ]
  4589. ))
  4590. characterMakers.push(() => makeCharacter(
  4591. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4592. {
  4593. front: {
  4594. height: math.unit(2, "meters"),
  4595. weight: math.unit(76, "kg"),
  4596. name: "Front",
  4597. image: {
  4598. source: "./media/characters/gale/front.svg"
  4599. }
  4600. },
  4601. frontAlt1: {
  4602. height: math.unit(2, "meters"),
  4603. weight: math.unit(76, "kg"),
  4604. name: "Front (Alt 1)",
  4605. image: {
  4606. source: "./media/characters/gale/front-alt-1.svg"
  4607. }
  4608. },
  4609. frontAlt2: {
  4610. height: math.unit(2, "meters"),
  4611. weight: math.unit(76, "kg"),
  4612. name: "Front (Alt 2)",
  4613. image: {
  4614. source: "./media/characters/gale/front-alt-2.svg"
  4615. }
  4616. },
  4617. },
  4618. [
  4619. {
  4620. name: "Normal",
  4621. height: math.unit(7, "feet")
  4622. },
  4623. {
  4624. name: "Macro",
  4625. height: math.unit(150, "feet"),
  4626. default: true
  4627. },
  4628. {
  4629. name: "Macro+",
  4630. height: math.unit(300, "feet")
  4631. },
  4632. ]
  4633. ))
  4634. characterMakers.push(() => makeCharacter(
  4635. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4636. {
  4637. front: {
  4638. height: math.unit(5 + 10/12, "feet"),
  4639. weight: math.unit(67, "kg"),
  4640. name: "Front",
  4641. image: {
  4642. source: "./media/characters/draylen/front.svg",
  4643. extra: 832/777,
  4644. bottom: 85/917
  4645. }
  4646. }
  4647. },
  4648. [
  4649. {
  4650. name: "Normal",
  4651. height: math.unit(5 + 10/12, "feet")
  4652. },
  4653. {
  4654. name: "Macro",
  4655. height: math.unit(150, "feet"),
  4656. default: true
  4657. }
  4658. ]
  4659. ))
  4660. characterMakers.push(() => makeCharacter(
  4661. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4662. {
  4663. front: {
  4664. height: math.unit(7 + 9 / 12, "feet"),
  4665. weight: math.unit(379, "lbs"),
  4666. name: "Front",
  4667. image: {
  4668. source: "./media/characters/chez/front.svg"
  4669. }
  4670. },
  4671. side: {
  4672. height: math.unit(7 + 9 / 12, "feet"),
  4673. weight: math.unit(379, "lbs"),
  4674. name: "Side",
  4675. image: {
  4676. source: "./media/characters/chez/side.svg"
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Normal",
  4683. height: math.unit(7 + 9 / 12, "feet"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "God King",
  4688. height: math.unit(9750000, "meters")
  4689. }
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4694. {
  4695. front: {
  4696. height: math.unit(6, "feet"),
  4697. weight: math.unit(275, "lbs"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/kaylum/front.svg",
  4701. bottom: 0.01,
  4702. extra: 1166 / 1031
  4703. }
  4704. },
  4705. frontWingless: {
  4706. height: math.unit(6, "feet"),
  4707. weight: math.unit(275, "lbs"),
  4708. name: "Front (Wingless)",
  4709. image: {
  4710. source: "./media/characters/kaylum/front-wingless.svg",
  4711. bottom: 0.01,
  4712. extra: 1117 / 1031
  4713. }
  4714. }
  4715. },
  4716. [
  4717. {
  4718. name: "Normal",
  4719. height: math.unit(3.05, "meters")
  4720. },
  4721. {
  4722. name: "Master",
  4723. height: math.unit(5.5, "meters")
  4724. },
  4725. {
  4726. name: "Rampage",
  4727. height: math.unit(19, "meters")
  4728. },
  4729. {
  4730. name: "Macro Lite",
  4731. height: math.unit(37, "meters")
  4732. },
  4733. {
  4734. name: "Hyper Predator",
  4735. height: math.unit(61, "meters")
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(138, "meters"),
  4740. default: true
  4741. }
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(6, "feet"),
  4749. weight: math.unit(150, "lbs"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/geta/front.svg"
  4753. }
  4754. }
  4755. },
  4756. [
  4757. {
  4758. name: "Micro",
  4759. height: math.unit(3, "inches"),
  4760. default: true
  4761. },
  4762. {
  4763. name: "Normal",
  4764. height: math.unit(5 + 5 / 12, "feet")
  4765. }
  4766. ]
  4767. ))
  4768. characterMakers.push(() => makeCharacter(
  4769. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4770. {
  4771. front: {
  4772. height: math.unit(6, "feet"),
  4773. weight: math.unit(300, "lbs"),
  4774. name: "Front",
  4775. image: {
  4776. source: "./media/characters/tyrnn/front.svg"
  4777. }
  4778. }
  4779. },
  4780. [
  4781. {
  4782. name: "Main Height",
  4783. height: math.unit(355, "feet"),
  4784. default: true
  4785. },
  4786. {
  4787. name: "Fave. Height",
  4788. height: math.unit(2400, "feet")
  4789. }
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4794. {
  4795. front: {
  4796. height: math.unit(6, "feet"),
  4797. weight: math.unit(300, "lbs"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/appledectomy/front.svg"
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Macro",
  4807. height: math.unit(2500, "feet")
  4808. },
  4809. {
  4810. name: "Megamacro",
  4811. height: math.unit(50, "miles"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Gigamacro",
  4816. height: math.unit(5000, "miles")
  4817. },
  4818. {
  4819. name: "Teramacro",
  4820. height: math.unit(250000, "miles")
  4821. },
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(200, "lbs"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/vulpes/front.svg",
  4833. extra: 573 / 543,
  4834. bottom: 0.033
  4835. }
  4836. },
  4837. side: {
  4838. height: math.unit(6, "feet"),
  4839. weight: math.unit(200, "lbs"),
  4840. name: "Side",
  4841. image: {
  4842. source: "./media/characters/vulpes/side.svg",
  4843. extra: 577 / 549,
  4844. bottom: 11 / 588
  4845. }
  4846. },
  4847. back: {
  4848. height: math.unit(6, "feet"),
  4849. weight: math.unit(200, "lbs"),
  4850. name: "Back",
  4851. image: {
  4852. source: "./media/characters/vulpes/back.svg",
  4853. extra: 573 / 549,
  4854. bottom: 20 / 593
  4855. }
  4856. },
  4857. feet: {
  4858. height: math.unit(1.276, "feet"),
  4859. name: "Feet",
  4860. image: {
  4861. source: "./media/characters/vulpes/feet.svg"
  4862. }
  4863. },
  4864. maw: {
  4865. height: math.unit(1.18, "feet"),
  4866. name: "Maw",
  4867. image: {
  4868. source: "./media/characters/vulpes/maw.svg"
  4869. }
  4870. },
  4871. },
  4872. [
  4873. {
  4874. name: "Micro",
  4875. height: math.unit(2, "inches")
  4876. },
  4877. {
  4878. name: "Normal",
  4879. height: math.unit(6.3, "feet")
  4880. },
  4881. {
  4882. name: "Macro",
  4883. height: math.unit(850, "feet")
  4884. },
  4885. {
  4886. name: "Megamacro",
  4887. height: math.unit(7500, "feet"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Gigamacro",
  4892. height: math.unit(570000, "miles")
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4898. {
  4899. front: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(210, "lbs"),
  4902. name: "Front",
  4903. image: {
  4904. source: "./media/characters/rain-fallen/front.svg"
  4905. }
  4906. },
  4907. side: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(210, "lbs"),
  4910. name: "Side",
  4911. image: {
  4912. source: "./media/characters/rain-fallen/side.svg"
  4913. }
  4914. },
  4915. back: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(210, "lbs"),
  4918. name: "Back",
  4919. image: {
  4920. source: "./media/characters/rain-fallen/back.svg"
  4921. }
  4922. },
  4923. feral: {
  4924. height: math.unit(9, "feet"),
  4925. weight: math.unit(700, "lbs"),
  4926. name: "Feral",
  4927. image: {
  4928. source: "./media/characters/rain-fallen/feral.svg"
  4929. }
  4930. },
  4931. },
  4932. [
  4933. {
  4934. name: "Meddling with Mortals",
  4935. height: math.unit(8 + 8/12, "feet")
  4936. },
  4937. {
  4938. name: "Normal",
  4939. height: math.unit(5, "meter")
  4940. },
  4941. {
  4942. name: "Macro",
  4943. height: math.unit(150, "meter"),
  4944. default: true
  4945. },
  4946. {
  4947. name: "Megamacro",
  4948. height: math.unit(278e6, "meter")
  4949. },
  4950. {
  4951. name: "Gigamacro",
  4952. height: math.unit(2e9, "meter")
  4953. },
  4954. {
  4955. name: "Teramacro",
  4956. height: math.unit(8e12, "meter")
  4957. },
  4958. {
  4959. name: "Devourer",
  4960. height: math.unit(14, "zettameters")
  4961. },
  4962. {
  4963. name: "Scarlet King",
  4964. height: math.unit(18, "yottameters")
  4965. },
  4966. {
  4967. name: "Void",
  4968. height: math.unit(1e88, "yottameters")
  4969. }
  4970. ]
  4971. ))
  4972. characterMakers.push(() => makeCharacter(
  4973. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4974. {
  4975. standing: {
  4976. height: math.unit(6, "feet"),
  4977. weight: math.unit(180, "lbs"),
  4978. name: "Standing",
  4979. image: {
  4980. source: "./media/characters/zaakira/standing.svg",
  4981. extra: 1599/1504,
  4982. bottom: 39/1638
  4983. }
  4984. },
  4985. laying: {
  4986. height: math.unit(3, "feet"),
  4987. weight: math.unit(180, "lbs"),
  4988. name: "Laying",
  4989. image: {
  4990. source: "./media/characters/zaakira/laying.svg"
  4991. }
  4992. },
  4993. },
  4994. [
  4995. {
  4996. name: "Normal",
  4997. height: math.unit(12, "feet")
  4998. },
  4999. {
  5000. name: "Macro",
  5001. height: math.unit(279, "feet"),
  5002. default: true
  5003. }
  5004. ]
  5005. ))
  5006. characterMakers.push(() => makeCharacter(
  5007. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5008. {
  5009. femSfw: {
  5010. height: math.unit(8, "feet"),
  5011. weight: math.unit(350, "lb"),
  5012. name: "Fem",
  5013. image: {
  5014. source: "./media/characters/sigvald/fem-sfw.svg",
  5015. extra: 182 / 164,
  5016. bottom: 8.7 / 190.5
  5017. }
  5018. },
  5019. femNsfw: {
  5020. height: math.unit(8, "feet"),
  5021. weight: math.unit(350, "lb"),
  5022. name: "Fem (NSFW)",
  5023. image: {
  5024. source: "./media/characters/sigvald/fem-nsfw.svg",
  5025. extra: 182 / 164,
  5026. bottom: 8.7 / 190.5
  5027. }
  5028. },
  5029. maleNsfw: {
  5030. height: math.unit(8, "feet"),
  5031. weight: math.unit(350, "lb"),
  5032. name: "Male (NSFW)",
  5033. image: {
  5034. source: "./media/characters/sigvald/male-nsfw.svg",
  5035. extra: 182 / 164,
  5036. bottom: 8.7 / 190.5
  5037. }
  5038. },
  5039. hermNsfw: {
  5040. height: math.unit(8, "feet"),
  5041. weight: math.unit(350, "lb"),
  5042. name: "Herm (NSFW)",
  5043. image: {
  5044. source: "./media/characters/sigvald/herm-nsfw.svg",
  5045. extra: 182 / 164,
  5046. bottom: 8.7 / 190.5
  5047. }
  5048. },
  5049. dick: {
  5050. height: math.unit(2.36, "feet"),
  5051. name: "Dick",
  5052. image: {
  5053. source: "./media/characters/sigvald/dick.svg"
  5054. }
  5055. },
  5056. eye: {
  5057. height: math.unit(0.31, "feet"),
  5058. name: "Eye",
  5059. image: {
  5060. source: "./media/characters/sigvald/eye.svg"
  5061. }
  5062. },
  5063. mouth: {
  5064. height: math.unit(0.92, "feet"),
  5065. name: "Mouth",
  5066. image: {
  5067. source: "./media/characters/sigvald/mouth.svg"
  5068. }
  5069. },
  5070. paws: {
  5071. height: math.unit(2.2, "feet"),
  5072. name: "Paws",
  5073. image: {
  5074. source: "./media/characters/sigvald/paws.svg"
  5075. }
  5076. }
  5077. },
  5078. [
  5079. {
  5080. name: "Normal",
  5081. height: math.unit(8, "feet")
  5082. },
  5083. {
  5084. name: "Large",
  5085. height: math.unit(12, "feet")
  5086. },
  5087. {
  5088. name: "Larger",
  5089. height: math.unit(20, "feet")
  5090. },
  5091. {
  5092. name: "Macro",
  5093. height: math.unit(150, "feet")
  5094. },
  5095. {
  5096. name: "Macro+",
  5097. height: math.unit(200, "feet"),
  5098. default: true
  5099. },
  5100. ]
  5101. ))
  5102. characterMakers.push(() => makeCharacter(
  5103. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5104. {
  5105. side: {
  5106. height: math.unit(12, "feet"),
  5107. weight: math.unit(2000, "kg"),
  5108. name: "Side",
  5109. image: {
  5110. source: "./media/characters/scott/side.svg",
  5111. extra: 754 / 724,
  5112. bottom: 0.069
  5113. }
  5114. },
  5115. upright: {
  5116. height: math.unit(12, "feet"),
  5117. weight: math.unit(2000, "kg"),
  5118. name: "Upright",
  5119. image: {
  5120. source: "./media/characters/scott/upright.svg",
  5121. extra: 3881 / 3722,
  5122. bottom: 0.05
  5123. }
  5124. },
  5125. },
  5126. [
  5127. {
  5128. name: "Normal",
  5129. height: math.unit(12, "feet"),
  5130. default: true
  5131. },
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5136. {
  5137. side: {
  5138. height: math.unit(8, "meters"),
  5139. weight: math.unit(84755, "lbs"),
  5140. name: "Side",
  5141. image: {
  5142. source: "./media/characters/tobias/side.svg",
  5143. extra: 1474 / 1096,
  5144. bottom: 38.9 / 1513.1235
  5145. }
  5146. },
  5147. },
  5148. [
  5149. {
  5150. name: "Normal",
  5151. height: math.unit(8, "meters"),
  5152. default: true
  5153. },
  5154. ]
  5155. ))
  5156. characterMakers.push(() => makeCharacter(
  5157. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5158. {
  5159. front: {
  5160. height: math.unit(5.5, "feet"),
  5161. weight: math.unit(400, "lbs"),
  5162. name: "Front",
  5163. image: {
  5164. source: "./media/characters/kieran/front.svg",
  5165. extra: 2694 / 2364,
  5166. bottom: 217 / 2908
  5167. }
  5168. },
  5169. side: {
  5170. height: math.unit(5.5, "feet"),
  5171. weight: math.unit(400, "lbs"),
  5172. name: "Side",
  5173. image: {
  5174. source: "./media/characters/kieran/side.svg",
  5175. extra: 875 / 777,
  5176. bottom: 84.6 / 959
  5177. }
  5178. },
  5179. },
  5180. [
  5181. {
  5182. name: "Normal",
  5183. height: math.unit(5.5, "feet"),
  5184. default: true
  5185. },
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5190. {
  5191. side: {
  5192. height: math.unit(2, "meters"),
  5193. weight: math.unit(70, "kg"),
  5194. name: "Side",
  5195. image: {
  5196. source: "./media/characters/sanya/side.svg",
  5197. bottom: 0.02,
  5198. extra: 1.02
  5199. }
  5200. },
  5201. },
  5202. [
  5203. {
  5204. name: "Small",
  5205. height: math.unit(2, "meters")
  5206. },
  5207. {
  5208. name: "Normal",
  5209. height: math.unit(3, "meters")
  5210. },
  5211. {
  5212. name: "Macro",
  5213. height: math.unit(16, "meters"),
  5214. default: true
  5215. },
  5216. ]
  5217. ))
  5218. characterMakers.push(() => makeCharacter(
  5219. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5220. {
  5221. front: {
  5222. height: math.unit(2, "meters"),
  5223. weight: math.unit(120, "kg"),
  5224. name: "Front",
  5225. image: {
  5226. source: "./media/characters/miranda/front.svg",
  5227. extra: 195 / 185,
  5228. bottom: 10.9 / 206.5
  5229. }
  5230. },
  5231. back: {
  5232. height: math.unit(2, "meters"),
  5233. weight: math.unit(120, "kg"),
  5234. name: "Back",
  5235. image: {
  5236. source: "./media/characters/miranda/back.svg",
  5237. extra: 201 / 193,
  5238. bottom: 2.3 / 203.7
  5239. }
  5240. },
  5241. },
  5242. [
  5243. {
  5244. name: "Normal",
  5245. height: math.unit(10, "feet"),
  5246. default: true
  5247. }
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "James", species: ["deer"], tags: ["anthro"] },
  5252. {
  5253. side: {
  5254. height: math.unit(2, "meters"),
  5255. weight: math.unit(100, "kg"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/james/front.svg",
  5259. extra: 10 / 8.5
  5260. }
  5261. },
  5262. },
  5263. [
  5264. {
  5265. name: "Normal",
  5266. height: math.unit(8.5, "feet"),
  5267. default: true
  5268. }
  5269. ]
  5270. ))
  5271. characterMakers.push(() => makeCharacter(
  5272. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5273. {
  5274. side: {
  5275. height: math.unit(9.5, "feet"),
  5276. weight: math.unit(2500, "lbs"),
  5277. name: "Side",
  5278. image: {
  5279. source: "./media/characters/heather/side.svg"
  5280. }
  5281. },
  5282. },
  5283. [
  5284. {
  5285. name: "Normal",
  5286. height: math.unit(9.5, "feet"),
  5287. default: true
  5288. }
  5289. ]
  5290. ))
  5291. characterMakers.push(() => makeCharacter(
  5292. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5293. {
  5294. side: {
  5295. height: math.unit(6.5, "feet"),
  5296. weight: math.unit(400, "lbs"),
  5297. name: "Side",
  5298. image: {
  5299. source: "./media/characters/lukas/side.svg",
  5300. extra: 7.25 / 6.5
  5301. }
  5302. },
  5303. },
  5304. [
  5305. {
  5306. name: "Normal",
  5307. height: math.unit(6.5, "feet"),
  5308. default: true
  5309. }
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5314. {
  5315. side: {
  5316. height: math.unit(5, "feet"),
  5317. weight: math.unit(3000, "lbs"),
  5318. name: "Side",
  5319. image: {
  5320. source: "./media/characters/louise/side.svg"
  5321. }
  5322. },
  5323. },
  5324. [
  5325. {
  5326. name: "Normal",
  5327. height: math.unit(5, "feet"),
  5328. default: true
  5329. }
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5334. {
  5335. side: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(150, "lbs"),
  5338. name: "Side",
  5339. image: {
  5340. source: "./media/characters/ramona/side.svg",
  5341. extra: 871/854,
  5342. bottom: 41/912
  5343. }
  5344. },
  5345. },
  5346. [
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(5.3, "meters"),
  5350. default: true
  5351. },
  5352. {
  5353. name: "Macro",
  5354. height: math.unit(20, "stories")
  5355. },
  5356. {
  5357. name: "Macro+",
  5358. height: math.unit(50, "stories")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5364. {
  5365. standing: {
  5366. height: math.unit(5.75, "feet"),
  5367. weight: math.unit(160, "lbs"),
  5368. name: "Standing",
  5369. image: {
  5370. source: "./media/characters/deerpuff/standing.svg",
  5371. extra: 682 / 624
  5372. }
  5373. },
  5374. sitting: {
  5375. height: math.unit(5.75 / 1.79, "feet"),
  5376. weight: math.unit(160, "lbs"),
  5377. name: "Sitting",
  5378. image: {
  5379. source: "./media/characters/deerpuff/sitting.svg",
  5380. bottom: 44 / 400,
  5381. extra: 1
  5382. }
  5383. },
  5384. taurLaying: {
  5385. height: math.unit(6, "feet"),
  5386. weight: math.unit(400, "lbs"),
  5387. name: "Taur (Laying)",
  5388. image: {
  5389. source: "./media/characters/deerpuff/taur-laying.svg"
  5390. }
  5391. },
  5392. },
  5393. [
  5394. {
  5395. name: "Puffball",
  5396. height: math.unit(6, "inches")
  5397. },
  5398. {
  5399. name: "Normalpuff",
  5400. height: math.unit(5.75, "feet")
  5401. },
  5402. {
  5403. name: "Macropuff",
  5404. height: math.unit(1500, "feet"),
  5405. default: true
  5406. },
  5407. {
  5408. name: "Megapuff",
  5409. height: math.unit(500, "miles")
  5410. },
  5411. {
  5412. name: "Gigapuff",
  5413. height: math.unit(250000, "miles")
  5414. },
  5415. {
  5416. name: "Omegapuff",
  5417. height: math.unit(1000, "lightyears")
  5418. },
  5419. ]
  5420. ))
  5421. characterMakers.push(() => makeCharacter(
  5422. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5423. {
  5424. stomping: {
  5425. height: math.unit(6, "feet"),
  5426. weight: math.unit(170, "lbs"),
  5427. name: "Stomping",
  5428. image: {
  5429. source: "./media/characters/vivian/stomping.svg"
  5430. }
  5431. },
  5432. sitting: {
  5433. height: math.unit(6 / 1.75, "feet"),
  5434. weight: math.unit(170, "lbs"),
  5435. name: "Sitting",
  5436. image: {
  5437. source: "./media/characters/vivian/sitting.svg",
  5438. bottom: 1 / 6.4,
  5439. extra: 1,
  5440. }
  5441. },
  5442. },
  5443. [
  5444. {
  5445. name: "Normal",
  5446. height: math.unit(7, "feet"),
  5447. default: true
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(10, "stories")
  5452. },
  5453. {
  5454. name: "Macro+",
  5455. height: math.unit(30, "stories")
  5456. },
  5457. {
  5458. name: "Megamacro",
  5459. height: math.unit(10, "miles")
  5460. },
  5461. {
  5462. name: "Megamacro+",
  5463. height: math.unit(2750000, "meters")
  5464. },
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5469. {
  5470. front: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(160, "lbs"),
  5473. name: "Front",
  5474. image: {
  5475. source: "./media/characters/prince/front.svg",
  5476. extra: 3400 / 3000
  5477. }
  5478. },
  5479. jumping: {
  5480. height: math.unit(6, "feet"),
  5481. weight: math.unit(160, "lbs"),
  5482. name: "Jumping",
  5483. image: {
  5484. source: "./media/characters/prince/jump.svg",
  5485. extra: 2555 / 2134
  5486. }
  5487. },
  5488. },
  5489. [
  5490. {
  5491. name: "Normal",
  5492. height: math.unit(7.75, "feet"),
  5493. default: true
  5494. },
  5495. {
  5496. name: "Not cute",
  5497. height: math.unit(17, "feet")
  5498. },
  5499. {
  5500. name: "I said NOT",
  5501. height: math.unit(91, "feet")
  5502. },
  5503. {
  5504. name: "Please stop",
  5505. height: math.unit(560, "feet")
  5506. },
  5507. {
  5508. name: "What have you done",
  5509. height: math.unit(2200, "feet")
  5510. },
  5511. {
  5512. name: "Deer God",
  5513. height: math.unit(3.6, "miles")
  5514. },
  5515. ]
  5516. ))
  5517. characterMakers.push(() => makeCharacter(
  5518. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5519. {
  5520. standing: {
  5521. height: math.unit(6, "feet"),
  5522. weight: math.unit(300, "lbs"),
  5523. name: "Standing",
  5524. image: {
  5525. source: "./media/characters/psymon/standing.svg",
  5526. extra: 1888 / 1810,
  5527. bottom: 0.05
  5528. }
  5529. },
  5530. slithering: {
  5531. height: math.unit(6, "feet"),
  5532. weight: math.unit(300, "lbs"),
  5533. name: "Slithering",
  5534. image: {
  5535. source: "./media/characters/psymon/slithering.svg",
  5536. extra: 1330 / 1224
  5537. }
  5538. },
  5539. slitheringAlt: {
  5540. height: math.unit(6, "feet"),
  5541. weight: math.unit(300, "lbs"),
  5542. name: "Slithering (Alt)",
  5543. image: {
  5544. source: "./media/characters/psymon/slithering-alt.svg",
  5545. extra: 1330 / 1224
  5546. }
  5547. },
  5548. },
  5549. [
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(11.25, "feet"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Large",
  5557. height: math.unit(27, "feet")
  5558. },
  5559. {
  5560. name: "Giant",
  5561. height: math.unit(87, "feet")
  5562. },
  5563. {
  5564. name: "Macro",
  5565. height: math.unit(365, "feet")
  5566. },
  5567. {
  5568. name: "Megamacro",
  5569. height: math.unit(3, "miles")
  5570. },
  5571. {
  5572. name: "World Serpent",
  5573. height: math.unit(8000, "miles")
  5574. },
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5579. {
  5580. front: {
  5581. height: math.unit(6, "feet"),
  5582. weight: math.unit(180, "lbs"),
  5583. name: "Front",
  5584. image: {
  5585. source: "./media/characters/daimos/front.svg",
  5586. extra: 4160 / 3897,
  5587. bottom: 0.021
  5588. }
  5589. }
  5590. },
  5591. [
  5592. {
  5593. name: "Normal",
  5594. height: math.unit(8, "feet"),
  5595. default: true
  5596. },
  5597. {
  5598. name: "Big Dog",
  5599. height: math.unit(22, "feet")
  5600. },
  5601. {
  5602. name: "Macro",
  5603. height: math.unit(127, "feet")
  5604. },
  5605. {
  5606. name: "Megamacro",
  5607. height: math.unit(3600, "feet")
  5608. },
  5609. ]
  5610. ))
  5611. characterMakers.push(() => makeCharacter(
  5612. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5613. {
  5614. side: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(180, "lbs"),
  5617. name: "Side",
  5618. image: {
  5619. source: "./media/characters/blake/side.svg",
  5620. extra: 1212 / 1120,
  5621. bottom: 0.05
  5622. }
  5623. },
  5624. crouched: {
  5625. height: math.unit(6 * 0.57, "feet"),
  5626. weight: math.unit(180, "lbs"),
  5627. name: "Crouched",
  5628. image: {
  5629. source: "./media/characters/blake/crouched.svg",
  5630. extra: 840 / 587,
  5631. bottom: 0.04
  5632. }
  5633. },
  5634. bent: {
  5635. height: math.unit(6 * 0.75, "feet"),
  5636. weight: math.unit(180, "lbs"),
  5637. name: "Bent",
  5638. image: {
  5639. source: "./media/characters/blake/bent.svg",
  5640. extra: 592 / 544,
  5641. bottom: 0.035
  5642. }
  5643. },
  5644. },
  5645. [
  5646. {
  5647. name: "Normal",
  5648. height: math.unit(8 + 1 / 6, "feet"),
  5649. default: true
  5650. },
  5651. {
  5652. name: "Big Backside",
  5653. height: math.unit(37, "feet")
  5654. },
  5655. {
  5656. name: "Subway Shredder",
  5657. height: math.unit(72, "feet")
  5658. },
  5659. {
  5660. name: "City Carver",
  5661. height: math.unit(1675, "feet")
  5662. },
  5663. {
  5664. name: "Tectonic Tweaker",
  5665. height: math.unit(2300, "miles")
  5666. },
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5671. {
  5672. front: {
  5673. height: math.unit(6, "feet"),
  5674. weight: math.unit(180, "lbs"),
  5675. name: "Front",
  5676. image: {
  5677. source: "./media/characters/guisetto/front.svg",
  5678. extra: 856 / 817,
  5679. bottom: 0.06
  5680. }
  5681. },
  5682. airborne: {
  5683. height: math.unit(6, "feet"),
  5684. weight: math.unit(180, "lbs"),
  5685. name: "Airborne",
  5686. image: {
  5687. source: "./media/characters/guisetto/airborne.svg",
  5688. extra: 584 / 525
  5689. }
  5690. },
  5691. },
  5692. [
  5693. {
  5694. name: "Normal",
  5695. height: math.unit(10 + 11 / 12, "feet"),
  5696. default: true
  5697. },
  5698. {
  5699. name: "Large",
  5700. height: math.unit(35, "feet")
  5701. },
  5702. {
  5703. name: "Macro",
  5704. height: math.unit(475, "feet")
  5705. },
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5710. {
  5711. front: {
  5712. height: math.unit(6, "feet"),
  5713. weight: math.unit(180, "lbs"),
  5714. name: "Front",
  5715. image: {
  5716. source: "./media/characters/luxor/front.svg",
  5717. extra: 2940 / 2152
  5718. }
  5719. },
  5720. back: {
  5721. height: math.unit(6, "feet"),
  5722. weight: math.unit(180, "lbs"),
  5723. name: "Back",
  5724. image: {
  5725. source: "./media/characters/luxor/back.svg",
  5726. extra: 1083 / 960
  5727. }
  5728. },
  5729. },
  5730. [
  5731. {
  5732. name: "Normal",
  5733. height: math.unit(5 + 5 / 6, "feet"),
  5734. default: true
  5735. },
  5736. {
  5737. name: "Lamp",
  5738. height: math.unit(50, "feet")
  5739. },
  5740. {
  5741. name: "Lämp",
  5742. height: math.unit(300, "feet")
  5743. },
  5744. {
  5745. name: "The sun is a lamp",
  5746. height: math.unit(250000, "miles")
  5747. },
  5748. ]
  5749. ))
  5750. characterMakers.push(() => makeCharacter(
  5751. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5752. {
  5753. front: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(50, "lbs"),
  5756. name: "Front",
  5757. image: {
  5758. source: "./media/characters/huoyan/front.svg"
  5759. }
  5760. },
  5761. side: {
  5762. height: math.unit(6, "feet"),
  5763. weight: math.unit(180, "lbs"),
  5764. name: "Side",
  5765. image: {
  5766. source: "./media/characters/huoyan/side.svg"
  5767. }
  5768. },
  5769. },
  5770. [
  5771. {
  5772. name: "Chef",
  5773. height: math.unit(9, "feet")
  5774. },
  5775. {
  5776. name: "Normal",
  5777. height: math.unit(65, "feet"),
  5778. default: true
  5779. },
  5780. {
  5781. name: "Macro",
  5782. height: math.unit(780, "feet")
  5783. },
  5784. {
  5785. name: "Flaming Mountain",
  5786. height: math.unit(4.8, "miles")
  5787. },
  5788. {
  5789. name: "Celestial",
  5790. height: math.unit(765000, "miles")
  5791. },
  5792. ]
  5793. ))
  5794. characterMakers.push(() => makeCharacter(
  5795. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5796. {
  5797. front: {
  5798. height: math.unit(5 + 3 / 4, "feet"),
  5799. weight: math.unit(120, "lbs"),
  5800. name: "Front",
  5801. image: {
  5802. source: "./media/characters/tails/front.svg"
  5803. }
  5804. }
  5805. },
  5806. [
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(5 + 3 / 4, "feet"),
  5810. default: true
  5811. }
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5816. {
  5817. front: {
  5818. height: math.unit(4, "feet"),
  5819. weight: math.unit(50, "lbs"),
  5820. name: "Front",
  5821. image: {
  5822. source: "./media/characters/rainy/front.svg"
  5823. }
  5824. }
  5825. },
  5826. [
  5827. {
  5828. name: "Macro",
  5829. height: math.unit(800, "feet"),
  5830. default: true
  5831. }
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5836. {
  5837. front: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(150, "lbs"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/rainier/front.svg"
  5843. }
  5844. }
  5845. },
  5846. [
  5847. {
  5848. name: "Micro",
  5849. height: math.unit(2, "mm"),
  5850. default: true
  5851. }
  5852. ]
  5853. ))
  5854. characterMakers.push(() => makeCharacter(
  5855. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5856. {
  5857. front: {
  5858. height: math.unit(8 + 4/12, "feet"),
  5859. name: "Front",
  5860. image: {
  5861. source: "./media/characters/andy-renard/front.svg",
  5862. extra: 1839/1726,
  5863. bottom: 134/1973
  5864. }
  5865. },
  5866. back: {
  5867. height: math.unit(8 + 4/12, "feet"),
  5868. name: "Back",
  5869. image: {
  5870. source: "./media/characters/andy-renard/back.svg",
  5871. extra: 1838/1710,
  5872. bottom: 105/1943
  5873. }
  5874. },
  5875. },
  5876. [
  5877. {
  5878. name: "Tall",
  5879. height: math.unit(8 + 4/12, "feet")
  5880. },
  5881. {
  5882. name: "Mini Macro",
  5883. height: math.unit(15, "feet"),
  5884. default: true
  5885. },
  5886. {
  5887. name: "Macro",
  5888. height: math.unit(100, "feet")
  5889. },
  5890. {
  5891. name: "Mega Macro",
  5892. height: math.unit(1000, "feet")
  5893. },
  5894. {
  5895. name: "Giga Macro",
  5896. height: math.unit(10, "miles")
  5897. },
  5898. {
  5899. name: "God Macro",
  5900. height: math.unit(1, "multiverse")
  5901. },
  5902. ]
  5903. ))
  5904. characterMakers.push(() => makeCharacter(
  5905. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5906. {
  5907. front: {
  5908. height: math.unit(6, "feet"),
  5909. weight: math.unit(210, "lbs"),
  5910. name: "Front",
  5911. image: {
  5912. source: "./media/characters/cimmaron/front-sfw.svg",
  5913. extra: 701 / 676,
  5914. bottom: 0.046
  5915. }
  5916. },
  5917. back: {
  5918. height: math.unit(6, "feet"),
  5919. weight: math.unit(210, "lbs"),
  5920. name: "Back",
  5921. image: {
  5922. source: "./media/characters/cimmaron/back-sfw.svg",
  5923. extra: 701 / 676,
  5924. bottom: 0.046
  5925. }
  5926. },
  5927. frontNsfw: {
  5928. height: math.unit(6, "feet"),
  5929. weight: math.unit(210, "lbs"),
  5930. name: "Front (NSFW)",
  5931. image: {
  5932. source: "./media/characters/cimmaron/front-nsfw.svg",
  5933. extra: 701 / 676,
  5934. bottom: 0.046
  5935. }
  5936. },
  5937. backNsfw: {
  5938. height: math.unit(6, "feet"),
  5939. weight: math.unit(210, "lbs"),
  5940. name: "Back (NSFW)",
  5941. image: {
  5942. source: "./media/characters/cimmaron/back-nsfw.svg",
  5943. extra: 701 / 676,
  5944. bottom: 0.046
  5945. }
  5946. },
  5947. dick: {
  5948. height: math.unit(1.714, "feet"),
  5949. name: "Dick",
  5950. image: {
  5951. source: "./media/characters/cimmaron/dick.svg"
  5952. }
  5953. },
  5954. },
  5955. [
  5956. {
  5957. name: "Normal",
  5958. height: math.unit(6, "feet"),
  5959. default: true
  5960. },
  5961. {
  5962. name: "Macro Mayor",
  5963. height: math.unit(350, "meters")
  5964. },
  5965. ]
  5966. ))
  5967. characterMakers.push(() => makeCharacter(
  5968. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5969. {
  5970. front: {
  5971. height: math.unit(6, "feet"),
  5972. weight: math.unit(200, "lbs"),
  5973. name: "Front",
  5974. image: {
  5975. source: "./media/characters/akari/front.svg",
  5976. extra: 962 / 901,
  5977. bottom: 0.04
  5978. }
  5979. }
  5980. },
  5981. [
  5982. {
  5983. name: "Micro",
  5984. height: math.unit(5, "inches"),
  5985. default: true
  5986. },
  5987. {
  5988. name: "Normal",
  5989. height: math.unit(7, "feet")
  5990. },
  5991. ]
  5992. ))
  5993. characterMakers.push(() => makeCharacter(
  5994. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5995. {
  5996. front: {
  5997. height: math.unit(6, "feet"),
  5998. weight: math.unit(140, "lbs"),
  5999. name: "Front",
  6000. image: {
  6001. source: "./media/characters/cynosura/front.svg",
  6002. extra: 896 / 847
  6003. }
  6004. },
  6005. back: {
  6006. height: math.unit(6, "feet"),
  6007. weight: math.unit(140, "lbs"),
  6008. name: "Back",
  6009. image: {
  6010. source: "./media/characters/cynosura/back.svg",
  6011. extra: 1365 / 1250
  6012. }
  6013. },
  6014. },
  6015. [
  6016. {
  6017. name: "Micro",
  6018. height: math.unit(4, "inches")
  6019. },
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(5.75, "feet"),
  6023. default: true
  6024. },
  6025. {
  6026. name: "Tall",
  6027. height: math.unit(10, "feet")
  6028. },
  6029. {
  6030. name: "Big",
  6031. height: math.unit(20, "feet")
  6032. },
  6033. {
  6034. name: "Macro",
  6035. height: math.unit(50, "feet")
  6036. },
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6041. {
  6042. front: {
  6043. height: math.unit(13 + 2/12, "feet"),
  6044. weight: math.unit(800, "kg"),
  6045. name: "Front",
  6046. image: {
  6047. source: "./media/characters/gin/front.svg",
  6048. extra: 1312/1191,
  6049. bottom: 45/1357
  6050. }
  6051. },
  6052. mouth: {
  6053. height: math.unit(2.39 * 1.8, "feet"),
  6054. name: "Mouth",
  6055. image: {
  6056. source: "./media/characters/gin/mouth.svg"
  6057. }
  6058. },
  6059. hand: {
  6060. height: math.unit(1.57 * 2.19, "feet"),
  6061. name: "Hand",
  6062. image: {
  6063. source: "./media/characters/gin/hand.svg"
  6064. }
  6065. },
  6066. foot: {
  6067. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6068. name: "Foot",
  6069. image: {
  6070. source: "./media/characters/gin/foot.svg"
  6071. }
  6072. },
  6073. sole: {
  6074. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6075. name: "Sole",
  6076. image: {
  6077. source: "./media/characters/gin/sole.svg"
  6078. }
  6079. },
  6080. },
  6081. [
  6082. {
  6083. name: "Very Small",
  6084. height: math.unit(13 + 2 / 12, "feet")
  6085. },
  6086. {
  6087. name: "Micro",
  6088. height: math.unit(600, "miles")
  6089. },
  6090. {
  6091. name: "Regular",
  6092. height: math.unit(20, "earths"),
  6093. default: true
  6094. },
  6095. {
  6096. name: "Macro",
  6097. height: math.unit(2.2, "solarradii")
  6098. },
  6099. {
  6100. name: "Teramacro",
  6101. height: math.unit(1.2, "galaxies")
  6102. },
  6103. {
  6104. name: "Omegamacro",
  6105. height: math.unit(200, "universes")
  6106. },
  6107. ]
  6108. ))
  6109. characterMakers.push(() => makeCharacter(
  6110. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6111. {
  6112. front: {
  6113. height: math.unit(6 + 1 / 6, "feet"),
  6114. weight: math.unit(178, "lbs"),
  6115. name: "Front",
  6116. image: {
  6117. source: "./media/characters/guy/front.svg"
  6118. }
  6119. }
  6120. },
  6121. [
  6122. {
  6123. name: "Normal",
  6124. height: math.unit(6 + 1 / 6, "feet"),
  6125. default: true
  6126. },
  6127. {
  6128. name: "Large",
  6129. height: math.unit(25 + 7 / 12, "feet")
  6130. },
  6131. {
  6132. name: "Macro",
  6133. height: math.unit(60 + 9 / 12, "feet")
  6134. },
  6135. {
  6136. name: "Macro+",
  6137. height: math.unit(246, "feet")
  6138. },
  6139. {
  6140. name: "Macro++",
  6141. height: math.unit(878, "feet")
  6142. }
  6143. ]
  6144. ))
  6145. characterMakers.push(() => makeCharacter(
  6146. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6147. {
  6148. front: {
  6149. height: math.unit(9, "feet"),
  6150. weight: math.unit(800, "lbs"),
  6151. name: "Front",
  6152. image: {
  6153. source: "./media/characters/tiberius/front.svg",
  6154. extra: 2295 / 2071
  6155. }
  6156. },
  6157. back: {
  6158. height: math.unit(9, "feet"),
  6159. weight: math.unit(800, "lbs"),
  6160. name: "Back",
  6161. image: {
  6162. source: "./media/characters/tiberius/back.svg",
  6163. extra: 2373 / 2160
  6164. }
  6165. },
  6166. },
  6167. [
  6168. {
  6169. name: "Normal",
  6170. height: math.unit(9, "feet"),
  6171. default: true
  6172. }
  6173. ]
  6174. ))
  6175. characterMakers.push(() => makeCharacter(
  6176. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6177. {
  6178. front: {
  6179. height: math.unit(6, "feet"),
  6180. weight: math.unit(600, "lbs"),
  6181. name: "Front",
  6182. image: {
  6183. source: "./media/characters/surgo/front.svg",
  6184. extra: 3591 / 2227
  6185. }
  6186. },
  6187. back: {
  6188. height: math.unit(6, "feet"),
  6189. weight: math.unit(600, "lbs"),
  6190. name: "Back",
  6191. image: {
  6192. source: "./media/characters/surgo/back.svg",
  6193. extra: 3557 / 2228
  6194. }
  6195. },
  6196. laying: {
  6197. height: math.unit(6 * 0.85, "feet"),
  6198. weight: math.unit(600, "lbs"),
  6199. name: "Laying",
  6200. image: {
  6201. source: "./media/characters/surgo/laying.svg"
  6202. }
  6203. },
  6204. },
  6205. [
  6206. {
  6207. name: "Normal",
  6208. height: math.unit(6, "feet"),
  6209. default: true
  6210. }
  6211. ]
  6212. ))
  6213. characterMakers.push(() => makeCharacter(
  6214. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6215. {
  6216. side: {
  6217. height: math.unit(6, "feet"),
  6218. weight: math.unit(150, "lbs"),
  6219. name: "Side",
  6220. image: {
  6221. source: "./media/characters/cibus/side.svg",
  6222. extra: 800 / 400
  6223. }
  6224. },
  6225. },
  6226. [
  6227. {
  6228. name: "Normal",
  6229. height: math.unit(6, "feet"),
  6230. default: true
  6231. }
  6232. ]
  6233. ))
  6234. characterMakers.push(() => makeCharacter(
  6235. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6236. {
  6237. front: {
  6238. height: math.unit(6, "feet"),
  6239. weight: math.unit(240, "lbs"),
  6240. name: "Front",
  6241. image: {
  6242. source: "./media/characters/nibbles/front.svg"
  6243. }
  6244. },
  6245. side: {
  6246. height: math.unit(6, "feet"),
  6247. weight: math.unit(240, "lbs"),
  6248. name: "Side",
  6249. image: {
  6250. source: "./media/characters/nibbles/side.svg"
  6251. }
  6252. },
  6253. },
  6254. [
  6255. {
  6256. name: "Normal",
  6257. height: math.unit(9, "feet"),
  6258. default: true
  6259. }
  6260. ]
  6261. ))
  6262. characterMakers.push(() => makeCharacter(
  6263. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6264. {
  6265. side: {
  6266. height: math.unit(5 + 1 / 6, "feet"),
  6267. weight: math.unit(130, "lbs"),
  6268. name: "Side",
  6269. image: {
  6270. source: "./media/characters/rikky/side.svg",
  6271. extra: 851 / 801
  6272. }
  6273. },
  6274. },
  6275. [
  6276. {
  6277. name: "Normal",
  6278. height: math.unit(5 + 1 / 6, "feet")
  6279. },
  6280. {
  6281. name: "Macro",
  6282. height: math.unit(152, "feet"),
  6283. default: true
  6284. },
  6285. {
  6286. name: "Megamacro",
  6287. height: math.unit(7, "miles")
  6288. }
  6289. ]
  6290. ))
  6291. characterMakers.push(() => makeCharacter(
  6292. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6293. {
  6294. side: {
  6295. height: math.unit(370, "cm"),
  6296. weight: math.unit(350, "lbs"),
  6297. name: "Side",
  6298. image: {
  6299. source: "./media/characters/malfressa/side.svg"
  6300. }
  6301. },
  6302. walking: {
  6303. height: math.unit(370, "cm"),
  6304. weight: math.unit(350, "lbs"),
  6305. name: "Walking",
  6306. image: {
  6307. source: "./media/characters/malfressa/walking.svg"
  6308. }
  6309. },
  6310. feral: {
  6311. height: math.unit(2500, "cm"),
  6312. weight: math.unit(100000, "lbs"),
  6313. name: "Feral",
  6314. image: {
  6315. source: "./media/characters/malfressa/feral.svg",
  6316. extra: 2108 / 837,
  6317. bottom: 0.02
  6318. }
  6319. },
  6320. },
  6321. [
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(370, "cm")
  6325. },
  6326. {
  6327. name: "Macro",
  6328. height: math.unit(300, "meters"),
  6329. default: true
  6330. }
  6331. ]
  6332. ))
  6333. characterMakers.push(() => makeCharacter(
  6334. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6335. {
  6336. front: {
  6337. height: math.unit(6, "feet"),
  6338. weight: math.unit(60, "kg"),
  6339. name: "Front",
  6340. image: {
  6341. source: "./media/characters/jaro/front.svg"
  6342. }
  6343. },
  6344. back: {
  6345. height: math.unit(6, "feet"),
  6346. weight: math.unit(60, "kg"),
  6347. name: "Back",
  6348. image: {
  6349. source: "./media/characters/jaro/back.svg"
  6350. }
  6351. },
  6352. },
  6353. [
  6354. {
  6355. name: "Micro",
  6356. height: math.unit(7, "inches")
  6357. },
  6358. {
  6359. name: "Normal",
  6360. height: math.unit(5.5, "feet"),
  6361. default: true
  6362. },
  6363. {
  6364. name: "Minimacro",
  6365. height: math.unit(20, "feet")
  6366. },
  6367. {
  6368. name: "Macro",
  6369. height: math.unit(200, "meters")
  6370. }
  6371. ]
  6372. ))
  6373. characterMakers.push(() => makeCharacter(
  6374. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6375. {
  6376. front: {
  6377. height: math.unit(6, "feet"),
  6378. weight: math.unit(195, "lb"),
  6379. name: "Front",
  6380. image: {
  6381. source: "./media/characters/rogue/front.svg"
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Macro",
  6388. height: math.unit(90, "feet"),
  6389. default: true
  6390. },
  6391. ]
  6392. ))
  6393. characterMakers.push(() => makeCharacter(
  6394. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6395. {
  6396. front: {
  6397. height: math.unit(5 + 8 / 12, "feet"),
  6398. weight: math.unit(140, "lb"),
  6399. name: "Front",
  6400. image: {
  6401. source: "./media/characters/piper/front.svg",
  6402. extra: 3948/3655,
  6403. bottom: 0/3948
  6404. }
  6405. },
  6406. },
  6407. [
  6408. {
  6409. name: "Micro",
  6410. height: math.unit(2, "inches")
  6411. },
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(5 + 8 / 12, "feet")
  6415. },
  6416. {
  6417. name: "Macro",
  6418. height: math.unit(250, "feet"),
  6419. default: true
  6420. },
  6421. {
  6422. name: "Megamacro",
  6423. height: math.unit(7, "miles")
  6424. },
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6429. {
  6430. front: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(220, "lb"),
  6433. name: "Front",
  6434. image: {
  6435. source: "./media/characters/gemini/front.svg"
  6436. }
  6437. },
  6438. back: {
  6439. height: math.unit(6, "feet"),
  6440. weight: math.unit(220, "lb"),
  6441. name: "Back",
  6442. image: {
  6443. source: "./media/characters/gemini/back.svg"
  6444. }
  6445. },
  6446. kneeling: {
  6447. height: math.unit(6 / 1.5, "feet"),
  6448. weight: math.unit(220, "lb"),
  6449. name: "Kneeling",
  6450. image: {
  6451. source: "./media/characters/gemini/kneeling.svg",
  6452. bottom: 0.02
  6453. }
  6454. },
  6455. },
  6456. [
  6457. {
  6458. name: "Macro",
  6459. height: math.unit(300, "meters"),
  6460. default: true
  6461. },
  6462. {
  6463. name: "Megamacro",
  6464. height: math.unit(6900, "meters")
  6465. },
  6466. ]
  6467. ))
  6468. characterMakers.push(() => makeCharacter(
  6469. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6470. {
  6471. anthro: {
  6472. height: math.unit(2.35, "meters"),
  6473. weight: math.unit(73, "kg"),
  6474. name: "Anthro",
  6475. image: {
  6476. source: "./media/characters/alicia/anthro.svg",
  6477. extra: 2571 / 2385,
  6478. bottom: 75 / 2648
  6479. }
  6480. },
  6481. paw: {
  6482. height: math.unit(1.32, "feet"),
  6483. name: "Paw",
  6484. image: {
  6485. source: "./media/characters/alicia/paw.svg"
  6486. }
  6487. },
  6488. feral: {
  6489. height: math.unit(1.69, "meters"),
  6490. weight: math.unit(73, "kg"),
  6491. name: "Feral",
  6492. image: {
  6493. source: "./media/characters/alicia/feral.svg",
  6494. extra: 2123 / 1715,
  6495. bottom: 222 / 2349
  6496. }
  6497. },
  6498. },
  6499. [
  6500. {
  6501. name: "Normal",
  6502. height: math.unit(2.35, "meters")
  6503. },
  6504. {
  6505. name: "Macro",
  6506. height: math.unit(60, "meters"),
  6507. default: true
  6508. },
  6509. {
  6510. name: "Megamacro",
  6511. height: math.unit(10000, "kilometers")
  6512. },
  6513. ]
  6514. ))
  6515. characterMakers.push(() => makeCharacter(
  6516. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6517. {
  6518. front: {
  6519. height: math.unit(7, "feet"),
  6520. weight: math.unit(250, "lbs"),
  6521. name: "Front",
  6522. image: {
  6523. source: "./media/characters/archy/front.svg"
  6524. }
  6525. }
  6526. },
  6527. [
  6528. {
  6529. name: "Micro",
  6530. height: math.unit(1, "inch")
  6531. },
  6532. {
  6533. name: "Shorty",
  6534. height: math.unit(5, "feet")
  6535. },
  6536. {
  6537. name: "Normal",
  6538. height: math.unit(7, "feet")
  6539. },
  6540. {
  6541. name: "Macro",
  6542. height: math.unit(600, "meters"),
  6543. default: true
  6544. },
  6545. {
  6546. name: "Megamacro",
  6547. height: math.unit(1, "mile")
  6548. },
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6553. {
  6554. front: {
  6555. height: math.unit(1.65, "meters"),
  6556. weight: math.unit(74, "kg"),
  6557. name: "Front",
  6558. image: {
  6559. source: "./media/characters/berri/front.svg",
  6560. extra: 857 / 837,
  6561. bottom: 18 / 877
  6562. }
  6563. },
  6564. bum: {
  6565. height: math.unit(1.46, "feet"),
  6566. name: "Bum",
  6567. image: {
  6568. source: "./media/characters/berri/bum.svg"
  6569. }
  6570. },
  6571. mouth: {
  6572. height: math.unit(0.44, "feet"),
  6573. name: "Mouth",
  6574. image: {
  6575. source: "./media/characters/berri/mouth.svg"
  6576. }
  6577. },
  6578. paw: {
  6579. height: math.unit(0.826, "feet"),
  6580. name: "Paw",
  6581. image: {
  6582. source: "./media/characters/berri/paw.svg"
  6583. }
  6584. },
  6585. },
  6586. [
  6587. {
  6588. name: "Normal",
  6589. height: math.unit(1.65, "meters")
  6590. },
  6591. {
  6592. name: "Macro",
  6593. height: math.unit(60, "m"),
  6594. default: true
  6595. },
  6596. {
  6597. name: "Megamacro",
  6598. height: math.unit(9.213, "km")
  6599. },
  6600. {
  6601. name: "Planet Eater",
  6602. height: math.unit(489, "megameters")
  6603. },
  6604. {
  6605. name: "Teramacro",
  6606. height: math.unit(2471635000000, "meters")
  6607. },
  6608. {
  6609. name: "Examacro",
  6610. height: math.unit(8.0624e+26, "meters")
  6611. }
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6616. {
  6617. front: {
  6618. height: math.unit(1.72, "meters"),
  6619. weight: math.unit(68, "kg"),
  6620. name: "Front",
  6621. image: {
  6622. source: "./media/characters/lexi/front.svg"
  6623. }
  6624. }
  6625. },
  6626. [
  6627. {
  6628. name: "Very Smol",
  6629. height: math.unit(10, "mm")
  6630. },
  6631. {
  6632. name: "Micro",
  6633. height: math.unit(6.8, "cm"),
  6634. default: true
  6635. },
  6636. {
  6637. name: "Normal",
  6638. height: math.unit(1.72, "m")
  6639. }
  6640. ]
  6641. ))
  6642. characterMakers.push(() => makeCharacter(
  6643. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6644. {
  6645. front: {
  6646. height: math.unit(1.69, "meters"),
  6647. weight: math.unit(68, "kg"),
  6648. name: "Front",
  6649. image: {
  6650. source: "./media/characters/martin/front.svg",
  6651. extra: 596 / 581
  6652. }
  6653. }
  6654. },
  6655. [
  6656. {
  6657. name: "Micro",
  6658. height: math.unit(6.85, "cm"),
  6659. default: true
  6660. },
  6661. {
  6662. name: "Normal",
  6663. height: math.unit(1.69, "m")
  6664. }
  6665. ]
  6666. ))
  6667. characterMakers.push(() => makeCharacter(
  6668. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6669. {
  6670. front: {
  6671. height: math.unit(1.69, "meters"),
  6672. weight: math.unit(68, "kg"),
  6673. name: "Front",
  6674. image: {
  6675. source: "./media/characters/juno/front.svg"
  6676. }
  6677. }
  6678. },
  6679. [
  6680. {
  6681. name: "Micro",
  6682. height: math.unit(7, "cm")
  6683. },
  6684. {
  6685. name: "Normal",
  6686. height: math.unit(1.89, "m")
  6687. },
  6688. {
  6689. name: "Macro",
  6690. height: math.unit(353, "meters"),
  6691. default: true
  6692. }
  6693. ]
  6694. ))
  6695. characterMakers.push(() => makeCharacter(
  6696. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6697. {
  6698. front: {
  6699. height: math.unit(1.93, "meters"),
  6700. weight: math.unit(83, "kg"),
  6701. name: "Front",
  6702. image: {
  6703. source: "./media/characters/samantha/front.svg"
  6704. }
  6705. },
  6706. frontClothed: {
  6707. height: math.unit(1.93, "meters"),
  6708. weight: math.unit(83, "kg"),
  6709. name: "Front (Clothed)",
  6710. image: {
  6711. source: "./media/characters/samantha/front-clothed.svg"
  6712. }
  6713. },
  6714. back: {
  6715. height: math.unit(1.93, "meters"),
  6716. weight: math.unit(83, "kg"),
  6717. name: "Back",
  6718. image: {
  6719. source: "./media/characters/samantha/back.svg"
  6720. }
  6721. },
  6722. },
  6723. [
  6724. {
  6725. name: "Normal",
  6726. height: math.unit(1.93, "m")
  6727. },
  6728. {
  6729. name: "Macro",
  6730. height: math.unit(74, "meters"),
  6731. default: true
  6732. },
  6733. {
  6734. name: "Macro+",
  6735. height: math.unit(223, "meters"),
  6736. },
  6737. {
  6738. name: "Megamacro",
  6739. height: math.unit(8381, "meters"),
  6740. },
  6741. {
  6742. name: "Megamacro+",
  6743. height: math.unit(12000, "kilometers")
  6744. },
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(1.92, "meters"),
  6752. weight: math.unit(80, "kg"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/dr-clay/front.svg"
  6756. }
  6757. },
  6758. frontClothed: {
  6759. height: math.unit(1.92, "meters"),
  6760. weight: math.unit(80, "kg"),
  6761. name: "Front (Clothed)",
  6762. image: {
  6763. source: "./media/characters/dr-clay/front-clothed.svg"
  6764. }
  6765. }
  6766. },
  6767. [
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(1.92, "m")
  6771. },
  6772. {
  6773. name: "Macro",
  6774. height: math.unit(214, "meters"),
  6775. default: true
  6776. },
  6777. {
  6778. name: "Macro+",
  6779. height: math.unit(12.237, "meters"),
  6780. },
  6781. {
  6782. name: "Megamacro",
  6783. height: math.unit(557, "megameters"),
  6784. },
  6785. {
  6786. name: "Unimaginable",
  6787. height: math.unit(120e9, "lightyears")
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(2, "meters"),
  6796. weight: math.unit(80, "kg"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6800. }
  6801. }
  6802. },
  6803. [
  6804. {
  6805. name: "Teramacro",
  6806. height: math.unit(500000, "lightyears"),
  6807. default: true
  6808. },
  6809. ]
  6810. ))
  6811. characterMakers.push(() => makeCharacter(
  6812. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6813. {
  6814. crux: {
  6815. height: math.unit(2, "meters"),
  6816. weight: math.unit(150, "kg"),
  6817. name: "Crux",
  6818. image: {
  6819. source: "./media/characters/vemus/crux.svg",
  6820. extra: 1074/936,
  6821. bottom: 23/1097
  6822. }
  6823. },
  6824. skunkTanuki: {
  6825. height: math.unit(2, "meters"),
  6826. weight: math.unit(150, "kg"),
  6827. name: "Skunk-Tanuki",
  6828. image: {
  6829. source: "./media/characters/vemus/skunk-tanuki.svg",
  6830. extra: 926/893,
  6831. bottom: 20/946
  6832. }
  6833. },
  6834. },
  6835. [
  6836. {
  6837. name: "Normal",
  6838. height: math.unit(3.75, "meters"),
  6839. default: true
  6840. },
  6841. {
  6842. name: "Big",
  6843. height: math.unit(8, "meters")
  6844. },
  6845. {
  6846. name: "Macro",
  6847. height: math.unit(100, "meters")
  6848. },
  6849. {
  6850. name: "Macro+",
  6851. height: math.unit(1500, "meters")
  6852. },
  6853. {
  6854. name: "Stellar",
  6855. height: math.unit(14e8, "meters")
  6856. },
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6861. {
  6862. front: {
  6863. height: math.unit(2, "meters"),
  6864. weight: math.unit(70, "kg"),
  6865. name: "Front",
  6866. image: {
  6867. source: "./media/characters/beherit/front.svg",
  6868. extra: 1408 / 1242
  6869. }
  6870. }
  6871. },
  6872. [
  6873. {
  6874. name: "Normal",
  6875. height: math.unit(6, "feet")
  6876. },
  6877. {
  6878. name: "Lorg",
  6879. height: math.unit(25, "feet"),
  6880. default: true
  6881. },
  6882. {
  6883. name: "Lorger",
  6884. height: math.unit(75, "feet")
  6885. },
  6886. {
  6887. name: "Macro",
  6888. height: math.unit(200, "meters")
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(2, "meters"),
  6897. weight: math.unit(150, "kg"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/everett/front.svg",
  6901. extra: 2038 / 1737,
  6902. bottom: 0.03
  6903. }
  6904. },
  6905. paw: {
  6906. height: math.unit(2 / 3.6, "meters"),
  6907. name: "Paw",
  6908. image: {
  6909. source: "./media/characters/everett/paw.svg"
  6910. }
  6911. },
  6912. },
  6913. [
  6914. {
  6915. name: "Normal",
  6916. height: math.unit(15, "feet"),
  6917. default: true
  6918. },
  6919. {
  6920. name: "Lorg",
  6921. height: math.unit(70, "feet"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Lorger",
  6926. height: math.unit(250, "feet")
  6927. },
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(500, "meters")
  6931. },
  6932. ]
  6933. ))
  6934. characterMakers.push(() => makeCharacter(
  6935. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6936. {
  6937. front: {
  6938. height: math.unit(2, "meters"),
  6939. weight: math.unit(86, "kg"),
  6940. name: "Front",
  6941. image: {
  6942. source: "./media/characters/rose/front.svg",
  6943. extra: 1785/1636,
  6944. bottom: 30/1815
  6945. }
  6946. },
  6947. frontSporty: {
  6948. height: math.unit(2, "meters"),
  6949. weight: math.unit(86, "kg"),
  6950. name: "Front (Sporty)",
  6951. image: {
  6952. source: "./media/characters/rose/front-sporty.svg",
  6953. extra: 350/335,
  6954. bottom: 10/360
  6955. }
  6956. },
  6957. frontAlt: {
  6958. height: math.unit(1.6, "meters"),
  6959. weight: math.unit(86, "kg"),
  6960. name: "Front (Alt)",
  6961. image: {
  6962. source: "./media/characters/rose/front-alt.svg",
  6963. extra: 299/283,
  6964. bottom: 3/302
  6965. }
  6966. },
  6967. plush: {
  6968. height: math.unit(2, "meters"),
  6969. weight: math.unit(86/3, "kg"),
  6970. name: "Plush",
  6971. image: {
  6972. source: "./media/characters/rose/plush.svg",
  6973. extra: 361/337,
  6974. bottom: 11/372
  6975. }
  6976. },
  6977. },
  6978. [
  6979. {
  6980. name: "True Micro",
  6981. height: math.unit(9, "cm")
  6982. },
  6983. {
  6984. name: "Micro",
  6985. height: math.unit(16, "cm")
  6986. },
  6987. {
  6988. name: "Normal",
  6989. height: math.unit(1.85, "meters"),
  6990. default: true
  6991. },
  6992. {
  6993. name: "Mini-Macro",
  6994. height: math.unit(5, "meters")
  6995. },
  6996. {
  6997. name: "Macro",
  6998. height: math.unit(15, "meters")
  6999. },
  7000. {
  7001. name: "True Macro",
  7002. height: math.unit(40, "meters")
  7003. },
  7004. {
  7005. name: "City Scale",
  7006. height: math.unit(1, "km")
  7007. },
  7008. ]
  7009. ))
  7010. characterMakers.push(() => makeCharacter(
  7011. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7012. {
  7013. front: {
  7014. height: math.unit(2, "meters"),
  7015. weight: math.unit(350, "lbs"),
  7016. name: "Front",
  7017. image: {
  7018. source: "./media/characters/regal/front.svg"
  7019. }
  7020. },
  7021. back: {
  7022. height: math.unit(2, "meters"),
  7023. weight: math.unit(350, "lbs"),
  7024. name: "Back",
  7025. image: {
  7026. source: "./media/characters/regal/back.svg"
  7027. }
  7028. },
  7029. },
  7030. [
  7031. {
  7032. name: "Macro",
  7033. height: math.unit(350, "feet"),
  7034. default: true
  7035. }
  7036. ]
  7037. ))
  7038. characterMakers.push(() => makeCharacter(
  7039. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7040. {
  7041. front: {
  7042. height: math.unit(4 + 11 / 12, "feet"),
  7043. weight: math.unit(100, "lbs"),
  7044. name: "Front",
  7045. image: {
  7046. source: "./media/characters/opal/front.svg"
  7047. }
  7048. },
  7049. frontAlt: {
  7050. height: math.unit(4 + 11 / 12, "feet"),
  7051. weight: math.unit(100, "lbs"),
  7052. name: "Front (Alt)",
  7053. image: {
  7054. source: "./media/characters/opal/front-alt.svg"
  7055. }
  7056. },
  7057. },
  7058. [
  7059. {
  7060. name: "Small",
  7061. height: math.unit(4 + 11 / 12, "feet")
  7062. },
  7063. {
  7064. name: "Normal",
  7065. height: math.unit(20, "feet"),
  7066. default: true
  7067. },
  7068. {
  7069. name: "Macro",
  7070. height: math.unit(120, "feet")
  7071. },
  7072. {
  7073. name: "Megamacro",
  7074. height: math.unit(80, "miles")
  7075. },
  7076. {
  7077. name: "True Size",
  7078. height: math.unit(100000, "lightyears")
  7079. },
  7080. ]
  7081. ))
  7082. characterMakers.push(() => makeCharacter(
  7083. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7084. {
  7085. front: {
  7086. height: math.unit(6, "feet"),
  7087. weight: math.unit(200, "lbs"),
  7088. name: "Front",
  7089. image: {
  7090. source: "./media/characters/vector-wuff/front.svg"
  7091. }
  7092. }
  7093. },
  7094. [
  7095. {
  7096. name: "Normal",
  7097. height: math.unit(2.8, "meters")
  7098. },
  7099. {
  7100. name: "Macro",
  7101. height: math.unit(450, "meters"),
  7102. default: true
  7103. },
  7104. {
  7105. name: "Megamacro",
  7106. height: math.unit(15, "kilometers")
  7107. }
  7108. ]
  7109. ))
  7110. characterMakers.push(() => makeCharacter(
  7111. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7112. {
  7113. front: {
  7114. height: math.unit(6, "feet"),
  7115. weight: math.unit(256, "lbs"),
  7116. name: "Front",
  7117. image: {
  7118. source: "./media/characters/dannik/front.svg"
  7119. }
  7120. }
  7121. },
  7122. [
  7123. {
  7124. name: "Macro",
  7125. height: math.unit(69.57, "meters"),
  7126. default: true
  7127. },
  7128. ]
  7129. ))
  7130. characterMakers.push(() => makeCharacter(
  7131. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7132. {
  7133. front: {
  7134. height: math.unit(6, "feet"),
  7135. weight: math.unit(120, "lbs"),
  7136. name: "Front",
  7137. image: {
  7138. source: "./media/characters/azura-saharah/front.svg"
  7139. }
  7140. },
  7141. back: {
  7142. height: math.unit(6, "feet"),
  7143. weight: math.unit(120, "lbs"),
  7144. name: "Back",
  7145. image: {
  7146. source: "./media/characters/azura-saharah/back.svg"
  7147. }
  7148. },
  7149. },
  7150. [
  7151. {
  7152. name: "Macro",
  7153. height: math.unit(100, "feet"),
  7154. default: true
  7155. },
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7160. {
  7161. side: {
  7162. height: math.unit(5 + 4 / 12, "feet"),
  7163. weight: math.unit(163, "lbs"),
  7164. name: "Side",
  7165. image: {
  7166. source: "./media/characters/kennedy/side.svg"
  7167. }
  7168. }
  7169. },
  7170. [
  7171. {
  7172. name: "Standard Doggo",
  7173. height: math.unit(5 + 4 / 12, "feet")
  7174. },
  7175. {
  7176. name: "Big Doggo",
  7177. height: math.unit(25 + 3 / 12, "feet"),
  7178. default: true
  7179. },
  7180. ]
  7181. ))
  7182. characterMakers.push(() => makeCharacter(
  7183. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7184. {
  7185. front: {
  7186. height: math.unit(5 + 5/12, "feet"),
  7187. weight: math.unit(100, "lbs"),
  7188. name: "Front",
  7189. image: {
  7190. source: "./media/characters/odios-de-lunar/front.svg",
  7191. extra: 1468/1323,
  7192. bottom: 22/1490
  7193. }
  7194. }
  7195. },
  7196. [
  7197. {
  7198. name: "Micro",
  7199. height: math.unit(3, "inches")
  7200. },
  7201. {
  7202. name: "Normal",
  7203. height: math.unit(5.5, "feet"),
  7204. default: true
  7205. },
  7206. {
  7207. name: "Macro",
  7208. height: math.unit(100, "feet")
  7209. },
  7210. ]
  7211. ))
  7212. characterMakers.push(() => makeCharacter(
  7213. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7214. {
  7215. back: {
  7216. height: math.unit(6, "feet"),
  7217. weight: math.unit(220, "lbs"),
  7218. name: "Back",
  7219. image: {
  7220. source: "./media/characters/mandake/back.svg"
  7221. }
  7222. }
  7223. },
  7224. [
  7225. {
  7226. name: "Normal",
  7227. height: math.unit(7, "feet"),
  7228. default: true
  7229. },
  7230. {
  7231. name: "Macro",
  7232. height: math.unit(78, "feet")
  7233. },
  7234. {
  7235. name: "Macro+",
  7236. height: math.unit(300, "meters")
  7237. },
  7238. {
  7239. name: "Macro++",
  7240. height: math.unit(2400, "feet")
  7241. },
  7242. {
  7243. name: "Megamacro",
  7244. height: math.unit(5167, "meters")
  7245. },
  7246. {
  7247. name: "Gigamacro",
  7248. height: math.unit(41769, "miles")
  7249. },
  7250. ]
  7251. ))
  7252. characterMakers.push(() => makeCharacter(
  7253. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7254. {
  7255. front: {
  7256. height: math.unit(6, "feet"),
  7257. weight: math.unit(120, "lbs"),
  7258. name: "Front",
  7259. image: {
  7260. source: "./media/characters/yozey/front.svg"
  7261. }
  7262. },
  7263. frontAlt: {
  7264. height: math.unit(6, "feet"),
  7265. weight: math.unit(120, "lbs"),
  7266. name: "Front (Alt)",
  7267. image: {
  7268. source: "./media/characters/yozey/front-alt.svg"
  7269. }
  7270. },
  7271. side: {
  7272. height: math.unit(6, "feet"),
  7273. weight: math.unit(120, "lbs"),
  7274. name: "Side",
  7275. image: {
  7276. source: "./media/characters/yozey/side.svg"
  7277. }
  7278. },
  7279. },
  7280. [
  7281. {
  7282. name: "Micro",
  7283. height: math.unit(3, "inches"),
  7284. default: true
  7285. },
  7286. {
  7287. name: "Normal",
  7288. height: math.unit(6, "feet")
  7289. }
  7290. ]
  7291. ))
  7292. characterMakers.push(() => makeCharacter(
  7293. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7294. {
  7295. front: {
  7296. height: math.unit(6, "feet"),
  7297. weight: math.unit(103, "lbs"),
  7298. name: "Front",
  7299. image: {
  7300. source: "./media/characters/valeska-voss/front.svg"
  7301. }
  7302. }
  7303. },
  7304. [
  7305. {
  7306. name: "Mini-Sized Sub",
  7307. height: math.unit(3.1, "inches")
  7308. },
  7309. {
  7310. name: "Mid-Sized Sub",
  7311. height: math.unit(6.2, "inches")
  7312. },
  7313. {
  7314. name: "Full-Sized Sub",
  7315. height: math.unit(9.3, "inches")
  7316. },
  7317. {
  7318. name: "Normal",
  7319. height: math.unit(5 + 2 / 12, "foot"),
  7320. default: true
  7321. },
  7322. ]
  7323. ))
  7324. characterMakers.push(() => makeCharacter(
  7325. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7326. {
  7327. front: {
  7328. height: math.unit(6, "feet"),
  7329. weight: math.unit(160, "lbs"),
  7330. name: "Front",
  7331. image: {
  7332. source: "./media/characters/gene-zeta/front.svg",
  7333. extra: 3006 / 2826,
  7334. bottom: 182 / 3188
  7335. }
  7336. }
  7337. },
  7338. [
  7339. {
  7340. name: "Micro",
  7341. height: math.unit(6, "inches")
  7342. },
  7343. {
  7344. name: "Normal",
  7345. height: math.unit(5 + 11 / 12, "foot"),
  7346. default: true
  7347. },
  7348. {
  7349. name: "Macro",
  7350. height: math.unit(140, "feet")
  7351. },
  7352. {
  7353. name: "Supercharged",
  7354. height: math.unit(2500, "feet")
  7355. },
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7360. {
  7361. front: {
  7362. height: math.unit(6, "feet"),
  7363. weight: math.unit(350, "lbs"),
  7364. name: "Front",
  7365. image: {
  7366. source: "./media/characters/razinox/front.svg",
  7367. extra: 1686 / 1548,
  7368. bottom: 28.2 / 1868
  7369. }
  7370. },
  7371. back: {
  7372. height: math.unit(6, "feet"),
  7373. weight: math.unit(350, "lbs"),
  7374. name: "Back",
  7375. image: {
  7376. source: "./media/characters/razinox/back.svg",
  7377. extra: 1660 / 1590,
  7378. bottom: 15 / 1665
  7379. }
  7380. },
  7381. },
  7382. [
  7383. {
  7384. name: "Normal",
  7385. height: math.unit(10 + 8 / 12, "foot")
  7386. },
  7387. {
  7388. name: "Minimacro",
  7389. height: math.unit(15, "foot")
  7390. },
  7391. {
  7392. name: "Macro",
  7393. height: math.unit(60, "foot"),
  7394. default: true
  7395. },
  7396. {
  7397. name: "Megamacro",
  7398. height: math.unit(5, "miles")
  7399. },
  7400. {
  7401. name: "Gigamacro",
  7402. height: math.unit(6000, "miles")
  7403. },
  7404. ]
  7405. ))
  7406. characterMakers.push(() => makeCharacter(
  7407. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7408. {
  7409. front: {
  7410. height: math.unit(6, "feet"),
  7411. weight: math.unit(150, "lbs"),
  7412. name: "Front",
  7413. image: {
  7414. source: "./media/characters/cobalt/front.svg"
  7415. }
  7416. }
  7417. },
  7418. [
  7419. {
  7420. name: "Normal",
  7421. height: math.unit(8 + 1 / 12, "foot")
  7422. },
  7423. {
  7424. name: "Macro",
  7425. height: math.unit(111, "foot"),
  7426. default: true
  7427. },
  7428. {
  7429. name: "Supracosmic",
  7430. height: math.unit(1e42, "feet")
  7431. },
  7432. ]
  7433. ))
  7434. characterMakers.push(() => makeCharacter(
  7435. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7436. {
  7437. front: {
  7438. height: math.unit(6, "feet"),
  7439. weight: math.unit(140, "lbs"),
  7440. name: "Front",
  7441. image: {
  7442. source: "./media/characters/amanda/front.svg"
  7443. }
  7444. }
  7445. },
  7446. [
  7447. {
  7448. name: "Micro",
  7449. height: math.unit(5, "inches"),
  7450. default: true
  7451. },
  7452. ]
  7453. ))
  7454. characterMakers.push(() => makeCharacter(
  7455. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7456. {
  7457. front: {
  7458. height: math.unit(2.75, "meters"),
  7459. weight: math.unit(1200, "lb"),
  7460. name: "Front",
  7461. image: {
  7462. source: "./media/characters/teal/front.svg",
  7463. extra: 2463 / 2320,
  7464. bottom: 166 / 2629
  7465. }
  7466. },
  7467. back: {
  7468. height: math.unit(2.75, "meters"),
  7469. weight: math.unit(1200, "lb"),
  7470. name: "Back",
  7471. image: {
  7472. source: "./media/characters/teal/back.svg",
  7473. extra: 2580 / 2489,
  7474. bottom: 151 / 2731
  7475. }
  7476. },
  7477. sitting: {
  7478. height: math.unit(1.9, "meters"),
  7479. weight: math.unit(1200, "lb"),
  7480. name: "Sitting",
  7481. image: {
  7482. source: "./media/characters/teal/sitting.svg",
  7483. extra: 623 / 590,
  7484. bottom: 121 / 744
  7485. }
  7486. },
  7487. standing: {
  7488. height: math.unit(2.75, "meters"),
  7489. weight: math.unit(1200, "lb"),
  7490. name: "Standing",
  7491. image: {
  7492. source: "./media/characters/teal/standing.svg",
  7493. extra: 923 / 893,
  7494. bottom: 60 / 983
  7495. }
  7496. },
  7497. stretching: {
  7498. height: math.unit(3.65, "meters"),
  7499. weight: math.unit(1200, "lb"),
  7500. name: "Stretching",
  7501. image: {
  7502. source: "./media/characters/teal/stretching.svg",
  7503. extra: 1276 / 1244,
  7504. bottom: 0 / 1276
  7505. }
  7506. },
  7507. legged: {
  7508. height: math.unit(1.3, "meters"),
  7509. weight: math.unit(100, "lb"),
  7510. name: "Legged",
  7511. image: {
  7512. source: "./media/characters/teal/legged.svg",
  7513. extra: 462 / 437,
  7514. bottom: 24 / 486
  7515. }
  7516. },
  7517. naga: {
  7518. height: math.unit(5.4, "meters"),
  7519. weight: math.unit(4000, "lb"),
  7520. name: "Naga",
  7521. image: {
  7522. source: "./media/characters/teal/naga.svg",
  7523. extra: 1902 / 1858,
  7524. bottom: 0 / 1902
  7525. }
  7526. },
  7527. hand: {
  7528. height: math.unit(0.52, "meters"),
  7529. name: "Hand",
  7530. image: {
  7531. source: "./media/characters/teal/hand.svg"
  7532. }
  7533. },
  7534. maw: {
  7535. height: math.unit(0.43, "meters"),
  7536. name: "Maw",
  7537. image: {
  7538. source: "./media/characters/teal/maw.svg"
  7539. }
  7540. },
  7541. slit: {
  7542. height: math.unit(0.25, "meters"),
  7543. name: "Slit",
  7544. image: {
  7545. source: "./media/characters/teal/slit.svg"
  7546. }
  7547. },
  7548. },
  7549. [
  7550. {
  7551. name: "Normal",
  7552. height: math.unit(2.75, "meters"),
  7553. default: true
  7554. },
  7555. {
  7556. name: "Macro",
  7557. height: math.unit(300, "feet")
  7558. },
  7559. {
  7560. name: "Macro+",
  7561. height: math.unit(2000, "feet")
  7562. },
  7563. ]
  7564. ))
  7565. characterMakers.push(() => makeCharacter(
  7566. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7567. {
  7568. frontCat: {
  7569. height: math.unit(6, "feet"),
  7570. weight: math.unit(180, "lbs"),
  7571. name: "Front (Cat)",
  7572. image: {
  7573. source: "./media/characters/ravin-amulet/front-cat.svg"
  7574. }
  7575. },
  7576. frontCatAlt: {
  7577. height: math.unit(6, "feet"),
  7578. weight: math.unit(180, "lbs"),
  7579. name: "Front (Alt, Cat)",
  7580. image: {
  7581. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7582. }
  7583. },
  7584. frontWerewolf: {
  7585. height: math.unit(6 * 1.2, "feet"),
  7586. weight: math.unit(225, "lbs"),
  7587. name: "Front (Werewolf)",
  7588. image: {
  7589. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7590. }
  7591. },
  7592. backWerewolf: {
  7593. height: math.unit(6 * 1.2, "feet"),
  7594. weight: math.unit(225, "lbs"),
  7595. name: "Back (Werewolf)",
  7596. image: {
  7597. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7598. }
  7599. },
  7600. },
  7601. [
  7602. {
  7603. name: "Nano",
  7604. height: math.unit(1, "micrometer")
  7605. },
  7606. {
  7607. name: "Micro",
  7608. height: math.unit(1, "inch")
  7609. },
  7610. {
  7611. name: "Normal",
  7612. height: math.unit(6, "feet"),
  7613. default: true
  7614. },
  7615. {
  7616. name: "Macro",
  7617. height: math.unit(60, "feet")
  7618. }
  7619. ]
  7620. ))
  7621. characterMakers.push(() => makeCharacter(
  7622. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7623. {
  7624. front: {
  7625. height: math.unit(6, "feet"),
  7626. weight: math.unit(165, "lbs"),
  7627. name: "Front",
  7628. image: {
  7629. source: "./media/characters/fluoresce/front.svg"
  7630. }
  7631. }
  7632. },
  7633. [
  7634. {
  7635. name: "Micro",
  7636. height: math.unit(6, "cm")
  7637. },
  7638. {
  7639. name: "Normal",
  7640. height: math.unit(5 + 7 / 12, "feet"),
  7641. default: true
  7642. },
  7643. {
  7644. name: "Macro",
  7645. height: math.unit(56, "feet")
  7646. },
  7647. {
  7648. name: "Megamacro",
  7649. height: math.unit(1.9, "miles")
  7650. },
  7651. ]
  7652. ))
  7653. characterMakers.push(() => makeCharacter(
  7654. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7655. {
  7656. front: {
  7657. height: math.unit(9 + 6 / 12, "feet"),
  7658. weight: math.unit(523, "lbs"),
  7659. name: "Side",
  7660. image: {
  7661. source: "./media/characters/aurora/side.svg"
  7662. }
  7663. }
  7664. },
  7665. [
  7666. {
  7667. name: "Normal",
  7668. height: math.unit(9 + 6 / 12, "feet")
  7669. },
  7670. {
  7671. name: "Macro",
  7672. height: math.unit(96, "feet"),
  7673. default: true
  7674. },
  7675. {
  7676. name: "Macro+",
  7677. height: math.unit(243, "feet")
  7678. },
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7683. {
  7684. front: {
  7685. height: math.unit(194, "cm"),
  7686. weight: math.unit(90, "kg"),
  7687. name: "Front",
  7688. image: {
  7689. source: "./media/characters/ranek/front.svg"
  7690. }
  7691. },
  7692. side: {
  7693. height: math.unit(194, "cm"),
  7694. weight: math.unit(90, "kg"),
  7695. name: "Side",
  7696. image: {
  7697. source: "./media/characters/ranek/side.svg"
  7698. }
  7699. },
  7700. back: {
  7701. height: math.unit(194, "cm"),
  7702. weight: math.unit(90, "kg"),
  7703. name: "Back",
  7704. image: {
  7705. source: "./media/characters/ranek/back.svg"
  7706. }
  7707. },
  7708. feral: {
  7709. height: math.unit(30, "cm"),
  7710. weight: math.unit(1.6, "lbs"),
  7711. name: "Feral",
  7712. image: {
  7713. source: "./media/characters/ranek/feral.svg"
  7714. }
  7715. },
  7716. },
  7717. [
  7718. {
  7719. name: "Normal",
  7720. height: math.unit(194, "cm"),
  7721. default: true
  7722. },
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(100, "meters")
  7726. },
  7727. ]
  7728. ))
  7729. characterMakers.push(() => makeCharacter(
  7730. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7731. {
  7732. front: {
  7733. height: math.unit(5 + 6 / 12, "feet"),
  7734. weight: math.unit(153, "lbs"),
  7735. name: "Front",
  7736. image: {
  7737. source: "./media/characters/andrew-cooper/front.svg"
  7738. }
  7739. },
  7740. },
  7741. [
  7742. {
  7743. name: "Nano",
  7744. height: math.unit(1, "mm")
  7745. },
  7746. {
  7747. name: "Micro",
  7748. height: math.unit(2, "inches")
  7749. },
  7750. {
  7751. name: "Normal",
  7752. height: math.unit(5 + 6 / 12, "feet"),
  7753. default: true
  7754. }
  7755. ]
  7756. ))
  7757. characterMakers.push(() => makeCharacter(
  7758. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7759. {
  7760. front: {
  7761. height: math.unit(6, "feet"),
  7762. weight: math.unit(180, "lbs"),
  7763. name: "Front",
  7764. image: {
  7765. source: "./media/characters/akane-sato/front.svg",
  7766. extra: 1219 / 1140
  7767. }
  7768. },
  7769. back: {
  7770. height: math.unit(6, "feet"),
  7771. weight: math.unit(180, "lbs"),
  7772. name: "Back",
  7773. image: {
  7774. source: "./media/characters/akane-sato/back.svg",
  7775. extra: 1219 / 1170
  7776. }
  7777. },
  7778. },
  7779. [
  7780. {
  7781. name: "Normal",
  7782. height: math.unit(2.5, "meters")
  7783. },
  7784. {
  7785. name: "Macro",
  7786. height: math.unit(250, "meters"),
  7787. default: true
  7788. },
  7789. {
  7790. name: "Megamacro",
  7791. height: math.unit(25, "km")
  7792. },
  7793. ]
  7794. ))
  7795. characterMakers.push(() => makeCharacter(
  7796. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7797. {
  7798. front: {
  7799. height: math.unit(6, "feet"),
  7800. weight: math.unit(65, "kg"),
  7801. name: "Front",
  7802. image: {
  7803. source: "./media/characters/rook/front.svg",
  7804. extra: 960 / 950
  7805. }
  7806. }
  7807. },
  7808. [
  7809. {
  7810. name: "Normal",
  7811. height: math.unit(8.8, "feet")
  7812. },
  7813. {
  7814. name: "Macro",
  7815. height: math.unit(88, "feet"),
  7816. default: true
  7817. },
  7818. {
  7819. name: "Megamacro",
  7820. height: math.unit(8, "miles")
  7821. },
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7826. {
  7827. front: {
  7828. height: math.unit(12 + 2 / 12, "feet"),
  7829. weight: math.unit(808, "lbs"),
  7830. name: "Front",
  7831. image: {
  7832. source: "./media/characters/prodigy/front.svg"
  7833. }
  7834. }
  7835. },
  7836. [
  7837. {
  7838. name: "Normal",
  7839. height: math.unit(12 + 2 / 12, "feet"),
  7840. default: true
  7841. },
  7842. {
  7843. name: "Macro",
  7844. height: math.unit(143, "feet")
  7845. },
  7846. {
  7847. name: "Macro+",
  7848. height: math.unit(400, "feet")
  7849. },
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7854. {
  7855. front: {
  7856. height: math.unit(6, "feet"),
  7857. weight: math.unit(225, "lbs"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/daniel/front.svg"
  7861. }
  7862. },
  7863. leaning: {
  7864. height: math.unit(6, "feet"),
  7865. weight: math.unit(225, "lbs"),
  7866. name: "Leaning",
  7867. image: {
  7868. source: "./media/characters/daniel/leaning.svg"
  7869. }
  7870. },
  7871. },
  7872. [
  7873. {
  7874. name: "Macro",
  7875. height: math.unit(1000, "feet"),
  7876. default: true
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(6, "feet"),
  7885. weight: math.unit(88, "lbs"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/chiros/front.svg",
  7889. extra: 306 / 226
  7890. }
  7891. },
  7892. side: {
  7893. height: math.unit(6, "feet"),
  7894. weight: math.unit(88, "lbs"),
  7895. name: "Side",
  7896. image: {
  7897. source: "./media/characters/chiros/side.svg",
  7898. extra: 306 / 226
  7899. }
  7900. },
  7901. },
  7902. [
  7903. {
  7904. name: "Normal",
  7905. height: math.unit(6, "cm"),
  7906. default: true
  7907. },
  7908. ]
  7909. ))
  7910. characterMakers.push(() => makeCharacter(
  7911. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7912. {
  7913. front: {
  7914. height: math.unit(6, "feet"),
  7915. weight: math.unit(100, "lbs"),
  7916. name: "Front",
  7917. image: {
  7918. source: "./media/characters/selka/front.svg",
  7919. extra: 947 / 887
  7920. }
  7921. }
  7922. },
  7923. [
  7924. {
  7925. name: "Normal",
  7926. height: math.unit(5, "cm"),
  7927. default: true
  7928. },
  7929. ]
  7930. ))
  7931. characterMakers.push(() => makeCharacter(
  7932. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7933. {
  7934. front: {
  7935. height: math.unit(8 + 3 / 12, "feet"),
  7936. weight: math.unit(424, "lbs"),
  7937. name: "Front",
  7938. image: {
  7939. source: "./media/characters/verin/front.svg",
  7940. extra: 1845 / 1550
  7941. }
  7942. },
  7943. frontArmored: {
  7944. height: math.unit(8 + 3 / 12, "feet"),
  7945. weight: math.unit(424, "lbs"),
  7946. name: "Front (Armored)",
  7947. image: {
  7948. source: "./media/characters/verin/front-armor.svg",
  7949. extra: 1845 / 1550,
  7950. bottom: 0.01
  7951. }
  7952. },
  7953. back: {
  7954. height: math.unit(8 + 3 / 12, "feet"),
  7955. weight: math.unit(424, "lbs"),
  7956. name: "Back",
  7957. image: {
  7958. source: "./media/characters/verin/back.svg",
  7959. bottom: 0.1,
  7960. extra: 1
  7961. }
  7962. },
  7963. foot: {
  7964. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7965. name: "Foot",
  7966. image: {
  7967. source: "./media/characters/verin/foot.svg"
  7968. }
  7969. },
  7970. },
  7971. [
  7972. {
  7973. name: "Normal",
  7974. height: math.unit(8 + 3 / 12, "feet")
  7975. },
  7976. {
  7977. name: "Minimacro",
  7978. height: math.unit(21, "feet"),
  7979. default: true
  7980. },
  7981. {
  7982. name: "Macro",
  7983. height: math.unit(626, "feet")
  7984. },
  7985. ]
  7986. ))
  7987. characterMakers.push(() => makeCharacter(
  7988. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7989. {
  7990. front: {
  7991. height: math.unit(2.718, "meters"),
  7992. weight: math.unit(150, "lbs"),
  7993. name: "Front",
  7994. image: {
  7995. source: "./media/characters/sovrim-terraquian/front.svg"
  7996. }
  7997. },
  7998. back: {
  7999. height: math.unit(2.718, "meters"),
  8000. weight: math.unit(150, "lbs"),
  8001. name: "Back",
  8002. image: {
  8003. source: "./media/characters/sovrim-terraquian/back.svg"
  8004. }
  8005. }
  8006. },
  8007. [
  8008. {
  8009. name: "Micro",
  8010. height: math.unit(2, "inches")
  8011. },
  8012. {
  8013. name: "Small",
  8014. height: math.unit(1, "meter")
  8015. },
  8016. {
  8017. name: "Normal",
  8018. height: math.unit(Math.E, "meters"),
  8019. default: true
  8020. },
  8021. {
  8022. name: "Macro",
  8023. height: math.unit(20, "meters")
  8024. },
  8025. {
  8026. name: "Macro+",
  8027. height: math.unit(400, "meters")
  8028. },
  8029. ]
  8030. ))
  8031. characterMakers.push(() => makeCharacter(
  8032. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8033. {
  8034. front: {
  8035. height: math.unit(7, "feet"),
  8036. weight: math.unit(489, "lbs"),
  8037. name: "Front",
  8038. image: {
  8039. source: "./media/characters/reece-silvermane/front.svg",
  8040. bottom: 0.02,
  8041. extra: 1
  8042. }
  8043. },
  8044. },
  8045. [
  8046. {
  8047. name: "Macro",
  8048. height: math.unit(1.5, "miles"),
  8049. default: true
  8050. },
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8055. {
  8056. front: {
  8057. height: math.unit(6, "feet"),
  8058. weight: math.unit(78, "kg"),
  8059. name: "Front",
  8060. image: {
  8061. source: "./media/characters/kane/front.svg",
  8062. extra: 978 / 899
  8063. }
  8064. },
  8065. },
  8066. [
  8067. {
  8068. name: "Normal",
  8069. height: math.unit(2.1, "m"),
  8070. },
  8071. {
  8072. name: "Macro",
  8073. height: math.unit(1, "km"),
  8074. default: true
  8075. },
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(6, "feet"),
  8083. weight: math.unit(200, "kg"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/tegon/front.svg",
  8087. bottom: 0.01,
  8088. extra: 1
  8089. }
  8090. },
  8091. },
  8092. [
  8093. {
  8094. name: "Micro",
  8095. height: math.unit(1, "inch")
  8096. },
  8097. {
  8098. name: "Normal",
  8099. height: math.unit(6 + 3 / 12, "feet"),
  8100. default: true
  8101. },
  8102. {
  8103. name: "Macro",
  8104. height: math.unit(300, "feet")
  8105. },
  8106. {
  8107. name: "Megamacro",
  8108. height: math.unit(69, "miles")
  8109. },
  8110. ]
  8111. ))
  8112. characterMakers.push(() => makeCharacter(
  8113. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8114. {
  8115. side: {
  8116. height: math.unit(6, "feet"),
  8117. weight: math.unit(2304, "lbs"),
  8118. name: "Side",
  8119. image: {
  8120. source: "./media/characters/arcturax/side.svg",
  8121. extra: 790 / 376,
  8122. bottom: 0.01
  8123. }
  8124. },
  8125. },
  8126. [
  8127. {
  8128. name: "Micro",
  8129. height: math.unit(2, "inch")
  8130. },
  8131. {
  8132. name: "Normal",
  8133. height: math.unit(6, "feet")
  8134. },
  8135. {
  8136. name: "Macro",
  8137. height: math.unit(39, "feet"),
  8138. default: true
  8139. },
  8140. {
  8141. name: "Megamacro",
  8142. height: math.unit(7, "miles")
  8143. },
  8144. ]
  8145. ))
  8146. characterMakers.push(() => makeCharacter(
  8147. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8148. {
  8149. front: {
  8150. height: math.unit(6, "feet"),
  8151. weight: math.unit(50, "lbs"),
  8152. name: "Front",
  8153. image: {
  8154. source: "./media/characters/sentri/front.svg",
  8155. extra: 1750 / 1570,
  8156. bottom: 0.025
  8157. }
  8158. },
  8159. frontAlt: {
  8160. height: math.unit(6, "feet"),
  8161. weight: math.unit(50, "lbs"),
  8162. name: "Front (Alt)",
  8163. image: {
  8164. source: "./media/characters/sentri/front-alt.svg",
  8165. extra: 1750 / 1570,
  8166. bottom: 0.025
  8167. }
  8168. },
  8169. },
  8170. [
  8171. {
  8172. name: "Normal",
  8173. height: math.unit(15, "feet"),
  8174. default: true
  8175. },
  8176. {
  8177. name: "Macro",
  8178. height: math.unit(2500, "feet")
  8179. }
  8180. ]
  8181. ))
  8182. characterMakers.push(() => makeCharacter(
  8183. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8184. {
  8185. front: {
  8186. height: math.unit(5 + 8 / 12, "feet"),
  8187. weight: math.unit(130, "lbs"),
  8188. name: "Front",
  8189. image: {
  8190. source: "./media/characters/corvin/front.svg",
  8191. extra: 1803 / 1629
  8192. }
  8193. },
  8194. frontShirt: {
  8195. height: math.unit(5 + 8 / 12, "feet"),
  8196. weight: math.unit(130, "lbs"),
  8197. name: "Front (Shirt)",
  8198. image: {
  8199. source: "./media/characters/corvin/front-shirt.svg",
  8200. extra: 1803 / 1629
  8201. }
  8202. },
  8203. frontPoncho: {
  8204. height: math.unit(5 + 8 / 12, "feet"),
  8205. weight: math.unit(130, "lbs"),
  8206. name: "Front (Poncho)",
  8207. image: {
  8208. source: "./media/characters/corvin/front-poncho.svg",
  8209. extra: 1803 / 1629
  8210. }
  8211. },
  8212. side: {
  8213. height: math.unit(5 + 8 / 12, "feet"),
  8214. weight: math.unit(130, "lbs"),
  8215. name: "Side",
  8216. image: {
  8217. source: "./media/characters/corvin/side.svg",
  8218. extra: 1012 / 945
  8219. }
  8220. },
  8221. back: {
  8222. height: math.unit(5 + 8 / 12, "feet"),
  8223. weight: math.unit(130, "lbs"),
  8224. name: "Back",
  8225. image: {
  8226. source: "./media/characters/corvin/back.svg",
  8227. extra: 1803 / 1629
  8228. }
  8229. },
  8230. },
  8231. [
  8232. {
  8233. name: "Micro",
  8234. height: math.unit(3, "inches")
  8235. },
  8236. {
  8237. name: "Normal",
  8238. height: math.unit(5 + 8 / 12, "feet")
  8239. },
  8240. {
  8241. name: "Macro",
  8242. height: math.unit(300, "feet"),
  8243. default: true
  8244. },
  8245. {
  8246. name: "Megamacro",
  8247. height: math.unit(500, "miles")
  8248. }
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8253. {
  8254. front: {
  8255. height: math.unit(6, "feet"),
  8256. weight: math.unit(135, "lbs"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/q/front.svg",
  8260. extra: 854 / 752,
  8261. bottom: 0.005
  8262. }
  8263. },
  8264. back: {
  8265. height: math.unit(6, "feet"),
  8266. weight: math.unit(130, "lbs"),
  8267. name: "Back",
  8268. image: {
  8269. source: "./media/characters/q/back.svg",
  8270. extra: 854 / 752
  8271. }
  8272. },
  8273. },
  8274. [
  8275. {
  8276. name: "Macro",
  8277. height: math.unit(90, "feet"),
  8278. default: true
  8279. },
  8280. {
  8281. name: "Extra Macro",
  8282. height: math.unit(300, "feet"),
  8283. },
  8284. {
  8285. name: "BIG WALF",
  8286. height: math.unit(750, "feet"),
  8287. },
  8288. ]
  8289. ))
  8290. characterMakers.push(() => makeCharacter(
  8291. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8292. {
  8293. front: {
  8294. height: math.unit(6, "feet"),
  8295. weight: math.unit(150, "lbs"),
  8296. name: "Front",
  8297. image: {
  8298. source: "./media/characters/carley/front.svg",
  8299. extra: 3927 / 3540,
  8300. bottom: 29.2 / 735
  8301. }
  8302. }
  8303. },
  8304. [
  8305. {
  8306. name: "Normal",
  8307. height: math.unit(6 + 3 / 12, "feet")
  8308. },
  8309. {
  8310. name: "Macro",
  8311. height: math.unit(185, "feet"),
  8312. default: true
  8313. },
  8314. {
  8315. name: "Megamacro",
  8316. height: math.unit(8, "miles"),
  8317. },
  8318. ]
  8319. ))
  8320. characterMakers.push(() => makeCharacter(
  8321. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8322. {
  8323. front: {
  8324. height: math.unit(3, "feet"),
  8325. weight: math.unit(28, "lbs"),
  8326. name: "Front",
  8327. image: {
  8328. source: "./media/characters/citrine/front.svg"
  8329. }
  8330. }
  8331. },
  8332. [
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(3, "feet"),
  8336. default: true
  8337. }
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8342. {
  8343. front: {
  8344. height: math.unit(14, "feet"),
  8345. weight: math.unit(1450, "kg"),
  8346. capacity: math.unit(15, "people"),
  8347. name: "Front",
  8348. image: {
  8349. source: "./media/characters/aura-starwind/front.svg",
  8350. extra: 1440/1327,
  8351. bottom: 11/1451
  8352. }
  8353. },
  8354. side: {
  8355. height: math.unit(14, "feet"),
  8356. weight: math.unit(1450, "kg"),
  8357. capacity: math.unit(15, "people"),
  8358. name: "Side",
  8359. image: {
  8360. source: "./media/characters/aura-starwind/side.svg",
  8361. extra: 1654 / 1497
  8362. }
  8363. },
  8364. taur: {
  8365. height: math.unit(18, "feet"),
  8366. weight: math.unit(5500, "kg"),
  8367. capacity: math.unit(50, "people"),
  8368. name: "Taur",
  8369. image: {
  8370. source: "./media/characters/aura-starwind/taur.svg",
  8371. extra: 1760 / 1650
  8372. }
  8373. },
  8374. feral: {
  8375. height: math.unit(46, "feet"),
  8376. weight: math.unit(25000, "kg"),
  8377. capacity: math.unit(120, "people"),
  8378. name: "Feral",
  8379. image: {
  8380. source: "./media/characters/aura-starwind/feral.svg"
  8381. }
  8382. },
  8383. },
  8384. [
  8385. {
  8386. name: "Normal",
  8387. height: math.unit(14, "feet"),
  8388. default: true
  8389. },
  8390. {
  8391. name: "Macro",
  8392. height: math.unit(50, "meters")
  8393. },
  8394. {
  8395. name: "Megamacro",
  8396. height: math.unit(5000, "meters")
  8397. },
  8398. {
  8399. name: "Gigamacro",
  8400. height: math.unit(100000, "kilometers")
  8401. },
  8402. ]
  8403. ))
  8404. characterMakers.push(() => makeCharacter(
  8405. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8406. {
  8407. front: {
  8408. height: math.unit(2 + 7 / 12, "feet"),
  8409. weight: math.unit(32, "lbs"),
  8410. name: "Front",
  8411. image: {
  8412. source: "./media/characters/rivet/front.svg",
  8413. extra: 1716 / 1658,
  8414. bottom: 0.03
  8415. }
  8416. },
  8417. foot: {
  8418. height: math.unit(0.551, "feet"),
  8419. name: "Rivet's Foot",
  8420. image: {
  8421. source: "./media/characters/rivet/foot.svg"
  8422. },
  8423. rename: true
  8424. }
  8425. },
  8426. [
  8427. {
  8428. name: "Micro",
  8429. height: math.unit(1.5, "inches"),
  8430. },
  8431. {
  8432. name: "Normal",
  8433. height: math.unit(2 + 7 / 12, "feet"),
  8434. default: true
  8435. },
  8436. {
  8437. name: "Macro",
  8438. height: math.unit(85, "feet")
  8439. },
  8440. {
  8441. name: "Megamacro",
  8442. height: math.unit(2.2, "km")
  8443. }
  8444. ]
  8445. ))
  8446. characterMakers.push(() => makeCharacter(
  8447. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8448. {
  8449. front: {
  8450. height: math.unit(5 + 9 / 12, "feet"),
  8451. weight: math.unit(150, "lbs"),
  8452. name: "Front",
  8453. image: {
  8454. source: "./media/characters/coffee/front.svg",
  8455. extra: 3666 / 3032,
  8456. bottom: 0.04
  8457. }
  8458. },
  8459. foot: {
  8460. height: math.unit(1.29, "feet"),
  8461. name: "Foot",
  8462. image: {
  8463. source: "./media/characters/coffee/foot.svg"
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Micro",
  8470. height: math.unit(2, "inches"),
  8471. },
  8472. {
  8473. name: "Normal",
  8474. height: math.unit(5 + 9 / 12, "feet"),
  8475. default: true
  8476. },
  8477. {
  8478. name: "Macro",
  8479. height: math.unit(800, "feet")
  8480. },
  8481. {
  8482. name: "Megamacro",
  8483. height: math.unit(25, "miles")
  8484. }
  8485. ]
  8486. ))
  8487. characterMakers.push(() => makeCharacter(
  8488. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8489. {
  8490. front: {
  8491. height: math.unit(6, "feet"),
  8492. weight: math.unit(200, "lbs"),
  8493. name: "Front",
  8494. image: {
  8495. source: "./media/characters/chari-gal/front.svg",
  8496. extra: 1568 / 1385,
  8497. bottom: 0.047
  8498. }
  8499. },
  8500. gigantamax: {
  8501. height: math.unit(6 * 16, "feet"),
  8502. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8503. name: "Gigantamax",
  8504. image: {
  8505. source: "./media/characters/chari-gal/gigantamax.svg",
  8506. extra: 1124 / 888,
  8507. bottom: 0.03
  8508. }
  8509. },
  8510. },
  8511. [
  8512. {
  8513. name: "Normal",
  8514. height: math.unit(5 + 7 / 12, "feet")
  8515. },
  8516. {
  8517. name: "Macro",
  8518. height: math.unit(200, "feet"),
  8519. default: true
  8520. }
  8521. ]
  8522. ))
  8523. characterMakers.push(() => makeCharacter(
  8524. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8525. {
  8526. front: {
  8527. height: math.unit(6, "feet"),
  8528. weight: math.unit(150, "lbs"),
  8529. name: "Front",
  8530. image: {
  8531. source: "./media/characters/nova/front.svg",
  8532. extra: 5000 / 4722,
  8533. bottom: 0.02
  8534. }
  8535. }
  8536. },
  8537. [
  8538. {
  8539. name: "Micro-",
  8540. height: math.unit(0.8, "inches")
  8541. },
  8542. {
  8543. name: "Micro",
  8544. height: math.unit(2, "inches"),
  8545. default: true
  8546. },
  8547. ]
  8548. ))
  8549. characterMakers.push(() => makeCharacter(
  8550. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8551. {
  8552. front: {
  8553. height: math.unit(3 + 1 / 12, "feet"),
  8554. weight: math.unit(21.7, "lbs"),
  8555. name: "Front",
  8556. image: {
  8557. source: "./media/characters/argent/front.svg",
  8558. extra: 1471 / 1331,
  8559. bottom: 100.8 / 1575.5
  8560. }
  8561. }
  8562. },
  8563. [
  8564. {
  8565. name: "Micro",
  8566. height: math.unit(2, "inches")
  8567. },
  8568. {
  8569. name: "Normal",
  8570. height: math.unit(3 + 1 / 12, "feet"),
  8571. default: true
  8572. },
  8573. {
  8574. name: "Macro",
  8575. height: math.unit(120, "feet")
  8576. },
  8577. ]
  8578. ))
  8579. characterMakers.push(() => makeCharacter(
  8580. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8581. {
  8582. lamp: {
  8583. height: math.unit(7 * 1559 / 989, "feet"),
  8584. name: "Magic Lamp",
  8585. image: {
  8586. source: "./media/characters/mira-al-cul/lamp.svg",
  8587. extra: 1617 / 1559
  8588. }
  8589. },
  8590. front: {
  8591. height: math.unit(7, "feet"),
  8592. name: "Front",
  8593. image: {
  8594. source: "./media/characters/mira-al-cul/front.svg",
  8595. extra: 1044 / 990
  8596. }
  8597. },
  8598. },
  8599. [
  8600. {
  8601. name: "Heavily Restricted",
  8602. height: math.unit(7 * 1559 / 989, "feet")
  8603. },
  8604. {
  8605. name: "Freshly Freed",
  8606. height: math.unit(50 * 1559 / 989, "feet")
  8607. },
  8608. {
  8609. name: "World Encompassing",
  8610. height: math.unit(10000 * 1559 / 989, "miles")
  8611. },
  8612. {
  8613. name: "Galactic",
  8614. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8615. },
  8616. {
  8617. name: "Palmed Universe",
  8618. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8619. default: true
  8620. },
  8621. {
  8622. name: "Multiversal Matriarch",
  8623. height: math.unit(8.87e10, "yottameters")
  8624. },
  8625. {
  8626. name: "Void Mother",
  8627. height: math.unit(3.14e110, "yottaparsecs")
  8628. },
  8629. {
  8630. name: "Toying with Transcendence",
  8631. height: math.unit(1e307, "meters")
  8632. },
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8637. {
  8638. front: {
  8639. height: math.unit(17 + 1 / 12, "feet"),
  8640. weight: math.unit(476.2 * 5, "lbs"),
  8641. name: "Front",
  8642. image: {
  8643. source: "./media/characters/kuro-shi-uchū/front.svg",
  8644. extra: 2329 / 1835,
  8645. bottom: 0.02
  8646. }
  8647. },
  8648. },
  8649. [
  8650. {
  8651. name: "Micro",
  8652. height: math.unit(2, "inches")
  8653. },
  8654. {
  8655. name: "Normal",
  8656. height: math.unit(12, "meters")
  8657. },
  8658. {
  8659. name: "Planetary",
  8660. height: math.unit(0.00929, "AU"),
  8661. default: true
  8662. },
  8663. {
  8664. name: "Universal",
  8665. height: math.unit(20, "gigaparsecs")
  8666. },
  8667. ]
  8668. ))
  8669. characterMakers.push(() => makeCharacter(
  8670. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8671. {
  8672. front: {
  8673. height: math.unit(5 + 2 / 12, "feet"),
  8674. weight: math.unit(120, "lbs"),
  8675. name: "Front",
  8676. image: {
  8677. source: "./media/characters/katherine/front.svg",
  8678. extra: 2075 / 1969
  8679. }
  8680. },
  8681. dress: {
  8682. height: math.unit(5 + 2 / 12, "feet"),
  8683. weight: math.unit(120, "lbs"),
  8684. name: "Dress",
  8685. image: {
  8686. source: "./media/characters/katherine/dress.svg",
  8687. extra: 2258 / 2064
  8688. }
  8689. },
  8690. },
  8691. [
  8692. {
  8693. name: "Micro",
  8694. height: math.unit(1, "inches"),
  8695. default: true
  8696. },
  8697. {
  8698. name: "Normal",
  8699. height: math.unit(5 + 2 / 12, "feet")
  8700. },
  8701. {
  8702. name: "Macro",
  8703. height: math.unit(100, "meters")
  8704. },
  8705. {
  8706. name: "Megamacro",
  8707. height: math.unit(80, "miles")
  8708. },
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8713. {
  8714. front: {
  8715. height: math.unit(7 + 8 / 12, "feet"),
  8716. weight: math.unit(250, "lbs"),
  8717. name: "Front",
  8718. image: {
  8719. source: "./media/characters/yevis/front.svg",
  8720. extra: 1938 / 1755
  8721. }
  8722. }
  8723. },
  8724. [
  8725. {
  8726. name: "Mortal",
  8727. height: math.unit(7 + 8 / 12, "feet")
  8728. },
  8729. {
  8730. name: "Battle",
  8731. height: math.unit(25 + 11 / 12, "feet")
  8732. },
  8733. {
  8734. name: "Wrath",
  8735. height: math.unit(1654 + 11 / 12, "feet")
  8736. },
  8737. {
  8738. name: "Planet Destroyer",
  8739. height: math.unit(12000, "miles")
  8740. },
  8741. {
  8742. name: "Galaxy Conqueror",
  8743. height: math.unit(1.45, "zettameters"),
  8744. default: true
  8745. },
  8746. {
  8747. name: "Universal War",
  8748. height: math.unit(184, "gigaparsecs")
  8749. },
  8750. {
  8751. name: "Eternity War",
  8752. height: math.unit(1.98e55, "yottaparsecs")
  8753. },
  8754. ]
  8755. ))
  8756. characterMakers.push(() => makeCharacter(
  8757. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8758. {
  8759. front: {
  8760. height: math.unit(5 + 8 / 12, "feet"),
  8761. weight: math.unit(63, "kg"),
  8762. name: "Front",
  8763. image: {
  8764. source: "./media/characters/xavier/front.svg",
  8765. extra: 944 / 883
  8766. }
  8767. },
  8768. frontStretch: {
  8769. height: math.unit(5 + 8 / 12, "feet"),
  8770. weight: math.unit(63, "kg"),
  8771. name: "Stretching",
  8772. image: {
  8773. source: "./media/characters/xavier/front-stretch.svg",
  8774. extra: 962 / 820
  8775. }
  8776. },
  8777. },
  8778. [
  8779. {
  8780. name: "Normal",
  8781. height: math.unit(5 + 8 / 12, "feet")
  8782. },
  8783. {
  8784. name: "Macro",
  8785. height: math.unit(100, "meters"),
  8786. default: true
  8787. },
  8788. {
  8789. name: "McLargeHuge",
  8790. height: math.unit(10, "miles")
  8791. },
  8792. ]
  8793. ))
  8794. characterMakers.push(() => makeCharacter(
  8795. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8796. {
  8797. front: {
  8798. height: math.unit(5 + 5 / 12, "feet"),
  8799. weight: math.unit(150, "lb"),
  8800. name: "Front",
  8801. image: {
  8802. source: "./media/characters/joshii/front.svg",
  8803. extra: 765 / 653,
  8804. bottom: 51 / 816
  8805. }
  8806. },
  8807. foot: {
  8808. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8809. name: "Foot",
  8810. image: {
  8811. source: "./media/characters/joshii/foot.svg"
  8812. }
  8813. },
  8814. },
  8815. [
  8816. {
  8817. name: "Micro",
  8818. height: math.unit(2, "inches"),
  8819. default: true
  8820. },
  8821. {
  8822. name: "Normal",
  8823. height: math.unit(5 + 5 / 12, "feet")
  8824. },
  8825. {
  8826. name: "Macro",
  8827. height: math.unit(785, "feet")
  8828. },
  8829. {
  8830. name: "Megamacro",
  8831. height: math.unit(24.5, "miles")
  8832. },
  8833. ]
  8834. ))
  8835. characterMakers.push(() => makeCharacter(
  8836. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8837. {
  8838. front: {
  8839. height: math.unit(6, "feet"),
  8840. weight: math.unit(150, "lb"),
  8841. name: "Front",
  8842. image: {
  8843. source: "./media/characters/goddess-elizabeth/front.svg",
  8844. extra: 1800 / 1525,
  8845. bottom: 0.005
  8846. }
  8847. },
  8848. foot: {
  8849. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8850. name: "Foot",
  8851. image: {
  8852. source: "./media/characters/goddess-elizabeth/foot.svg"
  8853. }
  8854. },
  8855. mouth: {
  8856. height: math.unit(6, "feet"),
  8857. name: "Mouth",
  8858. image: {
  8859. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8860. }
  8861. },
  8862. },
  8863. [
  8864. {
  8865. name: "Micro",
  8866. height: math.unit(12, "feet")
  8867. },
  8868. {
  8869. name: "Normal",
  8870. height: math.unit(80, "miles"),
  8871. default: true
  8872. },
  8873. {
  8874. name: "Macro",
  8875. height: math.unit(15000, "parsecs")
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8881. {
  8882. front: {
  8883. height: math.unit(5 + 9 / 12, "feet"),
  8884. weight: math.unit(144, "lb"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/kara/front.svg"
  8888. }
  8889. },
  8890. feet: {
  8891. height: math.unit(6 / 6.765, "feet"),
  8892. name: "Kara's Feet",
  8893. rename: true,
  8894. image: {
  8895. source: "./media/characters/kara/feet.svg"
  8896. }
  8897. },
  8898. },
  8899. [
  8900. {
  8901. name: "Normal",
  8902. height: math.unit(5 + 9 / 12, "feet")
  8903. },
  8904. {
  8905. name: "Macro",
  8906. height: math.unit(174, "feet"),
  8907. default: true
  8908. },
  8909. ]
  8910. ))
  8911. characterMakers.push(() => makeCharacter(
  8912. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8913. {
  8914. front: {
  8915. height: math.unit(18, "feet"),
  8916. weight: math.unit(4050, "lb"),
  8917. name: "Front",
  8918. image: {
  8919. source: "./media/characters/tyrone/front.svg",
  8920. extra: 2405 / 2270,
  8921. bottom: 182 / 2587
  8922. }
  8923. },
  8924. },
  8925. [
  8926. {
  8927. name: "Normal",
  8928. height: math.unit(18, "feet"),
  8929. default: true
  8930. },
  8931. {
  8932. name: "Macro",
  8933. height: math.unit(300, "feet")
  8934. },
  8935. {
  8936. name: "Megamacro",
  8937. height: math.unit(15, "km")
  8938. },
  8939. {
  8940. name: "Gigamacro",
  8941. height: math.unit(500, "km")
  8942. },
  8943. {
  8944. name: "Teramacro",
  8945. height: math.unit(0.5, "gigameters")
  8946. },
  8947. {
  8948. name: "Omnimacro",
  8949. height: math.unit(1e252, "yottauniverse")
  8950. },
  8951. ]
  8952. ))
  8953. characterMakers.push(() => makeCharacter(
  8954. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8955. {
  8956. front: {
  8957. height: math.unit(7 + 8 / 12, "feet"),
  8958. weight: math.unit(120, "lb"),
  8959. name: "Front",
  8960. image: {
  8961. source: "./media/characters/danny/front.svg",
  8962. extra: 1490 / 1350
  8963. }
  8964. },
  8965. back: {
  8966. height: math.unit(7 + 8 / 12, "feet"),
  8967. weight: math.unit(120, "lb"),
  8968. name: "Back",
  8969. image: {
  8970. source: "./media/characters/danny/back.svg",
  8971. extra: 1490 / 1350
  8972. }
  8973. },
  8974. },
  8975. [
  8976. {
  8977. name: "Normal",
  8978. height: math.unit(7 + 8 / 12, "feet"),
  8979. default: true
  8980. },
  8981. ]
  8982. ))
  8983. characterMakers.push(() => makeCharacter(
  8984. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8985. {
  8986. front: {
  8987. height: math.unit(3.5, "inches"),
  8988. weight: math.unit(19, "grams"),
  8989. name: "Front",
  8990. image: {
  8991. source: "./media/characters/mallow/front.svg",
  8992. extra: 471 / 431
  8993. }
  8994. },
  8995. back: {
  8996. height: math.unit(3.5, "inches"),
  8997. weight: math.unit(19, "grams"),
  8998. name: "Back",
  8999. image: {
  9000. source: "./media/characters/mallow/back.svg",
  9001. extra: 471 / 431
  9002. }
  9003. },
  9004. },
  9005. [
  9006. {
  9007. name: "Normal",
  9008. height: math.unit(3.5, "inches"),
  9009. default: true
  9010. },
  9011. ]
  9012. ))
  9013. characterMakers.push(() => makeCharacter(
  9014. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9015. {
  9016. front: {
  9017. height: math.unit(9, "feet"),
  9018. weight: math.unit(230, "kg"),
  9019. name: "Front",
  9020. image: {
  9021. source: "./media/characters/starry-aqua/front.svg"
  9022. }
  9023. },
  9024. back: {
  9025. height: math.unit(9, "feet"),
  9026. weight: math.unit(230, "kg"),
  9027. name: "Back",
  9028. image: {
  9029. source: "./media/characters/starry-aqua/back.svg"
  9030. }
  9031. },
  9032. hand: {
  9033. height: math.unit(9 * 0.1168, "feet"),
  9034. name: "Hand",
  9035. image: {
  9036. source: "./media/characters/starry-aqua/hand.svg"
  9037. }
  9038. },
  9039. foot: {
  9040. height: math.unit(9 * 0.18, "feet"),
  9041. name: "Foot",
  9042. image: {
  9043. source: "./media/characters/starry-aqua/foot.svg"
  9044. }
  9045. }
  9046. },
  9047. [
  9048. {
  9049. name: "Micro",
  9050. height: math.unit(3, "inches")
  9051. },
  9052. {
  9053. name: "Normal",
  9054. height: math.unit(9, "feet")
  9055. },
  9056. {
  9057. name: "Macro",
  9058. height: math.unit(300, "feet"),
  9059. default: true
  9060. },
  9061. {
  9062. name: "Megamacro",
  9063. height: math.unit(3200, "feet")
  9064. }
  9065. ]
  9066. ))
  9067. characterMakers.push(() => makeCharacter(
  9068. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9069. {
  9070. front: {
  9071. height: math.unit(15, "feet"),
  9072. weight: math.unit(5026, "lb"),
  9073. name: "Front",
  9074. image: {
  9075. source: "./media/characters/luka-towers/front.svg",
  9076. extra: 1269/1133,
  9077. bottom: 51/1320
  9078. }
  9079. },
  9080. },
  9081. [
  9082. {
  9083. name: "Normal",
  9084. height: math.unit(15, "feet"),
  9085. default: true
  9086. },
  9087. {
  9088. name: "Minimacro",
  9089. height: math.unit(25, "feet")
  9090. },
  9091. {
  9092. name: "Macro",
  9093. height: math.unit(320, "feet")
  9094. },
  9095. {
  9096. name: "Megamacro",
  9097. height: math.unit(35000, "feet")
  9098. },
  9099. {
  9100. name: "Gigamacro",
  9101. height: math.unit(4000, "miles")
  9102. },
  9103. {
  9104. name: "Teramacro",
  9105. height: math.unit(15000, "miles")
  9106. },
  9107. ]
  9108. ))
  9109. characterMakers.push(() => makeCharacter(
  9110. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9111. {
  9112. front: {
  9113. height: math.unit(6, "feet"),
  9114. weight: math.unit(150, "lb"),
  9115. name: "Front",
  9116. image: {
  9117. source: "./media/characters/natalie-nightring/front.svg",
  9118. extra: 1,
  9119. bottom: 0.06
  9120. }
  9121. },
  9122. },
  9123. [
  9124. {
  9125. name: "Uh Oh",
  9126. height: math.unit(0.1, "mm")
  9127. },
  9128. {
  9129. name: "Small",
  9130. height: math.unit(3, "inches")
  9131. },
  9132. {
  9133. name: "Human Scale",
  9134. height: math.unit(6, "feet")
  9135. },
  9136. {
  9137. name: "Librarian",
  9138. height: math.unit(50, "feet"),
  9139. default: true
  9140. },
  9141. {
  9142. name: "Immense",
  9143. height: math.unit(200, "miles")
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9149. {
  9150. front: {
  9151. height: math.unit(6, "feet"),
  9152. weight: math.unit(180, "lbs"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/danni-rosie/front.svg",
  9156. extra: 1260 / 1128,
  9157. bottom: 0.022
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Micro",
  9164. height: math.unit(2, "inches"),
  9165. default: true
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9171. {
  9172. front: {
  9173. height: math.unit(5 + 9 / 12, "feet"),
  9174. weight: math.unit(220, "lb"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/samantha-kruse/front.svg",
  9178. extra: (985 / 935),
  9179. bottom: 0.03
  9180. }
  9181. },
  9182. frontUndressed: {
  9183. height: math.unit(5 + 9 / 12, "feet"),
  9184. weight: math.unit(220, "lb"),
  9185. name: "Front (Undressed)",
  9186. image: {
  9187. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9188. extra: (973 / 923),
  9189. bottom: 0.025
  9190. }
  9191. },
  9192. fat: {
  9193. height: math.unit(5 + 9 / 12, "feet"),
  9194. weight: math.unit(900, "lb"),
  9195. name: "Front (Fat)",
  9196. image: {
  9197. source: "./media/characters/samantha-kruse/fat.svg",
  9198. extra: 2688 / 2561
  9199. }
  9200. },
  9201. },
  9202. [
  9203. {
  9204. name: "Normal",
  9205. height: math.unit(5 + 9 / 12, "feet"),
  9206. default: true
  9207. }
  9208. ]
  9209. ))
  9210. characterMakers.push(() => makeCharacter(
  9211. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9212. {
  9213. back: {
  9214. height: math.unit(5 + 4 / 12, "feet"),
  9215. weight: math.unit(4963, "lb"),
  9216. name: "Back",
  9217. image: {
  9218. source: "./media/characters/amelia-rosie/back.svg",
  9219. extra: 1113 / 963,
  9220. bottom: 0.01
  9221. }
  9222. },
  9223. },
  9224. [
  9225. {
  9226. name: "Level 0",
  9227. height: math.unit(5 + 4 / 12, "feet")
  9228. },
  9229. {
  9230. name: "Level 1",
  9231. height: math.unit(164597, "feet"),
  9232. default: true
  9233. },
  9234. {
  9235. name: "Level 2",
  9236. height: math.unit(956243, "miles")
  9237. },
  9238. {
  9239. name: "Level 3",
  9240. height: math.unit(29421709423, "miles")
  9241. },
  9242. {
  9243. name: "Level 4",
  9244. height: math.unit(154, "lightyears")
  9245. },
  9246. {
  9247. name: "Level 5",
  9248. height: math.unit(4738272, "lightyears")
  9249. },
  9250. {
  9251. name: "Level 6",
  9252. height: math.unit(145787152896, "lightyears")
  9253. },
  9254. ]
  9255. ))
  9256. characterMakers.push(() => makeCharacter(
  9257. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9258. {
  9259. front: {
  9260. height: math.unit(5 + 11 / 12, "feet"),
  9261. weight: math.unit(65, "kg"),
  9262. name: "Front",
  9263. image: {
  9264. source: "./media/characters/rook-kitara/front.svg",
  9265. extra: 1347 / 1274,
  9266. bottom: 0.005
  9267. }
  9268. },
  9269. },
  9270. [
  9271. {
  9272. name: "Totally Unfair",
  9273. height: math.unit(1.8, "mm")
  9274. },
  9275. {
  9276. name: "Lap Rookie",
  9277. height: math.unit(1.4, "feet")
  9278. },
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(5 + 11 / 12, "feet"),
  9282. default: true
  9283. },
  9284. {
  9285. name: "How Did This Happen",
  9286. height: math.unit(80, "miles")
  9287. }
  9288. ]
  9289. ))
  9290. characterMakers.push(() => makeCharacter(
  9291. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9292. {
  9293. front: {
  9294. height: math.unit(7, "feet"),
  9295. weight: math.unit(300, "lb"),
  9296. name: "Front",
  9297. image: {
  9298. source: "./media/characters/pisces/front.svg",
  9299. extra: 2255 / 2115,
  9300. bottom: 0.03
  9301. }
  9302. },
  9303. back: {
  9304. height: math.unit(7, "feet"),
  9305. weight: math.unit(300, "lb"),
  9306. name: "Back",
  9307. image: {
  9308. source: "./media/characters/pisces/back.svg",
  9309. extra: 2146 / 2055,
  9310. bottom: 0.04
  9311. }
  9312. },
  9313. },
  9314. [
  9315. {
  9316. name: "Normal",
  9317. height: math.unit(7, "feet"),
  9318. default: true
  9319. },
  9320. {
  9321. name: "Swimming Pool",
  9322. height: math.unit(12.2, "meters")
  9323. },
  9324. {
  9325. name: "Olympic Swimming Pool",
  9326. height: math.unit(56.3, "meters")
  9327. },
  9328. {
  9329. name: "Lake Superior",
  9330. height: math.unit(93900, "meters")
  9331. },
  9332. {
  9333. name: "Mediterranean Sea",
  9334. height: math.unit(644457, "meters")
  9335. },
  9336. {
  9337. name: "World's Oceans",
  9338. height: math.unit(4567491, "meters")
  9339. },
  9340. ]
  9341. ))
  9342. characterMakers.push(() => makeCharacter(
  9343. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9344. {
  9345. front: {
  9346. height: math.unit(2.3, "meters"),
  9347. weight: math.unit(120, "kg"),
  9348. name: "Front",
  9349. image: {
  9350. source: "./media/characters/zelas/front.svg"
  9351. }
  9352. },
  9353. side: {
  9354. height: math.unit(2.3, "meters"),
  9355. weight: math.unit(120, "kg"),
  9356. name: "Side",
  9357. image: {
  9358. source: "./media/characters/zelas/side.svg"
  9359. }
  9360. },
  9361. back: {
  9362. height: math.unit(2.3, "meters"),
  9363. weight: math.unit(120, "kg"),
  9364. name: "Back",
  9365. image: {
  9366. source: "./media/characters/zelas/back.svg"
  9367. }
  9368. },
  9369. foot: {
  9370. height: math.unit(1.116, "feet"),
  9371. name: "Foot",
  9372. image: {
  9373. source: "./media/characters/zelas/foot.svg"
  9374. }
  9375. },
  9376. },
  9377. [
  9378. {
  9379. name: "Normal",
  9380. height: math.unit(2.3, "meters")
  9381. },
  9382. {
  9383. name: "Macro",
  9384. height: math.unit(30, "meters"),
  9385. default: true
  9386. },
  9387. ]
  9388. ))
  9389. characterMakers.push(() => makeCharacter(
  9390. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9391. {
  9392. front: {
  9393. height: math.unit(1, "inch"),
  9394. weight: math.unit(0.21, "grams"),
  9395. name: "Front",
  9396. image: {
  9397. source: "./media/characters/talbot/front.svg",
  9398. extra: 594 / 544
  9399. }
  9400. },
  9401. },
  9402. [
  9403. {
  9404. name: "Micro",
  9405. height: math.unit(1, "inch"),
  9406. default: true
  9407. },
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9412. {
  9413. front: {
  9414. height: math.unit(3 + 3 / 12, "feet"),
  9415. weight: math.unit(51.8, "lb"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/fliss/front.svg",
  9419. extra: 840 / 640
  9420. }
  9421. },
  9422. },
  9423. [
  9424. {
  9425. name: "Teeny Tiny",
  9426. height: math.unit(1, "mm")
  9427. },
  9428. {
  9429. name: "Small",
  9430. height: math.unit(1, "inch"),
  9431. default: true
  9432. },
  9433. {
  9434. name: "Standard Sylveon",
  9435. height: math.unit(3 + 3 / 12, "feet")
  9436. },
  9437. {
  9438. name: "Large Nuisance",
  9439. height: math.unit(33, "feet")
  9440. },
  9441. {
  9442. name: "City Filler",
  9443. height: math.unit(3000, "feet")
  9444. },
  9445. {
  9446. name: "New Horizon",
  9447. height: math.unit(6000, "miles")
  9448. },
  9449. ]
  9450. ))
  9451. characterMakers.push(() => makeCharacter(
  9452. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9453. {
  9454. front: {
  9455. height: math.unit(5, "cm"),
  9456. weight: math.unit(1.94, "g"),
  9457. name: "Front",
  9458. image: {
  9459. source: "./media/characters/fleta/front.svg",
  9460. extra: 835 / 803
  9461. }
  9462. },
  9463. back: {
  9464. height: math.unit(5, "cm"),
  9465. weight: math.unit(1.94, "g"),
  9466. name: "Back",
  9467. image: {
  9468. source: "./media/characters/fleta/back.svg",
  9469. extra: 835 / 803
  9470. }
  9471. },
  9472. },
  9473. [
  9474. {
  9475. name: "Micro",
  9476. height: math.unit(5, "cm"),
  9477. default: true
  9478. },
  9479. ]
  9480. ))
  9481. characterMakers.push(() => makeCharacter(
  9482. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9483. {
  9484. front: {
  9485. height: math.unit(6, "feet"),
  9486. weight: math.unit(225, "lb"),
  9487. name: "Front",
  9488. image: {
  9489. source: "./media/characters/dominic/front.svg",
  9490. extra: 1770 / 1620,
  9491. bottom: 0.025
  9492. }
  9493. },
  9494. back: {
  9495. height: math.unit(6, "feet"),
  9496. weight: math.unit(225, "lb"),
  9497. name: "Back",
  9498. image: {
  9499. source: "./media/characters/dominic/back.svg",
  9500. extra: 1745 / 1620,
  9501. bottom: 0.065
  9502. }
  9503. },
  9504. },
  9505. [
  9506. {
  9507. name: "Nano",
  9508. height: math.unit(0.1, "mm")
  9509. },
  9510. {
  9511. name: "Micro-",
  9512. height: math.unit(1, "mm")
  9513. },
  9514. {
  9515. name: "Micro",
  9516. height: math.unit(4, "inches")
  9517. },
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(6 + 4 / 12, "feet"),
  9521. default: true
  9522. },
  9523. {
  9524. name: "Macro",
  9525. height: math.unit(115, "feet")
  9526. },
  9527. {
  9528. name: "Macro+",
  9529. height: math.unit(955, "feet")
  9530. },
  9531. {
  9532. name: "Megamacro",
  9533. height: math.unit(8990, "feet")
  9534. },
  9535. {
  9536. name: "Gigmacro",
  9537. height: math.unit(9310, "miles")
  9538. },
  9539. {
  9540. name: "Teramacro",
  9541. height: math.unit(1567005010, "miles")
  9542. },
  9543. {
  9544. name: "Examacro",
  9545. height: math.unit(1425, "parsecs")
  9546. },
  9547. ]
  9548. ))
  9549. characterMakers.push(() => makeCharacter(
  9550. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9551. {
  9552. front: {
  9553. height: math.unit(400, "feet"),
  9554. weight: math.unit(44444444, "lb"),
  9555. name: "Front",
  9556. image: {
  9557. source: "./media/characters/major-colonel/front.svg"
  9558. }
  9559. },
  9560. back: {
  9561. height: math.unit(400, "feet"),
  9562. weight: math.unit(44444444, "lb"),
  9563. name: "Back",
  9564. image: {
  9565. source: "./media/characters/major-colonel/back.svg"
  9566. }
  9567. },
  9568. },
  9569. [
  9570. {
  9571. name: "Macro",
  9572. height: math.unit(400, "feet"),
  9573. default: true
  9574. },
  9575. ]
  9576. ))
  9577. characterMakers.push(() => makeCharacter(
  9578. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9579. {
  9580. catFront: {
  9581. height: math.unit(6, "feet"),
  9582. weight: math.unit(120, "lb"),
  9583. name: "Front (Cat Side)",
  9584. image: {
  9585. source: "./media/characters/axel-lycan/cat-front.svg",
  9586. extra: 430 / 402,
  9587. bottom: 43 / 472.35
  9588. }
  9589. },
  9590. catBack: {
  9591. height: math.unit(6, "feet"),
  9592. weight: math.unit(120, "lb"),
  9593. name: "Back (Cat Side)",
  9594. image: {
  9595. source: "./media/characters/axel-lycan/cat-back.svg",
  9596. extra: 447 / 419,
  9597. bottom: 23.3 / 469
  9598. }
  9599. },
  9600. wolfFront: {
  9601. height: math.unit(6, "feet"),
  9602. weight: math.unit(120, "lb"),
  9603. name: "Front (Wolf Side)",
  9604. image: {
  9605. source: "./media/characters/axel-lycan/wolf-front.svg",
  9606. extra: 485 / 456,
  9607. bottom: 19 / 504
  9608. }
  9609. },
  9610. wolfBack: {
  9611. height: math.unit(6, "feet"),
  9612. weight: math.unit(120, "lb"),
  9613. name: "Back (Wolf Side)",
  9614. image: {
  9615. source: "./media/characters/axel-lycan/wolf-back.svg",
  9616. extra: 475 / 438,
  9617. bottom: 39.2 / 514
  9618. }
  9619. },
  9620. },
  9621. [
  9622. {
  9623. name: "Macro",
  9624. height: math.unit(1, "km"),
  9625. default: true
  9626. },
  9627. ]
  9628. ))
  9629. characterMakers.push(() => makeCharacter(
  9630. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9631. {
  9632. front: {
  9633. height: math.unit(5 + 9 / 12, "feet"),
  9634. weight: math.unit(175, "lb"),
  9635. name: "Front",
  9636. image: {
  9637. source: "./media/characters/vanrel-hyena/front.svg",
  9638. extra: 1086 / 1010,
  9639. bottom: 0.04
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Normal",
  9646. height: math.unit(5 + 9 / 12, "feet"),
  9647. default: true
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9653. {
  9654. front: {
  9655. height: math.unit(6, "feet"),
  9656. weight: math.unit(103, "lb"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/abbott-absol/front.svg",
  9660. extra: 2010 / 1842
  9661. }
  9662. },
  9663. },
  9664. [
  9665. {
  9666. name: "Megamicro",
  9667. height: math.unit(0.1, "mm")
  9668. },
  9669. {
  9670. name: "Micro",
  9671. height: math.unit(1, "inch")
  9672. },
  9673. {
  9674. name: "Normal",
  9675. height: math.unit(6, "feet"),
  9676. default: true
  9677. },
  9678. ]
  9679. ))
  9680. characterMakers.push(() => makeCharacter(
  9681. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9682. {
  9683. front: {
  9684. height: math.unit(6, "feet"),
  9685. weight: math.unit(264, "lb"),
  9686. name: "Front",
  9687. image: {
  9688. source: "./media/characters/hector/front.svg",
  9689. extra: 2280 / 2130,
  9690. bottom: 0.07
  9691. }
  9692. },
  9693. },
  9694. [
  9695. {
  9696. name: "Normal",
  9697. height: math.unit(12.25, "foot"),
  9698. default: true
  9699. },
  9700. {
  9701. name: "Macro",
  9702. height: math.unit(160, "feet")
  9703. },
  9704. ]
  9705. ))
  9706. characterMakers.push(() => makeCharacter(
  9707. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9708. {
  9709. front: {
  9710. height: math.unit(6, "feet"),
  9711. weight: math.unit(150, "lb"),
  9712. name: "Front",
  9713. image: {
  9714. source: "./media/characters/sal/front.svg",
  9715. extra: 1846 / 1699,
  9716. bottom: 0.04
  9717. }
  9718. },
  9719. },
  9720. [
  9721. {
  9722. name: "Megamacro",
  9723. height: math.unit(10, "miles"),
  9724. default: true
  9725. },
  9726. ]
  9727. ))
  9728. characterMakers.push(() => makeCharacter(
  9729. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9730. {
  9731. front: {
  9732. height: math.unit(3, "meters"),
  9733. weight: math.unit(450, "kg"),
  9734. name: "front",
  9735. image: {
  9736. source: "./media/characters/ranger/front.svg",
  9737. extra: 2401 / 2243,
  9738. bottom: 0.05
  9739. }
  9740. },
  9741. },
  9742. [
  9743. {
  9744. name: "Normal",
  9745. height: math.unit(3, "meters"),
  9746. default: true
  9747. },
  9748. ]
  9749. ))
  9750. characterMakers.push(() => makeCharacter(
  9751. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9752. {
  9753. front: {
  9754. height: math.unit(14, "feet"),
  9755. weight: math.unit(800, "kg"),
  9756. name: "Front",
  9757. image: {
  9758. source: "./media/characters/theresa/front.svg",
  9759. extra: 3575 / 3346,
  9760. bottom: 0.03
  9761. }
  9762. },
  9763. },
  9764. [
  9765. {
  9766. name: "Normal",
  9767. height: math.unit(14, "feet"),
  9768. default: true
  9769. },
  9770. ]
  9771. ))
  9772. characterMakers.push(() => makeCharacter(
  9773. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9774. {
  9775. front: {
  9776. height: math.unit(6, "feet"),
  9777. weight: math.unit(3, "kg"),
  9778. name: "Front",
  9779. image: {
  9780. source: "./media/characters/ine/front.svg",
  9781. extra: 678 / 539,
  9782. bottom: 0.023
  9783. }
  9784. },
  9785. },
  9786. [
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(2.265, "feet"),
  9790. default: true
  9791. },
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9796. {
  9797. front: {
  9798. height: math.unit(5, "feet"),
  9799. weight: math.unit(30, "kg"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/vial/front.svg",
  9803. extra: 1365 / 1277,
  9804. bottom: 0.04
  9805. }
  9806. },
  9807. },
  9808. [
  9809. {
  9810. name: "Normal",
  9811. height: math.unit(5, "feet"),
  9812. default: true
  9813. },
  9814. ]
  9815. ))
  9816. characterMakers.push(() => makeCharacter(
  9817. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9818. {
  9819. side: {
  9820. height: math.unit(3.4, "meters"),
  9821. weight: math.unit(1000, "lb"),
  9822. name: "Side",
  9823. image: {
  9824. source: "./media/characters/rovoska/side.svg",
  9825. extra: 4403 / 1515
  9826. }
  9827. },
  9828. },
  9829. [
  9830. {
  9831. name: "Normal",
  9832. height: math.unit(3.4, "meters"),
  9833. default: true
  9834. },
  9835. ]
  9836. ))
  9837. characterMakers.push(() => makeCharacter(
  9838. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9839. {
  9840. front: {
  9841. height: math.unit(8, "feet"),
  9842. weight: math.unit(315, "lb"),
  9843. name: "Front",
  9844. image: {
  9845. source: "./media/characters/gunner-rotthbauer/front.svg"
  9846. }
  9847. },
  9848. back: {
  9849. height: math.unit(8, "feet"),
  9850. weight: math.unit(315, "lb"),
  9851. name: "Back",
  9852. image: {
  9853. source: "./media/characters/gunner-rotthbauer/back.svg"
  9854. }
  9855. },
  9856. },
  9857. [
  9858. {
  9859. name: "Micro",
  9860. height: math.unit(3.5, "inches")
  9861. },
  9862. {
  9863. name: "Normal",
  9864. height: math.unit(8, "feet"),
  9865. default: true
  9866. },
  9867. {
  9868. name: "Macro",
  9869. height: math.unit(250, "feet")
  9870. },
  9871. {
  9872. name: "Megamacro",
  9873. height: math.unit(1, "AU")
  9874. },
  9875. ]
  9876. ))
  9877. characterMakers.push(() => makeCharacter(
  9878. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9879. {
  9880. front: {
  9881. height: math.unit(5 + 5 / 12, "feet"),
  9882. weight: math.unit(140, "lb"),
  9883. name: "Front",
  9884. image: {
  9885. source: "./media/characters/allatia/front.svg",
  9886. extra: 1227 / 1180,
  9887. bottom: 0.027
  9888. }
  9889. },
  9890. },
  9891. [
  9892. {
  9893. name: "Normal",
  9894. height: math.unit(5 + 5 / 12, "feet")
  9895. },
  9896. {
  9897. name: "Macro",
  9898. height: math.unit(250, "feet"),
  9899. default: true
  9900. },
  9901. {
  9902. name: "Megamacro",
  9903. height: math.unit(8, "miles")
  9904. }
  9905. ]
  9906. ))
  9907. characterMakers.push(() => makeCharacter(
  9908. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9909. {
  9910. front: {
  9911. height: math.unit(6, "feet"),
  9912. weight: math.unit(120, "lb"),
  9913. name: "Front",
  9914. image: {
  9915. source: "./media/characters/tene/front.svg",
  9916. extra: 1728 / 1578,
  9917. bottom: 0.022
  9918. }
  9919. },
  9920. stomping: {
  9921. height: math.unit(2.025, "meters"),
  9922. weight: math.unit(120, "lb"),
  9923. name: "Stomping",
  9924. image: {
  9925. source: "./media/characters/tene/stomping.svg",
  9926. extra: 938 / 873,
  9927. bottom: 0.01
  9928. }
  9929. },
  9930. sitting: {
  9931. height: math.unit(1, "meter"),
  9932. weight: math.unit(120, "lb"),
  9933. name: "Sitting",
  9934. image: {
  9935. source: "./media/characters/tene/sitting.svg",
  9936. extra: 437 / 415,
  9937. bottom: 0.1
  9938. }
  9939. },
  9940. feral: {
  9941. height: math.unit(3.9, "feet"),
  9942. weight: math.unit(250, "lb"),
  9943. name: "Feral",
  9944. image: {
  9945. source: "./media/characters/tene/feral.svg",
  9946. extra: 717 / 458,
  9947. bottom: 0.179
  9948. }
  9949. },
  9950. },
  9951. [
  9952. {
  9953. name: "Normal",
  9954. height: math.unit(6, "feet")
  9955. },
  9956. {
  9957. name: "Macro",
  9958. height: math.unit(300, "feet"),
  9959. default: true
  9960. },
  9961. {
  9962. name: "Megamacro",
  9963. height: math.unit(5, "miles")
  9964. },
  9965. ]
  9966. ))
  9967. characterMakers.push(() => makeCharacter(
  9968. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9969. {
  9970. side: {
  9971. height: math.unit(6, "feet"),
  9972. name: "Side",
  9973. image: {
  9974. source: "./media/characters/evander/side.svg",
  9975. extra: 877 / 477
  9976. }
  9977. },
  9978. },
  9979. [
  9980. {
  9981. name: "Normal",
  9982. height: math.unit(0.83, "meters"),
  9983. default: true
  9984. },
  9985. ]
  9986. ))
  9987. characterMakers.push(() => makeCharacter(
  9988. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9989. {
  9990. front: {
  9991. height: math.unit(12, "feet"),
  9992. weight: math.unit(1000, "lb"),
  9993. name: "Front",
  9994. image: {
  9995. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9996. extra: 1762 / 1611
  9997. }
  9998. },
  9999. back: {
  10000. height: math.unit(12, "feet"),
  10001. weight: math.unit(1000, "lb"),
  10002. name: "Back",
  10003. image: {
  10004. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10005. extra: 1762 / 1611
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Normal",
  10012. height: math.unit(12, "feet"),
  10013. default: true
  10014. },
  10015. {
  10016. name: "Kaiju",
  10017. height: math.unit(150, "feet")
  10018. },
  10019. ]
  10020. ))
  10021. characterMakers.push(() => makeCharacter(
  10022. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10023. {
  10024. front: {
  10025. height: math.unit(6, "feet"),
  10026. weight: math.unit(150, "lb"),
  10027. name: "Front",
  10028. image: {
  10029. source: "./media/characters/zero-alurus/front.svg"
  10030. }
  10031. },
  10032. back: {
  10033. height: math.unit(6, "feet"),
  10034. weight: math.unit(150, "lb"),
  10035. name: "Back",
  10036. image: {
  10037. source: "./media/characters/zero-alurus/back.svg"
  10038. }
  10039. },
  10040. },
  10041. [
  10042. {
  10043. name: "Normal",
  10044. height: math.unit(5 + 10 / 12, "feet")
  10045. },
  10046. {
  10047. name: "Macro",
  10048. height: math.unit(60, "feet"),
  10049. default: true
  10050. },
  10051. {
  10052. name: "Macro+",
  10053. height: math.unit(450, "feet")
  10054. },
  10055. ]
  10056. ))
  10057. characterMakers.push(() => makeCharacter(
  10058. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10059. {
  10060. front: {
  10061. height: math.unit(6, "feet"),
  10062. weight: math.unit(200, "lb"),
  10063. name: "Front",
  10064. image: {
  10065. source: "./media/characters/mega-shi/front.svg",
  10066. extra: 1279 / 1250,
  10067. bottom: 0.02
  10068. }
  10069. },
  10070. back: {
  10071. height: math.unit(6, "feet"),
  10072. weight: math.unit(200, "lb"),
  10073. name: "Back",
  10074. image: {
  10075. source: "./media/characters/mega-shi/back.svg",
  10076. extra: 1279 / 1250,
  10077. bottom: 0.02
  10078. }
  10079. },
  10080. },
  10081. [
  10082. {
  10083. name: "Micro",
  10084. height: math.unit(16 + 6 / 12, "feet")
  10085. },
  10086. {
  10087. name: "Third Dimension",
  10088. height: math.unit(40, "meters")
  10089. },
  10090. {
  10091. name: "Normal",
  10092. height: math.unit(660, "feet"),
  10093. default: true
  10094. },
  10095. {
  10096. name: "Megamacro",
  10097. height: math.unit(10, "miles")
  10098. },
  10099. {
  10100. name: "Planetary Launch",
  10101. height: math.unit(500, "miles")
  10102. },
  10103. {
  10104. name: "Interstellar",
  10105. height: math.unit(1e9, "miles")
  10106. },
  10107. {
  10108. name: "Leaving the Universe",
  10109. height: math.unit(1, "gigaparsec")
  10110. },
  10111. {
  10112. name: "Travelling Universes",
  10113. height: math.unit(30e15, "parsecs")
  10114. },
  10115. ]
  10116. ))
  10117. characterMakers.push(() => makeCharacter(
  10118. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10119. {
  10120. front: {
  10121. height: math.unit(5 + 4/12, "feet"),
  10122. weight: math.unit(120, "lb"),
  10123. name: "Front",
  10124. image: {
  10125. source: "./media/characters/odyssey/front.svg",
  10126. extra: 1747/1571,
  10127. bottom: 47/1794
  10128. }
  10129. },
  10130. side: {
  10131. height: math.unit(5.1, "feet"),
  10132. weight: math.unit(120, "lb"),
  10133. name: "Side",
  10134. image: {
  10135. source: "./media/characters/odyssey/side.svg",
  10136. extra: 1847/1619,
  10137. bottom: 47/1894
  10138. }
  10139. },
  10140. lounging: {
  10141. height: math.unit(1.464, "feet"),
  10142. weight: math.unit(120, "lb"),
  10143. name: "Lounging",
  10144. image: {
  10145. source: "./media/characters/odyssey/lounging.svg",
  10146. extra: 1235/837,
  10147. bottom: 551/1786
  10148. }
  10149. },
  10150. },
  10151. [
  10152. {
  10153. name: "Normal",
  10154. height: math.unit(5 + 4 / 12, "feet")
  10155. },
  10156. {
  10157. name: "Macro",
  10158. height: math.unit(1, "km")
  10159. },
  10160. {
  10161. name: "Megamacro",
  10162. height: math.unit(3000, "km")
  10163. },
  10164. {
  10165. name: "Gigamacro",
  10166. height: math.unit(1, "AU"),
  10167. default: true
  10168. },
  10169. {
  10170. name: "Omniversal",
  10171. height: math.unit(100e14, "lightyears")
  10172. },
  10173. ]
  10174. ))
  10175. characterMakers.push(() => makeCharacter(
  10176. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10177. {
  10178. front: {
  10179. height: math.unit(6, "feet"),
  10180. weight: math.unit(300, "lb"),
  10181. name: "Front",
  10182. image: {
  10183. source: "./media/characters/mekuto/front.svg",
  10184. extra: 921 / 832,
  10185. bottom: 0.03
  10186. }
  10187. },
  10188. hand: {
  10189. height: math.unit(6 / 10.24, "feet"),
  10190. name: "Hand",
  10191. image: {
  10192. source: "./media/characters/mekuto/hand.svg"
  10193. }
  10194. },
  10195. foot: {
  10196. height: math.unit(6 / 5.05, "feet"),
  10197. name: "Foot",
  10198. image: {
  10199. source: "./media/characters/mekuto/foot.svg"
  10200. }
  10201. },
  10202. },
  10203. [
  10204. {
  10205. name: "Minimicro",
  10206. height: math.unit(0.2, "inches")
  10207. },
  10208. {
  10209. name: "Micro",
  10210. height: math.unit(1.5, "inches")
  10211. },
  10212. {
  10213. name: "Normal",
  10214. height: math.unit(5 + 11 / 12, "feet"),
  10215. default: true
  10216. },
  10217. {
  10218. name: "Minimacro",
  10219. height: math.unit(17 + 9 / 12, "feet")
  10220. },
  10221. {
  10222. name: "Macro",
  10223. height: math.unit(177.5, "feet")
  10224. },
  10225. {
  10226. name: "Megamacro",
  10227. height: math.unit(152, "miles")
  10228. },
  10229. ]
  10230. ))
  10231. characterMakers.push(() => makeCharacter(
  10232. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10233. {
  10234. front: {
  10235. height: math.unit(6.5, "inches"),
  10236. weight: math.unit(13, "oz"),
  10237. name: "Front",
  10238. image: {
  10239. source: "./media/characters/dafydd-tomos/front.svg",
  10240. extra: 2990 / 2603,
  10241. bottom: 0.03
  10242. }
  10243. },
  10244. },
  10245. [
  10246. {
  10247. name: "Micro",
  10248. height: math.unit(6.5, "inches"),
  10249. default: true
  10250. },
  10251. ]
  10252. ))
  10253. characterMakers.push(() => makeCharacter(
  10254. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10255. {
  10256. front: {
  10257. height: math.unit(6, "feet"),
  10258. weight: math.unit(150, "lb"),
  10259. name: "Front",
  10260. image: {
  10261. source: "./media/characters/splinter/front.svg",
  10262. extra: 2990 / 2882,
  10263. bottom: 0.04
  10264. }
  10265. },
  10266. back: {
  10267. height: math.unit(6, "feet"),
  10268. weight: math.unit(150, "lb"),
  10269. name: "Back",
  10270. image: {
  10271. source: "./media/characters/splinter/back.svg",
  10272. extra: 2990 / 2882,
  10273. bottom: 0.04
  10274. }
  10275. },
  10276. },
  10277. [
  10278. {
  10279. name: "Normal",
  10280. height: math.unit(6, "feet")
  10281. },
  10282. {
  10283. name: "Macro",
  10284. height: math.unit(230, "meters"),
  10285. default: true
  10286. },
  10287. ]
  10288. ))
  10289. characterMakers.push(() => makeCharacter(
  10290. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10291. {
  10292. front: {
  10293. height: math.unit(4 + 10 / 12, "feet"),
  10294. weight: math.unit(480, "lb"),
  10295. name: "Front",
  10296. image: {
  10297. source: "./media/characters/snow-gabumon/front.svg",
  10298. extra: 1140 / 963,
  10299. bottom: 0.058
  10300. }
  10301. },
  10302. back: {
  10303. height: math.unit(4 + 10 / 12, "feet"),
  10304. weight: math.unit(480, "lb"),
  10305. name: "Back",
  10306. image: {
  10307. source: "./media/characters/snow-gabumon/back.svg",
  10308. extra: 1115 / 962,
  10309. bottom: 0.041
  10310. }
  10311. },
  10312. frontUndresed: {
  10313. height: math.unit(4 + 10 / 12, "feet"),
  10314. weight: math.unit(480, "lb"),
  10315. name: "Front (Undressed)",
  10316. image: {
  10317. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10318. extra: 1061 / 960,
  10319. bottom: 0.045
  10320. }
  10321. },
  10322. },
  10323. [
  10324. {
  10325. name: "Micro",
  10326. height: math.unit(1, "inch")
  10327. },
  10328. {
  10329. name: "Normal",
  10330. height: math.unit(4 + 10 / 12, "feet"),
  10331. default: true
  10332. },
  10333. {
  10334. name: "Macro",
  10335. height: math.unit(200, "feet")
  10336. },
  10337. {
  10338. name: "Megamacro",
  10339. height: math.unit(120, "miles")
  10340. },
  10341. {
  10342. name: "Gigamacro",
  10343. height: math.unit(9800, "miles")
  10344. },
  10345. ]
  10346. ))
  10347. characterMakers.push(() => makeCharacter(
  10348. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10349. {
  10350. front: {
  10351. height: math.unit(1.7, "meters"),
  10352. weight: math.unit(140, "lb"),
  10353. name: "Front",
  10354. image: {
  10355. source: "./media/characters/moody/front.svg",
  10356. extra: 3226 / 3007,
  10357. bottom: 0.087
  10358. }
  10359. },
  10360. },
  10361. [
  10362. {
  10363. name: "Micro",
  10364. height: math.unit(1, "mm")
  10365. },
  10366. {
  10367. name: "Normal",
  10368. height: math.unit(1.7, "meters"),
  10369. default: true
  10370. },
  10371. {
  10372. name: "Macro",
  10373. height: math.unit(80, "meters")
  10374. },
  10375. {
  10376. name: "Macro+",
  10377. height: math.unit(500, "meters")
  10378. },
  10379. ]
  10380. ))
  10381. characterMakers.push(() => makeCharacter(
  10382. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10383. {
  10384. front: {
  10385. height: math.unit(6, "feet"),
  10386. weight: math.unit(150, "lb"),
  10387. name: "Front",
  10388. image: {
  10389. source: "./media/characters/zyas/front.svg",
  10390. extra: 1180 / 1120,
  10391. bottom: 0.045
  10392. }
  10393. },
  10394. },
  10395. [
  10396. {
  10397. name: "Normal",
  10398. height: math.unit(10, "feet"),
  10399. default: true
  10400. },
  10401. {
  10402. name: "Macro",
  10403. height: math.unit(500, "feet")
  10404. },
  10405. {
  10406. name: "Megamacro",
  10407. height: math.unit(5, "miles")
  10408. },
  10409. {
  10410. name: "Teramacro",
  10411. height: math.unit(150000, "miles")
  10412. },
  10413. ]
  10414. ))
  10415. characterMakers.push(() => makeCharacter(
  10416. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10417. {
  10418. front: {
  10419. height: math.unit(6, "feet"),
  10420. weight: math.unit(150, "lb"),
  10421. name: "Front",
  10422. image: {
  10423. source: "./media/characters/cuon/front.svg",
  10424. extra: 1390 / 1320,
  10425. bottom: 0.008
  10426. }
  10427. },
  10428. },
  10429. [
  10430. {
  10431. name: "Micro",
  10432. height: math.unit(3, "inches")
  10433. },
  10434. {
  10435. name: "Normal",
  10436. height: math.unit(18 + 9 / 12, "feet"),
  10437. default: true
  10438. },
  10439. {
  10440. name: "Macro",
  10441. height: math.unit(360, "feet")
  10442. },
  10443. {
  10444. name: "Megamacro",
  10445. height: math.unit(360, "miles")
  10446. },
  10447. ]
  10448. ))
  10449. characterMakers.push(() => makeCharacter(
  10450. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10451. {
  10452. front: {
  10453. height: math.unit(2.4, "meters"),
  10454. weight: math.unit(70, "kg"),
  10455. name: "Front",
  10456. image: {
  10457. source: "./media/characters/nyanuxk/front.svg",
  10458. extra: 1172 / 1084,
  10459. bottom: 0.065
  10460. }
  10461. },
  10462. side: {
  10463. height: math.unit(2.4, "meters"),
  10464. weight: math.unit(70, "kg"),
  10465. name: "Side",
  10466. image: {
  10467. source: "./media/characters/nyanuxk/side.svg",
  10468. extra: 1190 / 1132,
  10469. bottom: 0.007
  10470. }
  10471. },
  10472. back: {
  10473. height: math.unit(2.4, "meters"),
  10474. weight: math.unit(70, "kg"),
  10475. name: "Back",
  10476. image: {
  10477. source: "./media/characters/nyanuxk/back.svg",
  10478. extra: 1200 / 1141,
  10479. bottom: 0.015
  10480. }
  10481. },
  10482. foot: {
  10483. height: math.unit(0.52, "meters"),
  10484. name: "Foot",
  10485. image: {
  10486. source: "./media/characters/nyanuxk/foot.svg"
  10487. }
  10488. },
  10489. },
  10490. [
  10491. {
  10492. name: "Micro",
  10493. height: math.unit(2, "cm")
  10494. },
  10495. {
  10496. name: "Normal",
  10497. height: math.unit(2.4, "meters"),
  10498. default: true
  10499. },
  10500. {
  10501. name: "Smaller Macro",
  10502. height: math.unit(120, "meters")
  10503. },
  10504. {
  10505. name: "Bigger Macro",
  10506. height: math.unit(1.2, "km")
  10507. },
  10508. {
  10509. name: "Megamacro",
  10510. height: math.unit(15, "kilometers")
  10511. },
  10512. {
  10513. name: "Gigamacro",
  10514. height: math.unit(2000, "km")
  10515. },
  10516. {
  10517. name: "Teramacro",
  10518. height: math.unit(500000, "km")
  10519. },
  10520. ]
  10521. ))
  10522. characterMakers.push(() => makeCharacter(
  10523. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10524. {
  10525. side: {
  10526. height: math.unit(6, "feet"),
  10527. name: "Side",
  10528. image: {
  10529. source: "./media/characters/ailbhe/side.svg",
  10530. extra: 757 / 464,
  10531. bottom: 0.041
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Normal",
  10538. height: math.unit(1.07, "meters"),
  10539. default: true
  10540. },
  10541. ]
  10542. ))
  10543. characterMakers.push(() => makeCharacter(
  10544. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10545. {
  10546. front: {
  10547. height: math.unit(6, "feet"),
  10548. weight: math.unit(120, "kg"),
  10549. name: "Front",
  10550. image: {
  10551. source: "./media/characters/zevulfius/front.svg",
  10552. extra: 965 / 903
  10553. }
  10554. },
  10555. side: {
  10556. height: math.unit(6, "feet"),
  10557. weight: math.unit(120, "kg"),
  10558. name: "Side",
  10559. image: {
  10560. source: "./media/characters/zevulfius/side.svg",
  10561. extra: 939 / 900
  10562. }
  10563. },
  10564. back: {
  10565. height: math.unit(6, "feet"),
  10566. weight: math.unit(120, "kg"),
  10567. name: "Back",
  10568. image: {
  10569. source: "./media/characters/zevulfius/back.svg",
  10570. extra: 918 / 854,
  10571. bottom: 0.005
  10572. }
  10573. },
  10574. foot: {
  10575. height: math.unit(6 / 3.72, "feet"),
  10576. name: "Foot",
  10577. image: {
  10578. source: "./media/characters/zevulfius/foot.svg"
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Macro",
  10585. height: math.unit(750, "meters")
  10586. },
  10587. {
  10588. name: "Megamacro",
  10589. height: math.unit(20, "km"),
  10590. default: true
  10591. },
  10592. {
  10593. name: "Gigamacro",
  10594. height: math.unit(2000, "km")
  10595. },
  10596. {
  10597. name: "Teramacro",
  10598. height: math.unit(250000, "km")
  10599. },
  10600. ]
  10601. ))
  10602. characterMakers.push(() => makeCharacter(
  10603. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10604. {
  10605. front: {
  10606. height: math.unit(100, "feet"),
  10607. weight: math.unit(350, "kg"),
  10608. name: "Front",
  10609. image: {
  10610. source: "./media/characters/rikes/front.svg",
  10611. extra: 1565 / 1483,
  10612. bottom: 0.017
  10613. }
  10614. },
  10615. },
  10616. [
  10617. {
  10618. name: "Macro",
  10619. height: math.unit(100, "feet"),
  10620. default: true
  10621. },
  10622. ]
  10623. ))
  10624. characterMakers.push(() => makeCharacter(
  10625. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10626. {
  10627. front: {
  10628. height: math.unit(8, "feet"),
  10629. weight: math.unit(356, "lb"),
  10630. name: "Front",
  10631. image: {
  10632. source: "./media/characters/adam-silver-mane/front.svg",
  10633. extra: 1036/937,
  10634. bottom: 63/1099
  10635. }
  10636. },
  10637. side: {
  10638. height: math.unit(8, "feet"),
  10639. weight: math.unit(356, "lb"),
  10640. name: "Side",
  10641. image: {
  10642. source: "./media/characters/adam-silver-mane/side.svg",
  10643. extra: 997/901,
  10644. bottom: 59/1056
  10645. }
  10646. },
  10647. frontNsfw: {
  10648. height: math.unit(8, "feet"),
  10649. weight: math.unit(356, "lb"),
  10650. name: "Front (NSFW)",
  10651. image: {
  10652. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10653. extra: 1036/937,
  10654. bottom: 63/1099
  10655. }
  10656. },
  10657. sideNsfw: {
  10658. height: math.unit(8, "feet"),
  10659. weight: math.unit(356, "lb"),
  10660. name: "Side (NSFW)",
  10661. image: {
  10662. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10663. extra: 997/901,
  10664. bottom: 59/1056
  10665. }
  10666. },
  10667. dick: {
  10668. height: math.unit(2.1, "feet"),
  10669. name: "Dick",
  10670. image: {
  10671. source: "./media/characters/adam-silver-mane/dick.svg"
  10672. }
  10673. },
  10674. taur: {
  10675. height: math.unit(16, "feet"),
  10676. weight: math.unit(1500, "kg"),
  10677. name: "Taur",
  10678. image: {
  10679. source: "./media/characters/adam-silver-mane/taur.svg",
  10680. extra: 1713 / 1571,
  10681. bottom: 0.01
  10682. }
  10683. },
  10684. },
  10685. [
  10686. {
  10687. name: "Normal",
  10688. height: math.unit(8, "feet")
  10689. },
  10690. {
  10691. name: "Minimacro",
  10692. height: math.unit(80, "feet")
  10693. },
  10694. {
  10695. name: "MDA",
  10696. height: math.unit(80, "meters")
  10697. },
  10698. {
  10699. name: "Macro",
  10700. height: math.unit(800, "feet"),
  10701. default: true
  10702. },
  10703. {
  10704. name: "Megamacro",
  10705. height: math.unit(8000, "feet")
  10706. },
  10707. {
  10708. name: "Gigamacro",
  10709. height: math.unit(800, "miles")
  10710. },
  10711. {
  10712. name: "Teramacro",
  10713. height: math.unit(80000, "miles")
  10714. },
  10715. {
  10716. name: "Celestial",
  10717. height: math.unit(8e6, "miles")
  10718. },
  10719. {
  10720. name: "Star Dragon",
  10721. height: math.unit(800000, "parsecs")
  10722. },
  10723. {
  10724. name: "Godly",
  10725. height: math.unit(800, "teraparsecs")
  10726. },
  10727. ]
  10728. ))
  10729. characterMakers.push(() => makeCharacter(
  10730. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10731. {
  10732. front: {
  10733. height: math.unit(6, "feet"),
  10734. weight: math.unit(150, "lb"),
  10735. name: "Front",
  10736. image: {
  10737. source: "./media/characters/ky'owin/front.svg",
  10738. extra: 3888 / 3068,
  10739. bottom: 0.015
  10740. }
  10741. },
  10742. },
  10743. [
  10744. {
  10745. name: "Normal",
  10746. height: math.unit(6 + 8 / 12, "feet")
  10747. },
  10748. {
  10749. name: "Large",
  10750. height: math.unit(68, "feet")
  10751. },
  10752. {
  10753. name: "Macro",
  10754. height: math.unit(132, "feet")
  10755. },
  10756. {
  10757. name: "Macro+",
  10758. height: math.unit(340, "feet")
  10759. },
  10760. {
  10761. name: "Macro++",
  10762. height: math.unit(680, "feet"),
  10763. default: true
  10764. },
  10765. {
  10766. name: "Megamacro",
  10767. height: math.unit(1, "mile")
  10768. },
  10769. {
  10770. name: "Megamacro+",
  10771. height: math.unit(10, "miles")
  10772. },
  10773. ]
  10774. ))
  10775. characterMakers.push(() => makeCharacter(
  10776. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10777. {
  10778. front: {
  10779. height: math.unit(4, "feet"),
  10780. weight: math.unit(50, "lb"),
  10781. name: "Front",
  10782. image: {
  10783. source: "./media/characters/mal/front.svg",
  10784. extra: 785 / 724,
  10785. bottom: 0.07
  10786. }
  10787. },
  10788. },
  10789. [
  10790. {
  10791. name: "Micro",
  10792. height: math.unit(4, "inches")
  10793. },
  10794. {
  10795. name: "Normal",
  10796. height: math.unit(4, "feet"),
  10797. default: true
  10798. },
  10799. {
  10800. name: "Macro",
  10801. height: math.unit(200, "feet")
  10802. },
  10803. ]
  10804. ))
  10805. characterMakers.push(() => makeCharacter(
  10806. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10807. {
  10808. front: {
  10809. height: math.unit(6, "feet"),
  10810. weight: math.unit(150, "lb"),
  10811. name: "Front",
  10812. image: {
  10813. source: "./media/characters/jordan-deware/front.svg",
  10814. extra: 1191 / 1012
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Nano",
  10821. height: math.unit(0.01, "mm")
  10822. },
  10823. {
  10824. name: "Minimicro",
  10825. height: math.unit(1, "mm")
  10826. },
  10827. {
  10828. name: "Micro",
  10829. height: math.unit(0.5, "inches")
  10830. },
  10831. {
  10832. name: "Normal",
  10833. height: math.unit(4, "feet"),
  10834. default: true
  10835. },
  10836. {
  10837. name: "Minimacro",
  10838. height: math.unit(40, "meters")
  10839. },
  10840. {
  10841. name: "Small Macro",
  10842. height: math.unit(400, "meters")
  10843. },
  10844. {
  10845. name: "Macro",
  10846. height: math.unit(4, "miles")
  10847. },
  10848. {
  10849. name: "Megamacro",
  10850. height: math.unit(40, "miles")
  10851. },
  10852. {
  10853. name: "Megamacro+",
  10854. height: math.unit(400, "miles")
  10855. },
  10856. {
  10857. name: "Gigamacro",
  10858. height: math.unit(400000, "miles")
  10859. },
  10860. ]
  10861. ))
  10862. characterMakers.push(() => makeCharacter(
  10863. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10864. {
  10865. side: {
  10866. height: math.unit(6, "feet"),
  10867. weight: math.unit(150, "lb"),
  10868. name: "Side",
  10869. image: {
  10870. source: "./media/characters/kimiko/side.svg",
  10871. extra: 600 / 358
  10872. }
  10873. },
  10874. },
  10875. [
  10876. {
  10877. name: "Normal",
  10878. height: math.unit(15, "feet"),
  10879. default: true
  10880. },
  10881. {
  10882. name: "Macro",
  10883. height: math.unit(220, "feet")
  10884. },
  10885. {
  10886. name: "Macro+",
  10887. height: math.unit(1450, "feet")
  10888. },
  10889. {
  10890. name: "Megamacro",
  10891. height: math.unit(11500, "feet")
  10892. },
  10893. {
  10894. name: "Gigamacro",
  10895. height: math.unit(9500, "miles")
  10896. },
  10897. {
  10898. name: "Teramacro",
  10899. height: math.unit(2208005005, "miles")
  10900. },
  10901. {
  10902. name: "Examacro",
  10903. height: math.unit(2750, "parsecs")
  10904. },
  10905. {
  10906. name: "Zettamacro",
  10907. height: math.unit(101500, "parsecs")
  10908. },
  10909. ]
  10910. ))
  10911. characterMakers.push(() => makeCharacter(
  10912. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10913. {
  10914. front: {
  10915. height: math.unit(6, "feet"),
  10916. weight: math.unit(70, "kg"),
  10917. name: "Front",
  10918. image: {
  10919. source: "./media/characters/andrew-sleepy/front.svg"
  10920. }
  10921. },
  10922. side: {
  10923. height: math.unit(6, "feet"),
  10924. weight: math.unit(70, "kg"),
  10925. name: "Side",
  10926. image: {
  10927. source: "./media/characters/andrew-sleepy/side.svg"
  10928. }
  10929. },
  10930. },
  10931. [
  10932. {
  10933. name: "Micro",
  10934. height: math.unit(1, "mm"),
  10935. default: true
  10936. },
  10937. ]
  10938. ))
  10939. characterMakers.push(() => makeCharacter(
  10940. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10941. {
  10942. front: {
  10943. height: math.unit(6, "feet"),
  10944. weight: math.unit(150, "lb"),
  10945. name: "Front",
  10946. image: {
  10947. source: "./media/characters/judio/front.svg",
  10948. extra: 1258 / 1110
  10949. }
  10950. },
  10951. },
  10952. [
  10953. {
  10954. name: "Normal",
  10955. height: math.unit(5 + 6 / 12, "feet")
  10956. },
  10957. {
  10958. name: "Macro",
  10959. height: math.unit(1000, "feet"),
  10960. default: true
  10961. },
  10962. {
  10963. name: "Megamacro",
  10964. height: math.unit(10, "miles")
  10965. },
  10966. ]
  10967. ))
  10968. characterMakers.push(() => makeCharacter(
  10969. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10970. {
  10971. front: {
  10972. height: math.unit(6, "feet"),
  10973. weight: math.unit(68, "kg"),
  10974. name: "Front",
  10975. image: {
  10976. source: "./media/characters/nomaxice/front.svg",
  10977. extra: 1498 / 1073,
  10978. bottom: 0.075
  10979. }
  10980. },
  10981. foot: {
  10982. height: math.unit(1.1, "feet"),
  10983. name: "Foot",
  10984. image: {
  10985. source: "./media/characters/nomaxice/foot.svg"
  10986. }
  10987. },
  10988. },
  10989. [
  10990. {
  10991. name: "Micro",
  10992. height: math.unit(8, "cm")
  10993. },
  10994. {
  10995. name: "Norm",
  10996. height: math.unit(1.82, "m")
  10997. },
  10998. {
  10999. name: "Norm+",
  11000. height: math.unit(8.8, "feet")
  11001. },
  11002. {
  11003. name: "Big",
  11004. height: math.unit(8, "meters"),
  11005. default: true
  11006. },
  11007. {
  11008. name: "Macro",
  11009. height: math.unit(18, "meters")
  11010. },
  11011. {
  11012. name: "Macro+",
  11013. height: math.unit(88, "meters")
  11014. },
  11015. ]
  11016. ))
  11017. characterMakers.push(() => makeCharacter(
  11018. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11019. {
  11020. front: {
  11021. height: math.unit(12, "feet"),
  11022. weight: math.unit(1.5, "tons"),
  11023. name: "Front",
  11024. image: {
  11025. source: "./media/characters/dydros/front.svg",
  11026. extra: 863 / 800,
  11027. bottom: 0.015
  11028. }
  11029. },
  11030. back: {
  11031. height: math.unit(12, "feet"),
  11032. weight: math.unit(1.5, "tons"),
  11033. name: "Back",
  11034. image: {
  11035. source: "./media/characters/dydros/back.svg",
  11036. extra: 900 / 843,
  11037. bottom: 0.005
  11038. }
  11039. },
  11040. },
  11041. [
  11042. {
  11043. name: "Normal",
  11044. height: math.unit(12, "feet"),
  11045. default: true
  11046. },
  11047. ]
  11048. ))
  11049. characterMakers.push(() => makeCharacter(
  11050. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11051. {
  11052. front: {
  11053. height: math.unit(6, "feet"),
  11054. weight: math.unit(100, "kg"),
  11055. name: "Front",
  11056. image: {
  11057. source: "./media/characters/riggi/front.svg",
  11058. extra: 5787 / 5303
  11059. }
  11060. },
  11061. hyper: {
  11062. height: math.unit(6 * 5 / 3, "feet"),
  11063. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11064. name: "Hyper",
  11065. image: {
  11066. source: "./media/characters/riggi/hyper.svg",
  11067. extra: 3595 / 3485
  11068. }
  11069. },
  11070. },
  11071. [
  11072. {
  11073. name: "Small Macro",
  11074. height: math.unit(50, "feet")
  11075. },
  11076. {
  11077. name: "Default",
  11078. height: math.unit(200, "feet"),
  11079. default: true
  11080. },
  11081. {
  11082. name: "Loom",
  11083. height: math.unit(10000, "feet")
  11084. },
  11085. {
  11086. name: "Cruising Altitude",
  11087. height: math.unit(30000, "feet")
  11088. },
  11089. {
  11090. name: "Megamacro",
  11091. height: math.unit(100, "miles")
  11092. },
  11093. {
  11094. name: "Continent Sized",
  11095. height: math.unit(2800, "miles")
  11096. },
  11097. {
  11098. name: "Earth Sized",
  11099. height: math.unit(8000, "miles")
  11100. },
  11101. ]
  11102. ))
  11103. characterMakers.push(() => makeCharacter(
  11104. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11105. {
  11106. front: {
  11107. height: math.unit(6, "feet"),
  11108. weight: math.unit(250, "lb"),
  11109. name: "Front",
  11110. image: {
  11111. source: "./media/characters/alexi/front.svg",
  11112. extra: 3483 / 3291,
  11113. bottom: 0.04
  11114. }
  11115. },
  11116. back: {
  11117. height: math.unit(6, "feet"),
  11118. weight: math.unit(250, "lb"),
  11119. name: "Back",
  11120. image: {
  11121. source: "./media/characters/alexi/back.svg",
  11122. extra: 3533 / 3356,
  11123. bottom: 0.021
  11124. }
  11125. },
  11126. frontTransforming: {
  11127. height: math.unit(8.58, "feet"),
  11128. weight: math.unit(1300, "lb"),
  11129. name: "Transforming",
  11130. image: {
  11131. source: "./media/characters/alexi/front-transforming.svg",
  11132. extra: 437 / 409,
  11133. bottom: 19 / 458.66
  11134. }
  11135. },
  11136. frontTransformed: {
  11137. height: math.unit(12.5, "feet"),
  11138. weight: math.unit(4000, "lb"),
  11139. name: "Transformed",
  11140. image: {
  11141. source: "./media/characters/alexi/front-transformed.svg",
  11142. extra: 639 / 614,
  11143. bottom: 30.55 / 671
  11144. }
  11145. },
  11146. },
  11147. [
  11148. {
  11149. name: "Normal",
  11150. height: math.unit(14, "feet"),
  11151. default: true
  11152. },
  11153. {
  11154. name: "Minimacro",
  11155. height: math.unit(30, "meters")
  11156. },
  11157. {
  11158. name: "Macro",
  11159. height: math.unit(500, "meters")
  11160. },
  11161. {
  11162. name: "Megamacro",
  11163. height: math.unit(9000, "km")
  11164. },
  11165. {
  11166. name: "Teramacro",
  11167. height: math.unit(384000, "km")
  11168. },
  11169. ]
  11170. ))
  11171. characterMakers.push(() => makeCharacter(
  11172. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11173. {
  11174. front: {
  11175. height: math.unit(6, "feet"),
  11176. weight: math.unit(150, "lb"),
  11177. name: "Front",
  11178. image: {
  11179. source: "./media/characters/kayroo/front.svg",
  11180. extra: 1153 / 1038,
  11181. bottom: 0.06
  11182. }
  11183. },
  11184. foot: {
  11185. height: math.unit(6, "feet"),
  11186. weight: math.unit(150, "lb"),
  11187. name: "Foot",
  11188. image: {
  11189. source: "./media/characters/kayroo/foot.svg"
  11190. }
  11191. },
  11192. },
  11193. [
  11194. {
  11195. name: "Normal",
  11196. height: math.unit(8, "feet"),
  11197. default: true
  11198. },
  11199. {
  11200. name: "Minimacro",
  11201. height: math.unit(250, "feet")
  11202. },
  11203. {
  11204. name: "Macro",
  11205. height: math.unit(2800, "feet")
  11206. },
  11207. {
  11208. name: "Megamacro",
  11209. height: math.unit(5200, "feet")
  11210. },
  11211. {
  11212. name: "Gigamacro",
  11213. height: math.unit(27000, "feet")
  11214. },
  11215. {
  11216. name: "Omega",
  11217. height: math.unit(45000, "feet")
  11218. },
  11219. ]
  11220. ))
  11221. characterMakers.push(() => makeCharacter(
  11222. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11223. {
  11224. front: {
  11225. height: math.unit(18, "feet"),
  11226. weight: math.unit(5800, "lb"),
  11227. name: "Front",
  11228. image: {
  11229. source: "./media/characters/rhys/front.svg",
  11230. extra: 3386 / 3090,
  11231. bottom: 0.07
  11232. }
  11233. },
  11234. },
  11235. [
  11236. {
  11237. name: "Normal",
  11238. height: math.unit(18, "feet"),
  11239. default: true
  11240. },
  11241. {
  11242. name: "Working Size",
  11243. height: math.unit(200, "feet")
  11244. },
  11245. {
  11246. name: "Demolition Size",
  11247. height: math.unit(2000, "feet")
  11248. },
  11249. {
  11250. name: "Maximum Licensed Size",
  11251. height: math.unit(5, "miles")
  11252. },
  11253. {
  11254. name: "Maximum Observed Size",
  11255. height: math.unit(10, "yottameters")
  11256. },
  11257. ]
  11258. ))
  11259. characterMakers.push(() => makeCharacter(
  11260. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11261. {
  11262. front: {
  11263. height: math.unit(6, "feet"),
  11264. weight: math.unit(250, "lb"),
  11265. name: "Front",
  11266. image: {
  11267. source: "./media/characters/toto/front.svg",
  11268. extra: 527 / 479,
  11269. bottom: 0.05
  11270. }
  11271. },
  11272. },
  11273. [
  11274. {
  11275. name: "Micro",
  11276. height: math.unit(3, "feet")
  11277. },
  11278. {
  11279. name: "Normal",
  11280. height: math.unit(10, "feet")
  11281. },
  11282. {
  11283. name: "Macro",
  11284. height: math.unit(150, "feet"),
  11285. default: true
  11286. },
  11287. {
  11288. name: "Megamacro",
  11289. height: math.unit(1200, "feet")
  11290. },
  11291. ]
  11292. ))
  11293. characterMakers.push(() => makeCharacter(
  11294. { name: "King", species: ["lion"], tags: ["anthro"] },
  11295. {
  11296. back: {
  11297. height: math.unit(6, "feet"),
  11298. weight: math.unit(150, "lb"),
  11299. name: "Back",
  11300. image: {
  11301. source: "./media/characters/king/back.svg"
  11302. }
  11303. },
  11304. },
  11305. [
  11306. {
  11307. name: "Micro",
  11308. height: math.unit(2, "inches")
  11309. },
  11310. {
  11311. name: "Normal",
  11312. height: math.unit(8, "feet")
  11313. },
  11314. {
  11315. name: "Macro",
  11316. height: math.unit(200, "feet"),
  11317. default: true
  11318. },
  11319. {
  11320. name: "Megamacro",
  11321. height: math.unit(50, "miles")
  11322. },
  11323. ]
  11324. ))
  11325. characterMakers.push(() => makeCharacter(
  11326. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11327. {
  11328. front: {
  11329. height: math.unit(11, "feet"),
  11330. weight: math.unit(1400, "lb"),
  11331. name: "Front",
  11332. image: {
  11333. source: "./media/characters/cordite/front.svg",
  11334. extra: 1919/1827,
  11335. bottom: 40/1959
  11336. }
  11337. },
  11338. side: {
  11339. height: math.unit(11, "feet"),
  11340. weight: math.unit(1400, "lb"),
  11341. name: "Side",
  11342. image: {
  11343. source: "./media/characters/cordite/side.svg",
  11344. extra: 1908/1793,
  11345. bottom: 38/1946
  11346. }
  11347. },
  11348. back: {
  11349. height: math.unit(11, "feet"),
  11350. weight: math.unit(1400, "lb"),
  11351. name: "Back",
  11352. image: {
  11353. source: "./media/characters/cordite/back.svg",
  11354. extra: 1938/1837,
  11355. bottom: 10/1948
  11356. }
  11357. },
  11358. feral: {
  11359. height: math.unit(2, "feet"),
  11360. weight: math.unit(90, "lb"),
  11361. name: "Feral",
  11362. image: {
  11363. source: "./media/characters/cordite/feral.svg",
  11364. extra: 1260 / 755,
  11365. bottom: 0.05
  11366. }
  11367. },
  11368. },
  11369. [
  11370. {
  11371. name: "Normal",
  11372. height: math.unit(11, "feet"),
  11373. default: true
  11374. },
  11375. ]
  11376. ))
  11377. characterMakers.push(() => makeCharacter(
  11378. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11379. {
  11380. front: {
  11381. height: math.unit(6, "feet"),
  11382. weight: math.unit(150, "lb"),
  11383. name: "Front",
  11384. image: {
  11385. source: "./media/characters/pianostrong/front.svg",
  11386. extra: 6577 / 6254,
  11387. bottom: 0.02
  11388. }
  11389. },
  11390. side: {
  11391. height: math.unit(6, "feet"),
  11392. weight: math.unit(150, "lb"),
  11393. name: "Side",
  11394. image: {
  11395. source: "./media/characters/pianostrong/side.svg",
  11396. extra: 6106 / 5730
  11397. }
  11398. },
  11399. back: {
  11400. height: math.unit(6, "feet"),
  11401. weight: math.unit(150, "lb"),
  11402. name: "Back",
  11403. image: {
  11404. source: "./media/characters/pianostrong/back.svg",
  11405. extra: 6085 / 5733,
  11406. bottom: 0.01
  11407. }
  11408. },
  11409. },
  11410. [
  11411. {
  11412. name: "Macro",
  11413. height: math.unit(100, "feet")
  11414. },
  11415. {
  11416. name: "Macro+",
  11417. height: math.unit(300, "feet"),
  11418. default: true
  11419. },
  11420. {
  11421. name: "Macro++",
  11422. height: math.unit(1000, "feet")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11428. {
  11429. front: {
  11430. height: math.unit(6, "feet"),
  11431. weight: math.unit(150, "lb"),
  11432. name: "Front",
  11433. image: {
  11434. source: "./media/characters/kona/front.svg",
  11435. extra: 2960 / 2629,
  11436. bottom: 0.005
  11437. }
  11438. },
  11439. },
  11440. [
  11441. {
  11442. name: "Normal",
  11443. height: math.unit(11 + 8 / 12, "feet")
  11444. },
  11445. {
  11446. name: "Macro",
  11447. height: math.unit(850, "feet"),
  11448. default: true
  11449. },
  11450. {
  11451. name: "Macro+",
  11452. height: math.unit(1.5, "km"),
  11453. default: true
  11454. },
  11455. {
  11456. name: "Megamacro",
  11457. height: math.unit(80, "miles")
  11458. },
  11459. {
  11460. name: "Gigamacro",
  11461. height: math.unit(3500, "miles")
  11462. },
  11463. ]
  11464. ))
  11465. characterMakers.push(() => makeCharacter(
  11466. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11467. {
  11468. side: {
  11469. height: math.unit(1.9, "meters"),
  11470. weight: math.unit(326, "kg"),
  11471. name: "Side",
  11472. image: {
  11473. source: "./media/characters/levi/side.svg",
  11474. extra: 1704 / 1334,
  11475. bottom: 0.02
  11476. }
  11477. },
  11478. },
  11479. [
  11480. {
  11481. name: "Normal",
  11482. height: math.unit(1.9, "meters"),
  11483. default: true
  11484. },
  11485. {
  11486. name: "Macro",
  11487. height: math.unit(20, "meters")
  11488. },
  11489. {
  11490. name: "Macro+",
  11491. height: math.unit(200, "meters")
  11492. },
  11493. {
  11494. name: "Megamacro",
  11495. height: math.unit(2, "km")
  11496. },
  11497. {
  11498. name: "Megamacro+",
  11499. height: math.unit(20, "km")
  11500. },
  11501. {
  11502. name: "Gigamacro",
  11503. height: math.unit(2500, "km")
  11504. },
  11505. {
  11506. name: "Gigamacro+",
  11507. height: math.unit(120000, "km")
  11508. },
  11509. {
  11510. name: "Teramacro",
  11511. height: math.unit(7.77e6, "km")
  11512. },
  11513. ]
  11514. ))
  11515. characterMakers.push(() => makeCharacter(
  11516. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11517. {
  11518. front: {
  11519. height: math.unit(6 + 4/12, "feet"),
  11520. weight: math.unit(190, "lb"),
  11521. name: "Front",
  11522. image: {
  11523. source: "./media/characters/bmc/front.svg",
  11524. extra: 1626/1472,
  11525. bottom: 79/1705
  11526. }
  11527. },
  11528. back: {
  11529. height: math.unit(6 + 4/12, "feet"),
  11530. weight: math.unit(190, "lb"),
  11531. name: "Back",
  11532. image: {
  11533. source: "./media/characters/bmc/back.svg",
  11534. extra: 1640/1479,
  11535. bottom: 45/1685
  11536. }
  11537. },
  11538. frontArmor: {
  11539. height: math.unit(6 + 4/12, "feet"),
  11540. weight: math.unit(190, "lb"),
  11541. name: "Front-armor",
  11542. image: {
  11543. source: "./media/characters/bmc/front-armor.svg",
  11544. extra: 1538/1468,
  11545. bottom: 79/1617
  11546. }
  11547. },
  11548. },
  11549. [
  11550. {
  11551. name: "Human-sized",
  11552. height: math.unit(6 + 4 / 12, "feet")
  11553. },
  11554. {
  11555. name: "Interactive Size",
  11556. height: math.unit(25, "feet")
  11557. },
  11558. {
  11559. name: "Small",
  11560. height: math.unit(250, "feet")
  11561. },
  11562. {
  11563. name: "Normal",
  11564. height: math.unit(1250, "feet"),
  11565. default: true
  11566. },
  11567. {
  11568. name: "Good Day",
  11569. height: math.unit(88, "miles")
  11570. },
  11571. {
  11572. name: "Largest Measured Size",
  11573. height: math.unit(105.960, "galaxies")
  11574. },
  11575. ]
  11576. ))
  11577. characterMakers.push(() => makeCharacter(
  11578. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11579. {
  11580. front: {
  11581. height: math.unit(20, "feet"),
  11582. weight: math.unit(2016, "kg"),
  11583. name: "Front",
  11584. image: {
  11585. source: "./media/characters/sven-the-kaiju/front.svg",
  11586. extra: 1277/1250,
  11587. bottom: 35/1312
  11588. }
  11589. },
  11590. mouth: {
  11591. height: math.unit(1.85, "feet"),
  11592. name: "Mouth",
  11593. image: {
  11594. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11595. }
  11596. },
  11597. },
  11598. [
  11599. {
  11600. name: "Fairy",
  11601. height: math.unit(6, "inches")
  11602. },
  11603. {
  11604. name: "Normal",
  11605. height: math.unit(20, "feet"),
  11606. default: true
  11607. },
  11608. {
  11609. name: "Rampage",
  11610. height: math.unit(200, "feet")
  11611. },
  11612. {
  11613. name: "Archfey Forest Guardian",
  11614. height: math.unit(1, "mile")
  11615. },
  11616. ]
  11617. ))
  11618. characterMakers.push(() => makeCharacter(
  11619. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11620. {
  11621. front: {
  11622. height: math.unit(4, "meters"),
  11623. weight: math.unit(2, "tons"),
  11624. name: "Front",
  11625. image: {
  11626. source: "./media/characters/marik/front.svg",
  11627. extra: 1057 / 1003,
  11628. bottom: 0.08
  11629. }
  11630. },
  11631. },
  11632. [
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(4, "meters"),
  11636. default: true
  11637. },
  11638. {
  11639. name: "Macro",
  11640. height: math.unit(20, "meters")
  11641. },
  11642. {
  11643. name: "Megamacro",
  11644. height: math.unit(50, "km")
  11645. },
  11646. {
  11647. name: "Gigamacro",
  11648. height: math.unit(100, "km")
  11649. },
  11650. {
  11651. name: "Alpha Macro",
  11652. height: math.unit(7.88e7, "yottameters")
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11658. {
  11659. front: {
  11660. height: math.unit(6, "feet"),
  11661. weight: math.unit(110, "lb"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/mel/front.svg",
  11665. extra: 736 / 617,
  11666. bottom: 0.017
  11667. }
  11668. },
  11669. },
  11670. [
  11671. {
  11672. name: "Pico",
  11673. height: math.unit(3, "pm")
  11674. },
  11675. {
  11676. name: "Nano",
  11677. height: math.unit(3, "nm")
  11678. },
  11679. {
  11680. name: "Micro",
  11681. height: math.unit(0.3, "mm"),
  11682. default: true
  11683. },
  11684. {
  11685. name: "Micro+",
  11686. height: math.unit(3, "mm")
  11687. },
  11688. {
  11689. name: "Normal",
  11690. height: math.unit(5 + 10.5 / 12, "feet")
  11691. },
  11692. ]
  11693. ))
  11694. characterMakers.push(() => makeCharacter(
  11695. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11696. {
  11697. kaiju: {
  11698. height: math.unit(1.75, "meters"),
  11699. weight: math.unit(55, "kg"),
  11700. name: "Kaiju",
  11701. image: {
  11702. source: "./media/characters/lykonous/kaiju.svg",
  11703. extra: 1055 / 946,
  11704. bottom: 0.135
  11705. }
  11706. },
  11707. },
  11708. [
  11709. {
  11710. name: "Normal",
  11711. height: math.unit(2.5, "meters"),
  11712. default: true
  11713. },
  11714. {
  11715. name: "Kaiju Dragon",
  11716. height: math.unit(60, "meters")
  11717. },
  11718. {
  11719. name: "Mega Kaiju",
  11720. height: math.unit(120, "km")
  11721. },
  11722. {
  11723. name: "Giga Kaiju",
  11724. height: math.unit(200, "megameters")
  11725. },
  11726. {
  11727. name: "Terra Kaiju",
  11728. height: math.unit(400, "gigameters")
  11729. },
  11730. {
  11731. name: "Kaiju Dragon God",
  11732. height: math.unit(13000, "exaparsecs")
  11733. },
  11734. ]
  11735. ))
  11736. characterMakers.push(() => makeCharacter(
  11737. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11738. {
  11739. front: {
  11740. height: math.unit(6, "feet"),
  11741. weight: math.unit(150, "lb"),
  11742. name: "Front",
  11743. image: {
  11744. source: "./media/characters/blü/front.svg",
  11745. extra: 1883 / 1564,
  11746. bottom: 0.031
  11747. }
  11748. },
  11749. },
  11750. [
  11751. {
  11752. name: "Normal",
  11753. height: math.unit(13, "feet"),
  11754. default: true
  11755. },
  11756. {
  11757. name: "Big Boi",
  11758. height: math.unit(150, "meters")
  11759. },
  11760. {
  11761. name: "Mini Stomper",
  11762. height: math.unit(300, "meters")
  11763. },
  11764. {
  11765. name: "Macro",
  11766. height: math.unit(1000, "meters")
  11767. },
  11768. {
  11769. name: "Megamacro",
  11770. height: math.unit(11000, "meters")
  11771. },
  11772. {
  11773. name: "Gigamacro",
  11774. height: math.unit(11000, "km")
  11775. },
  11776. {
  11777. name: "Teramacro",
  11778. height: math.unit(420000, "km")
  11779. },
  11780. {
  11781. name: "Examacro",
  11782. height: math.unit(120, "parsecs")
  11783. },
  11784. {
  11785. name: "God Tho",
  11786. height: math.unit(98000000000, "parsecs")
  11787. },
  11788. ]
  11789. ))
  11790. characterMakers.push(() => makeCharacter(
  11791. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11792. {
  11793. taurFront: {
  11794. height: math.unit(6, "feet"),
  11795. weight: math.unit(200, "lb"),
  11796. name: "Taur (Front)",
  11797. image: {
  11798. source: "./media/characters/scales/taur-front.svg",
  11799. extra: 1,
  11800. bottom: 0.05
  11801. }
  11802. },
  11803. taurBack: {
  11804. height: math.unit(6, "feet"),
  11805. weight: math.unit(200, "lb"),
  11806. name: "Taur (Back)",
  11807. image: {
  11808. source: "./media/characters/scales/taur-back.svg",
  11809. extra: 1,
  11810. bottom: 0.08
  11811. }
  11812. },
  11813. anthro: {
  11814. height: math.unit(6 * 7 / 12, "feet"),
  11815. weight: math.unit(100, "lb"),
  11816. name: "Anthro",
  11817. image: {
  11818. source: "./media/characters/scales/anthro.svg",
  11819. extra: 1,
  11820. bottom: 0.06
  11821. }
  11822. },
  11823. },
  11824. [
  11825. {
  11826. name: "Normal",
  11827. height: math.unit(12, "feet"),
  11828. default: true
  11829. },
  11830. ]
  11831. ))
  11832. characterMakers.push(() => makeCharacter(
  11833. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11834. {
  11835. front: {
  11836. height: math.unit(6, "feet"),
  11837. weight: math.unit(150, "lb"),
  11838. name: "Front",
  11839. image: {
  11840. source: "./media/characters/koragos/front.svg",
  11841. extra: 841 / 794,
  11842. bottom: 0.035
  11843. }
  11844. },
  11845. back: {
  11846. height: math.unit(6, "feet"),
  11847. weight: math.unit(150, "lb"),
  11848. name: "Back",
  11849. image: {
  11850. source: "./media/characters/koragos/back.svg",
  11851. extra: 841 / 810,
  11852. bottom: 0.022
  11853. }
  11854. },
  11855. },
  11856. [
  11857. {
  11858. name: "Normal",
  11859. height: math.unit(6 + 11 / 12, "feet"),
  11860. default: true
  11861. },
  11862. {
  11863. name: "Macro",
  11864. height: math.unit(490, "feet")
  11865. },
  11866. {
  11867. name: "Megamacro",
  11868. height: math.unit(10, "miles")
  11869. },
  11870. {
  11871. name: "Gigamacro",
  11872. height: math.unit(50, "miles")
  11873. },
  11874. ]
  11875. ))
  11876. characterMakers.push(() => makeCharacter(
  11877. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11878. {
  11879. front: {
  11880. height: math.unit(6, "feet"),
  11881. weight: math.unit(250, "lb"),
  11882. name: "Front",
  11883. image: {
  11884. source: "./media/characters/xylrem/front.svg",
  11885. extra: 3323 / 3050,
  11886. bottom: 0.065
  11887. }
  11888. },
  11889. },
  11890. [
  11891. {
  11892. name: "Micro",
  11893. height: math.unit(4, "feet")
  11894. },
  11895. {
  11896. name: "Normal",
  11897. height: math.unit(16, "feet"),
  11898. default: true
  11899. },
  11900. {
  11901. name: "Macro",
  11902. height: math.unit(2720, "feet")
  11903. },
  11904. {
  11905. name: "Megamacro",
  11906. height: math.unit(25000, "miles")
  11907. },
  11908. ]
  11909. ))
  11910. characterMakers.push(() => makeCharacter(
  11911. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11912. {
  11913. front: {
  11914. height: math.unit(8, "feet"),
  11915. weight: math.unit(250, "kg"),
  11916. name: "Front",
  11917. image: {
  11918. source: "./media/characters/ikideru/front.svg",
  11919. extra: 930 / 870,
  11920. bottom: 0.087
  11921. }
  11922. },
  11923. back: {
  11924. height: math.unit(8, "feet"),
  11925. weight: math.unit(250, "kg"),
  11926. name: "Back",
  11927. image: {
  11928. source: "./media/characters/ikideru/back.svg",
  11929. extra: 919 / 852,
  11930. bottom: 0.055
  11931. }
  11932. },
  11933. },
  11934. [
  11935. {
  11936. name: "Rare",
  11937. height: math.unit(8, "feet"),
  11938. default: true
  11939. },
  11940. {
  11941. name: "Playful Loom",
  11942. height: math.unit(80, "feet")
  11943. },
  11944. {
  11945. name: "City Leaner",
  11946. height: math.unit(230, "feet")
  11947. },
  11948. {
  11949. name: "Megamacro",
  11950. height: math.unit(2500, "feet")
  11951. },
  11952. {
  11953. name: "Gigamacro",
  11954. height: math.unit(26400, "feet")
  11955. },
  11956. {
  11957. name: "Tectonic Shifter",
  11958. height: math.unit(1.7, "megameters")
  11959. },
  11960. {
  11961. name: "Planet Carer",
  11962. height: math.unit(21, "megameters")
  11963. },
  11964. {
  11965. name: "God",
  11966. height: math.unit(11157.22, "parsecs")
  11967. },
  11968. ]
  11969. ))
  11970. characterMakers.push(() => makeCharacter(
  11971. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11972. {
  11973. front: {
  11974. height: math.unit(6, "feet"),
  11975. weight: math.unit(120, "lb"),
  11976. name: "Front",
  11977. image: {
  11978. source: "./media/characters/neo/front.svg"
  11979. }
  11980. },
  11981. },
  11982. [
  11983. {
  11984. name: "Micro",
  11985. height: math.unit(2, "inches"),
  11986. default: true
  11987. },
  11988. {
  11989. name: "Human Size",
  11990. height: math.unit(5 + 8 / 12, "feet")
  11991. },
  11992. ]
  11993. ))
  11994. characterMakers.push(() => makeCharacter(
  11995. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11996. {
  11997. front: {
  11998. height: math.unit(13 + 10 / 12, "feet"),
  11999. weight: math.unit(5320, "lb"),
  12000. name: "Front",
  12001. image: {
  12002. source: "./media/characters/chauncey-chantz/front.svg",
  12003. extra: 1587 / 1435,
  12004. bottom: 0.02
  12005. }
  12006. },
  12007. },
  12008. [
  12009. {
  12010. name: "Normal",
  12011. height: math.unit(13 + 10 / 12, "feet"),
  12012. default: true
  12013. },
  12014. {
  12015. name: "Macro",
  12016. height: math.unit(45, "feet")
  12017. },
  12018. {
  12019. name: "Megamacro",
  12020. height: math.unit(250, "miles")
  12021. },
  12022. {
  12023. name: "Planetary",
  12024. height: math.unit(10000, "miles")
  12025. },
  12026. {
  12027. name: "Galactic",
  12028. height: math.unit(40000, "parsecs")
  12029. },
  12030. {
  12031. name: "Universal",
  12032. height: math.unit(1, "yottameter")
  12033. },
  12034. ]
  12035. ))
  12036. characterMakers.push(() => makeCharacter(
  12037. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12038. {
  12039. front: {
  12040. height: math.unit(6, "feet"),
  12041. weight: math.unit(150, "lb"),
  12042. name: "Front",
  12043. image: {
  12044. source: "./media/characters/epifox/front.svg",
  12045. extra: 1,
  12046. bottom: 0.075
  12047. }
  12048. },
  12049. },
  12050. [
  12051. {
  12052. name: "Micro",
  12053. height: math.unit(6, "inches")
  12054. },
  12055. {
  12056. name: "Normal",
  12057. height: math.unit(12, "feet"),
  12058. default: true
  12059. },
  12060. {
  12061. name: "Macro",
  12062. height: math.unit(3810, "feet")
  12063. },
  12064. {
  12065. name: "Megamacro",
  12066. height: math.unit(500, "miles")
  12067. },
  12068. ]
  12069. ))
  12070. characterMakers.push(() => makeCharacter(
  12071. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12072. {
  12073. front: {
  12074. height: math.unit(1.8796, "m"),
  12075. weight: math.unit(230, "lb"),
  12076. name: "Front",
  12077. image: {
  12078. source: "./media/characters/colin-t/front.svg",
  12079. extra: 1272 / 1193,
  12080. bottom: 0.07
  12081. }
  12082. },
  12083. },
  12084. [
  12085. {
  12086. name: "Micro",
  12087. height: math.unit(0.571, "meters")
  12088. },
  12089. {
  12090. name: "Normal",
  12091. height: math.unit(1.8796, "meters"),
  12092. default: true
  12093. },
  12094. {
  12095. name: "Tall",
  12096. height: math.unit(4, "meters")
  12097. },
  12098. {
  12099. name: "Macro",
  12100. height: math.unit(67.241, "meters")
  12101. },
  12102. {
  12103. name: "Megamacro",
  12104. height: math.unit(371.856, "meters")
  12105. },
  12106. {
  12107. name: "Planetary",
  12108. height: math.unit(12631.5689, "km")
  12109. },
  12110. ]
  12111. ))
  12112. characterMakers.push(() => makeCharacter(
  12113. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12114. {
  12115. front: {
  12116. height: math.unit(1.85, "meters"),
  12117. weight: math.unit(80, "kg"),
  12118. name: "Front",
  12119. image: {
  12120. source: "./media/characters/matvei/front.svg",
  12121. extra: 614 / 594,
  12122. bottom: 0.01
  12123. }
  12124. },
  12125. },
  12126. [
  12127. {
  12128. name: "Normal",
  12129. height: math.unit(1.85, "meters"),
  12130. default: true
  12131. },
  12132. ]
  12133. ))
  12134. characterMakers.push(() => makeCharacter(
  12135. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12136. {
  12137. front: {
  12138. height: math.unit(5 + 9 / 12, "feet"),
  12139. weight: math.unit(70, "lb"),
  12140. name: "Front",
  12141. image: {
  12142. source: "./media/characters/quincy/front.svg",
  12143. extra: 3041 / 2751
  12144. }
  12145. },
  12146. back: {
  12147. height: math.unit(5 + 9 / 12, "feet"),
  12148. weight: math.unit(70, "lb"),
  12149. name: "Back",
  12150. image: {
  12151. source: "./media/characters/quincy/back.svg",
  12152. extra: 3041 / 2751
  12153. }
  12154. },
  12155. flying: {
  12156. height: math.unit(5 + 4 / 12, "feet"),
  12157. weight: math.unit(70, "lb"),
  12158. name: "Flying",
  12159. image: {
  12160. source: "./media/characters/quincy/flying.svg",
  12161. extra: 1044 / 930
  12162. }
  12163. },
  12164. },
  12165. [
  12166. {
  12167. name: "Micro",
  12168. height: math.unit(3, "cm")
  12169. },
  12170. {
  12171. name: "Normal",
  12172. height: math.unit(5 + 9 / 12, "feet")
  12173. },
  12174. {
  12175. name: "Macro",
  12176. height: math.unit(200, "meters"),
  12177. default: true
  12178. },
  12179. {
  12180. name: "Megamacro",
  12181. height: math.unit(1000, "meters")
  12182. },
  12183. ]
  12184. ))
  12185. characterMakers.push(() => makeCharacter(
  12186. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12187. {
  12188. front: {
  12189. height: math.unit(3 + 11/12, "feet"),
  12190. weight: math.unit(50, "lb"),
  12191. name: "Front",
  12192. image: {
  12193. source: "./media/characters/vanrel/front.svg",
  12194. extra: 1104/949,
  12195. bottom: 52/1156
  12196. }
  12197. },
  12198. back: {
  12199. height: math.unit(3 + 11/12, "feet"),
  12200. weight: math.unit(50, "lb"),
  12201. name: "Back",
  12202. image: {
  12203. source: "./media/characters/vanrel/back.svg",
  12204. extra: 1119/976,
  12205. bottom: 37/1156
  12206. }
  12207. },
  12208. tome: {
  12209. height: math.unit(1.35, "feet"),
  12210. weight: math.unit(10, "lb"),
  12211. name: "Vanrel's Tome",
  12212. rename: true,
  12213. image: {
  12214. source: "./media/characters/vanrel/tome.svg"
  12215. }
  12216. },
  12217. beans: {
  12218. height: math.unit(0.89, "feet"),
  12219. name: "Beans",
  12220. image: {
  12221. source: "./media/characters/vanrel/beans.svg"
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Normal",
  12228. height: math.unit(3 + 11/12, "feet"),
  12229. default: true
  12230. },
  12231. ]
  12232. ))
  12233. characterMakers.push(() => makeCharacter(
  12234. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12235. {
  12236. front: {
  12237. height: math.unit(7 + 5 / 12, "feet"),
  12238. name: "Front",
  12239. image: {
  12240. source: "./media/characters/kuiper-vanrel/front.svg",
  12241. extra: 1219/1169,
  12242. bottom: 69/1288
  12243. }
  12244. },
  12245. back: {
  12246. height: math.unit(7 + 5 / 12, "feet"),
  12247. name: "Back",
  12248. image: {
  12249. source: "./media/characters/kuiper-vanrel/back.svg",
  12250. extra: 1236/1193,
  12251. bottom: 27/1263
  12252. }
  12253. },
  12254. foot: {
  12255. height: math.unit(0.55, "meters"),
  12256. name: "Foot",
  12257. image: {
  12258. source: "./media/characters/kuiper-vanrel/foot.svg",
  12259. }
  12260. },
  12261. battle: {
  12262. height: math.unit(6.824, "feet"),
  12263. name: "Battle",
  12264. image: {
  12265. source: "./media/characters/kuiper-vanrel/battle.svg",
  12266. extra: 1466 / 1327,
  12267. bottom: 29 / 1492.5
  12268. }
  12269. },
  12270. meerkui: {
  12271. height: math.unit(18, "inches"),
  12272. name: "Meerkui",
  12273. image: {
  12274. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12275. extra: 1354/1289,
  12276. bottom: 69/1423
  12277. }
  12278. },
  12279. },
  12280. [
  12281. {
  12282. name: "Normal",
  12283. height: math.unit(7 + 5 / 12, "feet"),
  12284. default: true
  12285. },
  12286. ]
  12287. ))
  12288. characterMakers.push(() => makeCharacter(
  12289. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12290. {
  12291. front: {
  12292. height: math.unit(8 + 5 / 12, "feet"),
  12293. name: "Front",
  12294. image: {
  12295. source: "./media/characters/keset-vanrel/front.svg",
  12296. extra: 1231/1148,
  12297. bottom: 82/1313
  12298. }
  12299. },
  12300. back: {
  12301. height: math.unit(8 + 5 / 12, "feet"),
  12302. name: "Back",
  12303. image: {
  12304. source: "./media/characters/keset-vanrel/back.svg",
  12305. extra: 1240/1174,
  12306. bottom: 33/1273
  12307. }
  12308. },
  12309. hand: {
  12310. height: math.unit(0.6, "meters"),
  12311. name: "Hand",
  12312. image: {
  12313. source: "./media/characters/keset-vanrel/hand.svg"
  12314. }
  12315. },
  12316. foot: {
  12317. height: math.unit(0.94978, "meters"),
  12318. name: "Foot",
  12319. image: {
  12320. source: "./media/characters/keset-vanrel/foot.svg"
  12321. }
  12322. },
  12323. battle: {
  12324. height: math.unit(7.408, "feet"),
  12325. name: "Battle",
  12326. image: {
  12327. source: "./media/characters/keset-vanrel/battle.svg",
  12328. extra: 1890 / 1386,
  12329. bottom: 73.28 / 1970
  12330. }
  12331. },
  12332. },
  12333. [
  12334. {
  12335. name: "Normal",
  12336. height: math.unit(8 + 5 / 12, "feet"),
  12337. default: true
  12338. },
  12339. ]
  12340. ))
  12341. characterMakers.push(() => makeCharacter(
  12342. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12343. {
  12344. front: {
  12345. height: math.unit(6, "feet"),
  12346. weight: math.unit(150, "lb"),
  12347. name: "Front",
  12348. image: {
  12349. source: "./media/characters/neos/front.svg",
  12350. extra: 1696 / 992,
  12351. bottom: 0.14
  12352. }
  12353. },
  12354. },
  12355. [
  12356. {
  12357. name: "Normal",
  12358. height: math.unit(54, "cm"),
  12359. default: true
  12360. },
  12361. {
  12362. name: "Macro",
  12363. height: math.unit(100, "m")
  12364. },
  12365. {
  12366. name: "Megamacro",
  12367. height: math.unit(10, "km")
  12368. },
  12369. {
  12370. name: "Megamacro+",
  12371. height: math.unit(100, "km")
  12372. },
  12373. {
  12374. name: "Gigamacro",
  12375. height: math.unit(100, "Mm")
  12376. },
  12377. {
  12378. name: "Teramacro",
  12379. height: math.unit(100, "Gm")
  12380. },
  12381. {
  12382. name: "Examacro",
  12383. height: math.unit(100, "Em")
  12384. },
  12385. {
  12386. name: "Godly",
  12387. height: math.unit(10000, "Ym")
  12388. },
  12389. {
  12390. name: "Beyond Godly",
  12391. height: math.unit(25, "multiverses")
  12392. },
  12393. ]
  12394. ))
  12395. characterMakers.push(() => makeCharacter(
  12396. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12397. {
  12398. feminine: {
  12399. height: math.unit(5, "feet"),
  12400. weight: math.unit(100, "lb"),
  12401. name: "Feminine",
  12402. image: {
  12403. source: "./media/characters/sammy-mouse/feminine.svg",
  12404. extra: 2526 / 2425,
  12405. bottom: 0.123
  12406. }
  12407. },
  12408. masculine: {
  12409. height: math.unit(5, "feet"),
  12410. weight: math.unit(100, "lb"),
  12411. name: "Masculine",
  12412. image: {
  12413. source: "./media/characters/sammy-mouse/masculine.svg",
  12414. extra: 2526 / 2425,
  12415. bottom: 0.123
  12416. }
  12417. },
  12418. },
  12419. [
  12420. {
  12421. name: "Micro",
  12422. height: math.unit(5, "inches")
  12423. },
  12424. {
  12425. name: "Normal",
  12426. height: math.unit(5, "feet"),
  12427. default: true
  12428. },
  12429. {
  12430. name: "Macro",
  12431. height: math.unit(60, "feet")
  12432. },
  12433. ]
  12434. ))
  12435. characterMakers.push(() => makeCharacter(
  12436. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12437. {
  12438. front: {
  12439. height: math.unit(4, "feet"),
  12440. weight: math.unit(50, "lb"),
  12441. name: "Front",
  12442. image: {
  12443. source: "./media/characters/kole/front.svg",
  12444. extra: 1423 / 1303,
  12445. bottom: 0.025
  12446. }
  12447. },
  12448. back: {
  12449. height: math.unit(4, "feet"),
  12450. weight: math.unit(50, "lb"),
  12451. name: "Back",
  12452. image: {
  12453. source: "./media/characters/kole/back.svg",
  12454. extra: 1426 / 1280,
  12455. bottom: 0.02
  12456. }
  12457. },
  12458. },
  12459. [
  12460. {
  12461. name: "Normal",
  12462. height: math.unit(4, "feet"),
  12463. default: true
  12464. },
  12465. ]
  12466. ))
  12467. characterMakers.push(() => makeCharacter(
  12468. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12469. {
  12470. front: {
  12471. height: math.unit(2.5, "feet"),
  12472. weight: math.unit(32, "lb"),
  12473. name: "Front",
  12474. image: {
  12475. source: "./media/characters/rufran/front.svg",
  12476. extra: 1313/885,
  12477. bottom: 94/1407
  12478. }
  12479. },
  12480. side: {
  12481. height: math.unit(2.5, "feet"),
  12482. weight: math.unit(32, "lb"),
  12483. name: "Side",
  12484. image: {
  12485. source: "./media/characters/rufran/side.svg",
  12486. extra: 1109/852,
  12487. bottom: 118/1227
  12488. }
  12489. },
  12490. back: {
  12491. height: math.unit(2.5, "feet"),
  12492. weight: math.unit(32, "lb"),
  12493. name: "Back",
  12494. image: {
  12495. source: "./media/characters/rufran/back.svg",
  12496. extra: 1280/878,
  12497. bottom: 131/1411
  12498. }
  12499. },
  12500. mouth: {
  12501. height: math.unit(1.13, "feet"),
  12502. name: "Mouth",
  12503. image: {
  12504. source: "./media/characters/rufran/mouth.svg"
  12505. }
  12506. },
  12507. foot: {
  12508. height: math.unit(1.33, "feet"),
  12509. name: "Foot",
  12510. image: {
  12511. source: "./media/characters/rufran/foot.svg"
  12512. }
  12513. },
  12514. koboldFront: {
  12515. height: math.unit(2 + 6 / 12, "feet"),
  12516. weight: math.unit(20, "lb"),
  12517. name: "Front (Kobold)",
  12518. image: {
  12519. source: "./media/characters/rufran/kobold-front.svg",
  12520. extra: 2041 / 1839,
  12521. bottom: 0.055
  12522. }
  12523. },
  12524. koboldBack: {
  12525. height: math.unit(2 + 6 / 12, "feet"),
  12526. weight: math.unit(20, "lb"),
  12527. name: "Back (Kobold)",
  12528. image: {
  12529. source: "./media/characters/rufran/kobold-back.svg",
  12530. extra: 2054 / 1839,
  12531. bottom: 0.01
  12532. }
  12533. },
  12534. koboldHand: {
  12535. height: math.unit(0.2166, "meters"),
  12536. name: "Hand (Kobold)",
  12537. image: {
  12538. source: "./media/characters/rufran/kobold-hand.svg"
  12539. }
  12540. },
  12541. koboldFoot: {
  12542. height: math.unit(0.185, "meters"),
  12543. name: "Foot (Kobold)",
  12544. image: {
  12545. source: "./media/characters/rufran/kobold-foot.svg"
  12546. }
  12547. },
  12548. },
  12549. [
  12550. {
  12551. name: "Micro",
  12552. height: math.unit(1, "inch")
  12553. },
  12554. {
  12555. name: "Normal",
  12556. height: math.unit(2 + 6 / 12, "feet"),
  12557. default: true
  12558. },
  12559. {
  12560. name: "Big",
  12561. height: math.unit(60, "feet")
  12562. },
  12563. {
  12564. name: "Macro",
  12565. height: math.unit(325, "feet")
  12566. },
  12567. ]
  12568. ))
  12569. characterMakers.push(() => makeCharacter(
  12570. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12571. {
  12572. front: {
  12573. height: math.unit(0.3, "meters"),
  12574. weight: math.unit(3.5, "kg"),
  12575. name: "Front",
  12576. image: {
  12577. source: "./media/characters/chip/front.svg",
  12578. extra: 748 / 674
  12579. }
  12580. },
  12581. },
  12582. [
  12583. {
  12584. name: "Micro",
  12585. height: math.unit(1, "inch"),
  12586. default: true
  12587. },
  12588. ]
  12589. ))
  12590. characterMakers.push(() => makeCharacter(
  12591. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12592. {
  12593. side: {
  12594. height: math.unit(2.3, "meters"),
  12595. weight: math.unit(3500, "lb"),
  12596. name: "Side",
  12597. image: {
  12598. source: "./media/characters/torvid/side.svg",
  12599. extra: 1972 / 722,
  12600. bottom: 0.035
  12601. }
  12602. },
  12603. },
  12604. [
  12605. {
  12606. name: "Normal",
  12607. height: math.unit(2.3, "meters"),
  12608. default: true
  12609. },
  12610. ]
  12611. ))
  12612. characterMakers.push(() => makeCharacter(
  12613. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12614. {
  12615. front: {
  12616. height: math.unit(2, "meters"),
  12617. weight: math.unit(150.5, "kg"),
  12618. name: "Front",
  12619. image: {
  12620. source: "./media/characters/susan/front.svg",
  12621. extra: 693 / 635,
  12622. bottom: 0.05
  12623. }
  12624. },
  12625. },
  12626. [
  12627. {
  12628. name: "Megamacro",
  12629. height: math.unit(505, "miles"),
  12630. default: true
  12631. },
  12632. ]
  12633. ))
  12634. characterMakers.push(() => makeCharacter(
  12635. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12636. {
  12637. front: {
  12638. height: math.unit(6, "feet"),
  12639. weight: math.unit(150, "lb"),
  12640. name: "Front",
  12641. image: {
  12642. source: "./media/characters/raindrops/front.svg",
  12643. extra: 2655 / 2461,
  12644. bottom: 49 / 2705
  12645. }
  12646. },
  12647. back: {
  12648. height: math.unit(6, "feet"),
  12649. weight: math.unit(150, "lb"),
  12650. name: "Back",
  12651. image: {
  12652. source: "./media/characters/raindrops/back.svg",
  12653. extra: 2574 / 2400,
  12654. bottom: 65 / 2634
  12655. }
  12656. },
  12657. },
  12658. [
  12659. {
  12660. name: "Micro",
  12661. height: math.unit(6, "inches")
  12662. },
  12663. {
  12664. name: "Normal",
  12665. height: math.unit(6 + 2 / 12, "feet")
  12666. },
  12667. {
  12668. name: "Macro",
  12669. height: math.unit(131, "feet"),
  12670. default: true
  12671. },
  12672. {
  12673. name: "Megamacro",
  12674. height: math.unit(15, "miles")
  12675. },
  12676. {
  12677. name: "Gigamacro",
  12678. height: math.unit(4000, "miles")
  12679. },
  12680. {
  12681. name: "Teramacro",
  12682. height: math.unit(315000, "miles")
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12688. {
  12689. front: {
  12690. height: math.unit(2.794, "meters"),
  12691. weight: math.unit(325, "kg"),
  12692. name: "Front",
  12693. image: {
  12694. source: "./media/characters/tezwa/front.svg",
  12695. extra: 2083 / 1906,
  12696. bottom: 0.031
  12697. }
  12698. },
  12699. foot: {
  12700. height: math.unit(0.687, "meters"),
  12701. name: "Foot",
  12702. image: {
  12703. source: "./media/characters/tezwa/foot.svg"
  12704. }
  12705. },
  12706. },
  12707. [
  12708. {
  12709. name: "Normal",
  12710. height: math.unit(9 + 2 / 12, "feet"),
  12711. default: true
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12717. {
  12718. front: {
  12719. height: math.unit(58, "feet"),
  12720. weight: math.unit(89000, "lb"),
  12721. name: "Front",
  12722. image: {
  12723. source: "./media/characters/typhus/front.svg",
  12724. extra: 816 / 800,
  12725. bottom: 0.065
  12726. }
  12727. },
  12728. },
  12729. [
  12730. {
  12731. name: "Macro",
  12732. height: math.unit(58, "feet"),
  12733. default: true
  12734. },
  12735. ]
  12736. ))
  12737. characterMakers.push(() => makeCharacter(
  12738. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12739. {
  12740. front: {
  12741. height: math.unit(12, "feet"),
  12742. weight: math.unit(6, "tonnes"),
  12743. name: "Front",
  12744. image: {
  12745. source: "./media/characters/lyra-von-wulf/front.svg",
  12746. extra: 1,
  12747. bottom: 0.10
  12748. }
  12749. },
  12750. frontMecha: {
  12751. height: math.unit(12, "feet"),
  12752. weight: math.unit(12, "tonnes"),
  12753. name: "Front (Mecha)",
  12754. image: {
  12755. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12756. extra: 1,
  12757. bottom: 0.042
  12758. }
  12759. },
  12760. maw: {
  12761. height: math.unit(2.2, "feet"),
  12762. name: "Maw",
  12763. image: {
  12764. source: "./media/characters/lyra-von-wulf/maw.svg"
  12765. }
  12766. },
  12767. },
  12768. [
  12769. {
  12770. name: "Normal",
  12771. height: math.unit(12, "feet"),
  12772. default: true
  12773. },
  12774. {
  12775. name: "Classic",
  12776. height: math.unit(50, "feet")
  12777. },
  12778. {
  12779. name: "Macro",
  12780. height: math.unit(500, "feet")
  12781. },
  12782. {
  12783. name: "Megamacro",
  12784. height: math.unit(1, "mile")
  12785. },
  12786. {
  12787. name: "Gigamacro",
  12788. height: math.unit(400, "miles")
  12789. },
  12790. {
  12791. name: "Teramacro",
  12792. height: math.unit(22000, "miles")
  12793. },
  12794. {
  12795. name: "Solarmacro",
  12796. height: math.unit(8600000, "miles")
  12797. },
  12798. {
  12799. name: "Galactic",
  12800. height: math.unit(1057000, "lightyears")
  12801. },
  12802. ]
  12803. ))
  12804. characterMakers.push(() => makeCharacter(
  12805. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12806. {
  12807. front: {
  12808. height: math.unit(6 + 10 / 12, "feet"),
  12809. weight: math.unit(150, "lb"),
  12810. name: "Front",
  12811. image: {
  12812. source: "./media/characters/dixon/front.svg",
  12813. extra: 3361 / 3209,
  12814. bottom: 0.01
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Normal",
  12821. height: math.unit(6 + 10 / 12, "feet"),
  12822. default: true
  12823. },
  12824. {
  12825. name: "Big",
  12826. height: math.unit(12, "meters")
  12827. },
  12828. {
  12829. name: "Macro",
  12830. height: math.unit(500, "meters")
  12831. },
  12832. {
  12833. name: "Megamacro",
  12834. height: math.unit(2, "km")
  12835. },
  12836. ]
  12837. ))
  12838. characterMakers.push(() => makeCharacter(
  12839. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12840. {
  12841. front: {
  12842. height: math.unit(185, "cm"),
  12843. weight: math.unit(68, "kg"),
  12844. name: "Front",
  12845. image: {
  12846. source: "./media/characters/kauko/front.svg",
  12847. extra: 1455 / 1421,
  12848. bottom: 0.03
  12849. }
  12850. },
  12851. back: {
  12852. height: math.unit(185, "cm"),
  12853. weight: math.unit(68, "kg"),
  12854. name: "Back",
  12855. image: {
  12856. source: "./media/characters/kauko/back.svg",
  12857. extra: 1455 / 1421,
  12858. bottom: 0.004
  12859. }
  12860. },
  12861. },
  12862. [
  12863. {
  12864. name: "Normal",
  12865. height: math.unit(185, "cm"),
  12866. default: true
  12867. },
  12868. ]
  12869. ))
  12870. characterMakers.push(() => makeCharacter(
  12871. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12872. {
  12873. front: {
  12874. height: math.unit(6, "feet"),
  12875. weight: math.unit(150, "kg"),
  12876. name: "Front",
  12877. image: {
  12878. source: "./media/characters/varg/front.svg",
  12879. extra: 1108 / 1018,
  12880. bottom: 0.0375
  12881. }
  12882. },
  12883. },
  12884. [
  12885. {
  12886. name: "Normal",
  12887. height: math.unit(5, "meters")
  12888. },
  12889. {
  12890. name: "Macro",
  12891. height: math.unit(200, "meters")
  12892. },
  12893. {
  12894. name: "Megamacro",
  12895. height: math.unit(20, "kilometers")
  12896. },
  12897. {
  12898. name: "True Size",
  12899. height: math.unit(211, "km"),
  12900. default: true
  12901. },
  12902. {
  12903. name: "Gigamacro",
  12904. height: math.unit(1000, "km")
  12905. },
  12906. {
  12907. name: "Gigamacro+",
  12908. height: math.unit(8000, "km")
  12909. },
  12910. {
  12911. name: "Teramacro",
  12912. height: math.unit(1000000, "km")
  12913. },
  12914. ]
  12915. ))
  12916. characterMakers.push(() => makeCharacter(
  12917. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12918. {
  12919. front: {
  12920. height: math.unit(7 + 7 / 12, "feet"),
  12921. weight: math.unit(267, "lb"),
  12922. name: "Front",
  12923. image: {
  12924. source: "./media/characters/dayza/front.svg",
  12925. extra: 1262 / 1200,
  12926. bottom: 0.035
  12927. }
  12928. },
  12929. side: {
  12930. height: math.unit(7 + 7 / 12, "feet"),
  12931. weight: math.unit(267, "lb"),
  12932. name: "Side",
  12933. image: {
  12934. source: "./media/characters/dayza/side.svg",
  12935. extra: 1295 / 1245,
  12936. bottom: 0.05
  12937. }
  12938. },
  12939. back: {
  12940. height: math.unit(7 + 7 / 12, "feet"),
  12941. weight: math.unit(267, "lb"),
  12942. name: "Back",
  12943. image: {
  12944. source: "./media/characters/dayza/back.svg",
  12945. extra: 1241 / 1170
  12946. }
  12947. },
  12948. },
  12949. [
  12950. {
  12951. name: "Normal",
  12952. height: math.unit(7 + 7 / 12, "feet"),
  12953. default: true
  12954. },
  12955. {
  12956. name: "Macro",
  12957. height: math.unit(155, "feet")
  12958. },
  12959. ]
  12960. ))
  12961. characterMakers.push(() => makeCharacter(
  12962. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12963. {
  12964. front: {
  12965. height: math.unit(6 + 5 / 12, "feet"),
  12966. weight: math.unit(160, "lb"),
  12967. name: "Front",
  12968. image: {
  12969. source: "./media/characters/xanthos/front.svg",
  12970. extra: 1,
  12971. bottom: 0.04
  12972. }
  12973. },
  12974. back: {
  12975. height: math.unit(6 + 5 / 12, "feet"),
  12976. weight: math.unit(160, "lb"),
  12977. name: "Back",
  12978. image: {
  12979. source: "./media/characters/xanthos/back.svg",
  12980. extra: 1,
  12981. bottom: 0.03
  12982. }
  12983. },
  12984. hand: {
  12985. height: math.unit(0.928, "feet"),
  12986. name: "Hand",
  12987. image: {
  12988. source: "./media/characters/xanthos/hand.svg"
  12989. }
  12990. },
  12991. foot: {
  12992. height: math.unit(1.286, "feet"),
  12993. name: "Foot",
  12994. image: {
  12995. source: "./media/characters/xanthos/foot.svg"
  12996. }
  12997. },
  12998. },
  12999. [
  13000. {
  13001. name: "Normal",
  13002. height: math.unit(6 + 5 / 12, "feet"),
  13003. default: true
  13004. },
  13005. {
  13006. name: "Normal+",
  13007. height: math.unit(6, "meters")
  13008. },
  13009. {
  13010. name: "Macro",
  13011. height: math.unit(40, "feet")
  13012. },
  13013. {
  13014. name: "Macro+",
  13015. height: math.unit(200, "meters")
  13016. },
  13017. {
  13018. name: "Megamacro",
  13019. height: math.unit(20, "km")
  13020. },
  13021. {
  13022. name: "Megamacro+",
  13023. height: math.unit(100, "km")
  13024. },
  13025. {
  13026. name: "Gigamacro",
  13027. height: math.unit(200, "megameters")
  13028. },
  13029. {
  13030. name: "Gigamacro+",
  13031. height: math.unit(1.5, "gigameters")
  13032. },
  13033. ]
  13034. ))
  13035. characterMakers.push(() => makeCharacter(
  13036. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13037. {
  13038. front: {
  13039. height: math.unit(6 + 3 / 12, "feet"),
  13040. weight: math.unit(215, "lb"),
  13041. name: "Front",
  13042. image: {
  13043. source: "./media/characters/grynn/front.svg",
  13044. extra: 4627 / 4209,
  13045. bottom: 0.047
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Micro",
  13052. height: math.unit(6, "inches")
  13053. },
  13054. {
  13055. name: "Normal",
  13056. height: math.unit(6 + 3 / 12, "feet"),
  13057. default: true
  13058. },
  13059. {
  13060. name: "Big",
  13061. height: math.unit(104, "feet")
  13062. },
  13063. {
  13064. name: "Macro",
  13065. height: math.unit(944, "feet")
  13066. },
  13067. {
  13068. name: "Macro+",
  13069. height: math.unit(9480, "feet")
  13070. },
  13071. {
  13072. name: "Megamacro",
  13073. height: math.unit(78752, "feet")
  13074. },
  13075. {
  13076. name: "Megamacro+",
  13077. height: math.unit(630128, "feet")
  13078. },
  13079. {
  13080. name: "Megamacro++",
  13081. height: math.unit(3150695, "feet")
  13082. },
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13087. {
  13088. front: {
  13089. height: math.unit(7 + 5 / 12, "feet"),
  13090. weight: math.unit(450, "lb"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/mocha-aura/front.svg",
  13094. extra: 1907 / 1817,
  13095. bottom: 0.04
  13096. }
  13097. },
  13098. back: {
  13099. height: math.unit(7 + 5 / 12, "feet"),
  13100. weight: math.unit(450, "lb"),
  13101. name: "Back",
  13102. image: {
  13103. source: "./media/characters/mocha-aura/back.svg",
  13104. extra: 1900 / 1825,
  13105. bottom: 0.045
  13106. }
  13107. },
  13108. },
  13109. [
  13110. {
  13111. name: "Nano",
  13112. height: math.unit(1, "nm")
  13113. },
  13114. {
  13115. name: "Megamicro",
  13116. height: math.unit(1, "mm")
  13117. },
  13118. {
  13119. name: "Micro",
  13120. height: math.unit(3, "inches")
  13121. },
  13122. {
  13123. name: "Normal",
  13124. height: math.unit(7 + 5 / 12, "feet"),
  13125. default: true
  13126. },
  13127. {
  13128. name: "Macro",
  13129. height: math.unit(30, "feet")
  13130. },
  13131. {
  13132. name: "Megamacro",
  13133. height: math.unit(3500, "feet")
  13134. },
  13135. {
  13136. name: "Teramacro",
  13137. height: math.unit(500000, "miles")
  13138. },
  13139. {
  13140. name: "Petamacro",
  13141. height: math.unit(50000000000000000, "parsecs")
  13142. },
  13143. ]
  13144. ))
  13145. characterMakers.push(() => makeCharacter(
  13146. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13147. {
  13148. front: {
  13149. height: math.unit(6, "feet"),
  13150. weight: math.unit(150, "lb"),
  13151. name: "Front",
  13152. image: {
  13153. source: "./media/characters/ilisha-devya/front.svg",
  13154. extra: 1053/1049,
  13155. bottom: 270/1323
  13156. }
  13157. },
  13158. back: {
  13159. height: math.unit(6, "feet"),
  13160. weight: math.unit(150, "lb"),
  13161. name: "Back",
  13162. image: {
  13163. source: "./media/characters/ilisha-devya/back.svg",
  13164. extra: 1131/1128,
  13165. bottom: 39/1170
  13166. }
  13167. },
  13168. },
  13169. [
  13170. {
  13171. name: "Macro",
  13172. height: math.unit(500, "feet"),
  13173. default: true
  13174. },
  13175. {
  13176. name: "Megamacro",
  13177. height: math.unit(10, "miles")
  13178. },
  13179. {
  13180. name: "Gigamacro",
  13181. height: math.unit(100000, "miles")
  13182. },
  13183. {
  13184. name: "Examacro",
  13185. height: math.unit(1e9, "lightyears")
  13186. },
  13187. {
  13188. name: "Omniversal",
  13189. height: math.unit(1e33, "lightyears")
  13190. },
  13191. {
  13192. name: "Beyond Infinite",
  13193. height: math.unit(1e100, "lightyears")
  13194. },
  13195. ]
  13196. ))
  13197. characterMakers.push(() => makeCharacter(
  13198. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13199. {
  13200. Side: {
  13201. height: math.unit(6, "feet"),
  13202. weight: math.unit(150, "lb"),
  13203. name: "Side",
  13204. image: {
  13205. source: "./media/characters/mira/side.svg",
  13206. extra: 900 / 799,
  13207. bottom: 0.02
  13208. }
  13209. },
  13210. },
  13211. [
  13212. {
  13213. name: "Human Size",
  13214. height: math.unit(6, "feet")
  13215. },
  13216. {
  13217. name: "Macro",
  13218. height: math.unit(100, "feet"),
  13219. default: true
  13220. },
  13221. {
  13222. name: "Megamacro",
  13223. height: math.unit(10, "miles")
  13224. },
  13225. {
  13226. name: "Gigamacro",
  13227. height: math.unit(25000, "miles")
  13228. },
  13229. {
  13230. name: "Teramacro",
  13231. height: math.unit(300, "AU")
  13232. },
  13233. {
  13234. name: "Full Size",
  13235. height: math.unit(4.5e10, "lightyears")
  13236. },
  13237. ]
  13238. ))
  13239. characterMakers.push(() => makeCharacter(
  13240. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13241. {
  13242. front: {
  13243. height: math.unit(6, "feet"),
  13244. weight: math.unit(150, "lb"),
  13245. name: "Front",
  13246. image: {
  13247. source: "./media/characters/holly/front.svg",
  13248. extra: 639 / 606
  13249. }
  13250. },
  13251. back: {
  13252. height: math.unit(6, "feet"),
  13253. weight: math.unit(150, "lb"),
  13254. name: "Back",
  13255. image: {
  13256. source: "./media/characters/holly/back.svg",
  13257. extra: 623 / 598
  13258. }
  13259. },
  13260. frontWorking: {
  13261. height: math.unit(6, "feet"),
  13262. weight: math.unit(150, "lb"),
  13263. name: "Front (Working)",
  13264. image: {
  13265. source: "./media/characters/holly/front-working.svg",
  13266. extra: 607 / 577,
  13267. bottom: 0.048
  13268. }
  13269. },
  13270. },
  13271. [
  13272. {
  13273. name: "Normal",
  13274. height: math.unit(12 + 3 / 12, "feet"),
  13275. default: true
  13276. },
  13277. ]
  13278. ))
  13279. characterMakers.push(() => makeCharacter(
  13280. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13281. {
  13282. front: {
  13283. height: math.unit(6, "feet"),
  13284. weight: math.unit(150, "lb"),
  13285. name: "Front",
  13286. image: {
  13287. source: "./media/characters/porter/front.svg",
  13288. extra: 1,
  13289. bottom: 0.01
  13290. }
  13291. },
  13292. frontRobes: {
  13293. height: math.unit(6, "feet"),
  13294. weight: math.unit(150, "lb"),
  13295. name: "Front (Robes)",
  13296. image: {
  13297. source: "./media/characters/porter/front-robes.svg",
  13298. extra: 1.01,
  13299. bottom: 0.01
  13300. }
  13301. },
  13302. },
  13303. [
  13304. {
  13305. name: "Normal",
  13306. height: math.unit(11 + 9 / 12, "feet"),
  13307. default: true
  13308. },
  13309. ]
  13310. ))
  13311. characterMakers.push(() => makeCharacter(
  13312. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13313. {
  13314. legendary: {
  13315. height: math.unit(6, "feet"),
  13316. weight: math.unit(150, "lb"),
  13317. name: "Legendary",
  13318. image: {
  13319. source: "./media/characters/lucy/legendary.svg",
  13320. extra: 1355 / 1100,
  13321. bottom: 0.045
  13322. }
  13323. },
  13324. },
  13325. [
  13326. {
  13327. name: "Legendary",
  13328. height: math.unit(86882 * 2, "miles"),
  13329. default: true
  13330. },
  13331. ]
  13332. ))
  13333. characterMakers.push(() => makeCharacter(
  13334. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13335. {
  13336. front: {
  13337. height: math.unit(6, "feet"),
  13338. weight: math.unit(150, "lb"),
  13339. name: "Front",
  13340. image: {
  13341. source: "./media/characters/drusilla/front.svg",
  13342. extra: 678 / 635,
  13343. bottom: 0.03
  13344. }
  13345. },
  13346. back: {
  13347. height: math.unit(6, "feet"),
  13348. weight: math.unit(150, "lb"),
  13349. name: "Back",
  13350. image: {
  13351. source: "./media/characters/drusilla/back.svg",
  13352. extra: 678 / 635,
  13353. bottom: 0.005
  13354. }
  13355. },
  13356. },
  13357. [
  13358. {
  13359. name: "Macro",
  13360. height: math.unit(100, "feet")
  13361. },
  13362. {
  13363. name: "Canon Height",
  13364. height: math.unit(2000, "feet"),
  13365. default: true
  13366. },
  13367. ]
  13368. ))
  13369. characterMakers.push(() => makeCharacter(
  13370. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13371. {
  13372. front: {
  13373. height: math.unit(6, "feet"),
  13374. weight: math.unit(180, "lb"),
  13375. name: "Front",
  13376. image: {
  13377. source: "./media/characters/renard-thatch/front.svg",
  13378. extra: 2411 / 2275,
  13379. bottom: 0.01
  13380. }
  13381. },
  13382. frontPosing: {
  13383. height: math.unit(6, "feet"),
  13384. weight: math.unit(180, "lb"),
  13385. name: "Front (Posing)",
  13386. image: {
  13387. source: "./media/characters/renard-thatch/front-posing.svg",
  13388. extra: 2381 / 2261,
  13389. bottom: 0.01
  13390. }
  13391. },
  13392. back: {
  13393. height: math.unit(6, "feet"),
  13394. weight: math.unit(180, "lb"),
  13395. name: "Back",
  13396. image: {
  13397. source: "./media/characters/renard-thatch/back.svg",
  13398. extra: 2428 / 2288
  13399. }
  13400. },
  13401. },
  13402. [
  13403. {
  13404. name: "Micro",
  13405. height: math.unit(3, "inches")
  13406. },
  13407. {
  13408. name: "Default",
  13409. height: math.unit(6, "feet"),
  13410. default: true
  13411. },
  13412. {
  13413. name: "Macro",
  13414. height: math.unit(75, "feet")
  13415. },
  13416. ]
  13417. ))
  13418. characterMakers.push(() => makeCharacter(
  13419. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13420. {
  13421. front: {
  13422. height: math.unit(1450, "feet"),
  13423. weight: math.unit(1.21e6, "tons"),
  13424. name: "Front",
  13425. image: {
  13426. source: "./media/characters/sekvra/front.svg",
  13427. extra: 1193/1190,
  13428. bottom: 78/1271
  13429. }
  13430. },
  13431. side: {
  13432. height: math.unit(1450, "feet"),
  13433. weight: math.unit(1.21e6, "tons"),
  13434. name: "Side",
  13435. image: {
  13436. source: "./media/characters/sekvra/side.svg",
  13437. extra: 1193/1190,
  13438. bottom: 52/1245
  13439. }
  13440. },
  13441. back: {
  13442. height: math.unit(1450, "feet"),
  13443. weight: math.unit(1.21e6, "tons"),
  13444. name: "Back",
  13445. image: {
  13446. source: "./media/characters/sekvra/back.svg",
  13447. extra: 1219/1216,
  13448. bottom: 21/1240
  13449. }
  13450. },
  13451. frontClothed: {
  13452. height: math.unit(1450, "feet"),
  13453. weight: math.unit(1.21e6, "tons"),
  13454. name: "Front (Clothed)",
  13455. image: {
  13456. source: "./media/characters/sekvra/front-clothed.svg",
  13457. extra: 1192/1189,
  13458. bottom: 79/1271
  13459. }
  13460. },
  13461. },
  13462. [
  13463. {
  13464. name: "Macro",
  13465. height: math.unit(1450, "feet"),
  13466. default: true
  13467. },
  13468. {
  13469. name: "Megamacro",
  13470. height: math.unit(15000, "feet")
  13471. },
  13472. ]
  13473. ))
  13474. characterMakers.push(() => makeCharacter(
  13475. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13476. {
  13477. front: {
  13478. height: math.unit(6, "feet"),
  13479. weight: math.unit(150, "lb"),
  13480. name: "Front",
  13481. image: {
  13482. source: "./media/characters/carmine/front.svg",
  13483. extra: 1,
  13484. bottom: 0.035
  13485. }
  13486. },
  13487. frontArmor: {
  13488. height: math.unit(6, "feet"),
  13489. weight: math.unit(150, "lb"),
  13490. name: "Front (Armor)",
  13491. image: {
  13492. source: "./media/characters/carmine/front-armor.svg",
  13493. extra: 1,
  13494. bottom: 0.035
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Large",
  13501. height: math.unit(1, "mile")
  13502. },
  13503. {
  13504. name: "Huge",
  13505. height: math.unit(40, "miles"),
  13506. default: true
  13507. },
  13508. {
  13509. name: "Colossal",
  13510. height: math.unit(2500, "miles")
  13511. },
  13512. ]
  13513. ))
  13514. characterMakers.push(() => makeCharacter(
  13515. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13516. {
  13517. front: {
  13518. height: math.unit(6, "feet"),
  13519. weight: math.unit(150, "lb"),
  13520. name: "Front",
  13521. image: {
  13522. source: "./media/characters/elyssia/front.svg",
  13523. extra: 2201 / 2035,
  13524. bottom: 0.05
  13525. }
  13526. },
  13527. frontClothed: {
  13528. height: math.unit(6, "feet"),
  13529. weight: math.unit(150, "lb"),
  13530. name: "Front (Clothed)",
  13531. image: {
  13532. source: "./media/characters/elyssia/front-clothed.svg",
  13533. extra: 2201 / 2035,
  13534. bottom: 0.05
  13535. }
  13536. },
  13537. back: {
  13538. height: math.unit(6, "feet"),
  13539. weight: math.unit(150, "lb"),
  13540. name: "Back",
  13541. image: {
  13542. source: "./media/characters/elyssia/back.svg",
  13543. extra: 2201 / 2035,
  13544. bottom: 0.013
  13545. }
  13546. },
  13547. },
  13548. [
  13549. {
  13550. name: "Smaller",
  13551. height: math.unit(150, "feet")
  13552. },
  13553. {
  13554. name: "Standard",
  13555. height: math.unit(1400, "feet"),
  13556. default: true
  13557. },
  13558. {
  13559. name: "Distracted",
  13560. height: math.unit(15000, "feet")
  13561. },
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13566. {
  13567. front: {
  13568. height: math.unit(7 + 4/12, "feet"),
  13569. weight: math.unit(690, "lb"),
  13570. name: "Front",
  13571. image: {
  13572. source: "./media/characters/geno-maxwell/front.svg",
  13573. extra: 984/856,
  13574. bottom: 87/1071
  13575. }
  13576. },
  13577. back: {
  13578. height: math.unit(7 + 4/12, "feet"),
  13579. weight: math.unit(690, "lb"),
  13580. name: "Back",
  13581. image: {
  13582. source: "./media/characters/geno-maxwell/back.svg",
  13583. extra: 981/854,
  13584. bottom: 57/1038
  13585. }
  13586. },
  13587. frontCostume: {
  13588. height: math.unit(7 + 4/12, "feet"),
  13589. weight: math.unit(690, "lb"),
  13590. name: "Front (Costume)",
  13591. image: {
  13592. source: "./media/characters/geno-maxwell/front-costume.svg",
  13593. extra: 984/856,
  13594. bottom: 87/1071
  13595. }
  13596. },
  13597. backcostume: {
  13598. height: math.unit(7 + 4/12, "feet"),
  13599. weight: math.unit(690, "lb"),
  13600. name: "Back (Costume)",
  13601. image: {
  13602. source: "./media/characters/geno-maxwell/back-costume.svg",
  13603. extra: 981/854,
  13604. bottom: 57/1038
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Micro",
  13611. height: math.unit(3, "inches")
  13612. },
  13613. {
  13614. name: "Normal",
  13615. height: math.unit(7 + 4 / 12, "feet"),
  13616. default: true
  13617. },
  13618. {
  13619. name: "Macro",
  13620. height: math.unit(220, "feet")
  13621. },
  13622. {
  13623. name: "Megamacro",
  13624. height: math.unit(11, "miles")
  13625. },
  13626. ]
  13627. ))
  13628. characterMakers.push(() => makeCharacter(
  13629. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13630. {
  13631. front: {
  13632. height: math.unit(7 + 4/12, "feet"),
  13633. weight: math.unit(750, "lb"),
  13634. name: "Front",
  13635. image: {
  13636. source: "./media/characters/regena-maxwell/front.svg",
  13637. extra: 984/856,
  13638. bottom: 87/1071
  13639. }
  13640. },
  13641. back: {
  13642. height: math.unit(7 + 4/12, "feet"),
  13643. weight: math.unit(750, "lb"),
  13644. name: "Back",
  13645. image: {
  13646. source: "./media/characters/regena-maxwell/back.svg",
  13647. extra: 981/854,
  13648. bottom: 57/1038
  13649. }
  13650. },
  13651. frontCostume: {
  13652. height: math.unit(7 + 4/12, "feet"),
  13653. weight: math.unit(750, "lb"),
  13654. name: "Front (Costume)",
  13655. image: {
  13656. source: "./media/characters/regena-maxwell/front-costume.svg",
  13657. extra: 984/856,
  13658. bottom: 87/1071
  13659. }
  13660. },
  13661. backcostume: {
  13662. height: math.unit(7 + 4/12, "feet"),
  13663. weight: math.unit(750, "lb"),
  13664. name: "Back (Costume)",
  13665. image: {
  13666. source: "./media/characters/regena-maxwell/back-costume.svg",
  13667. extra: 981/854,
  13668. bottom: 57/1038
  13669. }
  13670. },
  13671. },
  13672. [
  13673. {
  13674. name: "Normal",
  13675. height: math.unit(7 + 4 / 12, "feet"),
  13676. default: true
  13677. },
  13678. {
  13679. name: "Macro",
  13680. height: math.unit(220, "feet")
  13681. },
  13682. {
  13683. name: "Megamacro",
  13684. height: math.unit(11, "miles")
  13685. },
  13686. ]
  13687. ))
  13688. characterMakers.push(() => makeCharacter(
  13689. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13690. {
  13691. front: {
  13692. height: math.unit(6, "feet"),
  13693. weight: math.unit(150, "lb"),
  13694. name: "Front",
  13695. image: {
  13696. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13697. extra: 860 / 690,
  13698. bottom: 0.03
  13699. }
  13700. },
  13701. },
  13702. [
  13703. {
  13704. name: "Normal",
  13705. height: math.unit(1.7, "meters"),
  13706. default: true
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13712. {
  13713. front: {
  13714. height: math.unit(6, "feet"),
  13715. weight: math.unit(150, "lb"),
  13716. name: "Front",
  13717. image: {
  13718. source: "./media/characters/quilly/front.svg",
  13719. extra: 890 / 776
  13720. }
  13721. },
  13722. },
  13723. [
  13724. {
  13725. name: "Gigamacro",
  13726. height: math.unit(404090, "miles"),
  13727. default: true
  13728. },
  13729. ]
  13730. ))
  13731. characterMakers.push(() => makeCharacter(
  13732. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13733. {
  13734. front: {
  13735. height: math.unit(7 + 8 / 12, "feet"),
  13736. weight: math.unit(350, "lb"),
  13737. name: "Front",
  13738. image: {
  13739. source: "./media/characters/tempest/front.svg",
  13740. extra: 1175 / 1086,
  13741. bottom: 0.02
  13742. }
  13743. },
  13744. },
  13745. [
  13746. {
  13747. name: "Normal",
  13748. height: math.unit(7 + 8 / 12, "feet"),
  13749. default: true
  13750. },
  13751. ]
  13752. ))
  13753. characterMakers.push(() => makeCharacter(
  13754. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13755. {
  13756. side: {
  13757. height: math.unit(4 + 5 / 12, "feet"),
  13758. weight: math.unit(80, "lb"),
  13759. name: "Side",
  13760. image: {
  13761. source: "./media/characters/rodger/side.svg",
  13762. extra: 1235 / 1118
  13763. }
  13764. },
  13765. },
  13766. [
  13767. {
  13768. name: "Micro",
  13769. height: math.unit(1, "inch")
  13770. },
  13771. {
  13772. name: "Normal",
  13773. height: math.unit(4 + 5 / 12, "feet"),
  13774. default: true
  13775. },
  13776. {
  13777. name: "Macro",
  13778. height: math.unit(120, "feet")
  13779. },
  13780. ]
  13781. ))
  13782. characterMakers.push(() => makeCharacter(
  13783. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13784. {
  13785. front: {
  13786. height: math.unit(6, "feet"),
  13787. weight: math.unit(150, "lb"),
  13788. name: "Front",
  13789. image: {
  13790. source: "./media/characters/danyel/front.svg",
  13791. extra: 1185 / 1123,
  13792. bottom: 0.05
  13793. }
  13794. },
  13795. },
  13796. [
  13797. {
  13798. name: "Shrunken",
  13799. height: math.unit(0.5, "mm")
  13800. },
  13801. {
  13802. name: "Micro",
  13803. height: math.unit(1, "mm"),
  13804. default: true
  13805. },
  13806. {
  13807. name: "Upsized",
  13808. height: math.unit(5 + 5 / 12, "feet")
  13809. },
  13810. ]
  13811. ))
  13812. characterMakers.push(() => makeCharacter(
  13813. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13814. {
  13815. front: {
  13816. height: math.unit(5 + 6 / 12, "feet"),
  13817. weight: math.unit(200, "lb"),
  13818. name: "Front",
  13819. image: {
  13820. source: "./media/characters/vivian-bijoux/front.svg",
  13821. extra: 1217/1209,
  13822. bottom: 76/1293
  13823. }
  13824. },
  13825. back: {
  13826. height: math.unit(5 + 6 / 12, "feet"),
  13827. weight: math.unit(200, "lb"),
  13828. name: "Back",
  13829. image: {
  13830. source: "./media/characters/vivian-bijoux/back.svg",
  13831. extra: 1214/1208,
  13832. bottom: 51/1265
  13833. }
  13834. },
  13835. dressed: {
  13836. height: math.unit(5 + 6 / 12, "feet"),
  13837. weight: math.unit(200, "lb"),
  13838. name: "Dressed",
  13839. image: {
  13840. source: "./media/characters/vivian-bijoux/dressed.svg",
  13841. extra: 1217/1209,
  13842. bottom: 76/1293
  13843. }
  13844. },
  13845. },
  13846. [
  13847. {
  13848. name: "Normal",
  13849. height: math.unit(5 + 6 / 12, "feet"),
  13850. default: true
  13851. },
  13852. {
  13853. name: "Bad Dream",
  13854. height: math.unit(500, "feet")
  13855. },
  13856. {
  13857. name: "Nightmare",
  13858. height: math.unit(500, "miles")
  13859. },
  13860. ]
  13861. ))
  13862. characterMakers.push(() => makeCharacter(
  13863. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13864. {
  13865. front: {
  13866. height: math.unit(6 + 1 / 12, "feet"),
  13867. weight: math.unit(260, "lb"),
  13868. name: "Front",
  13869. image: {
  13870. source: "./media/characters/zeta/front.svg",
  13871. extra: 1968 / 1889,
  13872. bottom: 0.06
  13873. }
  13874. },
  13875. back: {
  13876. height: math.unit(6 + 1 / 12, "feet"),
  13877. weight: math.unit(260, "lb"),
  13878. name: "Back",
  13879. image: {
  13880. source: "./media/characters/zeta/back.svg",
  13881. extra: 1944 / 1858,
  13882. bottom: 0.03
  13883. }
  13884. },
  13885. hand: {
  13886. height: math.unit(1.112, "feet"),
  13887. name: "Hand",
  13888. image: {
  13889. source: "./media/characters/zeta/hand.svg"
  13890. }
  13891. },
  13892. foot: {
  13893. height: math.unit(1.48, "feet"),
  13894. name: "Foot",
  13895. image: {
  13896. source: "./media/characters/zeta/foot.svg"
  13897. }
  13898. },
  13899. },
  13900. [
  13901. {
  13902. name: "Micro",
  13903. height: math.unit(6, "inches")
  13904. },
  13905. {
  13906. name: "Normal",
  13907. height: math.unit(6 + 1 / 12, "feet"),
  13908. default: true
  13909. },
  13910. {
  13911. name: "Macro",
  13912. height: math.unit(20, "feet")
  13913. },
  13914. ]
  13915. ))
  13916. characterMakers.push(() => makeCharacter(
  13917. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13918. {
  13919. front: {
  13920. height: math.unit(6, "feet"),
  13921. weight: math.unit(150, "lb"),
  13922. name: "Front",
  13923. image: {
  13924. source: "./media/characters/jamie-larsen/front.svg",
  13925. extra: 962 / 933,
  13926. bottom: 0.02
  13927. }
  13928. },
  13929. back: {
  13930. height: math.unit(6, "feet"),
  13931. weight: math.unit(150, "lb"),
  13932. name: "Back",
  13933. image: {
  13934. source: "./media/characters/jamie-larsen/back.svg",
  13935. extra: 997 / 946
  13936. }
  13937. },
  13938. },
  13939. [
  13940. {
  13941. name: "Macro",
  13942. height: math.unit(28 + 7 / 12, "feet"),
  13943. default: true
  13944. },
  13945. {
  13946. name: "Macro+",
  13947. height: math.unit(180, "feet")
  13948. },
  13949. {
  13950. name: "Megamacro",
  13951. height: math.unit(10, "miles")
  13952. },
  13953. {
  13954. name: "Gigamacro",
  13955. height: math.unit(200000, "miles")
  13956. },
  13957. ]
  13958. ))
  13959. characterMakers.push(() => makeCharacter(
  13960. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13961. {
  13962. front: {
  13963. height: math.unit(6, "feet"),
  13964. weight: math.unit(120, "lb"),
  13965. name: "Front",
  13966. image: {
  13967. source: "./media/characters/vance/front.svg",
  13968. extra: 1980 / 1890,
  13969. bottom: 0.09
  13970. }
  13971. },
  13972. back: {
  13973. height: math.unit(6, "feet"),
  13974. weight: math.unit(120, "lb"),
  13975. name: "Back",
  13976. image: {
  13977. source: "./media/characters/vance/back.svg",
  13978. extra: 2081 / 1994,
  13979. bottom: 0.014
  13980. }
  13981. },
  13982. hand: {
  13983. height: math.unit(0.88, "feet"),
  13984. name: "Hand",
  13985. image: {
  13986. source: "./media/characters/vance/hand.svg"
  13987. }
  13988. },
  13989. foot: {
  13990. height: math.unit(0.64, "feet"),
  13991. name: "Foot",
  13992. image: {
  13993. source: "./media/characters/vance/foot.svg"
  13994. }
  13995. },
  13996. },
  13997. [
  13998. {
  13999. name: "Small",
  14000. height: math.unit(90, "feet"),
  14001. default: true
  14002. },
  14003. {
  14004. name: "Macro",
  14005. height: math.unit(100, "meters")
  14006. },
  14007. {
  14008. name: "Megamacro",
  14009. height: math.unit(15, "miles")
  14010. },
  14011. ]
  14012. ))
  14013. characterMakers.push(() => makeCharacter(
  14014. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14015. {
  14016. front: {
  14017. height: math.unit(6, "feet"),
  14018. weight: math.unit(180, "lb"),
  14019. name: "Front",
  14020. image: {
  14021. source: "./media/characters/xochitl/front.svg",
  14022. extra: 2297 / 2261,
  14023. bottom: 0.065
  14024. }
  14025. },
  14026. back: {
  14027. height: math.unit(6, "feet"),
  14028. weight: math.unit(180, "lb"),
  14029. name: "Back",
  14030. image: {
  14031. source: "./media/characters/xochitl/back.svg",
  14032. extra: 2386 / 2354,
  14033. bottom: 0.01
  14034. }
  14035. },
  14036. foot: {
  14037. height: math.unit(6 / 5 * 1.15, "feet"),
  14038. weight: math.unit(150, "lb"),
  14039. name: "Foot",
  14040. image: {
  14041. source: "./media/characters/xochitl/foot.svg"
  14042. }
  14043. },
  14044. },
  14045. [
  14046. {
  14047. name: "Macro",
  14048. height: math.unit(80, "feet")
  14049. },
  14050. {
  14051. name: "Macro+",
  14052. height: math.unit(400, "feet"),
  14053. default: true
  14054. },
  14055. {
  14056. name: "Gigamacro",
  14057. height: math.unit(80000, "miles")
  14058. },
  14059. {
  14060. name: "Gigamacro+",
  14061. height: math.unit(400000, "miles")
  14062. },
  14063. {
  14064. name: "Teramacro",
  14065. height: math.unit(300, "AU")
  14066. },
  14067. ]
  14068. ))
  14069. characterMakers.push(() => makeCharacter(
  14070. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14071. {
  14072. front: {
  14073. height: math.unit(6, "feet"),
  14074. weight: math.unit(150, "lb"),
  14075. name: "Front",
  14076. image: {
  14077. source: "./media/characters/vincent/front.svg",
  14078. extra: 1130 / 1080,
  14079. bottom: 0.055
  14080. }
  14081. },
  14082. beak: {
  14083. height: math.unit(6 * 0.1, "feet"),
  14084. name: "Beak",
  14085. image: {
  14086. source: "./media/characters/vincent/beak.svg"
  14087. }
  14088. },
  14089. hand: {
  14090. height: math.unit(6 * 0.85, "feet"),
  14091. weight: math.unit(150, "lb"),
  14092. name: "Hand",
  14093. image: {
  14094. source: "./media/characters/vincent/hand.svg"
  14095. }
  14096. },
  14097. foot: {
  14098. height: math.unit(6 * 0.19, "feet"),
  14099. weight: math.unit(150, "lb"),
  14100. name: "Foot",
  14101. image: {
  14102. source: "./media/characters/vincent/foot.svg"
  14103. }
  14104. },
  14105. },
  14106. [
  14107. {
  14108. name: "Base",
  14109. height: math.unit(6 + 5 / 12, "feet"),
  14110. default: true
  14111. },
  14112. {
  14113. name: "Macro",
  14114. height: math.unit(300, "feet")
  14115. },
  14116. {
  14117. name: "Megamacro",
  14118. height: math.unit(2, "miles")
  14119. },
  14120. {
  14121. name: "Gigamacro",
  14122. height: math.unit(1000, "miles")
  14123. },
  14124. ]
  14125. ))
  14126. characterMakers.push(() => makeCharacter(
  14127. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14128. {
  14129. front: {
  14130. height: math.unit(2, "meters"),
  14131. weight: math.unit(500, "kg"),
  14132. name: "Front",
  14133. image: {
  14134. source: "./media/characters/coatl/front.svg",
  14135. extra: 3948 / 3500,
  14136. bottom: 0.082
  14137. }
  14138. },
  14139. },
  14140. [
  14141. {
  14142. name: "Normal",
  14143. height: math.unit(4, "meters")
  14144. },
  14145. {
  14146. name: "Macro",
  14147. height: math.unit(100, "meters"),
  14148. default: true
  14149. },
  14150. {
  14151. name: "Macro+",
  14152. height: math.unit(300, "meters")
  14153. },
  14154. {
  14155. name: "Megamacro",
  14156. height: math.unit(3, "gigameters")
  14157. },
  14158. {
  14159. name: "Megamacro+",
  14160. height: math.unit(300, "terameters")
  14161. },
  14162. {
  14163. name: "Megamacro++",
  14164. height: math.unit(3, "lightyears")
  14165. },
  14166. ]
  14167. ))
  14168. characterMakers.push(() => makeCharacter(
  14169. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14170. {
  14171. front: {
  14172. height: math.unit(6, "feet"),
  14173. weight: math.unit(50, "kg"),
  14174. name: "front",
  14175. image: {
  14176. source: "./media/characters/shiroryu/front.svg",
  14177. extra: 1990 / 1935
  14178. }
  14179. },
  14180. },
  14181. [
  14182. {
  14183. name: "Mortal Mingling",
  14184. height: math.unit(3, "meters")
  14185. },
  14186. {
  14187. name: "Kaiju-ish",
  14188. height: math.unit(250, "meters")
  14189. },
  14190. {
  14191. name: "Somewhat Godly",
  14192. height: math.unit(400, "km"),
  14193. default: true
  14194. },
  14195. {
  14196. name: "Planetary",
  14197. height: math.unit(300, "megameters")
  14198. },
  14199. {
  14200. name: "Galaxy-dwarfing",
  14201. height: math.unit(450, "kiloparsecs")
  14202. },
  14203. {
  14204. name: "Universe Eater",
  14205. height: math.unit(150, "gigaparsecs")
  14206. },
  14207. {
  14208. name: "Almost Immeasurable",
  14209. height: math.unit(1.3e266, "yottaparsecs")
  14210. },
  14211. ]
  14212. ))
  14213. characterMakers.push(() => makeCharacter(
  14214. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14215. {
  14216. front: {
  14217. height: math.unit(6, "feet"),
  14218. weight: math.unit(150, "lb"),
  14219. name: "Front",
  14220. image: {
  14221. source: "./media/characters/umeko/front.svg",
  14222. extra: 1,
  14223. bottom: 0.019
  14224. }
  14225. },
  14226. frontArmored: {
  14227. height: math.unit(6, "feet"),
  14228. weight: math.unit(150, "lb"),
  14229. name: "Front (Armored)",
  14230. image: {
  14231. source: "./media/characters/umeko/front-armored.svg",
  14232. extra: 1,
  14233. bottom: 0.021
  14234. }
  14235. },
  14236. },
  14237. [
  14238. {
  14239. name: "Macro",
  14240. height: math.unit(220, "feet"),
  14241. default: true
  14242. },
  14243. {
  14244. name: "Guardian Dragon",
  14245. height: math.unit(50, "miles")
  14246. },
  14247. {
  14248. name: "Cosmic",
  14249. height: math.unit(800000, "miles")
  14250. },
  14251. ]
  14252. ))
  14253. characterMakers.push(() => makeCharacter(
  14254. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14255. {
  14256. front: {
  14257. height: math.unit(6, "feet"),
  14258. weight: math.unit(150, "lb"),
  14259. name: "Front",
  14260. image: {
  14261. source: "./media/characters/cassidy/front.svg",
  14262. extra: 810/808,
  14263. bottom: 41/851
  14264. }
  14265. },
  14266. },
  14267. [
  14268. {
  14269. name: "Canon Height",
  14270. height: math.unit(120, "feet"),
  14271. default: true
  14272. },
  14273. {
  14274. name: "Macro+",
  14275. height: math.unit(400, "feet")
  14276. },
  14277. {
  14278. name: "Macro++",
  14279. height: math.unit(4000, "feet")
  14280. },
  14281. {
  14282. name: "Megamacro",
  14283. height: math.unit(3, "miles")
  14284. },
  14285. ]
  14286. ))
  14287. characterMakers.push(() => makeCharacter(
  14288. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14289. {
  14290. front: {
  14291. height: math.unit(6, "feet"),
  14292. weight: math.unit(150, "lb"),
  14293. name: "Front",
  14294. image: {
  14295. source: "./media/characters/isaac/front.svg",
  14296. extra: 896 / 815,
  14297. bottom: 0.11
  14298. }
  14299. },
  14300. },
  14301. [
  14302. {
  14303. name: "Human Size",
  14304. height: math.unit(8, "feet"),
  14305. default: true
  14306. },
  14307. {
  14308. name: "Macro",
  14309. height: math.unit(400, "feet")
  14310. },
  14311. {
  14312. name: "Megamacro",
  14313. height: math.unit(50, "miles")
  14314. },
  14315. {
  14316. name: "Canon Height",
  14317. height: math.unit(200, "AU")
  14318. },
  14319. ]
  14320. ))
  14321. characterMakers.push(() => makeCharacter(
  14322. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14323. {
  14324. front: {
  14325. height: math.unit(6, "feet"),
  14326. weight: math.unit(72, "kg"),
  14327. name: "Front",
  14328. image: {
  14329. source: "./media/characters/sleekit/front.svg",
  14330. extra: 4693 / 4487,
  14331. bottom: 0.012
  14332. }
  14333. },
  14334. },
  14335. [
  14336. {
  14337. name: "Minimum Height",
  14338. height: math.unit(10, "meters")
  14339. },
  14340. {
  14341. name: "Smaller",
  14342. height: math.unit(25, "meters")
  14343. },
  14344. {
  14345. name: "Larger",
  14346. height: math.unit(38, "meters"),
  14347. default: true
  14348. },
  14349. {
  14350. name: "Maximum height",
  14351. height: math.unit(100, "meters")
  14352. },
  14353. ]
  14354. ))
  14355. characterMakers.push(() => makeCharacter(
  14356. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14357. {
  14358. front: {
  14359. height: math.unit(6, "feet"),
  14360. weight: math.unit(150, "lb"),
  14361. name: "Front",
  14362. image: {
  14363. source: "./media/characters/nillia/front.svg",
  14364. extra: 2195 / 2037,
  14365. bottom: 0.005
  14366. }
  14367. },
  14368. back: {
  14369. height: math.unit(6, "feet"),
  14370. weight: math.unit(150, "lb"),
  14371. name: "Back",
  14372. image: {
  14373. source: "./media/characters/nillia/back.svg",
  14374. extra: 2195 / 2037,
  14375. bottom: 0.005
  14376. }
  14377. },
  14378. },
  14379. [
  14380. {
  14381. name: "Canon Height",
  14382. height: math.unit(489, "feet"),
  14383. default: true
  14384. }
  14385. ]
  14386. ))
  14387. characterMakers.push(() => makeCharacter(
  14388. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14389. {
  14390. front: {
  14391. height: math.unit(6, "feet"),
  14392. weight: math.unit(150, "lb"),
  14393. name: "Front",
  14394. image: {
  14395. source: "./media/characters/mesmyriza/front.svg",
  14396. extra: 2067 / 1784,
  14397. bottom: 0.035
  14398. }
  14399. },
  14400. foot: {
  14401. height: math.unit(6 / (250 / 35), "feet"),
  14402. name: "Foot",
  14403. image: {
  14404. source: "./media/characters/mesmyriza/foot.svg"
  14405. }
  14406. },
  14407. },
  14408. [
  14409. {
  14410. name: "Macro",
  14411. height: math.unit(457, "meters"),
  14412. default: true
  14413. },
  14414. {
  14415. name: "Megamacro",
  14416. height: math.unit(8, "megameters")
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14422. {
  14423. front: {
  14424. height: math.unit(6, "feet"),
  14425. weight: math.unit(250, "lb"),
  14426. name: "Front",
  14427. image: {
  14428. source: "./media/characters/saudade/front.svg",
  14429. extra: 1172 / 1139,
  14430. bottom: 0.035
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Micro",
  14437. height: math.unit(3, "inches")
  14438. },
  14439. {
  14440. name: "Normal",
  14441. height: math.unit(6, "feet"),
  14442. default: true
  14443. },
  14444. {
  14445. name: "Macro",
  14446. height: math.unit(50, "feet")
  14447. },
  14448. {
  14449. name: "Megamacro",
  14450. height: math.unit(2800, "feet")
  14451. },
  14452. ]
  14453. ))
  14454. characterMakers.push(() => makeCharacter(
  14455. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14456. {
  14457. front: {
  14458. height: math.unit(5 + 4 / 12, "feet"),
  14459. weight: math.unit(100, "lb"),
  14460. name: "Front",
  14461. image: {
  14462. source: "./media/characters/keireer/front.svg",
  14463. extra: 716 / 666,
  14464. bottom: 0.05
  14465. }
  14466. },
  14467. },
  14468. [
  14469. {
  14470. name: "Normal",
  14471. height: math.unit(5 + 4 / 12, "feet"),
  14472. default: true
  14473. },
  14474. ]
  14475. ))
  14476. characterMakers.push(() => makeCharacter(
  14477. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14478. {
  14479. front: {
  14480. height: math.unit(6, "feet"),
  14481. weight: math.unit(90, "kg"),
  14482. name: "Front",
  14483. image: {
  14484. source: "./media/characters/mirja/front.svg",
  14485. extra: 1789 / 1683,
  14486. bottom: 0.05
  14487. }
  14488. },
  14489. frontDressed: {
  14490. height: math.unit(6, "feet"),
  14491. weight: math.unit(90, "lb"),
  14492. name: "Front (Dressed)",
  14493. image: {
  14494. source: "./media/characters/mirja/front-dressed.svg",
  14495. extra: 1789 / 1683,
  14496. bottom: 0.05
  14497. }
  14498. },
  14499. back: {
  14500. height: math.unit(6, "feet"),
  14501. weight: math.unit(90, "lb"),
  14502. name: "Back",
  14503. image: {
  14504. source: "./media/characters/mirja/back.svg",
  14505. extra: 953 / 917,
  14506. bottom: 0.017
  14507. }
  14508. },
  14509. },
  14510. [
  14511. {
  14512. name: "\"Incognito\"",
  14513. height: math.unit(3, "meters")
  14514. },
  14515. {
  14516. name: "Strolling Size",
  14517. height: math.unit(15, "km")
  14518. },
  14519. {
  14520. name: "Larger Strolling Size",
  14521. height: math.unit(400, "km")
  14522. },
  14523. {
  14524. name: "Preferred Size",
  14525. height: math.unit(5000, "km")
  14526. },
  14527. {
  14528. name: "True Size",
  14529. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14530. default: true
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14536. {
  14537. front: {
  14538. height: math.unit(15, "feet"),
  14539. weight: math.unit(880, "kg"),
  14540. name: "Front",
  14541. image: {
  14542. source: "./media/characters/nightraver/front.svg",
  14543. extra: 2444 / 2160,
  14544. bottom: 0.027
  14545. }
  14546. },
  14547. back: {
  14548. height: math.unit(15, "feet"),
  14549. weight: math.unit(880, "kg"),
  14550. name: "Back",
  14551. image: {
  14552. source: "./media/characters/nightraver/back.svg",
  14553. extra: 2309 / 2180,
  14554. bottom: 0.005
  14555. }
  14556. },
  14557. sole: {
  14558. height: math.unit(2.878, "feet"),
  14559. name: "Sole",
  14560. image: {
  14561. source: "./media/characters/nightraver/sole.svg"
  14562. }
  14563. },
  14564. foot: {
  14565. height: math.unit(2.285, "feet"),
  14566. name: "Foot",
  14567. image: {
  14568. source: "./media/characters/nightraver/foot.svg"
  14569. }
  14570. },
  14571. maw: {
  14572. height: math.unit(2.67, "feet"),
  14573. name: "Maw",
  14574. image: {
  14575. source: "./media/characters/nightraver/maw.svg"
  14576. }
  14577. },
  14578. },
  14579. [
  14580. {
  14581. name: "Micro",
  14582. height: math.unit(1, "cm")
  14583. },
  14584. {
  14585. name: "Normal",
  14586. height: math.unit(15, "feet"),
  14587. default: true
  14588. },
  14589. {
  14590. name: "Macro",
  14591. height: math.unit(300, "feet")
  14592. },
  14593. {
  14594. name: "Megamacro",
  14595. height: math.unit(300, "miles")
  14596. },
  14597. {
  14598. name: "Gigamacro",
  14599. height: math.unit(10000, "miles")
  14600. },
  14601. ]
  14602. ))
  14603. characterMakers.push(() => makeCharacter(
  14604. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14605. {
  14606. side: {
  14607. height: math.unit(2, "inches"),
  14608. weight: math.unit(5, "grams"),
  14609. name: "Side",
  14610. image: {
  14611. source: "./media/characters/arc/side.svg"
  14612. }
  14613. },
  14614. },
  14615. [
  14616. {
  14617. name: "Micro",
  14618. height: math.unit(2, "inches"),
  14619. default: true
  14620. },
  14621. ]
  14622. ))
  14623. characterMakers.push(() => makeCharacter(
  14624. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14625. {
  14626. front: {
  14627. height: math.unit(1.1938, "meters"),
  14628. weight: math.unit(54, "kg"),
  14629. name: "Front",
  14630. image: {
  14631. source: "./media/characters/nebula-shahar/front.svg",
  14632. extra: 1642 / 1436,
  14633. bottom: 0.06
  14634. }
  14635. },
  14636. },
  14637. [
  14638. {
  14639. name: "Megamicro",
  14640. height: math.unit(0.3, "mm")
  14641. },
  14642. {
  14643. name: "Micro",
  14644. height: math.unit(3, "cm")
  14645. },
  14646. {
  14647. name: "Normal",
  14648. height: math.unit(138, "cm"),
  14649. default: true
  14650. },
  14651. {
  14652. name: "Macro",
  14653. height: math.unit(30, "m")
  14654. },
  14655. ]
  14656. ))
  14657. characterMakers.push(() => makeCharacter(
  14658. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14659. {
  14660. front: {
  14661. height: math.unit(5.24, "feet"),
  14662. weight: math.unit(150, "lb"),
  14663. name: "Front",
  14664. image: {
  14665. source: "./media/characters/shayla/front.svg",
  14666. extra: 1512 / 1414,
  14667. bottom: 0.01
  14668. }
  14669. },
  14670. back: {
  14671. height: math.unit(5.24, "feet"),
  14672. weight: math.unit(150, "lb"),
  14673. name: "Back",
  14674. image: {
  14675. source: "./media/characters/shayla/back.svg",
  14676. extra: 1512 / 1414
  14677. }
  14678. },
  14679. hand: {
  14680. height: math.unit(0.7781496062992126, "feet"),
  14681. name: "Hand",
  14682. image: {
  14683. source: "./media/characters/shayla/hand.svg"
  14684. }
  14685. },
  14686. foot: {
  14687. height: math.unit(1.4206036745406823, "feet"),
  14688. name: "Foot",
  14689. image: {
  14690. source: "./media/characters/shayla/foot.svg"
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Micro",
  14697. height: math.unit(0.32, "feet")
  14698. },
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(5.24, "feet"),
  14702. default: true
  14703. },
  14704. {
  14705. name: "Macro",
  14706. height: math.unit(492.12, "feet")
  14707. },
  14708. {
  14709. name: "Megamacro",
  14710. height: math.unit(186.41, "miles")
  14711. },
  14712. ]
  14713. ))
  14714. characterMakers.push(() => makeCharacter(
  14715. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14716. {
  14717. front: {
  14718. height: math.unit(2.2, "m"),
  14719. weight: math.unit(120, "kg"),
  14720. name: "Front",
  14721. image: {
  14722. source: "./media/characters/pia-jr/front.svg",
  14723. extra: 1000 / 970,
  14724. bottom: 0.035
  14725. }
  14726. },
  14727. hand: {
  14728. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14729. name: "Hand",
  14730. image: {
  14731. source: "./media/characters/pia-jr/hand.svg"
  14732. }
  14733. },
  14734. paw: {
  14735. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14736. name: "Paw",
  14737. image: {
  14738. source: "./media/characters/pia-jr/paw.svg"
  14739. }
  14740. },
  14741. },
  14742. [
  14743. {
  14744. name: "Micro",
  14745. height: math.unit(1.2, "cm")
  14746. },
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(2.2, "m"),
  14750. default: true
  14751. },
  14752. {
  14753. name: "Macro",
  14754. height: math.unit(180, "m")
  14755. },
  14756. {
  14757. name: "Megamacro",
  14758. height: math.unit(420, "km")
  14759. },
  14760. ]
  14761. ))
  14762. characterMakers.push(() => makeCharacter(
  14763. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14764. {
  14765. front: {
  14766. height: math.unit(2, "m"),
  14767. weight: math.unit(115, "kg"),
  14768. name: "Front",
  14769. image: {
  14770. source: "./media/characters/pia-sr/front.svg",
  14771. extra: 760 / 730,
  14772. bottom: 0.015
  14773. }
  14774. },
  14775. back: {
  14776. height: math.unit(2, "m"),
  14777. weight: math.unit(115, "kg"),
  14778. name: "Back",
  14779. image: {
  14780. source: "./media/characters/pia-sr/back.svg",
  14781. extra: 760 / 730,
  14782. bottom: 0.01
  14783. }
  14784. },
  14785. hand: {
  14786. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14787. name: "Hand",
  14788. image: {
  14789. source: "./media/characters/pia-sr/hand.svg"
  14790. }
  14791. },
  14792. foot: {
  14793. height: math.unit(1.83, "feet"),
  14794. name: "Foot",
  14795. image: {
  14796. source: "./media/characters/pia-sr/foot.svg"
  14797. }
  14798. },
  14799. },
  14800. [
  14801. {
  14802. name: "Micro",
  14803. height: math.unit(88, "mm")
  14804. },
  14805. {
  14806. name: "Normal",
  14807. height: math.unit(2, "m"),
  14808. default: true
  14809. },
  14810. {
  14811. name: "Macro",
  14812. height: math.unit(200, "m")
  14813. },
  14814. {
  14815. name: "Megamacro",
  14816. height: math.unit(420, "km")
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14822. {
  14823. front: {
  14824. height: math.unit(8 + 2 / 12, "feet"),
  14825. weight: math.unit(300, "lb"),
  14826. name: "Front",
  14827. image: {
  14828. source: "./media/characters/kibibyte/front.svg",
  14829. extra: 2221 / 2098,
  14830. bottom: 0.04
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(8 + 2 / 12, "feet"),
  14838. default: true
  14839. },
  14840. {
  14841. name: "Socialable Macro",
  14842. height: math.unit(50, "feet")
  14843. },
  14844. {
  14845. name: "Macro",
  14846. height: math.unit(300, "feet")
  14847. },
  14848. {
  14849. name: "Megamacro",
  14850. height: math.unit(500, "miles")
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14856. {
  14857. front: {
  14858. height: math.unit(6, "feet"),
  14859. weight: math.unit(150, "lb"),
  14860. name: "Front",
  14861. image: {
  14862. source: "./media/characters/felix/front.svg",
  14863. extra: 762 / 722,
  14864. bottom: 0.02
  14865. }
  14866. },
  14867. frontClothed: {
  14868. height: math.unit(6, "feet"),
  14869. weight: math.unit(150, "lb"),
  14870. name: "Front (Clothed)",
  14871. image: {
  14872. source: "./media/characters/felix/front-clothed.svg",
  14873. extra: 762 / 722,
  14874. bottom: 0.02
  14875. }
  14876. },
  14877. },
  14878. [
  14879. {
  14880. name: "Normal",
  14881. height: math.unit(6 + 8 / 12, "feet"),
  14882. default: true
  14883. },
  14884. {
  14885. name: "Macro",
  14886. height: math.unit(2600, "feet")
  14887. },
  14888. {
  14889. name: "Megamacro",
  14890. height: math.unit(450, "miles")
  14891. },
  14892. ]
  14893. ))
  14894. characterMakers.push(() => makeCharacter(
  14895. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14896. {
  14897. front: {
  14898. height: math.unit(6 + 1 / 12, "feet"),
  14899. weight: math.unit(250, "lb"),
  14900. name: "Front",
  14901. image: {
  14902. source: "./media/characters/tobo/front.svg",
  14903. extra: 608 / 586,
  14904. bottom: 0.023
  14905. }
  14906. },
  14907. back: {
  14908. height: math.unit(6 + 1 / 12, "feet"),
  14909. weight: math.unit(250, "lb"),
  14910. name: "Back",
  14911. image: {
  14912. source: "./media/characters/tobo/back.svg",
  14913. extra: 608 / 586
  14914. }
  14915. },
  14916. },
  14917. [
  14918. {
  14919. name: "Nano",
  14920. height: math.unit(2, "nm")
  14921. },
  14922. {
  14923. name: "Megamicro",
  14924. height: math.unit(0.1, "mm")
  14925. },
  14926. {
  14927. name: "Micro",
  14928. height: math.unit(1, "inch"),
  14929. default: true
  14930. },
  14931. {
  14932. name: "Human-sized",
  14933. height: math.unit(6 + 1 / 12, "feet")
  14934. },
  14935. {
  14936. name: "Macro",
  14937. height: math.unit(250, "feet")
  14938. },
  14939. {
  14940. name: "Megamacro",
  14941. height: math.unit(75, "miles")
  14942. },
  14943. {
  14944. name: "Texas-sized",
  14945. height: math.unit(750, "miles")
  14946. },
  14947. {
  14948. name: "Teramacro",
  14949. height: math.unit(50000, "miles")
  14950. },
  14951. ]
  14952. ))
  14953. characterMakers.push(() => makeCharacter(
  14954. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14955. {
  14956. front: {
  14957. height: math.unit(6, "feet"),
  14958. weight: math.unit(269, "lb"),
  14959. name: "Front",
  14960. image: {
  14961. source: "./media/characters/danny-kapowsky/front.svg",
  14962. extra: 766 / 736,
  14963. bottom: 0.044
  14964. }
  14965. },
  14966. back: {
  14967. height: math.unit(6, "feet"),
  14968. weight: math.unit(269, "lb"),
  14969. name: "Back",
  14970. image: {
  14971. source: "./media/characters/danny-kapowsky/back.svg",
  14972. extra: 797 / 760,
  14973. bottom: 0.025
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "Macro",
  14980. height: math.unit(150, "feet"),
  14981. default: true
  14982. },
  14983. {
  14984. name: "Macro+",
  14985. height: math.unit(200, "feet")
  14986. },
  14987. {
  14988. name: "Macro++",
  14989. height: math.unit(300, "feet")
  14990. },
  14991. {
  14992. name: "Macro+++",
  14993. height: math.unit(400, "feet")
  14994. },
  14995. ]
  14996. ))
  14997. characterMakers.push(() => makeCharacter(
  14998. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14999. {
  15000. side: {
  15001. height: math.unit(6, "feet"),
  15002. weight: math.unit(170, "lb"),
  15003. name: "Side",
  15004. image: {
  15005. source: "./media/characters/finn/side.svg",
  15006. extra: 1953 / 1807,
  15007. bottom: 0.057
  15008. }
  15009. },
  15010. },
  15011. [
  15012. {
  15013. name: "Megamacro",
  15014. height: math.unit(14445, "feet"),
  15015. default: true
  15016. },
  15017. ]
  15018. ))
  15019. characterMakers.push(() => makeCharacter(
  15020. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15021. {
  15022. front: {
  15023. height: math.unit(5 + 6 / 12, "feet"),
  15024. weight: math.unit(125, "lb"),
  15025. name: "Front",
  15026. image: {
  15027. source: "./media/characters/roy/front.svg",
  15028. extra: 1,
  15029. bottom: 0.11
  15030. }
  15031. },
  15032. },
  15033. [
  15034. {
  15035. name: "Micro",
  15036. height: math.unit(3, "inches"),
  15037. default: true
  15038. },
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(5 + 6 / 12, "feet")
  15042. },
  15043. {
  15044. name: "Lesser Macro",
  15045. height: math.unit(60, "feet")
  15046. },
  15047. {
  15048. name: "Greater Macro",
  15049. height: math.unit(120, "feet")
  15050. },
  15051. ]
  15052. ))
  15053. characterMakers.push(() => makeCharacter(
  15054. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15055. {
  15056. front: {
  15057. height: math.unit(6, "feet"),
  15058. weight: math.unit(100, "lb"),
  15059. name: "Front",
  15060. image: {
  15061. source: "./media/characters/aevsivs/front.svg",
  15062. extra: 1,
  15063. bottom: 0.03
  15064. }
  15065. },
  15066. back: {
  15067. height: math.unit(6, "feet"),
  15068. weight: math.unit(100, "lb"),
  15069. name: "Back",
  15070. image: {
  15071. source: "./media/characters/aevsivs/back.svg"
  15072. }
  15073. },
  15074. },
  15075. [
  15076. {
  15077. name: "Micro",
  15078. height: math.unit(2, "inches"),
  15079. default: true
  15080. },
  15081. {
  15082. name: "Normal",
  15083. height: math.unit(5, "feet")
  15084. },
  15085. ]
  15086. ))
  15087. characterMakers.push(() => makeCharacter(
  15088. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15089. {
  15090. front: {
  15091. height: math.unit(5 + 7 / 12, "feet"),
  15092. weight: math.unit(159, "lb"),
  15093. name: "Front",
  15094. image: {
  15095. source: "./media/characters/hildegard/front.svg",
  15096. extra: 289 / 269,
  15097. bottom: 7.63 / 297.8
  15098. }
  15099. },
  15100. back: {
  15101. height: math.unit(5 + 7 / 12, "feet"),
  15102. weight: math.unit(159, "lb"),
  15103. name: "Back",
  15104. image: {
  15105. source: "./media/characters/hildegard/back.svg",
  15106. extra: 280 / 260,
  15107. bottom: 2.3 / 282
  15108. }
  15109. },
  15110. },
  15111. [
  15112. {
  15113. name: "Normal",
  15114. height: math.unit(5 + 7 / 12, "feet"),
  15115. default: true
  15116. },
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15121. {
  15122. bernard: {
  15123. height: math.unit(2 + 7 / 12, "feet"),
  15124. weight: math.unit(66, "lb"),
  15125. name: "Bernard",
  15126. rename: true,
  15127. image: {
  15128. source: "./media/characters/bernard-wilder/bernard.svg",
  15129. extra: 192 / 128,
  15130. bottom: 0.05
  15131. }
  15132. },
  15133. wilder: {
  15134. height: math.unit(5 + 8 / 12, "feet"),
  15135. weight: math.unit(143, "lb"),
  15136. name: "Wilder",
  15137. rename: true,
  15138. image: {
  15139. source: "./media/characters/bernard-wilder/wilder.svg",
  15140. extra: 361 / 312,
  15141. bottom: 0.02
  15142. }
  15143. },
  15144. },
  15145. [
  15146. {
  15147. name: "Normal",
  15148. height: math.unit(2 + 7 / 12, "feet"),
  15149. default: true
  15150. },
  15151. ]
  15152. ))
  15153. characterMakers.push(() => makeCharacter(
  15154. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15155. {
  15156. anthro: {
  15157. height: math.unit(6 + 1 / 12, "feet"),
  15158. weight: math.unit(155, "lb"),
  15159. name: "Anthro",
  15160. image: {
  15161. source: "./media/characters/hearth/anthro.svg",
  15162. extra: 1178/1136,
  15163. bottom: 28/1206
  15164. }
  15165. },
  15166. feral: {
  15167. height: math.unit(3.78, "feet"),
  15168. weight: math.unit(35, "kg"),
  15169. name: "Feral",
  15170. image: {
  15171. source: "./media/characters/hearth/feral.svg",
  15172. extra: 153 / 135,
  15173. bottom: 0.03
  15174. }
  15175. },
  15176. },
  15177. [
  15178. {
  15179. name: "Normal",
  15180. height: math.unit(6 + 1 / 12, "feet"),
  15181. default: true
  15182. },
  15183. ]
  15184. ))
  15185. characterMakers.push(() => makeCharacter(
  15186. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15187. {
  15188. front: {
  15189. height: math.unit(6, "feet"),
  15190. weight: math.unit(182, "lb"),
  15191. name: "Front",
  15192. image: {
  15193. source: "./media/characters/ingrid/front.svg",
  15194. extra: 294 / 268,
  15195. bottom: 0.027
  15196. }
  15197. },
  15198. },
  15199. [
  15200. {
  15201. name: "Normal",
  15202. height: math.unit(6, "feet"),
  15203. default: true
  15204. },
  15205. ]
  15206. ))
  15207. characterMakers.push(() => makeCharacter(
  15208. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15209. {
  15210. eevee: {
  15211. height: math.unit(2 + 10 / 12, "feet"),
  15212. weight: math.unit(86, "lb"),
  15213. name: "Malgam",
  15214. image: {
  15215. source: "./media/characters/malgam/eevee.svg",
  15216. extra: 952/784,
  15217. bottom: 38/990
  15218. }
  15219. },
  15220. sylveon: {
  15221. height: math.unit(4, "feet"),
  15222. weight: math.unit(101, "lb"),
  15223. name: "Future Malgam",
  15224. rename: true,
  15225. image: {
  15226. source: "./media/characters/malgam/sylveon.svg",
  15227. extra: 371 / 325,
  15228. bottom: 0.015
  15229. }
  15230. },
  15231. gigantamax: {
  15232. height: math.unit(50, "feet"),
  15233. name: "Gigantamax Malgam",
  15234. rename: true,
  15235. image: {
  15236. source: "./media/characters/malgam/gigantamax.svg"
  15237. }
  15238. },
  15239. },
  15240. [
  15241. {
  15242. name: "Normal",
  15243. height: math.unit(2 + 10 / 12, "feet"),
  15244. default: true
  15245. },
  15246. ]
  15247. ))
  15248. characterMakers.push(() => makeCharacter(
  15249. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15250. {
  15251. front: {
  15252. height: math.unit(5 + 11 / 12, "feet"),
  15253. weight: math.unit(188, "lb"),
  15254. name: "Front",
  15255. image: {
  15256. source: "./media/characters/fleur/front.svg",
  15257. extra: 309 / 283,
  15258. bottom: 0.007
  15259. }
  15260. },
  15261. },
  15262. [
  15263. {
  15264. name: "Normal",
  15265. height: math.unit(5 + 11 / 12, "feet"),
  15266. default: true
  15267. },
  15268. ]
  15269. ))
  15270. characterMakers.push(() => makeCharacter(
  15271. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15272. {
  15273. front: {
  15274. height: math.unit(5 + 4 / 12, "feet"),
  15275. weight: math.unit(122, "lb"),
  15276. name: "Front",
  15277. image: {
  15278. source: "./media/characters/jude/front.svg",
  15279. extra: 288 / 273,
  15280. bottom: 0.03
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Normal",
  15287. height: math.unit(5 + 4 / 12, "feet"),
  15288. default: true
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15294. {
  15295. front: {
  15296. height: math.unit(5 + 11 / 12, "feet"),
  15297. weight: math.unit(190, "lb"),
  15298. name: "Front",
  15299. image: {
  15300. source: "./media/characters/seara/front.svg",
  15301. extra: 1,
  15302. bottom: 0.05
  15303. }
  15304. },
  15305. },
  15306. [
  15307. {
  15308. name: "Normal",
  15309. height: math.unit(5 + 11 / 12, "feet"),
  15310. default: true
  15311. },
  15312. ]
  15313. ))
  15314. characterMakers.push(() => makeCharacter(
  15315. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15316. {
  15317. front: {
  15318. height: math.unit(16 + 5 / 12, "feet"),
  15319. weight: math.unit(524, "lb"),
  15320. name: "Front",
  15321. image: {
  15322. source: "./media/characters/caspian/front.svg",
  15323. extra: 1,
  15324. bottom: 0.04
  15325. }
  15326. },
  15327. },
  15328. [
  15329. {
  15330. name: "Normal",
  15331. height: math.unit(16 + 5 / 12, "feet"),
  15332. default: true
  15333. },
  15334. ]
  15335. ))
  15336. characterMakers.push(() => makeCharacter(
  15337. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15338. {
  15339. front: {
  15340. height: math.unit(5 + 7 / 12, "feet"),
  15341. weight: math.unit(170, "lb"),
  15342. name: "Front",
  15343. image: {
  15344. source: "./media/characters/mika/front.svg",
  15345. extra: 1,
  15346. bottom: 0.016
  15347. }
  15348. },
  15349. },
  15350. [
  15351. {
  15352. name: "Normal",
  15353. height: math.unit(5 + 7 / 12, "feet"),
  15354. default: true
  15355. },
  15356. ]
  15357. ))
  15358. characterMakers.push(() => makeCharacter(
  15359. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15360. {
  15361. front: {
  15362. height: math.unit(6 + 2 / 12, "feet"),
  15363. weight: math.unit(268, "lb"),
  15364. name: "Front",
  15365. image: {
  15366. source: "./media/characters/sol/front.svg",
  15367. extra: 247 / 231,
  15368. bottom: 0.05
  15369. }
  15370. },
  15371. },
  15372. [
  15373. {
  15374. name: "Normal",
  15375. height: math.unit(6 + 2 / 12, "feet"),
  15376. default: true
  15377. },
  15378. ]
  15379. ))
  15380. characterMakers.push(() => makeCharacter(
  15381. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15382. {
  15383. buizel: {
  15384. height: math.unit(2 + 5 / 12, "feet"),
  15385. weight: math.unit(87, "lb"),
  15386. name: "Buizel",
  15387. image: {
  15388. source: "./media/characters/umiko/buizel.svg",
  15389. extra: 172 / 157,
  15390. bottom: 0.01
  15391. }
  15392. },
  15393. floatzel: {
  15394. height: math.unit(5 + 9 / 12, "feet"),
  15395. weight: math.unit(250, "lb"),
  15396. name: "Floatzel",
  15397. image: {
  15398. source: "./media/characters/umiko/floatzel.svg",
  15399. extra: 262 / 248
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(2 + 5 / 12, "feet"),
  15407. default: true
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(6 + 2 / 12, "feet"),
  15416. weight: math.unit(146, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/iliac/front.svg",
  15420. extra: 389 / 365,
  15421. bottom: 0.035
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(6 + 2 / 12, "feet"),
  15429. default: true
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15435. {
  15436. front: {
  15437. height: math.unit(6, "feet"),
  15438. weight: math.unit(170, "lb"),
  15439. name: "Front",
  15440. image: {
  15441. source: "./media/characters/topaz/front.svg",
  15442. extra: 317 / 303,
  15443. bottom: 0.055
  15444. }
  15445. },
  15446. },
  15447. [
  15448. {
  15449. name: "Normal",
  15450. height: math.unit(6, "feet"),
  15451. default: true
  15452. },
  15453. ]
  15454. ))
  15455. characterMakers.push(() => makeCharacter(
  15456. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15457. {
  15458. front: {
  15459. height: math.unit(5 + 11 / 12, "feet"),
  15460. weight: math.unit(144, "lb"),
  15461. name: "Front",
  15462. image: {
  15463. source: "./media/characters/gabriel/front.svg",
  15464. extra: 285 / 262,
  15465. bottom: 0.004
  15466. }
  15467. },
  15468. },
  15469. [
  15470. {
  15471. name: "Normal",
  15472. height: math.unit(5 + 11 / 12, "feet"),
  15473. default: true
  15474. },
  15475. ]
  15476. ))
  15477. characterMakers.push(() => makeCharacter(
  15478. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15479. {
  15480. side: {
  15481. height: math.unit(6 + 5 / 12, "feet"),
  15482. weight: math.unit(300, "lb"),
  15483. name: "Side",
  15484. image: {
  15485. source: "./media/characters/tempest-suicune/side.svg",
  15486. extra: 195 / 154,
  15487. bottom: 0.04
  15488. }
  15489. },
  15490. },
  15491. [
  15492. {
  15493. name: "Normal",
  15494. height: math.unit(6 + 5 / 12, "feet"),
  15495. default: true
  15496. },
  15497. ]
  15498. ))
  15499. characterMakers.push(() => makeCharacter(
  15500. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15501. {
  15502. front: {
  15503. height: math.unit(7 + 2 / 12, "feet"),
  15504. weight: math.unit(322, "lb"),
  15505. name: "Front",
  15506. image: {
  15507. source: "./media/characters/vulcan/front.svg",
  15508. extra: 154 / 147,
  15509. bottom: 0.04
  15510. }
  15511. },
  15512. },
  15513. [
  15514. {
  15515. name: "Normal",
  15516. height: math.unit(7 + 2 / 12, "feet"),
  15517. default: true
  15518. },
  15519. ]
  15520. ))
  15521. characterMakers.push(() => makeCharacter(
  15522. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15523. {
  15524. front: {
  15525. height: math.unit(5 + 10 / 12, "feet"),
  15526. weight: math.unit(264, "lb"),
  15527. name: "Front",
  15528. image: {
  15529. source: "./media/characters/gault/front.svg",
  15530. extra: 161 / 140,
  15531. bottom: 0.028
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Normal",
  15538. height: math.unit(5 + 10 / 12, "feet"),
  15539. default: true
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15545. {
  15546. front: {
  15547. height: math.unit(6, "feet"),
  15548. weight: math.unit(150, "lb"),
  15549. name: "Front",
  15550. image: {
  15551. source: "./media/characters/shard/front.svg",
  15552. extra: 273 / 238,
  15553. bottom: 0.02
  15554. }
  15555. },
  15556. },
  15557. [
  15558. {
  15559. name: "Normal",
  15560. height: math.unit(3 + 6 / 12, "feet"),
  15561. default: true
  15562. },
  15563. ]
  15564. ))
  15565. characterMakers.push(() => makeCharacter(
  15566. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15567. {
  15568. front: {
  15569. height: math.unit(5 + 11 / 12, "feet"),
  15570. weight: math.unit(146, "lb"),
  15571. name: "Front",
  15572. image: {
  15573. source: "./media/characters/ashe/front.svg",
  15574. extra: 400 / 373,
  15575. bottom: 0.01
  15576. }
  15577. },
  15578. },
  15579. [
  15580. {
  15581. name: "Normal",
  15582. height: math.unit(5 + 11 / 12, "feet"),
  15583. default: true
  15584. },
  15585. ]
  15586. ))
  15587. characterMakers.push(() => makeCharacter(
  15588. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15589. {
  15590. front: {
  15591. height: math.unit(5 + 5 / 12, "feet"),
  15592. weight: math.unit(135, "lb"),
  15593. name: "Front",
  15594. image: {
  15595. source: "./media/characters/beatrix/front.svg",
  15596. extra: 392 / 379,
  15597. bottom: 0.01
  15598. }
  15599. },
  15600. },
  15601. [
  15602. {
  15603. name: "Normal",
  15604. height: math.unit(6, "feet"),
  15605. default: true
  15606. },
  15607. ]
  15608. ))
  15609. characterMakers.push(() => makeCharacter(
  15610. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15611. {
  15612. front: {
  15613. height: math.unit(6 + 2/12, "feet"),
  15614. weight: math.unit(135, "lb"),
  15615. name: "Front",
  15616. image: {
  15617. source: "./media/characters/ignatius/front.svg",
  15618. extra: 1380/1259,
  15619. bottom: 27/1407
  15620. }
  15621. },
  15622. },
  15623. [
  15624. {
  15625. name: "Normal",
  15626. height: math.unit(6 + 2/12, "feet"),
  15627. default: true
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15633. {
  15634. front: {
  15635. height: math.unit(6 + 2 / 12, "feet"),
  15636. weight: math.unit(138, "lb"),
  15637. name: "Front",
  15638. image: {
  15639. source: "./media/characters/mei-li/front.svg",
  15640. extra: 237 / 229,
  15641. bottom: 0.03
  15642. }
  15643. },
  15644. },
  15645. [
  15646. {
  15647. name: "Normal",
  15648. height: math.unit(6 + 2 / 12, "feet"),
  15649. default: true
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(2 + 4 / 12, "feet"),
  15658. weight: math.unit(62, "lb"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/puru/front.svg",
  15662. extra: 206 / 149,
  15663. bottom: 0.06
  15664. }
  15665. },
  15666. },
  15667. [
  15668. {
  15669. name: "Normal",
  15670. height: math.unit(2 + 4 / 12, "feet"),
  15671. default: true
  15672. },
  15673. ]
  15674. ))
  15675. characterMakers.push(() => makeCharacter(
  15676. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15677. {
  15678. anthro: {
  15679. height: math.unit(5 + 8/12, "feet"),
  15680. weight: math.unit(200, "lb"),
  15681. energyNeed: math.unit(2000, "kcal"),
  15682. name: "Anthro",
  15683. image: {
  15684. source: "./media/characters/kee/anthro.svg",
  15685. extra: 3251/3184,
  15686. bottom: 250/3501
  15687. }
  15688. },
  15689. taur: {
  15690. height: math.unit(11, "feet"),
  15691. weight: math.unit(500, "lb"),
  15692. energyNeed: math.unit(5000, "kcal"),
  15693. name: "Taur",
  15694. image: {
  15695. source: "./media/characters/kee/taur.svg",
  15696. extra: 1362/1320,
  15697. bottom: 83/1445
  15698. }
  15699. },
  15700. },
  15701. [
  15702. {
  15703. name: "Normal",
  15704. height: math.unit(5 + 8/12, "feet"),
  15705. default: true
  15706. },
  15707. {
  15708. name: "Macro",
  15709. height: math.unit(35, "feet")
  15710. },
  15711. ]
  15712. ))
  15713. characterMakers.push(() => makeCharacter(
  15714. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15715. {
  15716. anthro: {
  15717. height: math.unit(7, "feet"),
  15718. weight: math.unit(190, "lb"),
  15719. name: "Anthro",
  15720. image: {
  15721. source: "./media/characters/cobalt-dracha/anthro.svg",
  15722. extra: 231 / 225,
  15723. bottom: 0.04
  15724. }
  15725. },
  15726. feral: {
  15727. height: math.unit(9 + 7 / 12, "feet"),
  15728. weight: math.unit(294, "lb"),
  15729. name: "Feral",
  15730. image: {
  15731. source: "./media/characters/cobalt-dracha/feral.svg",
  15732. extra: 692 / 633,
  15733. bottom: 0.05
  15734. }
  15735. },
  15736. },
  15737. [
  15738. {
  15739. name: "Normal",
  15740. height: math.unit(7, "feet"),
  15741. default: true
  15742. },
  15743. ]
  15744. ))
  15745. characterMakers.push(() => makeCharacter(
  15746. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15747. {
  15748. fallen: {
  15749. height: math.unit(11 + 8 / 12, "feet"),
  15750. weight: math.unit(485, "lb"),
  15751. name: "Java (Fallen)",
  15752. rename: true,
  15753. image: {
  15754. source: "./media/characters/java/fallen.svg",
  15755. extra: 226 / 208,
  15756. bottom: 0.005
  15757. }
  15758. },
  15759. godkin: {
  15760. height: math.unit(10 + 6 / 12, "feet"),
  15761. weight: math.unit(328, "lb"),
  15762. name: "Java (Godkin)",
  15763. rename: true,
  15764. image: {
  15765. source: "./media/characters/java/godkin.svg",
  15766. extra: 1104/1068,
  15767. bottom: 36/1140
  15768. }
  15769. },
  15770. },
  15771. [
  15772. {
  15773. name: "Normal",
  15774. height: math.unit(11 + 8 / 12, "feet"),
  15775. default: true
  15776. },
  15777. ]
  15778. ))
  15779. characterMakers.push(() => makeCharacter(
  15780. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15781. {
  15782. front: {
  15783. height: math.unit(5 + 9 / 12, "feet"),
  15784. weight: math.unit(170, "lb"),
  15785. name: "Front",
  15786. image: {
  15787. source: "./media/characters/purna/front.svg",
  15788. extra: 239 / 229,
  15789. bottom: 0.01
  15790. }
  15791. },
  15792. },
  15793. [
  15794. {
  15795. name: "Normal",
  15796. height: math.unit(5 + 9 / 12, "feet"),
  15797. default: true
  15798. },
  15799. ]
  15800. ))
  15801. characterMakers.push(() => makeCharacter(
  15802. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15803. {
  15804. front: {
  15805. height: math.unit(5 + 9 / 12, "feet"),
  15806. weight: math.unit(142, "lb"),
  15807. name: "Front",
  15808. image: {
  15809. source: "./media/characters/kuva/front.svg",
  15810. extra: 281 / 271,
  15811. bottom: 0.006
  15812. }
  15813. },
  15814. },
  15815. [
  15816. {
  15817. name: "Normal",
  15818. height: math.unit(5 + 9 / 12, "feet"),
  15819. default: true
  15820. },
  15821. ]
  15822. ))
  15823. characterMakers.push(() => makeCharacter(
  15824. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15825. {
  15826. anthro: {
  15827. height: math.unit(9 + 2 / 12, "feet"),
  15828. weight: math.unit(270, "lb"),
  15829. name: "Anthro",
  15830. image: {
  15831. source: "./media/characters/embra/anthro.svg",
  15832. extra: 200 / 187,
  15833. bottom: 0.02
  15834. }
  15835. },
  15836. feral: {
  15837. height: math.unit(18 + 8 / 12, "feet"),
  15838. weight: math.unit(576, "lb"),
  15839. name: "Feral",
  15840. image: {
  15841. source: "./media/characters/embra/feral.svg",
  15842. extra: 152 / 137,
  15843. bottom: 0.037
  15844. }
  15845. },
  15846. },
  15847. [
  15848. {
  15849. name: "Normal",
  15850. height: math.unit(9 + 2 / 12, "feet"),
  15851. default: true
  15852. },
  15853. ]
  15854. ))
  15855. characterMakers.push(() => makeCharacter(
  15856. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15857. {
  15858. anthro: {
  15859. height: math.unit(10 + 9 / 12, "feet"),
  15860. weight: math.unit(224, "lb"),
  15861. name: "Anthro",
  15862. image: {
  15863. source: "./media/characters/grottos/anthro.svg",
  15864. extra: 350 / 332,
  15865. bottom: 0.045
  15866. }
  15867. },
  15868. feral: {
  15869. height: math.unit(20 + 7 / 12, "feet"),
  15870. weight: math.unit(629, "lb"),
  15871. name: "Feral",
  15872. image: {
  15873. source: "./media/characters/grottos/feral.svg",
  15874. extra: 207 / 190,
  15875. bottom: 0.05
  15876. }
  15877. },
  15878. },
  15879. [
  15880. {
  15881. name: "Normal",
  15882. height: math.unit(10 + 9 / 12, "feet"),
  15883. default: true
  15884. },
  15885. ]
  15886. ))
  15887. characterMakers.push(() => makeCharacter(
  15888. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15889. {
  15890. anthro: {
  15891. height: math.unit(9 + 6 / 12, "feet"),
  15892. weight: math.unit(298, "lb"),
  15893. name: "Anthro",
  15894. image: {
  15895. source: "./media/characters/frifna/anthro.svg",
  15896. extra: 282 / 269,
  15897. bottom: 0.015
  15898. }
  15899. },
  15900. feral: {
  15901. height: math.unit(16 + 2 / 12, "feet"),
  15902. weight: math.unit(624, "lb"),
  15903. name: "Feral",
  15904. image: {
  15905. source: "./media/characters/frifna/feral.svg"
  15906. }
  15907. },
  15908. },
  15909. [
  15910. {
  15911. name: "Normal",
  15912. height: math.unit(9 + 6 / 12, "feet"),
  15913. default: true
  15914. },
  15915. ]
  15916. ))
  15917. characterMakers.push(() => makeCharacter(
  15918. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15919. {
  15920. front: {
  15921. height: math.unit(6 + 2 / 12, "feet"),
  15922. weight: math.unit(168, "lb"),
  15923. name: "Front",
  15924. image: {
  15925. source: "./media/characters/elise/front.svg",
  15926. extra: 276 / 271
  15927. }
  15928. },
  15929. },
  15930. [
  15931. {
  15932. name: "Normal",
  15933. height: math.unit(6 + 2 / 12, "feet"),
  15934. default: true
  15935. },
  15936. ]
  15937. ))
  15938. characterMakers.push(() => makeCharacter(
  15939. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15940. {
  15941. front: {
  15942. height: math.unit(5 + 10 / 12, "feet"),
  15943. weight: math.unit(210, "lb"),
  15944. name: "Front",
  15945. image: {
  15946. source: "./media/characters/glade/front.svg",
  15947. extra: 258 / 247,
  15948. bottom: 0.008
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Normal",
  15955. height: math.unit(5 + 10 / 12, "feet"),
  15956. default: true
  15957. },
  15958. ]
  15959. ))
  15960. characterMakers.push(() => makeCharacter(
  15961. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15962. {
  15963. front: {
  15964. height: math.unit(5 + 10 / 12, "feet"),
  15965. weight: math.unit(129, "lb"),
  15966. name: "Front",
  15967. image: {
  15968. source: "./media/characters/rina/front.svg",
  15969. extra: 266 / 255,
  15970. bottom: 0.005
  15971. }
  15972. },
  15973. },
  15974. [
  15975. {
  15976. name: "Normal",
  15977. height: math.unit(5 + 10 / 12, "feet"),
  15978. default: true
  15979. },
  15980. ]
  15981. ))
  15982. characterMakers.push(() => makeCharacter(
  15983. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15984. {
  15985. front: {
  15986. height: math.unit(6 + 1 / 12, "feet"),
  15987. weight: math.unit(192, "lb"),
  15988. name: "Front",
  15989. image: {
  15990. source: "./media/characters/veronica/front.svg",
  15991. extra: 319 / 309,
  15992. bottom: 0.005
  15993. }
  15994. },
  15995. },
  15996. [
  15997. {
  15998. name: "Normal",
  15999. height: math.unit(6 + 1 / 12, "feet"),
  16000. default: true
  16001. },
  16002. ]
  16003. ))
  16004. characterMakers.push(() => makeCharacter(
  16005. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16006. {
  16007. front: {
  16008. height: math.unit(9 + 3 / 12, "feet"),
  16009. weight: math.unit(1100, "lb"),
  16010. name: "Front",
  16011. image: {
  16012. source: "./media/characters/braxton/front.svg",
  16013. extra: 1057 / 984,
  16014. bottom: 0.05
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Normal",
  16021. height: math.unit(9 + 3 / 12, "feet")
  16022. },
  16023. {
  16024. name: "Giant",
  16025. height: math.unit(300, "feet"),
  16026. default: true
  16027. },
  16028. {
  16029. name: "Macro",
  16030. height: math.unit(700, "feet")
  16031. },
  16032. {
  16033. name: "Megamacro",
  16034. height: math.unit(6000, "feet")
  16035. },
  16036. ]
  16037. ))
  16038. characterMakers.push(() => makeCharacter(
  16039. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16040. {
  16041. front: {
  16042. height: math.unit(6 + 7 / 12, "feet"),
  16043. weight: math.unit(150, "lb"),
  16044. name: "Front",
  16045. image: {
  16046. source: "./media/characters/blue-feyonics/front.svg",
  16047. extra: 1403 / 1306,
  16048. bottom: 0.047
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(6 + 7 / 12, "feet"),
  16056. default: true
  16057. },
  16058. ]
  16059. ))
  16060. characterMakers.push(() => makeCharacter(
  16061. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16062. {
  16063. front: {
  16064. height: math.unit(1.8, "meters"),
  16065. weight: math.unit(60, "kg"),
  16066. name: "Front",
  16067. image: {
  16068. source: "./media/characters/maxwell/front.svg",
  16069. extra: 2060 / 1873
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Micro",
  16076. height: math.unit(1, "mm")
  16077. },
  16078. {
  16079. name: "Normal",
  16080. height: math.unit(1.8, "meter"),
  16081. default: true
  16082. },
  16083. {
  16084. name: "Macro",
  16085. height: math.unit(30, "meters")
  16086. },
  16087. {
  16088. name: "Megamacro",
  16089. height: math.unit(10, "km")
  16090. },
  16091. ]
  16092. ))
  16093. characterMakers.push(() => makeCharacter(
  16094. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16095. {
  16096. front: {
  16097. height: math.unit(6, "feet"),
  16098. weight: math.unit(150, "lb"),
  16099. name: "Front",
  16100. image: {
  16101. source: "./media/characters/jack/front.svg",
  16102. extra: 1754 / 1640,
  16103. bottom: 0.01
  16104. }
  16105. },
  16106. },
  16107. [
  16108. {
  16109. name: "Normal",
  16110. height: math.unit(80000, "feet"),
  16111. default: true
  16112. },
  16113. {
  16114. name: "Max size",
  16115. height: math.unit(10, "lightyears")
  16116. },
  16117. ]
  16118. ))
  16119. characterMakers.push(() => makeCharacter(
  16120. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16121. {
  16122. urban: {
  16123. height: math.unit(5, "feet"),
  16124. weight: math.unit(240, "lb"),
  16125. name: "Urban",
  16126. image: {
  16127. source: "./media/characters/cafat/urban.svg",
  16128. extra: 1223/1126,
  16129. bottom: 205/1428
  16130. }
  16131. },
  16132. summer: {
  16133. height: math.unit(5, "feet"),
  16134. weight: math.unit(240, "lb"),
  16135. name: "Summer",
  16136. image: {
  16137. source: "./media/characters/cafat/summer.svg",
  16138. extra: 1223/1126,
  16139. bottom: 205/1428
  16140. }
  16141. },
  16142. winter: {
  16143. height: math.unit(5, "feet"),
  16144. weight: math.unit(240, "lb"),
  16145. name: "Winter",
  16146. image: {
  16147. source: "./media/characters/cafat/winter.svg",
  16148. extra: 1223/1126,
  16149. bottom: 205/1428
  16150. }
  16151. },
  16152. lingerie: {
  16153. height: math.unit(5, "feet"),
  16154. weight: math.unit(240, "lb"),
  16155. name: "Lingerie",
  16156. image: {
  16157. source: "./media/characters/cafat/lingerie.svg",
  16158. extra: 1223/1126,
  16159. bottom: 205/1428
  16160. }
  16161. },
  16162. upright: {
  16163. height: math.unit(6.3, "feet"),
  16164. weight: math.unit(240, "lb"),
  16165. name: "Upright",
  16166. image: {
  16167. source: "./media/characters/cafat/upright.svg",
  16168. bottom: 0.01
  16169. }
  16170. },
  16171. uprightFull: {
  16172. height: math.unit(6.3, "feet"),
  16173. weight: math.unit(240, "lb"),
  16174. name: "Upright (Full)",
  16175. image: {
  16176. source: "./media/characters/cafat/upright-full.svg",
  16177. bottom: 0.01
  16178. }
  16179. },
  16180. },
  16181. [
  16182. {
  16183. name: "Small",
  16184. height: math.unit(5, "feet"),
  16185. default: true
  16186. },
  16187. {
  16188. name: "Large",
  16189. height: math.unit(13, "feet")
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16195. {
  16196. front: {
  16197. height: math.unit(6, "feet"),
  16198. weight: math.unit(150, "lb"),
  16199. name: "Front",
  16200. image: {
  16201. source: "./media/characters/verin-raharra/front.svg",
  16202. extra: 5019 / 4835,
  16203. bottom: 0.023
  16204. }
  16205. },
  16206. },
  16207. [
  16208. {
  16209. name: "Normal",
  16210. height: math.unit(7 + 5 / 12, "feet"),
  16211. default: true
  16212. },
  16213. {
  16214. name: "Upsized",
  16215. height: math.unit(20, "feet")
  16216. },
  16217. ]
  16218. ))
  16219. characterMakers.push(() => makeCharacter(
  16220. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16221. {
  16222. front: {
  16223. height: math.unit(7, "feet"),
  16224. weight: math.unit(230, "lb"),
  16225. name: "Front",
  16226. image: {
  16227. source: "./media/characters/nakata/front.svg",
  16228. extra: 1.005,
  16229. bottom: 0.01
  16230. }
  16231. },
  16232. },
  16233. [
  16234. {
  16235. name: "Normal",
  16236. height: math.unit(7, "feet"),
  16237. default: true
  16238. },
  16239. {
  16240. name: "Big",
  16241. height: math.unit(14, "feet")
  16242. },
  16243. {
  16244. name: "Macro",
  16245. height: math.unit(400, "feet")
  16246. },
  16247. ]
  16248. ))
  16249. characterMakers.push(() => makeCharacter(
  16250. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16251. {
  16252. front: {
  16253. height: math.unit(4.91, "feet"),
  16254. weight: math.unit(100, "lb"),
  16255. name: "Front",
  16256. image: {
  16257. source: "./media/characters/lily/front.svg",
  16258. extra: 1585 / 1415,
  16259. bottom: 0.02
  16260. }
  16261. },
  16262. },
  16263. [
  16264. {
  16265. name: "Normal",
  16266. height: math.unit(4.91, "feet"),
  16267. default: true
  16268. },
  16269. ]
  16270. ))
  16271. characterMakers.push(() => makeCharacter(
  16272. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16273. {
  16274. laying: {
  16275. height: math.unit(4 + 4 / 12, "feet"),
  16276. weight: math.unit(600, "lb"),
  16277. name: "Laying",
  16278. image: {
  16279. source: "./media/characters/sheila/laying.svg",
  16280. extra: 1333 / 1265,
  16281. bottom: 0.16
  16282. }
  16283. },
  16284. },
  16285. [
  16286. {
  16287. name: "Normal",
  16288. height: math.unit(4 + 4 / 12, "feet"),
  16289. default: true
  16290. },
  16291. ]
  16292. ))
  16293. characterMakers.push(() => makeCharacter(
  16294. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16295. {
  16296. front: {
  16297. height: math.unit(6, "feet"),
  16298. weight: math.unit(190, "lb"),
  16299. name: "Front",
  16300. image: {
  16301. source: "./media/characters/sax/front.svg",
  16302. extra: 1187 / 973,
  16303. bottom: 0.042
  16304. }
  16305. },
  16306. },
  16307. [
  16308. {
  16309. name: "Micro",
  16310. height: math.unit(4, "inches"),
  16311. default: true
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16317. {
  16318. front: {
  16319. height: math.unit(6, "feet"),
  16320. weight: math.unit(150, "lb"),
  16321. name: "Front",
  16322. image: {
  16323. source: "./media/characters/pandora/front.svg",
  16324. extra: 2720 / 2556,
  16325. bottom: 0.015
  16326. }
  16327. },
  16328. back: {
  16329. height: math.unit(6, "feet"),
  16330. weight: math.unit(150, "lb"),
  16331. name: "Back",
  16332. image: {
  16333. source: "./media/characters/pandora/back.svg",
  16334. extra: 2720 / 2556,
  16335. bottom: 0.01
  16336. }
  16337. },
  16338. beans: {
  16339. height: math.unit(6 / 8, "feet"),
  16340. name: "Beans",
  16341. image: {
  16342. source: "./media/characters/pandora/beans.svg"
  16343. }
  16344. },
  16345. collar: {
  16346. height: math.unit(0.31, "feet"),
  16347. name: "Collar",
  16348. image: {
  16349. source: "./media/characters/pandora/collar.svg"
  16350. }
  16351. },
  16352. skirt: {
  16353. height: math.unit(6, "feet"),
  16354. weight: math.unit(150, "lb"),
  16355. name: "Skirt",
  16356. image: {
  16357. source: "./media/characters/pandora/skirt.svg",
  16358. extra: 1622 / 1525,
  16359. bottom: 0.015
  16360. }
  16361. },
  16362. hoodie: {
  16363. height: math.unit(6, "feet"),
  16364. weight: math.unit(150, "lb"),
  16365. name: "Hoodie",
  16366. image: {
  16367. source: "./media/characters/pandora/hoodie.svg",
  16368. extra: 1622 / 1525,
  16369. bottom: 0.015
  16370. }
  16371. },
  16372. casual: {
  16373. height: math.unit(6, "feet"),
  16374. weight: math.unit(150, "lb"),
  16375. name: "Casual",
  16376. image: {
  16377. source: "./media/characters/pandora/casual.svg",
  16378. extra: 1622 / 1525,
  16379. bottom: 0.015
  16380. }
  16381. },
  16382. },
  16383. [
  16384. {
  16385. name: "Normal",
  16386. height: math.unit(6, "feet")
  16387. },
  16388. {
  16389. name: "Big Steppy",
  16390. height: math.unit(1, "km"),
  16391. default: true
  16392. },
  16393. {
  16394. name: "Galactic Steppy",
  16395. height: math.unit(2, "gigameters")
  16396. },
  16397. ]
  16398. ))
  16399. characterMakers.push(() => makeCharacter(
  16400. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16401. {
  16402. side: {
  16403. height: math.unit(10, "feet"),
  16404. weight: math.unit(800, "kg"),
  16405. name: "Side",
  16406. image: {
  16407. source: "./media/characters/venio-darcony/side.svg",
  16408. extra: 1373 / 1003,
  16409. bottom: 0.037
  16410. }
  16411. },
  16412. front: {
  16413. height: math.unit(19, "feet"),
  16414. weight: math.unit(800, "kg"),
  16415. name: "Front",
  16416. image: {
  16417. source: "./media/characters/venio-darcony/front.svg"
  16418. }
  16419. },
  16420. back: {
  16421. height: math.unit(19, "feet"),
  16422. weight: math.unit(800, "kg"),
  16423. name: "Back",
  16424. image: {
  16425. source: "./media/characters/venio-darcony/back.svg"
  16426. }
  16427. },
  16428. sideNsfw: {
  16429. height: math.unit(10, "feet"),
  16430. weight: math.unit(800, "kg"),
  16431. name: "Side (NSFW)",
  16432. image: {
  16433. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16434. extra: 1373 / 1003,
  16435. bottom: 0.037
  16436. }
  16437. },
  16438. frontNsfw: {
  16439. height: math.unit(19, "feet"),
  16440. weight: math.unit(800, "kg"),
  16441. name: "Front (NSFW)",
  16442. image: {
  16443. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16444. }
  16445. },
  16446. backNsfw: {
  16447. height: math.unit(19, "feet"),
  16448. weight: math.unit(800, "kg"),
  16449. name: "Back (NSFW)",
  16450. image: {
  16451. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16452. }
  16453. },
  16454. sideArmored: {
  16455. height: math.unit(10, "feet"),
  16456. weight: math.unit(800, "kg"),
  16457. name: "Side (Armored)",
  16458. image: {
  16459. source: "./media/characters/venio-darcony/side-armored.svg",
  16460. extra: 1373 / 1003,
  16461. bottom: 0.037
  16462. }
  16463. },
  16464. frontArmored: {
  16465. height: math.unit(19, "feet"),
  16466. weight: math.unit(900, "kg"),
  16467. name: "Front (Armored)",
  16468. image: {
  16469. source: "./media/characters/venio-darcony/front-armored.svg"
  16470. }
  16471. },
  16472. backArmored: {
  16473. height: math.unit(19, "feet"),
  16474. weight: math.unit(900, "kg"),
  16475. name: "Back (Armored)",
  16476. image: {
  16477. source: "./media/characters/venio-darcony/back-armored.svg"
  16478. }
  16479. },
  16480. sword: {
  16481. height: math.unit(10, "feet"),
  16482. weight: math.unit(50, "lb"),
  16483. name: "Sword",
  16484. image: {
  16485. source: "./media/characters/venio-darcony/sword.svg"
  16486. }
  16487. },
  16488. },
  16489. [
  16490. {
  16491. name: "Normal",
  16492. height: math.unit(10, "feet")
  16493. },
  16494. {
  16495. name: "Macro",
  16496. height: math.unit(130, "feet"),
  16497. default: true
  16498. },
  16499. {
  16500. name: "Macro+",
  16501. height: math.unit(240, "feet")
  16502. },
  16503. ]
  16504. ))
  16505. characterMakers.push(() => makeCharacter(
  16506. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16507. {
  16508. front: {
  16509. height: math.unit(6, "feet"),
  16510. weight: math.unit(150, "lb"),
  16511. name: "Front",
  16512. image: {
  16513. source: "./media/characters/veski/front.svg",
  16514. extra: 1299 / 1225,
  16515. bottom: 0.04
  16516. }
  16517. },
  16518. back: {
  16519. height: math.unit(6, "feet"),
  16520. weight: math.unit(150, "lb"),
  16521. name: "Back",
  16522. image: {
  16523. source: "./media/characters/veski/back.svg",
  16524. extra: 1299 / 1225,
  16525. bottom: 0.008
  16526. }
  16527. },
  16528. maw: {
  16529. height: math.unit(1.5 * 1.21, "feet"),
  16530. name: "Maw",
  16531. image: {
  16532. source: "./media/characters/veski/maw.svg"
  16533. }
  16534. },
  16535. },
  16536. [
  16537. {
  16538. name: "Macro",
  16539. height: math.unit(2, "km"),
  16540. default: true
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16546. {
  16547. front: {
  16548. height: math.unit(5 + 7 / 12, "feet"),
  16549. name: "Front",
  16550. image: {
  16551. source: "./media/characters/isabelle/front.svg",
  16552. extra: 2130 / 1976,
  16553. bottom: 0.05
  16554. }
  16555. },
  16556. },
  16557. [
  16558. {
  16559. name: "Supermicro",
  16560. height: math.unit(10, "micrometers")
  16561. },
  16562. {
  16563. name: "Micro",
  16564. height: math.unit(1, "inch")
  16565. },
  16566. {
  16567. name: "Tiny",
  16568. height: math.unit(5, "inches")
  16569. },
  16570. {
  16571. name: "Standard",
  16572. height: math.unit(5 + 7 / 12, "inches")
  16573. },
  16574. {
  16575. name: "Macro",
  16576. height: math.unit(80, "meters"),
  16577. default: true
  16578. },
  16579. {
  16580. name: "Megamacro",
  16581. height: math.unit(250, "meters")
  16582. },
  16583. {
  16584. name: "Gigamacro",
  16585. height: math.unit(5, "km")
  16586. },
  16587. {
  16588. name: "Cosmic",
  16589. height: math.unit(2.5e6, "miles")
  16590. },
  16591. ]
  16592. ))
  16593. characterMakers.push(() => makeCharacter(
  16594. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16595. {
  16596. front: {
  16597. height: math.unit(6, "feet"),
  16598. weight: math.unit(150, "lb"),
  16599. name: "Front",
  16600. image: {
  16601. source: "./media/characters/hanzo/front.svg",
  16602. extra: 374 / 344,
  16603. bottom: 0.02
  16604. }
  16605. },
  16606. },
  16607. [
  16608. {
  16609. name: "Normal",
  16610. height: math.unit(8, "feet"),
  16611. default: true
  16612. },
  16613. ]
  16614. ))
  16615. characterMakers.push(() => makeCharacter(
  16616. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16617. {
  16618. front: {
  16619. height: math.unit(7, "feet"),
  16620. weight: math.unit(130, "lb"),
  16621. name: "Front",
  16622. image: {
  16623. source: "./media/characters/anna/front.svg",
  16624. extra: 169 / 145,
  16625. bottom: 0.06
  16626. }
  16627. },
  16628. full: {
  16629. height: math.unit(4.96, "feet"),
  16630. weight: math.unit(220, "lb"),
  16631. name: "Full",
  16632. image: {
  16633. source: "./media/characters/anna/full.svg",
  16634. extra: 138 / 114,
  16635. bottom: 0.15
  16636. }
  16637. },
  16638. tongue: {
  16639. height: math.unit(2.53, "feet"),
  16640. name: "Tongue",
  16641. image: {
  16642. source: "./media/characters/anna/tongue.svg"
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(7, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16656. {
  16657. front: {
  16658. height: math.unit(7, "feet"),
  16659. weight: math.unit(150, "lb"),
  16660. name: "Front",
  16661. image: {
  16662. source: "./media/characters/ian-corvid/front.svg",
  16663. extra: 150 / 142,
  16664. bottom: 0.02
  16665. }
  16666. },
  16667. back: {
  16668. height: math.unit(7, "feet"),
  16669. weight: math.unit(150, "lb"),
  16670. name: "Back",
  16671. image: {
  16672. source: "./media/characters/ian-corvid/back.svg",
  16673. extra: 150 / 143,
  16674. bottom: 0.01
  16675. }
  16676. },
  16677. stomping: {
  16678. height: math.unit(7, "feet"),
  16679. weight: math.unit(150, "lb"),
  16680. name: "Stomping",
  16681. image: {
  16682. source: "./media/characters/ian-corvid/stomping.svg",
  16683. extra: 76 / 72
  16684. }
  16685. },
  16686. sitting: {
  16687. height: math.unit(7 / 1.8, "feet"),
  16688. weight: math.unit(150, "lb"),
  16689. name: "Sitting",
  16690. image: {
  16691. source: "./media/characters/ian-corvid/sitting.svg",
  16692. extra: 1400 / 1269,
  16693. bottom: 0.15
  16694. }
  16695. },
  16696. },
  16697. [
  16698. {
  16699. name: "Tiny Microw",
  16700. height: math.unit(1, "inch")
  16701. },
  16702. {
  16703. name: "Microw",
  16704. height: math.unit(6, "inches")
  16705. },
  16706. {
  16707. name: "Crow",
  16708. height: math.unit(7 + 1 / 12, "feet"),
  16709. default: true
  16710. },
  16711. {
  16712. name: "Macrow",
  16713. height: math.unit(176, "feet")
  16714. },
  16715. ]
  16716. ))
  16717. characterMakers.push(() => makeCharacter(
  16718. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16719. {
  16720. front: {
  16721. height: math.unit(5 + 7 / 12, "feet"),
  16722. weight: math.unit(147, "lb"),
  16723. name: "Front",
  16724. image: {
  16725. source: "./media/characters/natalie-kellon/front.svg",
  16726. extra: 1214 / 1141,
  16727. bottom: 0.02
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Micro",
  16734. height: math.unit(1 / 16, "inch")
  16735. },
  16736. {
  16737. name: "Tiny",
  16738. height: math.unit(4, "inches")
  16739. },
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(5 + 7 / 12, "feet"),
  16743. default: true
  16744. },
  16745. {
  16746. name: "Amazon",
  16747. height: math.unit(12, "feet")
  16748. },
  16749. {
  16750. name: "Giantess",
  16751. height: math.unit(160, "meters")
  16752. },
  16753. {
  16754. name: "Titaness",
  16755. height: math.unit(800, "meters")
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16761. {
  16762. front: {
  16763. height: math.unit(6, "feet"),
  16764. weight: math.unit(150, "lb"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/alluria/front.svg",
  16768. extra: 806 / 738,
  16769. bottom: 0.01
  16770. }
  16771. },
  16772. side: {
  16773. height: math.unit(6, "feet"),
  16774. weight: math.unit(150, "lb"),
  16775. name: "Side",
  16776. image: {
  16777. source: "./media/characters/alluria/side.svg",
  16778. extra: 800 / 750,
  16779. }
  16780. },
  16781. back: {
  16782. height: math.unit(6, "feet"),
  16783. weight: math.unit(150, "lb"),
  16784. name: "Back",
  16785. image: {
  16786. source: "./media/characters/alluria/back.svg",
  16787. extra: 806 / 738,
  16788. }
  16789. },
  16790. frontMaid: {
  16791. height: math.unit(6, "feet"),
  16792. weight: math.unit(150, "lb"),
  16793. name: "Front (Maid)",
  16794. image: {
  16795. source: "./media/characters/alluria/front-maid.svg",
  16796. extra: 806 / 738,
  16797. bottom: 0.01
  16798. }
  16799. },
  16800. sideMaid: {
  16801. height: math.unit(6, "feet"),
  16802. weight: math.unit(150, "lb"),
  16803. name: "Side (Maid)",
  16804. image: {
  16805. source: "./media/characters/alluria/side-maid.svg",
  16806. extra: 800 / 750,
  16807. bottom: 0.005
  16808. }
  16809. },
  16810. backMaid: {
  16811. height: math.unit(6, "feet"),
  16812. weight: math.unit(150, "lb"),
  16813. name: "Back (Maid)",
  16814. image: {
  16815. source: "./media/characters/alluria/back-maid.svg",
  16816. extra: 806 / 738,
  16817. }
  16818. },
  16819. },
  16820. [
  16821. {
  16822. name: "Micro",
  16823. height: math.unit(6, "inches"),
  16824. default: true
  16825. },
  16826. ]
  16827. ))
  16828. characterMakers.push(() => makeCharacter(
  16829. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16830. {
  16831. front: {
  16832. height: math.unit(6, "feet"),
  16833. weight: math.unit(150, "lb"),
  16834. name: "Front",
  16835. image: {
  16836. source: "./media/characters/kyle/front.svg",
  16837. extra: 1069 / 962,
  16838. bottom: 77.228 / 1727.45
  16839. }
  16840. },
  16841. },
  16842. [
  16843. {
  16844. name: "Macro",
  16845. height: math.unit(150, "feet"),
  16846. default: true
  16847. },
  16848. ]
  16849. ))
  16850. characterMakers.push(() => makeCharacter(
  16851. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16852. {
  16853. front: {
  16854. height: math.unit(6, "feet"),
  16855. weight: math.unit(300, "lb"),
  16856. name: "Front",
  16857. image: {
  16858. source: "./media/characters/duncan/front.svg",
  16859. extra: 1650 / 1482,
  16860. bottom: 0.05
  16861. }
  16862. },
  16863. },
  16864. [
  16865. {
  16866. name: "Macro",
  16867. height: math.unit(100, "feet"),
  16868. default: true
  16869. },
  16870. ]
  16871. ))
  16872. characterMakers.push(() => makeCharacter(
  16873. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16874. {
  16875. front: {
  16876. height: math.unit(5 + 4 / 12, "feet"),
  16877. weight: math.unit(220, "lb"),
  16878. name: "Front",
  16879. image: {
  16880. source: "./media/characters/memory/front.svg",
  16881. extra: 3641 / 3545,
  16882. bottom: 0.03
  16883. }
  16884. },
  16885. back: {
  16886. height: math.unit(5 + 4 / 12, "feet"),
  16887. weight: math.unit(220, "lb"),
  16888. name: "Back",
  16889. image: {
  16890. source: "./media/characters/memory/back.svg",
  16891. extra: 3641 / 3545,
  16892. bottom: 0.025
  16893. }
  16894. },
  16895. frontSkirt: {
  16896. height: math.unit(5 + 4 / 12, "feet"),
  16897. weight: math.unit(220, "lb"),
  16898. name: "Front (Skirt)",
  16899. image: {
  16900. source: "./media/characters/memory/front-skirt.svg",
  16901. extra: 3641 / 3545,
  16902. bottom: 0.03
  16903. }
  16904. },
  16905. frontDress: {
  16906. height: math.unit(5 + 4 / 12, "feet"),
  16907. weight: math.unit(220, "lb"),
  16908. name: "Front (Dress)",
  16909. image: {
  16910. source: "./media/characters/memory/front-dress.svg",
  16911. extra: 3641 / 3545,
  16912. bottom: 0.03
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Micro",
  16919. height: math.unit(6, "inches"),
  16920. default: true
  16921. },
  16922. {
  16923. name: "Normal",
  16924. height: math.unit(5 + 4 / 12, "feet")
  16925. },
  16926. ]
  16927. ))
  16928. characterMakers.push(() => makeCharacter(
  16929. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16930. {
  16931. front: {
  16932. height: math.unit(4 + 11 / 12, "feet"),
  16933. weight: math.unit(100, "lb"),
  16934. name: "Front",
  16935. image: {
  16936. source: "./media/characters/luno/front.svg",
  16937. extra: 1535 / 1487,
  16938. bottom: 0.03
  16939. }
  16940. },
  16941. },
  16942. [
  16943. {
  16944. name: "Micro",
  16945. height: math.unit(3, "inches")
  16946. },
  16947. {
  16948. name: "Normal",
  16949. height: math.unit(4 + 11 / 12, "feet"),
  16950. default: true
  16951. },
  16952. {
  16953. name: "Macro",
  16954. height: math.unit(300, "feet")
  16955. },
  16956. {
  16957. name: "Megamacro",
  16958. height: math.unit(700, "miles")
  16959. },
  16960. ]
  16961. ))
  16962. characterMakers.push(() => makeCharacter(
  16963. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16964. {
  16965. front: {
  16966. height: math.unit(6 + 2 / 12, "feet"),
  16967. weight: math.unit(170, "lb"),
  16968. name: "Front",
  16969. image: {
  16970. source: "./media/characters/jamesy/front.svg",
  16971. extra: 440 / 382,
  16972. bottom: 0.005
  16973. }
  16974. },
  16975. },
  16976. [
  16977. {
  16978. name: "Micro",
  16979. height: math.unit(3, "inches")
  16980. },
  16981. {
  16982. name: "Normal",
  16983. height: math.unit(6 + 2 / 12, "feet"),
  16984. default: true
  16985. },
  16986. {
  16987. name: "Macro",
  16988. height: math.unit(300, "feet")
  16989. },
  16990. {
  16991. name: "Megamacro",
  16992. height: math.unit(700, "miles")
  16993. },
  16994. ]
  16995. ))
  16996. characterMakers.push(() => makeCharacter(
  16997. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16998. {
  16999. front: {
  17000. height: math.unit(6, "feet"),
  17001. weight: math.unit(160, "lb"),
  17002. name: "Front",
  17003. image: {
  17004. source: "./media/characters/mark/front.svg",
  17005. extra: 3300 / 3100,
  17006. bottom: 136.42 / 3440.47
  17007. }
  17008. },
  17009. },
  17010. [
  17011. {
  17012. name: "Macro",
  17013. height: math.unit(120, "meters")
  17014. },
  17015. {
  17016. name: "Bigger Macro",
  17017. height: math.unit(350, "meters")
  17018. },
  17019. {
  17020. name: "Megamacro",
  17021. height: math.unit(8, "km"),
  17022. default: true
  17023. },
  17024. {
  17025. name: "Continental",
  17026. height: math.unit(4550, "km")
  17027. },
  17028. {
  17029. name: "Planetary",
  17030. height: math.unit(65000, "km")
  17031. },
  17032. ]
  17033. ))
  17034. characterMakers.push(() => makeCharacter(
  17035. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17036. {
  17037. front: {
  17038. height: math.unit(6, "feet"),
  17039. weight: math.unit(400, "lb"),
  17040. name: "Front",
  17041. image: {
  17042. source: "./media/characters/mac/front.svg",
  17043. extra: 1048 / 987.7,
  17044. bottom: 60 / 1107.6,
  17045. }
  17046. },
  17047. },
  17048. [
  17049. {
  17050. name: "Macro",
  17051. height: math.unit(500, "feet"),
  17052. default: true
  17053. },
  17054. ]
  17055. ))
  17056. characterMakers.push(() => makeCharacter(
  17057. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17058. {
  17059. front: {
  17060. height: math.unit(5 + 2 / 12, "feet"),
  17061. weight: math.unit(190, "lb"),
  17062. name: "Front",
  17063. image: {
  17064. source: "./media/characters/bari/front.svg",
  17065. extra: 3156 / 2880,
  17066. bottom: 0.03
  17067. }
  17068. },
  17069. back: {
  17070. height: math.unit(5 + 2 / 12, "feet"),
  17071. weight: math.unit(190, "lb"),
  17072. name: "Back",
  17073. image: {
  17074. source: "./media/characters/bari/back.svg",
  17075. extra: 3260 / 2834,
  17076. bottom: 0.025
  17077. }
  17078. },
  17079. frontPlush: {
  17080. height: math.unit(5 + 2 / 12, "feet"),
  17081. weight: math.unit(190, "lb"),
  17082. name: "Front (Plush)",
  17083. image: {
  17084. source: "./media/characters/bari/front-plush.svg",
  17085. extra: 1112 / 1061,
  17086. bottom: 0.002
  17087. }
  17088. },
  17089. },
  17090. [
  17091. {
  17092. name: "Micro",
  17093. height: math.unit(3, "inches")
  17094. },
  17095. {
  17096. name: "Normal",
  17097. height: math.unit(5 + 2 / 12, "feet"),
  17098. default: true
  17099. },
  17100. {
  17101. name: "Macro",
  17102. height: math.unit(20, "feet")
  17103. },
  17104. ]
  17105. ))
  17106. characterMakers.push(() => makeCharacter(
  17107. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17108. {
  17109. front: {
  17110. height: math.unit(6 + 1 / 12, "feet"),
  17111. weight: math.unit(275, "lb"),
  17112. name: "Front",
  17113. image: {
  17114. source: "./media/characters/hunter-misha-raven/front.svg"
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Mortal",
  17121. height: math.unit(6 + 1 / 12, "feet")
  17122. },
  17123. {
  17124. name: "Divine",
  17125. height: math.unit(1.12134e34, "parsecs"),
  17126. default: true
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17132. {
  17133. front: {
  17134. height: math.unit(6 + 3 / 12, "feet"),
  17135. weight: math.unit(220, "lb"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/max-calore/front.svg",
  17139. extra: 1700 / 1648,
  17140. bottom: 0.01
  17141. }
  17142. },
  17143. back: {
  17144. height: math.unit(6 + 3 / 12, "feet"),
  17145. weight: math.unit(220, "lb"),
  17146. name: "Back",
  17147. image: {
  17148. source: "./media/characters/max-calore/back.svg",
  17149. extra: 1700 / 1648,
  17150. bottom: 0.01
  17151. }
  17152. },
  17153. },
  17154. [
  17155. {
  17156. name: "Normal",
  17157. height: math.unit(6 + 3 / 12, "feet"),
  17158. default: true
  17159. },
  17160. ]
  17161. ))
  17162. characterMakers.push(() => makeCharacter(
  17163. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17164. {
  17165. side: {
  17166. height: math.unit(2 + 8 / 12, "feet"),
  17167. weight: math.unit(99, "lb"),
  17168. name: "Side",
  17169. image: {
  17170. source: "./media/characters/aspen/side.svg",
  17171. extra: 152 / 138,
  17172. bottom: 0.032
  17173. }
  17174. },
  17175. },
  17176. [
  17177. {
  17178. name: "Normal",
  17179. height: math.unit(2 + 8 / 12, "feet"),
  17180. default: true
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17186. {
  17187. side: {
  17188. height: math.unit(3 + 2 / 12, "feet"),
  17189. weight: math.unit(224, "lb"),
  17190. name: "Side",
  17191. image: {
  17192. source: "./media/characters/sheila-feral-wolf/side.svg",
  17193. extra: 179 / 166,
  17194. bottom: 0.03
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(3 + 2 / 12, "feet"),
  17202. default: true
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17208. {
  17209. side: {
  17210. height: math.unit(1 + 9 / 12, "feet"),
  17211. weight: math.unit(38, "lb"),
  17212. name: "Side",
  17213. image: {
  17214. source: "./media/characters/michelle/side.svg",
  17215. extra: 147 / 136.7,
  17216. bottom: 0.03
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Normal",
  17223. height: math.unit(1 + 9 / 12, "feet"),
  17224. default: true
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17230. {
  17231. front: {
  17232. height: math.unit(1.54, "feet"),
  17233. weight: math.unit(50, "lb"),
  17234. name: "Front",
  17235. image: {
  17236. source: "./media/characters/nino/front.svg"
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(1.54, "feet"),
  17244. default: true
  17245. },
  17246. ]
  17247. ))
  17248. characterMakers.push(() => makeCharacter(
  17249. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17250. {
  17251. front: {
  17252. height: math.unit(1, "feet"),
  17253. weight: math.unit(16, "lb"),
  17254. name: "Front",
  17255. image: {
  17256. source: "./media/characters/viola/front.svg"
  17257. }
  17258. },
  17259. },
  17260. [
  17261. {
  17262. name: "Normal",
  17263. height: math.unit(1, "feet"),
  17264. default: true
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17270. {
  17271. front: {
  17272. height: math.unit(6 + 5 / 12, "feet"),
  17273. weight: math.unit(580, "lb"),
  17274. name: "Front",
  17275. image: {
  17276. source: "./media/characters/atlas/front.svg",
  17277. extra: 298.5 / 290,
  17278. bottom: 0.015
  17279. }
  17280. },
  17281. },
  17282. [
  17283. {
  17284. name: "Normal",
  17285. height: math.unit(6 + 5 / 12, "feet"),
  17286. default: true
  17287. },
  17288. ]
  17289. ))
  17290. characterMakers.push(() => makeCharacter(
  17291. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17292. {
  17293. side: {
  17294. height: math.unit(1 + 10 / 12, "feet"),
  17295. weight: math.unit(25, "lb"),
  17296. name: "Side",
  17297. image: {
  17298. source: "./media/characters/davy/side.svg",
  17299. extra: 200 / 170,
  17300. bottom: 0.01
  17301. }
  17302. },
  17303. },
  17304. [
  17305. {
  17306. name: "Normal",
  17307. height: math.unit(1 + 10 / 12, "feet"),
  17308. default: true
  17309. },
  17310. ]
  17311. ))
  17312. characterMakers.push(() => makeCharacter(
  17313. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17314. {
  17315. side: {
  17316. height: math.unit(4 + 8 / 12, "feet"),
  17317. weight: math.unit(166, "lb"),
  17318. name: "Side",
  17319. image: {
  17320. source: "./media/characters/fiona/side.svg",
  17321. extra: 232 / 220,
  17322. bottom: 0.03
  17323. }
  17324. },
  17325. },
  17326. [
  17327. {
  17328. name: "Normal",
  17329. height: math.unit(4 + 8 / 12, "feet"),
  17330. default: true
  17331. },
  17332. ]
  17333. ))
  17334. characterMakers.push(() => makeCharacter(
  17335. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17336. {
  17337. front: {
  17338. height: math.unit(3, "feet"),
  17339. weight: math.unit(100, "lb"),
  17340. name: "Front",
  17341. image: {
  17342. source: "./media/characters/lyla/front.svg",
  17343. bottom: 0.1
  17344. }
  17345. },
  17346. },
  17347. [
  17348. {
  17349. name: "Normal",
  17350. height: math.unit(3, "feet"),
  17351. default: true
  17352. },
  17353. ]
  17354. ))
  17355. characterMakers.push(() => makeCharacter(
  17356. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17357. {
  17358. side: {
  17359. height: math.unit(1.8, "feet"),
  17360. weight: math.unit(44, "lb"),
  17361. name: "Side",
  17362. image: {
  17363. source: "./media/characters/perseus/side.svg",
  17364. bottom: 0.21
  17365. }
  17366. },
  17367. },
  17368. [
  17369. {
  17370. name: "Normal",
  17371. height: math.unit(1.8, "feet"),
  17372. default: true
  17373. },
  17374. ]
  17375. ))
  17376. characterMakers.push(() => makeCharacter(
  17377. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17378. {
  17379. side: {
  17380. height: math.unit(4 + 2 / 12, "feet"),
  17381. weight: math.unit(20, "lb"),
  17382. name: "Side",
  17383. image: {
  17384. source: "./media/characters/remus/side.svg"
  17385. }
  17386. },
  17387. },
  17388. [
  17389. {
  17390. name: "Normal",
  17391. height: math.unit(4 + 2 / 12, "feet"),
  17392. default: true
  17393. },
  17394. ]
  17395. ))
  17396. characterMakers.push(() => makeCharacter(
  17397. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17398. {
  17399. front: {
  17400. height: math.unit(4 + 11 / 12, "feet"),
  17401. weight: math.unit(114, "lb"),
  17402. name: "Front",
  17403. image: {
  17404. source: "./media/characters/raf/front.svg",
  17405. extra: 1504/1339,
  17406. bottom: 26/1530
  17407. }
  17408. },
  17409. side: {
  17410. height: math.unit(4 + 11 / 12, "feet"),
  17411. weight: math.unit(114, "lb"),
  17412. name: "Side",
  17413. image: {
  17414. source: "./media/characters/raf/side.svg",
  17415. extra: 1466/1316,
  17416. bottom: 29/1495
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Micro",
  17423. height: math.unit(2, "inches")
  17424. },
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(4 + 11 / 12, "feet"),
  17428. default: true
  17429. },
  17430. {
  17431. name: "Macro",
  17432. height: math.unit(70, "feet")
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(1.5, "meters"),
  17441. weight: math.unit(68, "kg"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/liam-einarr/front.svg",
  17445. extra: 2822 / 2666
  17446. }
  17447. },
  17448. back: {
  17449. height: math.unit(1.5, "meters"),
  17450. weight: math.unit(68, "kg"),
  17451. name: "Back",
  17452. image: {
  17453. source: "./media/characters/liam-einarr/back.svg",
  17454. extra: 2822 / 2666,
  17455. bottom: 0.015
  17456. }
  17457. },
  17458. },
  17459. [
  17460. {
  17461. name: "Normal",
  17462. height: math.unit(1.5, "meters"),
  17463. default: true
  17464. },
  17465. {
  17466. name: "Macro",
  17467. height: math.unit(150, "meters")
  17468. },
  17469. {
  17470. name: "Megamacro",
  17471. height: math.unit(35, "km")
  17472. },
  17473. ]
  17474. ))
  17475. characterMakers.push(() => makeCharacter(
  17476. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17477. {
  17478. front: {
  17479. height: math.unit(6, "feet"),
  17480. weight: math.unit(75, "kg"),
  17481. name: "Front",
  17482. image: {
  17483. source: "./media/characters/linda/front.svg",
  17484. extra: 930 / 874,
  17485. bottom: 0.004
  17486. }
  17487. },
  17488. },
  17489. [
  17490. {
  17491. name: "Normal",
  17492. height: math.unit(6, "feet"),
  17493. default: true
  17494. },
  17495. ]
  17496. ))
  17497. characterMakers.push(() => makeCharacter(
  17498. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17499. {
  17500. front: {
  17501. height: math.unit(6 + 8 / 12, "feet"),
  17502. weight: math.unit(220, "lb"),
  17503. name: "Front",
  17504. image: {
  17505. source: "./media/characters/caylex/front.svg",
  17506. extra: 821 / 772,
  17507. bottom: 0.07
  17508. }
  17509. },
  17510. back: {
  17511. height: math.unit(6 + 8 / 12, "feet"),
  17512. weight: math.unit(220, "lb"),
  17513. name: "Back",
  17514. image: {
  17515. source: "./media/characters/caylex/back.svg",
  17516. extra: 821 / 772,
  17517. bottom: 0.022
  17518. }
  17519. },
  17520. hand: {
  17521. height: math.unit(1.25, "feet"),
  17522. name: "Hand",
  17523. image: {
  17524. source: "./media/characters/caylex/hand.svg"
  17525. }
  17526. },
  17527. foot: {
  17528. height: math.unit(1.6, "feet"),
  17529. name: "Foot",
  17530. image: {
  17531. source: "./media/characters/caylex/foot.svg"
  17532. }
  17533. },
  17534. armored: {
  17535. height: math.unit(6 + 8 / 12, "feet"),
  17536. weight: math.unit(250, "lb"),
  17537. name: "Armored",
  17538. image: {
  17539. source: "./media/characters/caylex/armored.svg",
  17540. extra: 1420 / 1310,
  17541. bottom: 0.045
  17542. }
  17543. },
  17544. },
  17545. [
  17546. {
  17547. name: "Normal",
  17548. height: math.unit(6 + 8 / 12, "feet"),
  17549. default: true
  17550. },
  17551. {
  17552. name: "Normal+",
  17553. height: math.unit(12, "feet")
  17554. },
  17555. ]
  17556. ))
  17557. characterMakers.push(() => makeCharacter(
  17558. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17559. {
  17560. front: {
  17561. height: math.unit(7 + 6 / 12, "feet"),
  17562. weight: math.unit(288, "lb"),
  17563. name: "Front",
  17564. image: {
  17565. source: "./media/characters/alana/front.svg",
  17566. extra: 679 / 653,
  17567. bottom: 22.5 / 701
  17568. }
  17569. },
  17570. },
  17571. [
  17572. {
  17573. name: "Normal",
  17574. height: math.unit(7 + 6 / 12, "feet")
  17575. },
  17576. {
  17577. name: "Large",
  17578. height: math.unit(50, "feet")
  17579. },
  17580. {
  17581. name: "Macro",
  17582. height: math.unit(100, "feet"),
  17583. default: true
  17584. },
  17585. {
  17586. name: "Macro+",
  17587. height: math.unit(200, "feet")
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17593. {
  17594. front: {
  17595. height: math.unit(6 + 1 / 12, "feet"),
  17596. weight: math.unit(210, "lb"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/hasani/front.svg",
  17600. extra: 244 / 232,
  17601. bottom: 0.01
  17602. }
  17603. },
  17604. back: {
  17605. height: math.unit(6 + 1 / 12, "feet"),
  17606. weight: math.unit(210, "lb"),
  17607. name: "Back",
  17608. image: {
  17609. source: "./media/characters/hasani/back.svg",
  17610. extra: 244 / 232,
  17611. bottom: 0.01
  17612. }
  17613. },
  17614. },
  17615. [
  17616. {
  17617. name: "Normal",
  17618. height: math.unit(6 + 1 / 12, "feet")
  17619. },
  17620. {
  17621. name: "Macro",
  17622. height: math.unit(175, "feet"),
  17623. default: true
  17624. },
  17625. ]
  17626. ))
  17627. characterMakers.push(() => makeCharacter(
  17628. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17629. {
  17630. front: {
  17631. height: math.unit(1.82, "meters"),
  17632. weight: math.unit(140, "lb"),
  17633. name: "Front",
  17634. image: {
  17635. source: "./media/characters/nita/front.svg",
  17636. extra: 2473 / 2363,
  17637. bottom: 0.01
  17638. }
  17639. },
  17640. },
  17641. [
  17642. {
  17643. name: "Normal",
  17644. height: math.unit(1.82, "m")
  17645. },
  17646. {
  17647. name: "Macro",
  17648. height: math.unit(300, "m")
  17649. },
  17650. {
  17651. name: "Mistake Canon",
  17652. height: math.unit(0.5, "miles"),
  17653. default: true
  17654. },
  17655. {
  17656. name: "Big Mistake",
  17657. height: math.unit(13, "miles")
  17658. },
  17659. {
  17660. name: "Playing God",
  17661. height: math.unit(2450, "miles")
  17662. },
  17663. ]
  17664. ))
  17665. characterMakers.push(() => makeCharacter(
  17666. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17667. {
  17668. front: {
  17669. height: math.unit(4, "feet"),
  17670. weight: math.unit(120, "lb"),
  17671. name: "Front",
  17672. image: {
  17673. source: "./media/characters/shiriko/front.svg",
  17674. extra: 970/934,
  17675. bottom: 5/975
  17676. }
  17677. },
  17678. },
  17679. [
  17680. {
  17681. name: "Normal",
  17682. height: math.unit(4, "feet"),
  17683. default: true
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17689. {
  17690. front: {
  17691. height: math.unit(6, "feet"),
  17692. name: "front",
  17693. image: {
  17694. source: "./media/characters/deja/front.svg",
  17695. extra: 926 / 840,
  17696. bottom: 0.07
  17697. }
  17698. },
  17699. },
  17700. [
  17701. {
  17702. name: "Planck Length",
  17703. height: math.unit(1.6e-35, "meters")
  17704. },
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(30.48, "meters"),
  17708. default: true
  17709. },
  17710. {
  17711. name: "Universal",
  17712. height: math.unit(8.8e26, "meters")
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17718. {
  17719. side: {
  17720. height: math.unit(8, "feet"),
  17721. weight: math.unit(6300, "lb"),
  17722. name: "Side",
  17723. image: {
  17724. source: "./media/characters/anima/side.svg",
  17725. bottom: 0.035
  17726. }
  17727. },
  17728. },
  17729. [
  17730. {
  17731. name: "Normal",
  17732. height: math.unit(8, "feet"),
  17733. default: true
  17734. },
  17735. ]
  17736. ))
  17737. characterMakers.push(() => makeCharacter(
  17738. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17739. {
  17740. front: {
  17741. height: math.unit(8, "feet"),
  17742. weight: math.unit(350, "lb"),
  17743. name: "Front",
  17744. image: {
  17745. source: "./media/characters/bianca/front.svg",
  17746. extra: 234 / 225,
  17747. bottom: 0.03
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(8, "feet"),
  17755. default: true
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17761. {
  17762. front: {
  17763. height: math.unit(6, "feet"),
  17764. weight: math.unit(150, "lb"),
  17765. name: "Front",
  17766. image: {
  17767. source: "./media/characters/adinia/front.svg",
  17768. extra: 1845 / 1672,
  17769. bottom: 0.02
  17770. }
  17771. },
  17772. back: {
  17773. height: math.unit(6, "feet"),
  17774. weight: math.unit(150, "lb"),
  17775. name: "Back",
  17776. image: {
  17777. source: "./media/characters/adinia/back.svg",
  17778. extra: 1845 / 1672,
  17779. bottom: 0.002
  17780. }
  17781. },
  17782. },
  17783. [
  17784. {
  17785. name: "Normal",
  17786. height: math.unit(11 + 5 / 12, "feet"),
  17787. default: true
  17788. },
  17789. ]
  17790. ))
  17791. characterMakers.push(() => makeCharacter(
  17792. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17793. {
  17794. front: {
  17795. height: math.unit(3, "meters"),
  17796. weight: math.unit(200, "kg"),
  17797. name: "Front",
  17798. image: {
  17799. source: "./media/characters/lykasa/front.svg",
  17800. extra: 1076 / 976,
  17801. bottom: 0.06
  17802. }
  17803. },
  17804. },
  17805. [
  17806. {
  17807. name: "Normal",
  17808. height: math.unit(3, "meters")
  17809. },
  17810. {
  17811. name: "Kaiju",
  17812. height: math.unit(120, "meters"),
  17813. default: true
  17814. },
  17815. {
  17816. name: "Mega Kaiju",
  17817. height: math.unit(240, "km")
  17818. },
  17819. {
  17820. name: "Giga Kaiju",
  17821. height: math.unit(400, "megameters")
  17822. },
  17823. {
  17824. name: "Tera Kaiju",
  17825. height: math.unit(800, "gigameters")
  17826. },
  17827. {
  17828. name: "Kaiju Dragon Goddess",
  17829. height: math.unit(26, "zettaparsecs")
  17830. },
  17831. ]
  17832. ))
  17833. characterMakers.push(() => makeCharacter(
  17834. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17835. {
  17836. side: {
  17837. height: math.unit(283 / 124 * 6, "feet"),
  17838. weight: math.unit(35000, "lb"),
  17839. name: "Side",
  17840. image: {
  17841. source: "./media/characters/malfaren/side.svg",
  17842. extra: 1310/529,
  17843. bottom: 24/1334
  17844. }
  17845. },
  17846. front: {
  17847. height: math.unit(22.36, "feet"),
  17848. weight: math.unit(35000, "lb"),
  17849. name: "Front",
  17850. image: {
  17851. source: "./media/characters/malfaren/front.svg",
  17852. extra: 1237/1115,
  17853. bottom: 32/1269
  17854. }
  17855. },
  17856. maw: {
  17857. height: math.unit(6.9, "feet"),
  17858. name: "Maw",
  17859. image: {
  17860. source: "./media/characters/malfaren/maw.svg"
  17861. }
  17862. },
  17863. dick: {
  17864. height: math.unit(6.19, "feet"),
  17865. name: "Dick",
  17866. image: {
  17867. source: "./media/characters/malfaren/dick.svg"
  17868. }
  17869. },
  17870. eye: {
  17871. height: math.unit(0.69, "feet"),
  17872. name: "Eye",
  17873. image: {
  17874. source: "./media/characters/malfaren/eye.svg"
  17875. }
  17876. },
  17877. },
  17878. [
  17879. {
  17880. name: "Big",
  17881. height: math.unit(283 / 162 * 6, "feet"),
  17882. },
  17883. {
  17884. name: "Bigger",
  17885. height: math.unit(283 / 124 * 6, "feet")
  17886. },
  17887. {
  17888. name: "Massive",
  17889. height: math.unit(283 / 92 * 6, "feet"),
  17890. default: true
  17891. },
  17892. {
  17893. name: "👀💦",
  17894. height: math.unit(283 / 73 * 6, "feet"),
  17895. },
  17896. ]
  17897. ))
  17898. characterMakers.push(() => makeCharacter(
  17899. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17900. {
  17901. front: {
  17902. height: math.unit(1.7, "m"),
  17903. weight: math.unit(70, "kg"),
  17904. name: "Front",
  17905. image: {
  17906. source: "./media/characters/kernel/front.svg",
  17907. extra: 222 / 210,
  17908. bottom: 0.007
  17909. }
  17910. },
  17911. },
  17912. [
  17913. {
  17914. name: "Nano",
  17915. height: math.unit(17, "micrometers")
  17916. },
  17917. {
  17918. name: "Micro",
  17919. height: math.unit(1.7, "mm")
  17920. },
  17921. {
  17922. name: "Small",
  17923. height: math.unit(1.7, "cm")
  17924. },
  17925. {
  17926. name: "Normal",
  17927. height: math.unit(1.7, "m"),
  17928. default: true
  17929. },
  17930. ]
  17931. ))
  17932. characterMakers.push(() => makeCharacter(
  17933. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17934. {
  17935. front: {
  17936. height: math.unit(1.75, "meters"),
  17937. weight: math.unit(65, "kg"),
  17938. name: "Front",
  17939. image: {
  17940. source: "./media/characters/jayne-folest/front.svg",
  17941. extra: 2115 / 2007,
  17942. bottom: 0.02
  17943. }
  17944. },
  17945. back: {
  17946. height: math.unit(1.75, "meters"),
  17947. weight: math.unit(65, "kg"),
  17948. name: "Back",
  17949. image: {
  17950. source: "./media/characters/jayne-folest/back.svg",
  17951. extra: 2115 / 2007,
  17952. bottom: 0.005
  17953. }
  17954. },
  17955. frontClothed: {
  17956. height: math.unit(1.75, "meters"),
  17957. weight: math.unit(65, "kg"),
  17958. name: "Front (Clothed)",
  17959. image: {
  17960. source: "./media/characters/jayne-folest/front-clothed.svg",
  17961. extra: 2115 / 2007,
  17962. bottom: 0.035
  17963. }
  17964. },
  17965. hand: {
  17966. height: math.unit(1 / 1.260, "feet"),
  17967. name: "Hand",
  17968. image: {
  17969. source: "./media/characters/jayne-folest/hand.svg"
  17970. }
  17971. },
  17972. foot: {
  17973. height: math.unit(1 / 0.918, "feet"),
  17974. name: "Foot",
  17975. image: {
  17976. source: "./media/characters/jayne-folest/foot.svg"
  17977. }
  17978. },
  17979. },
  17980. [
  17981. {
  17982. name: "Micro",
  17983. height: math.unit(4, "cm")
  17984. },
  17985. {
  17986. name: "Normal",
  17987. height: math.unit(1.75, "meters")
  17988. },
  17989. {
  17990. name: "Macro",
  17991. height: math.unit(47.5, "meters"),
  17992. default: true
  17993. },
  17994. ]
  17995. ))
  17996. characterMakers.push(() => makeCharacter(
  17997. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17998. {
  17999. front: {
  18000. height: math.unit(180, "cm"),
  18001. weight: math.unit(70, "kg"),
  18002. name: "Front",
  18003. image: {
  18004. source: "./media/characters/algier/front.svg",
  18005. extra: 596 / 572,
  18006. bottom: 0.04
  18007. }
  18008. },
  18009. back: {
  18010. height: math.unit(180, "cm"),
  18011. weight: math.unit(70, "kg"),
  18012. name: "Back",
  18013. image: {
  18014. source: "./media/characters/algier/back.svg",
  18015. extra: 596 / 572,
  18016. bottom: 0.025
  18017. }
  18018. },
  18019. frontdressed: {
  18020. height: math.unit(180, "cm"),
  18021. weight: math.unit(150, "kg"),
  18022. name: "Front-dressed",
  18023. image: {
  18024. source: "./media/characters/algier/front-dressed.svg",
  18025. extra: 596 / 572,
  18026. bottom: 0.038
  18027. }
  18028. },
  18029. },
  18030. [
  18031. {
  18032. name: "Micro",
  18033. height: math.unit(5, "cm")
  18034. },
  18035. {
  18036. name: "Normal",
  18037. height: math.unit(180, "cm"),
  18038. default: true
  18039. },
  18040. {
  18041. name: "Macro",
  18042. height: math.unit(64, "m")
  18043. },
  18044. ]
  18045. ))
  18046. characterMakers.push(() => makeCharacter(
  18047. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18048. {
  18049. upright: {
  18050. height: math.unit(7, "feet"),
  18051. weight: math.unit(300, "lb"),
  18052. name: "Upright",
  18053. image: {
  18054. source: "./media/characters/pretzel/upright.svg",
  18055. extra: 534 / 522,
  18056. bottom: 0.065
  18057. }
  18058. },
  18059. sprawling: {
  18060. height: math.unit(3.75, "feet"),
  18061. weight: math.unit(300, "lb"),
  18062. name: "Sprawling",
  18063. image: {
  18064. source: "./media/characters/pretzel/sprawling.svg",
  18065. extra: 314 / 281,
  18066. bottom: 0.1
  18067. }
  18068. },
  18069. tongue: {
  18070. height: math.unit(2, "feet"),
  18071. name: "Tongue",
  18072. image: {
  18073. source: "./media/characters/pretzel/tongue.svg"
  18074. }
  18075. },
  18076. },
  18077. [
  18078. {
  18079. name: "Normal",
  18080. height: math.unit(7, "feet"),
  18081. default: true
  18082. },
  18083. {
  18084. name: "Oversized",
  18085. height: math.unit(15, "feet")
  18086. },
  18087. {
  18088. name: "Huge",
  18089. height: math.unit(30, "feet")
  18090. },
  18091. {
  18092. name: "Macro",
  18093. height: math.unit(250, "feet")
  18094. },
  18095. ]
  18096. ))
  18097. characterMakers.push(() => makeCharacter(
  18098. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18099. {
  18100. sideFront: {
  18101. height: math.unit(5 + 2 / 12, "feet"),
  18102. weight: math.unit(120, "lb"),
  18103. name: "Front Side",
  18104. image: {
  18105. source: "./media/characters/roxi/side-front.svg",
  18106. extra: 2924 / 2717,
  18107. bottom: 0.08
  18108. }
  18109. },
  18110. sideBack: {
  18111. height: math.unit(5 + 2 / 12, "feet"),
  18112. weight: math.unit(120, "lb"),
  18113. name: "Back Side",
  18114. image: {
  18115. source: "./media/characters/roxi/side-back.svg",
  18116. extra: 2904 / 2693,
  18117. bottom: 0.06
  18118. }
  18119. },
  18120. front: {
  18121. height: math.unit(5 + 2 / 12, "feet"),
  18122. weight: math.unit(120, "lb"),
  18123. name: "Front",
  18124. image: {
  18125. source: "./media/characters/roxi/front.svg",
  18126. extra: 2028 / 1907,
  18127. bottom: 0.01
  18128. }
  18129. },
  18130. frontAlt: {
  18131. height: math.unit(5 + 2 / 12, "feet"),
  18132. weight: math.unit(120, "lb"),
  18133. name: "Front (Alt)",
  18134. image: {
  18135. source: "./media/characters/roxi/front-alt.svg",
  18136. extra: 1828 / 1798,
  18137. bottom: 0.01
  18138. }
  18139. },
  18140. sitting: {
  18141. height: math.unit(2.8, "feet"),
  18142. weight: math.unit(120, "lb"),
  18143. name: "Sitting",
  18144. image: {
  18145. source: "./media/characters/roxi/sitting.svg",
  18146. extra: 2660 / 2462,
  18147. bottom: 0.1
  18148. }
  18149. },
  18150. },
  18151. [
  18152. {
  18153. name: "Normal",
  18154. height: math.unit(5 + 2 / 12, "feet"),
  18155. default: true
  18156. },
  18157. ]
  18158. ))
  18159. characterMakers.push(() => makeCharacter(
  18160. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18161. {
  18162. side: {
  18163. height: math.unit(55, "feet"),
  18164. weight: math.unit(153, "tons"),
  18165. name: "Side",
  18166. image: {
  18167. source: "./media/characters/shadow/side.svg",
  18168. extra: 701 / 628,
  18169. bottom: 0.02
  18170. }
  18171. },
  18172. flying: {
  18173. height: math.unit(145, "feet"),
  18174. weight: math.unit(153, "tons"),
  18175. name: "Flying",
  18176. image: {
  18177. source: "./media/characters/shadow/flying.svg"
  18178. }
  18179. },
  18180. },
  18181. [
  18182. {
  18183. name: "Normal",
  18184. height: math.unit(55, "feet"),
  18185. default: true
  18186. },
  18187. ]
  18188. ))
  18189. characterMakers.push(() => makeCharacter(
  18190. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18191. {
  18192. front: {
  18193. height: math.unit(6, "feet"),
  18194. weight: math.unit(200, "lb"),
  18195. name: "Front",
  18196. image: {
  18197. source: "./media/characters/marcie/front.svg",
  18198. extra: 960 / 876,
  18199. bottom: 58 / 1017.87
  18200. }
  18201. },
  18202. },
  18203. [
  18204. {
  18205. name: "Macro",
  18206. height: math.unit(1, "mile"),
  18207. default: true
  18208. },
  18209. ]
  18210. ))
  18211. characterMakers.push(() => makeCharacter(
  18212. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18213. {
  18214. front: {
  18215. height: math.unit(7, "feet"),
  18216. weight: math.unit(200, "lb"),
  18217. name: "Front",
  18218. image: {
  18219. source: "./media/characters/kachina/front.svg",
  18220. extra: 1290.68 / 1119,
  18221. bottom: 36.5 / 1327.18
  18222. }
  18223. },
  18224. },
  18225. [
  18226. {
  18227. name: "Normal",
  18228. height: math.unit(7, "feet"),
  18229. default: true
  18230. },
  18231. ]
  18232. ))
  18233. characterMakers.push(() => makeCharacter(
  18234. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18235. {
  18236. looking: {
  18237. height: math.unit(2, "meters"),
  18238. weight: math.unit(300, "kg"),
  18239. name: "Looking",
  18240. image: {
  18241. source: "./media/characters/kash/looking.svg",
  18242. extra: 474 / 344,
  18243. bottom: 0.03
  18244. }
  18245. },
  18246. side: {
  18247. height: math.unit(2, "meters"),
  18248. weight: math.unit(300, "kg"),
  18249. name: "Side",
  18250. image: {
  18251. source: "./media/characters/kash/side.svg",
  18252. extra: 302 / 251,
  18253. bottom: 0.03
  18254. }
  18255. },
  18256. front: {
  18257. height: math.unit(2, "meters"),
  18258. weight: math.unit(300, "kg"),
  18259. name: "Front",
  18260. image: {
  18261. source: "./media/characters/kash/front.svg",
  18262. extra: 495 / 360,
  18263. bottom: 0.015
  18264. }
  18265. },
  18266. },
  18267. [
  18268. {
  18269. name: "Normal",
  18270. height: math.unit(2, "meters"),
  18271. default: true
  18272. },
  18273. {
  18274. name: "Big",
  18275. height: math.unit(3, "meters")
  18276. },
  18277. {
  18278. name: "Large",
  18279. height: math.unit(5, "meters")
  18280. },
  18281. ]
  18282. ))
  18283. characterMakers.push(() => makeCharacter(
  18284. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18285. {
  18286. feeding: {
  18287. height: math.unit(6.7, "feet"),
  18288. weight: math.unit(350, "lb"),
  18289. name: "Feeding",
  18290. image: {
  18291. source: "./media/characters/lalim/feeding.svg",
  18292. }
  18293. },
  18294. },
  18295. [
  18296. {
  18297. name: "Normal",
  18298. height: math.unit(6.7, "feet"),
  18299. default: true
  18300. },
  18301. ]
  18302. ))
  18303. characterMakers.push(() => makeCharacter(
  18304. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18305. {
  18306. front: {
  18307. height: math.unit(9.5, "feet"),
  18308. weight: math.unit(600, "lb"),
  18309. name: "Front",
  18310. image: {
  18311. source: "./media/characters/de'vout/front.svg",
  18312. extra: 1443 / 1328,
  18313. bottom: 0.025
  18314. }
  18315. },
  18316. back: {
  18317. height: math.unit(9.5, "feet"),
  18318. weight: math.unit(600, "lb"),
  18319. name: "Back",
  18320. image: {
  18321. source: "./media/characters/de'vout/back.svg",
  18322. extra: 1443 / 1328
  18323. }
  18324. },
  18325. frontDressed: {
  18326. height: math.unit(9.5, "feet"),
  18327. weight: math.unit(600, "lb"),
  18328. name: "Front (Dressed",
  18329. image: {
  18330. source: "./media/characters/de'vout/front-dressed.svg",
  18331. extra: 1443 / 1328,
  18332. bottom: 0.025
  18333. }
  18334. },
  18335. backDressed: {
  18336. height: math.unit(9.5, "feet"),
  18337. weight: math.unit(600, "lb"),
  18338. name: "Back (Dressed",
  18339. image: {
  18340. source: "./media/characters/de'vout/back-dressed.svg",
  18341. extra: 1443 / 1328
  18342. }
  18343. },
  18344. },
  18345. [
  18346. {
  18347. name: "Normal",
  18348. height: math.unit(9.5, "feet"),
  18349. default: true
  18350. },
  18351. ]
  18352. ))
  18353. characterMakers.push(() => makeCharacter(
  18354. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18355. {
  18356. front: {
  18357. height: math.unit(8, "feet"),
  18358. weight: math.unit(225, "lb"),
  18359. name: "Front",
  18360. image: {
  18361. source: "./media/characters/talana/front.svg",
  18362. extra: 1410 / 1300,
  18363. bottom: 0.015
  18364. }
  18365. },
  18366. frontDressed: {
  18367. height: math.unit(8, "feet"),
  18368. weight: math.unit(225, "lb"),
  18369. name: "Front (Dressed",
  18370. image: {
  18371. source: "./media/characters/talana/front-dressed.svg",
  18372. extra: 1410 / 1300,
  18373. bottom: 0.015
  18374. }
  18375. },
  18376. },
  18377. [
  18378. {
  18379. name: "Normal",
  18380. height: math.unit(8, "feet"),
  18381. default: true
  18382. },
  18383. ]
  18384. ))
  18385. characterMakers.push(() => makeCharacter(
  18386. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18387. {
  18388. side: {
  18389. height: math.unit(7.2, "feet"),
  18390. weight: math.unit(150, "lb"),
  18391. name: "Side",
  18392. image: {
  18393. source: "./media/characters/xeauvok/side.svg",
  18394. extra: 1975 / 1523,
  18395. bottom: 0.07
  18396. }
  18397. },
  18398. },
  18399. [
  18400. {
  18401. name: "Normal",
  18402. height: math.unit(7.2, "feet"),
  18403. default: true
  18404. },
  18405. ]
  18406. ))
  18407. characterMakers.push(() => makeCharacter(
  18408. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18409. {
  18410. side: {
  18411. height: math.unit(10, "feet"),
  18412. weight: math.unit(900, "kg"),
  18413. name: "Side",
  18414. image: {
  18415. source: "./media/characters/zara/side.svg",
  18416. extra: 504 / 498
  18417. }
  18418. },
  18419. },
  18420. [
  18421. {
  18422. name: "Normal",
  18423. height: math.unit(10, "feet"),
  18424. default: true
  18425. },
  18426. ]
  18427. ))
  18428. characterMakers.push(() => makeCharacter(
  18429. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18430. {
  18431. side: {
  18432. height: math.unit(6, "feet"),
  18433. weight: math.unit(150, "lb"),
  18434. name: "Side",
  18435. image: {
  18436. source: "./media/characters/richard-dragon/side.svg",
  18437. extra: 845 / 340,
  18438. bottom: 0.017
  18439. }
  18440. },
  18441. maw: {
  18442. height: math.unit(2.97, "feet"),
  18443. name: "Maw",
  18444. image: {
  18445. source: "./media/characters/richard-dragon/maw.svg"
  18446. }
  18447. },
  18448. },
  18449. [
  18450. ]
  18451. ))
  18452. characterMakers.push(() => makeCharacter(
  18453. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18454. {
  18455. front: {
  18456. height: math.unit(4, "feet"),
  18457. weight: math.unit(100, "lb"),
  18458. name: "Front",
  18459. image: {
  18460. source: "./media/characters/richard-smeargle/front.svg",
  18461. extra: 2952 / 2820,
  18462. bottom: 0.028
  18463. }
  18464. },
  18465. },
  18466. [
  18467. {
  18468. name: "Normal",
  18469. height: math.unit(4, "feet"),
  18470. default: true
  18471. },
  18472. {
  18473. name: "Dynamax",
  18474. height: math.unit(20, "meters")
  18475. },
  18476. ]
  18477. ))
  18478. characterMakers.push(() => makeCharacter(
  18479. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18480. {
  18481. front: {
  18482. height: math.unit(6, "feet"),
  18483. weight: math.unit(110, "lb"),
  18484. name: "Front",
  18485. image: {
  18486. source: "./media/characters/klay/front.svg",
  18487. extra: 962 / 883,
  18488. bottom: 0.04
  18489. }
  18490. },
  18491. back: {
  18492. height: math.unit(6, "feet"),
  18493. weight: math.unit(110, "lb"),
  18494. name: "Back",
  18495. image: {
  18496. source: "./media/characters/klay/back.svg",
  18497. extra: 962 / 883
  18498. }
  18499. },
  18500. beans: {
  18501. height: math.unit(1.15, "feet"),
  18502. name: "Beans",
  18503. image: {
  18504. source: "./media/characters/klay/beans.svg"
  18505. }
  18506. },
  18507. },
  18508. [
  18509. {
  18510. name: "Micro",
  18511. height: math.unit(6, "inches")
  18512. },
  18513. {
  18514. name: "Mini",
  18515. height: math.unit(3, "feet")
  18516. },
  18517. {
  18518. name: "Normal",
  18519. height: math.unit(6, "feet"),
  18520. default: true
  18521. },
  18522. {
  18523. name: "Big",
  18524. height: math.unit(25, "feet")
  18525. },
  18526. {
  18527. name: "Macro",
  18528. height: math.unit(100, "feet")
  18529. },
  18530. {
  18531. name: "Megamacro",
  18532. height: math.unit(400, "feet")
  18533. },
  18534. ]
  18535. ))
  18536. characterMakers.push(() => makeCharacter(
  18537. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18538. {
  18539. front: {
  18540. height: math.unit(6, "feet"),
  18541. weight: math.unit(160, "lb"),
  18542. name: "Front",
  18543. image: {
  18544. source: "./media/characters/marcus/front.svg",
  18545. extra: 734 / 676,
  18546. bottom: 0.03
  18547. }
  18548. },
  18549. },
  18550. [
  18551. {
  18552. name: "Little",
  18553. height: math.unit(6, "feet")
  18554. },
  18555. {
  18556. name: "Normal",
  18557. height: math.unit(110, "feet"),
  18558. default: true
  18559. },
  18560. {
  18561. name: "Macro",
  18562. height: math.unit(250, "feet")
  18563. },
  18564. {
  18565. name: "Megamacro",
  18566. height: math.unit(1000, "feet")
  18567. },
  18568. ]
  18569. ))
  18570. characterMakers.push(() => makeCharacter(
  18571. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18572. {
  18573. front: {
  18574. height: math.unit(7, "feet"),
  18575. weight: math.unit(275, "lb"),
  18576. name: "Front",
  18577. image: {
  18578. source: "./media/characters/claude-delroute/front.svg",
  18579. extra: 902/827,
  18580. bottom: 26/928
  18581. }
  18582. },
  18583. side: {
  18584. height: math.unit(7, "feet"),
  18585. weight: math.unit(275, "lb"),
  18586. name: "Side",
  18587. image: {
  18588. source: "./media/characters/claude-delroute/side.svg",
  18589. extra: 908/853,
  18590. bottom: 16/924
  18591. }
  18592. },
  18593. back: {
  18594. height: math.unit(7, "feet"),
  18595. weight: math.unit(275, "lb"),
  18596. name: "Back",
  18597. image: {
  18598. source: "./media/characters/claude-delroute/back.svg",
  18599. extra: 911/829,
  18600. bottom: 18/929
  18601. }
  18602. },
  18603. maw: {
  18604. height: math.unit(0.6407, "meters"),
  18605. name: "Maw",
  18606. image: {
  18607. source: "./media/characters/claude-delroute/maw.svg"
  18608. }
  18609. },
  18610. },
  18611. [
  18612. {
  18613. name: "Normal",
  18614. height: math.unit(7, "feet"),
  18615. default: true
  18616. },
  18617. {
  18618. name: "Lorge",
  18619. height: math.unit(20, "feet")
  18620. },
  18621. ]
  18622. ))
  18623. characterMakers.push(() => makeCharacter(
  18624. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18625. {
  18626. front: {
  18627. height: math.unit(8 + 4 / 12, "feet"),
  18628. weight: math.unit(600, "lb"),
  18629. name: "Front",
  18630. image: {
  18631. source: "./media/characters/dragonien/front.svg",
  18632. extra: 100 / 94,
  18633. bottom: 3.3 / 103.3445
  18634. }
  18635. },
  18636. back: {
  18637. height: math.unit(8 + 4 / 12, "feet"),
  18638. weight: math.unit(600, "lb"),
  18639. name: "Back",
  18640. image: {
  18641. source: "./media/characters/dragonien/back.svg",
  18642. extra: 776 / 746,
  18643. bottom: 6.4 / 782.0616
  18644. }
  18645. },
  18646. foot: {
  18647. height: math.unit(1.54, "feet"),
  18648. name: "Foot",
  18649. image: {
  18650. source: "./media/characters/dragonien/foot.svg",
  18651. }
  18652. },
  18653. },
  18654. [
  18655. {
  18656. name: "Normal",
  18657. height: math.unit(8 + 4 / 12, "feet"),
  18658. default: true
  18659. },
  18660. {
  18661. name: "Macro",
  18662. height: math.unit(200, "feet")
  18663. },
  18664. {
  18665. name: "Megamacro",
  18666. height: math.unit(1, "mile")
  18667. },
  18668. {
  18669. name: "Gigamacro",
  18670. height: math.unit(1000, "miles")
  18671. },
  18672. ]
  18673. ))
  18674. characterMakers.push(() => makeCharacter(
  18675. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18676. {
  18677. front: {
  18678. height: math.unit(5 + 2 / 12, "feet"),
  18679. weight: math.unit(110, "lb"),
  18680. name: "Front",
  18681. image: {
  18682. source: "./media/characters/desta/front.svg",
  18683. extra: 767 / 726,
  18684. bottom: 11.7 / 779
  18685. }
  18686. },
  18687. back: {
  18688. height: math.unit(5 + 2 / 12, "feet"),
  18689. weight: math.unit(110, "lb"),
  18690. name: "Back",
  18691. image: {
  18692. source: "./media/characters/desta/back.svg",
  18693. extra: 777 / 728,
  18694. bottom: 6 / 784
  18695. }
  18696. },
  18697. frontAlt: {
  18698. height: math.unit(5 + 2 / 12, "feet"),
  18699. weight: math.unit(110, "lb"),
  18700. name: "Front",
  18701. image: {
  18702. source: "./media/characters/desta/front-alt.svg",
  18703. extra: 1482 / 1417
  18704. }
  18705. },
  18706. side: {
  18707. height: math.unit(5 + 2 / 12, "feet"),
  18708. weight: math.unit(110, "lb"),
  18709. name: "Side",
  18710. image: {
  18711. source: "./media/characters/desta/side.svg",
  18712. extra: 2579 / 2491,
  18713. bottom: 0.053
  18714. }
  18715. },
  18716. },
  18717. [
  18718. {
  18719. name: "Micro",
  18720. height: math.unit(6, "inches")
  18721. },
  18722. {
  18723. name: "Normal",
  18724. height: math.unit(5 + 2 / 12, "feet"),
  18725. default: true
  18726. },
  18727. {
  18728. name: "Macro",
  18729. height: math.unit(62, "feet")
  18730. },
  18731. {
  18732. name: "Megamacro",
  18733. height: math.unit(1800, "feet")
  18734. },
  18735. ]
  18736. ))
  18737. characterMakers.push(() => makeCharacter(
  18738. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18739. {
  18740. front: {
  18741. height: math.unit(10, "feet"),
  18742. weight: math.unit(700, "lb"),
  18743. name: "Front",
  18744. image: {
  18745. source: "./media/characters/storm-alystar/front.svg",
  18746. extra: 2112 / 1898,
  18747. bottom: 0.034
  18748. }
  18749. },
  18750. },
  18751. [
  18752. {
  18753. name: "Micro",
  18754. height: math.unit(3.5, "inches")
  18755. },
  18756. {
  18757. name: "Normal",
  18758. height: math.unit(10, "feet"),
  18759. default: true
  18760. },
  18761. {
  18762. name: "Macro",
  18763. height: math.unit(400, "feet")
  18764. },
  18765. {
  18766. name: "Deific",
  18767. height: math.unit(60, "miles")
  18768. },
  18769. ]
  18770. ))
  18771. characterMakers.push(() => makeCharacter(
  18772. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18773. {
  18774. front: {
  18775. height: math.unit(2.35, "meters"),
  18776. weight: math.unit(119, "kg"),
  18777. name: "Front",
  18778. image: {
  18779. source: "./media/characters/ilia/front.svg",
  18780. extra: 1285 / 1255,
  18781. bottom: 0.06
  18782. }
  18783. },
  18784. },
  18785. [
  18786. {
  18787. name: "Normal",
  18788. height: math.unit(2.35, "meters")
  18789. },
  18790. {
  18791. name: "Macro",
  18792. height: math.unit(140, "meters"),
  18793. default: true
  18794. },
  18795. {
  18796. name: "Megamacro",
  18797. height: math.unit(100, "miles")
  18798. },
  18799. ]
  18800. ))
  18801. characterMakers.push(() => makeCharacter(
  18802. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18803. {
  18804. front: {
  18805. height: math.unit(6 + 5 / 12, "feet"),
  18806. weight: math.unit(190, "lb"),
  18807. name: "Front",
  18808. image: {
  18809. source: "./media/characters/kingdead/front.svg",
  18810. extra: 1228 / 1177
  18811. }
  18812. },
  18813. },
  18814. [
  18815. {
  18816. name: "Micro",
  18817. height: math.unit(7, "inches")
  18818. },
  18819. {
  18820. name: "Normal",
  18821. height: math.unit(6 + 5 / 12, "feet")
  18822. },
  18823. {
  18824. name: "Macro",
  18825. height: math.unit(150, "feet"),
  18826. default: true
  18827. },
  18828. {
  18829. name: "Megamacro",
  18830. height: math.unit(200, "miles")
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18836. {
  18837. front: {
  18838. height: math.unit(8, "feet"),
  18839. weight: math.unit(600, "lb"),
  18840. name: "Front",
  18841. image: {
  18842. source: "./media/characters/kyrehx/front.svg",
  18843. extra: 1195 / 1095,
  18844. bottom: 0.034
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Micro",
  18851. height: math.unit(2, "inches")
  18852. },
  18853. {
  18854. name: "Normal",
  18855. height: math.unit(8, "feet"),
  18856. default: true
  18857. },
  18858. {
  18859. name: "Macro",
  18860. height: math.unit(255, "feet")
  18861. },
  18862. ]
  18863. ))
  18864. characterMakers.push(() => makeCharacter(
  18865. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18866. {
  18867. front: {
  18868. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18869. weight: math.unit(184, "lb"),
  18870. name: "Front",
  18871. image: {
  18872. source: "./media/characters/xang/front.svg",
  18873. extra: 845 / 755
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Normal",
  18880. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18881. default: true
  18882. },
  18883. {
  18884. name: "Macro",
  18885. height: math.unit(0.935 * 146, "feet")
  18886. },
  18887. {
  18888. name: "Megamacro",
  18889. height: math.unit(0.935 * 3, "miles")
  18890. },
  18891. ]
  18892. ))
  18893. characterMakers.push(() => makeCharacter(
  18894. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18895. {
  18896. frontDressed: {
  18897. height: math.unit(5 + 7 / 12, "feet"),
  18898. weight: math.unit(140, "lb"),
  18899. name: "Front (Dressed)",
  18900. image: {
  18901. source: "./media/characters/doc-weardno/front-dressed.svg",
  18902. extra: 263 / 234
  18903. }
  18904. },
  18905. backDressed: {
  18906. height: math.unit(5 + 7 / 12, "feet"),
  18907. weight: math.unit(140, "lb"),
  18908. name: "Back (Dressed)",
  18909. image: {
  18910. source: "./media/characters/doc-weardno/back-dressed.svg",
  18911. extra: 266 / 238
  18912. }
  18913. },
  18914. front: {
  18915. height: math.unit(5 + 7 / 12, "feet"),
  18916. weight: math.unit(140, "lb"),
  18917. name: "Front",
  18918. image: {
  18919. source: "./media/characters/doc-weardno/front.svg",
  18920. extra: 254 / 233
  18921. }
  18922. },
  18923. },
  18924. [
  18925. {
  18926. name: "Micro",
  18927. height: math.unit(3, "inches")
  18928. },
  18929. {
  18930. name: "Normal",
  18931. height: math.unit(5 + 7 / 12, "feet"),
  18932. default: true
  18933. },
  18934. {
  18935. name: "Macro",
  18936. height: math.unit(25, "feet")
  18937. },
  18938. {
  18939. name: "Megamacro",
  18940. height: math.unit(2, "miles")
  18941. },
  18942. ]
  18943. ))
  18944. characterMakers.push(() => makeCharacter(
  18945. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18946. {
  18947. front: {
  18948. height: math.unit(6 + 2 / 12, "feet"),
  18949. weight: math.unit(153, "lb"),
  18950. name: "Front",
  18951. image: {
  18952. source: "./media/characters/seth-whilst/front.svg",
  18953. bottom: 0.07
  18954. }
  18955. },
  18956. },
  18957. [
  18958. {
  18959. name: "Micro",
  18960. height: math.unit(5, "inches")
  18961. },
  18962. {
  18963. name: "Normal",
  18964. height: math.unit(6 + 2 / 12, "feet"),
  18965. default: true
  18966. },
  18967. ]
  18968. ))
  18969. characterMakers.push(() => makeCharacter(
  18970. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18971. {
  18972. front: {
  18973. height: math.unit(3, "inches"),
  18974. weight: math.unit(8, "grams"),
  18975. name: "Front",
  18976. image: {
  18977. source: "./media/characters/pocket-jabari/front.svg",
  18978. extra: 1024 / 974,
  18979. bottom: 0.039
  18980. }
  18981. },
  18982. },
  18983. [
  18984. {
  18985. name: "Minimicro",
  18986. height: math.unit(8, "mm")
  18987. },
  18988. {
  18989. name: "Micro",
  18990. height: math.unit(3, "inches"),
  18991. default: true
  18992. },
  18993. {
  18994. name: "Normal",
  18995. height: math.unit(3, "feet")
  18996. },
  18997. ]
  18998. ))
  18999. characterMakers.push(() => makeCharacter(
  19000. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19001. {
  19002. front: {
  19003. height: math.unit(15, "feet"),
  19004. weight: math.unit(3280, "lb"),
  19005. name: "Front",
  19006. image: {
  19007. source: "./media/characters/sapphy/front.svg",
  19008. extra: 671 / 577,
  19009. bottom: 0.085
  19010. }
  19011. },
  19012. back: {
  19013. height: math.unit(15, "feet"),
  19014. weight: math.unit(3280, "lb"),
  19015. name: "Back",
  19016. image: {
  19017. source: "./media/characters/sapphy/back.svg",
  19018. extra: 631 / 607,
  19019. bottom: 0.045
  19020. }
  19021. },
  19022. },
  19023. [
  19024. {
  19025. name: "Normal",
  19026. height: math.unit(15, "feet")
  19027. },
  19028. {
  19029. name: "Casual Macro",
  19030. height: math.unit(120, "feet")
  19031. },
  19032. {
  19033. name: "Macro",
  19034. height: math.unit(2150, "feet"),
  19035. default: true
  19036. },
  19037. {
  19038. name: "Megamacro",
  19039. height: math.unit(8, "miles")
  19040. },
  19041. {
  19042. name: "Galaxy Mom",
  19043. height: math.unit(6, "megalightyears")
  19044. },
  19045. ]
  19046. ))
  19047. characterMakers.push(() => makeCharacter(
  19048. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19049. {
  19050. front: {
  19051. height: math.unit(6, "feet"),
  19052. weight: math.unit(170, "lb"),
  19053. name: "Front",
  19054. image: {
  19055. source: "./media/characters/kiro/front.svg",
  19056. extra: 1064 / 1012,
  19057. bottom: 0.052
  19058. }
  19059. },
  19060. },
  19061. [
  19062. {
  19063. name: "Micro",
  19064. height: math.unit(6, "inches")
  19065. },
  19066. {
  19067. name: "Normal",
  19068. height: math.unit(6, "feet"),
  19069. default: true
  19070. },
  19071. {
  19072. name: "Macro",
  19073. height: math.unit(72, "feet")
  19074. },
  19075. ]
  19076. ))
  19077. characterMakers.push(() => makeCharacter(
  19078. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19079. {
  19080. front: {
  19081. height: math.unit(5 + 9 / 12, "feet"),
  19082. weight: math.unit(175, "lb"),
  19083. name: "Front",
  19084. image: {
  19085. source: "./media/characters/irishfox/front.svg",
  19086. extra: 1912 / 1680,
  19087. bottom: 0.02
  19088. }
  19089. },
  19090. },
  19091. [
  19092. {
  19093. name: "Nano",
  19094. height: math.unit(1, "mm")
  19095. },
  19096. {
  19097. name: "Micro",
  19098. height: math.unit(2, "inches")
  19099. },
  19100. {
  19101. name: "Normal",
  19102. height: math.unit(5 + 9 / 12, "feet"),
  19103. default: true
  19104. },
  19105. {
  19106. name: "Macro",
  19107. height: math.unit(45, "feet")
  19108. },
  19109. ]
  19110. ))
  19111. characterMakers.push(() => makeCharacter(
  19112. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19113. {
  19114. front: {
  19115. height: math.unit(6 + 1 / 12, "feet"),
  19116. weight: math.unit(75, "lb"),
  19117. name: "Front",
  19118. image: {
  19119. source: "./media/characters/aronai-sieyes/front.svg",
  19120. extra: 1532/1450,
  19121. bottom: 42/1574
  19122. }
  19123. },
  19124. side: {
  19125. height: math.unit(6 + 1 / 12, "feet"),
  19126. weight: math.unit(75, "lb"),
  19127. name: "Side",
  19128. image: {
  19129. source: "./media/characters/aronai-sieyes/side.svg",
  19130. extra: 1422/1365,
  19131. bottom: 148/1570
  19132. }
  19133. },
  19134. back: {
  19135. height: math.unit(6 + 1 / 12, "feet"),
  19136. weight: math.unit(75, "lb"),
  19137. name: "Back",
  19138. image: {
  19139. source: "./media/characters/aronai-sieyes/back.svg",
  19140. extra: 1526/1464,
  19141. bottom: 51/1577
  19142. }
  19143. },
  19144. dressed: {
  19145. height: math.unit(6 + 1 / 12, "feet"),
  19146. weight: math.unit(75, "lb"),
  19147. name: "Dressed",
  19148. image: {
  19149. source: "./media/characters/aronai-sieyes/dressed.svg",
  19150. extra: 1559/1483,
  19151. bottom: 39/1598
  19152. }
  19153. },
  19154. slit: {
  19155. height: math.unit(1.3, "feet"),
  19156. name: "Slit",
  19157. image: {
  19158. source: "./media/characters/aronai-sieyes/slit.svg"
  19159. }
  19160. },
  19161. slitSpread: {
  19162. height: math.unit(0.9, "feet"),
  19163. name: "Slit (Spread)",
  19164. image: {
  19165. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19166. }
  19167. },
  19168. rump: {
  19169. height: math.unit(1.3, "feet"),
  19170. name: "Rump",
  19171. image: {
  19172. source: "./media/characters/aronai-sieyes/rump.svg"
  19173. }
  19174. },
  19175. maw: {
  19176. height: math.unit(1.25, "feet"),
  19177. name: "Maw",
  19178. image: {
  19179. source: "./media/characters/aronai-sieyes/maw.svg"
  19180. }
  19181. },
  19182. feral: {
  19183. height: math.unit(18, "feet"),
  19184. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19185. name: "Feral",
  19186. image: {
  19187. source: "./media/characters/aronai-sieyes/feral.svg",
  19188. extra: 1530 / 1240,
  19189. bottom: 0.035
  19190. }
  19191. },
  19192. },
  19193. [
  19194. {
  19195. name: "Micro",
  19196. height: math.unit(2, "inches")
  19197. },
  19198. {
  19199. name: "Normal",
  19200. height: math.unit(6 + 1 / 12, "feet"),
  19201. default: true
  19202. }
  19203. ]
  19204. ))
  19205. characterMakers.push(() => makeCharacter(
  19206. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19207. {
  19208. front: {
  19209. height: math.unit(12, "feet"),
  19210. weight: math.unit(410, "kg"),
  19211. name: "Front",
  19212. image: {
  19213. source: "./media/characters/xuna/front.svg",
  19214. extra: 2184 / 1980
  19215. }
  19216. },
  19217. side: {
  19218. height: math.unit(12, "feet"),
  19219. weight: math.unit(410, "kg"),
  19220. name: "Side",
  19221. image: {
  19222. source: "./media/characters/xuna/side.svg",
  19223. extra: 2184 / 1980
  19224. }
  19225. },
  19226. back: {
  19227. height: math.unit(12, "feet"),
  19228. weight: math.unit(410, "kg"),
  19229. name: "Back",
  19230. image: {
  19231. source: "./media/characters/xuna/back.svg",
  19232. extra: 2184 / 1980
  19233. }
  19234. },
  19235. },
  19236. [
  19237. {
  19238. name: "Nano glow",
  19239. height: math.unit(10, "nm")
  19240. },
  19241. {
  19242. name: "Micro floof",
  19243. height: math.unit(0.3, "m")
  19244. },
  19245. {
  19246. name: "Huggable softy boi",
  19247. height: math.unit(3.6576, "m"),
  19248. default: true
  19249. },
  19250. {
  19251. name: "Admirable floof",
  19252. height: math.unit(80, "meters")
  19253. },
  19254. {
  19255. name: "Gentle macro",
  19256. height: math.unit(300, "meters")
  19257. },
  19258. {
  19259. name: "Very careful floof",
  19260. height: math.unit(3200, "meters")
  19261. },
  19262. {
  19263. name: "The mega floof",
  19264. height: math.unit(36000, "meters")
  19265. },
  19266. {
  19267. name: "Giga-fur-Wicker",
  19268. height: math.unit(4800000, "meters")
  19269. },
  19270. {
  19271. name: "Licky world",
  19272. height: math.unit(20000000, "meters")
  19273. },
  19274. {
  19275. name: "Floofy cyan sun",
  19276. height: math.unit(1500000000, "meters")
  19277. },
  19278. {
  19279. name: "Milky Wicker",
  19280. height: math.unit(1000000000000000000000, "meters")
  19281. },
  19282. {
  19283. name: "The observing Wicker",
  19284. height: math.unit(999999999999999999999999999, "meters")
  19285. },
  19286. ]
  19287. ))
  19288. characterMakers.push(() => makeCharacter(
  19289. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19290. {
  19291. front: {
  19292. height: math.unit(5 + 9 / 12, "feet"),
  19293. weight: math.unit(150, "lb"),
  19294. name: "Front",
  19295. image: {
  19296. source: "./media/characters/arokha-sieyes/front.svg",
  19297. extra: 1425 / 1284,
  19298. bottom: 0.05
  19299. }
  19300. },
  19301. },
  19302. [
  19303. {
  19304. name: "Normal",
  19305. height: math.unit(5 + 9 / 12, "feet")
  19306. },
  19307. {
  19308. name: "Macro",
  19309. height: math.unit(30, "meters"),
  19310. default: true
  19311. },
  19312. ]
  19313. ))
  19314. characterMakers.push(() => makeCharacter(
  19315. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19316. {
  19317. front: {
  19318. height: math.unit(6, "feet"),
  19319. weight: math.unit(180, "lb"),
  19320. name: "Front",
  19321. image: {
  19322. source: "./media/characters/arokh-sieyes/front.svg",
  19323. extra: 1830 / 1769,
  19324. bottom: 0.01
  19325. }
  19326. },
  19327. },
  19328. [
  19329. {
  19330. name: "Normal",
  19331. height: math.unit(6, "feet")
  19332. },
  19333. {
  19334. name: "Macro",
  19335. height: math.unit(30, "meters"),
  19336. default: true
  19337. },
  19338. ]
  19339. ))
  19340. characterMakers.push(() => makeCharacter(
  19341. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19342. {
  19343. side: {
  19344. height: math.unit(13 + 1 / 12, "feet"),
  19345. weight: math.unit(8.5, "tonnes"),
  19346. name: "Side",
  19347. image: {
  19348. source: "./media/characters/goldeneye/side.svg",
  19349. extra: 1182 / 778,
  19350. bottom: 0.067
  19351. }
  19352. },
  19353. paw: {
  19354. height: math.unit(3.4, "feet"),
  19355. name: "Paw",
  19356. image: {
  19357. source: "./media/characters/goldeneye/paw.svg"
  19358. }
  19359. },
  19360. },
  19361. [
  19362. {
  19363. name: "Normal",
  19364. height: math.unit(13 + 1 / 12, "feet"),
  19365. default: true
  19366. },
  19367. ]
  19368. ))
  19369. characterMakers.push(() => makeCharacter(
  19370. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19371. {
  19372. front: {
  19373. height: math.unit(6 + 1 / 12, "feet"),
  19374. weight: math.unit(210, "lb"),
  19375. name: "Front",
  19376. image: {
  19377. source: "./media/characters/leonardo-lycheborne/front.svg",
  19378. extra: 776/723,
  19379. bottom: 34/810
  19380. }
  19381. },
  19382. side: {
  19383. height: math.unit(6 + 1 / 12, "feet"),
  19384. weight: math.unit(210, "lb"),
  19385. name: "Side",
  19386. image: {
  19387. source: "./media/characters/leonardo-lycheborne/side.svg",
  19388. extra: 780/728,
  19389. bottom: 12/792
  19390. }
  19391. },
  19392. back: {
  19393. height: math.unit(6 + 1 / 12, "feet"),
  19394. weight: math.unit(210, "lb"),
  19395. name: "Back",
  19396. image: {
  19397. source: "./media/characters/leonardo-lycheborne/back.svg",
  19398. extra: 775/721,
  19399. bottom: 17/792
  19400. }
  19401. },
  19402. hand: {
  19403. height: math.unit(1.08, "feet"),
  19404. name: "Hand",
  19405. image: {
  19406. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19407. }
  19408. },
  19409. foot: {
  19410. height: math.unit(1.32, "feet"),
  19411. name: "Foot",
  19412. image: {
  19413. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19414. }
  19415. },
  19416. maw: {
  19417. height: math.unit(1, "feet"),
  19418. name: "Maw",
  19419. image: {
  19420. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19421. }
  19422. },
  19423. were: {
  19424. height: math.unit(20, "feet"),
  19425. weight: math.unit(7800, "lb"),
  19426. name: "Were",
  19427. image: {
  19428. source: "./media/characters/leonardo-lycheborne/were.svg",
  19429. extra: 1224/1165,
  19430. bottom: 72/1296
  19431. }
  19432. },
  19433. feral: {
  19434. height: math.unit(7.5, "feet"),
  19435. weight: math.unit(600, "lb"),
  19436. name: "Feral",
  19437. image: {
  19438. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19439. extra: 797/702,
  19440. bottom: 139/936
  19441. }
  19442. },
  19443. taur: {
  19444. height: math.unit(11, "feet"),
  19445. weight: math.unit(3300, "lb"),
  19446. name: "Taur",
  19447. image: {
  19448. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19449. extra: 1271/1197,
  19450. bottom: 47/1318
  19451. }
  19452. },
  19453. barghest: {
  19454. height: math.unit(11, "feet"),
  19455. weight: math.unit(1300, "lb"),
  19456. name: "Barghest",
  19457. image: {
  19458. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19459. extra: 1291/1204,
  19460. bottom: 37/1328
  19461. }
  19462. },
  19463. dick: {
  19464. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19465. name: "Dick",
  19466. image: {
  19467. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19468. }
  19469. },
  19470. dickWere: {
  19471. height: math.unit((20) / 3.8, "feet"),
  19472. name: "Dick (Were)",
  19473. image: {
  19474. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19475. }
  19476. },
  19477. },
  19478. [
  19479. {
  19480. name: "Normal",
  19481. height: math.unit(6 + 1 / 12, "feet"),
  19482. default: true
  19483. },
  19484. ]
  19485. ))
  19486. characterMakers.push(() => makeCharacter(
  19487. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19488. {
  19489. front: {
  19490. height: math.unit(10, "feet"),
  19491. weight: math.unit(350, "lb"),
  19492. name: "Front",
  19493. image: {
  19494. source: "./media/characters/jet/front.svg",
  19495. extra: 2050 / 1980,
  19496. bottom: 0.013
  19497. }
  19498. },
  19499. back: {
  19500. height: math.unit(10, "feet"),
  19501. weight: math.unit(350, "lb"),
  19502. name: "Back",
  19503. image: {
  19504. source: "./media/characters/jet/back.svg",
  19505. extra: 2050 / 1980,
  19506. bottom: 0.013
  19507. }
  19508. },
  19509. },
  19510. [
  19511. {
  19512. name: "Micro",
  19513. height: math.unit(6, "inches")
  19514. },
  19515. {
  19516. name: "Normal",
  19517. height: math.unit(10, "feet"),
  19518. default: true
  19519. },
  19520. {
  19521. name: "Macro",
  19522. height: math.unit(100, "feet")
  19523. },
  19524. ]
  19525. ))
  19526. characterMakers.push(() => makeCharacter(
  19527. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19528. {
  19529. front: {
  19530. height: math.unit(15, "feet"),
  19531. weight: math.unit(2800, "lb"),
  19532. name: "Front",
  19533. image: {
  19534. source: "./media/characters/tanarath/front.svg",
  19535. extra: 2392 / 2220,
  19536. bottom: 0.03
  19537. }
  19538. },
  19539. back: {
  19540. height: math.unit(15, "feet"),
  19541. weight: math.unit(2800, "lb"),
  19542. name: "Back",
  19543. image: {
  19544. source: "./media/characters/tanarath/back.svg",
  19545. extra: 2392 / 2220,
  19546. bottom: 0.03
  19547. }
  19548. },
  19549. },
  19550. [
  19551. {
  19552. name: "Normal",
  19553. height: math.unit(15, "feet"),
  19554. default: true
  19555. },
  19556. ]
  19557. ))
  19558. characterMakers.push(() => makeCharacter(
  19559. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19560. {
  19561. front: {
  19562. height: math.unit(7 + 1 / 12, "feet"),
  19563. weight: math.unit(175, "lb"),
  19564. name: "Front",
  19565. image: {
  19566. source: "./media/characters/patty-cattybatty/front.svg",
  19567. extra: 908 / 874,
  19568. bottom: 0.025
  19569. }
  19570. },
  19571. },
  19572. [
  19573. {
  19574. name: "Micro",
  19575. height: math.unit(1, "inch")
  19576. },
  19577. {
  19578. name: "Normal",
  19579. height: math.unit(7 + 1 / 12, "feet")
  19580. },
  19581. {
  19582. name: "Mini Macro",
  19583. height: math.unit(155, "feet")
  19584. },
  19585. {
  19586. name: "Macro",
  19587. height: math.unit(1077, "feet")
  19588. },
  19589. {
  19590. name: "Mega Macro",
  19591. height: math.unit(47650, "feet"),
  19592. default: true
  19593. },
  19594. {
  19595. name: "Giga Macro",
  19596. height: math.unit(440, "miles")
  19597. },
  19598. {
  19599. name: "Tera Macro",
  19600. height: math.unit(8700, "miles")
  19601. },
  19602. {
  19603. name: "Planetary Macro",
  19604. height: math.unit(32700, "miles")
  19605. },
  19606. {
  19607. name: "Solar Macro",
  19608. height: math.unit(550000, "miles")
  19609. },
  19610. {
  19611. name: "Celestial Macro",
  19612. height: math.unit(2.5, "AU")
  19613. },
  19614. ]
  19615. ))
  19616. characterMakers.push(() => makeCharacter(
  19617. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19618. {
  19619. front: {
  19620. height: math.unit(4 + 5 / 12, "feet"),
  19621. weight: math.unit(90, "lb"),
  19622. name: "Front",
  19623. image: {
  19624. source: "./media/characters/cappu/front.svg",
  19625. extra: 1247 / 1152,
  19626. bottom: 0.012
  19627. }
  19628. },
  19629. },
  19630. [
  19631. {
  19632. name: "Normal",
  19633. height: math.unit(4 + 5 / 12, "feet"),
  19634. default: true
  19635. },
  19636. ]
  19637. ))
  19638. characterMakers.push(() => makeCharacter(
  19639. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19640. {
  19641. frontDressed: {
  19642. height: math.unit(70, "cm"),
  19643. weight: math.unit(6, "kg"),
  19644. name: "Front (Dressed)",
  19645. image: {
  19646. source: "./media/characters/sebi/front-dressed.svg",
  19647. extra: 713.5 / 686.5,
  19648. bottom: 0.003
  19649. }
  19650. },
  19651. front: {
  19652. height: math.unit(70, "cm"),
  19653. weight: math.unit(5, "kg"),
  19654. name: "Front",
  19655. image: {
  19656. source: "./media/characters/sebi/front.svg",
  19657. extra: 713.5 / 686.5,
  19658. bottom: 0.003
  19659. }
  19660. }
  19661. },
  19662. [
  19663. {
  19664. name: "Normal",
  19665. height: math.unit(70, "cm"),
  19666. default: true
  19667. },
  19668. {
  19669. name: "Macro",
  19670. height: math.unit(8, "meters")
  19671. },
  19672. ]
  19673. ))
  19674. characterMakers.push(() => makeCharacter(
  19675. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19676. {
  19677. front: {
  19678. height: math.unit(6, "feet"),
  19679. weight: math.unit(150, "lb"),
  19680. name: "Front",
  19681. image: {
  19682. source: "./media/characters/typhek/front.svg",
  19683. extra: 1948 / 1929,
  19684. bottom: 0.025
  19685. }
  19686. },
  19687. side: {
  19688. height: math.unit(6, "feet"),
  19689. weight: math.unit(150, "lb"),
  19690. name: "Side",
  19691. image: {
  19692. source: "./media/characters/typhek/side.svg",
  19693. extra: 2034 / 2010,
  19694. bottom: 0.003
  19695. }
  19696. },
  19697. back: {
  19698. height: math.unit(6, "feet"),
  19699. weight: math.unit(150, "lb"),
  19700. name: "Back",
  19701. image: {
  19702. source: "./media/characters/typhek/back.svg",
  19703. extra: 2005 / 1978,
  19704. bottom: 0.004
  19705. }
  19706. },
  19707. palm: {
  19708. height: math.unit(1.2, "feet"),
  19709. name: "Palm",
  19710. image: {
  19711. source: "./media/characters/typhek/palm.svg"
  19712. }
  19713. },
  19714. fist: {
  19715. height: math.unit(1.1, "feet"),
  19716. name: "Fist",
  19717. image: {
  19718. source: "./media/characters/typhek/fist.svg"
  19719. }
  19720. },
  19721. foot: {
  19722. height: math.unit(1.57, "feet"),
  19723. name: "Foot",
  19724. image: {
  19725. source: "./media/characters/typhek/foot.svg"
  19726. }
  19727. },
  19728. sole: {
  19729. height: math.unit(2.05, "feet"),
  19730. name: "Sole",
  19731. image: {
  19732. source: "./media/characters/typhek/sole.svg"
  19733. }
  19734. },
  19735. },
  19736. [
  19737. {
  19738. name: "Macro",
  19739. height: math.unit(40, "stories"),
  19740. default: true
  19741. },
  19742. {
  19743. name: "Megamacro",
  19744. height: math.unit(1, "mile")
  19745. },
  19746. {
  19747. name: "Gigamacro",
  19748. height: math.unit(4000, "solarradii")
  19749. },
  19750. {
  19751. name: "Universal",
  19752. height: math.unit(1.1, "universes")
  19753. }
  19754. ]
  19755. ))
  19756. characterMakers.push(() => makeCharacter(
  19757. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19758. {
  19759. side: {
  19760. height: math.unit(5 + 7 / 12, "feet"),
  19761. weight: math.unit(150, "lb"),
  19762. name: "Side",
  19763. image: {
  19764. source: "./media/characters/kassy/side.svg",
  19765. extra: 1280 / 1225,
  19766. bottom: 0.002
  19767. }
  19768. },
  19769. front: {
  19770. height: math.unit(5 + 7 / 12, "feet"),
  19771. weight: math.unit(150, "lb"),
  19772. name: "Front",
  19773. image: {
  19774. source: "./media/characters/kassy/front.svg",
  19775. extra: 1280 / 1225,
  19776. bottom: 0.025
  19777. }
  19778. },
  19779. back: {
  19780. height: math.unit(5 + 7 / 12, "feet"),
  19781. weight: math.unit(150, "lb"),
  19782. name: "Back",
  19783. image: {
  19784. source: "./media/characters/kassy/back.svg",
  19785. extra: 1280 / 1225,
  19786. bottom: 0.002
  19787. }
  19788. },
  19789. foot: {
  19790. height: math.unit(1.266, "feet"),
  19791. name: "Foot",
  19792. image: {
  19793. source: "./media/characters/kassy/foot.svg"
  19794. }
  19795. },
  19796. },
  19797. [
  19798. {
  19799. name: "Normal",
  19800. height: math.unit(5 + 7 / 12, "feet")
  19801. },
  19802. {
  19803. name: "Macro",
  19804. height: math.unit(137, "feet"),
  19805. default: true
  19806. },
  19807. {
  19808. name: "Megamacro",
  19809. height: math.unit(1, "mile")
  19810. },
  19811. ]
  19812. ))
  19813. characterMakers.push(() => makeCharacter(
  19814. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19815. {
  19816. front: {
  19817. height: math.unit(6 + 1 / 12, "feet"),
  19818. weight: math.unit(200, "lb"),
  19819. name: "Front",
  19820. image: {
  19821. source: "./media/characters/neil/front.svg",
  19822. extra: 1326 / 1250,
  19823. bottom: 0.023
  19824. }
  19825. },
  19826. },
  19827. [
  19828. {
  19829. name: "Normal",
  19830. height: math.unit(6 + 1 / 12, "feet"),
  19831. default: true
  19832. },
  19833. {
  19834. name: "Macro",
  19835. height: math.unit(200, "feet")
  19836. },
  19837. ]
  19838. ))
  19839. characterMakers.push(() => makeCharacter(
  19840. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19841. {
  19842. front: {
  19843. height: math.unit(5 + 9 / 12, "feet"),
  19844. weight: math.unit(190, "lb"),
  19845. name: "Front",
  19846. image: {
  19847. source: "./media/characters/atticus/front.svg",
  19848. extra: 2934 / 2785,
  19849. bottom: 0.025
  19850. }
  19851. },
  19852. },
  19853. [
  19854. {
  19855. name: "Normal",
  19856. height: math.unit(5 + 9 / 12, "feet"),
  19857. default: true
  19858. },
  19859. {
  19860. name: "Macro",
  19861. height: math.unit(180, "feet")
  19862. },
  19863. ]
  19864. ))
  19865. characterMakers.push(() => makeCharacter(
  19866. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19867. {
  19868. side: {
  19869. height: math.unit(9, "feet"),
  19870. weight: math.unit(650, "lb"),
  19871. name: "Side",
  19872. image: {
  19873. source: "./media/characters/milo/side.svg",
  19874. extra: 2644 / 2310,
  19875. bottom: 0.032
  19876. }
  19877. },
  19878. },
  19879. [
  19880. {
  19881. name: "Normal",
  19882. height: math.unit(9, "feet"),
  19883. default: true
  19884. },
  19885. {
  19886. name: "Macro",
  19887. height: math.unit(300, "feet")
  19888. },
  19889. ]
  19890. ))
  19891. characterMakers.push(() => makeCharacter(
  19892. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19893. {
  19894. side: {
  19895. height: math.unit(8, "meters"),
  19896. weight: math.unit(90000, "kg"),
  19897. name: "Side",
  19898. image: {
  19899. source: "./media/characters/ijzer/side.svg",
  19900. extra: 2756 / 1600,
  19901. bottom: 0.01
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Small",
  19908. height: math.unit(3, "meters")
  19909. },
  19910. {
  19911. name: "Normal",
  19912. height: math.unit(8, "meters"),
  19913. default: true
  19914. },
  19915. {
  19916. name: "Normal+",
  19917. height: math.unit(10, "meters")
  19918. },
  19919. {
  19920. name: "Bigger",
  19921. height: math.unit(24, "meters")
  19922. },
  19923. {
  19924. name: "Huge",
  19925. height: math.unit(80, "meters")
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19931. {
  19932. front: {
  19933. height: math.unit(6 + 2 / 12, "feet"),
  19934. weight: math.unit(153, "lb"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/luca-cervicum/front.svg",
  19938. extra: 370 / 327,
  19939. bottom: 0.015
  19940. }
  19941. },
  19942. back: {
  19943. height: math.unit(6 + 2 / 12, "feet"),
  19944. weight: math.unit(153, "lb"),
  19945. name: "Back",
  19946. image: {
  19947. source: "./media/characters/luca-cervicum/back.svg",
  19948. extra: 367 / 333,
  19949. bottom: 0.005
  19950. }
  19951. },
  19952. frontGear: {
  19953. height: math.unit(6 + 2 / 12, "feet"),
  19954. weight: math.unit(173, "lb"),
  19955. name: "Front (Gear)",
  19956. image: {
  19957. source: "./media/characters/luca-cervicum/front-gear.svg",
  19958. extra: 377 / 333,
  19959. bottom: 0.006
  19960. }
  19961. },
  19962. },
  19963. [
  19964. {
  19965. name: "Normal",
  19966. height: math.unit(6 + 2 / 12, "feet"),
  19967. default: true
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19973. {
  19974. front: {
  19975. height: math.unit(6 + 1 / 12, "feet"),
  19976. weight: math.unit(304, "lb"),
  19977. name: "Front",
  19978. image: {
  19979. source: "./media/characters/oliver/front.svg",
  19980. extra: 157 / 143,
  19981. bottom: 0.08
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(6 + 1 / 12, "feet"),
  19989. default: true
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19995. {
  19996. front: {
  19997. height: math.unit(5 + 7 / 12, "feet"),
  19998. weight: math.unit(140, "lb"),
  19999. name: "Front",
  20000. image: {
  20001. source: "./media/characters/shane/front.svg",
  20002. extra: 304 / 289,
  20003. bottom: 0.005
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(5 + 7 / 12, "feet"),
  20011. default: true
  20012. },
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20017. {
  20018. front: {
  20019. height: math.unit(5 + 9 / 12, "feet"),
  20020. weight: math.unit(178, "lb"),
  20021. name: "Front",
  20022. image: {
  20023. source: "./media/characters/shin/front.svg",
  20024. extra: 159 / 151,
  20025. bottom: 0.015
  20026. }
  20027. },
  20028. },
  20029. [
  20030. {
  20031. name: "Normal",
  20032. height: math.unit(5 + 9 / 12, "feet"),
  20033. default: true
  20034. },
  20035. ]
  20036. ))
  20037. characterMakers.push(() => makeCharacter(
  20038. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20039. {
  20040. front: {
  20041. height: math.unit(5 + 10 / 12, "feet"),
  20042. weight: math.unit(168, "lb"),
  20043. name: "Front",
  20044. image: {
  20045. source: "./media/characters/xerxes/front.svg",
  20046. extra: 282 / 260,
  20047. bottom: 0.045
  20048. }
  20049. },
  20050. },
  20051. [
  20052. {
  20053. name: "Normal",
  20054. height: math.unit(5 + 10 / 12, "feet"),
  20055. default: true
  20056. },
  20057. ]
  20058. ))
  20059. characterMakers.push(() => makeCharacter(
  20060. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20061. {
  20062. front: {
  20063. height: math.unit(6 + 7 / 12, "feet"),
  20064. weight: math.unit(208, "lb"),
  20065. name: "Front",
  20066. image: {
  20067. source: "./media/characters/chaska/front.svg",
  20068. extra: 332 / 319,
  20069. bottom: 0.015
  20070. }
  20071. },
  20072. },
  20073. [
  20074. {
  20075. name: "Normal",
  20076. height: math.unit(6 + 7 / 12, "feet"),
  20077. default: true
  20078. },
  20079. ]
  20080. ))
  20081. characterMakers.push(() => makeCharacter(
  20082. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20083. {
  20084. front: {
  20085. height: math.unit(5 + 8 / 12, "feet"),
  20086. weight: math.unit(208, "lb"),
  20087. name: "Front",
  20088. image: {
  20089. source: "./media/characters/enuk/front.svg",
  20090. extra: 437 / 406,
  20091. bottom: 0.02
  20092. }
  20093. },
  20094. },
  20095. [
  20096. {
  20097. name: "Normal",
  20098. height: math.unit(5 + 8 / 12, "feet"),
  20099. default: true
  20100. },
  20101. ]
  20102. ))
  20103. characterMakers.push(() => makeCharacter(
  20104. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20105. {
  20106. front: {
  20107. height: math.unit(5 + 10 / 12, "feet"),
  20108. weight: math.unit(252, "lb"),
  20109. name: "Front",
  20110. image: {
  20111. source: "./media/characters/bruun/front.svg",
  20112. extra: 197 / 187,
  20113. bottom: 0.012
  20114. }
  20115. },
  20116. },
  20117. [
  20118. {
  20119. name: "Normal",
  20120. height: math.unit(5 + 10 / 12, "feet"),
  20121. default: true
  20122. },
  20123. ]
  20124. ))
  20125. characterMakers.push(() => makeCharacter(
  20126. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20127. {
  20128. front: {
  20129. height: math.unit(6 + 10 / 12, "feet"),
  20130. weight: math.unit(255, "lb"),
  20131. name: "Front",
  20132. image: {
  20133. source: "./media/characters/alexeev/front.svg",
  20134. extra: 213 / 200,
  20135. bottom: 0.05
  20136. }
  20137. },
  20138. },
  20139. [
  20140. {
  20141. name: "Normal",
  20142. height: math.unit(6 + 10 / 12, "feet"),
  20143. default: true
  20144. },
  20145. ]
  20146. ))
  20147. characterMakers.push(() => makeCharacter(
  20148. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20149. {
  20150. front: {
  20151. height: math.unit(2 + 8 / 12, "feet"),
  20152. weight: math.unit(22, "lb"),
  20153. name: "Front",
  20154. image: {
  20155. source: "./media/characters/evelyn/front.svg",
  20156. extra: 208 / 180
  20157. }
  20158. },
  20159. },
  20160. [
  20161. {
  20162. name: "Normal",
  20163. height: math.unit(2 + 8 / 12, "feet"),
  20164. default: true
  20165. },
  20166. ]
  20167. ))
  20168. characterMakers.push(() => makeCharacter(
  20169. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20170. {
  20171. front: {
  20172. height: math.unit(5 + 9 / 12, "feet"),
  20173. weight: math.unit(139, "lb"),
  20174. name: "Front",
  20175. image: {
  20176. source: "./media/characters/inca/front.svg",
  20177. extra: 294 / 291,
  20178. bottom: 0.03
  20179. }
  20180. },
  20181. },
  20182. [
  20183. {
  20184. name: "Normal",
  20185. height: math.unit(5 + 9 / 12, "feet"),
  20186. default: true
  20187. },
  20188. ]
  20189. ))
  20190. characterMakers.push(() => makeCharacter(
  20191. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20192. {
  20193. front: {
  20194. height: math.unit(6 + 3 / 12, "feet"),
  20195. weight: math.unit(185, "lb"),
  20196. name: "Front",
  20197. image: {
  20198. source: "./media/characters/mera/front.svg",
  20199. extra: 291 / 277,
  20200. bottom: 0.03
  20201. }
  20202. },
  20203. },
  20204. [
  20205. {
  20206. name: "Normal",
  20207. height: math.unit(6 + 3 / 12, "feet"),
  20208. default: true
  20209. },
  20210. ]
  20211. ))
  20212. characterMakers.push(() => makeCharacter(
  20213. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20214. {
  20215. front: {
  20216. height: math.unit(6 + 7 / 12, "feet"),
  20217. weight: math.unit(160, "lb"),
  20218. name: "Front",
  20219. image: {
  20220. source: "./media/characters/ceres/front.svg",
  20221. extra: 1023 / 950,
  20222. bottom: 0.027
  20223. }
  20224. },
  20225. back: {
  20226. height: math.unit(6 + 7 / 12, "feet"),
  20227. weight: math.unit(160, "lb"),
  20228. name: "Back",
  20229. image: {
  20230. source: "./media/characters/ceres/back.svg",
  20231. extra: 1023 / 950
  20232. }
  20233. },
  20234. },
  20235. [
  20236. {
  20237. name: "Normal",
  20238. height: math.unit(6 + 7 / 12, "feet"),
  20239. default: true
  20240. },
  20241. ]
  20242. ))
  20243. characterMakers.push(() => makeCharacter(
  20244. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20245. {
  20246. front: {
  20247. height: math.unit(5 + 10 / 12, "feet"),
  20248. weight: math.unit(150, "lb"),
  20249. name: "Front",
  20250. image: {
  20251. source: "./media/characters/kris/front.svg",
  20252. extra: 885 / 803,
  20253. bottom: 0.03
  20254. }
  20255. },
  20256. },
  20257. [
  20258. {
  20259. name: "Normal",
  20260. height: math.unit(5 + 10 / 12, "feet"),
  20261. default: true
  20262. },
  20263. ]
  20264. ))
  20265. characterMakers.push(() => makeCharacter(
  20266. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20267. {
  20268. front: {
  20269. height: math.unit(7, "feet"),
  20270. weight: math.unit(120, "kg"),
  20271. name: "Front",
  20272. image: {
  20273. source: "./media/characters/taluthus/front.svg",
  20274. extra: 903 / 833,
  20275. bottom: 0.015
  20276. }
  20277. },
  20278. },
  20279. [
  20280. {
  20281. name: "Normal",
  20282. height: math.unit(7, "feet"),
  20283. default: true
  20284. },
  20285. {
  20286. name: "Macro",
  20287. height: math.unit(300, "feet")
  20288. },
  20289. ]
  20290. ))
  20291. characterMakers.push(() => makeCharacter(
  20292. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20293. {
  20294. front: {
  20295. height: math.unit(5 + 9 / 12, "feet"),
  20296. weight: math.unit(145, "lb"),
  20297. name: "Front",
  20298. image: {
  20299. source: "./media/characters/dawn/front.svg",
  20300. extra: 2094 / 2016,
  20301. bottom: 0.025
  20302. }
  20303. },
  20304. back: {
  20305. height: math.unit(5 + 9 / 12, "feet"),
  20306. weight: math.unit(160, "lb"),
  20307. name: "Back",
  20308. image: {
  20309. source: "./media/characters/dawn/back.svg",
  20310. extra: 2112 / 2080,
  20311. bottom: 0.005
  20312. }
  20313. },
  20314. },
  20315. [
  20316. {
  20317. name: "Normal",
  20318. height: math.unit(6 + 7 / 12, "feet"),
  20319. default: true
  20320. },
  20321. ]
  20322. ))
  20323. characterMakers.push(() => makeCharacter(
  20324. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20325. {
  20326. anthro: {
  20327. height: math.unit(8 + 3 / 12, "feet"),
  20328. weight: math.unit(450, "lb"),
  20329. name: "Anthro",
  20330. image: {
  20331. source: "./media/characters/arador/anthro.svg",
  20332. extra: 1835 / 1718,
  20333. bottom: 0.025
  20334. }
  20335. },
  20336. feral: {
  20337. height: math.unit(4, "feet"),
  20338. weight: math.unit(200, "lb"),
  20339. name: "Feral",
  20340. image: {
  20341. source: "./media/characters/arador/feral.svg",
  20342. extra: 1683 / 1514,
  20343. bottom: 0.07
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Normal",
  20350. height: math.unit(8 + 3 / 12, "feet")
  20351. },
  20352. {
  20353. name: "Macro",
  20354. height: math.unit(82.5, "feet"),
  20355. default: true
  20356. },
  20357. ]
  20358. ))
  20359. characterMakers.push(() => makeCharacter(
  20360. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20361. {
  20362. front: {
  20363. height: math.unit(5 + 10 / 12, "feet"),
  20364. weight: math.unit(125, "lb"),
  20365. name: "Front",
  20366. image: {
  20367. source: "./media/characters/dharsi/front.svg",
  20368. extra: 716 / 630,
  20369. bottom: 0.035
  20370. }
  20371. },
  20372. },
  20373. [
  20374. {
  20375. name: "Nano",
  20376. height: math.unit(100, "nm")
  20377. },
  20378. {
  20379. name: "Micro",
  20380. height: math.unit(2, "inches")
  20381. },
  20382. {
  20383. name: "Normal",
  20384. height: math.unit(5 + 10 / 12, "feet"),
  20385. default: true
  20386. },
  20387. {
  20388. name: "Macro",
  20389. height: math.unit(1000, "feet")
  20390. },
  20391. {
  20392. name: "Megamacro",
  20393. height: math.unit(10, "miles")
  20394. },
  20395. {
  20396. name: "Gigamacro",
  20397. height: math.unit(3000, "miles")
  20398. },
  20399. {
  20400. name: "Teramacro",
  20401. height: math.unit(500000, "miles")
  20402. },
  20403. {
  20404. name: "Teramacro+",
  20405. height: math.unit(30, "galaxies")
  20406. },
  20407. ]
  20408. ))
  20409. characterMakers.push(() => makeCharacter(
  20410. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20411. {
  20412. front: {
  20413. height: math.unit(6, "feet"),
  20414. weight: math.unit(150, "lb"),
  20415. name: "Front",
  20416. image: {
  20417. source: "./media/characters/deathy/front.svg",
  20418. extra: 1552 / 1463,
  20419. bottom: 0.025
  20420. }
  20421. },
  20422. side: {
  20423. height: math.unit(6, "feet"),
  20424. weight: math.unit(150, "lb"),
  20425. name: "Side",
  20426. image: {
  20427. source: "./media/characters/deathy/side.svg",
  20428. extra: 1604 / 1455,
  20429. bottom: 0.025
  20430. }
  20431. },
  20432. back: {
  20433. height: math.unit(6, "feet"),
  20434. weight: math.unit(150, "lb"),
  20435. name: "Back",
  20436. image: {
  20437. source: "./media/characters/deathy/back.svg",
  20438. extra: 1580 / 1463,
  20439. bottom: 0.005
  20440. }
  20441. },
  20442. },
  20443. [
  20444. {
  20445. name: "Micro",
  20446. height: math.unit(5, "millimeters")
  20447. },
  20448. {
  20449. name: "Normal",
  20450. height: math.unit(6 + 5 / 12, "feet"),
  20451. default: true
  20452. },
  20453. ]
  20454. ))
  20455. characterMakers.push(() => makeCharacter(
  20456. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20457. {
  20458. front: {
  20459. height: math.unit(16, "feet"),
  20460. weight: math.unit(4000, "lb"),
  20461. name: "Front",
  20462. image: {
  20463. source: "./media/characters/juniper/front.svg",
  20464. bottom: 0.04
  20465. }
  20466. },
  20467. },
  20468. [
  20469. {
  20470. name: "Normal",
  20471. height: math.unit(16, "feet"),
  20472. default: true
  20473. },
  20474. ]
  20475. ))
  20476. characterMakers.push(() => makeCharacter(
  20477. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20478. {
  20479. front: {
  20480. height: math.unit(6, "feet"),
  20481. weight: math.unit(150, "lb"),
  20482. name: "Front",
  20483. image: {
  20484. source: "./media/characters/hipster/front.svg",
  20485. extra: 1312 / 1209,
  20486. bottom: 0.025
  20487. }
  20488. },
  20489. back: {
  20490. height: math.unit(6, "feet"),
  20491. weight: math.unit(150, "lb"),
  20492. name: "Back",
  20493. image: {
  20494. source: "./media/characters/hipster/back.svg",
  20495. extra: 1281 / 1196,
  20496. bottom: 0.01
  20497. }
  20498. },
  20499. },
  20500. [
  20501. {
  20502. name: "Micro",
  20503. height: math.unit(1, "mm")
  20504. },
  20505. {
  20506. name: "Normal",
  20507. height: math.unit(4, "inches"),
  20508. default: true
  20509. },
  20510. {
  20511. name: "Macro",
  20512. height: math.unit(500, "feet")
  20513. },
  20514. {
  20515. name: "Megamacro",
  20516. height: math.unit(1000, "miles")
  20517. },
  20518. ]
  20519. ))
  20520. characterMakers.push(() => makeCharacter(
  20521. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20522. {
  20523. front: {
  20524. height: math.unit(6, "feet"),
  20525. weight: math.unit(150, "lb"),
  20526. name: "Front",
  20527. image: {
  20528. source: "./media/characters/tendirmuldr/front.svg",
  20529. extra: 1878 / 1772,
  20530. bottom: 0.015
  20531. }
  20532. },
  20533. },
  20534. [
  20535. {
  20536. name: "Megamacro",
  20537. height: math.unit(1500, "miles"),
  20538. default: true
  20539. },
  20540. ]
  20541. ))
  20542. characterMakers.push(() => makeCharacter(
  20543. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20544. {
  20545. front: {
  20546. height: math.unit(14, "feet"),
  20547. weight: math.unit(12000, "lb"),
  20548. name: "Front",
  20549. image: {
  20550. source: "./media/characters/mort/front.svg",
  20551. extra: 365 / 318,
  20552. bottom: 0.01
  20553. }
  20554. },
  20555. side: {
  20556. height: math.unit(14, "feet"),
  20557. weight: math.unit(12000, "lb"),
  20558. name: "Side",
  20559. image: {
  20560. source: "./media/characters/mort/side.svg",
  20561. extra: 365 / 318,
  20562. bottom: 0.052
  20563. },
  20564. default: true
  20565. },
  20566. back: {
  20567. height: math.unit(14, "feet"),
  20568. weight: math.unit(12000, "lb"),
  20569. name: "Back",
  20570. image: {
  20571. source: "./media/characters/mort/back.svg",
  20572. extra: 371 / 332,
  20573. bottom: 0.18
  20574. }
  20575. },
  20576. },
  20577. [
  20578. {
  20579. name: "Normal",
  20580. height: math.unit(14, "feet"),
  20581. default: true
  20582. },
  20583. ]
  20584. ))
  20585. characterMakers.push(() => makeCharacter(
  20586. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20587. {
  20588. front: {
  20589. height: math.unit(8, "feet"),
  20590. weight: math.unit(1, "ton"),
  20591. name: "Front",
  20592. image: {
  20593. source: "./media/characters/lycoa/front.svg",
  20594. extra: 1875 / 1789,
  20595. bottom: 0.022
  20596. }
  20597. },
  20598. back: {
  20599. height: math.unit(8, "feet"),
  20600. weight: math.unit(1, "ton"),
  20601. name: "Back",
  20602. image: {
  20603. source: "./media/characters/lycoa/back.svg",
  20604. extra: 1835 / 1781,
  20605. bottom: 0.03
  20606. }
  20607. },
  20608. head: {
  20609. height: math.unit(2.1, "feet"),
  20610. name: "Head",
  20611. image: {
  20612. source: "./media/characters/lycoa/head.svg"
  20613. }
  20614. },
  20615. tailmaw: {
  20616. height: math.unit(1.9, "feet"),
  20617. name: "Tailmaw",
  20618. image: {
  20619. source: "./media/characters/lycoa/tailmaw.svg"
  20620. }
  20621. },
  20622. tentacles: {
  20623. height: math.unit(2.1, "feet"),
  20624. name: "Tentacles",
  20625. image: {
  20626. source: "./media/characters/lycoa/tentacles.svg"
  20627. }
  20628. },
  20629. dick: {
  20630. height: math.unit(1.73, "feet"),
  20631. name: "Dick",
  20632. image: {
  20633. source: "./media/characters/lycoa/dick.svg"
  20634. }
  20635. },
  20636. },
  20637. [
  20638. {
  20639. name: "Normal",
  20640. height: math.unit(8, "feet"),
  20641. default: true
  20642. },
  20643. {
  20644. name: "Macro",
  20645. height: math.unit(30, "feet")
  20646. },
  20647. ]
  20648. ))
  20649. characterMakers.push(() => makeCharacter(
  20650. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20651. {
  20652. front: {
  20653. height: math.unit(4 + 2 / 12, "feet"),
  20654. weight: math.unit(70, "lb"),
  20655. name: "Front",
  20656. image: {
  20657. source: "./media/characters/naldara/front.svg",
  20658. extra: 841 / 720,
  20659. bottom: 0.04
  20660. }
  20661. },
  20662. naga: {
  20663. height: math.unit(23, "feet"),
  20664. weight: math.unit(15000, "kg"),
  20665. name: "Naga",
  20666. image: {
  20667. source: "./media/characters/naldara/naga.svg",
  20668. extra: 3290 / 2959,
  20669. bottom: 124 / 3432
  20670. }
  20671. },
  20672. },
  20673. [
  20674. {
  20675. name: "Normal",
  20676. height: math.unit(4 + 2 / 12, "feet"),
  20677. default: true
  20678. },
  20679. ]
  20680. ))
  20681. characterMakers.push(() => makeCharacter(
  20682. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20683. {
  20684. front: {
  20685. height: math.unit(13 + 7 / 12, "feet"),
  20686. weight: math.unit(1500, "lb"),
  20687. name: "Front",
  20688. image: {
  20689. source: "./media/characters/briar/front.svg",
  20690. extra: 626 / 596,
  20691. bottom: 0.08
  20692. }
  20693. },
  20694. },
  20695. [
  20696. {
  20697. name: "Normal",
  20698. height: math.unit(13 + 7 / 12, "feet"),
  20699. default: true
  20700. },
  20701. ]
  20702. ))
  20703. characterMakers.push(() => makeCharacter(
  20704. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20705. {
  20706. side: {
  20707. height: math.unit(10, "feet"),
  20708. weight: math.unit(500, "lb"),
  20709. name: "Side",
  20710. image: {
  20711. source: "./media/characters/vanguard/side.svg",
  20712. extra: 502 / 425,
  20713. bottom: 0.087
  20714. }
  20715. },
  20716. },
  20717. [
  20718. {
  20719. name: "Normal",
  20720. height: math.unit(10, "feet"),
  20721. default: true
  20722. },
  20723. ]
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20727. {
  20728. front: {
  20729. height: math.unit(7.5, "feet"),
  20730. weight: math.unit(2, "lb"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/artemis/front.svg",
  20734. extra: 1192 / 1075,
  20735. bottom: 0.07
  20736. }
  20737. },
  20738. frontNsfw: {
  20739. height: math.unit(7.5, "feet"),
  20740. weight: math.unit(2, "lb"),
  20741. name: "Front (NSFW)",
  20742. image: {
  20743. source: "./media/characters/artemis/front-nsfw.svg",
  20744. extra: 1192 / 1075,
  20745. bottom: 0.07
  20746. }
  20747. },
  20748. frontNsfwer: {
  20749. height: math.unit(7.5, "feet"),
  20750. weight: math.unit(2, "lb"),
  20751. name: "Front (NSFW-er)",
  20752. image: {
  20753. source: "./media/characters/artemis/front-nsfwer.svg",
  20754. extra: 1192 / 1075,
  20755. bottom: 0.07
  20756. }
  20757. },
  20758. side: {
  20759. height: math.unit(7.5, "feet"),
  20760. weight: math.unit(2, "lb"),
  20761. name: "Side",
  20762. image: {
  20763. source: "./media/characters/artemis/side.svg",
  20764. extra: 1192 / 1075,
  20765. bottom: 0.07
  20766. }
  20767. },
  20768. sideNsfw: {
  20769. height: math.unit(7.5, "feet"),
  20770. weight: math.unit(2, "lb"),
  20771. name: "Side (NSFW)",
  20772. image: {
  20773. source: "./media/characters/artemis/side-nsfw.svg",
  20774. extra: 1192 / 1075,
  20775. bottom: 0.07
  20776. }
  20777. },
  20778. sideNsfwer: {
  20779. height: math.unit(7.5, "feet"),
  20780. weight: math.unit(2, "lb"),
  20781. name: "Side (NSFW-er)",
  20782. image: {
  20783. source: "./media/characters/artemis/side-nsfwer.svg",
  20784. extra: 1192 / 1075,
  20785. bottom: 0.07
  20786. }
  20787. },
  20788. maw: {
  20789. height: math.unit(1.1, "feet"),
  20790. name: "Maw",
  20791. image: {
  20792. source: "./media/characters/artemis/maw.svg"
  20793. }
  20794. },
  20795. stomach: {
  20796. height: math.unit(0.95, "feet"),
  20797. name: "Stomach",
  20798. image: {
  20799. source: "./media/characters/artemis/stomach.svg"
  20800. }
  20801. },
  20802. dickCanine: {
  20803. height: math.unit(1, "feet"),
  20804. name: "Dick (Canine)",
  20805. image: {
  20806. source: "./media/characters/artemis/dick-canine.svg"
  20807. }
  20808. },
  20809. dickEquine: {
  20810. height: math.unit(0.85, "feet"),
  20811. name: "Dick (Equine)",
  20812. image: {
  20813. source: "./media/characters/artemis/dick-equine.svg"
  20814. }
  20815. },
  20816. dickExotic: {
  20817. height: math.unit(0.85, "feet"),
  20818. name: "Dick (Exotic)",
  20819. image: {
  20820. source: "./media/characters/artemis/dick-exotic.svg"
  20821. }
  20822. },
  20823. },
  20824. [
  20825. {
  20826. name: "Normal",
  20827. height: math.unit(7.5, "feet"),
  20828. default: true
  20829. },
  20830. {
  20831. name: "Enlarged",
  20832. height: math.unit(12, "feet")
  20833. },
  20834. ]
  20835. ))
  20836. characterMakers.push(() => makeCharacter(
  20837. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20838. {
  20839. front: {
  20840. height: math.unit(5 + 3 / 12, "feet"),
  20841. weight: math.unit(160, "lb"),
  20842. name: "Front",
  20843. image: {
  20844. source: "./media/characters/kira/front.svg",
  20845. extra: 906 / 786,
  20846. bottom: 0.01
  20847. }
  20848. },
  20849. back: {
  20850. height: math.unit(5 + 3 / 12, "feet"),
  20851. weight: math.unit(160, "lb"),
  20852. name: "Back",
  20853. image: {
  20854. source: "./media/characters/kira/back.svg",
  20855. extra: 882 / 757,
  20856. bottom: 0.005
  20857. }
  20858. },
  20859. frontDressed: {
  20860. height: math.unit(5 + 3 / 12, "feet"),
  20861. weight: math.unit(160, "lb"),
  20862. name: "Front (Dressed)",
  20863. image: {
  20864. source: "./media/characters/kira/front-dressed.svg",
  20865. extra: 906 / 786,
  20866. bottom: 0.01
  20867. }
  20868. },
  20869. beans: {
  20870. height: math.unit(0.92, "feet"),
  20871. name: "Beans",
  20872. image: {
  20873. source: "./media/characters/kira/beans.svg"
  20874. }
  20875. },
  20876. },
  20877. [
  20878. {
  20879. name: "Normal",
  20880. height: math.unit(5 + 3 / 12, "feet"),
  20881. default: true
  20882. },
  20883. ]
  20884. ))
  20885. characterMakers.push(() => makeCharacter(
  20886. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20887. {
  20888. front: {
  20889. height: math.unit(5 + 4 / 12, "feet"),
  20890. weight: math.unit(145, "lb"),
  20891. name: "Front",
  20892. image: {
  20893. source: "./media/characters/scramble/front.svg",
  20894. extra: 763 / 727,
  20895. bottom: 0.05
  20896. }
  20897. },
  20898. back: {
  20899. height: math.unit(5 + 4 / 12, "feet"),
  20900. weight: math.unit(145, "lb"),
  20901. name: "Back",
  20902. image: {
  20903. source: "./media/characters/scramble/back.svg",
  20904. extra: 826 / 737,
  20905. bottom: 0.002
  20906. }
  20907. },
  20908. },
  20909. [
  20910. {
  20911. name: "Normal",
  20912. height: math.unit(5 + 4 / 12, "feet"),
  20913. default: true
  20914. },
  20915. ]
  20916. ))
  20917. characterMakers.push(() => makeCharacter(
  20918. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20919. {
  20920. side: {
  20921. height: math.unit(6 + 2 / 12, "feet"),
  20922. weight: math.unit(190, "lb"),
  20923. name: "Side",
  20924. image: {
  20925. source: "./media/characters/biscuit/side.svg",
  20926. extra: 858 / 791,
  20927. bottom: 0.044
  20928. }
  20929. },
  20930. },
  20931. [
  20932. {
  20933. name: "Normal",
  20934. height: math.unit(6 + 2 / 12, "feet"),
  20935. default: true
  20936. },
  20937. ]
  20938. ))
  20939. characterMakers.push(() => makeCharacter(
  20940. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20941. {
  20942. front: {
  20943. height: math.unit(5 + 2 / 12, "feet"),
  20944. weight: math.unit(120, "lb"),
  20945. name: "Front",
  20946. image: {
  20947. source: "./media/characters/poffin/front.svg",
  20948. extra: 786 / 680,
  20949. bottom: 0.005
  20950. }
  20951. },
  20952. },
  20953. [
  20954. {
  20955. name: "Normal",
  20956. height: math.unit(5 + 2 / 12, "feet"),
  20957. default: true
  20958. },
  20959. ]
  20960. ))
  20961. characterMakers.push(() => makeCharacter(
  20962. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20963. {
  20964. front: {
  20965. height: math.unit(6 + 3 / 12, "feet"),
  20966. weight: math.unit(519, "lb"),
  20967. name: "Front",
  20968. image: {
  20969. source: "./media/characters/dhari/front.svg",
  20970. extra: 1048 / 946,
  20971. bottom: 0.015
  20972. }
  20973. },
  20974. back: {
  20975. height: math.unit(6 + 3 / 12, "feet"),
  20976. weight: math.unit(519, "lb"),
  20977. name: "Back",
  20978. image: {
  20979. source: "./media/characters/dhari/back.svg",
  20980. extra: 1048 / 931,
  20981. bottom: 0.005
  20982. }
  20983. },
  20984. frontDressed: {
  20985. height: math.unit(6 + 3 / 12, "feet"),
  20986. weight: math.unit(519, "lb"),
  20987. name: "Front (Dressed)",
  20988. image: {
  20989. source: "./media/characters/dhari/front-dressed.svg",
  20990. extra: 1713 / 1546,
  20991. bottom: 0.02
  20992. }
  20993. },
  20994. backDressed: {
  20995. height: math.unit(6 + 3 / 12, "feet"),
  20996. weight: math.unit(519, "lb"),
  20997. name: "Back (Dressed)",
  20998. image: {
  20999. source: "./media/characters/dhari/back-dressed.svg",
  21000. extra: 1699 / 1537,
  21001. bottom: 0.01
  21002. }
  21003. },
  21004. maw: {
  21005. height: math.unit(0.95, "feet"),
  21006. name: "Maw",
  21007. image: {
  21008. source: "./media/characters/dhari/maw.svg"
  21009. }
  21010. },
  21011. wereFront: {
  21012. height: math.unit(12 + 8 / 12, "feet"),
  21013. weight: math.unit(4000, "lb"),
  21014. name: "Front (Were)",
  21015. image: {
  21016. source: "./media/characters/dhari/were-front.svg",
  21017. extra: 1065 / 969,
  21018. bottom: 0.015
  21019. }
  21020. },
  21021. wereBack: {
  21022. height: math.unit(12 + 8 / 12, "feet"),
  21023. weight: math.unit(4000, "lb"),
  21024. name: "Back (Were)",
  21025. image: {
  21026. source: "./media/characters/dhari/were-back.svg",
  21027. extra: 1065 / 969,
  21028. bottom: 0.012
  21029. }
  21030. },
  21031. wereMaw: {
  21032. height: math.unit(0.625, "meters"),
  21033. name: "Maw (Were)",
  21034. image: {
  21035. source: "./media/characters/dhari/were-maw.svg"
  21036. }
  21037. },
  21038. },
  21039. [
  21040. {
  21041. name: "Normal",
  21042. height: math.unit(6 + 3 / 12, "feet"),
  21043. default: true
  21044. },
  21045. ]
  21046. ))
  21047. characterMakers.push(() => makeCharacter(
  21048. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21049. {
  21050. anthro: {
  21051. height: math.unit(5 + 7 / 12, "feet"),
  21052. weight: math.unit(175, "lb"),
  21053. name: "Anthro",
  21054. image: {
  21055. source: "./media/characters/rena-dyne/anthro.svg",
  21056. extra: 1849 / 1785,
  21057. bottom: 0.005
  21058. }
  21059. },
  21060. taur: {
  21061. height: math.unit(15 + 6 / 12, "feet"),
  21062. weight: math.unit(8000, "lb"),
  21063. name: "Taur",
  21064. image: {
  21065. source: "./media/characters/rena-dyne/taur.svg",
  21066. extra: 2315 / 2234,
  21067. bottom: 0.033
  21068. }
  21069. },
  21070. },
  21071. [
  21072. {
  21073. name: "Normal",
  21074. height: math.unit(5 + 7 / 12, "feet"),
  21075. default: true
  21076. },
  21077. ]
  21078. ))
  21079. characterMakers.push(() => makeCharacter(
  21080. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21081. {
  21082. front: {
  21083. height: math.unit(8, "feet"),
  21084. weight: math.unit(600, "lb"),
  21085. name: "Front",
  21086. image: {
  21087. source: "./media/characters/weremeep/front.svg",
  21088. extra: 967 / 862,
  21089. bottom: 0.01
  21090. }
  21091. },
  21092. },
  21093. [
  21094. {
  21095. name: "Normal",
  21096. height: math.unit(8, "feet"),
  21097. default: true
  21098. },
  21099. {
  21100. name: "Lorg",
  21101. height: math.unit(12, "feet")
  21102. },
  21103. {
  21104. name: "Oh Lawd She Comin'",
  21105. height: math.unit(20, "feet")
  21106. },
  21107. ]
  21108. ))
  21109. characterMakers.push(() => makeCharacter(
  21110. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21111. {
  21112. front: {
  21113. height: math.unit(4, "feet"),
  21114. weight: math.unit(90, "lb"),
  21115. name: "Front",
  21116. image: {
  21117. source: "./media/characters/reza/front.svg",
  21118. extra: 1183 / 1111,
  21119. bottom: 0.017
  21120. }
  21121. },
  21122. back: {
  21123. height: math.unit(4, "feet"),
  21124. weight: math.unit(90, "lb"),
  21125. name: "Back",
  21126. image: {
  21127. source: "./media/characters/reza/back.svg",
  21128. extra: 1183 / 1111,
  21129. bottom: 0.01
  21130. }
  21131. },
  21132. drake: {
  21133. height: math.unit(30, "feet"),
  21134. weight: math.unit(246960, "lb"),
  21135. name: "Drake",
  21136. image: {
  21137. source: "./media/characters/reza/drake.svg",
  21138. extra: 2350 / 2024,
  21139. bottom: 60.7 / 2403
  21140. }
  21141. },
  21142. },
  21143. [
  21144. {
  21145. name: "Normal",
  21146. height: math.unit(4, "feet"),
  21147. default: true
  21148. },
  21149. ]
  21150. ))
  21151. characterMakers.push(() => makeCharacter(
  21152. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21153. {
  21154. side: {
  21155. height: math.unit(15, "feet"),
  21156. weight: math.unit(14, "tons"),
  21157. name: "Side",
  21158. image: {
  21159. source: "./media/characters/athea/side.svg",
  21160. extra: 960 / 540,
  21161. bottom: 0.003
  21162. }
  21163. },
  21164. sitting: {
  21165. height: math.unit(6 * 2.85, "feet"),
  21166. weight: math.unit(14, "tons"),
  21167. name: "Sitting",
  21168. image: {
  21169. source: "./media/characters/athea/sitting.svg",
  21170. extra: 621 / 581,
  21171. bottom: 0.075
  21172. }
  21173. },
  21174. maw: {
  21175. height: math.unit(7.59498031496063, "feet"),
  21176. name: "Maw",
  21177. image: {
  21178. source: "./media/characters/athea/maw.svg"
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Lap Cat",
  21185. height: math.unit(2.5, "feet")
  21186. },
  21187. {
  21188. name: "Minimacro",
  21189. height: math.unit(15, "feet"),
  21190. default: true
  21191. },
  21192. {
  21193. name: "Macro",
  21194. height: math.unit(120, "feet")
  21195. },
  21196. {
  21197. name: "Macro+",
  21198. height: math.unit(640, "feet")
  21199. },
  21200. {
  21201. name: "Colossus",
  21202. height: math.unit(2.2, "miles")
  21203. },
  21204. ]
  21205. ))
  21206. characterMakers.push(() => makeCharacter(
  21207. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21208. {
  21209. front: {
  21210. height: math.unit(8 + 8 / 12, "feet"),
  21211. weight: math.unit(130, "kg"),
  21212. name: "Front",
  21213. image: {
  21214. source: "./media/characters/seroko/front.svg",
  21215. extra: 1385 / 1280,
  21216. bottom: 0.025
  21217. }
  21218. },
  21219. back: {
  21220. height: math.unit(8 + 8 / 12, "feet"),
  21221. weight: math.unit(130, "kg"),
  21222. name: "Back",
  21223. image: {
  21224. source: "./media/characters/seroko/back.svg",
  21225. extra: 1369 / 1238,
  21226. bottom: 0.018
  21227. }
  21228. },
  21229. frontDressed: {
  21230. height: math.unit(8 + 8 / 12, "feet"),
  21231. weight: math.unit(130, "kg"),
  21232. name: "Front (Dressed)",
  21233. image: {
  21234. source: "./media/characters/seroko/front-dressed.svg",
  21235. extra: 1366 / 1275,
  21236. bottom: 0.03
  21237. }
  21238. },
  21239. },
  21240. [
  21241. {
  21242. name: "Normal",
  21243. height: math.unit(8 + 8 / 12, "feet"),
  21244. default: true
  21245. },
  21246. ]
  21247. ))
  21248. characterMakers.push(() => makeCharacter(
  21249. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21250. {
  21251. front: {
  21252. height: math.unit(5.5, "feet"),
  21253. weight: math.unit(160, "lb"),
  21254. name: "Front",
  21255. image: {
  21256. source: "./media/characters/quatzi/front.svg",
  21257. extra: 2346 / 2242,
  21258. bottom: 0.015
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Normal",
  21265. height: math.unit(5.5, "feet"),
  21266. default: true
  21267. },
  21268. {
  21269. name: "Big",
  21270. height: math.unit(7.7, "feet")
  21271. },
  21272. ]
  21273. ))
  21274. characterMakers.push(() => makeCharacter(
  21275. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21276. {
  21277. front: {
  21278. height: math.unit(5 + 11 / 12, "feet"),
  21279. weight: math.unit(180, "lb"),
  21280. name: "Front",
  21281. image: {
  21282. source: "./media/characters/sen/front.svg",
  21283. extra: 1321 / 1254,
  21284. bottom: 0.015
  21285. }
  21286. },
  21287. side: {
  21288. height: math.unit(5 + 11 / 12, "feet"),
  21289. weight: math.unit(180, "lb"),
  21290. name: "Side",
  21291. image: {
  21292. source: "./media/characters/sen/side.svg",
  21293. extra: 1321 / 1254,
  21294. bottom: 0.007
  21295. }
  21296. },
  21297. back: {
  21298. height: math.unit(5 + 11 / 12, "feet"),
  21299. weight: math.unit(180, "lb"),
  21300. name: "Back",
  21301. image: {
  21302. source: "./media/characters/sen/back.svg",
  21303. extra: 1321 / 1254
  21304. }
  21305. },
  21306. },
  21307. [
  21308. {
  21309. name: "Normal",
  21310. height: math.unit(5 + 11 / 12, "feet"),
  21311. default: true
  21312. },
  21313. ]
  21314. ))
  21315. characterMakers.push(() => makeCharacter(
  21316. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21317. {
  21318. front: {
  21319. height: math.unit(166.6, "cm"),
  21320. weight: math.unit(66.6, "kg"),
  21321. name: "Front",
  21322. image: {
  21323. source: "./media/characters/fruity/front.svg",
  21324. extra: 1510 / 1386,
  21325. bottom: 0.04
  21326. }
  21327. },
  21328. back: {
  21329. height: math.unit(166.6, "cm"),
  21330. weight: math.unit(66.6, "lb"),
  21331. name: "Back",
  21332. image: {
  21333. source: "./media/characters/fruity/back.svg",
  21334. extra: 1563 / 1435,
  21335. bottom: 0.005
  21336. }
  21337. },
  21338. },
  21339. [
  21340. {
  21341. name: "Normal",
  21342. height: math.unit(166.6, "cm"),
  21343. default: true
  21344. },
  21345. {
  21346. name: "Demonic",
  21347. height: math.unit(166.6, "feet")
  21348. },
  21349. ]
  21350. ))
  21351. characterMakers.push(() => makeCharacter(
  21352. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21353. {
  21354. side: {
  21355. height: math.unit(10, "feet"),
  21356. weight: math.unit(500, "lb"),
  21357. name: "Side",
  21358. image: {
  21359. source: "./media/characters/zost/side.svg",
  21360. extra: 966 / 880,
  21361. bottom: 0.075
  21362. }
  21363. },
  21364. mawFront: {
  21365. height: math.unit(1.08, "meters"),
  21366. name: "Maw (Front)",
  21367. image: {
  21368. source: "./media/characters/zost/maw-front.svg"
  21369. }
  21370. },
  21371. mawSide: {
  21372. height: math.unit(2.66, "feet"),
  21373. name: "Maw (Side)",
  21374. image: {
  21375. source: "./media/characters/zost/maw-side.svg"
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(10, "feet"),
  21383. default: true
  21384. },
  21385. ]
  21386. ))
  21387. characterMakers.push(() => makeCharacter(
  21388. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21389. {
  21390. front: {
  21391. height: math.unit(5 + 4 / 12, "feet"),
  21392. weight: math.unit(120, "lb"),
  21393. name: "Front",
  21394. image: {
  21395. source: "./media/characters/luci/front.svg",
  21396. extra: 1985 / 1884,
  21397. bottom: 0.04
  21398. }
  21399. },
  21400. back: {
  21401. height: math.unit(5 + 4 / 12, "feet"),
  21402. weight: math.unit(120, "lb"),
  21403. name: "Back",
  21404. image: {
  21405. source: "./media/characters/luci/back.svg",
  21406. extra: 1892 / 1791,
  21407. bottom: 0.002
  21408. }
  21409. },
  21410. },
  21411. [
  21412. {
  21413. name: "Normal",
  21414. height: math.unit(5 + 4 / 12, "feet"),
  21415. default: true
  21416. },
  21417. ]
  21418. ))
  21419. characterMakers.push(() => makeCharacter(
  21420. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21421. {
  21422. front: {
  21423. height: math.unit(1500, "feet"),
  21424. weight: math.unit(3.8e6, "tons"),
  21425. name: "Front",
  21426. image: {
  21427. source: "./media/characters/2th/front.svg",
  21428. extra: 3489 / 3350,
  21429. bottom: 0.1
  21430. }
  21431. },
  21432. foot: {
  21433. height: math.unit(461, "feet"),
  21434. name: "Foot",
  21435. image: {
  21436. source: "./media/characters/2th/foot.svg"
  21437. }
  21438. },
  21439. },
  21440. [
  21441. {
  21442. name: "\"Micro\"",
  21443. height: math.unit(15 + 7 / 12, "feet")
  21444. },
  21445. {
  21446. name: "Normal",
  21447. height: math.unit(1500, "feet"),
  21448. default: true
  21449. },
  21450. {
  21451. name: "Macro",
  21452. height: math.unit(5000, "feet")
  21453. },
  21454. {
  21455. name: "Megamacro",
  21456. height: math.unit(15, "miles")
  21457. },
  21458. {
  21459. name: "Gigamacro",
  21460. height: math.unit(4000, "miles")
  21461. },
  21462. {
  21463. name: "Galactic",
  21464. height: math.unit(50, "AU")
  21465. },
  21466. ]
  21467. ))
  21468. characterMakers.push(() => makeCharacter(
  21469. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21470. {
  21471. front: {
  21472. height: math.unit(5 + 6 / 12, "feet"),
  21473. weight: math.unit(220, "lb"),
  21474. name: "Front",
  21475. image: {
  21476. source: "./media/characters/amethyst/front.svg",
  21477. extra: 2078 / 2040,
  21478. bottom: 0.045
  21479. }
  21480. },
  21481. back: {
  21482. height: math.unit(5 + 6 / 12, "feet"),
  21483. weight: math.unit(220, "lb"),
  21484. name: "Back",
  21485. image: {
  21486. source: "./media/characters/amethyst/back.svg",
  21487. extra: 2021 / 1989,
  21488. bottom: 0.02
  21489. }
  21490. },
  21491. },
  21492. [
  21493. {
  21494. name: "Normal",
  21495. height: math.unit(5 + 6 / 12, "feet"),
  21496. default: true
  21497. },
  21498. ]
  21499. ))
  21500. characterMakers.push(() => makeCharacter(
  21501. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21502. {
  21503. front: {
  21504. height: math.unit(4 + 11 / 12, "feet"),
  21505. weight: math.unit(120, "lb"),
  21506. name: "Front",
  21507. image: {
  21508. source: "./media/characters/yumi-akiyama/front.svg",
  21509. extra: 1327 / 1235,
  21510. bottom: 0.02
  21511. }
  21512. },
  21513. back: {
  21514. height: math.unit(4 + 11 / 12, "feet"),
  21515. weight: math.unit(120, "lb"),
  21516. name: "Back",
  21517. image: {
  21518. source: "./media/characters/yumi-akiyama/back.svg",
  21519. extra: 1287 / 1245,
  21520. bottom: 0.002
  21521. }
  21522. },
  21523. },
  21524. [
  21525. {
  21526. name: "Galactic",
  21527. height: math.unit(50, "galaxies"),
  21528. default: true
  21529. },
  21530. {
  21531. name: "Universal",
  21532. height: math.unit(100, "universes")
  21533. },
  21534. ]
  21535. ))
  21536. characterMakers.push(() => makeCharacter(
  21537. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21538. {
  21539. front: {
  21540. height: math.unit(8, "feet"),
  21541. weight: math.unit(500, "lb"),
  21542. name: "Front",
  21543. image: {
  21544. source: "./media/characters/rifter-yrmori/front.svg",
  21545. extra: 1180 / 1125,
  21546. bottom: 0.02
  21547. }
  21548. },
  21549. back: {
  21550. height: math.unit(8, "feet"),
  21551. weight: math.unit(500, "lb"),
  21552. name: "Back",
  21553. image: {
  21554. source: "./media/characters/rifter-yrmori/back.svg",
  21555. extra: 1190 / 1145,
  21556. bottom: 0.001
  21557. }
  21558. },
  21559. wings: {
  21560. height: math.unit(7.75, "feet"),
  21561. weight: math.unit(500, "lb"),
  21562. name: "Wings",
  21563. image: {
  21564. source: "./media/characters/rifter-yrmori/wings.svg",
  21565. extra: 1357 / 1285
  21566. }
  21567. },
  21568. maw: {
  21569. height: math.unit(0.8, "feet"),
  21570. name: "Maw",
  21571. image: {
  21572. source: "./media/characters/rifter-yrmori/maw.svg"
  21573. }
  21574. },
  21575. mawfront: {
  21576. height: math.unit(1.45, "feet"),
  21577. name: "Maw (Front)",
  21578. image: {
  21579. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21580. }
  21581. },
  21582. },
  21583. [
  21584. {
  21585. name: "Normal",
  21586. height: math.unit(8, "feet"),
  21587. default: true
  21588. },
  21589. {
  21590. name: "Macro",
  21591. height: math.unit(42, "meters")
  21592. },
  21593. ]
  21594. ))
  21595. characterMakers.push(() => makeCharacter(
  21596. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21597. {
  21598. were: {
  21599. height: math.unit(25 + 6 / 12, "feet"),
  21600. weight: math.unit(10000, "lb"),
  21601. name: "Were",
  21602. image: {
  21603. source: "./media/characters/tahajin/were.svg",
  21604. extra: 801 / 770,
  21605. bottom: 0.042
  21606. }
  21607. },
  21608. aquatic: {
  21609. height: math.unit(6 + 4 / 12, "feet"),
  21610. weight: math.unit(160, "lb"),
  21611. name: "Aquatic",
  21612. image: {
  21613. source: "./media/characters/tahajin/aquatic.svg",
  21614. extra: 572 / 542,
  21615. bottom: 0.04
  21616. }
  21617. },
  21618. chow: {
  21619. height: math.unit(8 + 11 / 12, "feet"),
  21620. weight: math.unit(450, "lb"),
  21621. name: "Chow",
  21622. image: {
  21623. source: "./media/characters/tahajin/chow.svg",
  21624. extra: 660 / 640,
  21625. bottom: 0.015
  21626. }
  21627. },
  21628. demiNaga: {
  21629. height: math.unit(6 + 8 / 12, "feet"),
  21630. weight: math.unit(300, "lb"),
  21631. name: "Demi Naga",
  21632. image: {
  21633. source: "./media/characters/tahajin/demi-naga.svg",
  21634. extra: 643 / 615,
  21635. bottom: 0.1
  21636. }
  21637. },
  21638. data: {
  21639. height: math.unit(5, "inches"),
  21640. weight: math.unit(0.1, "lb"),
  21641. name: "Data",
  21642. image: {
  21643. source: "./media/characters/tahajin/data.svg"
  21644. }
  21645. },
  21646. fluu: {
  21647. height: math.unit(5 + 7 / 12, "feet"),
  21648. weight: math.unit(140, "lb"),
  21649. name: "Fluu",
  21650. image: {
  21651. source: "./media/characters/tahajin/fluu.svg",
  21652. extra: 628 / 592,
  21653. bottom: 0.02
  21654. }
  21655. },
  21656. starWarrior: {
  21657. height: math.unit(4 + 5 / 12, "feet"),
  21658. weight: math.unit(50, "lb"),
  21659. name: "Star Warrior",
  21660. image: {
  21661. source: "./media/characters/tahajin/star-warrior.svg"
  21662. }
  21663. },
  21664. },
  21665. [
  21666. {
  21667. name: "Normal",
  21668. height: math.unit(25 + 6 / 12, "feet"),
  21669. default: true
  21670. },
  21671. ]
  21672. ))
  21673. characterMakers.push(() => makeCharacter(
  21674. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21675. {
  21676. front: {
  21677. height: math.unit(8, "feet"),
  21678. weight: math.unit(350, "lb"),
  21679. name: "Front",
  21680. image: {
  21681. source: "./media/characters/gabira/front.svg",
  21682. extra: 608 / 580,
  21683. bottom: 0.03
  21684. }
  21685. },
  21686. back: {
  21687. height: math.unit(8, "feet"),
  21688. weight: math.unit(350, "lb"),
  21689. name: "Back",
  21690. image: {
  21691. source: "./media/characters/gabira/back.svg",
  21692. extra: 608 / 580,
  21693. bottom: 0.03
  21694. }
  21695. },
  21696. },
  21697. [
  21698. {
  21699. name: "Normal",
  21700. height: math.unit(8, "feet"),
  21701. default: true
  21702. },
  21703. ]
  21704. ))
  21705. characterMakers.push(() => makeCharacter(
  21706. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21707. {
  21708. front: {
  21709. height: math.unit(5 + 3 / 12, "feet"),
  21710. weight: math.unit(137, "lb"),
  21711. name: "Front",
  21712. image: {
  21713. source: "./media/characters/sasha-katraine/front.svg",
  21714. bottom: 0.045
  21715. }
  21716. },
  21717. },
  21718. [
  21719. {
  21720. name: "Micro",
  21721. height: math.unit(5, "inches")
  21722. },
  21723. {
  21724. name: "Normal",
  21725. height: math.unit(5 + 3 / 12, "feet"),
  21726. default: true
  21727. },
  21728. ]
  21729. ))
  21730. characterMakers.push(() => makeCharacter(
  21731. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21732. {
  21733. side: {
  21734. height: math.unit(4, "inches"),
  21735. weight: math.unit(200, "grams"),
  21736. name: "Side",
  21737. image: {
  21738. source: "./media/characters/der/side.svg",
  21739. extra: 719 / 400,
  21740. bottom: 30.6 / 749.9187
  21741. }
  21742. },
  21743. },
  21744. [
  21745. {
  21746. name: "Micro",
  21747. height: math.unit(4, "inches"),
  21748. default: true
  21749. },
  21750. ]
  21751. ))
  21752. characterMakers.push(() => makeCharacter(
  21753. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21754. {
  21755. side: {
  21756. height: math.unit(30, "meters"),
  21757. weight: math.unit(700, "tonnes"),
  21758. name: "Side",
  21759. image: {
  21760. source: "./media/characters/fixerdragon/side.svg",
  21761. extra: (1293.0514 - 116.03) / 1106.86,
  21762. bottom: 116.03 / 1293.0514
  21763. }
  21764. },
  21765. },
  21766. [
  21767. {
  21768. name: "Planck",
  21769. height: math.unit(1.6e-35, "meters")
  21770. },
  21771. {
  21772. name: "Micro",
  21773. height: math.unit(0.4, "meters")
  21774. },
  21775. {
  21776. name: "Normal",
  21777. height: math.unit(30, "meters"),
  21778. default: true
  21779. },
  21780. {
  21781. name: "Megamacro",
  21782. height: math.unit(1.2, "megameters")
  21783. },
  21784. {
  21785. name: "Teramacro",
  21786. height: math.unit(130, "terameters")
  21787. },
  21788. {
  21789. name: "Yottamacro",
  21790. height: math.unit(6200, "yottameters")
  21791. },
  21792. ]
  21793. ));
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21796. {
  21797. front: {
  21798. height: math.unit(8, "feet"),
  21799. weight: math.unit(250, "lb"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/kite/front.svg",
  21803. extra: 2796 / 2659,
  21804. bottom: 0.002
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Normal",
  21811. height: math.unit(8, "feet"),
  21812. default: true
  21813. },
  21814. {
  21815. name: "Macro",
  21816. height: math.unit(360, "feet")
  21817. },
  21818. {
  21819. name: "Megamacro",
  21820. height: math.unit(1500, "feet")
  21821. },
  21822. ]
  21823. ))
  21824. characterMakers.push(() => makeCharacter(
  21825. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21826. {
  21827. front: {
  21828. height: math.unit(5 + 11/12, "feet"),
  21829. weight: math.unit(170, "lb"),
  21830. name: "Front",
  21831. image: {
  21832. source: "./media/characters/poojawa-vynar/front.svg",
  21833. extra: 1735/1585,
  21834. bottom: 96/1831
  21835. }
  21836. },
  21837. back: {
  21838. height: math.unit(5 + 11/12, "feet"),
  21839. weight: math.unit(170, "lb"),
  21840. name: "Back",
  21841. image: {
  21842. source: "./media/characters/poojawa-vynar/back.svg",
  21843. extra: 1749/1607,
  21844. bottom: 28/1777
  21845. }
  21846. },
  21847. male: {
  21848. height: math.unit(5 + 11/12, "feet"),
  21849. weight: math.unit(170, "lb"),
  21850. name: "Male",
  21851. image: {
  21852. source: "./media/characters/poojawa-vynar/male.svg",
  21853. extra: 1855/1713,
  21854. bottom: 63/1918
  21855. }
  21856. },
  21857. taur: {
  21858. height: math.unit(5 + 11/12, "feet"),
  21859. weight: math.unit(170, "lb"),
  21860. name: "Taur",
  21861. image: {
  21862. source: "./media/characters/poojawa-vynar/taur.svg",
  21863. extra: 1151/1059,
  21864. bottom: 356/1507
  21865. }
  21866. },
  21867. frontDressed: {
  21868. height: math.unit(5 + 11/12, "feet"),
  21869. weight: math.unit(170, "lb"),
  21870. name: "Front (Dressed)",
  21871. image: {
  21872. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21873. extra: 1735/1585,
  21874. bottom: 96/1831
  21875. }
  21876. },
  21877. backDressed: {
  21878. height: math.unit(5 + 11/12, "feet"),
  21879. weight: math.unit(170, "lb"),
  21880. name: "Back (Dressed)",
  21881. image: {
  21882. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21883. extra: 1749/1607,
  21884. bottom: 28/1777
  21885. }
  21886. },
  21887. maleDressed: {
  21888. height: math.unit(5 + 11/12, "feet"),
  21889. weight: math.unit(170, "lb"),
  21890. name: "Male (Dressed)",
  21891. image: {
  21892. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21893. extra: 1855/1713,
  21894. bottom: 63/1918
  21895. }
  21896. },
  21897. taurDressed: {
  21898. height: math.unit(5 + 11/12, "feet"),
  21899. weight: math.unit(170, "lb"),
  21900. name: "Taur (Dressed)",
  21901. image: {
  21902. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21903. extra: 1151/1059,
  21904. bottom: 356/1507
  21905. }
  21906. },
  21907. maw: {
  21908. height: math.unit(1.46, "feet"),
  21909. name: "Maw",
  21910. image: {
  21911. source: "./media/characters/poojawa-vynar/maw.svg"
  21912. }
  21913. },
  21914. head: {
  21915. height: math.unit(2.34, "feet"),
  21916. name: "Head",
  21917. image: {
  21918. source: "./media/characters/poojawa-vynar/head.svg"
  21919. }
  21920. },
  21921. paw: {
  21922. height: math.unit(1.61, "feet"),
  21923. name: "Paw",
  21924. image: {
  21925. source: "./media/characters/poojawa-vynar/paw.svg"
  21926. }
  21927. },
  21928. pawToering: {
  21929. height: math.unit(1.72, "feet"),
  21930. name: "Paw (Toering)",
  21931. image: {
  21932. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21933. }
  21934. },
  21935. toering: {
  21936. height: math.unit(2.9, "inches"),
  21937. name: "Toering",
  21938. image: {
  21939. source: "./media/characters/poojawa-vynar/toering.svg"
  21940. }
  21941. },
  21942. shaft: {
  21943. height: math.unit(0.625, "feet"),
  21944. name: "Shaft",
  21945. image: {
  21946. source: "./media/characters/poojawa-vynar/shaft.svg"
  21947. }
  21948. },
  21949. spade: {
  21950. height: math.unit(0.42, "feet"),
  21951. name: "Spade",
  21952. image: {
  21953. source: "./media/characters/poojawa-vynar/spade.svg"
  21954. }
  21955. },
  21956. },
  21957. [
  21958. {
  21959. name: "Shortstack",
  21960. height: math.unit(4, "feet")
  21961. },
  21962. {
  21963. name: "Normal",
  21964. height: math.unit(5 + 11 / 12, "feet"),
  21965. default: true
  21966. },
  21967. {
  21968. name: "Tauric",
  21969. height: math.unit(4, "meters")
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21975. {
  21976. front: {
  21977. height: math.unit(293, "meters"),
  21978. weight: math.unit(70400, "tons"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/violette/front.svg",
  21982. extra: 1227 / 1180,
  21983. bottom: 0.005
  21984. }
  21985. },
  21986. back: {
  21987. height: math.unit(293, "meters"),
  21988. weight: math.unit(70400, "tons"),
  21989. name: "Back",
  21990. image: {
  21991. source: "./media/characters/violette/back.svg",
  21992. extra: 1227 / 1180,
  21993. bottom: 0.005
  21994. }
  21995. },
  21996. },
  21997. [
  21998. {
  21999. name: "Macro",
  22000. height: math.unit(293, "meters"),
  22001. default: true
  22002. },
  22003. ]
  22004. ))
  22005. characterMakers.push(() => makeCharacter(
  22006. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22007. {
  22008. front: {
  22009. height: math.unit(1050, "feet"),
  22010. weight: math.unit(200000, "tons"),
  22011. name: "Front",
  22012. image: {
  22013. source: "./media/characters/alessandra/front.svg",
  22014. extra: 960 / 912,
  22015. bottom: 0.06
  22016. }
  22017. },
  22018. },
  22019. [
  22020. {
  22021. name: "Macro",
  22022. height: math.unit(1050, "feet")
  22023. },
  22024. {
  22025. name: "Macro+",
  22026. height: math.unit(900, "meters"),
  22027. default: true
  22028. },
  22029. ]
  22030. ))
  22031. characterMakers.push(() => makeCharacter(
  22032. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22033. {
  22034. front: {
  22035. height: math.unit(5, "feet"),
  22036. weight: math.unit(187, "lb"),
  22037. name: "Front",
  22038. image: {
  22039. source: "./media/characters/person/front.svg",
  22040. extra: 3087 / 2945,
  22041. bottom: 91 / 3181
  22042. }
  22043. },
  22044. },
  22045. [
  22046. {
  22047. name: "Micro",
  22048. height: math.unit(3, "inches")
  22049. },
  22050. {
  22051. name: "Normal",
  22052. height: math.unit(5, "feet"),
  22053. default: true
  22054. },
  22055. {
  22056. name: "Macro",
  22057. height: math.unit(90, "feet")
  22058. },
  22059. {
  22060. name: "Max Size",
  22061. height: math.unit(280, "feet")
  22062. },
  22063. ]
  22064. ))
  22065. characterMakers.push(() => makeCharacter(
  22066. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22067. {
  22068. front: {
  22069. height: math.unit(4.5, "meters"),
  22070. weight: math.unit(3200, "lb"),
  22071. name: "Front",
  22072. image: {
  22073. source: "./media/characters/ty/front.svg",
  22074. extra: 1038 / 960,
  22075. bottom: 31.156 / 1068
  22076. }
  22077. },
  22078. back: {
  22079. height: math.unit(4.5, "meters"),
  22080. weight: math.unit(3200, "lb"),
  22081. name: "Back",
  22082. image: {
  22083. source: "./media/characters/ty/back.svg",
  22084. extra: 1044 / 966,
  22085. bottom: 7.48 / 1049
  22086. }
  22087. },
  22088. },
  22089. [
  22090. {
  22091. name: "Normal",
  22092. height: math.unit(4.5, "meters"),
  22093. default: true
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22099. {
  22100. front: {
  22101. height: math.unit(5 + 4 / 12, "feet"),
  22102. weight: math.unit(115, "lb"),
  22103. name: "Front",
  22104. image: {
  22105. source: "./media/characters/rocky/front.svg",
  22106. extra: 1012 / 975,
  22107. bottom: 54 / 1066
  22108. }
  22109. },
  22110. },
  22111. [
  22112. {
  22113. name: "Normal",
  22114. height: math.unit(5 + 4 / 12, "feet"),
  22115. default: true
  22116. },
  22117. ]
  22118. ))
  22119. characterMakers.push(() => makeCharacter(
  22120. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22121. {
  22122. upright: {
  22123. height: math.unit(6, "meters"),
  22124. weight: math.unit(4000, "kg"),
  22125. name: "Upright",
  22126. image: {
  22127. source: "./media/characters/ruin/upright.svg",
  22128. extra: 668 / 661,
  22129. bottom: 42 / 799.8396
  22130. }
  22131. },
  22132. },
  22133. [
  22134. {
  22135. name: "Normal",
  22136. height: math.unit(6, "meters"),
  22137. default: true
  22138. },
  22139. ]
  22140. ))
  22141. characterMakers.push(() => makeCharacter(
  22142. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22143. {
  22144. front: {
  22145. height: math.unit(5, "feet"),
  22146. weight: math.unit(106, "lb"),
  22147. name: "Front",
  22148. image: {
  22149. source: "./media/characters/robin/front.svg",
  22150. extra: 862 / 799,
  22151. bottom: 42.4 / 914.8856
  22152. }
  22153. },
  22154. },
  22155. [
  22156. {
  22157. name: "Normal",
  22158. height: math.unit(5, "feet"),
  22159. default: true
  22160. },
  22161. ]
  22162. ))
  22163. characterMakers.push(() => makeCharacter(
  22164. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22165. {
  22166. side: {
  22167. height: math.unit(3, "feet"),
  22168. weight: math.unit(225, "lb"),
  22169. name: "Side",
  22170. image: {
  22171. source: "./media/characters/saian/side.svg",
  22172. extra: 566 / 356,
  22173. bottom: 79.7 / 643
  22174. }
  22175. },
  22176. maw: {
  22177. height: math.unit(2.85, "feet"),
  22178. name: "Maw",
  22179. image: {
  22180. source: "./media/characters/saian/maw.svg"
  22181. }
  22182. },
  22183. },
  22184. [
  22185. {
  22186. name: "Normal",
  22187. height: math.unit(3, "feet"),
  22188. default: true
  22189. },
  22190. ]
  22191. ))
  22192. characterMakers.push(() => makeCharacter(
  22193. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22194. {
  22195. side: {
  22196. height: math.unit(8, "feet"),
  22197. weight: math.unit(300, "lb"),
  22198. name: "Side",
  22199. image: {
  22200. source: "./media/characters/equus-silvermane/side.svg",
  22201. extra: 2176 / 2050,
  22202. bottom: 65.7 / 2245
  22203. }
  22204. },
  22205. front: {
  22206. height: math.unit(8, "feet"),
  22207. weight: math.unit(300, "lb"),
  22208. name: "Front",
  22209. image: {
  22210. source: "./media/characters/equus-silvermane/front.svg",
  22211. extra: 4633 / 4400,
  22212. bottom: 71.3 / 4706.915
  22213. }
  22214. },
  22215. sideStepping: {
  22216. height: math.unit(8, "feet"),
  22217. weight: math.unit(300, "lb"),
  22218. name: "Side (Stepping)",
  22219. image: {
  22220. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22221. extra: 1968 / 1860,
  22222. bottom: 16.4 / 1989
  22223. }
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Normal",
  22229. height: math.unit(8, "feet")
  22230. },
  22231. {
  22232. name: "Minimacro",
  22233. height: math.unit(75, "feet"),
  22234. default: true
  22235. },
  22236. {
  22237. name: "Macro",
  22238. height: math.unit(150, "feet")
  22239. },
  22240. {
  22241. name: "Macro+",
  22242. height: math.unit(1000, "feet")
  22243. },
  22244. {
  22245. name: "Megamacro",
  22246. height: math.unit(1, "mile")
  22247. },
  22248. ]
  22249. ))
  22250. characterMakers.push(() => makeCharacter(
  22251. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22252. {
  22253. side: {
  22254. height: math.unit(20, "feet"),
  22255. weight: math.unit(30000, "kg"),
  22256. name: "Side",
  22257. image: {
  22258. source: "./media/characters/windar/side.svg",
  22259. extra: 1491 / 1248,
  22260. bottom: 82.56 / 1568
  22261. }
  22262. },
  22263. },
  22264. [
  22265. {
  22266. name: "Normal",
  22267. height: math.unit(20, "feet"),
  22268. default: true
  22269. },
  22270. ]
  22271. ))
  22272. characterMakers.push(() => makeCharacter(
  22273. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22274. {
  22275. side: {
  22276. height: math.unit(15.66, "feet"),
  22277. weight: math.unit(150, "lb"),
  22278. name: "Side",
  22279. image: {
  22280. source: "./media/characters/melody/side.svg",
  22281. extra: 1097 / 944,
  22282. bottom: 11.8 / 1109
  22283. }
  22284. },
  22285. sideOutfit: {
  22286. height: math.unit(15.66, "feet"),
  22287. weight: math.unit(150, "lb"),
  22288. name: "Side (Outfit)",
  22289. image: {
  22290. source: "./media/characters/melody/side-outfit.svg",
  22291. extra: 1097 / 944,
  22292. bottom: 11.8 / 1109
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Normal",
  22299. height: math.unit(15.66, "feet"),
  22300. default: true
  22301. },
  22302. ]
  22303. ))
  22304. characterMakers.push(() => makeCharacter(
  22305. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22306. {
  22307. front: {
  22308. height: math.unit(8, "feet"),
  22309. weight: math.unit(325, "lb"),
  22310. name: "Front",
  22311. image: {
  22312. source: "./media/characters/windera/front.svg",
  22313. extra: 3180 / 2845,
  22314. bottom: 178 / 3365
  22315. }
  22316. },
  22317. },
  22318. [
  22319. {
  22320. name: "Normal",
  22321. height: math.unit(8, "feet"),
  22322. default: true
  22323. },
  22324. ]
  22325. ))
  22326. characterMakers.push(() => makeCharacter(
  22327. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22328. {
  22329. front: {
  22330. height: math.unit(28.75, "feet"),
  22331. weight: math.unit(2000, "kg"),
  22332. name: "Front",
  22333. image: {
  22334. source: "./media/characters/sonear/front.svg",
  22335. extra: 1041.1 / 964.9,
  22336. bottom: 53.7 / 1096.6
  22337. }
  22338. },
  22339. },
  22340. [
  22341. {
  22342. name: "Normal",
  22343. height: math.unit(28.75, "feet"),
  22344. default: true
  22345. },
  22346. ]
  22347. ))
  22348. characterMakers.push(() => makeCharacter(
  22349. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22350. {
  22351. side: {
  22352. height: math.unit(25.5, "feet"),
  22353. weight: math.unit(23000, "kg"),
  22354. name: "Side",
  22355. image: {
  22356. source: "./media/characters/kanara/side.svg"
  22357. }
  22358. },
  22359. },
  22360. [
  22361. {
  22362. name: "Normal",
  22363. height: math.unit(25.5, "feet"),
  22364. default: true
  22365. },
  22366. ]
  22367. ))
  22368. characterMakers.push(() => makeCharacter(
  22369. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22370. {
  22371. side: {
  22372. height: math.unit(10, "feet"),
  22373. weight: math.unit(1000, "kg"),
  22374. name: "Side",
  22375. image: {
  22376. source: "./media/characters/ereus/side.svg",
  22377. extra: 1157 / 959,
  22378. bottom: 153 / 1312.5
  22379. }
  22380. },
  22381. },
  22382. [
  22383. {
  22384. name: "Normal",
  22385. height: math.unit(10, "feet"),
  22386. default: true
  22387. },
  22388. ]
  22389. ))
  22390. characterMakers.push(() => makeCharacter(
  22391. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22392. {
  22393. side: {
  22394. height: math.unit(4.5, "feet"),
  22395. weight: math.unit(500, "lb"),
  22396. name: "Side",
  22397. image: {
  22398. source: "./media/characters/e-ter/side.svg",
  22399. extra: 1550 / 1248,
  22400. bottom: 146 / 1694
  22401. }
  22402. },
  22403. },
  22404. [
  22405. {
  22406. name: "Normal",
  22407. height: math.unit(4.5, "feet"),
  22408. default: true
  22409. },
  22410. ]
  22411. ))
  22412. characterMakers.push(() => makeCharacter(
  22413. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22414. {
  22415. side: {
  22416. height: math.unit(9.7, "feet"),
  22417. weight: math.unit(4000, "kg"),
  22418. name: "Side",
  22419. image: {
  22420. source: "./media/characters/yamie/side.svg"
  22421. }
  22422. },
  22423. },
  22424. [
  22425. {
  22426. name: "Normal",
  22427. height: math.unit(9.7, "feet"),
  22428. default: true
  22429. },
  22430. ]
  22431. ))
  22432. characterMakers.push(() => makeCharacter(
  22433. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22434. {
  22435. front: {
  22436. height: math.unit(50, "feet"),
  22437. weight: math.unit(50000, "kg"),
  22438. name: "Front",
  22439. image: {
  22440. source: "./media/characters/anders/front.svg",
  22441. extra: 570 / 539,
  22442. bottom: 14.7 / 586.7
  22443. }
  22444. },
  22445. },
  22446. [
  22447. {
  22448. name: "Large",
  22449. height: math.unit(50, "feet")
  22450. },
  22451. {
  22452. name: "Macro",
  22453. height: math.unit(2000, "feet"),
  22454. default: true
  22455. },
  22456. {
  22457. name: "Megamacro",
  22458. height: math.unit(12, "miles")
  22459. },
  22460. ]
  22461. ))
  22462. characterMakers.push(() => makeCharacter(
  22463. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22464. {
  22465. front: {
  22466. height: math.unit(7 + 2 / 12, "feet"),
  22467. weight: math.unit(300, "lb"),
  22468. name: "Front",
  22469. image: {
  22470. source: "./media/characters/reban/front.svg",
  22471. extra: 1287/1212,
  22472. bottom: 148/1435
  22473. }
  22474. },
  22475. head: {
  22476. height: math.unit(1.95, "feet"),
  22477. name: "Head",
  22478. image: {
  22479. source: "./media/characters/reban/head.svg"
  22480. }
  22481. },
  22482. maw: {
  22483. height: math.unit(0.95, "feet"),
  22484. name: "Maw",
  22485. image: {
  22486. source: "./media/characters/reban/maw.svg"
  22487. }
  22488. },
  22489. foot: {
  22490. height: math.unit(1.65, "feet"),
  22491. name: "Foot",
  22492. image: {
  22493. source: "./media/characters/reban/foot.svg"
  22494. }
  22495. },
  22496. dick: {
  22497. height: math.unit(7 / 5, "feet"),
  22498. name: "Dick",
  22499. image: {
  22500. source: "./media/characters/reban/dick.svg"
  22501. }
  22502. },
  22503. },
  22504. [
  22505. {
  22506. name: "Natural Height",
  22507. height: math.unit(7 + 2 / 12, "feet")
  22508. },
  22509. {
  22510. name: "Macro",
  22511. height: math.unit(500, "feet"),
  22512. default: true
  22513. },
  22514. {
  22515. name: "Canon Height",
  22516. height: math.unit(50, "AU")
  22517. },
  22518. ]
  22519. ))
  22520. characterMakers.push(() => makeCharacter(
  22521. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22522. {
  22523. front: {
  22524. height: math.unit(6, "feet"),
  22525. weight: math.unit(150, "lb"),
  22526. name: "Front",
  22527. image: {
  22528. source: "./media/characters/terrance-keayes/front.svg",
  22529. extra: 1.005,
  22530. bottom: 151 / 1615
  22531. }
  22532. },
  22533. side: {
  22534. height: math.unit(6, "feet"),
  22535. weight: math.unit(150, "lb"),
  22536. name: "Side",
  22537. image: {
  22538. source: "./media/characters/terrance-keayes/side.svg",
  22539. extra: 1.005,
  22540. bottom: 129.4 / 1544
  22541. }
  22542. },
  22543. back: {
  22544. height: math.unit(6, "feet"),
  22545. weight: math.unit(150, "lb"),
  22546. name: "Back",
  22547. image: {
  22548. source: "./media/characters/terrance-keayes/back.svg",
  22549. extra: 1.005,
  22550. bottom: 58.4 / 1557.3
  22551. }
  22552. },
  22553. dick: {
  22554. height: math.unit(6 * 0.208, "feet"),
  22555. name: "Dick",
  22556. image: {
  22557. source: "./media/characters/terrance-keayes/dick.svg"
  22558. }
  22559. },
  22560. },
  22561. [
  22562. {
  22563. name: "Canon Height",
  22564. height: math.unit(35, "miles"),
  22565. default: true
  22566. },
  22567. ]
  22568. ))
  22569. characterMakers.push(() => makeCharacter(
  22570. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22571. {
  22572. front: {
  22573. height: math.unit(6, "feet"),
  22574. weight: math.unit(150, "lb"),
  22575. name: "Front",
  22576. image: {
  22577. source: "./media/characters/ofelia/front.svg",
  22578. extra: 1130/1117,
  22579. bottom: 91/1221
  22580. }
  22581. },
  22582. back: {
  22583. height: math.unit(6, "feet"),
  22584. weight: math.unit(150, "lb"),
  22585. name: "Back",
  22586. image: {
  22587. source: "./media/characters/ofelia/back.svg",
  22588. extra: 1172/1159,
  22589. bottom: 28/1200
  22590. }
  22591. },
  22592. maw: {
  22593. height: math.unit(1, "feet"),
  22594. name: "Maw",
  22595. image: {
  22596. source: "./media/characters/ofelia/maw.svg"
  22597. }
  22598. },
  22599. foot: {
  22600. height: math.unit(1.949, "feet"),
  22601. name: "Foot",
  22602. image: {
  22603. source: "./media/characters/ofelia/foot.svg"
  22604. }
  22605. },
  22606. },
  22607. [
  22608. {
  22609. name: "Canon Height",
  22610. height: math.unit(2000, "miles"),
  22611. default: true
  22612. },
  22613. ]
  22614. ))
  22615. characterMakers.push(() => makeCharacter(
  22616. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22617. {
  22618. front: {
  22619. height: math.unit(6, "feet"),
  22620. weight: math.unit(150, "lb"),
  22621. name: "Front",
  22622. image: {
  22623. source: "./media/characters/samuel/front.svg",
  22624. extra: 265 / 258,
  22625. bottom: 2 / 266.1566
  22626. }
  22627. },
  22628. },
  22629. [
  22630. {
  22631. name: "Macro",
  22632. height: math.unit(100, "feet"),
  22633. default: true
  22634. },
  22635. {
  22636. name: "Full Size",
  22637. height: math.unit(1000, "miles")
  22638. },
  22639. ]
  22640. ))
  22641. characterMakers.push(() => makeCharacter(
  22642. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22643. {
  22644. front: {
  22645. height: math.unit(6, "feet"),
  22646. weight: math.unit(300, "lb"),
  22647. name: "Front",
  22648. image: {
  22649. source: "./media/characters/beishir-kiel/front.svg",
  22650. extra: 569 / 547,
  22651. bottom: 41.9 / 609
  22652. }
  22653. },
  22654. maw: {
  22655. height: math.unit(6 * 0.202, "feet"),
  22656. name: "Maw",
  22657. image: {
  22658. source: "./media/characters/beishir-kiel/maw.svg"
  22659. }
  22660. },
  22661. },
  22662. [
  22663. {
  22664. name: "Macro",
  22665. height: math.unit(300, "feet"),
  22666. default: true
  22667. },
  22668. ]
  22669. ))
  22670. characterMakers.push(() => makeCharacter(
  22671. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22672. {
  22673. front: {
  22674. height: math.unit(5 + 7/12, "feet"),
  22675. weight: math.unit(120, "lb"),
  22676. name: "Front",
  22677. image: {
  22678. source: "./media/characters/logan-grey/front.svg",
  22679. extra: 1836/1738,
  22680. bottom: 108/1944
  22681. }
  22682. },
  22683. back: {
  22684. height: math.unit(5 + 7/12, "feet"),
  22685. weight: math.unit(120, "lb"),
  22686. name: "Back",
  22687. image: {
  22688. source: "./media/characters/logan-grey/back.svg",
  22689. extra: 1880/1794,
  22690. bottom: 24/1904
  22691. }
  22692. },
  22693. frontSfw: {
  22694. height: math.unit(5 + 7/12, "feet"),
  22695. weight: math.unit(120, "lb"),
  22696. name: "Front (SFW)",
  22697. image: {
  22698. source: "./media/characters/logan-grey/front-sfw.svg",
  22699. extra: 1836/1738,
  22700. bottom: 108/1944
  22701. }
  22702. },
  22703. backSfw: {
  22704. height: math.unit(5 + 7/12, "feet"),
  22705. weight: math.unit(120, "lb"),
  22706. name: "Back (SFW)",
  22707. image: {
  22708. source: "./media/characters/logan-grey/back-sfw.svg",
  22709. extra: 1880/1794,
  22710. bottom: 24/1904
  22711. }
  22712. },
  22713. hands: {
  22714. height: math.unit(0.84, "feet"),
  22715. name: "Hands",
  22716. image: {
  22717. source: "./media/characters/logan-grey/hands.svg"
  22718. }
  22719. },
  22720. paws: {
  22721. height: math.unit(0.72, "feet"),
  22722. name: "Paws",
  22723. image: {
  22724. source: "./media/characters/logan-grey/paws.svg"
  22725. }
  22726. },
  22727. cock: {
  22728. height: math.unit(1.45, "feet"),
  22729. name: "Cock",
  22730. image: {
  22731. source: "./media/characters/logan-grey/cock.svg"
  22732. }
  22733. },
  22734. cockAlt: {
  22735. height: math.unit(1.437, "feet"),
  22736. name: "Cock (alt)",
  22737. image: {
  22738. source: "./media/characters/logan-grey/cock-alt.svg"
  22739. }
  22740. },
  22741. },
  22742. [
  22743. {
  22744. name: "Normal",
  22745. height: math.unit(5 + 8 / 12, "feet")
  22746. },
  22747. {
  22748. name: "The 500 Foot Femboy",
  22749. height: math.unit(500, "feet"),
  22750. default: true
  22751. },
  22752. {
  22753. name: "Megmacro",
  22754. height: math.unit(20, "miles")
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22760. {
  22761. front: {
  22762. height: math.unit(8 + 2 / 12, "feet"),
  22763. weight: math.unit(275, "lb"),
  22764. name: "Front",
  22765. image: {
  22766. source: "./media/characters/draganta/front.svg",
  22767. extra: 1177 / 1135,
  22768. bottom: 33.46 / 1212.1
  22769. }
  22770. },
  22771. },
  22772. [
  22773. {
  22774. name: "Normal",
  22775. height: math.unit(8 + 6 / 12, "feet"),
  22776. default: true
  22777. },
  22778. {
  22779. name: "Macro",
  22780. height: math.unit(150, "feet")
  22781. },
  22782. {
  22783. name: "Megamacro",
  22784. height: math.unit(1000, "miles")
  22785. },
  22786. ]
  22787. ))
  22788. characterMakers.push(() => makeCharacter(
  22789. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22790. {
  22791. front: {
  22792. height: math.unit(1.72, "m"),
  22793. weight: math.unit(80, "lb"),
  22794. name: "Front",
  22795. image: {
  22796. source: "./media/characters/voski/front.svg",
  22797. extra: 2076.22 / 2022.4,
  22798. bottom: 102.7 / 2177.3866
  22799. }
  22800. },
  22801. frontNsfw: {
  22802. height: math.unit(1.72, "m"),
  22803. weight: math.unit(80, "lb"),
  22804. name: "Front (NSFW)",
  22805. image: {
  22806. source: "./media/characters/voski/front-nsfw.svg",
  22807. extra: 2076.22 / 2022.4,
  22808. bottom: 102.7 / 2177.3866
  22809. }
  22810. },
  22811. back: {
  22812. height: math.unit(1.72, "m"),
  22813. weight: math.unit(80, "lb"),
  22814. name: "Back",
  22815. image: {
  22816. source: "./media/characters/voski/back.svg",
  22817. extra: 2104 / 2051,
  22818. bottom: 10.45 / 2113.63
  22819. }
  22820. },
  22821. },
  22822. [
  22823. {
  22824. name: "Normal",
  22825. height: math.unit(1.72, "m")
  22826. },
  22827. {
  22828. name: "Macro",
  22829. height: math.unit(55, "m"),
  22830. default: true
  22831. },
  22832. {
  22833. name: "Macro+",
  22834. height: math.unit(300, "m")
  22835. },
  22836. {
  22837. name: "Macro++",
  22838. height: math.unit(700, "m")
  22839. },
  22840. {
  22841. name: "Macro+++",
  22842. height: math.unit(4500, "m")
  22843. },
  22844. {
  22845. name: "Macro++++",
  22846. height: math.unit(45, "km")
  22847. },
  22848. {
  22849. name: "Macro+++++",
  22850. height: math.unit(1220, "km")
  22851. },
  22852. ]
  22853. ))
  22854. characterMakers.push(() => makeCharacter(
  22855. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22856. {
  22857. front: {
  22858. height: math.unit(2.3, "m"),
  22859. weight: math.unit(304, "kg"),
  22860. name: "Front",
  22861. image: {
  22862. source: "./media/characters/icowom-lee/front.svg",
  22863. extra: 985 / 955,
  22864. bottom: 25.4 / 1012
  22865. }
  22866. },
  22867. fronttentacles: {
  22868. height: math.unit(2.3, "m"),
  22869. weight: math.unit(304, "kg"),
  22870. name: "Front-tentacles",
  22871. image: {
  22872. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22873. extra: 985 / 955,
  22874. bottom: 25.4 / 1012
  22875. }
  22876. },
  22877. back: {
  22878. height: math.unit(2.3, "m"),
  22879. weight: math.unit(304, "kg"),
  22880. name: "Back",
  22881. image: {
  22882. source: "./media/characters/icowom-lee/back.svg",
  22883. extra: 975 / 954,
  22884. bottom: 9.5 / 985
  22885. }
  22886. },
  22887. backtentacles: {
  22888. height: math.unit(2.3, "m"),
  22889. weight: math.unit(304, "kg"),
  22890. name: "Back-tentacles",
  22891. image: {
  22892. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22893. extra: 975 / 954,
  22894. bottom: 9.5 / 985
  22895. }
  22896. },
  22897. frontDressed: {
  22898. height: math.unit(2.3, "m"),
  22899. weight: math.unit(304, "kg"),
  22900. name: "Front (Dressed)",
  22901. image: {
  22902. source: "./media/characters/icowom-lee/front-dressed.svg",
  22903. extra: 3076 / 2933,
  22904. bottom: 51.4 / 3125.1889
  22905. }
  22906. },
  22907. rump: {
  22908. height: math.unit(0.776, "meters"),
  22909. name: "Rump",
  22910. image: {
  22911. source: "./media/characters/icowom-lee/rump.svg"
  22912. }
  22913. },
  22914. genitals: {
  22915. height: math.unit(0.78, "meters"),
  22916. name: "Genitals",
  22917. image: {
  22918. source: "./media/characters/icowom-lee/genitals.svg"
  22919. }
  22920. },
  22921. },
  22922. [
  22923. {
  22924. name: "Normal",
  22925. height: math.unit(2.3, "meters"),
  22926. default: true
  22927. },
  22928. {
  22929. name: "Macro",
  22930. height: math.unit(94, "meters"),
  22931. default: true
  22932. },
  22933. ]
  22934. ))
  22935. characterMakers.push(() => makeCharacter(
  22936. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22937. {
  22938. front: {
  22939. height: math.unit(22, "meters"),
  22940. weight: math.unit(21000, "kg"),
  22941. name: "Front",
  22942. image: {
  22943. source: "./media/characters/shock-diamond/front.svg",
  22944. extra: 2204 / 2053,
  22945. bottom: 65 / 2239.47
  22946. }
  22947. },
  22948. frontNude: {
  22949. height: math.unit(22, "meters"),
  22950. weight: math.unit(21000, "kg"),
  22951. name: "Front (Nude)",
  22952. image: {
  22953. source: "./media/characters/shock-diamond/front-nude.svg",
  22954. extra: 2514 / 2285,
  22955. bottom: 13 / 2527.56
  22956. }
  22957. },
  22958. },
  22959. [
  22960. {
  22961. name: "Normal",
  22962. height: math.unit(3, "meters")
  22963. },
  22964. {
  22965. name: "Macro",
  22966. height: math.unit(22, "meters"),
  22967. default: true
  22968. },
  22969. ]
  22970. ))
  22971. characterMakers.push(() => makeCharacter(
  22972. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22973. {
  22974. front: {
  22975. height: math.unit(5 + 4 / 12, "feet"),
  22976. weight: math.unit(120, "lb"),
  22977. name: "Front",
  22978. image: {
  22979. source: "./media/characters/rory/front.svg",
  22980. extra: 1318/1241,
  22981. bottom: 42/1360
  22982. }
  22983. },
  22984. back: {
  22985. height: math.unit(5 + 4 / 12, "feet"),
  22986. weight: math.unit(120, "lb"),
  22987. name: "Back",
  22988. image: {
  22989. source: "./media/characters/rory/back.svg",
  22990. extra: 1318/1241,
  22991. bottom: 42/1360
  22992. }
  22993. },
  22994. butt: {
  22995. height: math.unit(1.74, "feet"),
  22996. name: "Butt",
  22997. image: {
  22998. source: "./media/characters/rory/butt.svg"
  22999. }
  23000. },
  23001. dick: {
  23002. height: math.unit(1.02, "feet"),
  23003. name: "Dick",
  23004. image: {
  23005. source: "./media/characters/rory/dick.svg"
  23006. }
  23007. },
  23008. paws: {
  23009. height: math.unit(1, "feet"),
  23010. name: "Paws",
  23011. image: {
  23012. source: "./media/characters/rory/paws.svg"
  23013. }
  23014. },
  23015. frontAlt: {
  23016. height: math.unit(5 + 4 / 12, "feet"),
  23017. weight: math.unit(120, "lb"),
  23018. name: "Front (Alt)",
  23019. image: {
  23020. source: "./media/characters/rory/front-alt.svg",
  23021. extra: 589 / 556,
  23022. bottom: 45.7 / 635.76
  23023. }
  23024. },
  23025. frontAltNude: {
  23026. height: math.unit(5 + 4 / 12, "feet"),
  23027. weight: math.unit(120, "lb"),
  23028. name: "Front (Alt, Nude)",
  23029. image: {
  23030. source: "./media/characters/rory/front-alt-nude.svg",
  23031. extra: 589 / 556,
  23032. bottom: 45.7 / 635.76
  23033. }
  23034. },
  23035. side: {
  23036. height: math.unit(5 + 4 / 12, "feet"),
  23037. weight: math.unit(120, "lb"),
  23038. name: "Side",
  23039. image: {
  23040. source: "./media/characters/rory/side.svg",
  23041. extra: 597 / 564,
  23042. bottom: 55 / 653
  23043. }
  23044. },
  23045. backAlt: {
  23046. height: math.unit(5 + 4 / 12, "feet"),
  23047. weight: math.unit(120, "lb"),
  23048. name: "Back (Alt)",
  23049. image: {
  23050. source: "./media/characters/rory/back-alt.svg",
  23051. extra: 620 / 585,
  23052. bottom: 8.86 / 630.43
  23053. }
  23054. },
  23055. dickAlt: {
  23056. height: math.unit(0.86, "feet"),
  23057. name: "Dick (Alt)",
  23058. image: {
  23059. source: "./media/characters/rory/dick-alt.svg"
  23060. }
  23061. },
  23062. },
  23063. [
  23064. {
  23065. name: "Normal",
  23066. height: math.unit(5 + 4 / 12, "feet"),
  23067. default: true
  23068. },
  23069. {
  23070. name: "Macro",
  23071. height: math.unit(100, "feet")
  23072. },
  23073. {
  23074. name: "Macro+",
  23075. height: math.unit(140, "feet")
  23076. },
  23077. {
  23078. name: "Macro++",
  23079. height: math.unit(300, "feet")
  23080. },
  23081. ]
  23082. ))
  23083. characterMakers.push(() => makeCharacter(
  23084. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23085. {
  23086. front: {
  23087. height: math.unit(5 + 9 / 12, "feet"),
  23088. weight: math.unit(190, "lb"),
  23089. name: "Front",
  23090. image: {
  23091. source: "./media/characters/sprisk/front.svg",
  23092. extra: 1225 / 1180,
  23093. bottom: 42.7 / 1266.4
  23094. }
  23095. },
  23096. frontNsfw: {
  23097. height: math.unit(5 + 9 / 12, "feet"),
  23098. weight: math.unit(190, "lb"),
  23099. name: "Front (NSFW)",
  23100. image: {
  23101. source: "./media/characters/sprisk/front-nsfw.svg",
  23102. extra: 1225 / 1180,
  23103. bottom: 42.7 / 1266.4
  23104. }
  23105. },
  23106. back: {
  23107. height: math.unit(5 + 9 / 12, "feet"),
  23108. weight: math.unit(190, "lb"),
  23109. name: "Back",
  23110. image: {
  23111. source: "./media/characters/sprisk/back.svg",
  23112. extra: 1247 / 1200,
  23113. bottom: 5.6 / 1253.04
  23114. }
  23115. },
  23116. },
  23117. [
  23118. {
  23119. name: "Tiny",
  23120. height: math.unit(2, "inches")
  23121. },
  23122. {
  23123. name: "Normal",
  23124. height: math.unit(5 + 9 / 12, "feet"),
  23125. default: true
  23126. },
  23127. {
  23128. name: "Mini Macro",
  23129. height: math.unit(18, "feet")
  23130. },
  23131. {
  23132. name: "Macro",
  23133. height: math.unit(100, "feet")
  23134. },
  23135. {
  23136. name: "MACRO",
  23137. height: math.unit(50, "miles")
  23138. },
  23139. {
  23140. name: "M A C R O",
  23141. height: math.unit(300, "miles")
  23142. },
  23143. ]
  23144. ))
  23145. characterMakers.push(() => makeCharacter(
  23146. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23147. {
  23148. side: {
  23149. height: math.unit(15.6, "meters"),
  23150. weight: math.unit(700000, "kg"),
  23151. name: "Side",
  23152. image: {
  23153. source: "./media/characters/bunsen/side.svg",
  23154. extra: 1644 / 358
  23155. }
  23156. },
  23157. foot: {
  23158. height: math.unit(1.611 * 1644 / 358, "meter"),
  23159. name: "Foot",
  23160. image: {
  23161. source: "./media/characters/bunsen/foot.svg"
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Small",
  23168. height: math.unit(10, "feet")
  23169. },
  23170. {
  23171. name: "Normal",
  23172. height: math.unit(15.6, "meters"),
  23173. default: true
  23174. },
  23175. ]
  23176. ))
  23177. characterMakers.push(() => makeCharacter(
  23178. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23179. {
  23180. front: {
  23181. height: math.unit(4 + 11 / 12, "feet"),
  23182. weight: math.unit(140, "lb"),
  23183. name: "Front",
  23184. image: {
  23185. source: "./media/characters/sesh/front.svg",
  23186. extra: 3420 / 3231,
  23187. bottom: 72 / 3949.5
  23188. }
  23189. },
  23190. },
  23191. [
  23192. {
  23193. name: "Normal",
  23194. height: math.unit(4 + 11 / 12, "feet")
  23195. },
  23196. {
  23197. name: "Grown",
  23198. height: math.unit(15, "feet"),
  23199. default: true
  23200. },
  23201. {
  23202. name: "Macro",
  23203. height: math.unit(1500, "feet")
  23204. },
  23205. {
  23206. name: "Megamacro",
  23207. height: math.unit(30, "miles")
  23208. },
  23209. {
  23210. name: "Continental",
  23211. height: math.unit(3000, "miles")
  23212. },
  23213. {
  23214. name: "Gravity Mass",
  23215. height: math.unit(300000, "miles")
  23216. },
  23217. {
  23218. name: "Planet Buster",
  23219. height: math.unit(30000000, "miles")
  23220. },
  23221. {
  23222. name: "Big",
  23223. height: math.unit(3000000000, "miles")
  23224. },
  23225. ]
  23226. ))
  23227. characterMakers.push(() => makeCharacter(
  23228. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23229. {
  23230. front: {
  23231. height: math.unit(9, "feet"),
  23232. weight: math.unit(350, "lb"),
  23233. name: "Front",
  23234. image: {
  23235. source: "./media/characters/pepper/front.svg",
  23236. extra: 1448 / 1312,
  23237. bottom: 9.4 / 1457.88
  23238. }
  23239. },
  23240. back: {
  23241. height: math.unit(9, "feet"),
  23242. weight: math.unit(350, "lb"),
  23243. name: "Back",
  23244. image: {
  23245. source: "./media/characters/pepper/back.svg",
  23246. extra: 1423 / 1300,
  23247. bottom: 4.6 / 1429
  23248. }
  23249. },
  23250. maw: {
  23251. height: math.unit(0.932, "feet"),
  23252. name: "Maw",
  23253. image: {
  23254. source: "./media/characters/pepper/maw.svg"
  23255. }
  23256. },
  23257. },
  23258. [
  23259. {
  23260. name: "Normal",
  23261. height: math.unit(9, "feet"),
  23262. default: true
  23263. },
  23264. ]
  23265. ))
  23266. characterMakers.push(() => makeCharacter(
  23267. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23268. {
  23269. front: {
  23270. height: math.unit(6, "feet"),
  23271. weight: math.unit(150, "lb"),
  23272. name: "Front",
  23273. image: {
  23274. source: "./media/characters/maelstrom/front.svg",
  23275. extra: 2100 / 1883,
  23276. bottom: 94 / 2196.7
  23277. }
  23278. },
  23279. },
  23280. [
  23281. {
  23282. name: "Less Kaiju",
  23283. height: math.unit(200, "feet")
  23284. },
  23285. {
  23286. name: "Kaiju",
  23287. height: math.unit(400, "feet"),
  23288. default: true
  23289. },
  23290. {
  23291. name: "Kaiju-er",
  23292. height: math.unit(600, "feet")
  23293. },
  23294. ]
  23295. ))
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23298. {
  23299. front: {
  23300. height: math.unit(6 + 5 / 12, "feet"),
  23301. weight: math.unit(180, "lb"),
  23302. name: "Front",
  23303. image: {
  23304. source: "./media/characters/lexir/front.svg",
  23305. extra: 180 / 172,
  23306. bottom: 12 / 192
  23307. }
  23308. },
  23309. back: {
  23310. height: math.unit(6 + 5 / 12, "feet"),
  23311. weight: math.unit(180, "lb"),
  23312. name: "Back",
  23313. image: {
  23314. source: "./media/characters/lexir/back.svg",
  23315. extra: 183.84 / 175.5,
  23316. bottom: 3.1 / 187
  23317. }
  23318. },
  23319. },
  23320. [
  23321. {
  23322. name: "Very Smal",
  23323. height: math.unit(1, "nm")
  23324. },
  23325. {
  23326. name: "Normal",
  23327. height: math.unit(6 + 5 / 12, "feet"),
  23328. default: true
  23329. },
  23330. {
  23331. name: "Macro",
  23332. height: math.unit(1, "mile")
  23333. },
  23334. {
  23335. name: "Megamacro",
  23336. height: math.unit(50, "miles")
  23337. },
  23338. ]
  23339. ))
  23340. characterMakers.push(() => makeCharacter(
  23341. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23342. {
  23343. front: {
  23344. height: math.unit(1.5, "meters"),
  23345. weight: math.unit(100, "lb"),
  23346. name: "Front",
  23347. image: {
  23348. source: "./media/characters/maksio/front.svg",
  23349. extra: 1549 / 1531,
  23350. bottom: 123.7 / 1674.5429
  23351. }
  23352. },
  23353. back: {
  23354. height: math.unit(1.5, "meters"),
  23355. weight: math.unit(100, "lb"),
  23356. name: "Back",
  23357. image: {
  23358. source: "./media/characters/maksio/back.svg",
  23359. extra: 1541 / 1509,
  23360. bottom: 97 / 1639
  23361. }
  23362. },
  23363. hand: {
  23364. height: math.unit(0.621, "feet"),
  23365. name: "Hand",
  23366. image: {
  23367. source: "./media/characters/maksio/hand.svg"
  23368. }
  23369. },
  23370. foot: {
  23371. height: math.unit(1.611, "feet"),
  23372. name: "Foot",
  23373. image: {
  23374. source: "./media/characters/maksio/foot.svg"
  23375. }
  23376. },
  23377. },
  23378. [
  23379. {
  23380. name: "Shrunken",
  23381. height: math.unit(10, "cm")
  23382. },
  23383. {
  23384. name: "Normal",
  23385. height: math.unit(150, "cm"),
  23386. default: true
  23387. },
  23388. ]
  23389. ))
  23390. characterMakers.push(() => makeCharacter(
  23391. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23392. {
  23393. front: {
  23394. height: math.unit(100, "feet"),
  23395. name: "Front",
  23396. image: {
  23397. source: "./media/characters/erza-bear/front.svg",
  23398. extra: 2449 / 2390,
  23399. bottom: 46 / 2494
  23400. }
  23401. },
  23402. back: {
  23403. height: math.unit(100, "feet"),
  23404. name: "Back",
  23405. image: {
  23406. source: "./media/characters/erza-bear/back.svg",
  23407. extra: 2489 / 2430,
  23408. bottom: 85.4 / 2480
  23409. }
  23410. },
  23411. tail: {
  23412. height: math.unit(42, "feet"),
  23413. name: "Tail",
  23414. image: {
  23415. source: "./media/characters/erza-bear/tail.svg"
  23416. }
  23417. },
  23418. tongue: {
  23419. height: math.unit(8, "feet"),
  23420. name: "Tongue",
  23421. image: {
  23422. source: "./media/characters/erza-bear/tongue.svg"
  23423. }
  23424. },
  23425. dick: {
  23426. height: math.unit(10.5, "feet"),
  23427. name: "Dick",
  23428. image: {
  23429. source: "./media/characters/erza-bear/dick.svg"
  23430. }
  23431. },
  23432. dickVertical: {
  23433. height: math.unit(16.9, "feet"),
  23434. name: "Dick (Vertical)",
  23435. image: {
  23436. source: "./media/characters/erza-bear/dick-vertical.svg"
  23437. }
  23438. },
  23439. },
  23440. [
  23441. {
  23442. name: "Macro",
  23443. height: math.unit(100, "feet"),
  23444. default: true
  23445. },
  23446. ]
  23447. ))
  23448. characterMakers.push(() => makeCharacter(
  23449. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23450. {
  23451. front: {
  23452. height: math.unit(172, "cm"),
  23453. weight: math.unit(73, "kg"),
  23454. name: "Front",
  23455. image: {
  23456. source: "./media/characters/violet-flor/front.svg",
  23457. extra: 1530 / 1442,
  23458. bottom: 61.9 / 1588.8
  23459. }
  23460. },
  23461. back: {
  23462. height: math.unit(180, "cm"),
  23463. weight: math.unit(73, "kg"),
  23464. name: "Back",
  23465. image: {
  23466. source: "./media/characters/violet-flor/back.svg",
  23467. extra: 1692 / 1630,
  23468. bottom: 20 / 1712
  23469. }
  23470. },
  23471. },
  23472. [
  23473. {
  23474. name: "Normal",
  23475. height: math.unit(172, "cm"),
  23476. default: true
  23477. },
  23478. ]
  23479. ))
  23480. characterMakers.push(() => makeCharacter(
  23481. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23482. {
  23483. front: {
  23484. height: math.unit(6, "feet"),
  23485. weight: math.unit(220, "lb"),
  23486. name: "Front",
  23487. image: {
  23488. source: "./media/characters/lynn-rhea/front.svg",
  23489. extra: 310 / 273
  23490. }
  23491. },
  23492. back: {
  23493. height: math.unit(6, "feet"),
  23494. weight: math.unit(220, "lb"),
  23495. name: "Back",
  23496. image: {
  23497. source: "./media/characters/lynn-rhea/back.svg",
  23498. extra: 310 / 273
  23499. }
  23500. },
  23501. dicks: {
  23502. height: math.unit(0.9, "feet"),
  23503. name: "Dicks",
  23504. image: {
  23505. source: "./media/characters/lynn-rhea/dicks.svg"
  23506. }
  23507. },
  23508. slit: {
  23509. height: math.unit(0.4, "feet"),
  23510. name: "Slit",
  23511. image: {
  23512. source: "./media/characters/lynn-rhea/slit.svg"
  23513. }
  23514. },
  23515. },
  23516. [
  23517. {
  23518. name: "Micro",
  23519. height: math.unit(1, "inch")
  23520. },
  23521. {
  23522. name: "Macro",
  23523. height: math.unit(60, "feet"),
  23524. default: true
  23525. },
  23526. {
  23527. name: "Megamacro",
  23528. height: math.unit(2, "miles")
  23529. },
  23530. {
  23531. name: "Gigamacro",
  23532. height: math.unit(3, "earths")
  23533. },
  23534. {
  23535. name: "Galactic",
  23536. height: math.unit(0.8, "galaxies")
  23537. },
  23538. ]
  23539. ))
  23540. characterMakers.push(() => makeCharacter(
  23541. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23542. {
  23543. front: {
  23544. height: math.unit(1600, "feet"),
  23545. weight: math.unit(85758785169, "kg"),
  23546. name: "Front",
  23547. image: {
  23548. source: "./media/characters/valathos/front.svg",
  23549. extra: 1451 / 1339
  23550. }
  23551. },
  23552. },
  23553. [
  23554. {
  23555. name: "Macro",
  23556. height: math.unit(1600, "feet"),
  23557. default: true
  23558. },
  23559. ]
  23560. ))
  23561. characterMakers.push(() => makeCharacter(
  23562. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23563. {
  23564. front: {
  23565. height: math.unit(7 + 5 / 12, "feet"),
  23566. weight: math.unit(300, "lb"),
  23567. name: "Front",
  23568. image: {
  23569. source: "./media/characters/azula/front.svg",
  23570. extra: 3208 / 2880,
  23571. bottom: 80.2 / 3277
  23572. }
  23573. },
  23574. back: {
  23575. height: math.unit(7 + 5 / 12, "feet"),
  23576. weight: math.unit(300, "lb"),
  23577. name: "Back",
  23578. image: {
  23579. source: "./media/characters/azula/back.svg",
  23580. extra: 3169 / 2822,
  23581. bottom: 150.6 / 3321
  23582. }
  23583. },
  23584. },
  23585. [
  23586. {
  23587. name: "Normal",
  23588. height: math.unit(7 + 5 / 12, "feet"),
  23589. default: true
  23590. },
  23591. {
  23592. name: "Big",
  23593. height: math.unit(20, "feet")
  23594. },
  23595. ]
  23596. ))
  23597. characterMakers.push(() => makeCharacter(
  23598. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23599. {
  23600. front: {
  23601. height: math.unit(5 + 1 / 12, "feet"),
  23602. weight: math.unit(110, "lb"),
  23603. name: "Front",
  23604. image: {
  23605. source: "./media/characters/rupert/front.svg",
  23606. extra: 1549 / 1495,
  23607. bottom: 54.2 / 1604.4
  23608. }
  23609. },
  23610. },
  23611. [
  23612. {
  23613. name: "Normal",
  23614. height: math.unit(5 + 1 / 12, "feet"),
  23615. default: true
  23616. },
  23617. ]
  23618. ))
  23619. characterMakers.push(() => makeCharacter(
  23620. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23621. {
  23622. front: {
  23623. height: math.unit(8 + 4 / 12, "feet"),
  23624. weight: math.unit(350, "lb"),
  23625. name: "Front",
  23626. image: {
  23627. source: "./media/characters/sheera-castellar/front.svg",
  23628. extra: 1957 / 1894,
  23629. bottom: 26.97 / 1975.017
  23630. }
  23631. },
  23632. side: {
  23633. height: math.unit(8 + 4 / 12, "feet"),
  23634. weight: math.unit(350, "lb"),
  23635. name: "Side",
  23636. image: {
  23637. source: "./media/characters/sheera-castellar/side.svg",
  23638. extra: 1957 / 1894
  23639. }
  23640. },
  23641. back: {
  23642. height: math.unit(8 + 4 / 12, "feet"),
  23643. weight: math.unit(350, "lb"),
  23644. name: "Back",
  23645. image: {
  23646. source: "./media/characters/sheera-castellar/back.svg",
  23647. extra: 1957 / 1894
  23648. }
  23649. },
  23650. angled: {
  23651. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23652. weight: math.unit(350, "lb"),
  23653. name: "Angled",
  23654. image: {
  23655. source: "./media/characters/sheera-castellar/angled.svg",
  23656. extra: 1807 / 1707,
  23657. bottom: 68 / 1875
  23658. }
  23659. },
  23660. genitals: {
  23661. height: math.unit(2.2, "feet"),
  23662. name: "Genitals",
  23663. image: {
  23664. source: "./media/characters/sheera-castellar/genitals.svg"
  23665. }
  23666. },
  23667. taur: {
  23668. height: math.unit(10 + 6/12, "feet"),
  23669. name: "Taur",
  23670. image: {
  23671. source: "./media/characters/sheera-castellar/taur.svg",
  23672. extra: 2017/1909,
  23673. bottom: 185/2202
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Normal",
  23680. height: math.unit(8 + 4 / 12, "feet")
  23681. },
  23682. {
  23683. name: "Macro",
  23684. height: math.unit(150, "feet"),
  23685. default: true
  23686. },
  23687. {
  23688. name: "Macro+",
  23689. height: math.unit(800, "feet")
  23690. },
  23691. ]
  23692. ))
  23693. characterMakers.push(() => makeCharacter(
  23694. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23695. {
  23696. front: {
  23697. height: math.unit(6, "feet"),
  23698. weight: math.unit(150, "lb"),
  23699. name: "Front",
  23700. image: {
  23701. source: "./media/characters/jaipur/front.svg",
  23702. extra: 3860 / 3731,
  23703. bottom: 287 / 4140
  23704. }
  23705. },
  23706. back: {
  23707. height: math.unit(6, "feet"),
  23708. weight: math.unit(150, "lb"),
  23709. name: "Back",
  23710. image: {
  23711. source: "./media/characters/jaipur/back.svg",
  23712. extra: 4060 / 3930,
  23713. bottom: 151 / 4200
  23714. }
  23715. },
  23716. },
  23717. [
  23718. {
  23719. name: "Normal",
  23720. height: math.unit(1.85, "meters"),
  23721. default: true
  23722. },
  23723. {
  23724. name: "Macro",
  23725. height: math.unit(150, "meters")
  23726. },
  23727. {
  23728. name: "Macro+",
  23729. height: math.unit(0.5, "miles")
  23730. },
  23731. {
  23732. name: "Macro++",
  23733. height: math.unit(2.5, "miles")
  23734. },
  23735. {
  23736. name: "Macro+++",
  23737. height: math.unit(12, "miles")
  23738. },
  23739. {
  23740. name: "Macro++++",
  23741. height: math.unit(120, "miles")
  23742. },
  23743. {
  23744. name: "Macro+++++",
  23745. height: math.unit(1200, "miles")
  23746. },
  23747. ]
  23748. ))
  23749. characterMakers.push(() => makeCharacter(
  23750. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23751. {
  23752. front: {
  23753. height: math.unit(6, "feet"),
  23754. weight: math.unit(150, "lb"),
  23755. name: "Front",
  23756. image: {
  23757. source: "./media/characters/sheila-wolf/front.svg",
  23758. extra: 1931 / 1808,
  23759. bottom: 29.5 / 1960
  23760. }
  23761. },
  23762. dick: {
  23763. height: math.unit(1.464, "feet"),
  23764. name: "Dick",
  23765. image: {
  23766. source: "./media/characters/sheila-wolf/dick.svg"
  23767. }
  23768. },
  23769. muzzle: {
  23770. height: math.unit(0.513, "feet"),
  23771. name: "Muzzle",
  23772. image: {
  23773. source: "./media/characters/sheila-wolf/muzzle.svg"
  23774. }
  23775. },
  23776. },
  23777. [
  23778. {
  23779. name: "Macro",
  23780. height: math.unit(70, "feet"),
  23781. default: true
  23782. },
  23783. ]
  23784. ))
  23785. characterMakers.push(() => makeCharacter(
  23786. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23787. {
  23788. front: {
  23789. height: math.unit(32, "meters"),
  23790. weight: math.unit(300000, "kg"),
  23791. name: "Front",
  23792. image: {
  23793. source: "./media/characters/almor/front.svg",
  23794. extra: 1408 / 1322,
  23795. bottom: 94.6 / 1506.5
  23796. }
  23797. },
  23798. },
  23799. [
  23800. {
  23801. name: "Macro",
  23802. height: math.unit(32, "meters"),
  23803. default: true
  23804. },
  23805. ]
  23806. ))
  23807. characterMakers.push(() => makeCharacter(
  23808. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23809. {
  23810. front: {
  23811. height: math.unit(7, "feet"),
  23812. weight: math.unit(200, "lb"),
  23813. name: "Front",
  23814. image: {
  23815. source: "./media/characters/silver/front.svg",
  23816. extra: 472.1 / 450.5,
  23817. bottom: 26.5 / 499.424
  23818. }
  23819. },
  23820. },
  23821. [
  23822. {
  23823. name: "Normal",
  23824. height: math.unit(7, "feet"),
  23825. default: true
  23826. },
  23827. {
  23828. name: "Macro",
  23829. height: math.unit(800, "feet")
  23830. },
  23831. {
  23832. name: "Megamacro",
  23833. height: math.unit(250, "miles")
  23834. },
  23835. ]
  23836. ))
  23837. characterMakers.push(() => makeCharacter(
  23838. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23839. {
  23840. front: {
  23841. height: math.unit(6, "feet"),
  23842. weight: math.unit(150, "lb"),
  23843. name: "Front",
  23844. image: {
  23845. source: "./media/characters/pliskin/front.svg",
  23846. extra: 1469 / 1359,
  23847. bottom: 70 / 1540
  23848. }
  23849. },
  23850. },
  23851. [
  23852. {
  23853. name: "Micro",
  23854. height: math.unit(3, "inches")
  23855. },
  23856. {
  23857. name: "Normal",
  23858. height: math.unit(5 + 11 / 12, "feet"),
  23859. default: true
  23860. },
  23861. {
  23862. name: "Macro",
  23863. height: math.unit(120, "feet")
  23864. },
  23865. ]
  23866. ))
  23867. characterMakers.push(() => makeCharacter(
  23868. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23869. {
  23870. front: {
  23871. height: math.unit(6, "feet"),
  23872. weight: math.unit(150, "lb"),
  23873. name: "Front",
  23874. image: {
  23875. source: "./media/characters/sammy/front.svg",
  23876. extra: 1193 / 1089,
  23877. bottom: 30.5 / 1226
  23878. }
  23879. },
  23880. },
  23881. [
  23882. {
  23883. name: "Macro",
  23884. height: math.unit(1700, "feet"),
  23885. default: true
  23886. },
  23887. {
  23888. name: "Examacro",
  23889. height: math.unit(2.5e9, "lightyears")
  23890. },
  23891. ]
  23892. ))
  23893. characterMakers.push(() => makeCharacter(
  23894. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23895. {
  23896. front: {
  23897. height: math.unit(21, "meters"),
  23898. weight: math.unit(12, "tonnes"),
  23899. name: "Front",
  23900. image: {
  23901. source: "./media/characters/kuru/front.svg",
  23902. extra: 4301 / 3785,
  23903. bottom: 371.3 / 4691
  23904. }
  23905. },
  23906. },
  23907. [
  23908. {
  23909. name: "Macro",
  23910. height: math.unit(21, "meters"),
  23911. default: true
  23912. },
  23913. ]
  23914. ))
  23915. characterMakers.push(() => makeCharacter(
  23916. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23917. {
  23918. front: {
  23919. height: math.unit(23, "meters"),
  23920. weight: math.unit(12.2, "tonnes"),
  23921. name: "Front",
  23922. image: {
  23923. source: "./media/characters/rakka/front.svg",
  23924. extra: 4670 / 4169,
  23925. bottom: 301 / 4968.7
  23926. }
  23927. },
  23928. },
  23929. [
  23930. {
  23931. name: "Macro",
  23932. height: math.unit(23, "meters"),
  23933. default: true
  23934. },
  23935. ]
  23936. ))
  23937. characterMakers.push(() => makeCharacter(
  23938. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23939. {
  23940. front: {
  23941. height: math.unit(6, "feet"),
  23942. weight: math.unit(150, "lb"),
  23943. name: "Front",
  23944. image: {
  23945. source: "./media/characters/rhys-feline/front.svg",
  23946. extra: 2488 / 2308,
  23947. bottom: 35.67 / 2519.19
  23948. }
  23949. },
  23950. },
  23951. [
  23952. {
  23953. name: "Really Small",
  23954. height: math.unit(1, "nm")
  23955. },
  23956. {
  23957. name: "Micro",
  23958. height: math.unit(4, "inches")
  23959. },
  23960. {
  23961. name: "Normal",
  23962. height: math.unit(4 + 10 / 12, "feet"),
  23963. default: true
  23964. },
  23965. {
  23966. name: "Macro",
  23967. height: math.unit(100, "feet")
  23968. },
  23969. {
  23970. name: "Megamacto",
  23971. height: math.unit(50, "miles")
  23972. },
  23973. ]
  23974. ))
  23975. characterMakers.push(() => makeCharacter(
  23976. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23977. {
  23978. side: {
  23979. height: math.unit(30, "feet"),
  23980. weight: math.unit(35000, "kg"),
  23981. name: "Side",
  23982. image: {
  23983. source: "./media/characters/alydar/side.svg",
  23984. extra: 234 / 222,
  23985. bottom: 6.5 / 241
  23986. }
  23987. },
  23988. front: {
  23989. height: math.unit(30, "feet"),
  23990. weight: math.unit(35000, "kg"),
  23991. name: "Front",
  23992. image: {
  23993. source: "./media/characters/alydar/front.svg",
  23994. extra: 223.37 / 210.2,
  23995. bottom: 22.3 / 246.76
  23996. }
  23997. },
  23998. top: {
  23999. height: math.unit(64.54, "feet"),
  24000. weight: math.unit(35000, "kg"),
  24001. name: "Top",
  24002. image: {
  24003. source: "./media/characters/alydar/top.svg"
  24004. }
  24005. },
  24006. anthro: {
  24007. height: math.unit(30, "feet"),
  24008. weight: math.unit(9000, "kg"),
  24009. name: "Anthro",
  24010. image: {
  24011. source: "./media/characters/alydar/anthro.svg",
  24012. extra: 432 / 421,
  24013. bottom: 7.18 / 440
  24014. }
  24015. },
  24016. maw: {
  24017. height: math.unit(11.693, "feet"),
  24018. name: "Maw",
  24019. image: {
  24020. source: "./media/characters/alydar/maw.svg"
  24021. }
  24022. },
  24023. head: {
  24024. height: math.unit(11.693, "feet"),
  24025. name: "Head",
  24026. image: {
  24027. source: "./media/characters/alydar/head.svg"
  24028. }
  24029. },
  24030. headAlt: {
  24031. height: math.unit(12.861, "feet"),
  24032. name: "Head (Alt)",
  24033. image: {
  24034. source: "./media/characters/alydar/head-alt.svg"
  24035. }
  24036. },
  24037. wing: {
  24038. height: math.unit(20.712, "feet"),
  24039. name: "Wing",
  24040. image: {
  24041. source: "./media/characters/alydar/wing.svg"
  24042. }
  24043. },
  24044. wingFeather: {
  24045. height: math.unit(9.662, "feet"),
  24046. name: "Wing Feather",
  24047. image: {
  24048. source: "./media/characters/alydar/wing-feather.svg"
  24049. }
  24050. },
  24051. countourFeather: {
  24052. height: math.unit(4.154, "feet"),
  24053. name: "Contour Feather",
  24054. image: {
  24055. source: "./media/characters/alydar/contour-feather.svg"
  24056. }
  24057. },
  24058. },
  24059. [
  24060. {
  24061. name: "Diplomatic",
  24062. height: math.unit(13, "feet"),
  24063. default: true
  24064. },
  24065. {
  24066. name: "Small",
  24067. height: math.unit(30, "feet")
  24068. },
  24069. {
  24070. name: "Normal",
  24071. height: math.unit(95, "feet"),
  24072. default: true
  24073. },
  24074. {
  24075. name: "Large",
  24076. height: math.unit(285, "feet")
  24077. },
  24078. {
  24079. name: "Incomprehensible",
  24080. height: math.unit(450, "megameters")
  24081. },
  24082. ]
  24083. ))
  24084. characterMakers.push(() => makeCharacter(
  24085. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24086. {
  24087. side: {
  24088. height: math.unit(11, "feet"),
  24089. weight: math.unit(1750, "kg"),
  24090. name: "Side",
  24091. image: {
  24092. source: "./media/characters/selicia/side.svg",
  24093. extra: 440 / 396,
  24094. bottom: 24.8 / 465.979
  24095. }
  24096. },
  24097. maw: {
  24098. height: math.unit(4.665, "feet"),
  24099. name: "Maw",
  24100. image: {
  24101. source: "./media/characters/selicia/maw.svg"
  24102. }
  24103. },
  24104. },
  24105. [
  24106. {
  24107. name: "Normal",
  24108. height: math.unit(11, "feet"),
  24109. default: true
  24110. },
  24111. ]
  24112. ))
  24113. characterMakers.push(() => makeCharacter(
  24114. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24115. {
  24116. side: {
  24117. height: math.unit(2 + 6 / 12, "feet"),
  24118. weight: math.unit(30, "lb"),
  24119. name: "Side",
  24120. image: {
  24121. source: "./media/characters/layla/side.svg",
  24122. extra: 244 / 188,
  24123. bottom: 18.2 / 262.1
  24124. }
  24125. },
  24126. back: {
  24127. height: math.unit(2 + 6 / 12, "feet"),
  24128. weight: math.unit(30, "lb"),
  24129. name: "Back",
  24130. image: {
  24131. source: "./media/characters/layla/back.svg",
  24132. extra: 308 / 241.5,
  24133. bottom: 8.9 / 316.8
  24134. }
  24135. },
  24136. cumming: {
  24137. height: math.unit(2 + 6 / 12, "feet"),
  24138. weight: math.unit(30, "lb"),
  24139. name: "Cumming",
  24140. image: {
  24141. source: "./media/characters/layla/cumming.svg",
  24142. extra: 342 / 279,
  24143. bottom: 595 / 938
  24144. }
  24145. },
  24146. dickFlaccid: {
  24147. height: math.unit(2.595, "feet"),
  24148. name: "Flaccid Genitals",
  24149. image: {
  24150. source: "./media/characters/layla/dick-flaccid.svg"
  24151. }
  24152. },
  24153. dickErect: {
  24154. height: math.unit(2.359, "feet"),
  24155. name: "Erect Genitals",
  24156. image: {
  24157. source: "./media/characters/layla/dick-erect.svg"
  24158. }
  24159. },
  24160. dragon: {
  24161. height: math.unit(40, "feet"),
  24162. name: "Dragon",
  24163. image: {
  24164. source: "./media/characters/layla/dragon.svg",
  24165. extra: 610/535,
  24166. bottom: 367/977
  24167. }
  24168. },
  24169. taur: {
  24170. height: math.unit(30, "feet"),
  24171. name: "Taur",
  24172. image: {
  24173. source: "./media/characters/layla/taur.svg",
  24174. extra: 1268/1199,
  24175. bottom: 112/1380
  24176. }
  24177. },
  24178. },
  24179. [
  24180. {
  24181. name: "Micro",
  24182. height: math.unit(1, "inch")
  24183. },
  24184. {
  24185. name: "Small",
  24186. height: math.unit(1, "foot")
  24187. },
  24188. {
  24189. name: "Normal",
  24190. height: math.unit(2 + 6 / 12, "feet"),
  24191. default: true
  24192. },
  24193. {
  24194. name: "Macro",
  24195. height: math.unit(200, "feet")
  24196. },
  24197. {
  24198. name: "Megamacro",
  24199. height: math.unit(1000, "miles")
  24200. },
  24201. {
  24202. name: "Planetary",
  24203. height: math.unit(8000, "miles")
  24204. },
  24205. {
  24206. name: "True Layla",
  24207. height: math.unit(200000 * 7, "multiverses")
  24208. },
  24209. ]
  24210. ))
  24211. characterMakers.push(() => makeCharacter(
  24212. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24213. {
  24214. back: {
  24215. height: math.unit(10.5, "feet"),
  24216. weight: math.unit(800, "lb"),
  24217. name: "Back",
  24218. image: {
  24219. source: "./media/characters/knox/back.svg",
  24220. extra: 1486 / 1089,
  24221. bottom: 107 / 1601.4
  24222. }
  24223. },
  24224. side: {
  24225. height: math.unit(10.5, "feet"),
  24226. weight: math.unit(800, "lb"),
  24227. name: "Side",
  24228. image: {
  24229. source: "./media/characters/knox/side.svg",
  24230. extra: 244 / 218,
  24231. bottom: 14 / 260
  24232. }
  24233. },
  24234. },
  24235. [
  24236. {
  24237. name: "Compact",
  24238. height: math.unit(10.5, "feet"),
  24239. default: true
  24240. },
  24241. {
  24242. name: "Dynamax",
  24243. height: math.unit(210, "feet")
  24244. },
  24245. {
  24246. name: "Full Macro",
  24247. height: math.unit(850, "feet")
  24248. },
  24249. ]
  24250. ))
  24251. characterMakers.push(() => makeCharacter(
  24252. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24253. {
  24254. front: {
  24255. height: math.unit(28, "feet"),
  24256. weight: math.unit(10500, "lb"),
  24257. name: "Front",
  24258. image: {
  24259. source: "./media/characters/kayda/front.svg",
  24260. extra: 1536 / 1428,
  24261. bottom: 68.7 / 1603
  24262. }
  24263. },
  24264. back: {
  24265. height: math.unit(28, "feet"),
  24266. weight: math.unit(10500, "lb"),
  24267. name: "Back",
  24268. image: {
  24269. source: "./media/characters/kayda/back.svg",
  24270. extra: 1557 / 1464,
  24271. bottom: 39.5 / 1597.49
  24272. }
  24273. },
  24274. dick: {
  24275. height: math.unit(3.858, "feet"),
  24276. name: "Dick",
  24277. image: {
  24278. source: "./media/characters/kayda/dick.svg"
  24279. }
  24280. },
  24281. },
  24282. [
  24283. {
  24284. name: "Macro",
  24285. height: math.unit(28, "feet"),
  24286. default: true
  24287. },
  24288. ]
  24289. ))
  24290. characterMakers.push(() => makeCharacter(
  24291. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24292. {
  24293. front: {
  24294. height: math.unit(10 + 11 / 12, "feet"),
  24295. weight: math.unit(1400, "lb"),
  24296. name: "Front",
  24297. image: {
  24298. source: "./media/characters/brian/front.svg",
  24299. extra: 737 / 692,
  24300. bottom: 55.4 / 785
  24301. }
  24302. },
  24303. },
  24304. [
  24305. {
  24306. name: "Normal",
  24307. height: math.unit(10 + 11 / 12, "feet"),
  24308. default: true
  24309. },
  24310. ]
  24311. ))
  24312. characterMakers.push(() => makeCharacter(
  24313. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24314. {
  24315. front: {
  24316. height: math.unit(5 + 8 / 12, "feet"),
  24317. weight: math.unit(140, "lb"),
  24318. name: "Front",
  24319. image: {
  24320. source: "./media/characters/khemri/front.svg",
  24321. extra: 4780 / 4059,
  24322. bottom: 80.1 / 4859.25
  24323. }
  24324. },
  24325. },
  24326. [
  24327. {
  24328. name: "Micro",
  24329. height: math.unit(6, "inches")
  24330. },
  24331. {
  24332. name: "Normal",
  24333. height: math.unit(5 + 8 / 12, "feet"),
  24334. default: true
  24335. },
  24336. ]
  24337. ))
  24338. characterMakers.push(() => makeCharacter(
  24339. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24340. {
  24341. front: {
  24342. height: math.unit(13, "feet"),
  24343. weight: math.unit(1700, "lb"),
  24344. name: "Front",
  24345. image: {
  24346. source: "./media/characters/felix-braveheart/front.svg",
  24347. extra: 1222 / 1157,
  24348. bottom: 53.2 / 1280
  24349. }
  24350. },
  24351. back: {
  24352. height: math.unit(13, "feet"),
  24353. weight: math.unit(1700, "lb"),
  24354. name: "Back",
  24355. image: {
  24356. source: "./media/characters/felix-braveheart/back.svg",
  24357. extra: 1277 / 1203,
  24358. bottom: 50.2 / 1327
  24359. }
  24360. },
  24361. feral: {
  24362. height: math.unit(6, "feet"),
  24363. weight: math.unit(400, "lb"),
  24364. name: "Feral",
  24365. image: {
  24366. source: "./media/characters/felix-braveheart/feral.svg",
  24367. extra: 682 / 625,
  24368. bottom: 6.9 / 688
  24369. }
  24370. },
  24371. },
  24372. [
  24373. {
  24374. name: "Normal",
  24375. height: math.unit(13, "feet"),
  24376. default: true
  24377. },
  24378. ]
  24379. ))
  24380. characterMakers.push(() => makeCharacter(
  24381. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24382. {
  24383. side: {
  24384. height: math.unit(5 + 11 / 12, "feet"),
  24385. weight: math.unit(1400, "lb"),
  24386. name: "Side",
  24387. image: {
  24388. source: "./media/characters/shadow-blade/side.svg",
  24389. extra: 1726 / 1267,
  24390. bottom: 58.4 / 1785
  24391. }
  24392. },
  24393. },
  24394. [
  24395. {
  24396. name: "Normal",
  24397. height: math.unit(5 + 11 / 12, "feet"),
  24398. default: true
  24399. },
  24400. ]
  24401. ))
  24402. characterMakers.push(() => makeCharacter(
  24403. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24404. {
  24405. front: {
  24406. height: math.unit(1 + 6 / 12, "feet"),
  24407. weight: math.unit(25, "lb"),
  24408. name: "Front",
  24409. image: {
  24410. source: "./media/characters/karla-halldor/front.svg",
  24411. extra: 1459 / 1383,
  24412. bottom: 12 / 1472
  24413. }
  24414. },
  24415. },
  24416. [
  24417. {
  24418. name: "Normal",
  24419. height: math.unit(1 + 6 / 12, "feet"),
  24420. default: true
  24421. },
  24422. ]
  24423. ))
  24424. characterMakers.push(() => makeCharacter(
  24425. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24426. {
  24427. front: {
  24428. height: math.unit(6 + 2 / 12, "feet"),
  24429. weight: math.unit(160, "lb"),
  24430. name: "Front",
  24431. image: {
  24432. source: "./media/characters/ariam/front.svg",
  24433. extra: 1073/976,
  24434. bottom: 52/1125
  24435. }
  24436. },
  24437. back: {
  24438. height: math.unit(6 + 2/12, "feet"),
  24439. weight: math.unit(160, "lb"),
  24440. name: "Back",
  24441. image: {
  24442. source: "./media/characters/ariam/back.svg",
  24443. extra: 1103/1023,
  24444. bottom: 9/1112
  24445. }
  24446. },
  24447. dressed: {
  24448. height: math.unit(6 + 2/12, "feet"),
  24449. weight: math.unit(160, "lb"),
  24450. name: "Dressed",
  24451. image: {
  24452. source: "./media/characters/ariam/dressed.svg",
  24453. extra: 1099/1009,
  24454. bottom: 25/1124
  24455. }
  24456. },
  24457. squatting: {
  24458. height: math.unit(4.1, "feet"),
  24459. weight: math.unit(160, "lb"),
  24460. name: "Squatting",
  24461. image: {
  24462. source: "./media/characters/ariam/squatting.svg",
  24463. extra: 2617 / 2112,
  24464. bottom: 61.2 / 2681,
  24465. }
  24466. },
  24467. },
  24468. [
  24469. {
  24470. name: "Normal",
  24471. height: math.unit(6 + 2 / 12, "feet"),
  24472. default: true
  24473. },
  24474. {
  24475. name: "Normal+",
  24476. height: math.unit(4, "meters")
  24477. },
  24478. {
  24479. name: "Macro",
  24480. height: math.unit(50, "meters")
  24481. },
  24482. {
  24483. name: "Macro+",
  24484. height: math.unit(100, "meters")
  24485. },
  24486. {
  24487. name: "Megamacro",
  24488. height: math.unit(20, "km")
  24489. },
  24490. {
  24491. name: "Caretaker",
  24492. height: math.unit(444, "megameters")
  24493. },
  24494. ]
  24495. ))
  24496. characterMakers.push(() => makeCharacter(
  24497. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24498. {
  24499. front: {
  24500. height: math.unit(1.67, "meters"),
  24501. weight: math.unit(140, "lb"),
  24502. name: "Front",
  24503. image: {
  24504. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24505. extra: 438 / 410,
  24506. bottom: 0.75 / 439
  24507. }
  24508. },
  24509. },
  24510. [
  24511. {
  24512. name: "Shrunken",
  24513. height: math.unit(7.6, "cm")
  24514. },
  24515. {
  24516. name: "Human Scale",
  24517. height: math.unit(1.67, "meters")
  24518. },
  24519. {
  24520. name: "Wolxi Scale",
  24521. height: math.unit(36.7, "meters"),
  24522. default: true
  24523. },
  24524. ]
  24525. ))
  24526. characterMakers.push(() => makeCharacter(
  24527. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24528. {
  24529. front: {
  24530. height: math.unit(1.73, "meters"),
  24531. weight: math.unit(240, "lb"),
  24532. name: "Front",
  24533. image: {
  24534. source: "./media/characters/izue-two-mothers/front.svg",
  24535. extra: 469 / 437,
  24536. bottom: 1.24 / 470.6
  24537. }
  24538. },
  24539. },
  24540. [
  24541. {
  24542. name: "Shrunken",
  24543. height: math.unit(7.86, "cm")
  24544. },
  24545. {
  24546. name: "Human Scale",
  24547. height: math.unit(1.73, "meters")
  24548. },
  24549. {
  24550. name: "Wolxi Scale",
  24551. height: math.unit(38, "meters"),
  24552. default: true
  24553. },
  24554. ]
  24555. ))
  24556. characterMakers.push(() => makeCharacter(
  24557. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24558. {
  24559. front: {
  24560. height: math.unit(1.55, "meters"),
  24561. weight: math.unit(120, "lb"),
  24562. name: "Front",
  24563. image: {
  24564. source: "./media/characters/teeku-love-shack/front.svg",
  24565. extra: 387 / 362,
  24566. bottom: 1.51 / 388
  24567. }
  24568. },
  24569. },
  24570. [
  24571. {
  24572. name: "Shrunken",
  24573. height: math.unit(7, "cm")
  24574. },
  24575. {
  24576. name: "Human Scale",
  24577. height: math.unit(1.55, "meters")
  24578. },
  24579. {
  24580. name: "Wolxi Scale",
  24581. height: math.unit(34.1, "meters"),
  24582. default: true
  24583. },
  24584. ]
  24585. ))
  24586. characterMakers.push(() => makeCharacter(
  24587. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24588. {
  24589. front: {
  24590. height: math.unit(1.83, "meters"),
  24591. weight: math.unit(135, "lb"),
  24592. name: "Front",
  24593. image: {
  24594. source: "./media/characters/dejma-the-red/front.svg",
  24595. extra: 480 / 458,
  24596. bottom: 1.8 / 482
  24597. }
  24598. },
  24599. },
  24600. [
  24601. {
  24602. name: "Shrunken",
  24603. height: math.unit(8.3, "cm")
  24604. },
  24605. {
  24606. name: "Human Scale",
  24607. height: math.unit(1.83, "meters")
  24608. },
  24609. {
  24610. name: "Wolxi Scale",
  24611. height: math.unit(40, "meters"),
  24612. default: true
  24613. },
  24614. ]
  24615. ))
  24616. characterMakers.push(() => makeCharacter(
  24617. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24618. {
  24619. front: {
  24620. height: math.unit(1.78, "meters"),
  24621. weight: math.unit(65, "kg"),
  24622. name: "Front",
  24623. image: {
  24624. source: "./media/characters/aki/front.svg",
  24625. extra: 452 / 415
  24626. }
  24627. },
  24628. frontNsfw: {
  24629. height: math.unit(1.78, "meters"),
  24630. weight: math.unit(65, "kg"),
  24631. name: "Front (NSFW)",
  24632. image: {
  24633. source: "./media/characters/aki/front-nsfw.svg",
  24634. extra: 452 / 415
  24635. }
  24636. },
  24637. back: {
  24638. height: math.unit(1.78, "meters"),
  24639. weight: math.unit(65, "kg"),
  24640. name: "Back",
  24641. image: {
  24642. source: "./media/characters/aki/back.svg",
  24643. extra: 452 / 415
  24644. }
  24645. },
  24646. rump: {
  24647. height: math.unit(2.05, "feet"),
  24648. name: "Rump",
  24649. image: {
  24650. source: "./media/characters/aki/rump.svg"
  24651. }
  24652. },
  24653. dick: {
  24654. height: math.unit(0.95, "feet"),
  24655. name: "Dick",
  24656. image: {
  24657. source: "./media/characters/aki/dick.svg"
  24658. }
  24659. },
  24660. },
  24661. [
  24662. {
  24663. name: "Micro",
  24664. height: math.unit(15, "cm")
  24665. },
  24666. {
  24667. name: "Normal",
  24668. height: math.unit(178, "cm"),
  24669. default: true
  24670. },
  24671. {
  24672. name: "Macro",
  24673. height: math.unit(214, "m")
  24674. },
  24675. {
  24676. name: "Macro+",
  24677. height: math.unit(534, "m")
  24678. },
  24679. ]
  24680. ))
  24681. characterMakers.push(() => makeCharacter(
  24682. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24683. {
  24684. front: {
  24685. height: math.unit(5 + 5 / 12, "feet"),
  24686. weight: math.unit(120, "lb"),
  24687. name: "Front",
  24688. image: {
  24689. source: "./media/characters/ari/front.svg",
  24690. extra: 714.5 / 682,
  24691. bottom: 8 / 722.5
  24692. }
  24693. },
  24694. },
  24695. [
  24696. {
  24697. name: "Normal",
  24698. height: math.unit(5 + 5 / 12, "feet")
  24699. },
  24700. {
  24701. name: "Macro",
  24702. height: math.unit(100, "feet"),
  24703. default: true
  24704. },
  24705. {
  24706. name: "Megamacro",
  24707. height: math.unit(100, "miles")
  24708. },
  24709. {
  24710. name: "Gigamacro",
  24711. height: math.unit(80000, "miles")
  24712. },
  24713. ]
  24714. ))
  24715. characterMakers.push(() => makeCharacter(
  24716. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24717. {
  24718. side: {
  24719. height: math.unit(9, "feet"),
  24720. weight: math.unit(400, "kg"),
  24721. name: "Side",
  24722. image: {
  24723. source: "./media/characters/bolt/side.svg",
  24724. extra: 1126 / 896,
  24725. bottom: 60 / 1187.3,
  24726. }
  24727. },
  24728. },
  24729. [
  24730. {
  24731. name: "Micro",
  24732. height: math.unit(5, "inches")
  24733. },
  24734. {
  24735. name: "Normal",
  24736. height: math.unit(9, "feet"),
  24737. default: true
  24738. },
  24739. {
  24740. name: "Macro",
  24741. height: math.unit(700, "feet")
  24742. },
  24743. {
  24744. name: "Max Size",
  24745. height: math.unit(1.52e22, "yottameters")
  24746. },
  24747. ]
  24748. ))
  24749. characterMakers.push(() => makeCharacter(
  24750. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24751. {
  24752. front: {
  24753. height: math.unit(4.53, "meters"),
  24754. weight: math.unit(3, "tons"),
  24755. name: "Front",
  24756. image: {
  24757. source: "./media/characters/draekon-sylviar/front.svg",
  24758. extra: 1228 / 1068,
  24759. bottom: 41 / 1270
  24760. }
  24761. },
  24762. tail: {
  24763. height: math.unit(1.772, "meter"),
  24764. name: "Tail",
  24765. image: {
  24766. source: "./media/characters/draekon-sylviar/tail.svg"
  24767. }
  24768. },
  24769. head: {
  24770. height: math.unit(1.331, "meter"),
  24771. name: "Head",
  24772. image: {
  24773. source: "./media/characters/draekon-sylviar/head.svg"
  24774. }
  24775. },
  24776. hand: {
  24777. height: math.unit(0.564, "meter"),
  24778. name: "Hand",
  24779. image: {
  24780. source: "./media/characters/draekon-sylviar/hand.svg"
  24781. }
  24782. },
  24783. foot: {
  24784. height: math.unit(0.621, "meter"),
  24785. name: "Foot",
  24786. image: {
  24787. source: "./media/characters/draekon-sylviar/foot.svg",
  24788. bottom: 32 / 324
  24789. }
  24790. },
  24791. dick: {
  24792. height: math.unit(61, "cm"),
  24793. name: "Dick",
  24794. image: {
  24795. source: "./media/characters/draekon-sylviar/dick.svg"
  24796. }
  24797. },
  24798. dickseparated: {
  24799. height: math.unit(61, "cm"),
  24800. name: "Dick-separated",
  24801. image: {
  24802. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24803. }
  24804. },
  24805. },
  24806. [
  24807. {
  24808. name: "Small",
  24809. height: math.unit(4.53 / 2, "meters"),
  24810. default: true
  24811. },
  24812. {
  24813. name: "Normal",
  24814. height: math.unit(4.53, "meters"),
  24815. default: true
  24816. },
  24817. {
  24818. name: "Large",
  24819. height: math.unit(4.53 * 2, "meters"),
  24820. },
  24821. ]
  24822. ))
  24823. characterMakers.push(() => makeCharacter(
  24824. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24825. {
  24826. front: {
  24827. height: math.unit(6 + 2 / 12, "feet"),
  24828. weight: math.unit(180, "lb"),
  24829. name: "Front",
  24830. image: {
  24831. source: "./media/characters/brawler/front.svg",
  24832. extra: 3301 / 3027,
  24833. bottom: 138 / 3439
  24834. }
  24835. },
  24836. },
  24837. [
  24838. {
  24839. name: "Normal",
  24840. height: math.unit(6 + 2 / 12, "feet"),
  24841. default: true
  24842. },
  24843. ]
  24844. ))
  24845. characterMakers.push(() => makeCharacter(
  24846. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24847. {
  24848. front: {
  24849. height: math.unit(11, "feet"),
  24850. weight: math.unit(1000, "lb"),
  24851. name: "Front",
  24852. image: {
  24853. source: "./media/characters/alex/front.svg",
  24854. bottom: 44.5 / 620
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Micro",
  24861. height: math.unit(5, "inches")
  24862. },
  24863. {
  24864. name: "Normal",
  24865. height: math.unit(11, "feet"),
  24866. default: true
  24867. },
  24868. {
  24869. name: "Macro",
  24870. height: math.unit(9.5e9, "feet")
  24871. },
  24872. {
  24873. name: "Max Size",
  24874. height: math.unit(1.4e283, "yottameters")
  24875. },
  24876. ]
  24877. ))
  24878. characterMakers.push(() => makeCharacter(
  24879. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24880. {
  24881. female: {
  24882. height: math.unit(29.9, "m"),
  24883. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24884. name: "Female",
  24885. image: {
  24886. source: "./media/characters/zenari/female.svg",
  24887. extra: 3281.6 / 3217,
  24888. bottom: 72.2 / 3353
  24889. }
  24890. },
  24891. male: {
  24892. height: math.unit(27.7, "m"),
  24893. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24894. name: "Male",
  24895. image: {
  24896. source: "./media/characters/zenari/male.svg",
  24897. extra: 3008 / 2991,
  24898. bottom: 54.6 / 3069
  24899. }
  24900. },
  24901. },
  24902. [
  24903. {
  24904. name: "Macro",
  24905. height: math.unit(29.7, "meters"),
  24906. default: true
  24907. },
  24908. ]
  24909. ))
  24910. characterMakers.push(() => makeCharacter(
  24911. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24912. {
  24913. female: {
  24914. height: math.unit(23.8, "m"),
  24915. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24916. name: "Female",
  24917. image: {
  24918. source: "./media/characters/mactarian/female.svg",
  24919. extra: 2662 / 2569,
  24920. bottom: 73 / 2736
  24921. }
  24922. },
  24923. male: {
  24924. height: math.unit(23.8, "m"),
  24925. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24926. name: "Male",
  24927. image: {
  24928. source: "./media/characters/mactarian/male.svg",
  24929. extra: 2673 / 2600,
  24930. bottom: 76 / 2750
  24931. }
  24932. },
  24933. },
  24934. [
  24935. {
  24936. name: "Macro",
  24937. height: math.unit(23.8, "meters"),
  24938. default: true
  24939. },
  24940. ]
  24941. ))
  24942. characterMakers.push(() => makeCharacter(
  24943. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24944. {
  24945. female: {
  24946. height: math.unit(19.3, "m"),
  24947. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24948. name: "Female",
  24949. image: {
  24950. source: "./media/characters/umok/female.svg",
  24951. extra: 2186 / 2078,
  24952. bottom: 87 / 2277
  24953. }
  24954. },
  24955. male: {
  24956. height: math.unit(19.5, "m"),
  24957. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24958. name: "Male",
  24959. image: {
  24960. source: "./media/characters/umok/male.svg",
  24961. extra: 2233 / 2140,
  24962. bottom: 24.4 / 2258
  24963. }
  24964. },
  24965. },
  24966. [
  24967. {
  24968. name: "Macro",
  24969. height: math.unit(19.3, "meters"),
  24970. default: true
  24971. },
  24972. ]
  24973. ))
  24974. characterMakers.push(() => makeCharacter(
  24975. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24976. {
  24977. female: {
  24978. height: math.unit(26.15, "m"),
  24979. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24980. name: "Female",
  24981. image: {
  24982. source: "./media/characters/joraxian/female.svg",
  24983. extra: 2912 / 2824,
  24984. bottom: 36 / 2956
  24985. }
  24986. },
  24987. male: {
  24988. height: math.unit(25.4, "m"),
  24989. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24990. name: "Male",
  24991. image: {
  24992. source: "./media/characters/joraxian/male.svg",
  24993. extra: 2877 / 2721,
  24994. bottom: 82 / 2967
  24995. }
  24996. },
  24997. },
  24998. [
  24999. {
  25000. name: "Macro",
  25001. height: math.unit(26.15, "meters"),
  25002. default: true
  25003. },
  25004. ]
  25005. ))
  25006. characterMakers.push(() => makeCharacter(
  25007. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25008. {
  25009. female: {
  25010. height: math.unit(21.6, "m"),
  25011. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25012. name: "Female",
  25013. image: {
  25014. source: "./media/characters/sthara/female.svg",
  25015. extra: 2516 / 2347,
  25016. bottom: 21.5 / 2537
  25017. }
  25018. },
  25019. male: {
  25020. height: math.unit(24, "m"),
  25021. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25022. name: "Male",
  25023. image: {
  25024. source: "./media/characters/sthara/male.svg",
  25025. extra: 2732 / 2607,
  25026. bottom: 23 / 2732
  25027. }
  25028. },
  25029. },
  25030. [
  25031. {
  25032. name: "Macro",
  25033. height: math.unit(21.6, "meters"),
  25034. default: true
  25035. },
  25036. ]
  25037. ))
  25038. characterMakers.push(() => makeCharacter(
  25039. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25040. {
  25041. front: {
  25042. height: math.unit(6 + 4 / 12, "feet"),
  25043. weight: math.unit(175, "lb"),
  25044. name: "Front",
  25045. image: {
  25046. source: "./media/characters/luka-bryzant/front.svg",
  25047. extra: 311 / 289,
  25048. bottom: 4 / 315
  25049. }
  25050. },
  25051. back: {
  25052. height: math.unit(6 + 4 / 12, "feet"),
  25053. weight: math.unit(175, "lb"),
  25054. name: "Back",
  25055. image: {
  25056. source: "./media/characters/luka-bryzant/back.svg",
  25057. extra: 311 / 289,
  25058. bottom: 3.8 / 313.7
  25059. }
  25060. },
  25061. },
  25062. [
  25063. {
  25064. name: "Micro",
  25065. height: math.unit(10, "inches")
  25066. },
  25067. {
  25068. name: "Normal",
  25069. height: math.unit(6 + 4 / 12, "feet"),
  25070. default: true
  25071. },
  25072. {
  25073. name: "Large",
  25074. height: math.unit(12, "feet")
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25080. {
  25081. front: {
  25082. height: math.unit(5 + 7 / 12, "feet"),
  25083. weight: math.unit(185, "lb"),
  25084. name: "Front",
  25085. image: {
  25086. source: "./media/characters/aman-aquila/front.svg",
  25087. extra: 1013 / 976,
  25088. bottom: 45.6 / 1057
  25089. }
  25090. },
  25091. side: {
  25092. height: math.unit(5 + 7 / 12, "feet"),
  25093. weight: math.unit(185, "lb"),
  25094. name: "Side",
  25095. image: {
  25096. source: "./media/characters/aman-aquila/side.svg",
  25097. extra: 1054 / 1011,
  25098. bottom: 15 / 1070
  25099. }
  25100. },
  25101. back: {
  25102. height: math.unit(5 + 7 / 12, "feet"),
  25103. weight: math.unit(185, "lb"),
  25104. name: "Back",
  25105. image: {
  25106. source: "./media/characters/aman-aquila/back.svg",
  25107. extra: 1026 / 970,
  25108. bottom: 12 / 1039
  25109. }
  25110. },
  25111. head: {
  25112. height: math.unit(1.211, "feet"),
  25113. name: "Head",
  25114. image: {
  25115. source: "./media/characters/aman-aquila/head.svg",
  25116. }
  25117. },
  25118. },
  25119. [
  25120. {
  25121. name: "Minimicro",
  25122. height: math.unit(0.057, "inches")
  25123. },
  25124. {
  25125. name: "Micro",
  25126. height: math.unit(7, "inches")
  25127. },
  25128. {
  25129. name: "Mini",
  25130. height: math.unit(3 + 7 / 12, "feet")
  25131. },
  25132. {
  25133. name: "Normal",
  25134. height: math.unit(5 + 7 / 12, "feet"),
  25135. default: true
  25136. },
  25137. {
  25138. name: "Macro",
  25139. height: math.unit(157 + 7 / 12, "feet")
  25140. },
  25141. {
  25142. name: "Megamacro",
  25143. height: math.unit(1557 + 7 / 12, "feet")
  25144. },
  25145. {
  25146. name: "Gigamacro",
  25147. height: math.unit(15557 + 7 / 12, "feet")
  25148. },
  25149. ]
  25150. ))
  25151. characterMakers.push(() => makeCharacter(
  25152. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25153. {
  25154. front: {
  25155. height: math.unit(3 + 2 / 12, "inches"),
  25156. weight: math.unit(0.3, "ounces"),
  25157. name: "Front",
  25158. image: {
  25159. source: "./media/characters/hiphae/front.svg",
  25160. extra: 1931 / 1683,
  25161. bottom: 24 / 1955
  25162. }
  25163. },
  25164. },
  25165. [
  25166. {
  25167. name: "Normal",
  25168. height: math.unit(3 + 1 / 2, "inches"),
  25169. default: true
  25170. },
  25171. ]
  25172. ))
  25173. characterMakers.push(() => makeCharacter(
  25174. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25175. {
  25176. front: {
  25177. height: math.unit(5 + 10 / 12, "feet"),
  25178. weight: math.unit(165, "lb"),
  25179. name: "Front",
  25180. image: {
  25181. source: "./media/characters/nicky/front.svg",
  25182. extra: 3144 / 2886,
  25183. bottom: 45.6 / 3192
  25184. }
  25185. },
  25186. back: {
  25187. height: math.unit(5 + 10 / 12, "feet"),
  25188. weight: math.unit(165, "lb"),
  25189. name: "Back",
  25190. image: {
  25191. source: "./media/characters/nicky/back.svg",
  25192. extra: 3055 / 2804,
  25193. bottom: 28.4 / 3087
  25194. }
  25195. },
  25196. frontclothed: {
  25197. height: math.unit(5 + 10 / 12, "feet"),
  25198. weight: math.unit(165, "lb"),
  25199. name: "Front-clothed",
  25200. image: {
  25201. source: "./media/characters/nicky/front-clothed.svg",
  25202. extra: 3184.9 / 2926.9,
  25203. bottom: 86.5 / 3239.9
  25204. }
  25205. },
  25206. foot: {
  25207. height: math.unit(1.16, "feet"),
  25208. name: "Foot",
  25209. image: {
  25210. source: "./media/characters/nicky/foot.svg"
  25211. }
  25212. },
  25213. feet: {
  25214. height: math.unit(1.34, "feet"),
  25215. name: "Feet",
  25216. image: {
  25217. source: "./media/characters/nicky/feet.svg"
  25218. }
  25219. },
  25220. maw: {
  25221. height: math.unit(0.9, "feet"),
  25222. name: "Maw",
  25223. image: {
  25224. source: "./media/characters/nicky/maw.svg"
  25225. }
  25226. },
  25227. },
  25228. [
  25229. {
  25230. name: "Normal",
  25231. height: math.unit(5 + 10 / 12, "feet"),
  25232. default: true
  25233. },
  25234. {
  25235. name: "Macro",
  25236. height: math.unit(60, "feet")
  25237. },
  25238. {
  25239. name: "Megamacro",
  25240. height: math.unit(1, "mile")
  25241. },
  25242. ]
  25243. ))
  25244. characterMakers.push(() => makeCharacter(
  25245. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25246. {
  25247. side: {
  25248. height: math.unit(10, "feet"),
  25249. weight: math.unit(600, "lb"),
  25250. name: "Side",
  25251. image: {
  25252. source: "./media/characters/blair/side.svg",
  25253. bottom: 16.6 / 475,
  25254. extra: 458 / 431
  25255. }
  25256. },
  25257. },
  25258. [
  25259. {
  25260. name: "Micro",
  25261. height: math.unit(8, "inches")
  25262. },
  25263. {
  25264. name: "Normal",
  25265. height: math.unit(10, "feet"),
  25266. default: true
  25267. },
  25268. {
  25269. name: "Macro",
  25270. height: math.unit(180, "feet")
  25271. },
  25272. ]
  25273. ))
  25274. characterMakers.push(() => makeCharacter(
  25275. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25276. {
  25277. front: {
  25278. height: math.unit(5 + 4 / 12, "feet"),
  25279. weight: math.unit(125, "lb"),
  25280. name: "Front",
  25281. image: {
  25282. source: "./media/characters/fisher/front.svg",
  25283. extra: 444 / 390,
  25284. bottom: 2 / 444.8
  25285. }
  25286. },
  25287. },
  25288. [
  25289. {
  25290. name: "Micro",
  25291. height: math.unit(4, "inches")
  25292. },
  25293. {
  25294. name: "Normal",
  25295. height: math.unit(5 + 4 / 12, "feet"),
  25296. default: true
  25297. },
  25298. {
  25299. name: "Macro",
  25300. height: math.unit(100, "feet")
  25301. },
  25302. ]
  25303. ))
  25304. characterMakers.push(() => makeCharacter(
  25305. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25306. {
  25307. front: {
  25308. height: math.unit(6.71, "feet"),
  25309. weight: math.unit(200, "lb"),
  25310. capacity: math.unit(1000000, "people"),
  25311. name: "Front",
  25312. image: {
  25313. source: "./media/characters/gliss/front.svg",
  25314. extra: 2347 / 2231,
  25315. bottom: 113 / 2462
  25316. }
  25317. },
  25318. hammerspaceSize: {
  25319. height: math.unit(6.71 * 717, "feet"),
  25320. weight: math.unit(200, "lb"),
  25321. capacity: math.unit(1000000, "people"),
  25322. name: "Hammerspace Size",
  25323. image: {
  25324. source: "./media/characters/gliss/front.svg",
  25325. extra: 2347 / 2231,
  25326. bottom: 113 / 2462
  25327. }
  25328. },
  25329. },
  25330. [
  25331. {
  25332. name: "Normal",
  25333. height: math.unit(6.71, "feet"),
  25334. default: true
  25335. },
  25336. ]
  25337. ))
  25338. characterMakers.push(() => makeCharacter(
  25339. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25340. {
  25341. side: {
  25342. height: math.unit(1.44, "m"),
  25343. weight: math.unit(80, "kg"),
  25344. name: "Side",
  25345. image: {
  25346. source: "./media/characters/dune-anderson/side.svg",
  25347. bottom: 49 / 1426
  25348. }
  25349. },
  25350. },
  25351. [
  25352. {
  25353. name: "Wolf-sized",
  25354. height: math.unit(1.44, "meters")
  25355. },
  25356. {
  25357. name: "Normal",
  25358. height: math.unit(5.05, "meters"),
  25359. default: true
  25360. },
  25361. {
  25362. name: "Big",
  25363. height: math.unit(14.4, "meters")
  25364. },
  25365. {
  25366. name: "Huge",
  25367. height: math.unit(144, "meters")
  25368. },
  25369. ]
  25370. ))
  25371. characterMakers.push(() => makeCharacter(
  25372. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25373. {
  25374. front: {
  25375. height: math.unit(7, "feet"),
  25376. weight: math.unit(425, "lb"),
  25377. name: "Front",
  25378. image: {
  25379. source: "./media/characters/hind/front.svg",
  25380. extra: 2091 / 1860,
  25381. bottom: 129 / 2220
  25382. }
  25383. },
  25384. back: {
  25385. height: math.unit(7, "feet"),
  25386. weight: math.unit(425, "lb"),
  25387. name: "Back",
  25388. image: {
  25389. source: "./media/characters/hind/back.svg",
  25390. extra: 2091 / 1860,
  25391. bottom: 24.6 / 2309
  25392. }
  25393. },
  25394. tail: {
  25395. height: math.unit(2.8, "feet"),
  25396. name: "Tail",
  25397. image: {
  25398. source: "./media/characters/hind/tail.svg"
  25399. }
  25400. },
  25401. head: {
  25402. height: math.unit(2.55, "feet"),
  25403. name: "Head",
  25404. image: {
  25405. source: "./media/characters/hind/head.svg"
  25406. }
  25407. },
  25408. },
  25409. [
  25410. {
  25411. name: "XS",
  25412. height: math.unit(0.7, "feet")
  25413. },
  25414. {
  25415. name: "Normal",
  25416. height: math.unit(7, "feet"),
  25417. default: true
  25418. },
  25419. {
  25420. name: "XL",
  25421. height: math.unit(70, "feet")
  25422. },
  25423. ]
  25424. ))
  25425. characterMakers.push(() => makeCharacter(
  25426. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25427. {
  25428. front: {
  25429. height: math.unit(2.1, "meters"),
  25430. weight: math.unit(150, "lb"),
  25431. name: "Front",
  25432. image: {
  25433. source: "./media/characters/tharquench-sizestealer/front.svg",
  25434. extra: 1605/1470,
  25435. bottom: 36/1641
  25436. }
  25437. },
  25438. frontAlt: {
  25439. height: math.unit(2.1, "meters"),
  25440. weight: math.unit(150, "lb"),
  25441. name: "Front (Alt)",
  25442. image: {
  25443. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25444. extra: 2318 / 2063,
  25445. bottom: 93.4 / 2410
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Nano",
  25452. height: math.unit(1, "mm")
  25453. },
  25454. {
  25455. name: "Micro",
  25456. height: math.unit(1, "cm")
  25457. },
  25458. {
  25459. name: "Normal",
  25460. height: math.unit(2.1, "meters"),
  25461. default: true
  25462. },
  25463. ]
  25464. ))
  25465. characterMakers.push(() => makeCharacter(
  25466. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25467. {
  25468. front: {
  25469. height: math.unit(7 + 5 / 12, "feet"),
  25470. weight: math.unit(357, "lb"),
  25471. name: "Front",
  25472. image: {
  25473. source: "./media/characters/solex-draconov/front.svg",
  25474. extra: 1993 / 1865,
  25475. bottom: 117 / 2111
  25476. }
  25477. },
  25478. },
  25479. [
  25480. {
  25481. name: "Natural Height",
  25482. height: math.unit(7 + 5 / 12, "feet"),
  25483. default: true
  25484. },
  25485. {
  25486. name: "Macro",
  25487. height: math.unit(350, "feet")
  25488. },
  25489. {
  25490. name: "Macro+",
  25491. height: math.unit(1000, "feet")
  25492. },
  25493. {
  25494. name: "Megamacro",
  25495. height: math.unit(20, "km")
  25496. },
  25497. {
  25498. name: "Megamacro+",
  25499. height: math.unit(1000, "km")
  25500. },
  25501. {
  25502. name: "Gigamacro",
  25503. height: math.unit(2.5, "Gm")
  25504. },
  25505. {
  25506. name: "Teramacro",
  25507. height: math.unit(15, "Tm")
  25508. },
  25509. {
  25510. name: "Galactic",
  25511. height: math.unit(30, "Zm")
  25512. },
  25513. {
  25514. name: "Universal",
  25515. height: math.unit(21000, "Ym")
  25516. },
  25517. {
  25518. name: "Omniversal",
  25519. height: math.unit(9.861e50, "Ym")
  25520. },
  25521. {
  25522. name: "Existential",
  25523. height: math.unit(1e300, "meters")
  25524. },
  25525. ]
  25526. ))
  25527. characterMakers.push(() => makeCharacter(
  25528. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25529. {
  25530. side: {
  25531. height: math.unit(25, "feet"),
  25532. weight: math.unit(90000, "lb"),
  25533. name: "Side",
  25534. image: {
  25535. source: "./media/characters/mandarax/side.svg",
  25536. extra: 614 / 332,
  25537. bottom: 55 / 630
  25538. }
  25539. },
  25540. head: {
  25541. height: math.unit(11.4, "feet"),
  25542. name: "Head",
  25543. image: {
  25544. source: "./media/characters/mandarax/head.svg"
  25545. }
  25546. },
  25547. belly: {
  25548. height: math.unit(33, "feet"),
  25549. name: "Belly",
  25550. capacity: math.unit(500, "people"),
  25551. image: {
  25552. source: "./media/characters/mandarax/belly.svg"
  25553. }
  25554. },
  25555. dick: {
  25556. height: math.unit(8.46, "feet"),
  25557. name: "Dick",
  25558. image: {
  25559. source: "./media/characters/mandarax/dick.svg"
  25560. }
  25561. },
  25562. top: {
  25563. height: math.unit(28, "meters"),
  25564. name: "Top",
  25565. image: {
  25566. source: "./media/characters/mandarax/top.svg"
  25567. }
  25568. },
  25569. },
  25570. [
  25571. {
  25572. name: "Normal",
  25573. height: math.unit(25, "feet"),
  25574. default: true
  25575. },
  25576. ]
  25577. ))
  25578. characterMakers.push(() => makeCharacter(
  25579. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25580. {
  25581. front: {
  25582. height: math.unit(5, "feet"),
  25583. weight: math.unit(90, "lb"),
  25584. name: "Front",
  25585. image: {
  25586. source: "./media/characters/pixil/front.svg",
  25587. extra: 2000 / 1618,
  25588. bottom: 12.3 / 2011
  25589. }
  25590. },
  25591. },
  25592. [
  25593. {
  25594. name: "Normal",
  25595. height: math.unit(5, "feet"),
  25596. default: true
  25597. },
  25598. {
  25599. name: "Megamacro",
  25600. height: math.unit(10, "miles"),
  25601. },
  25602. ]
  25603. ))
  25604. characterMakers.push(() => makeCharacter(
  25605. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25606. {
  25607. front: {
  25608. height: math.unit(7 + 2 / 12, "feet"),
  25609. weight: math.unit(200, "lb"),
  25610. name: "Front",
  25611. image: {
  25612. source: "./media/characters/angel/front.svg",
  25613. extra: 1830 / 1737,
  25614. bottom: 22.6 / 1854,
  25615. }
  25616. },
  25617. },
  25618. [
  25619. {
  25620. name: "Normal",
  25621. height: math.unit(7 + 2 / 12, "feet"),
  25622. default: true
  25623. },
  25624. {
  25625. name: "Macro",
  25626. height: math.unit(1000, "feet")
  25627. },
  25628. {
  25629. name: "Megamacro",
  25630. height: math.unit(2, "miles")
  25631. },
  25632. {
  25633. name: "Gigamacro",
  25634. height: math.unit(20, "earths")
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25640. {
  25641. front: {
  25642. height: math.unit(5, "feet"),
  25643. weight: math.unit(180, "lb"),
  25644. name: "Front",
  25645. image: {
  25646. source: "./media/characters/mekana/front.svg",
  25647. extra: 1671 / 1605,
  25648. bottom: 3.5 / 1691
  25649. }
  25650. },
  25651. side: {
  25652. height: math.unit(5, "feet"),
  25653. weight: math.unit(180, "lb"),
  25654. name: "Side",
  25655. image: {
  25656. source: "./media/characters/mekana/side.svg",
  25657. extra: 1671 / 1605,
  25658. bottom: 3.5 / 1691
  25659. }
  25660. },
  25661. back: {
  25662. height: math.unit(5, "feet"),
  25663. weight: math.unit(180, "lb"),
  25664. name: "Back",
  25665. image: {
  25666. source: "./media/characters/mekana/back.svg",
  25667. extra: 1671 / 1605,
  25668. bottom: 3.5 / 1691
  25669. }
  25670. },
  25671. },
  25672. [
  25673. {
  25674. name: "Normal",
  25675. height: math.unit(5, "feet"),
  25676. default: true
  25677. },
  25678. ]
  25679. ))
  25680. characterMakers.push(() => makeCharacter(
  25681. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25682. {
  25683. front: {
  25684. height: math.unit(4 + 6 / 12, "feet"),
  25685. weight: math.unit(80, "lb"),
  25686. name: "Front",
  25687. image: {
  25688. source: "./media/characters/pixie/front.svg",
  25689. extra: 1924 / 1825,
  25690. bottom: 22.4 / 1946
  25691. }
  25692. },
  25693. },
  25694. [
  25695. {
  25696. name: "Normal",
  25697. height: math.unit(4 + 6 / 12, "feet"),
  25698. default: true
  25699. },
  25700. {
  25701. name: "Macro",
  25702. height: math.unit(40, "feet")
  25703. },
  25704. ]
  25705. ))
  25706. characterMakers.push(() => makeCharacter(
  25707. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25708. {
  25709. front: {
  25710. height: math.unit(2.1, "meters"),
  25711. weight: math.unit(200, "lb"),
  25712. name: "Front",
  25713. image: {
  25714. source: "./media/characters/the-lascivious/front.svg",
  25715. extra: 1 / 0.893,
  25716. bottom: 3.5 / 573.7
  25717. }
  25718. },
  25719. },
  25720. [
  25721. {
  25722. name: "Human Scale",
  25723. height: math.unit(2.1, "meters")
  25724. },
  25725. {
  25726. name: "Wolxi Scale",
  25727. height: math.unit(46.2, "m"),
  25728. default: true
  25729. },
  25730. {
  25731. name: "Boinker of Buildings",
  25732. height: math.unit(10, "km")
  25733. },
  25734. {
  25735. name: "Shagger of Skyscrapers",
  25736. height: math.unit(40, "km")
  25737. },
  25738. {
  25739. name: "Banger of Boroughs",
  25740. height: math.unit(4000, "km")
  25741. },
  25742. {
  25743. name: "Screwer of States",
  25744. height: math.unit(100000, "km")
  25745. },
  25746. {
  25747. name: "Pounder of Planets",
  25748. height: math.unit(2000000, "km")
  25749. },
  25750. ]
  25751. ))
  25752. characterMakers.push(() => makeCharacter(
  25753. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25754. {
  25755. front: {
  25756. height: math.unit(6, "feet"),
  25757. weight: math.unit(150, "lb"),
  25758. name: "Front",
  25759. image: {
  25760. source: "./media/characters/aj/front.svg",
  25761. extra: 2039 / 1562,
  25762. bottom: 40 / 2079
  25763. }
  25764. },
  25765. },
  25766. [
  25767. {
  25768. name: "Normal",
  25769. height: math.unit(11 + 6 / 12, "feet"),
  25770. default: true
  25771. },
  25772. {
  25773. name: "Megamacro",
  25774. height: math.unit(60, "megameters")
  25775. },
  25776. ]
  25777. ))
  25778. characterMakers.push(() => makeCharacter(
  25779. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25780. {
  25781. side: {
  25782. height: math.unit(31 + 8 / 12, "feet"),
  25783. weight: math.unit(75000, "kg"),
  25784. name: "Side",
  25785. image: {
  25786. source: "./media/characters/koros/side.svg",
  25787. extra: 1442 / 1297,
  25788. bottom: 122.7 / 1562
  25789. }
  25790. },
  25791. dicksKingsCrown: {
  25792. height: math.unit(6, "feet"),
  25793. name: "Dicks (King's Crown)",
  25794. image: {
  25795. source: "./media/characters/koros/dicks-kings-crown.svg"
  25796. }
  25797. },
  25798. dicksTailSet: {
  25799. height: math.unit(3, "feet"),
  25800. name: "Dicks (Tail Set)",
  25801. image: {
  25802. source: "./media/characters/koros/dicks-tail-set.svg"
  25803. }
  25804. },
  25805. dickCumming: {
  25806. height: math.unit(7.98, "feet"),
  25807. name: "Dick (Cumming)",
  25808. image: {
  25809. source: "./media/characters/koros/dick-cumming.svg"
  25810. }
  25811. },
  25812. dicksBack: {
  25813. height: math.unit(5.9, "feet"),
  25814. name: "Dicks (Back)",
  25815. image: {
  25816. source: "./media/characters/koros/dicks-back.svg"
  25817. }
  25818. },
  25819. dicksFront: {
  25820. height: math.unit(3.72, "feet"),
  25821. name: "Dicks (Front)",
  25822. image: {
  25823. source: "./media/characters/koros/dicks-front.svg"
  25824. }
  25825. },
  25826. dicksPeeking: {
  25827. height: math.unit(3.0, "feet"),
  25828. name: "Dicks (Peeking)",
  25829. image: {
  25830. source: "./media/characters/koros/dicks-peeking.svg"
  25831. }
  25832. },
  25833. eye: {
  25834. height: math.unit(1.7, "feet"),
  25835. name: "Eye",
  25836. image: {
  25837. source: "./media/characters/koros/eye.svg"
  25838. }
  25839. },
  25840. headFront: {
  25841. height: math.unit(11.69, "feet"),
  25842. name: "Head (Front)",
  25843. image: {
  25844. source: "./media/characters/koros/head-front.svg"
  25845. }
  25846. },
  25847. headSide: {
  25848. height: math.unit(14, "feet"),
  25849. name: "Head (Side)",
  25850. image: {
  25851. source: "./media/characters/koros/head-side.svg"
  25852. }
  25853. },
  25854. leg: {
  25855. height: math.unit(17, "feet"),
  25856. name: "Leg",
  25857. image: {
  25858. source: "./media/characters/koros/leg.svg"
  25859. }
  25860. },
  25861. mawSide: {
  25862. height: math.unit(12.8, "feet"),
  25863. name: "Maw (Side)",
  25864. image: {
  25865. source: "./media/characters/koros/maw-side.svg"
  25866. }
  25867. },
  25868. mawSpitting: {
  25869. height: math.unit(17, "feet"),
  25870. name: "Maw (Spitting)",
  25871. image: {
  25872. source: "./media/characters/koros/maw-spitting.svg"
  25873. }
  25874. },
  25875. slit: {
  25876. height: math.unit(2.8, "feet"),
  25877. name: "Slit",
  25878. image: {
  25879. source: "./media/characters/koros/slit.svg"
  25880. }
  25881. },
  25882. stomach: {
  25883. height: math.unit(6.8, "feet"),
  25884. capacity: math.unit(20, "people"),
  25885. name: "Stomach",
  25886. image: {
  25887. source: "./media/characters/koros/stomach.svg"
  25888. }
  25889. },
  25890. wingspanBottom: {
  25891. height: math.unit(114, "feet"),
  25892. name: "Wingspan (Bottom)",
  25893. image: {
  25894. source: "./media/characters/koros/wingspan-bottom.svg"
  25895. }
  25896. },
  25897. wingspanTop: {
  25898. height: math.unit(104, "feet"),
  25899. name: "Wingspan (Top)",
  25900. image: {
  25901. source: "./media/characters/koros/wingspan-top.svg"
  25902. }
  25903. },
  25904. },
  25905. [
  25906. {
  25907. name: "Normal",
  25908. height: math.unit(31 + 8 / 12, "feet"),
  25909. default: true
  25910. },
  25911. ]
  25912. ))
  25913. characterMakers.push(() => makeCharacter(
  25914. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25915. {
  25916. front: {
  25917. height: math.unit(18 + 5 / 12, "feet"),
  25918. weight: math.unit(3750, "kg"),
  25919. name: "Front",
  25920. image: {
  25921. source: "./media/characters/vexx/front.svg",
  25922. extra: 426 / 396,
  25923. bottom: 31.5 / 458
  25924. }
  25925. },
  25926. maw: {
  25927. height: math.unit(6, "feet"),
  25928. name: "Maw",
  25929. image: {
  25930. source: "./media/characters/vexx/maw.svg"
  25931. }
  25932. },
  25933. },
  25934. [
  25935. {
  25936. name: "Normal",
  25937. height: math.unit(18 + 5 / 12, "feet"),
  25938. default: true
  25939. },
  25940. ]
  25941. ))
  25942. characterMakers.push(() => makeCharacter(
  25943. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25944. {
  25945. front: {
  25946. height: math.unit(17 + 6 / 12, "feet"),
  25947. weight: math.unit(150, "lb"),
  25948. name: "Front",
  25949. image: {
  25950. source: "./media/characters/baadra/front.svg",
  25951. extra: 3137 / 2890,
  25952. bottom: 168.4 / 3305
  25953. }
  25954. },
  25955. back: {
  25956. height: math.unit(17 + 6 / 12, "feet"),
  25957. weight: math.unit(150, "lb"),
  25958. name: "Back",
  25959. image: {
  25960. source: "./media/characters/baadra/back.svg",
  25961. extra: 3142 / 2890,
  25962. bottom: 220 / 3371
  25963. }
  25964. },
  25965. head: {
  25966. height: math.unit(5.45, "feet"),
  25967. name: "Head",
  25968. image: {
  25969. source: "./media/characters/baadra/head.svg"
  25970. }
  25971. },
  25972. headAngry: {
  25973. height: math.unit(4.95, "feet"),
  25974. name: "Head (Angry)",
  25975. image: {
  25976. source: "./media/characters/baadra/head-angry.svg"
  25977. }
  25978. },
  25979. headOpen: {
  25980. height: math.unit(6, "feet"),
  25981. name: "Head (Open)",
  25982. image: {
  25983. source: "./media/characters/baadra/head-open.svg"
  25984. }
  25985. },
  25986. },
  25987. [
  25988. {
  25989. name: "Normal",
  25990. height: math.unit(17 + 6 / 12, "feet"),
  25991. default: true
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25997. {
  25998. front: {
  25999. height: math.unit(7 + 3 / 12, "feet"),
  26000. weight: math.unit(180, "lb"),
  26001. name: "Front",
  26002. image: {
  26003. source: "./media/characters/juri/front.svg",
  26004. extra: 1401 / 1237,
  26005. bottom: 18.5 / 1418
  26006. }
  26007. },
  26008. side: {
  26009. height: math.unit(7 + 3 / 12, "feet"),
  26010. weight: math.unit(180, "lb"),
  26011. name: "Side",
  26012. image: {
  26013. source: "./media/characters/juri/side.svg",
  26014. extra: 1424 / 1242,
  26015. bottom: 18.5 / 1447
  26016. }
  26017. },
  26018. sitting: {
  26019. height: math.unit(6, "feet"),
  26020. weight: math.unit(180, "lb"),
  26021. name: "Sitting",
  26022. image: {
  26023. source: "./media/characters/juri/sitting.svg",
  26024. extra: 1270 / 1143,
  26025. bottom: 100 / 1343
  26026. }
  26027. },
  26028. back: {
  26029. height: math.unit(7 + 3 / 12, "feet"),
  26030. weight: math.unit(180, "lb"),
  26031. name: "Back",
  26032. image: {
  26033. source: "./media/characters/juri/back.svg",
  26034. extra: 1377 / 1240,
  26035. bottom: 23.7 / 1405
  26036. }
  26037. },
  26038. maw: {
  26039. height: math.unit(2.8, "feet"),
  26040. name: "Maw",
  26041. image: {
  26042. source: "./media/characters/juri/maw.svg"
  26043. }
  26044. },
  26045. stomach: {
  26046. height: math.unit(0.89, "feet"),
  26047. capacity: math.unit(4, "liters"),
  26048. name: "Stomach",
  26049. image: {
  26050. source: "./media/characters/juri/stomach.svg"
  26051. }
  26052. },
  26053. },
  26054. [
  26055. {
  26056. name: "Normal",
  26057. height: math.unit(7 + 3 / 12, "feet"),
  26058. default: true
  26059. },
  26060. ]
  26061. ))
  26062. characterMakers.push(() => makeCharacter(
  26063. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26064. {
  26065. fox: {
  26066. height: math.unit(5 + 6 / 12, "feet"),
  26067. weight: math.unit(140, "lb"),
  26068. name: "Fox",
  26069. image: {
  26070. source: "./media/characters/maxene-sita/fox.svg",
  26071. extra: 146 / 138,
  26072. bottom: 2.1 / 148.19
  26073. }
  26074. },
  26075. foxLaying: {
  26076. height: math.unit(1.70, "feet"),
  26077. weight: math.unit(140, "lb"),
  26078. name: "Fox (Laying)",
  26079. image: {
  26080. source: "./media/characters/maxene-sita/fox-laying.svg",
  26081. extra: 910 / 572,
  26082. bottom: 71 / 981
  26083. }
  26084. },
  26085. kitsune: {
  26086. height: math.unit(10, "feet"),
  26087. weight: math.unit(800, "lb"),
  26088. name: "Kitsune",
  26089. image: {
  26090. source: "./media/characters/maxene-sita/kitsune.svg",
  26091. extra: 185 / 176,
  26092. bottom: 4.7 / 189.9
  26093. }
  26094. },
  26095. hellhound: {
  26096. height: math.unit(10, "feet"),
  26097. weight: math.unit(700, "lb"),
  26098. name: "Hellhound",
  26099. image: {
  26100. source: "./media/characters/maxene-sita/hellhound.svg",
  26101. extra: 1600 / 1545,
  26102. bottom: 81 / 1681
  26103. }
  26104. },
  26105. },
  26106. [
  26107. {
  26108. name: "Normal",
  26109. height: math.unit(5 + 6 / 12, "feet"),
  26110. default: true
  26111. },
  26112. ]
  26113. ))
  26114. characterMakers.push(() => makeCharacter(
  26115. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26116. {
  26117. front: {
  26118. height: math.unit(3 + 4 / 12, "feet"),
  26119. weight: math.unit(70, "lb"),
  26120. name: "Front",
  26121. image: {
  26122. source: "./media/characters/maia/front.svg",
  26123. extra: 227 / 219.5,
  26124. bottom: 40 / 267
  26125. }
  26126. },
  26127. back: {
  26128. height: math.unit(3 + 4 / 12, "feet"),
  26129. weight: math.unit(70, "lb"),
  26130. name: "Back",
  26131. image: {
  26132. source: "./media/characters/maia/back.svg",
  26133. extra: 237 / 225
  26134. }
  26135. },
  26136. },
  26137. [
  26138. {
  26139. name: "Normal",
  26140. height: math.unit(3 + 4 / 12, "feet"),
  26141. default: true
  26142. },
  26143. ]
  26144. ))
  26145. characterMakers.push(() => makeCharacter(
  26146. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26147. {
  26148. front: {
  26149. height: math.unit(5 + 10 / 12, "feet"),
  26150. weight: math.unit(197, "lb"),
  26151. name: "Front",
  26152. image: {
  26153. source: "./media/characters/jabaro/front.svg",
  26154. extra: 225 / 216,
  26155. bottom: 5.06 / 230
  26156. }
  26157. },
  26158. back: {
  26159. height: math.unit(5 + 10 / 12, "feet"),
  26160. weight: math.unit(197, "lb"),
  26161. name: "Back",
  26162. image: {
  26163. source: "./media/characters/jabaro/back.svg",
  26164. extra: 225 / 219,
  26165. bottom: 1.9 / 227
  26166. }
  26167. },
  26168. },
  26169. [
  26170. {
  26171. name: "Normal",
  26172. height: math.unit(5 + 10 / 12, "feet"),
  26173. default: true
  26174. },
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26179. {
  26180. front: {
  26181. height: math.unit(5 + 8 / 12, "feet"),
  26182. weight: math.unit(139, "lb"),
  26183. name: "Front",
  26184. image: {
  26185. source: "./media/characters/risa/front.svg",
  26186. extra: 270 / 260,
  26187. bottom: 11.2 / 282
  26188. }
  26189. },
  26190. back: {
  26191. height: math.unit(5 + 8 / 12, "feet"),
  26192. weight: math.unit(139, "lb"),
  26193. name: "Back",
  26194. image: {
  26195. source: "./media/characters/risa/back.svg",
  26196. extra: 264 / 255,
  26197. bottom: 4 / 268
  26198. }
  26199. },
  26200. },
  26201. [
  26202. {
  26203. name: "Normal",
  26204. height: math.unit(5 + 8 / 12, "feet"),
  26205. default: true
  26206. },
  26207. ]
  26208. ))
  26209. characterMakers.push(() => makeCharacter(
  26210. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26211. {
  26212. front: {
  26213. height: math.unit(2 + 11 / 12, "feet"),
  26214. weight: math.unit(30, "lb"),
  26215. name: "Front",
  26216. image: {
  26217. source: "./media/characters/weatley/front.svg",
  26218. bottom: 10.7 / 414,
  26219. extra: 403.5 / 362
  26220. }
  26221. },
  26222. back: {
  26223. height: math.unit(2 + 11 / 12, "feet"),
  26224. weight: math.unit(30, "lb"),
  26225. name: "Back",
  26226. image: {
  26227. source: "./media/characters/weatley/back.svg",
  26228. bottom: 10.7 / 414,
  26229. extra: 403.5 / 362
  26230. }
  26231. },
  26232. },
  26233. [
  26234. {
  26235. name: "Normal",
  26236. height: math.unit(2 + 11 / 12, "feet"),
  26237. default: true
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26243. {
  26244. front: {
  26245. height: math.unit(5 + 2 / 12, "feet"),
  26246. weight: math.unit(50, "kg"),
  26247. name: "Front",
  26248. image: {
  26249. source: "./media/characters/mercury-crescent/front.svg",
  26250. extra: 1088 / 1033,
  26251. bottom: 18.9 / 1109
  26252. }
  26253. },
  26254. },
  26255. [
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(5 + 2 / 12, "feet"),
  26259. default: true
  26260. },
  26261. ]
  26262. ))
  26263. characterMakers.push(() => makeCharacter(
  26264. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26265. {
  26266. front: {
  26267. height: math.unit(2, "feet"),
  26268. weight: math.unit(15, "kg"),
  26269. name: "Front",
  26270. image: {
  26271. source: "./media/characters/diamond-jones/front.svg",
  26272. extra: 727/723,
  26273. bottom: 46/773
  26274. }
  26275. },
  26276. },
  26277. [
  26278. {
  26279. name: "Normal",
  26280. height: math.unit(2, "feet"),
  26281. default: true
  26282. },
  26283. ]
  26284. ))
  26285. characterMakers.push(() => makeCharacter(
  26286. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26287. {
  26288. front: {
  26289. height: math.unit(3, "feet"),
  26290. weight: math.unit(30, "kg"),
  26291. name: "Front",
  26292. image: {
  26293. source: "./media/characters/sweet-bit/front.svg",
  26294. extra: 675 / 567,
  26295. bottom: 27.7 / 703
  26296. }
  26297. },
  26298. },
  26299. [
  26300. {
  26301. name: "Normal",
  26302. height: math.unit(3, "feet"),
  26303. default: true
  26304. },
  26305. ]
  26306. ))
  26307. characterMakers.push(() => makeCharacter(
  26308. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26309. {
  26310. side: {
  26311. height: math.unit(9.178, "feet"),
  26312. weight: math.unit(500, "lb"),
  26313. name: "Side",
  26314. image: {
  26315. source: "./media/characters/umbrazen/side.svg",
  26316. extra: 1730 / 1473,
  26317. bottom: 34.6 / 1765
  26318. }
  26319. },
  26320. },
  26321. [
  26322. {
  26323. name: "Normal",
  26324. height: math.unit(9.178, "feet"),
  26325. default: true
  26326. },
  26327. ]
  26328. ))
  26329. characterMakers.push(() => makeCharacter(
  26330. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26331. {
  26332. front: {
  26333. height: math.unit(10, "feet"),
  26334. weight: math.unit(750, "lb"),
  26335. name: "Front",
  26336. image: {
  26337. source: "./media/characters/arlist/front.svg",
  26338. extra: 961 / 778,
  26339. bottom: 6.2 / 986
  26340. }
  26341. },
  26342. },
  26343. [
  26344. {
  26345. name: "Normal",
  26346. height: math.unit(10, "feet"),
  26347. default: true
  26348. },
  26349. ]
  26350. ))
  26351. characterMakers.push(() => makeCharacter(
  26352. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26353. {
  26354. front: {
  26355. height: math.unit(5 + 1 / 12, "feet"),
  26356. weight: math.unit(110, "lb"),
  26357. name: "Front",
  26358. image: {
  26359. source: "./media/characters/aradel/front.svg",
  26360. extra: 324 / 303,
  26361. bottom: 3.6 / 329.4
  26362. }
  26363. },
  26364. },
  26365. [
  26366. {
  26367. name: "Normal",
  26368. height: math.unit(5 + 1 / 12, "feet"),
  26369. default: true
  26370. },
  26371. ]
  26372. ))
  26373. characterMakers.push(() => makeCharacter(
  26374. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26375. {
  26376. front: {
  26377. height: math.unit(3 + 8 / 12, "feet"),
  26378. weight: math.unit(50, "lb"),
  26379. name: "Front",
  26380. image: {
  26381. source: "./media/characters/serryn/front.svg",
  26382. extra: 1792 / 1656,
  26383. bottom: 43.5 / 1840
  26384. }
  26385. },
  26386. },
  26387. [
  26388. {
  26389. name: "Normal",
  26390. height: math.unit(3 + 8 / 12, "feet"),
  26391. default: true
  26392. },
  26393. ]
  26394. ))
  26395. characterMakers.push(() => makeCharacter(
  26396. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26397. {
  26398. front: {
  26399. height: math.unit(7 + 10 / 12, "feet"),
  26400. weight: math.unit(255, "lb"),
  26401. name: "Front",
  26402. image: {
  26403. source: "./media/characters/xavier-thyme/front.svg",
  26404. extra: 3733 / 3642,
  26405. bottom: 131 / 3869
  26406. }
  26407. },
  26408. frontRaven: {
  26409. height: math.unit(7 + 10 / 12, "feet"),
  26410. weight: math.unit(255, "lb"),
  26411. name: "Front (Raven)",
  26412. image: {
  26413. source: "./media/characters/xavier-thyme/front-raven.svg",
  26414. extra: 4385 / 3642,
  26415. bottom: 131 / 4517
  26416. }
  26417. },
  26418. },
  26419. [
  26420. {
  26421. name: "Normal",
  26422. height: math.unit(7 + 10 / 12, "feet"),
  26423. default: true
  26424. },
  26425. ]
  26426. ))
  26427. characterMakers.push(() => makeCharacter(
  26428. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26429. {
  26430. front: {
  26431. height: math.unit(1.6, "m"),
  26432. weight: math.unit(50, "kg"),
  26433. name: "Front",
  26434. image: {
  26435. source: "./media/characters/kiki/front.svg",
  26436. extra: 4682 / 3610,
  26437. bottom: 115 / 4777
  26438. }
  26439. },
  26440. },
  26441. [
  26442. {
  26443. name: "Normal",
  26444. height: math.unit(1.6, "meters"),
  26445. default: true
  26446. },
  26447. ]
  26448. ))
  26449. characterMakers.push(() => makeCharacter(
  26450. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26451. {
  26452. front: {
  26453. height: math.unit(50, "m"),
  26454. weight: math.unit(500, "tonnes"),
  26455. name: "Front",
  26456. image: {
  26457. source: "./media/characters/ryoko/front.svg",
  26458. extra: 4632 / 3926,
  26459. bottom: 193 / 4823
  26460. }
  26461. },
  26462. },
  26463. [
  26464. {
  26465. name: "Normal",
  26466. height: math.unit(50, "meters"),
  26467. default: true
  26468. },
  26469. ]
  26470. ))
  26471. characterMakers.push(() => makeCharacter(
  26472. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26473. {
  26474. front: {
  26475. height: math.unit(30, "m"),
  26476. weight: math.unit(22, "tonnes"),
  26477. name: "Front",
  26478. image: {
  26479. source: "./media/characters/elio/front.svg",
  26480. extra: 4582 / 3720,
  26481. bottom: 236 / 4828
  26482. }
  26483. },
  26484. },
  26485. [
  26486. {
  26487. name: "Normal",
  26488. height: math.unit(30, "meters"),
  26489. default: true
  26490. },
  26491. ]
  26492. ))
  26493. characterMakers.push(() => makeCharacter(
  26494. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26495. {
  26496. front: {
  26497. height: math.unit(6 + 3 / 12, "feet"),
  26498. weight: math.unit(120, "lb"),
  26499. name: "Front",
  26500. image: {
  26501. source: "./media/characters/azura/front.svg",
  26502. extra: 1149 / 1135,
  26503. bottom: 45 / 1194
  26504. }
  26505. },
  26506. frontClothed: {
  26507. height: math.unit(6 + 3 / 12, "feet"),
  26508. weight: math.unit(120, "lb"),
  26509. name: "Front (Clothed)",
  26510. image: {
  26511. source: "./media/characters/azura/front-clothed.svg",
  26512. extra: 1149 / 1135,
  26513. bottom: 45 / 1194
  26514. }
  26515. },
  26516. },
  26517. [
  26518. {
  26519. name: "Normal",
  26520. height: math.unit(6 + 3 / 12, "feet"),
  26521. default: true
  26522. },
  26523. {
  26524. name: "Macro",
  26525. height: math.unit(20 + 6 / 12, "feet")
  26526. },
  26527. {
  26528. name: "Megamacro",
  26529. height: math.unit(12, "miles")
  26530. },
  26531. {
  26532. name: "Gigamacro",
  26533. height: math.unit(10000, "miles")
  26534. },
  26535. {
  26536. name: "Teramacro",
  26537. height: math.unit(900000, "miles")
  26538. },
  26539. ]
  26540. ))
  26541. characterMakers.push(() => makeCharacter(
  26542. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26543. {
  26544. front: {
  26545. height: math.unit(12, "feet"),
  26546. weight: math.unit(1, "ton"),
  26547. capacity: math.unit(660000, "gallons"),
  26548. name: "Front",
  26549. image: {
  26550. source: "./media/characters/zeus/front.svg",
  26551. extra: 5005 / 4717,
  26552. bottom: 363 / 5388
  26553. }
  26554. },
  26555. },
  26556. [
  26557. {
  26558. name: "Normal",
  26559. height: math.unit(12, "feet")
  26560. },
  26561. {
  26562. name: "Preferred Size",
  26563. height: math.unit(0.5, "miles"),
  26564. default: true
  26565. },
  26566. {
  26567. name: "Giga Horse",
  26568. height: math.unit(300, "miles")
  26569. },
  26570. {
  26571. name: "Riding Planets",
  26572. height: math.unit(30, "megameters")
  26573. },
  26574. {
  26575. name: "Cosmic Giant",
  26576. height: math.unit(3, "zettameters")
  26577. },
  26578. {
  26579. name: "Breeding God",
  26580. height: math.unit(9.92e22, "yottameters")
  26581. },
  26582. ]
  26583. ))
  26584. characterMakers.push(() => makeCharacter(
  26585. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26586. {
  26587. side: {
  26588. height: math.unit(9, "feet"),
  26589. weight: math.unit(1500, "kg"),
  26590. name: "Side",
  26591. image: {
  26592. source: "./media/characters/fang/side.svg",
  26593. extra: 924 / 866,
  26594. bottom: 47.5 / 972.3
  26595. }
  26596. },
  26597. },
  26598. [
  26599. {
  26600. name: "Normal",
  26601. height: math.unit(9, "feet"),
  26602. default: true
  26603. },
  26604. {
  26605. name: "Macro",
  26606. height: math.unit(75 + 6 / 12, "feet")
  26607. },
  26608. {
  26609. name: "Teramacro",
  26610. height: math.unit(50000, "miles")
  26611. },
  26612. ]
  26613. ))
  26614. characterMakers.push(() => makeCharacter(
  26615. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26616. {
  26617. front: {
  26618. height: math.unit(10, "feet"),
  26619. weight: math.unit(2, "tons"),
  26620. name: "Front",
  26621. image: {
  26622. source: "./media/characters/rekhit/front.svg",
  26623. extra: 2796 / 2590,
  26624. bottom: 225 / 3022
  26625. }
  26626. },
  26627. },
  26628. [
  26629. {
  26630. name: "Normal",
  26631. height: math.unit(10, "feet"),
  26632. default: true
  26633. },
  26634. {
  26635. name: "Macro",
  26636. height: math.unit(500, "feet")
  26637. },
  26638. ]
  26639. ))
  26640. characterMakers.push(() => makeCharacter(
  26641. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26642. {
  26643. front: {
  26644. height: math.unit(7 + 6.451 / 12, "feet"),
  26645. weight: math.unit(310, "lb"),
  26646. name: "Front",
  26647. image: {
  26648. source: "./media/characters/dahlia-verrick/front.svg",
  26649. extra: 1488 / 1365,
  26650. bottom: 6.2 / 1495
  26651. }
  26652. },
  26653. back: {
  26654. height: math.unit(7 + 6.451 / 12, "feet"),
  26655. weight: math.unit(310, "lb"),
  26656. name: "Back",
  26657. image: {
  26658. source: "./media/characters/dahlia-verrick/back.svg",
  26659. extra: 1472 / 1351,
  26660. bottom: 5.28 / 1477
  26661. }
  26662. },
  26663. frontBusiness: {
  26664. height: math.unit(7 + 6.451 / 12, "feet"),
  26665. weight: math.unit(200, "lb"),
  26666. name: "Front (Business)",
  26667. image: {
  26668. source: "./media/characters/dahlia-verrick/front-business.svg",
  26669. extra: 1478 / 1381,
  26670. bottom: 5.5 / 1484
  26671. }
  26672. },
  26673. frontCasual: {
  26674. height: math.unit(7 + 6.451 / 12, "feet"),
  26675. weight: math.unit(200, "lb"),
  26676. name: "Front (Casual)",
  26677. image: {
  26678. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26679. extra: 1478 / 1381,
  26680. bottom: 5.5 / 1484
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Travel-Sized",
  26687. height: math.unit(7.45, "inches")
  26688. },
  26689. {
  26690. name: "Normal",
  26691. height: math.unit(7 + 6.451 / 12, "feet"),
  26692. default: true
  26693. },
  26694. {
  26695. name: "Hitting the Town",
  26696. height: math.unit(37 + 8 / 12, "feet")
  26697. },
  26698. {
  26699. name: "Stomp in the Suburbs",
  26700. height: math.unit(964 + 9.728 / 12, "feet")
  26701. },
  26702. {
  26703. name: "Sit on the City",
  26704. height: math.unit(61747 + 10.592 / 12, "feet")
  26705. },
  26706. {
  26707. name: "Glomp the Globe",
  26708. height: math.unit(252919327 + 4.832 / 12, "feet")
  26709. },
  26710. ]
  26711. ))
  26712. characterMakers.push(() => makeCharacter(
  26713. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26714. {
  26715. front: {
  26716. height: math.unit(6 + 4 / 12, "feet"),
  26717. weight: math.unit(320, "lb"),
  26718. name: "Front",
  26719. image: {
  26720. source: "./media/characters/balina-mahigan/front.svg",
  26721. extra: 447 / 428,
  26722. bottom: 18 / 466
  26723. }
  26724. },
  26725. back: {
  26726. height: math.unit(6 + 4 / 12, "feet"),
  26727. weight: math.unit(320, "lb"),
  26728. name: "Back",
  26729. image: {
  26730. source: "./media/characters/balina-mahigan/back.svg",
  26731. extra: 445 / 428,
  26732. bottom: 4.07 / 448
  26733. }
  26734. },
  26735. arm: {
  26736. height: math.unit(1.88, "feet"),
  26737. name: "Arm",
  26738. image: {
  26739. source: "./media/characters/balina-mahigan/arm.svg"
  26740. }
  26741. },
  26742. backPort: {
  26743. height: math.unit(0.685, "feet"),
  26744. name: "Back Port",
  26745. image: {
  26746. source: "./media/characters/balina-mahigan/back-port.svg"
  26747. }
  26748. },
  26749. hoofpaw: {
  26750. height: math.unit(1.41, "feet"),
  26751. name: "Hoofpaw",
  26752. image: {
  26753. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26754. }
  26755. },
  26756. leftHandBack: {
  26757. height: math.unit(0.938, "feet"),
  26758. name: "Left Hand (Back)",
  26759. image: {
  26760. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26761. }
  26762. },
  26763. leftHandFront: {
  26764. height: math.unit(0.938, "feet"),
  26765. name: "Left Hand (Front)",
  26766. image: {
  26767. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26768. }
  26769. },
  26770. rightHandBack: {
  26771. height: math.unit(0.95, "feet"),
  26772. name: "Right Hand (Back)",
  26773. image: {
  26774. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26775. }
  26776. },
  26777. rightHandFront: {
  26778. height: math.unit(0.95, "feet"),
  26779. name: "Right Hand (Front)",
  26780. image: {
  26781. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26782. }
  26783. },
  26784. },
  26785. [
  26786. {
  26787. name: "Normal",
  26788. height: math.unit(6 + 4 / 12, "feet"),
  26789. default: true
  26790. },
  26791. ]
  26792. ))
  26793. characterMakers.push(() => makeCharacter(
  26794. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26795. {
  26796. front: {
  26797. height: math.unit(6, "feet"),
  26798. weight: math.unit(320, "lb"),
  26799. name: "Front",
  26800. image: {
  26801. source: "./media/characters/balina-mejeri/front.svg",
  26802. extra: 517 / 488,
  26803. bottom: 44.2 / 561
  26804. }
  26805. },
  26806. },
  26807. [
  26808. {
  26809. name: "Normal",
  26810. height: math.unit(6 + 4 / 12, "feet")
  26811. },
  26812. {
  26813. name: "Business",
  26814. height: math.unit(155, "feet"),
  26815. default: true
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26821. {
  26822. kneeling: {
  26823. height: math.unit(6 + 4 / 12, "feet"),
  26824. weight: math.unit(300 * 20, "lb"),
  26825. name: "Kneeling",
  26826. image: {
  26827. source: "./media/characters/balbarian/kneeling.svg",
  26828. extra: 922 / 862,
  26829. bottom: 42.4 / 965
  26830. }
  26831. },
  26832. },
  26833. [
  26834. {
  26835. name: "Normal",
  26836. height: math.unit(6 + 4 / 12, "feet")
  26837. },
  26838. {
  26839. name: "Treasured",
  26840. height: math.unit(18 + 9 / 12, "feet"),
  26841. default: true
  26842. },
  26843. {
  26844. name: "Macro",
  26845. height: math.unit(900, "feet")
  26846. },
  26847. ]
  26848. ))
  26849. characterMakers.push(() => makeCharacter(
  26850. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26851. {
  26852. front: {
  26853. height: math.unit(6 + 4 / 12, "feet"),
  26854. weight: math.unit(325, "lb"),
  26855. name: "Front",
  26856. image: {
  26857. source: "./media/characters/balina-amarini/front.svg",
  26858. extra: 415 / 403,
  26859. bottom: 19 / 433.4
  26860. }
  26861. },
  26862. back: {
  26863. height: math.unit(6 + 4 / 12, "feet"),
  26864. weight: math.unit(325, "lb"),
  26865. name: "Back",
  26866. image: {
  26867. source: "./media/characters/balina-amarini/back.svg",
  26868. extra: 415 / 403,
  26869. bottom: 13.5 / 432
  26870. }
  26871. },
  26872. overdrive: {
  26873. height: math.unit(6 + 4 / 12, "feet"),
  26874. weight: math.unit(400, "lb"),
  26875. name: "Overdrive",
  26876. image: {
  26877. source: "./media/characters/balina-amarini/overdrive.svg",
  26878. extra: 269 / 259,
  26879. bottom: 12 / 282
  26880. }
  26881. },
  26882. },
  26883. [
  26884. {
  26885. name: "Boom",
  26886. height: math.unit(9 + 10 / 12, "feet"),
  26887. default: true
  26888. },
  26889. {
  26890. name: "Macro",
  26891. height: math.unit(280, "feet")
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26897. {
  26898. goddess: {
  26899. height: math.unit(600, "feet"),
  26900. weight: math.unit(2000000, "tons"),
  26901. name: "Goddess",
  26902. image: {
  26903. source: "./media/characters/lady-kubwa/goddess.svg",
  26904. extra: 1240.5 / 1223,
  26905. bottom: 22 / 1263
  26906. }
  26907. },
  26908. goddesser: {
  26909. height: math.unit(900, "feet"),
  26910. weight: math.unit(20000000, "lb"),
  26911. name: "Goddess-er",
  26912. image: {
  26913. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26914. extra: 899 / 888,
  26915. bottom: 12.6 / 912
  26916. }
  26917. },
  26918. },
  26919. [
  26920. {
  26921. name: "Macro",
  26922. height: math.unit(600, "feet"),
  26923. default: true
  26924. },
  26925. {
  26926. name: "Megamacro",
  26927. height: math.unit(250, "miles")
  26928. },
  26929. ]
  26930. ))
  26931. characterMakers.push(() => makeCharacter(
  26932. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26933. {
  26934. front: {
  26935. height: math.unit(7 + 7 / 12, "feet"),
  26936. weight: math.unit(250, "lb"),
  26937. name: "Front",
  26938. image: {
  26939. source: "./media/characters/tala-grovehorn/front.svg",
  26940. extra: 2636 / 2525,
  26941. bottom: 147 / 2781
  26942. }
  26943. },
  26944. back: {
  26945. height: math.unit(7 + 7 / 12, "feet"),
  26946. weight: math.unit(250, "lb"),
  26947. name: "Back",
  26948. image: {
  26949. source: "./media/characters/tala-grovehorn/back.svg",
  26950. extra: 2635 / 2539,
  26951. bottom: 100 / 2732.8
  26952. }
  26953. },
  26954. mouth: {
  26955. height: math.unit(1.15, "feet"),
  26956. name: "Mouth",
  26957. image: {
  26958. source: "./media/characters/tala-grovehorn/mouth.svg"
  26959. }
  26960. },
  26961. dick: {
  26962. height: math.unit(2.36, "feet"),
  26963. name: "Dick",
  26964. image: {
  26965. source: "./media/characters/tala-grovehorn/dick.svg"
  26966. }
  26967. },
  26968. slit: {
  26969. height: math.unit(0.61, "feet"),
  26970. name: "Slit",
  26971. image: {
  26972. source: "./media/characters/tala-grovehorn/slit.svg"
  26973. }
  26974. },
  26975. },
  26976. [
  26977. ]
  26978. ))
  26979. characterMakers.push(() => makeCharacter(
  26980. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26981. {
  26982. front: {
  26983. height: math.unit(7 + 7 / 12, "feet"),
  26984. weight: math.unit(225, "lb"),
  26985. name: "Front",
  26986. image: {
  26987. source: "./media/characters/epona/front.svg",
  26988. extra: 2445 / 2290,
  26989. bottom: 251 / 2696
  26990. }
  26991. },
  26992. back: {
  26993. height: math.unit(7 + 7 / 12, "feet"),
  26994. weight: math.unit(225, "lb"),
  26995. name: "Back",
  26996. image: {
  26997. source: "./media/characters/epona/back.svg",
  26998. extra: 2546 / 2408,
  26999. bottom: 44 / 2589
  27000. }
  27001. },
  27002. genitals: {
  27003. height: math.unit(1.5, "feet"),
  27004. name: "Genitals",
  27005. image: {
  27006. source: "./media/characters/epona/genitals.svg"
  27007. }
  27008. },
  27009. },
  27010. [
  27011. {
  27012. name: "Normal",
  27013. height: math.unit(7 + 7 / 12, "feet"),
  27014. default: true
  27015. },
  27016. ]
  27017. ))
  27018. characterMakers.push(() => makeCharacter(
  27019. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27020. {
  27021. front: {
  27022. height: math.unit(7, "feet"),
  27023. weight: math.unit(518, "lb"),
  27024. name: "Front",
  27025. image: {
  27026. source: "./media/characters/avia-bloodbourn/front.svg",
  27027. extra: 1466 / 1350,
  27028. bottom: 65 / 1527
  27029. }
  27030. },
  27031. },
  27032. [
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27037. {
  27038. front: {
  27039. height: math.unit(9.35, "feet"),
  27040. weight: math.unit(600, "lb"),
  27041. name: "Front",
  27042. image: {
  27043. source: "./media/characters/amera/front.svg",
  27044. extra: 891 / 818,
  27045. bottom: 30 / 922.7
  27046. }
  27047. },
  27048. back: {
  27049. height: math.unit(9.35, "feet"),
  27050. weight: math.unit(600, "lb"),
  27051. name: "Back",
  27052. image: {
  27053. source: "./media/characters/amera/back.svg",
  27054. extra: 876 / 824,
  27055. bottom: 6.8 / 884
  27056. }
  27057. },
  27058. dick: {
  27059. height: math.unit(2.14, "feet"),
  27060. name: "Dick",
  27061. image: {
  27062. source: "./media/characters/amera/dick.svg"
  27063. }
  27064. },
  27065. },
  27066. [
  27067. {
  27068. name: "Normal",
  27069. height: math.unit(9.35, "feet"),
  27070. default: true
  27071. },
  27072. ]
  27073. ))
  27074. characterMakers.push(() => makeCharacter(
  27075. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27076. {
  27077. kneeling: {
  27078. height: math.unit(3 + 4 / 12, "feet"),
  27079. weight: math.unit(90, "lb"),
  27080. name: "Kneeling",
  27081. image: {
  27082. source: "./media/characters/rosewen/kneeling.svg",
  27083. extra: 1835 / 1571,
  27084. bottom: 27.7 / 1862
  27085. }
  27086. },
  27087. },
  27088. [
  27089. {
  27090. name: "Normal",
  27091. height: math.unit(3 + 4 / 12, "feet"),
  27092. default: true
  27093. },
  27094. ]
  27095. ))
  27096. characterMakers.push(() => makeCharacter(
  27097. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27098. {
  27099. front: {
  27100. height: math.unit(5 + 10 / 12, "feet"),
  27101. weight: math.unit(200, "lb"),
  27102. name: "Front",
  27103. image: {
  27104. source: "./media/characters/sabah/front.svg",
  27105. extra: 849 / 763,
  27106. bottom: 33.9 / 881
  27107. }
  27108. },
  27109. },
  27110. [
  27111. {
  27112. name: "Normal",
  27113. height: math.unit(5 + 10 / 12, "feet"),
  27114. default: true
  27115. },
  27116. ]
  27117. ))
  27118. characterMakers.push(() => makeCharacter(
  27119. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27120. {
  27121. front: {
  27122. height: math.unit(3 + 5 / 12, "feet"),
  27123. weight: math.unit(40, "kg"),
  27124. name: "Front",
  27125. image: {
  27126. source: "./media/characters/purple-flame/front.svg",
  27127. extra: 1577 / 1412,
  27128. bottom: 97 / 1694
  27129. }
  27130. },
  27131. frontDressed: {
  27132. height: math.unit(3 + 5 / 12, "feet"),
  27133. weight: math.unit(40, "kg"),
  27134. name: "Front (Dressed)",
  27135. image: {
  27136. source: "./media/characters/purple-flame/front-dressed.svg",
  27137. extra: 1577 / 1412,
  27138. bottom: 97 / 1694
  27139. }
  27140. },
  27141. headphones: {
  27142. height: math.unit(0.85, "feet"),
  27143. name: "Headphones",
  27144. image: {
  27145. source: "./media/characters/purple-flame/headphones.svg"
  27146. }
  27147. },
  27148. },
  27149. [
  27150. {
  27151. name: "Really Small",
  27152. height: math.unit(5, "cm")
  27153. },
  27154. {
  27155. name: "Micro",
  27156. height: math.unit(1 + 5 / 12, "feet")
  27157. },
  27158. {
  27159. name: "Normal",
  27160. height: math.unit(3 + 5 / 12, "feet"),
  27161. default: true
  27162. },
  27163. {
  27164. name: "Minimacro",
  27165. height: math.unit(125, "feet")
  27166. },
  27167. {
  27168. name: "Macro",
  27169. height: math.unit(0.5, "miles")
  27170. },
  27171. {
  27172. name: "Megamacro",
  27173. height: math.unit(50, "miles")
  27174. },
  27175. {
  27176. name: "Gigantic",
  27177. height: math.unit(750, "miles")
  27178. },
  27179. {
  27180. name: "Planetary",
  27181. height: math.unit(15000, "miles")
  27182. },
  27183. ]
  27184. ))
  27185. characterMakers.push(() => makeCharacter(
  27186. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27187. {
  27188. front: {
  27189. height: math.unit(14, "feet"),
  27190. weight: math.unit(959, "lb"),
  27191. name: "Front",
  27192. image: {
  27193. source: "./media/characters/arsenal/front.svg",
  27194. extra: 2357 / 2157,
  27195. bottom: 93 / 2458
  27196. }
  27197. },
  27198. },
  27199. [
  27200. {
  27201. name: "Normal",
  27202. height: math.unit(14, "feet"),
  27203. default: true
  27204. },
  27205. ]
  27206. ))
  27207. characterMakers.push(() => makeCharacter(
  27208. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27209. {
  27210. front: {
  27211. height: math.unit(6, "feet"),
  27212. weight: math.unit(150, "lb"),
  27213. name: "Front",
  27214. image: {
  27215. source: "./media/characters/adira/front.svg",
  27216. extra: 1078 / 1029,
  27217. bottom: 87 / 1166
  27218. }
  27219. },
  27220. },
  27221. [
  27222. {
  27223. name: "Micro",
  27224. height: math.unit(4, "inches"),
  27225. default: true
  27226. },
  27227. {
  27228. name: "Macro",
  27229. height: math.unit(50, "feet")
  27230. },
  27231. ]
  27232. ))
  27233. characterMakers.push(() => makeCharacter(
  27234. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27235. {
  27236. front: {
  27237. height: math.unit(16, "feet"),
  27238. weight: math.unit(1000, "lb"),
  27239. name: "Front",
  27240. image: {
  27241. source: "./media/characters/grim/front.svg",
  27242. extra: 622 / 614,
  27243. bottom: 18.1 / 642
  27244. }
  27245. },
  27246. back: {
  27247. height: math.unit(16, "feet"),
  27248. weight: math.unit(1000, "lb"),
  27249. name: "Back",
  27250. image: {
  27251. source: "./media/characters/grim/back.svg",
  27252. extra: 610.6 / 602,
  27253. bottom: 40.8 / 652
  27254. }
  27255. },
  27256. hunched: {
  27257. height: math.unit(9.75, "feet"),
  27258. weight: math.unit(1000, "lb"),
  27259. name: "Hunched",
  27260. image: {
  27261. source: "./media/characters/grim/hunched.svg",
  27262. extra: 304 / 297,
  27263. bottom: 35.4 / 394
  27264. }
  27265. },
  27266. },
  27267. [
  27268. {
  27269. name: "Normal",
  27270. height: math.unit(16, "feet"),
  27271. default: true
  27272. },
  27273. ]
  27274. ))
  27275. characterMakers.push(() => makeCharacter(
  27276. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27277. {
  27278. front: {
  27279. height: math.unit(2.3, "meters"),
  27280. weight: math.unit(300, "lb"),
  27281. name: "Front",
  27282. image: {
  27283. source: "./media/characters/sinja/front-sfw.svg",
  27284. extra: 1393 / 1294,
  27285. bottom: 70 / 1463
  27286. }
  27287. },
  27288. frontNsfw: {
  27289. height: math.unit(2.3, "meters"),
  27290. weight: math.unit(300, "lb"),
  27291. name: "Front (NSFW)",
  27292. image: {
  27293. source: "./media/characters/sinja/front-nsfw.svg",
  27294. extra: 1393 / 1294,
  27295. bottom: 70 / 1463
  27296. }
  27297. },
  27298. back: {
  27299. height: math.unit(2.3, "meters"),
  27300. weight: math.unit(300, "lb"),
  27301. name: "Back",
  27302. image: {
  27303. source: "./media/characters/sinja/back.svg",
  27304. extra: 1393 / 1294,
  27305. bottom: 70 / 1463
  27306. }
  27307. },
  27308. head: {
  27309. height: math.unit(1.771, "feet"),
  27310. name: "Head",
  27311. image: {
  27312. source: "./media/characters/sinja/head.svg"
  27313. }
  27314. },
  27315. slit: {
  27316. height: math.unit(0.8, "feet"),
  27317. name: "Slit",
  27318. image: {
  27319. source: "./media/characters/sinja/slit.svg"
  27320. }
  27321. },
  27322. },
  27323. [
  27324. {
  27325. name: "Normal",
  27326. height: math.unit(2.3, "meters")
  27327. },
  27328. {
  27329. name: "Macro",
  27330. height: math.unit(91, "meters"),
  27331. default: true
  27332. },
  27333. {
  27334. name: "Megamacro",
  27335. height: math.unit(91440, "meters")
  27336. },
  27337. {
  27338. name: "Gigamacro",
  27339. height: math.unit(60960000, "meters")
  27340. },
  27341. {
  27342. name: "Teramacro",
  27343. height: math.unit(9144000000, "meters")
  27344. },
  27345. ]
  27346. ))
  27347. characterMakers.push(() => makeCharacter(
  27348. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27349. {
  27350. front: {
  27351. height: math.unit(1.7, "meters"),
  27352. weight: math.unit(130, "lb"),
  27353. name: "Front",
  27354. image: {
  27355. source: "./media/characters/kyu/front.svg",
  27356. extra: 415 / 395,
  27357. bottom: 5 / 420
  27358. }
  27359. },
  27360. head: {
  27361. height: math.unit(1.75, "feet"),
  27362. name: "Head",
  27363. image: {
  27364. source: "./media/characters/kyu/head.svg"
  27365. }
  27366. },
  27367. foot: {
  27368. height: math.unit(0.81, "feet"),
  27369. name: "Foot",
  27370. image: {
  27371. source: "./media/characters/kyu/foot.svg"
  27372. }
  27373. },
  27374. },
  27375. [
  27376. {
  27377. name: "Normal",
  27378. height: math.unit(1.7, "meters")
  27379. },
  27380. {
  27381. name: "Macro",
  27382. height: math.unit(131, "feet"),
  27383. default: true
  27384. },
  27385. {
  27386. name: "Megamacro",
  27387. height: math.unit(91440, "meters")
  27388. },
  27389. {
  27390. name: "Gigamacro",
  27391. height: math.unit(60960000, "meters")
  27392. },
  27393. {
  27394. name: "Teramacro",
  27395. height: math.unit(9144000000, "meters")
  27396. },
  27397. ]
  27398. ))
  27399. characterMakers.push(() => makeCharacter(
  27400. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27401. {
  27402. front: {
  27403. height: math.unit(7 + 1 / 12, "feet"),
  27404. weight: math.unit(250, "lb"),
  27405. name: "Front",
  27406. image: {
  27407. source: "./media/characters/joey/front.svg",
  27408. extra: 1791 / 1537,
  27409. bottom: 28 / 1816
  27410. }
  27411. },
  27412. },
  27413. [
  27414. {
  27415. name: "Micro",
  27416. height: math.unit(3, "inches")
  27417. },
  27418. {
  27419. name: "Normal",
  27420. height: math.unit(7 + 1 / 12, "feet"),
  27421. default: true
  27422. },
  27423. ]
  27424. ))
  27425. characterMakers.push(() => makeCharacter(
  27426. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27427. {
  27428. front: {
  27429. height: math.unit(165, "cm"),
  27430. weight: math.unit(140, "lb"),
  27431. name: "Front",
  27432. image: {
  27433. source: "./media/characters/sam-evans/front.svg",
  27434. extra: 3417 / 3230,
  27435. bottom: 41.3 / 3417
  27436. }
  27437. },
  27438. frontSixTails: {
  27439. height: math.unit(165, "cm"),
  27440. weight: math.unit(140, "lb"),
  27441. name: "Front-six-tails",
  27442. image: {
  27443. source: "./media/characters/sam-evans/front-six-tails.svg",
  27444. extra: 3417 / 3230,
  27445. bottom: 41.3 / 3417
  27446. }
  27447. },
  27448. back: {
  27449. height: math.unit(165, "cm"),
  27450. weight: math.unit(140, "lb"),
  27451. name: "Back",
  27452. image: {
  27453. source: "./media/characters/sam-evans/back.svg",
  27454. extra: 3227 / 3032,
  27455. bottom: 6.8 / 3234
  27456. }
  27457. },
  27458. face: {
  27459. height: math.unit(0.68, "feet"),
  27460. name: "Face",
  27461. image: {
  27462. source: "./media/characters/sam-evans/face.svg"
  27463. }
  27464. },
  27465. },
  27466. [
  27467. {
  27468. name: "Normal",
  27469. height: math.unit(165, "cm"),
  27470. default: true
  27471. },
  27472. {
  27473. name: "Macro",
  27474. height: math.unit(100, "meters")
  27475. },
  27476. {
  27477. name: "Macro+",
  27478. height: math.unit(800, "meters")
  27479. },
  27480. {
  27481. name: "Macro++",
  27482. height: math.unit(3, "km")
  27483. },
  27484. {
  27485. name: "Macro+++",
  27486. height: math.unit(30, "km")
  27487. },
  27488. ]
  27489. ))
  27490. characterMakers.push(() => makeCharacter(
  27491. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27492. {
  27493. front: {
  27494. height: math.unit(10, "feet"),
  27495. weight: math.unit(750, "lb"),
  27496. name: "Front",
  27497. image: {
  27498. source: "./media/characters/juliet-a/front.svg",
  27499. extra: 1766 / 1720,
  27500. bottom: 43 / 1809
  27501. }
  27502. },
  27503. back: {
  27504. height: math.unit(10, "feet"),
  27505. weight: math.unit(750, "lb"),
  27506. name: "Back",
  27507. image: {
  27508. source: "./media/characters/juliet-a/back.svg",
  27509. extra: 1781 / 1734,
  27510. bottom: 35 / 1810,
  27511. }
  27512. },
  27513. },
  27514. [
  27515. {
  27516. name: "Normal",
  27517. height: math.unit(10, "feet"),
  27518. default: true
  27519. },
  27520. {
  27521. name: "Dragon Form",
  27522. height: math.unit(250, "feet")
  27523. },
  27524. {
  27525. name: "Macro",
  27526. height: math.unit(1000, "feet")
  27527. },
  27528. {
  27529. name: "Megamacro",
  27530. height: math.unit(10000, "feet")
  27531. }
  27532. ]
  27533. ))
  27534. characterMakers.push(() => makeCharacter(
  27535. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27536. {
  27537. regular: {
  27538. height: math.unit(7 + 3 / 12, "feet"),
  27539. weight: math.unit(260, "lb"),
  27540. name: "Regular",
  27541. image: {
  27542. source: "./media/characters/wild/regular.svg",
  27543. extra: 97.45 / 92,
  27544. bottom: 6.8 / 104.3
  27545. }
  27546. },
  27547. biggums: {
  27548. height: math.unit(8 + 6 / 12, "feet"),
  27549. weight: math.unit(425, "lb"),
  27550. name: "Biggums",
  27551. image: {
  27552. source: "./media/characters/wild/biggums.svg",
  27553. extra: 97.45 / 92,
  27554. bottom: 7.5 / 132.34
  27555. }
  27556. },
  27557. mawRegular: {
  27558. height: math.unit(1.24, "feet"),
  27559. name: "Maw (Regular)",
  27560. image: {
  27561. source: "./media/characters/wild/maw.svg"
  27562. }
  27563. },
  27564. mawBiggums: {
  27565. height: math.unit(1.47, "feet"),
  27566. name: "Maw (Biggums)",
  27567. image: {
  27568. source: "./media/characters/wild/maw.svg"
  27569. }
  27570. },
  27571. },
  27572. [
  27573. {
  27574. name: "Normal",
  27575. height: math.unit(7 + 3 / 12, "feet"),
  27576. default: true
  27577. },
  27578. ]
  27579. ))
  27580. characterMakers.push(() => makeCharacter(
  27581. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27582. {
  27583. front: {
  27584. height: math.unit(2.5, "meters"),
  27585. weight: math.unit(200, "kg"),
  27586. name: "Front",
  27587. image: {
  27588. source: "./media/characters/vidar/front.svg",
  27589. extra: 2994 / 2795,
  27590. bottom: 56 / 3061
  27591. }
  27592. },
  27593. back: {
  27594. height: math.unit(2.5, "meters"),
  27595. weight: math.unit(200, "kg"),
  27596. name: "Back",
  27597. image: {
  27598. source: "./media/characters/vidar/back.svg",
  27599. extra: 3131 / 2928,
  27600. bottom: 13.5 / 3141.5
  27601. }
  27602. },
  27603. feral: {
  27604. height: math.unit(2.5, "meters"),
  27605. weight: math.unit(2000, "kg"),
  27606. name: "Feral",
  27607. image: {
  27608. source: "./media/characters/vidar/feral.svg",
  27609. extra: 2790 / 1765,
  27610. bottom: 6 / 2796
  27611. }
  27612. },
  27613. },
  27614. [
  27615. {
  27616. name: "Normal",
  27617. height: math.unit(2.5, "meters"),
  27618. default: true
  27619. },
  27620. {
  27621. name: "Macro",
  27622. height: math.unit(100, "meters")
  27623. },
  27624. ]
  27625. ))
  27626. characterMakers.push(() => makeCharacter(
  27627. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27628. {
  27629. front: {
  27630. height: math.unit(5 + 9 / 12, "feet"),
  27631. weight: math.unit(120, "lb"),
  27632. name: "Front",
  27633. image: {
  27634. source: "./media/characters/ash/front.svg",
  27635. extra: 2189 / 1961,
  27636. bottom: 5.2 / 2194
  27637. }
  27638. },
  27639. },
  27640. [
  27641. {
  27642. name: "Normal",
  27643. height: math.unit(5 + 9 / 12, "feet"),
  27644. default: true
  27645. },
  27646. ]
  27647. ))
  27648. characterMakers.push(() => makeCharacter(
  27649. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27650. {
  27651. front: {
  27652. height: math.unit(9, "feet"),
  27653. weight: math.unit(10000, "lb"),
  27654. name: "Front",
  27655. image: {
  27656. source: "./media/characters/gygabite/front.svg",
  27657. bottom: 31.7 / 537.8,
  27658. extra: 505 / 370
  27659. }
  27660. },
  27661. },
  27662. [
  27663. {
  27664. name: "Normal",
  27665. height: math.unit(9, "feet"),
  27666. default: true
  27667. },
  27668. ]
  27669. ))
  27670. characterMakers.push(() => makeCharacter(
  27671. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27672. {
  27673. front: {
  27674. height: math.unit(12, "feet"),
  27675. weight: math.unit(35000, "lb"),
  27676. name: "Front",
  27677. image: {
  27678. source: "./media/characters/p0tat0/front.svg",
  27679. extra: 1065 / 921,
  27680. bottom: 55.7 / 1121.25
  27681. }
  27682. },
  27683. },
  27684. [
  27685. {
  27686. name: "Normal",
  27687. height: math.unit(12, "feet"),
  27688. default: true
  27689. },
  27690. ]
  27691. ))
  27692. characterMakers.push(() => makeCharacter(
  27693. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27694. {
  27695. side: {
  27696. height: math.unit(6.5, "feet"),
  27697. weight: math.unit(800, "lb"),
  27698. name: "Side",
  27699. image: {
  27700. source: "./media/characters/dusk/side.svg",
  27701. extra: 615 / 373,
  27702. bottom: 53 / 664
  27703. }
  27704. },
  27705. sitting: {
  27706. height: math.unit(7, "feet"),
  27707. weight: math.unit(800, "lb"),
  27708. name: "Sitting",
  27709. image: {
  27710. source: "./media/characters/dusk/sitting.svg",
  27711. extra: 753 / 425,
  27712. bottom: 33 / 774
  27713. }
  27714. },
  27715. head: {
  27716. height: math.unit(6.1, "feet"),
  27717. name: "Head",
  27718. image: {
  27719. source: "./media/characters/dusk/head.svg"
  27720. }
  27721. },
  27722. },
  27723. [
  27724. {
  27725. name: "Normal",
  27726. height: math.unit(7, "feet"),
  27727. default: true
  27728. },
  27729. ]
  27730. ))
  27731. characterMakers.push(() => makeCharacter(
  27732. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27733. {
  27734. front: {
  27735. height: math.unit(15, "feet"),
  27736. weight: math.unit(7000, "lb"),
  27737. name: "Front",
  27738. image: {
  27739. source: "./media/characters/jay-direwolf/front.svg",
  27740. extra: 1810 / 1732,
  27741. bottom: 66 / 1892
  27742. }
  27743. },
  27744. },
  27745. [
  27746. {
  27747. name: "Normal",
  27748. height: math.unit(15, "feet"),
  27749. default: true
  27750. },
  27751. ]
  27752. ))
  27753. characterMakers.push(() => makeCharacter(
  27754. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27755. {
  27756. front: {
  27757. height: math.unit(4 + 9 / 12, "feet"),
  27758. weight: math.unit(130, "lb"),
  27759. name: "Front",
  27760. image: {
  27761. source: "./media/characters/anchovie/front.svg",
  27762. extra: 382 / 350,
  27763. bottom: 25 / 409
  27764. }
  27765. },
  27766. back: {
  27767. height: math.unit(4 + 9 / 12, "feet"),
  27768. weight: math.unit(130, "lb"),
  27769. name: "Back",
  27770. image: {
  27771. source: "./media/characters/anchovie/back.svg",
  27772. extra: 385 / 352,
  27773. bottom: 16.6 / 402
  27774. }
  27775. },
  27776. frontDressed: {
  27777. height: math.unit(4 + 9 / 12, "feet"),
  27778. weight: math.unit(130, "lb"),
  27779. name: "Front (Dressed)",
  27780. image: {
  27781. source: "./media/characters/anchovie/front-dressed.svg",
  27782. extra: 382 / 350,
  27783. bottom: 25 / 409
  27784. }
  27785. },
  27786. backDressed: {
  27787. height: math.unit(4 + 9 / 12, "feet"),
  27788. weight: math.unit(130, "lb"),
  27789. name: "Back (Dressed)",
  27790. image: {
  27791. source: "./media/characters/anchovie/back-dressed.svg",
  27792. extra: 385 / 352,
  27793. bottom: 16.6 / 402
  27794. }
  27795. },
  27796. },
  27797. [
  27798. {
  27799. name: "Micro",
  27800. height: math.unit(6.4, "inches")
  27801. },
  27802. {
  27803. name: "Normal",
  27804. height: math.unit(4 + 9 / 12, "feet"),
  27805. default: true
  27806. },
  27807. ]
  27808. ))
  27809. characterMakers.push(() => makeCharacter(
  27810. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27811. {
  27812. front: {
  27813. height: math.unit(2, "meters"),
  27814. weight: math.unit(180, "lb"),
  27815. name: "Front",
  27816. image: {
  27817. source: "./media/characters/acidrenamon/front.svg",
  27818. extra: 987 / 890,
  27819. bottom: 22.8 / 1009
  27820. }
  27821. },
  27822. back: {
  27823. height: math.unit(2, "meters"),
  27824. weight: math.unit(180, "lb"),
  27825. name: "Back",
  27826. image: {
  27827. source: "./media/characters/acidrenamon/back.svg",
  27828. extra: 983 / 891,
  27829. bottom: 8.4 / 992
  27830. }
  27831. },
  27832. head: {
  27833. height: math.unit(1.92, "feet"),
  27834. name: "Head",
  27835. image: {
  27836. source: "./media/characters/acidrenamon/head.svg"
  27837. }
  27838. },
  27839. rump: {
  27840. height: math.unit(1.72, "feet"),
  27841. name: "Rump",
  27842. image: {
  27843. source: "./media/characters/acidrenamon/rump.svg"
  27844. }
  27845. },
  27846. tail: {
  27847. height: math.unit(4.2, "feet"),
  27848. name: "Tail",
  27849. image: {
  27850. source: "./media/characters/acidrenamon/tail.svg"
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Normal",
  27857. height: math.unit(2, "meters"),
  27858. default: true
  27859. },
  27860. {
  27861. name: "Minimacro",
  27862. height: math.unit(7, "meters")
  27863. },
  27864. {
  27865. name: "Macro",
  27866. height: math.unit(200, "meters")
  27867. },
  27868. {
  27869. name: "Gigamacro",
  27870. height: math.unit(0.2, "earths")
  27871. },
  27872. ]
  27873. ))
  27874. characterMakers.push(() => makeCharacter(
  27875. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27876. {
  27877. front: {
  27878. height: math.unit(152, "feet"),
  27879. name: "Front",
  27880. image: {
  27881. source: "./media/characters/kenzie-lee/front.svg",
  27882. extra: 1869/1774,
  27883. bottom: 128/1997
  27884. }
  27885. },
  27886. side: {
  27887. height: math.unit(86, "feet"),
  27888. name: "Side",
  27889. image: {
  27890. source: "./media/characters/kenzie-lee/side.svg",
  27891. extra: 930/815,
  27892. bottom: 177/1107
  27893. }
  27894. },
  27895. paw: {
  27896. height: math.unit(15, "feet"),
  27897. name: "Paw",
  27898. image: {
  27899. source: "./media/characters/kenzie-lee/paw.svg"
  27900. }
  27901. },
  27902. },
  27903. [
  27904. {
  27905. name: "Micro",
  27906. height: math.unit(1.5, "inches")
  27907. },
  27908. {
  27909. name: "Normal",
  27910. height: math.unit(152, "feet"),
  27911. default: true
  27912. },
  27913. {
  27914. name: "Megamacro",
  27915. height: math.unit(7, "miles")
  27916. },
  27917. {
  27918. name: "Gigamacro",
  27919. height: math.unit(8000, "miles")
  27920. },
  27921. ]
  27922. ))
  27923. characterMakers.push(() => makeCharacter(
  27924. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27925. {
  27926. side: {
  27927. height: math.unit(6, "feet"),
  27928. weight: math.unit(150, "lb"),
  27929. name: "Side",
  27930. image: {
  27931. source: "./media/characters/withers/side.svg",
  27932. extra: 1830 / 1728,
  27933. bottom: 96 / 1927
  27934. }
  27935. },
  27936. front: {
  27937. height: math.unit(6, "feet"),
  27938. weight: math.unit(150, "lb"),
  27939. name: "Front",
  27940. image: {
  27941. source: "./media/characters/withers/front.svg",
  27942. extra: 1514 / 1438,
  27943. bottom: 118 / 1632
  27944. }
  27945. },
  27946. },
  27947. [
  27948. {
  27949. name: "Macro",
  27950. height: math.unit(168, "feet"),
  27951. default: true
  27952. },
  27953. {
  27954. name: "Megamacro",
  27955. height: math.unit(15, "miles")
  27956. }
  27957. ]
  27958. ))
  27959. characterMakers.push(() => makeCharacter(
  27960. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27961. {
  27962. front: {
  27963. height: math.unit(6 + 7 / 12, "feet"),
  27964. weight: math.unit(250, "lb"),
  27965. name: "Front",
  27966. image: {
  27967. source: "./media/characters/nemoskii/front.svg",
  27968. extra: 2270 / 1734,
  27969. bottom: 86 / 2354
  27970. }
  27971. },
  27972. back: {
  27973. height: math.unit(6 + 7 / 12, "feet"),
  27974. weight: math.unit(250, "lb"),
  27975. name: "Back",
  27976. image: {
  27977. source: "./media/characters/nemoskii/back.svg",
  27978. extra: 1845 / 1788,
  27979. bottom: 10.5 / 1852
  27980. }
  27981. },
  27982. head: {
  27983. height: math.unit(1.31, "feet"),
  27984. name: "Head",
  27985. image: {
  27986. source: "./media/characters/nemoskii/head.svg"
  27987. }
  27988. },
  27989. },
  27990. [
  27991. {
  27992. name: "Micro",
  27993. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27994. },
  27995. {
  27996. name: "Normal",
  27997. height: math.unit(6 + 7 / 12, "feet"),
  27998. default: true
  27999. },
  28000. {
  28001. name: "Macro",
  28002. height: math.unit((6 + 7 / 12) * 150, "feet")
  28003. },
  28004. {
  28005. name: "Macro+",
  28006. height: math.unit((6 + 7 / 12) * 500, "feet")
  28007. },
  28008. {
  28009. name: "Megamacro",
  28010. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28011. },
  28012. ]
  28013. ))
  28014. characterMakers.push(() => makeCharacter(
  28015. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28016. {
  28017. front: {
  28018. height: math.unit(1, "mile"),
  28019. weight: math.unit(265261.9, "lb"),
  28020. name: "Front",
  28021. image: {
  28022. source: "./media/characters/shui/front.svg",
  28023. extra: 1633 / 1564,
  28024. bottom: 91.5 / 1726
  28025. }
  28026. },
  28027. },
  28028. [
  28029. {
  28030. name: "Macro",
  28031. height: math.unit(1, "mile"),
  28032. default: true
  28033. },
  28034. ]
  28035. ))
  28036. characterMakers.push(() => makeCharacter(
  28037. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28038. {
  28039. front: {
  28040. height: math.unit(12 + 6 / 12, "feet"),
  28041. weight: math.unit(1342, "lb"),
  28042. name: "Front",
  28043. image: {
  28044. source: "./media/characters/arokh-takakura/front.svg",
  28045. extra: 1089 / 1043,
  28046. bottom: 77.4 / 1176.7
  28047. }
  28048. },
  28049. back: {
  28050. height: math.unit(12 + 6 / 12, "feet"),
  28051. weight: math.unit(1342, "lb"),
  28052. name: "Back",
  28053. image: {
  28054. source: "./media/characters/arokh-takakura/back.svg",
  28055. extra: 1046 / 1019,
  28056. bottom: 102 / 1150
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Big",
  28063. height: math.unit(12 + 6 / 12, "feet"),
  28064. default: true
  28065. },
  28066. ]
  28067. ))
  28068. characterMakers.push(() => makeCharacter(
  28069. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28070. {
  28071. front: {
  28072. height: math.unit(5 + 6 / 12, "feet"),
  28073. weight: math.unit(150, "lb"),
  28074. name: "Front",
  28075. image: {
  28076. source: "./media/characters/theo/front.svg",
  28077. extra: 1184 / 1131,
  28078. bottom: 7.4 / 1191
  28079. }
  28080. },
  28081. },
  28082. [
  28083. {
  28084. name: "Micro",
  28085. height: math.unit(5, "inches")
  28086. },
  28087. {
  28088. name: "Normal",
  28089. height: math.unit(5 + 6 / 12, "feet"),
  28090. default: true
  28091. },
  28092. ]
  28093. ))
  28094. characterMakers.push(() => makeCharacter(
  28095. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28096. {
  28097. front: {
  28098. height: math.unit(5 + 9 / 12, "feet"),
  28099. weight: math.unit(130, "lb"),
  28100. name: "Front",
  28101. image: {
  28102. source: "./media/characters/cecelia-swift/front.svg",
  28103. extra: 502 / 484,
  28104. bottom: 23 / 523
  28105. }
  28106. },
  28107. back: {
  28108. height: math.unit(5 + 9 / 12, "feet"),
  28109. weight: math.unit(130, "lb"),
  28110. name: "Back",
  28111. image: {
  28112. source: "./media/characters/cecelia-swift/back.svg",
  28113. extra: 499 / 485,
  28114. bottom: 12 / 511
  28115. }
  28116. },
  28117. head: {
  28118. height: math.unit(0.90, "feet"),
  28119. name: "Head",
  28120. image: {
  28121. source: "./media/characters/cecelia-swift/head.svg"
  28122. }
  28123. },
  28124. rump: {
  28125. height: math.unit(1.75, "feet"),
  28126. name: "Rump",
  28127. image: {
  28128. source: "./media/characters/cecelia-swift/rump.svg"
  28129. }
  28130. },
  28131. },
  28132. [
  28133. {
  28134. name: "Normal",
  28135. height: math.unit(5 + 9 / 12, "feet"),
  28136. default: true
  28137. },
  28138. {
  28139. name: "Big",
  28140. height: math.unit(50, "feet")
  28141. },
  28142. {
  28143. name: "Macro",
  28144. height: math.unit(100, "feet")
  28145. },
  28146. {
  28147. name: "Macro+",
  28148. height: math.unit(500, "feet")
  28149. },
  28150. {
  28151. name: "Macro++",
  28152. height: math.unit(1000, "feet")
  28153. },
  28154. ]
  28155. ))
  28156. characterMakers.push(() => makeCharacter(
  28157. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28158. {
  28159. front: {
  28160. height: math.unit(6, "feet"),
  28161. weight: math.unit(150, "lb"),
  28162. name: "Front",
  28163. image: {
  28164. source: "./media/characters/kaunan/front.svg",
  28165. extra: 2890 / 2523,
  28166. bottom: 49 / 2939
  28167. }
  28168. },
  28169. },
  28170. [
  28171. {
  28172. name: "Macro",
  28173. height: math.unit(150, "feet"),
  28174. default: true
  28175. },
  28176. ]
  28177. ))
  28178. characterMakers.push(() => makeCharacter(
  28179. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28180. {
  28181. front: {
  28182. height: math.unit(175, "cm"),
  28183. weight: math.unit(60, "kg"),
  28184. name: "Front",
  28185. image: {
  28186. source: "./media/characters/fei/front.svg",
  28187. extra: 1873/1723,
  28188. bottom: 53/1926
  28189. }
  28190. },
  28191. },
  28192. [
  28193. {
  28194. name: "Mortal",
  28195. height: math.unit(175, "cm")
  28196. },
  28197. {
  28198. name: "Normal",
  28199. height: math.unit(3500, "m"),
  28200. default: true
  28201. },
  28202. {
  28203. name: "Stroll",
  28204. height: math.unit(17.5, "km")
  28205. },
  28206. {
  28207. name: "Showoff",
  28208. height: math.unit(175, "km")
  28209. },
  28210. ]
  28211. ))
  28212. characterMakers.push(() => makeCharacter(
  28213. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28214. {
  28215. front: {
  28216. height: math.unit(7, "feet"),
  28217. weight: math.unit(1000, "kg"),
  28218. name: "Front",
  28219. image: {
  28220. source: "./media/characters/edrax/front.svg",
  28221. extra: 2838 / 2550,
  28222. bottom: 130 / 2968
  28223. }
  28224. },
  28225. },
  28226. [
  28227. {
  28228. name: "Small",
  28229. height: math.unit(7, "feet")
  28230. },
  28231. {
  28232. name: "Normal",
  28233. height: math.unit(1500, "meters")
  28234. },
  28235. {
  28236. name: "Mega",
  28237. height: math.unit(12000000, "km"),
  28238. default: true
  28239. },
  28240. {
  28241. name: "Megamacro",
  28242. height: math.unit(10600000, "lightyears")
  28243. },
  28244. {
  28245. name: "Hypermacro",
  28246. height: math.unit(256, "yottameters")
  28247. },
  28248. ]
  28249. ))
  28250. characterMakers.push(() => makeCharacter(
  28251. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28252. {
  28253. front: {
  28254. height: math.unit(10, "feet"),
  28255. weight: math.unit(750, "lb"),
  28256. name: "Front",
  28257. image: {
  28258. source: "./media/characters/clove/front.svg",
  28259. extra: 1918/1751,
  28260. bottom: 52/1970
  28261. }
  28262. },
  28263. back: {
  28264. height: math.unit(10, "feet"),
  28265. weight: math.unit(750, "lb"),
  28266. name: "Back",
  28267. image: {
  28268. source: "./media/characters/clove/back.svg",
  28269. extra: 1912/1747,
  28270. bottom: 50/1962
  28271. }
  28272. },
  28273. },
  28274. [
  28275. {
  28276. name: "Normal",
  28277. height: math.unit(10, "feet"),
  28278. default: true
  28279. },
  28280. ]
  28281. ))
  28282. characterMakers.push(() => makeCharacter(
  28283. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28284. {
  28285. front: {
  28286. height: math.unit(4, "feet"),
  28287. weight: math.unit(50, "lb"),
  28288. name: "Front",
  28289. image: {
  28290. source: "./media/characters/alex-rabbit/front.svg",
  28291. extra: 507 / 458,
  28292. bottom: 18.5 / 527
  28293. }
  28294. },
  28295. back: {
  28296. height: math.unit(4, "feet"),
  28297. weight: math.unit(50, "lb"),
  28298. name: "Back",
  28299. image: {
  28300. source: "./media/characters/alex-rabbit/back.svg",
  28301. extra: 502 / 460,
  28302. bottom: 18.9 / 521
  28303. }
  28304. },
  28305. },
  28306. [
  28307. {
  28308. name: "Normal",
  28309. height: math.unit(4, "feet"),
  28310. default: true
  28311. },
  28312. ]
  28313. ))
  28314. characterMakers.push(() => makeCharacter(
  28315. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28316. {
  28317. front: {
  28318. height: math.unit(1 + 3 / 12, "feet"),
  28319. weight: math.unit(80, "lb"),
  28320. name: "Front",
  28321. image: {
  28322. source: "./media/characters/zander-rose/front.svg",
  28323. extra: 916 / 797,
  28324. bottom: 17 / 933
  28325. }
  28326. },
  28327. back: {
  28328. height: math.unit(1 + 3 / 12, "feet"),
  28329. weight: math.unit(80, "lb"),
  28330. name: "Back",
  28331. image: {
  28332. source: "./media/characters/zander-rose/back.svg",
  28333. extra: 903 / 779,
  28334. bottom: 31 / 934
  28335. }
  28336. },
  28337. },
  28338. [
  28339. {
  28340. name: "Normal",
  28341. height: math.unit(1 + 3 / 12, "feet"),
  28342. default: true
  28343. },
  28344. ]
  28345. ))
  28346. characterMakers.push(() => makeCharacter(
  28347. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28348. {
  28349. anthro: {
  28350. height: math.unit(6, "feet"),
  28351. weight: math.unit(150, "lb"),
  28352. name: "Anthro",
  28353. image: {
  28354. source: "./media/characters/razz/anthro.svg",
  28355. extra: 1437 / 1343,
  28356. bottom: 48 / 1485
  28357. }
  28358. },
  28359. feral: {
  28360. height: math.unit(6, "feet"),
  28361. weight: math.unit(150, "lb"),
  28362. name: "Feral",
  28363. image: {
  28364. source: "./media/characters/razz/feral.svg",
  28365. extra: 2569 / 1385,
  28366. bottom: 95 / 2664
  28367. }
  28368. },
  28369. },
  28370. [
  28371. {
  28372. name: "Normal",
  28373. height: math.unit(6, "feet"),
  28374. default: true
  28375. },
  28376. ]
  28377. ))
  28378. characterMakers.push(() => makeCharacter(
  28379. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28380. {
  28381. front: {
  28382. height: math.unit(9 + 4 / 12, "feet"),
  28383. weight: math.unit(500, "lb"),
  28384. name: "Front",
  28385. image: {
  28386. source: "./media/characters/morrigan/front.svg",
  28387. extra: 2707 / 2579,
  28388. bottom: 156 / 2863
  28389. }
  28390. },
  28391. },
  28392. [
  28393. {
  28394. name: "Normal",
  28395. height: math.unit(9 + 4 / 12, "feet"),
  28396. default: true
  28397. },
  28398. ]
  28399. ))
  28400. characterMakers.push(() => makeCharacter(
  28401. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28402. {
  28403. front: {
  28404. height: math.unit(5, "stories"),
  28405. weight: math.unit(4000, "lb"),
  28406. name: "Front",
  28407. image: {
  28408. source: "./media/characters/jenene/front.svg",
  28409. extra: 1780 / 1710,
  28410. bottom: 57 / 1837
  28411. }
  28412. },
  28413. },
  28414. [
  28415. {
  28416. name: "Normal",
  28417. height: math.unit(5, "stories"),
  28418. default: true
  28419. },
  28420. ]
  28421. ))
  28422. characterMakers.push(() => makeCharacter(
  28423. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28424. {
  28425. taurSfw: {
  28426. height: math.unit(10, "meters"),
  28427. weight: math.unit(17500, "kg"),
  28428. name: "Taur",
  28429. image: {
  28430. source: "./media/characters/faey/taur-sfw.svg",
  28431. extra: 1200 / 968,
  28432. bottom: 41 / 1241
  28433. }
  28434. },
  28435. chestmaw: {
  28436. height: math.unit(2.01, "meters"),
  28437. name: "Chestmaw",
  28438. image: {
  28439. source: "./media/characters/faey/chestmaw.svg"
  28440. }
  28441. },
  28442. foot: {
  28443. height: math.unit(2.43, "meters"),
  28444. name: "Foot",
  28445. image: {
  28446. source: "./media/characters/faey/foot.svg"
  28447. }
  28448. },
  28449. jaws: {
  28450. height: math.unit(1.66, "meters"),
  28451. name: "Jaws",
  28452. image: {
  28453. source: "./media/characters/faey/jaws.svg"
  28454. }
  28455. },
  28456. tongues: {
  28457. height: math.unit(2.01, "meters"),
  28458. name: "Tongues",
  28459. image: {
  28460. source: "./media/characters/faey/tongues.svg"
  28461. }
  28462. },
  28463. },
  28464. [
  28465. {
  28466. name: "Small",
  28467. height: math.unit(10, "meters"),
  28468. default: true
  28469. },
  28470. {
  28471. name: "Big",
  28472. height: math.unit(500000, "km")
  28473. },
  28474. ]
  28475. ))
  28476. characterMakers.push(() => makeCharacter(
  28477. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28478. {
  28479. front: {
  28480. height: math.unit(7, "feet"),
  28481. weight: math.unit(275, "lb"),
  28482. name: "Front",
  28483. image: {
  28484. source: "./media/characters/roku/front.svg",
  28485. extra: 903 / 878,
  28486. bottom: 37 / 940
  28487. }
  28488. },
  28489. },
  28490. [
  28491. {
  28492. name: "Normal",
  28493. height: math.unit(7, "feet"),
  28494. default: true
  28495. },
  28496. {
  28497. name: "Macro",
  28498. height: math.unit(500, "feet")
  28499. },
  28500. {
  28501. name: "Megamacro",
  28502. height: math.unit(200, "miles")
  28503. },
  28504. ]
  28505. ))
  28506. characterMakers.push(() => makeCharacter(
  28507. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28508. {
  28509. front: {
  28510. height: math.unit(6 + 2 / 12, "feet"),
  28511. weight: math.unit(150, "lb"),
  28512. name: "Front",
  28513. image: {
  28514. source: "./media/characters/lira/front.svg",
  28515. extra: 1727 / 1605,
  28516. bottom: 26 / 1753
  28517. }
  28518. },
  28519. back: {
  28520. height: math.unit(6 + 2 / 12, "feet"),
  28521. weight: math.unit(150, "lb"),
  28522. name: "Back",
  28523. image: {
  28524. source: "./media/characters/lira/back.svg",
  28525. extra: 1713/1621,
  28526. bottom: 20/1733
  28527. }
  28528. },
  28529. hand: {
  28530. height: math.unit(0.75, "feet"),
  28531. name: "Hand",
  28532. image: {
  28533. source: "./media/characters/lira/hand.svg"
  28534. }
  28535. },
  28536. maw: {
  28537. height: math.unit(0.65, "feet"),
  28538. name: "Maw",
  28539. image: {
  28540. source: "./media/characters/lira/maw.svg"
  28541. }
  28542. },
  28543. pawDigi: {
  28544. height: math.unit(1.6, "feet"),
  28545. name: "Paw Digi",
  28546. image: {
  28547. source: "./media/characters/lira/paw-digi.svg"
  28548. }
  28549. },
  28550. pawPlanti: {
  28551. height: math.unit(1.4, "feet"),
  28552. name: "Paw Planti",
  28553. image: {
  28554. source: "./media/characters/lira/paw-planti.svg"
  28555. }
  28556. },
  28557. },
  28558. [
  28559. {
  28560. name: "Normal",
  28561. height: math.unit(6 + 2 / 12, "feet"),
  28562. default: true
  28563. },
  28564. {
  28565. name: "Macro",
  28566. height: math.unit(100, "feet")
  28567. },
  28568. {
  28569. name: "Macro²",
  28570. height: math.unit(1600, "feet")
  28571. },
  28572. {
  28573. name: "Planetary",
  28574. height: math.unit(20, "earths")
  28575. },
  28576. ]
  28577. ))
  28578. characterMakers.push(() => makeCharacter(
  28579. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28580. {
  28581. front: {
  28582. height: math.unit(6, "feet"),
  28583. weight: math.unit(150, "lb"),
  28584. name: "Front",
  28585. image: {
  28586. source: "./media/characters/hadjet/front.svg",
  28587. extra: 1480 / 1346,
  28588. bottom: 26 / 1506
  28589. }
  28590. },
  28591. frontNsfw: {
  28592. height: math.unit(6, "feet"),
  28593. weight: math.unit(150, "lb"),
  28594. name: "Front (NSFW)",
  28595. image: {
  28596. source: "./media/characters/hadjet/front-nsfw.svg",
  28597. extra: 1440 / 1358,
  28598. bottom: 52 / 1492
  28599. }
  28600. },
  28601. },
  28602. [
  28603. {
  28604. name: "Macro",
  28605. height: math.unit(10, "stories"),
  28606. default: true
  28607. },
  28608. {
  28609. name: "Megamacro",
  28610. height: math.unit(1.5, "miles")
  28611. },
  28612. {
  28613. name: "Megamacro+",
  28614. height: math.unit(5, "miles")
  28615. },
  28616. ]
  28617. ))
  28618. characterMakers.push(() => makeCharacter(
  28619. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28620. {
  28621. side: {
  28622. height: math.unit(106, "feet"),
  28623. weight: math.unit(500, "tonnes"),
  28624. name: "Side",
  28625. image: {
  28626. source: "./media/characters/kodran/side.svg",
  28627. extra: 553 / 480,
  28628. bottom: 33 / 586
  28629. }
  28630. },
  28631. front: {
  28632. height: math.unit(132, "feet"),
  28633. weight: math.unit(500, "tonnes"),
  28634. name: "Front",
  28635. image: {
  28636. source: "./media/characters/kodran/front.svg",
  28637. extra: 667 / 643,
  28638. bottom: 42 / 709
  28639. }
  28640. },
  28641. flying: {
  28642. height: math.unit(350, "feet"),
  28643. weight: math.unit(500, "tonnes"),
  28644. name: "Flying",
  28645. image: {
  28646. source: "./media/characters/kodran/flying.svg"
  28647. }
  28648. },
  28649. foot: {
  28650. height: math.unit(33, "feet"),
  28651. name: "Foot",
  28652. image: {
  28653. source: "./media/characters/kodran/foot.svg"
  28654. }
  28655. },
  28656. footFront: {
  28657. height: math.unit(19, "feet"),
  28658. name: "Foot (Front)",
  28659. image: {
  28660. source: "./media/characters/kodran/foot-front.svg",
  28661. extra: 261 / 261,
  28662. bottom: 91 / 352
  28663. }
  28664. },
  28665. headFront: {
  28666. height: math.unit(53, "feet"),
  28667. name: "Head (Front)",
  28668. image: {
  28669. source: "./media/characters/kodran/head-front.svg"
  28670. }
  28671. },
  28672. headSide: {
  28673. height: math.unit(65, "feet"),
  28674. name: "Head (Side)",
  28675. image: {
  28676. source: "./media/characters/kodran/head-side.svg"
  28677. }
  28678. },
  28679. throat: {
  28680. height: math.unit(79, "feet"),
  28681. name: "Throat",
  28682. image: {
  28683. source: "./media/characters/kodran/throat.svg"
  28684. }
  28685. },
  28686. },
  28687. [
  28688. {
  28689. name: "Large",
  28690. height: math.unit(106, "feet"),
  28691. default: true
  28692. },
  28693. ]
  28694. ))
  28695. characterMakers.push(() => makeCharacter(
  28696. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28697. {
  28698. side: {
  28699. height: math.unit(11, "feet"),
  28700. weight: math.unit(150, "lb"),
  28701. name: "Side",
  28702. image: {
  28703. source: "./media/characters/pyxaron/side.svg",
  28704. extra: 305 / 195,
  28705. bottom: 17 / 322
  28706. }
  28707. },
  28708. },
  28709. [
  28710. {
  28711. name: "Normal",
  28712. height: math.unit(11, "feet"),
  28713. default: true
  28714. },
  28715. ]
  28716. ))
  28717. characterMakers.push(() => makeCharacter(
  28718. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28719. {
  28720. front: {
  28721. height: math.unit(6, "feet"),
  28722. weight: math.unit(150, "lb"),
  28723. name: "Front",
  28724. image: {
  28725. source: "./media/characters/meep/front.svg",
  28726. extra: 88 / 80,
  28727. bottom: 6 / 94
  28728. }
  28729. },
  28730. },
  28731. [
  28732. {
  28733. name: "Fun Sized",
  28734. height: math.unit(2, "inches"),
  28735. default: true
  28736. },
  28737. {
  28738. name: "Friend Sized",
  28739. height: math.unit(8, "inches")
  28740. },
  28741. ]
  28742. ))
  28743. characterMakers.push(() => makeCharacter(
  28744. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28745. {
  28746. front: {
  28747. height: math.unit(15, "feet"),
  28748. weight: math.unit(2500, "lb"),
  28749. name: "Front",
  28750. image: {
  28751. source: "./media/characters/holly-rabbit/front.svg",
  28752. extra: 1433 / 1233,
  28753. bottom: 125 / 1558
  28754. }
  28755. },
  28756. dick: {
  28757. height: math.unit(4.6, "feet"),
  28758. name: "Dick",
  28759. image: {
  28760. source: "./media/characters/holly-rabbit/dick.svg"
  28761. }
  28762. },
  28763. },
  28764. [
  28765. {
  28766. name: "Normal",
  28767. height: math.unit(15, "feet"),
  28768. default: true
  28769. },
  28770. {
  28771. name: "Macro",
  28772. height: math.unit(250, "feet")
  28773. },
  28774. {
  28775. name: "Macro+",
  28776. height: math.unit(2500, "feet")
  28777. },
  28778. ]
  28779. ))
  28780. characterMakers.push(() => makeCharacter(
  28781. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28782. {
  28783. front: {
  28784. height: math.unit(3.02, "meters"),
  28785. weight: math.unit(500, "kg"),
  28786. name: "Front",
  28787. image: {
  28788. source: "./media/characters/drena/front.svg",
  28789. extra: 282 / 243,
  28790. bottom: 8 / 290
  28791. }
  28792. },
  28793. side: {
  28794. height: math.unit(3.02, "meters"),
  28795. weight: math.unit(500, "kg"),
  28796. name: "Side",
  28797. image: {
  28798. source: "./media/characters/drena/side.svg",
  28799. extra: 280 / 245,
  28800. bottom: 10 / 290
  28801. }
  28802. },
  28803. back: {
  28804. height: math.unit(3.02, "meters"),
  28805. weight: math.unit(500, "kg"),
  28806. name: "Back",
  28807. image: {
  28808. source: "./media/characters/drena/back.svg",
  28809. extra: 278 / 243,
  28810. bottom: 2 / 280
  28811. }
  28812. },
  28813. foot: {
  28814. height: math.unit(0.75, "meters"),
  28815. name: "Foot",
  28816. image: {
  28817. source: "./media/characters/drena/foot.svg"
  28818. }
  28819. },
  28820. maw: {
  28821. height: math.unit(0.82, "meters"),
  28822. name: "Maw",
  28823. image: {
  28824. source: "./media/characters/drena/maw.svg"
  28825. }
  28826. },
  28827. rump: {
  28828. height: math.unit(0.93, "meters"),
  28829. name: "Rump",
  28830. image: {
  28831. source: "./media/characters/drena/rump.svg"
  28832. }
  28833. },
  28834. },
  28835. [
  28836. {
  28837. name: "Normal",
  28838. height: math.unit(3.02, "meters"),
  28839. default: true
  28840. },
  28841. ]
  28842. ))
  28843. characterMakers.push(() => makeCharacter(
  28844. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28845. {
  28846. front: {
  28847. height: math.unit(6 + 4 / 12, "feet"),
  28848. weight: math.unit(250, "lb"),
  28849. name: "Front",
  28850. image: {
  28851. source: "./media/characters/remmyzilla/front.svg",
  28852. extra: 4033 / 3588,
  28853. bottom: 123 / 4156
  28854. }
  28855. },
  28856. back: {
  28857. height: math.unit(6 + 4 / 12, "feet"),
  28858. weight: math.unit(250, "lb"),
  28859. name: "Back",
  28860. image: {
  28861. source: "./media/characters/remmyzilla/back.svg",
  28862. extra: 2687 / 2555,
  28863. bottom: 48 / 2735
  28864. }
  28865. },
  28866. paw: {
  28867. height: math.unit(1.73, "feet"),
  28868. name: "Paw",
  28869. image: {
  28870. source: "./media/characters/remmyzilla/paw.svg"
  28871. }
  28872. },
  28873. maw: {
  28874. height: math.unit(1.73, "feet"),
  28875. name: "Maw",
  28876. image: {
  28877. source: "./media/characters/remmyzilla/maw.svg"
  28878. }
  28879. },
  28880. },
  28881. [
  28882. {
  28883. name: "Normal",
  28884. height: math.unit(6 + 4 / 12, "feet")
  28885. },
  28886. {
  28887. name: "Minimacro",
  28888. height: math.unit(12 + 8 / 12, "feet")
  28889. },
  28890. {
  28891. name: "Normal",
  28892. height: math.unit(640, "feet"),
  28893. default: true
  28894. },
  28895. {
  28896. name: "Megamacro",
  28897. height: math.unit(6400, "feet")
  28898. },
  28899. {
  28900. name: "Gigamacro",
  28901. height: math.unit(64000, "miles")
  28902. },
  28903. ]
  28904. ))
  28905. characterMakers.push(() => makeCharacter(
  28906. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28907. {
  28908. front: {
  28909. height: math.unit(2.5, "meters"),
  28910. weight: math.unit(300, "lb"),
  28911. name: "Front",
  28912. image: {
  28913. source: "./media/characters/lawrence/front.svg",
  28914. extra: 357 / 335,
  28915. bottom: 30 / 387
  28916. }
  28917. },
  28918. back: {
  28919. height: math.unit(2.5, "meters"),
  28920. weight: math.unit(300, "lb"),
  28921. name: "Back",
  28922. image: {
  28923. source: "./media/characters/lawrence/back.svg",
  28924. extra: 357 / 338,
  28925. bottom: 16 / 373
  28926. }
  28927. },
  28928. head: {
  28929. height: math.unit(0.9, "meter"),
  28930. name: "Head",
  28931. image: {
  28932. source: "./media/characters/lawrence/head.svg"
  28933. }
  28934. },
  28935. maw: {
  28936. height: math.unit(0.7, "meter"),
  28937. name: "Maw",
  28938. image: {
  28939. source: "./media/characters/lawrence/maw.svg"
  28940. }
  28941. },
  28942. footBottom: {
  28943. height: math.unit(0.5, "meter"),
  28944. name: "Foot (Bottom)",
  28945. image: {
  28946. source: "./media/characters/lawrence/foot-bottom.svg"
  28947. }
  28948. },
  28949. footTop: {
  28950. height: math.unit(0.5, "meter"),
  28951. name: "Foot (Top)",
  28952. image: {
  28953. source: "./media/characters/lawrence/foot-top.svg"
  28954. }
  28955. },
  28956. },
  28957. [
  28958. {
  28959. name: "Normal",
  28960. height: math.unit(2.5, "meters"),
  28961. default: true
  28962. },
  28963. {
  28964. name: "Macro",
  28965. height: math.unit(95, "meters")
  28966. },
  28967. {
  28968. name: "Megamacro",
  28969. height: math.unit(150, "km")
  28970. },
  28971. ]
  28972. ))
  28973. characterMakers.push(() => makeCharacter(
  28974. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28975. {
  28976. front: {
  28977. height: math.unit(4.2, "meters"),
  28978. name: "Front",
  28979. image: {
  28980. source: "./media/characters/sydney/front.svg",
  28981. extra: 1323 / 1277,
  28982. bottom: 111 / 1434
  28983. }
  28984. },
  28985. },
  28986. [
  28987. {
  28988. name: "Normal",
  28989. height: math.unit(4.2, "meters"),
  28990. default: true
  28991. },
  28992. ]
  28993. ))
  28994. characterMakers.push(() => makeCharacter(
  28995. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28996. {
  28997. back: {
  28998. height: math.unit(201, "feet"),
  28999. name: "Back",
  29000. image: {
  29001. source: "./media/characters/jessica/back.svg",
  29002. extra: 273 / 259,
  29003. bottom: 7 / 280
  29004. }
  29005. },
  29006. },
  29007. [
  29008. {
  29009. name: "Normal",
  29010. height: math.unit(201, "feet"),
  29011. default: true
  29012. },
  29013. {
  29014. name: "Megamacro",
  29015. height: math.unit(8, "miles")
  29016. },
  29017. ]
  29018. ))
  29019. characterMakers.push(() => makeCharacter(
  29020. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29021. {
  29022. side: {
  29023. height: math.unit(5.6, "m"),
  29024. weight: math.unit(8000, "kg"),
  29025. name: "Side",
  29026. image: {
  29027. source: "./media/characters/victoria/side.svg",
  29028. extra: 1542/1229,
  29029. bottom: 124/1666
  29030. }
  29031. },
  29032. maw: {
  29033. height: math.unit(7.14, "feet"),
  29034. name: "Maw",
  29035. image: {
  29036. source: "./media/characters/victoria/maw.svg"
  29037. }
  29038. },
  29039. },
  29040. [
  29041. {
  29042. name: "Normal",
  29043. height: math.unit(5.6, "m"),
  29044. default: true
  29045. },
  29046. ]
  29047. ))
  29048. characterMakers.push(() => makeCharacter(
  29049. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29050. {
  29051. front: {
  29052. height: math.unit(5 + 6 / 12, "feet"),
  29053. name: "Front",
  29054. image: {
  29055. source: "./media/characters/cat/front.svg",
  29056. extra: 1449/1295,
  29057. bottom: 34/1483
  29058. },
  29059. form: "cat",
  29060. default: true
  29061. },
  29062. back: {
  29063. height: math.unit(5 + 6 / 12, "feet"),
  29064. name: "Back",
  29065. image: {
  29066. source: "./media/characters/cat/back.svg",
  29067. extra: 1466/1301,
  29068. bottom: 19/1485
  29069. },
  29070. form: "cat"
  29071. },
  29072. taur: {
  29073. height: math.unit(7, "feet"),
  29074. name: "Taur",
  29075. image: {
  29076. source: "./media/characters/cat/taur.svg",
  29077. extra: 1389/1233,
  29078. bottom: 83/1472
  29079. },
  29080. form: "taur",
  29081. default: true
  29082. },
  29083. lucarioFront: {
  29084. height: math.unit(4, "feet"),
  29085. name: "Lucario (Front)",
  29086. image: {
  29087. source: "./media/characters/cat/lucario-front.svg",
  29088. extra: 1149/1019,
  29089. bottom: 84/1233
  29090. },
  29091. form: "lucario",
  29092. default: true
  29093. },
  29094. lucarioBack: {
  29095. height: math.unit(4, "feet"),
  29096. name: "Lucario (Back)",
  29097. image: {
  29098. source: "./media/characters/cat/lucario-back.svg",
  29099. extra: 1190/1059,
  29100. bottom: 33/1223
  29101. },
  29102. form: "lucario"
  29103. },
  29104. megaLucario: {
  29105. height: math.unit(4, "feet"),
  29106. name: "Mega Lucario",
  29107. image: {
  29108. source: "./media/characters/cat/mega-lucario.svg",
  29109. extra: 1515 / 1319,
  29110. bottom: 63 / 1578
  29111. },
  29112. form: "lucario"
  29113. },
  29114. nickit: {
  29115. height: math.unit(2, "feet"),
  29116. name: "Nickit",
  29117. image: {
  29118. source: "./media/characters/cat/nickit.svg",
  29119. extra: 1980 / 1585,
  29120. bottom: 102 / 2082
  29121. },
  29122. form: "nickit",
  29123. default: true
  29124. },
  29125. lopunnyFront: {
  29126. height: math.unit(5, "feet"),
  29127. name: "Lopunny (Front)",
  29128. image: {
  29129. source: "./media/characters/cat/lopunny-front.svg",
  29130. extra: 1782 / 1469,
  29131. bottom: 38 / 1820
  29132. },
  29133. form: "lopunny",
  29134. default: true
  29135. },
  29136. lopunnyBack: {
  29137. height: math.unit(5, "feet"),
  29138. name: "Lopunny (Back)",
  29139. image: {
  29140. source: "./media/characters/cat/lopunny-back.svg",
  29141. extra: 1660 / 1490,
  29142. bottom: 25 / 1685
  29143. },
  29144. form: "lopunny"
  29145. },
  29146. },
  29147. [
  29148. {
  29149. name: "Really small",
  29150. height: math.unit(1, "nm")
  29151. },
  29152. {
  29153. name: "Micro",
  29154. height: math.unit(5, "inches")
  29155. },
  29156. {
  29157. name: "Normal",
  29158. height: math.unit(5 + 6 / 12, "feet"),
  29159. default: true
  29160. },
  29161. {
  29162. name: "Macro",
  29163. height: math.unit(50, "feet")
  29164. },
  29165. {
  29166. name: "Macro+",
  29167. height: math.unit(150, "feet")
  29168. },
  29169. {
  29170. name: "Megamacro",
  29171. height: math.unit(100, "miles")
  29172. },
  29173. ]
  29174. ))
  29175. characterMakers.push(() => makeCharacter(
  29176. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29177. {
  29178. front: {
  29179. height: math.unit(63.4, "meters"),
  29180. weight: math.unit(3.28349e+6, "kilograms"),
  29181. name: "Front",
  29182. image: {
  29183. source: "./media/characters/kirina-violet/front.svg",
  29184. extra: 2812 / 2725,
  29185. bottom: 0 / 2812
  29186. }
  29187. },
  29188. back: {
  29189. height: math.unit(63.4, "meters"),
  29190. weight: math.unit(3.28349e+6, "kilograms"),
  29191. name: "Back",
  29192. image: {
  29193. source: "./media/characters/kirina-violet/back.svg",
  29194. extra: 2812 / 2725,
  29195. bottom: 0 / 2812
  29196. }
  29197. },
  29198. mouth: {
  29199. height: math.unit(4.35, "meters"),
  29200. name: "Mouth",
  29201. image: {
  29202. source: "./media/characters/kirina-violet/mouth.svg"
  29203. }
  29204. },
  29205. paw: {
  29206. height: math.unit(5.6, "meters"),
  29207. name: "Paw",
  29208. image: {
  29209. source: "./media/characters/kirina-violet/paw.svg"
  29210. }
  29211. },
  29212. tail: {
  29213. height: math.unit(18, "meters"),
  29214. name: "Tail",
  29215. image: {
  29216. source: "./media/characters/kirina-violet/tail.svg"
  29217. }
  29218. },
  29219. },
  29220. [
  29221. {
  29222. name: "Macro",
  29223. height: math.unit(63.4, "meters"),
  29224. default: true
  29225. },
  29226. ]
  29227. ))
  29228. characterMakers.push(() => makeCharacter(
  29229. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29230. {
  29231. front: {
  29232. height: math.unit(75, "feet"),
  29233. name: "Front",
  29234. image: {
  29235. source: "./media/characters/cat-gigachu/front.svg",
  29236. extra: 1239/1027,
  29237. bottom: 32/1271
  29238. }
  29239. },
  29240. back: {
  29241. height: math.unit(75, "feet"),
  29242. name: "Back",
  29243. image: {
  29244. source: "./media/characters/cat-gigachu/back.svg",
  29245. extra: 1229/1030,
  29246. bottom: 9/1238
  29247. }
  29248. },
  29249. },
  29250. [
  29251. {
  29252. name: "Dynamax",
  29253. height: math.unit(75, "feet"),
  29254. default: true
  29255. },
  29256. ]
  29257. ))
  29258. characterMakers.push(() => makeCharacter(
  29259. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29260. {
  29261. front: {
  29262. height: math.unit(6, "feet"),
  29263. weight: math.unit(150, "lb"),
  29264. name: "Front",
  29265. image: {
  29266. source: "./media/characters/sfaiyan/front.svg",
  29267. extra: 999 / 978,
  29268. bottom: 5 / 1004
  29269. }
  29270. },
  29271. },
  29272. [
  29273. {
  29274. name: "Normal",
  29275. height: math.unit(1.82, "meters")
  29276. },
  29277. {
  29278. name: "Giant",
  29279. height: math.unit(2.27, "km"),
  29280. default: true
  29281. },
  29282. ]
  29283. ))
  29284. characterMakers.push(() => makeCharacter(
  29285. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29286. {
  29287. front: {
  29288. height: math.unit(179, "cm"),
  29289. weight: math.unit(100, "kg"),
  29290. name: "Front",
  29291. image: {
  29292. source: "./media/characters/raunehkeli/front.svg",
  29293. extra: 1934 / 1926,
  29294. bottom: 0 / 1934
  29295. }
  29296. },
  29297. },
  29298. [
  29299. {
  29300. name: "Normal",
  29301. height: math.unit(179, "cm")
  29302. },
  29303. {
  29304. name: "Maximum",
  29305. height: math.unit(575, "meters"),
  29306. default: true
  29307. },
  29308. ]
  29309. ))
  29310. characterMakers.push(() => makeCharacter(
  29311. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29312. {
  29313. front: {
  29314. height: math.unit(6, "feet"),
  29315. weight: math.unit(150, "lb"),
  29316. name: "Front",
  29317. image: {
  29318. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29319. extra: 2625 / 2518,
  29320. bottom: 60 / 2685
  29321. }
  29322. },
  29323. },
  29324. [
  29325. {
  29326. name: "Normal",
  29327. height: math.unit(6 + 2 / 12, "feet")
  29328. },
  29329. {
  29330. name: "Macro",
  29331. height: math.unit(1180, "feet"),
  29332. default: true
  29333. },
  29334. ]
  29335. ))
  29336. characterMakers.push(() => makeCharacter(
  29337. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29338. {
  29339. front: {
  29340. height: math.unit(5 + 6 / 12, "feet"),
  29341. weight: math.unit(108, "lb"),
  29342. name: "Front",
  29343. image: {
  29344. source: "./media/characters/lilith-zott/front.svg",
  29345. extra: 2510 / 2238,
  29346. bottom: 100 / 2610
  29347. }
  29348. },
  29349. frontDressed: {
  29350. height: math.unit(5 + 6 / 12, "feet"),
  29351. weight: math.unit(108, "lb"),
  29352. name: "Front (Dressed)",
  29353. image: {
  29354. source: "./media/characters/lilith-zott/front-dressed.svg",
  29355. extra: 2510 / 2238,
  29356. bottom: 100 / 2610
  29357. }
  29358. },
  29359. },
  29360. [
  29361. {
  29362. name: "Normal",
  29363. height: math.unit(5 + 6 / 12, "feet")
  29364. },
  29365. {
  29366. name: "Macro",
  29367. height: math.unit(1030, "feet"),
  29368. default: true
  29369. },
  29370. ]
  29371. ))
  29372. characterMakers.push(() => makeCharacter(
  29373. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29374. {
  29375. front: {
  29376. height: math.unit(6, "feet"),
  29377. weight: math.unit(150, "lb"),
  29378. name: "Front",
  29379. image: {
  29380. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29381. extra: 2567 / 2435,
  29382. bottom: 39 / 2606
  29383. }
  29384. },
  29385. frontSuper: {
  29386. height: math.unit(6, "feet"),
  29387. name: "Front (Super)",
  29388. image: {
  29389. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29390. extra: 2567 / 2435,
  29391. bottom: 39 / 2606
  29392. }
  29393. },
  29394. },
  29395. [
  29396. {
  29397. name: "Normal",
  29398. height: math.unit(5 + 10 / 12, "feet")
  29399. },
  29400. {
  29401. name: "Macro",
  29402. height: math.unit(1100, "feet"),
  29403. default: true
  29404. },
  29405. ]
  29406. ))
  29407. characterMakers.push(() => makeCharacter(
  29408. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29409. {
  29410. front: {
  29411. height: math.unit(100, "miles"),
  29412. name: "Front",
  29413. image: {
  29414. source: "./media/characters/sona/front.svg",
  29415. extra: 2433 / 2201,
  29416. bottom: 53 / 2486
  29417. }
  29418. },
  29419. foot: {
  29420. height: math.unit(16.1, "miles"),
  29421. name: "Foot",
  29422. image: {
  29423. source: "./media/characters/sona/foot.svg"
  29424. }
  29425. },
  29426. },
  29427. [
  29428. {
  29429. name: "Macro",
  29430. height: math.unit(100, "miles"),
  29431. default: true
  29432. },
  29433. ]
  29434. ))
  29435. characterMakers.push(() => makeCharacter(
  29436. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29437. {
  29438. front: {
  29439. height: math.unit(6, "feet"),
  29440. weight: math.unit(150, "lb"),
  29441. name: "Front",
  29442. image: {
  29443. source: "./media/characters/bailey/front.svg",
  29444. extra: 1778 / 1724,
  29445. bottom: 30 / 1808
  29446. }
  29447. },
  29448. },
  29449. [
  29450. {
  29451. name: "Micro",
  29452. height: math.unit(4, "inches")
  29453. },
  29454. {
  29455. name: "Normal",
  29456. height: math.unit(5 + 5 / 12, "feet"),
  29457. default: true
  29458. },
  29459. {
  29460. name: "Macro",
  29461. height: math.unit(250, "feet")
  29462. },
  29463. {
  29464. name: "Megamacro",
  29465. height: math.unit(100, "miles")
  29466. },
  29467. ]
  29468. ))
  29469. characterMakers.push(() => makeCharacter(
  29470. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29471. {
  29472. front: {
  29473. height: math.unit(5 + 2 / 12, "feet"),
  29474. weight: math.unit(120, "lb"),
  29475. name: "Front",
  29476. image: {
  29477. source: "./media/characters/snaps/front.svg",
  29478. extra: 2370 / 2177,
  29479. bottom: 48 / 2418
  29480. }
  29481. },
  29482. back: {
  29483. height: math.unit(5 + 2 / 12, "feet"),
  29484. weight: math.unit(120, "lb"),
  29485. name: "Back",
  29486. image: {
  29487. source: "./media/characters/snaps/back.svg",
  29488. extra: 2408 / 2258,
  29489. bottom: 15 / 2423
  29490. }
  29491. },
  29492. },
  29493. [
  29494. {
  29495. name: "Micro",
  29496. height: math.unit(9, "inches")
  29497. },
  29498. {
  29499. name: "Normal",
  29500. height: math.unit(5 + 2 / 12, "feet"),
  29501. default: true
  29502. },
  29503. {
  29504. name: "Mini Macro",
  29505. height: math.unit(10, "feet")
  29506. },
  29507. ]
  29508. ))
  29509. characterMakers.push(() => makeCharacter(
  29510. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29511. {
  29512. front: {
  29513. height: math.unit(1.8, "meters"),
  29514. weight: math.unit(85, "kg"),
  29515. name: "Front",
  29516. image: {
  29517. source: "./media/characters/azteck/front.svg",
  29518. extra: 2815 / 2625,
  29519. bottom: 89 / 2904
  29520. }
  29521. },
  29522. back: {
  29523. height: math.unit(1.8, "meters"),
  29524. weight: math.unit(85, "kg"),
  29525. name: "Back",
  29526. image: {
  29527. source: "./media/characters/azteck/back.svg",
  29528. extra: 2856 / 2648,
  29529. bottom: 85 / 2941
  29530. }
  29531. },
  29532. frontDressed: {
  29533. height: math.unit(1.8, "meters"),
  29534. weight: math.unit(85, "kg"),
  29535. name: "Front (Dressed)",
  29536. image: {
  29537. source: "./media/characters/azteck/front-dressed.svg",
  29538. extra: 2147 / 2003,
  29539. bottom: 68 / 2215
  29540. }
  29541. },
  29542. head: {
  29543. height: math.unit(0.47, "meters"),
  29544. weight: math.unit(85, "kg"),
  29545. name: "Head",
  29546. image: {
  29547. source: "./media/characters/azteck/head.svg"
  29548. }
  29549. },
  29550. },
  29551. [
  29552. {
  29553. name: "Bite sized",
  29554. height: math.unit(16, "cm")
  29555. },
  29556. {
  29557. name: "Normal",
  29558. height: math.unit(1.8, "meters"),
  29559. default: true
  29560. },
  29561. ]
  29562. ))
  29563. characterMakers.push(() => makeCharacter(
  29564. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29565. {
  29566. front: {
  29567. height: math.unit(6, "feet"),
  29568. weight: math.unit(150, "lb"),
  29569. name: "Front",
  29570. image: {
  29571. source: "./media/characters/pidge/front.svg",
  29572. extra: 620 / 588,
  29573. bottom: 9 / 629
  29574. }
  29575. },
  29576. back: {
  29577. height: math.unit(6, "feet"),
  29578. weight: math.unit(150, "lb"),
  29579. name: "Back",
  29580. image: {
  29581. source: "./media/characters/pidge/back.svg",
  29582. extra: 620 / 588,
  29583. bottom: 9 / 629
  29584. }
  29585. },
  29586. },
  29587. [
  29588. {
  29589. name: "Macro",
  29590. height: math.unit(1, "mile"),
  29591. default: true
  29592. },
  29593. ]
  29594. ))
  29595. characterMakers.push(() => makeCharacter(
  29596. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29597. {
  29598. front: {
  29599. height: math.unit(6, "feet"),
  29600. weight: math.unit(150, "lb"),
  29601. name: "Front",
  29602. image: {
  29603. source: "./media/characters/en/front.svg",
  29604. extra: 1697 / 1563,
  29605. bottom: 103 / 1800
  29606. }
  29607. },
  29608. back: {
  29609. height: math.unit(6, "feet"),
  29610. weight: math.unit(150, "lb"),
  29611. name: "Back",
  29612. image: {
  29613. source: "./media/characters/en/back.svg",
  29614. extra: 1700 / 1570,
  29615. bottom: 51 / 1751
  29616. }
  29617. },
  29618. frontDressed: {
  29619. height: math.unit(6, "feet"),
  29620. weight: math.unit(150, "lb"),
  29621. name: "Front (Dressed)",
  29622. image: {
  29623. source: "./media/characters/en/front-dressed.svg",
  29624. extra: 1697 / 1563,
  29625. bottom: 103 / 1800
  29626. }
  29627. },
  29628. backDressed: {
  29629. height: math.unit(6, "feet"),
  29630. weight: math.unit(150, "lb"),
  29631. name: "Back (Dressed)",
  29632. image: {
  29633. source: "./media/characters/en/back-dressed.svg",
  29634. extra: 1700 / 1570,
  29635. bottom: 51 / 1751
  29636. }
  29637. },
  29638. },
  29639. [
  29640. {
  29641. name: "Macro",
  29642. height: math.unit(210, "feet"),
  29643. default: true
  29644. },
  29645. ]
  29646. ))
  29647. characterMakers.push(() => makeCharacter(
  29648. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29649. {
  29650. front: {
  29651. height: math.unit(6, "feet"),
  29652. weight: math.unit(150, "lb"),
  29653. name: "Front",
  29654. image: {
  29655. source: "./media/characters/haze-orris/front.svg",
  29656. extra: 3975 / 3525,
  29657. bottom: 137 / 4112
  29658. }
  29659. },
  29660. },
  29661. [
  29662. {
  29663. name: "Micro",
  29664. height: math.unit(150, "mm"),
  29665. default: true
  29666. },
  29667. ]
  29668. ))
  29669. characterMakers.push(() => makeCharacter(
  29670. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29671. {
  29672. front: {
  29673. height: math.unit(6, "feet"),
  29674. weight: math.unit(150, "lb"),
  29675. name: "Front",
  29676. image: {
  29677. source: "./media/characters/casselene-yaro/front.svg",
  29678. extra: 4721 / 4541,
  29679. bottom: 82 / 4803
  29680. }
  29681. },
  29682. back: {
  29683. height: math.unit(6, "feet"),
  29684. weight: math.unit(150, "lb"),
  29685. name: "Back",
  29686. image: {
  29687. source: "./media/characters/casselene-yaro/back.svg",
  29688. extra: 4569 / 4377,
  29689. bottom: 69 / 4638
  29690. }
  29691. },
  29692. frontDressed: {
  29693. height: math.unit(6, "feet"),
  29694. weight: math.unit(150, "lb"),
  29695. name: "Front-dressed",
  29696. image: {
  29697. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29698. extra: 4721 / 4541,
  29699. bottom: 82 / 4803
  29700. }
  29701. },
  29702. },
  29703. [
  29704. {
  29705. name: "Macro",
  29706. height: math.unit(190, "feet"),
  29707. default: true
  29708. },
  29709. ]
  29710. ))
  29711. characterMakers.push(() => makeCharacter(
  29712. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29713. {
  29714. front: {
  29715. height: math.unit(6, "feet"),
  29716. weight: math.unit(150, "lb"),
  29717. name: "Front",
  29718. image: {
  29719. source: "./media/characters/myra-rue-delore/front.svg",
  29720. extra: 1340 / 1308,
  29721. bottom: 67 / 1407
  29722. }
  29723. },
  29724. back: {
  29725. height: math.unit(6, "feet"),
  29726. weight: math.unit(150, "lb"),
  29727. name: "Back",
  29728. image: {
  29729. source: "./media/characters/myra-rue-delore/back.svg",
  29730. extra: 1341 / 1310,
  29731. bottom: 40 / 1381
  29732. }
  29733. },
  29734. frontDressed: {
  29735. height: math.unit(6, "feet"),
  29736. weight: math.unit(150, "lb"),
  29737. name: "Front (Dressed)",
  29738. image: {
  29739. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29740. extra: 1340 / 1308,
  29741. bottom: 67 / 1407
  29742. }
  29743. },
  29744. },
  29745. [
  29746. {
  29747. name: "Macro",
  29748. height: math.unit(150, "feet"),
  29749. default: true
  29750. },
  29751. ]
  29752. ))
  29753. characterMakers.push(() => makeCharacter(
  29754. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29755. {
  29756. front: {
  29757. height: math.unit(10, "feet"),
  29758. weight: math.unit(15015, "lb"),
  29759. name: "Front",
  29760. image: {
  29761. source: "./media/characters/fem!plat/front.svg",
  29762. extra: 2799 / 2604,
  29763. bottom: 149 / 2948
  29764. }
  29765. },
  29766. },
  29767. [
  29768. {
  29769. name: "Normal",
  29770. height: math.unit(10, "feet"),
  29771. default: true
  29772. },
  29773. {
  29774. name: "Macro",
  29775. height: math.unit(100, "feet")
  29776. },
  29777. {
  29778. name: "Megamacro",
  29779. height: math.unit(1000, "feet")
  29780. },
  29781. ]
  29782. ))
  29783. characterMakers.push(() => makeCharacter(
  29784. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29785. {
  29786. front: {
  29787. height: math.unit(15 + 5 / 12, "feet"),
  29788. weight: math.unit(4600, "lb"),
  29789. name: "Front",
  29790. image: {
  29791. source: "./media/characters/neapolitan-ananassa/front.svg",
  29792. extra: 2903 / 2736,
  29793. bottom: 0 / 2903
  29794. }
  29795. },
  29796. side: {
  29797. height: math.unit(15 + 5 / 12, "feet"),
  29798. weight: math.unit(4600, "lb"),
  29799. name: "Side",
  29800. image: {
  29801. source: "./media/characters/neapolitan-ananassa/side.svg",
  29802. extra: 2925 / 2719,
  29803. bottom: 0 / 2925
  29804. }
  29805. },
  29806. back: {
  29807. height: math.unit(15 + 5 / 12, "feet"),
  29808. weight: math.unit(4600, "lb"),
  29809. name: "Back",
  29810. image: {
  29811. source: "./media/characters/neapolitan-ananassa/back.svg",
  29812. extra: 2903 / 2736,
  29813. bottom: 0 / 2903
  29814. }
  29815. },
  29816. },
  29817. [
  29818. {
  29819. name: "Normal",
  29820. height: math.unit(15 + 5 / 12, "feet"),
  29821. default: true
  29822. },
  29823. {
  29824. name: "Post-Millenium",
  29825. height: math.unit(35 + 5 / 12, "feet")
  29826. },
  29827. {
  29828. name: "Post-Era",
  29829. height: math.unit(450 + 5 / 12, "feet")
  29830. },
  29831. ]
  29832. ))
  29833. characterMakers.push(() => makeCharacter(
  29834. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29835. {
  29836. front: {
  29837. height: math.unit(300, "meters"),
  29838. weight: math.unit(125000, "tonnes"),
  29839. name: "Front",
  29840. image: {
  29841. source: "./media/characters/pazuzu/front.svg",
  29842. extra: 877 / 794,
  29843. bottom: 47 / 924
  29844. }
  29845. },
  29846. },
  29847. [
  29848. {
  29849. name: "Macro",
  29850. height: math.unit(300, "meters"),
  29851. default: true
  29852. },
  29853. ]
  29854. ))
  29855. characterMakers.push(() => makeCharacter(
  29856. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29857. {
  29858. side: {
  29859. height: math.unit(10 + 7 / 12, "feet"),
  29860. weight: math.unit(2.5, "tons"),
  29861. name: "Side",
  29862. image: {
  29863. source: "./media/characters/aasha/side.svg",
  29864. extra: 1345 / 1245,
  29865. bottom: 111 / 1456
  29866. }
  29867. },
  29868. back: {
  29869. height: math.unit(10 + 7 / 12, "feet"),
  29870. weight: math.unit(2.5, "tons"),
  29871. name: "Back",
  29872. image: {
  29873. source: "./media/characters/aasha/back.svg",
  29874. extra: 1133 / 1057,
  29875. bottom: 257 / 1390
  29876. }
  29877. },
  29878. },
  29879. [
  29880. {
  29881. name: "Normal",
  29882. height: math.unit(10 + 7 / 12, "feet"),
  29883. default: true
  29884. },
  29885. ]
  29886. ))
  29887. characterMakers.push(() => makeCharacter(
  29888. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29889. {
  29890. front: {
  29891. height: math.unit(6 + 3 / 12, "feet"),
  29892. name: "Front",
  29893. image: {
  29894. source: "./media/characters/nevan/front.svg",
  29895. extra: 704 / 704,
  29896. bottom: 28 / 732
  29897. }
  29898. },
  29899. back: {
  29900. height: math.unit(6 + 3 / 12, "feet"),
  29901. name: "Back",
  29902. image: {
  29903. source: "./media/characters/nevan/back.svg",
  29904. extra: 714 / 714,
  29905. bottom: 21 / 735
  29906. }
  29907. },
  29908. frontFlaccid: {
  29909. height: math.unit(6 + 3 / 12, "feet"),
  29910. name: "Front (Flaccid)",
  29911. image: {
  29912. source: "./media/characters/nevan/front-flaccid.svg",
  29913. extra: 704 / 704,
  29914. bottom: 28 / 732
  29915. }
  29916. },
  29917. frontErect: {
  29918. height: math.unit(6 + 3 / 12, "feet"),
  29919. name: "Front (Erect)",
  29920. image: {
  29921. source: "./media/characters/nevan/front-erect.svg",
  29922. extra: 704 / 704,
  29923. bottom: 28 / 732
  29924. }
  29925. },
  29926. backFlaccid: {
  29927. height: math.unit(6 + 3 / 12, "feet"),
  29928. name: "Back (Flaccid)",
  29929. image: {
  29930. source: "./media/characters/nevan/back-flaccid.svg",
  29931. extra: 714 / 714,
  29932. bottom: 21 / 735
  29933. }
  29934. },
  29935. },
  29936. [
  29937. {
  29938. name: "Normal",
  29939. height: math.unit(6 + 3 / 12, "feet"),
  29940. default: true
  29941. },
  29942. ]
  29943. ))
  29944. characterMakers.push(() => makeCharacter(
  29945. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29946. {
  29947. front: {
  29948. height: math.unit(4, "feet"),
  29949. name: "Front",
  29950. image: {
  29951. source: "./media/characters/arhan/front.svg",
  29952. extra: 3368 / 3133,
  29953. bottom: 0 / 3368
  29954. }
  29955. },
  29956. side: {
  29957. height: math.unit(4, "feet"),
  29958. name: "Side",
  29959. image: {
  29960. source: "./media/characters/arhan/side.svg",
  29961. extra: 3347 / 3105,
  29962. bottom: 0 / 3347
  29963. }
  29964. },
  29965. tongue: {
  29966. height: math.unit(1.42, "feet"),
  29967. name: "Tongue",
  29968. image: {
  29969. source: "./media/characters/arhan/tongue.svg"
  29970. }
  29971. },
  29972. head: {
  29973. height: math.unit(0.85, "feet"),
  29974. name: "Head",
  29975. image: {
  29976. source: "./media/characters/arhan/head.svg"
  29977. }
  29978. },
  29979. },
  29980. [
  29981. {
  29982. name: "Normal",
  29983. height: math.unit(4, "feet"),
  29984. default: true
  29985. },
  29986. ]
  29987. ))
  29988. characterMakers.push(() => makeCharacter(
  29989. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29990. {
  29991. front: {
  29992. height: math.unit(5 + 7.5 / 12, "feet"),
  29993. weight: math.unit(120, "lb"),
  29994. name: "Front",
  29995. image: {
  29996. source: "./media/characters/digi-duncan/front.svg",
  29997. extra: 330 / 326,
  29998. bottom: 16 / 346
  29999. }
  30000. },
  30001. side: {
  30002. height: math.unit(5 + 7.5 / 12, "feet"),
  30003. weight: math.unit(120, "lb"),
  30004. name: "Side",
  30005. image: {
  30006. source: "./media/characters/digi-duncan/side.svg",
  30007. extra: 341 / 337,
  30008. bottom: 1 / 342
  30009. }
  30010. },
  30011. back: {
  30012. height: math.unit(5 + 7.5 / 12, "feet"),
  30013. weight: math.unit(120, "lb"),
  30014. name: "Back",
  30015. image: {
  30016. source: "./media/characters/digi-duncan/back.svg",
  30017. extra: 330 / 326,
  30018. bottom: 12 / 342
  30019. }
  30020. },
  30021. },
  30022. [
  30023. {
  30024. name: "Speck",
  30025. height: math.unit(0.25, "mm")
  30026. },
  30027. {
  30028. name: "Micro",
  30029. height: math.unit(5, "mm")
  30030. },
  30031. {
  30032. name: "Tiny",
  30033. height: math.unit(0.5, "inches"),
  30034. default: true
  30035. },
  30036. {
  30037. name: "Human",
  30038. height: math.unit(5 + 7.5 / 12, "feet")
  30039. },
  30040. {
  30041. name: "Minigiant",
  30042. height: math.unit(8 + 5.25, "feet")
  30043. },
  30044. {
  30045. name: "Giant",
  30046. height: math.unit(2000, "feet")
  30047. },
  30048. {
  30049. name: "Mega",
  30050. height: math.unit(371.1, "miles")
  30051. },
  30052. ]
  30053. ))
  30054. characterMakers.push(() => makeCharacter(
  30055. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30056. {
  30057. front: {
  30058. height: math.unit(2, "meters"),
  30059. weight: math.unit(350, "kg"),
  30060. name: "Front",
  30061. image: {
  30062. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30063. extra: 898 / 838,
  30064. bottom: 9 / 907
  30065. }
  30066. },
  30067. },
  30068. [
  30069. {
  30070. name: "Micro",
  30071. height: math.unit(8, "meters")
  30072. },
  30073. {
  30074. name: "Normal",
  30075. height: math.unit(50, "meters"),
  30076. default: true
  30077. },
  30078. {
  30079. name: "Macro",
  30080. height: math.unit(500, "meters")
  30081. },
  30082. ]
  30083. ))
  30084. characterMakers.push(() => makeCharacter(
  30085. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30086. {
  30087. front: {
  30088. height: math.unit(6 + 6 / 12, "feet"),
  30089. name: "Front",
  30090. image: {
  30091. source: "./media/characters/khardesh/front.svg",
  30092. extra: 1788/1596,
  30093. bottom: 66/1854
  30094. }
  30095. },
  30096. back: {
  30097. height: math.unit(6 + 6 / 12, "feet"),
  30098. name: "Back",
  30099. image: {
  30100. source: "./media/characters/khardesh/back.svg",
  30101. extra: 1781/1584,
  30102. bottom: 68/1849
  30103. }
  30104. },
  30105. },
  30106. [
  30107. {
  30108. name: "Normal",
  30109. height: math.unit(6 + 6 / 12, "feet"),
  30110. default: true
  30111. },
  30112. {
  30113. name: "Normal+",
  30114. height: math.unit(4, "meters")
  30115. },
  30116. {
  30117. name: "Macro",
  30118. height: math.unit(50, "meters")
  30119. },
  30120. {
  30121. name: "Macro+",
  30122. height: math.unit(100, "meters")
  30123. },
  30124. {
  30125. name: "Megamacro",
  30126. height: math.unit(20, "km")
  30127. },
  30128. ]
  30129. ))
  30130. characterMakers.push(() => makeCharacter(
  30131. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30132. {
  30133. front: {
  30134. height: math.unit(6, "feet"),
  30135. weight: math.unit(150, "lb"),
  30136. name: "Front",
  30137. image: {
  30138. source: "./media/characters/kosho/front.svg",
  30139. extra: 1847 / 1847,
  30140. bottom: 86 / 1933
  30141. }
  30142. },
  30143. },
  30144. [
  30145. {
  30146. name: "Second-stage micro",
  30147. height: math.unit(0.5, "inches")
  30148. },
  30149. {
  30150. name: "First-stage micro",
  30151. height: math.unit(6, "inches")
  30152. },
  30153. {
  30154. name: "Normal",
  30155. height: math.unit(6, "feet"),
  30156. default: true
  30157. },
  30158. {
  30159. name: "First-stage macro",
  30160. height: math.unit(72, "feet")
  30161. },
  30162. {
  30163. name: "Second-stage macro",
  30164. height: math.unit(864, "feet")
  30165. },
  30166. ]
  30167. ))
  30168. characterMakers.push(() => makeCharacter(
  30169. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30170. {
  30171. normal: {
  30172. height: math.unit(4 + 6 / 12, "feet"),
  30173. name: "Normal",
  30174. image: {
  30175. source: "./media/characters/hydra/normal.svg",
  30176. extra: 2833 / 2634,
  30177. bottom: 68 / 2901
  30178. }
  30179. },
  30180. smol: {
  30181. height: math.unit(0.705, "inches"),
  30182. name: "Smol",
  30183. image: {
  30184. source: "./media/characters/hydra/smol.svg",
  30185. extra: 2715 / 2540,
  30186. bottom: 0 / 2715
  30187. }
  30188. },
  30189. },
  30190. [
  30191. {
  30192. name: "Normal",
  30193. height: math.unit(4 + 6 / 12, "feet"),
  30194. default: true
  30195. }
  30196. ]
  30197. ))
  30198. characterMakers.push(() => makeCharacter(
  30199. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30200. {
  30201. front: {
  30202. height: math.unit(0.6, "cm"),
  30203. name: "Front",
  30204. image: {
  30205. source: "./media/characters/daz/front.svg",
  30206. extra: 1682 / 1164,
  30207. bottom: 42 / 1724
  30208. }
  30209. },
  30210. },
  30211. [
  30212. {
  30213. name: "Normal",
  30214. height: math.unit(0.6, "cm"),
  30215. default: true
  30216. },
  30217. ]
  30218. ))
  30219. characterMakers.push(() => makeCharacter(
  30220. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30221. {
  30222. front: {
  30223. height: math.unit(6, "feet"),
  30224. weight: math.unit(235, "lb"),
  30225. name: "Front",
  30226. image: {
  30227. source: "./media/characters/theo-pangolin/front.svg",
  30228. extra: 1996 / 1969,
  30229. bottom: 115 / 2111
  30230. }
  30231. },
  30232. back: {
  30233. height: math.unit(6, "feet"),
  30234. weight: math.unit(235, "lb"),
  30235. name: "Back",
  30236. image: {
  30237. source: "./media/characters/theo-pangolin/back.svg",
  30238. extra: 1979 / 1979,
  30239. bottom: 40 / 2019
  30240. }
  30241. },
  30242. feral: {
  30243. height: math.unit(2, "feet"),
  30244. weight: math.unit(30, "lb"),
  30245. name: "Feral",
  30246. image: {
  30247. source: "./media/characters/theo-pangolin/feral.svg",
  30248. extra: 803 / 791,
  30249. bottom: 181 / 984
  30250. }
  30251. },
  30252. footFive: {
  30253. height: math.unit(1.43, "feet"),
  30254. name: "Foot (Five Toes)",
  30255. image: {
  30256. source: "./media/characters/theo-pangolin/foot-five.svg"
  30257. }
  30258. },
  30259. footFour: {
  30260. height: math.unit(1.43, "feet"),
  30261. name: "Foot (Four Toes)",
  30262. image: {
  30263. source: "./media/characters/theo-pangolin/foot-four.svg"
  30264. }
  30265. },
  30266. handFour: {
  30267. height: math.unit(0.81, "feet"),
  30268. name: "Hand (Four Fingers)",
  30269. image: {
  30270. source: "./media/characters/theo-pangolin/hand-four.svg"
  30271. }
  30272. },
  30273. handThree: {
  30274. height: math.unit(0.81, "feet"),
  30275. name: "Hand (Three Fingers)",
  30276. image: {
  30277. source: "./media/characters/theo-pangolin/hand-three.svg"
  30278. }
  30279. },
  30280. headFront: {
  30281. height: math.unit(1.37, "feet"),
  30282. name: "Head (Front)",
  30283. image: {
  30284. source: "./media/characters/theo-pangolin/head-front.svg"
  30285. }
  30286. },
  30287. headSide: {
  30288. height: math.unit(1.43, "feet"),
  30289. name: "Head (Side)",
  30290. image: {
  30291. source: "./media/characters/theo-pangolin/head-side.svg"
  30292. }
  30293. },
  30294. tongue: {
  30295. height: math.unit(2.29, "feet"),
  30296. name: "Tongue",
  30297. image: {
  30298. source: "./media/characters/theo-pangolin/tongue.svg"
  30299. }
  30300. },
  30301. },
  30302. [
  30303. {
  30304. name: "Normal",
  30305. height: math.unit(6, "feet")
  30306. },
  30307. {
  30308. name: "Macro",
  30309. height: math.unit(400, "feet"),
  30310. default: true
  30311. },
  30312. ]
  30313. ))
  30314. characterMakers.push(() => makeCharacter(
  30315. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30316. {
  30317. front: {
  30318. height: math.unit(6, "inches"),
  30319. weight: math.unit(0.036, "kg"),
  30320. name: "Front",
  30321. image: {
  30322. source: "./media/characters/renée/front.svg",
  30323. extra: 900 / 886,
  30324. bottom: 8 / 908
  30325. }
  30326. },
  30327. },
  30328. [
  30329. {
  30330. name: "Nano",
  30331. height: math.unit(1, "nm")
  30332. },
  30333. {
  30334. name: "Micro",
  30335. height: math.unit(1, "mm")
  30336. },
  30337. {
  30338. name: "Normal",
  30339. height: math.unit(6, "inches")
  30340. },
  30341. {
  30342. name: "Macro",
  30343. height: math.unit(2000, "feet"),
  30344. default: true
  30345. },
  30346. {
  30347. name: "Megamacro",
  30348. height: math.unit(2, "km")
  30349. },
  30350. {
  30351. name: "Gigamacro",
  30352. height: math.unit(2000, "km")
  30353. },
  30354. {
  30355. name: "Teramacro",
  30356. height: math.unit(250000, "km")
  30357. },
  30358. ]
  30359. ))
  30360. characterMakers.push(() => makeCharacter(
  30361. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30362. {
  30363. front: {
  30364. height: math.unit(4, "meters"),
  30365. weight: math.unit(150, "kg"),
  30366. name: "Front",
  30367. image: {
  30368. source: "./media/characters/caledvwlch/front.svg",
  30369. extra: 1760 / 1551,
  30370. bottom: 28 / 1788
  30371. }
  30372. },
  30373. side: {
  30374. height: math.unit(4, "meters"),
  30375. weight: math.unit(150, "kg"),
  30376. name: "Side",
  30377. image: {
  30378. source: "./media/characters/caledvwlch/side.svg",
  30379. extra: 1605 / 1536,
  30380. bottom: 31 / 1636
  30381. }
  30382. },
  30383. back: {
  30384. height: math.unit(4, "meters"),
  30385. weight: math.unit(150, "kg"),
  30386. name: "Back",
  30387. image: {
  30388. source: "./media/characters/caledvwlch/back.svg",
  30389. extra: 1635 / 1565,
  30390. bottom: 27 / 1662
  30391. }
  30392. },
  30393. },
  30394. [
  30395. {
  30396. name: "\"Incognito\"",
  30397. height: math.unit(4, "meters")
  30398. },
  30399. {
  30400. name: "Small rampage",
  30401. height: math.unit(600, "meters")
  30402. },
  30403. {
  30404. name: "Mega",
  30405. height: math.unit(30, "km")
  30406. },
  30407. {
  30408. name: "Home-size",
  30409. height: math.unit(50, "km"),
  30410. default: true
  30411. },
  30412. {
  30413. name: "Giga",
  30414. height: math.unit(300, "km")
  30415. },
  30416. {
  30417. name: "Lounging",
  30418. height: math.unit(11000, "km")
  30419. },
  30420. {
  30421. name: "Planet snacking",
  30422. height: math.unit(2000000, "km")
  30423. },
  30424. ]
  30425. ))
  30426. characterMakers.push(() => makeCharacter(
  30427. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30428. {
  30429. front: {
  30430. height: math.unit(6, "feet"),
  30431. weight: math.unit(215, "lb"),
  30432. name: "Front",
  30433. image: {
  30434. source: "./media/characters/sapphire-svell/front.svg",
  30435. extra: 495 / 455,
  30436. bottom: 20 / 515
  30437. }
  30438. },
  30439. back: {
  30440. height: math.unit(6, "feet"),
  30441. weight: math.unit(216, "lb"),
  30442. name: "Back",
  30443. image: {
  30444. source: "./media/characters/sapphire-svell/back.svg",
  30445. extra: 497 / 477,
  30446. bottom: 7 / 504
  30447. }
  30448. },
  30449. maw: {
  30450. height: math.unit(1.57, "feet"),
  30451. name: "Maw",
  30452. image: {
  30453. source: "./media/characters/sapphire-svell/maw.svg"
  30454. }
  30455. },
  30456. foot: {
  30457. height: math.unit(1.07, "feet"),
  30458. name: "Foot",
  30459. image: {
  30460. source: "./media/characters/sapphire-svell/foot.svg"
  30461. }
  30462. },
  30463. toering: {
  30464. height: math.unit(1.7, "inch"),
  30465. name: "Toering",
  30466. image: {
  30467. source: "./media/characters/sapphire-svell/toering.svg"
  30468. }
  30469. },
  30470. },
  30471. [
  30472. {
  30473. name: "Normal",
  30474. height: math.unit(300, "feet"),
  30475. default: true
  30476. },
  30477. {
  30478. name: "Augmented",
  30479. height: math.unit(1250, "feet")
  30480. },
  30481. {
  30482. name: "Unleashed",
  30483. height: math.unit(3000, "feet")
  30484. },
  30485. ]
  30486. ))
  30487. characterMakers.push(() => makeCharacter(
  30488. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30489. {
  30490. side: {
  30491. height: math.unit(2 + 3 / 12, "feet"),
  30492. weight: math.unit(110, "lb"),
  30493. name: "Side",
  30494. image: {
  30495. source: "./media/characters/glitch-flux/side.svg",
  30496. extra: 997 / 805,
  30497. bottom: 20 / 1017
  30498. }
  30499. },
  30500. },
  30501. [
  30502. {
  30503. name: "Normal",
  30504. height: math.unit(2 + 3 / 12, "feet"),
  30505. default: true
  30506. },
  30507. ]
  30508. ))
  30509. characterMakers.push(() => makeCharacter(
  30510. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30511. {
  30512. front: {
  30513. height: math.unit(4, "meters"),
  30514. name: "Front",
  30515. image: {
  30516. source: "./media/characters/mid/front.svg",
  30517. extra: 507 / 476,
  30518. bottom: 17 / 524
  30519. }
  30520. },
  30521. back: {
  30522. height: math.unit(4, "meters"),
  30523. name: "Back",
  30524. image: {
  30525. source: "./media/characters/mid/back.svg",
  30526. extra: 519 / 487,
  30527. bottom: 7 / 526
  30528. }
  30529. },
  30530. stuck: {
  30531. height: math.unit(2.2, "meters"),
  30532. name: "Stuck",
  30533. image: {
  30534. source: "./media/characters/mid/stuck.svg",
  30535. extra: 1951 / 1869,
  30536. bottom: 88 / 2039
  30537. }
  30538. }
  30539. },
  30540. [
  30541. {
  30542. name: "Normal",
  30543. height: math.unit(4, "meters"),
  30544. default: true
  30545. },
  30546. {
  30547. name: "Big",
  30548. height: math.unit(10, "meters")
  30549. },
  30550. {
  30551. name: "Macro",
  30552. height: math.unit(800, "meters")
  30553. },
  30554. {
  30555. name: "Megamacro",
  30556. height: math.unit(100, "km")
  30557. },
  30558. {
  30559. name: "Overgrown",
  30560. height: math.unit(1, "parsec")
  30561. },
  30562. ]
  30563. ))
  30564. characterMakers.push(() => makeCharacter(
  30565. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30566. {
  30567. front: {
  30568. height: math.unit(2.5, "meters"),
  30569. weight: math.unit(225, "kg"),
  30570. name: "Front",
  30571. image: {
  30572. source: "./media/characters/iris/front.svg",
  30573. extra: 3348 / 3251,
  30574. bottom: 205 / 3553
  30575. }
  30576. },
  30577. maw: {
  30578. height: math.unit(0.56, "meter"),
  30579. name: "Maw",
  30580. image: {
  30581. source: "./media/characters/iris/maw.svg"
  30582. }
  30583. },
  30584. },
  30585. [
  30586. {
  30587. name: "Mewter cat",
  30588. height: math.unit(1.2, "meters")
  30589. },
  30590. {
  30591. name: "Minimacro",
  30592. height: math.unit(2.5, "meters"),
  30593. default: true
  30594. },
  30595. {
  30596. name: "Macro",
  30597. height: math.unit(180, "meters")
  30598. },
  30599. {
  30600. name: "Megamacro",
  30601. height: math.unit(2746, "meters")
  30602. },
  30603. ]
  30604. ))
  30605. characterMakers.push(() => makeCharacter(
  30606. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30607. {
  30608. front: {
  30609. height: math.unit(6, "feet"),
  30610. weight: math.unit(135, "lb"),
  30611. name: "Front",
  30612. image: {
  30613. source: "./media/characters/axel/front.svg",
  30614. extra: 908 / 908,
  30615. bottom: 58 / 966
  30616. }
  30617. },
  30618. side: {
  30619. height: math.unit(6, "feet"),
  30620. weight: math.unit(135, "lb"),
  30621. name: "Side",
  30622. image: {
  30623. source: "./media/characters/axel/side.svg",
  30624. extra: 958 / 958,
  30625. bottom: 11 / 969
  30626. }
  30627. },
  30628. back: {
  30629. height: math.unit(6, "feet"),
  30630. weight: math.unit(135, "lb"),
  30631. name: "Back",
  30632. image: {
  30633. source: "./media/characters/axel/back.svg",
  30634. extra: 887 / 887,
  30635. bottom: 34 / 921
  30636. }
  30637. },
  30638. head: {
  30639. height: math.unit(1.07, "feet"),
  30640. name: "Head",
  30641. image: {
  30642. source: "./media/characters/axel/head.svg"
  30643. }
  30644. },
  30645. beak: {
  30646. height: math.unit(1.4, "feet"),
  30647. name: "Beak",
  30648. image: {
  30649. source: "./media/characters/axel/beak.svg"
  30650. }
  30651. },
  30652. beakSide: {
  30653. height: math.unit(1.4, "feet"),
  30654. name: "Beak Side",
  30655. image: {
  30656. source: "./media/characters/axel/beak-side.svg"
  30657. }
  30658. },
  30659. sheath: {
  30660. height: math.unit(0.5, "feet"),
  30661. name: "Sheath",
  30662. image: {
  30663. source: "./media/characters/axel/sheath.svg"
  30664. }
  30665. },
  30666. dick: {
  30667. height: math.unit(0.98, "feet"),
  30668. name: "Dick",
  30669. image: {
  30670. source: "./media/characters/axel/dick.svg"
  30671. }
  30672. },
  30673. },
  30674. [
  30675. {
  30676. name: "Macro",
  30677. height: math.unit(68, "meters"),
  30678. default: true
  30679. },
  30680. ]
  30681. ))
  30682. characterMakers.push(() => makeCharacter(
  30683. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30684. {
  30685. front: {
  30686. height: math.unit(3.5, "meters"),
  30687. weight: math.unit(1200, "kg"),
  30688. name: "Front",
  30689. image: {
  30690. source: "./media/characters/joanna/front.svg",
  30691. extra: 1596 / 1488,
  30692. bottom: 29 / 1625
  30693. }
  30694. },
  30695. back: {
  30696. height: math.unit(3.5, "meters"),
  30697. weight: math.unit(1200, "kg"),
  30698. name: "Back",
  30699. image: {
  30700. source: "./media/characters/joanna/back.svg",
  30701. extra: 1594 / 1495,
  30702. bottom: 26 / 1620
  30703. }
  30704. },
  30705. frontShorts: {
  30706. height: math.unit(3.5, "meters"),
  30707. weight: math.unit(1200, "kg"),
  30708. name: "Front (Shorts)",
  30709. image: {
  30710. source: "./media/characters/joanna/front-shorts.svg",
  30711. extra: 1596 / 1488,
  30712. bottom: 29 / 1625
  30713. }
  30714. },
  30715. frontBiker: {
  30716. height: math.unit(3.5, "meters"),
  30717. weight: math.unit(1200, "kg"),
  30718. name: "Front (Biker)",
  30719. image: {
  30720. source: "./media/characters/joanna/front-biker.svg",
  30721. extra: 1596 / 1488,
  30722. bottom: 29 / 1625
  30723. }
  30724. },
  30725. backBiker: {
  30726. height: math.unit(3.5, "meters"),
  30727. weight: math.unit(1200, "kg"),
  30728. name: "Back (Biker)",
  30729. image: {
  30730. source: "./media/characters/joanna/back-biker.svg",
  30731. extra: 1594 / 1495,
  30732. bottom: 88 / 1682
  30733. }
  30734. },
  30735. bikeLeft: {
  30736. height: math.unit(2.4, "meters"),
  30737. weight: math.unit(1600, "kg"),
  30738. name: "Bike (Left)",
  30739. image: {
  30740. source: "./media/characters/joanna/bike-left.svg",
  30741. extra: 720 / 720,
  30742. bottom: 8 / 728
  30743. }
  30744. },
  30745. bikeRight: {
  30746. height: math.unit(2.4, "meters"),
  30747. weight: math.unit(1600, "kg"),
  30748. name: "Bike (Right)",
  30749. image: {
  30750. source: "./media/characters/joanna/bike-right.svg",
  30751. extra: 720 / 720,
  30752. bottom: 8 / 728
  30753. }
  30754. },
  30755. },
  30756. [
  30757. {
  30758. name: "Incognito",
  30759. height: math.unit(3.5, "meters")
  30760. },
  30761. {
  30762. name: "Casual Big",
  30763. height: math.unit(200, "meters")
  30764. },
  30765. {
  30766. name: "Macro",
  30767. height: math.unit(600, "meters")
  30768. },
  30769. {
  30770. name: "Original",
  30771. height: math.unit(20, "km"),
  30772. default: true
  30773. },
  30774. {
  30775. name: "Giga",
  30776. height: math.unit(400, "km")
  30777. },
  30778. {
  30779. name: "Lounging",
  30780. height: math.unit(1500, "km")
  30781. },
  30782. {
  30783. name: "Planetary",
  30784. height: math.unit(200000, "km")
  30785. },
  30786. ]
  30787. ))
  30788. characterMakers.push(() => makeCharacter(
  30789. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30790. {
  30791. front: {
  30792. height: math.unit(6, "feet"),
  30793. weight: math.unit(150, "lb"),
  30794. name: "Front",
  30795. image: {
  30796. source: "./media/characters/hugo-sigil/front.svg",
  30797. extra: 522 / 500,
  30798. bottom: 2 / 524
  30799. }
  30800. },
  30801. back: {
  30802. height: math.unit(6, "feet"),
  30803. weight: math.unit(150, "lb"),
  30804. name: "Back",
  30805. image: {
  30806. source: "./media/characters/hugo-sigil/back.svg",
  30807. extra: 519 / 495,
  30808. bottom: 5 / 524
  30809. }
  30810. },
  30811. maw: {
  30812. height: math.unit(1.4, "feet"),
  30813. weight: math.unit(150, "lb"),
  30814. name: "Maw",
  30815. image: {
  30816. source: "./media/characters/hugo-sigil/maw.svg"
  30817. }
  30818. },
  30819. feet: {
  30820. height: math.unit(1.56, "feet"),
  30821. weight: math.unit(150, "lb"),
  30822. name: "Feet",
  30823. image: {
  30824. source: "./media/characters/hugo-sigil/feet.svg",
  30825. extra: 177 / 177,
  30826. bottom: 12 / 189
  30827. }
  30828. },
  30829. },
  30830. [
  30831. {
  30832. name: "Normal",
  30833. height: math.unit(6, "feet")
  30834. },
  30835. {
  30836. name: "Macro",
  30837. height: math.unit(200, "feet"),
  30838. default: true
  30839. },
  30840. ]
  30841. ))
  30842. characterMakers.push(() => makeCharacter(
  30843. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30844. {
  30845. front: {
  30846. height: math.unit(6, "feet"),
  30847. weight: math.unit(150, "lb"),
  30848. name: "Front",
  30849. image: {
  30850. source: "./media/characters/peri/front.svg",
  30851. extra: 2354 / 2233,
  30852. bottom: 49 / 2403
  30853. }
  30854. },
  30855. },
  30856. [
  30857. {
  30858. name: "Really Small",
  30859. height: math.unit(1, "nm")
  30860. },
  30861. {
  30862. name: "Micro",
  30863. height: math.unit(4, "inches")
  30864. },
  30865. {
  30866. name: "Normal",
  30867. height: math.unit(7, "inches"),
  30868. default: true
  30869. },
  30870. {
  30871. name: "Macro",
  30872. height: math.unit(400, "feet")
  30873. },
  30874. {
  30875. name: "Megamacro",
  30876. height: math.unit(100, "miles")
  30877. },
  30878. ]
  30879. ))
  30880. characterMakers.push(() => makeCharacter(
  30881. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30882. {
  30883. frontSlim: {
  30884. height: math.unit(7, "feet"),
  30885. name: "Front (Slim)",
  30886. image: {
  30887. source: "./media/characters/issilora/front-slim.svg",
  30888. extra: 529 / 449,
  30889. bottom: 53 / 582
  30890. }
  30891. },
  30892. sideSlim: {
  30893. height: math.unit(7, "feet"),
  30894. name: "Side (Slim)",
  30895. image: {
  30896. source: "./media/characters/issilora/side-slim.svg",
  30897. extra: 570 / 480,
  30898. bottom: 30 / 600
  30899. }
  30900. },
  30901. backSlim: {
  30902. height: math.unit(7, "feet"),
  30903. name: "Back (Slim)",
  30904. image: {
  30905. source: "./media/characters/issilora/back-slim.svg",
  30906. extra: 537 / 455,
  30907. bottom: 46 / 583
  30908. }
  30909. },
  30910. frontBuff: {
  30911. height: math.unit(7, "feet"),
  30912. name: "Front (Buff)",
  30913. image: {
  30914. source: "./media/characters/issilora/front-buff.svg",
  30915. extra: 2310 / 2035,
  30916. bottom: 335 / 2645
  30917. }
  30918. },
  30919. head: {
  30920. height: math.unit(1.94, "feet"),
  30921. name: "Head",
  30922. image: {
  30923. source: "./media/characters/issilora/head.svg"
  30924. }
  30925. },
  30926. },
  30927. [
  30928. {
  30929. name: "Minimum",
  30930. height: math.unit(7, "feet")
  30931. },
  30932. {
  30933. name: "Comfortable",
  30934. height: math.unit(17, "feet")
  30935. },
  30936. {
  30937. name: "Fun Size",
  30938. height: math.unit(47, "feet")
  30939. },
  30940. {
  30941. name: "Natural Macro",
  30942. height: math.unit(137, "feet"),
  30943. default: true
  30944. },
  30945. {
  30946. name: "Maximum Kaiju",
  30947. height: math.unit(397, "feet")
  30948. },
  30949. ]
  30950. ))
  30951. characterMakers.push(() => makeCharacter(
  30952. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30953. {
  30954. front: {
  30955. height: math.unit(50 + 9/12, "feet"),
  30956. weight: math.unit(32.8, "tons"),
  30957. name: "Front",
  30958. image: {
  30959. source: "./media/characters/irb'iiritaahn/front.svg",
  30960. extra: 1878/1826,
  30961. bottom: 326/2204
  30962. }
  30963. },
  30964. back: {
  30965. height: math.unit(50 + 9/12, "feet"),
  30966. weight: math.unit(32.8, "tons"),
  30967. name: "Back",
  30968. image: {
  30969. source: "./media/characters/irb'iiritaahn/back.svg",
  30970. extra: 2052/2018,
  30971. bottom: 152/2204
  30972. }
  30973. },
  30974. head: {
  30975. height: math.unit(12.86, "feet"),
  30976. name: "Head",
  30977. image: {
  30978. source: "./media/characters/irb'iiritaahn/head.svg"
  30979. }
  30980. },
  30981. maw: {
  30982. height: math.unit(9.66, "feet"),
  30983. name: "Maw",
  30984. image: {
  30985. source: "./media/characters/irb'iiritaahn/maw.svg"
  30986. }
  30987. },
  30988. frontDick: {
  30989. height: math.unit(8.78461, "feet"),
  30990. name: "Front Dick",
  30991. image: {
  30992. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30993. }
  30994. },
  30995. rearDick: {
  30996. height: math.unit(8.78461, "feet"),
  30997. name: "Rear Dick",
  30998. image: {
  30999. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31000. }
  31001. },
  31002. rearDickUnfolded: {
  31003. height: math.unit(8.78, "feet"),
  31004. name: "Rear Dick (Unfolded)",
  31005. image: {
  31006. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31007. }
  31008. },
  31009. wings: {
  31010. height: math.unit(43, "feet"),
  31011. name: "Wings",
  31012. image: {
  31013. source: "./media/characters/irb'iiritaahn/wings.svg"
  31014. }
  31015. },
  31016. },
  31017. [
  31018. {
  31019. name: "Macro",
  31020. height: math.unit(50 + 9/12, "feet"),
  31021. default: true
  31022. },
  31023. ]
  31024. ))
  31025. characterMakers.push(() => makeCharacter(
  31026. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31027. {
  31028. front: {
  31029. height: math.unit(205, "cm"),
  31030. weight: math.unit(102, "kg"),
  31031. name: "Front",
  31032. image: {
  31033. source: "./media/characters/irbisgreif/front.svg",
  31034. extra: 785/706,
  31035. bottom: 13/798
  31036. }
  31037. },
  31038. back: {
  31039. height: math.unit(205, "cm"),
  31040. weight: math.unit(102, "kg"),
  31041. name: "Back",
  31042. image: {
  31043. source: "./media/characters/irbisgreif/back.svg",
  31044. extra: 713/701,
  31045. bottom: 26/739
  31046. }
  31047. },
  31048. frontDressed: {
  31049. height: math.unit(216, "cm"),
  31050. weight: math.unit(102, "kg"),
  31051. name: "Front-dressed",
  31052. image: {
  31053. source: "./media/characters/irbisgreif/front-dressed.svg",
  31054. extra: 902/776,
  31055. bottom: 14/916
  31056. }
  31057. },
  31058. sideDressed: {
  31059. height: math.unit(195, "cm"),
  31060. weight: math.unit(102, "kg"),
  31061. name: "Side-dressed",
  31062. image: {
  31063. source: "./media/characters/irbisgreif/side-dressed.svg",
  31064. extra: 788/688,
  31065. bottom: 21/809
  31066. }
  31067. },
  31068. backDressed: {
  31069. height: math.unit(216, "cm"),
  31070. weight: math.unit(102, "kg"),
  31071. name: "Back-dressed",
  31072. image: {
  31073. source: "./media/characters/irbisgreif/back-dressed.svg",
  31074. extra: 901/783,
  31075. bottom: 10/911
  31076. }
  31077. },
  31078. dick: {
  31079. height: math.unit(0.49, "feet"),
  31080. name: "Dick",
  31081. image: {
  31082. source: "./media/characters/irbisgreif/dick.svg"
  31083. }
  31084. },
  31085. wingTop: {
  31086. height: math.unit(1.93 , "feet"),
  31087. name: "Wing-top",
  31088. image: {
  31089. source: "./media/characters/irbisgreif/wing-top.svg"
  31090. }
  31091. },
  31092. wingBottom: {
  31093. height: math.unit(1.93 , "feet"),
  31094. name: "Wing-bottom",
  31095. image: {
  31096. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31097. }
  31098. },
  31099. },
  31100. [
  31101. {
  31102. name: "Normal",
  31103. height: math.unit(216, "cm"),
  31104. default: true
  31105. },
  31106. ]
  31107. ))
  31108. characterMakers.push(() => makeCharacter(
  31109. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31110. {
  31111. front: {
  31112. height: math.unit(6, "feet"),
  31113. weight: math.unit(150, "lb"),
  31114. name: "Front",
  31115. image: {
  31116. source: "./media/characters/pride/front.svg",
  31117. extra: 1299/1230,
  31118. bottom: 18/1317
  31119. }
  31120. },
  31121. },
  31122. [
  31123. {
  31124. name: "Normal",
  31125. height: math.unit(7, "feet")
  31126. },
  31127. {
  31128. name: "Mini-macro",
  31129. height: math.unit(11, "feet")
  31130. },
  31131. {
  31132. name: "Macro",
  31133. height: math.unit(15, "meters"),
  31134. default: true
  31135. },
  31136. {
  31137. name: "Macro+",
  31138. height: math.unit(40, "meters")
  31139. },
  31140. ]
  31141. ))
  31142. characterMakers.push(() => makeCharacter(
  31143. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31144. {
  31145. front: {
  31146. height: math.unit(4 + 2 / 12, "feet"),
  31147. weight: math.unit(95, "lb"),
  31148. name: "Front",
  31149. image: {
  31150. source: "./media/characters/vaelophis-nyx/front.svg",
  31151. extra: 2532/2330,
  31152. bottom: 0/2532
  31153. }
  31154. },
  31155. back: {
  31156. height: math.unit(4 + 2 / 12, "feet"),
  31157. weight: math.unit(95, "lb"),
  31158. name: "Back",
  31159. image: {
  31160. source: "./media/characters/vaelophis-nyx/back.svg",
  31161. extra: 2484/2361,
  31162. bottom: 0/2484
  31163. }
  31164. },
  31165. feralSide: {
  31166. height: math.unit(2 + 1/12, "feet"),
  31167. weight: math.unit(20, "lb"),
  31168. name: "Feral (Side)",
  31169. image: {
  31170. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31171. extra: 1721/1581,
  31172. bottom: 70/1791
  31173. }
  31174. },
  31175. feralLazing: {
  31176. height: math.unit(1.08, "feet"),
  31177. weight: math.unit(20, "lb"),
  31178. name: "Feral (Lazing)",
  31179. image: {
  31180. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31181. extra: 822/822,
  31182. bottom: 248/1070
  31183. }
  31184. },
  31185. ear: {
  31186. height: math.unit(0.416, "feet"),
  31187. name: "Ear",
  31188. image: {
  31189. source: "./media/characters/vaelophis-nyx/ear.svg"
  31190. }
  31191. },
  31192. eye: {
  31193. height: math.unit(0.0748, "feet"),
  31194. name: "Eye",
  31195. image: {
  31196. source: "./media/characters/vaelophis-nyx/eye.svg"
  31197. }
  31198. },
  31199. mouth: {
  31200. height: math.unit(0.378, "feet"),
  31201. name: "Mouth",
  31202. image: {
  31203. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31204. }
  31205. },
  31206. spade: {
  31207. height: math.unit(0.55, "feet"),
  31208. name: "Spade",
  31209. image: {
  31210. source: "./media/characters/vaelophis-nyx/spade.svg"
  31211. }
  31212. },
  31213. },
  31214. [
  31215. {
  31216. name: "Normal",
  31217. height: math.unit(4 + 2/12, "feet"),
  31218. default: true
  31219. },
  31220. ]
  31221. ))
  31222. characterMakers.push(() => makeCharacter(
  31223. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31224. {
  31225. front: {
  31226. height: math.unit(7, "feet"),
  31227. weight: math.unit(231, "lb"),
  31228. name: "Front",
  31229. image: {
  31230. source: "./media/characters/flux/front.svg",
  31231. extra: 919/871,
  31232. bottom: 0/919
  31233. }
  31234. },
  31235. back: {
  31236. height: math.unit(7, "feet"),
  31237. weight: math.unit(231, "lb"),
  31238. name: "Back",
  31239. image: {
  31240. source: "./media/characters/flux/back.svg",
  31241. extra: 1040/992,
  31242. bottom: 0/1040
  31243. }
  31244. },
  31245. frontDressed: {
  31246. height: math.unit(7, "feet"),
  31247. weight: math.unit(231, "lb"),
  31248. name: "Front (Dressed)",
  31249. image: {
  31250. source: "./media/characters/flux/front-dressed.svg",
  31251. extra: 919/871,
  31252. bottom: 0/919
  31253. }
  31254. },
  31255. feralSide: {
  31256. height: math.unit(5, "feet"),
  31257. weight: math.unit(150, "lb"),
  31258. name: "Feral (Side)",
  31259. image: {
  31260. source: "./media/characters/flux/feral-side.svg",
  31261. extra: 598/528,
  31262. bottom: 28/626
  31263. }
  31264. },
  31265. head: {
  31266. height: math.unit(1.585, "feet"),
  31267. name: "Head",
  31268. image: {
  31269. source: "./media/characters/flux/head.svg"
  31270. }
  31271. },
  31272. headSide: {
  31273. height: math.unit(1.74, "feet"),
  31274. name: "Head (Side)",
  31275. image: {
  31276. source: "./media/characters/flux/head-side.svg"
  31277. }
  31278. },
  31279. headSideFire: {
  31280. height: math.unit(1.76, "feet"),
  31281. name: "Head (Side, Fire)",
  31282. image: {
  31283. source: "./media/characters/flux/head-side-fire.svg"
  31284. }
  31285. },
  31286. },
  31287. [
  31288. {
  31289. name: "Normal",
  31290. height: math.unit(7, "feet"),
  31291. default: true
  31292. },
  31293. ]
  31294. ))
  31295. characterMakers.push(() => makeCharacter(
  31296. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31297. {
  31298. front: {
  31299. height: math.unit(9, "feet"),
  31300. weight: math.unit(1012, "lb"),
  31301. name: "Front",
  31302. image: {
  31303. source: "./media/characters/ulfra-lupae/front.svg",
  31304. extra: 1083/1011,
  31305. bottom: 67/1150
  31306. }
  31307. },
  31308. },
  31309. [
  31310. {
  31311. name: "Micro",
  31312. height: math.unit(6, "inches")
  31313. },
  31314. {
  31315. name: "Socializing",
  31316. height: math.unit(6 + 5/12, "feet")
  31317. },
  31318. {
  31319. name: "Normal",
  31320. height: math.unit(9, "feet"),
  31321. default: true
  31322. },
  31323. {
  31324. name: "Macro",
  31325. height: math.unit(150, "feet")
  31326. },
  31327. ]
  31328. ))
  31329. characterMakers.push(() => makeCharacter(
  31330. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31331. {
  31332. front: {
  31333. height: math.unit(5 + 2/12, "feet"),
  31334. weight: math.unit(120, "lb"),
  31335. name: "Front",
  31336. image: {
  31337. source: "./media/characters/timber/front.svg",
  31338. extra: 2814/2705,
  31339. bottom: 181/2995
  31340. }
  31341. },
  31342. },
  31343. [
  31344. {
  31345. name: "Normal",
  31346. height: math.unit(5 + 2/12, "feet"),
  31347. default: true
  31348. },
  31349. ]
  31350. ))
  31351. characterMakers.push(() => makeCharacter(
  31352. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31353. {
  31354. front: {
  31355. height: math.unit(5 + 7/12, "feet"),
  31356. weight: math.unit(220, "lb"),
  31357. name: "Front",
  31358. image: {
  31359. source: "./media/characters/nicki/front.svg",
  31360. extra: 453/419,
  31361. bottom: 7/460
  31362. }
  31363. },
  31364. frontAlt: {
  31365. height: math.unit(5 + 7/12, "feet"),
  31366. weight: math.unit(220, "lb"),
  31367. name: "Front-alt",
  31368. image: {
  31369. source: "./media/characters/nicki/front-alt.svg",
  31370. extra: 435/411,
  31371. bottom: 12/447
  31372. }
  31373. },
  31374. back: {
  31375. height: math.unit(5 + 7/12, "feet"),
  31376. weight: math.unit(220, "lb"),
  31377. name: "Back",
  31378. image: {
  31379. source: "./media/characters/nicki/back.svg",
  31380. extra: 440/413,
  31381. bottom: 19/459
  31382. }
  31383. },
  31384. taur: {
  31385. height: math.unit(7 + 6/12, "feet"),
  31386. weight: math.unit(700, "lb"),
  31387. name: "Taur",
  31388. image: {
  31389. source: "./media/characters/nicki/taur.svg",
  31390. extra: 975/773,
  31391. bottom: 0/975
  31392. }
  31393. },
  31394. frontNsfw: {
  31395. height: math.unit(5 + 7/12, "feet"),
  31396. weight: math.unit(220, "lb"),
  31397. name: "Front (NSFW)",
  31398. image: {
  31399. source: "./media/characters/nicki/front-nsfw.svg",
  31400. extra: 453/419,
  31401. bottom: 7/460
  31402. }
  31403. },
  31404. frontNsfwAlt: {
  31405. height: math.unit(5 + 7/12, "feet"),
  31406. weight: math.unit(220, "lb"),
  31407. name: "Front (Alt, NSFW)",
  31408. image: {
  31409. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31410. extra: 435/411,
  31411. bottom: 12/447
  31412. }
  31413. },
  31414. backNsfw: {
  31415. height: math.unit(5 + 7/12, "feet"),
  31416. weight: math.unit(220, "lb"),
  31417. name: "Back (NSFW)",
  31418. image: {
  31419. source: "./media/characters/nicki/back-nsfw.svg",
  31420. extra: 440/413,
  31421. bottom: 19/459
  31422. }
  31423. },
  31424. head: {
  31425. height: math.unit(2.1, "feet"),
  31426. name: "Head",
  31427. image: {
  31428. source: "./media/characters/nicki/head.svg"
  31429. }
  31430. },
  31431. paw: {
  31432. height: math.unit(1.88, "feet"),
  31433. name: "Paw",
  31434. image: {
  31435. source: "./media/characters/nicki/paw.svg"
  31436. }
  31437. },
  31438. },
  31439. [
  31440. {
  31441. name: "Normal",
  31442. height: math.unit(5 + 7/12, "feet"),
  31443. default: true
  31444. },
  31445. ]
  31446. ))
  31447. characterMakers.push(() => makeCharacter(
  31448. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31449. {
  31450. front: {
  31451. height: math.unit(7 + 10/12, "feet"),
  31452. weight: math.unit(3.5, "tons"),
  31453. name: "Front",
  31454. image: {
  31455. source: "./media/characters/lee/front.svg",
  31456. extra: 1773/1615,
  31457. bottom: 86/1859
  31458. }
  31459. },
  31460. hand: {
  31461. height: math.unit(1.78, "feet"),
  31462. name: "Hand",
  31463. image: {
  31464. source: "./media/characters/lee/hand.svg"
  31465. }
  31466. },
  31467. maw: {
  31468. height: math.unit(1.18, "feet"),
  31469. name: "Maw",
  31470. image: {
  31471. source: "./media/characters/lee/maw.svg"
  31472. }
  31473. },
  31474. },
  31475. [
  31476. {
  31477. name: "Normal",
  31478. height: math.unit(7 + 10/12, "feet"),
  31479. default: true
  31480. },
  31481. ]
  31482. ))
  31483. characterMakers.push(() => makeCharacter(
  31484. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31485. {
  31486. front: {
  31487. height: math.unit(9, "feet"),
  31488. name: "Front",
  31489. image: {
  31490. source: "./media/characters/guti/front.svg",
  31491. extra: 4551/4355,
  31492. bottom: 123/4674
  31493. }
  31494. },
  31495. tongue: {
  31496. height: math.unit(1, "feet"),
  31497. name: "Tongue",
  31498. image: {
  31499. source: "./media/characters/guti/tongue.svg"
  31500. }
  31501. },
  31502. paw: {
  31503. height: math.unit(1.18, "feet"),
  31504. name: "Paw",
  31505. image: {
  31506. source: "./media/characters/guti/paw.svg"
  31507. }
  31508. },
  31509. },
  31510. [
  31511. {
  31512. name: "Normal",
  31513. height: math.unit(9, "feet"),
  31514. default: true
  31515. },
  31516. ]
  31517. ))
  31518. characterMakers.push(() => makeCharacter(
  31519. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31520. {
  31521. side: {
  31522. height: math.unit(5, "meters"),
  31523. name: "Side",
  31524. image: {
  31525. source: "./media/characters/vesper/side.svg",
  31526. extra: 1605/1518,
  31527. bottom: 0/1605
  31528. }
  31529. },
  31530. },
  31531. [
  31532. {
  31533. name: "Small",
  31534. height: math.unit(5, "meters")
  31535. },
  31536. {
  31537. name: "Sage",
  31538. height: math.unit(100, "meters"),
  31539. default: true
  31540. },
  31541. {
  31542. name: "Fun Size",
  31543. height: math.unit(600, "meters")
  31544. },
  31545. {
  31546. name: "Goddess",
  31547. height: math.unit(20000, "km")
  31548. },
  31549. {
  31550. name: "Maximum",
  31551. height: math.unit(5, "galaxies")
  31552. },
  31553. ]
  31554. ))
  31555. characterMakers.push(() => makeCharacter(
  31556. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31557. {
  31558. front: {
  31559. height: math.unit(6 + 3/12, "feet"),
  31560. weight: math.unit(190, "lb"),
  31561. name: "Front",
  31562. image: {
  31563. source: "./media/characters/gawain/front.svg",
  31564. extra: 2222/2139,
  31565. bottom: 90/2312
  31566. }
  31567. },
  31568. back: {
  31569. height: math.unit(6 + 3/12, "feet"),
  31570. weight: math.unit(190, "lb"),
  31571. name: "Back",
  31572. image: {
  31573. source: "./media/characters/gawain/back.svg",
  31574. extra: 2199/2111,
  31575. bottom: 73/2272
  31576. }
  31577. },
  31578. },
  31579. [
  31580. {
  31581. name: "Normal",
  31582. height: math.unit(6 + 3/12, "feet"),
  31583. default: true
  31584. },
  31585. ]
  31586. ))
  31587. characterMakers.push(() => makeCharacter(
  31588. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31589. {
  31590. side: {
  31591. height: math.unit(3.5, "meters"),
  31592. weight: math.unit(16000, "lb"),
  31593. name: "Side",
  31594. image: {
  31595. source: "./media/characters/dascalti/side.svg",
  31596. extra: 392/273,
  31597. bottom: 47/439
  31598. }
  31599. },
  31600. breath: {
  31601. height: math.unit(7.4, "feet"),
  31602. name: "Breath",
  31603. image: {
  31604. source: "./media/characters/dascalti/breath.svg"
  31605. }
  31606. },
  31607. fed: {
  31608. height: math.unit(3.6, "meters"),
  31609. weight: math.unit(16000, "lb"),
  31610. name: "Fed",
  31611. image: {
  31612. source: "./media/characters/dascalti/fed.svg",
  31613. extra: 1419/820,
  31614. bottom: 95/1514
  31615. }
  31616. },
  31617. },
  31618. [
  31619. {
  31620. name: "Normal",
  31621. height: math.unit(3.5, "meters"),
  31622. default: true
  31623. },
  31624. ]
  31625. ))
  31626. characterMakers.push(() => makeCharacter(
  31627. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31628. {
  31629. front: {
  31630. height: math.unit(3 + 5/12, "feet"),
  31631. name: "Front",
  31632. image: {
  31633. source: "./media/characters/mauve/front.svg",
  31634. extra: 1126/1033,
  31635. bottom: 65/1191
  31636. }
  31637. },
  31638. side: {
  31639. height: math.unit(3 + 5/12, "feet"),
  31640. name: "Side",
  31641. image: {
  31642. source: "./media/characters/mauve/side.svg",
  31643. extra: 1089/1001,
  31644. bottom: 29/1118
  31645. }
  31646. },
  31647. back: {
  31648. height: math.unit(3 + 5/12, "feet"),
  31649. name: "Back",
  31650. image: {
  31651. source: "./media/characters/mauve/back.svg",
  31652. extra: 1173/1053,
  31653. bottom: 109/1282
  31654. }
  31655. },
  31656. },
  31657. [
  31658. {
  31659. name: "Normal",
  31660. height: math.unit(3 + 5/12, "feet"),
  31661. default: true
  31662. },
  31663. ]
  31664. ))
  31665. characterMakers.push(() => makeCharacter(
  31666. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31667. {
  31668. front: {
  31669. height: math.unit(6 + 3/12, "feet"),
  31670. weight: math.unit(430, "lb"),
  31671. name: "Front",
  31672. image: {
  31673. source: "./media/characters/carlos/front.svg",
  31674. extra: 1964/1913,
  31675. bottom: 70/2034
  31676. }
  31677. },
  31678. },
  31679. [
  31680. {
  31681. name: "Normal",
  31682. height: math.unit(6 + 3/12, "feet"),
  31683. default: true
  31684. },
  31685. ]
  31686. ))
  31687. characterMakers.push(() => makeCharacter(
  31688. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31689. {
  31690. back: {
  31691. height: math.unit(5 + 10/12, "feet"),
  31692. weight: math.unit(200, "lb"),
  31693. name: "Back",
  31694. image: {
  31695. source: "./media/characters/jax/back.svg",
  31696. extra: 764/739,
  31697. bottom: 25/789
  31698. }
  31699. },
  31700. },
  31701. [
  31702. {
  31703. name: "Normal",
  31704. height: math.unit(5 + 10/12, "feet"),
  31705. default: true
  31706. },
  31707. ]
  31708. ))
  31709. characterMakers.push(() => makeCharacter(
  31710. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31711. {
  31712. front: {
  31713. height: math.unit(8, "feet"),
  31714. weight: math.unit(250, "lb"),
  31715. name: "Front",
  31716. image: {
  31717. source: "./media/characters/eikthynir/front.svg",
  31718. extra: 1332/1166,
  31719. bottom: 82/1414
  31720. }
  31721. },
  31722. back: {
  31723. height: math.unit(8, "feet"),
  31724. weight: math.unit(250, "lb"),
  31725. name: "Back",
  31726. image: {
  31727. source: "./media/characters/eikthynir/back.svg",
  31728. extra: 1342/1190,
  31729. bottom: 19/1361
  31730. }
  31731. },
  31732. dick: {
  31733. height: math.unit(2.35, "feet"),
  31734. name: "Dick",
  31735. image: {
  31736. source: "./media/characters/eikthynir/dick.svg"
  31737. }
  31738. },
  31739. },
  31740. [
  31741. {
  31742. name: "Normal",
  31743. height: math.unit(8, "feet"),
  31744. default: true
  31745. },
  31746. ]
  31747. ))
  31748. characterMakers.push(() => makeCharacter(
  31749. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31750. {
  31751. front: {
  31752. height: math.unit(99, "meters"),
  31753. weight: math.unit(13000, "tons"),
  31754. name: "Front",
  31755. image: {
  31756. source: "./media/characters/zlmos/front.svg",
  31757. extra: 2202/1992,
  31758. bottom: 315/2517
  31759. }
  31760. },
  31761. },
  31762. [
  31763. {
  31764. name: "Macro",
  31765. height: math.unit(99, "meters"),
  31766. default: true
  31767. },
  31768. ]
  31769. ))
  31770. characterMakers.push(() => makeCharacter(
  31771. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31772. {
  31773. front: {
  31774. height: math.unit(6 + 5/12, "feet"),
  31775. name: "Front",
  31776. image: {
  31777. source: "./media/characters/purri/front.svg",
  31778. extra: 1698/1610,
  31779. bottom: 32/1730
  31780. }
  31781. },
  31782. frontAlt: {
  31783. height: math.unit(6 + 5/12, "feet"),
  31784. name: "Front (Alt)",
  31785. image: {
  31786. source: "./media/characters/purri/front-alt.svg",
  31787. extra: 450/420,
  31788. bottom: 26/476
  31789. }
  31790. },
  31791. boots: {
  31792. height: math.unit(5.5, "feet"),
  31793. name: "Boots",
  31794. image: {
  31795. source: "./media/characters/purri/boots.svg",
  31796. extra: 905/853,
  31797. bottom: 18/923
  31798. }
  31799. },
  31800. lying: {
  31801. height: math.unit(2, "feet"),
  31802. name: "Lying",
  31803. image: {
  31804. source: "./media/characters/purri/lying.svg",
  31805. extra: 940/843,
  31806. bottom: 146/1086
  31807. }
  31808. },
  31809. devious: {
  31810. height: math.unit(1.77, "feet"),
  31811. name: "Devious",
  31812. image: {
  31813. source: "./media/characters/purri/devious.svg",
  31814. extra: 1440/1155,
  31815. bottom: 147/1587
  31816. }
  31817. },
  31818. bean: {
  31819. height: math.unit(1.94, "feet"),
  31820. name: "Bean",
  31821. image: {
  31822. source: "./media/characters/purri/bean.svg"
  31823. }
  31824. },
  31825. },
  31826. [
  31827. {
  31828. name: "Micro",
  31829. height: math.unit(1, "mm")
  31830. },
  31831. {
  31832. name: "Normal",
  31833. height: math.unit(6 + 5/12, "feet"),
  31834. default: true
  31835. },
  31836. {
  31837. name: "Macro :3c",
  31838. height: math.unit(2, "miles")
  31839. },
  31840. ]
  31841. ))
  31842. characterMakers.push(() => makeCharacter(
  31843. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31844. {
  31845. front: {
  31846. height: math.unit(6 + 2/12, "feet"),
  31847. weight: math.unit(250, "lb"),
  31848. name: "Front",
  31849. image: {
  31850. source: "./media/characters/moonlight/front.svg",
  31851. extra: 1044/908,
  31852. bottom: 56/1100
  31853. }
  31854. },
  31855. feral: {
  31856. height: math.unit(3 + 1/12, "feet"),
  31857. weight: math.unit(50, "kg"),
  31858. name: "Feral",
  31859. image: {
  31860. source: "./media/characters/moonlight/feral.svg",
  31861. extra: 3705/2791,
  31862. bottom: 145/3850
  31863. }
  31864. },
  31865. paw: {
  31866. height: math.unit(1, "feet"),
  31867. name: "Paw",
  31868. image: {
  31869. source: "./media/characters/moonlight/paw.svg"
  31870. }
  31871. },
  31872. paws: {
  31873. height: math.unit(0.98, "feet"),
  31874. name: "Paws",
  31875. image: {
  31876. source: "./media/characters/moonlight/paws.svg",
  31877. extra: 939/939,
  31878. bottom: 50/989
  31879. }
  31880. },
  31881. mouth: {
  31882. height: math.unit(0.48, "feet"),
  31883. name: "Mouth",
  31884. image: {
  31885. source: "./media/characters/moonlight/mouth.svg"
  31886. }
  31887. },
  31888. dick: {
  31889. height: math.unit(1.46, "feet"),
  31890. name: "Dick",
  31891. image: {
  31892. source: "./media/characters/moonlight/dick.svg"
  31893. }
  31894. },
  31895. },
  31896. [
  31897. {
  31898. name: "Normal",
  31899. height: math.unit(6 + 2/12, "feet"),
  31900. default: true
  31901. },
  31902. {
  31903. name: "Macro",
  31904. height: math.unit(300, "feet")
  31905. },
  31906. {
  31907. name: "Macro+",
  31908. height: math.unit(1, "mile")
  31909. },
  31910. {
  31911. name: "Mt. Moon",
  31912. height: math.unit(5, "miles")
  31913. },
  31914. {
  31915. name: "Megamacro",
  31916. height: math.unit(15, "miles")
  31917. },
  31918. ]
  31919. ))
  31920. characterMakers.push(() => makeCharacter(
  31921. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31922. {
  31923. back: {
  31924. height: math.unit(6, "feet"),
  31925. weight: math.unit(150, "lb"),
  31926. name: "Back",
  31927. image: {
  31928. source: "./media/characters/sylen/back.svg",
  31929. extra: 1335/1273,
  31930. bottom: 107/1442
  31931. }
  31932. },
  31933. },
  31934. [
  31935. {
  31936. name: "Normal",
  31937. height: math.unit(5 + 5/12, "feet")
  31938. },
  31939. {
  31940. name: "Megamacro",
  31941. height: math.unit(3, "miles"),
  31942. default: true
  31943. },
  31944. ]
  31945. ))
  31946. characterMakers.push(() => makeCharacter(
  31947. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31948. {
  31949. front: {
  31950. height: math.unit(6, "feet"),
  31951. weight: math.unit(190, "lb"),
  31952. name: "Front",
  31953. image: {
  31954. source: "./media/characters/huttser/front.svg",
  31955. extra: 1152/1058,
  31956. bottom: 23/1175
  31957. }
  31958. },
  31959. side: {
  31960. height: math.unit(6, "feet"),
  31961. weight: math.unit(190, "lb"),
  31962. name: "Side",
  31963. image: {
  31964. source: "./media/characters/huttser/side.svg",
  31965. extra: 1174/1065,
  31966. bottom: 18/1192
  31967. }
  31968. },
  31969. back: {
  31970. height: math.unit(6, "feet"),
  31971. weight: math.unit(190, "lb"),
  31972. name: "Back",
  31973. image: {
  31974. source: "./media/characters/huttser/back.svg",
  31975. extra: 1158/1056,
  31976. bottom: 12/1170
  31977. }
  31978. },
  31979. },
  31980. [
  31981. ]
  31982. ))
  31983. characterMakers.push(() => makeCharacter(
  31984. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31985. {
  31986. side: {
  31987. height: math.unit(12 + 9/12, "feet"),
  31988. weight: math.unit(15000, "lb"),
  31989. name: "Side",
  31990. image: {
  31991. source: "./media/characters/faan/side.svg",
  31992. extra: 2747/2697,
  31993. bottom: 0/2747
  31994. }
  31995. },
  31996. front: {
  31997. height: math.unit(12 + 9/12, "feet"),
  31998. weight: math.unit(15000, "lb"),
  31999. name: "Front",
  32000. image: {
  32001. source: "./media/characters/faan/front.svg",
  32002. extra: 607/571,
  32003. bottom: 24/631
  32004. }
  32005. },
  32006. head: {
  32007. height: math.unit(2.85, "feet"),
  32008. name: "Head",
  32009. image: {
  32010. source: "./media/characters/faan/head.svg"
  32011. }
  32012. },
  32013. headAlt: {
  32014. height: math.unit(3.13, "feet"),
  32015. name: "Head-alt",
  32016. image: {
  32017. source: "./media/characters/faan/head-alt.svg"
  32018. }
  32019. },
  32020. },
  32021. [
  32022. {
  32023. name: "Normal",
  32024. height: math.unit(12 + 9/12, "feet"),
  32025. default: true
  32026. },
  32027. ]
  32028. ))
  32029. characterMakers.push(() => makeCharacter(
  32030. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32031. {
  32032. front: {
  32033. height: math.unit(6, "feet"),
  32034. weight: math.unit(300, "lb"),
  32035. name: "Front",
  32036. image: {
  32037. source: "./media/characters/tanio/front.svg",
  32038. extra: 711/673,
  32039. bottom: 25/736
  32040. }
  32041. },
  32042. },
  32043. [
  32044. {
  32045. name: "Normal",
  32046. height: math.unit(6, "feet"),
  32047. default: true
  32048. },
  32049. ]
  32050. ))
  32051. characterMakers.push(() => makeCharacter(
  32052. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32053. {
  32054. front: {
  32055. height: math.unit(3, "inches"),
  32056. name: "Front",
  32057. image: {
  32058. source: "./media/characters/noboru/front.svg",
  32059. extra: 1039/932,
  32060. bottom: 18/1057
  32061. }
  32062. },
  32063. },
  32064. [
  32065. {
  32066. name: "Micro",
  32067. height: math.unit(3, "inches"),
  32068. default: true
  32069. },
  32070. ]
  32071. ))
  32072. characterMakers.push(() => makeCharacter(
  32073. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32074. {
  32075. front: {
  32076. height: math.unit(1.85, "meters"),
  32077. weight: math.unit(80, "kg"),
  32078. name: "Front",
  32079. image: {
  32080. source: "./media/characters/daniel-barrett/front.svg",
  32081. extra: 355/337,
  32082. bottom: 9/364
  32083. }
  32084. },
  32085. },
  32086. [
  32087. {
  32088. name: "Pico",
  32089. height: math.unit(0.0433, "mm")
  32090. },
  32091. {
  32092. name: "Nano",
  32093. height: math.unit(1.5, "mm")
  32094. },
  32095. {
  32096. name: "Micro",
  32097. height: math.unit(5.3, "cm"),
  32098. default: true
  32099. },
  32100. {
  32101. name: "Normal",
  32102. height: math.unit(1.85, "meters")
  32103. },
  32104. {
  32105. name: "Macro",
  32106. height: math.unit(64.7, "meters")
  32107. },
  32108. {
  32109. name: "Megamacro",
  32110. height: math.unit(2.26, "km")
  32111. },
  32112. {
  32113. name: "Gigamacro",
  32114. height: math.unit(79, "km")
  32115. },
  32116. {
  32117. name: "Teramacro",
  32118. height: math.unit(2765, "km")
  32119. },
  32120. {
  32121. name: "Petamacro",
  32122. height: math.unit(96678, "km")
  32123. },
  32124. ]
  32125. ))
  32126. characterMakers.push(() => makeCharacter(
  32127. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32128. {
  32129. front: {
  32130. height: math.unit(30, "meters"),
  32131. weight: math.unit(400, "tons"),
  32132. name: "Front",
  32133. image: {
  32134. source: "./media/characters/zeel/front.svg",
  32135. extra: 2599/2599,
  32136. bottom: 226/2825
  32137. }
  32138. },
  32139. },
  32140. [
  32141. {
  32142. name: "Macro",
  32143. height: math.unit(30, "meters"),
  32144. default: true
  32145. },
  32146. ]
  32147. ))
  32148. characterMakers.push(() => makeCharacter(
  32149. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32150. {
  32151. front: {
  32152. height: math.unit(6 + 7/12, "feet"),
  32153. weight: math.unit(210, "lb"),
  32154. name: "Front",
  32155. image: {
  32156. source: "./media/characters/tarn/front.svg",
  32157. extra: 3517/3220,
  32158. bottom: 91/3608
  32159. }
  32160. },
  32161. back: {
  32162. height: math.unit(6 + 7/12, "feet"),
  32163. weight: math.unit(210, "lb"),
  32164. name: "Back",
  32165. image: {
  32166. source: "./media/characters/tarn/back.svg",
  32167. extra: 3566/3241,
  32168. bottom: 34/3600
  32169. }
  32170. },
  32171. dick: {
  32172. height: math.unit(1.65, "feet"),
  32173. name: "Dick",
  32174. image: {
  32175. source: "./media/characters/tarn/dick.svg"
  32176. }
  32177. },
  32178. paw: {
  32179. height: math.unit(1.80, "feet"),
  32180. name: "Paw",
  32181. image: {
  32182. source: "./media/characters/tarn/paw.svg"
  32183. }
  32184. },
  32185. tongue: {
  32186. height: math.unit(0.97, "feet"),
  32187. name: "Tongue",
  32188. image: {
  32189. source: "./media/characters/tarn/tongue.svg"
  32190. }
  32191. },
  32192. },
  32193. [
  32194. {
  32195. name: "Micro",
  32196. height: math.unit(4, "inches")
  32197. },
  32198. {
  32199. name: "Normal",
  32200. height: math.unit(6 + 7/12, "feet"),
  32201. default: true
  32202. },
  32203. {
  32204. name: "Macro",
  32205. height: math.unit(300, "feet")
  32206. },
  32207. ]
  32208. ))
  32209. characterMakers.push(() => makeCharacter(
  32210. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32211. {
  32212. front: {
  32213. height: math.unit(5 + 7/12, "feet"),
  32214. weight: math.unit(80, "kg"),
  32215. name: "Front",
  32216. image: {
  32217. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32218. extra: 3023/2865,
  32219. bottom: 33/3056
  32220. }
  32221. },
  32222. back: {
  32223. height: math.unit(5 + 7/12, "feet"),
  32224. weight: math.unit(80, "kg"),
  32225. name: "Back",
  32226. image: {
  32227. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32228. extra: 3020/2886,
  32229. bottom: 30/3050
  32230. }
  32231. },
  32232. dick: {
  32233. height: math.unit(0.98, "feet"),
  32234. name: "Dick",
  32235. image: {
  32236. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32237. }
  32238. },
  32239. anatomy: {
  32240. height: math.unit(2.86, "feet"),
  32241. name: "Anatomy",
  32242. image: {
  32243. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32244. }
  32245. },
  32246. },
  32247. [
  32248. {
  32249. name: "Really Small",
  32250. height: math.unit(2, "inches")
  32251. },
  32252. {
  32253. name: "Micro",
  32254. height: math.unit(5.583, "inches")
  32255. },
  32256. {
  32257. name: "Normal",
  32258. height: math.unit(5 + 7/12, "feet"),
  32259. default: true
  32260. },
  32261. {
  32262. name: "Macro",
  32263. height: math.unit(67, "feet")
  32264. },
  32265. {
  32266. name: "Megamacro",
  32267. height: math.unit(134, "feet")
  32268. },
  32269. ]
  32270. ))
  32271. characterMakers.push(() => makeCharacter(
  32272. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32273. {
  32274. front: {
  32275. height: math.unit(9, "feet"),
  32276. weight: math.unit(120, "lb"),
  32277. name: "Front",
  32278. image: {
  32279. source: "./media/characters/sally/front.svg",
  32280. extra: 1506/1349,
  32281. bottom: 66/1572
  32282. }
  32283. },
  32284. },
  32285. [
  32286. {
  32287. name: "Normal",
  32288. height: math.unit(9, "feet"),
  32289. default: true
  32290. },
  32291. ]
  32292. ))
  32293. characterMakers.push(() => makeCharacter(
  32294. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32295. {
  32296. front: {
  32297. height: math.unit(8, "feet"),
  32298. weight: math.unit(900, "lb"),
  32299. name: "Front",
  32300. image: {
  32301. source: "./media/characters/owen/front.svg",
  32302. extra: 1761/1657,
  32303. bottom: 74/1835
  32304. }
  32305. },
  32306. side: {
  32307. height: math.unit(8, "feet"),
  32308. weight: math.unit(900, "lb"),
  32309. name: "Side",
  32310. image: {
  32311. source: "./media/characters/owen/side.svg",
  32312. extra: 1797/1734,
  32313. bottom: 30/1827
  32314. }
  32315. },
  32316. back: {
  32317. height: math.unit(8, "feet"),
  32318. weight: math.unit(900, "lb"),
  32319. name: "Back",
  32320. image: {
  32321. source: "./media/characters/owen/back.svg",
  32322. extra: 1796/1706,
  32323. bottom: 59/1855
  32324. }
  32325. },
  32326. maw: {
  32327. height: math.unit(1.76, "feet"),
  32328. name: "Maw",
  32329. image: {
  32330. source: "./media/characters/owen/maw.svg"
  32331. }
  32332. },
  32333. },
  32334. [
  32335. {
  32336. name: "Normal",
  32337. height: math.unit(8, "feet"),
  32338. default: true
  32339. },
  32340. ]
  32341. ))
  32342. characterMakers.push(() => makeCharacter(
  32343. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32344. {
  32345. front: {
  32346. height: math.unit(4, "feet"),
  32347. weight: math.unit(400, "lb"),
  32348. name: "Front",
  32349. image: {
  32350. source: "./media/characters/ryth/front.svg",
  32351. extra: 1920/1748,
  32352. bottom: 42/1962
  32353. }
  32354. },
  32355. back: {
  32356. height: math.unit(4, "feet"),
  32357. weight: math.unit(400, "lb"),
  32358. name: "Back",
  32359. image: {
  32360. source: "./media/characters/ryth/back.svg",
  32361. extra: 1897/1690,
  32362. bottom: 89/1986
  32363. }
  32364. },
  32365. mouth: {
  32366. height: math.unit(1.39, "feet"),
  32367. name: "Mouth",
  32368. image: {
  32369. source: "./media/characters/ryth/mouth.svg"
  32370. }
  32371. },
  32372. tailmaw: {
  32373. height: math.unit(1.23, "feet"),
  32374. name: "Tailmaw",
  32375. image: {
  32376. source: "./media/characters/ryth/tailmaw.svg"
  32377. }
  32378. },
  32379. goia: {
  32380. height: math.unit(4, "meters"),
  32381. weight: math.unit(10800, "lb"),
  32382. name: "Goia",
  32383. image: {
  32384. source: "./media/characters/ryth/goia.svg",
  32385. extra: 745/640,
  32386. bottom: 107/852
  32387. }
  32388. },
  32389. goiaFront: {
  32390. height: math.unit(4, "meters"),
  32391. weight: math.unit(10800, "lb"),
  32392. name: "Goia (Front)",
  32393. image: {
  32394. source: "./media/characters/ryth/goia-front.svg",
  32395. extra: 750/586,
  32396. bottom: 114/864
  32397. }
  32398. },
  32399. goiaMaw: {
  32400. height: math.unit(5.55, "feet"),
  32401. name: "Goia Maw",
  32402. image: {
  32403. source: "./media/characters/ryth/goia-maw.svg"
  32404. }
  32405. },
  32406. goiaForepaw: {
  32407. height: math.unit(3.5, "feet"),
  32408. name: "Goia Forepaw",
  32409. image: {
  32410. source: "./media/characters/ryth/goia-forepaw.svg"
  32411. }
  32412. },
  32413. goiaHindpaw: {
  32414. height: math.unit(5.55, "feet"),
  32415. name: "Goia Hindpaw",
  32416. image: {
  32417. source: "./media/characters/ryth/goia-hindpaw.svg"
  32418. }
  32419. },
  32420. },
  32421. [
  32422. {
  32423. name: "Normal",
  32424. height: math.unit(4, "feet"),
  32425. default: true
  32426. },
  32427. ]
  32428. ))
  32429. characterMakers.push(() => makeCharacter(
  32430. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32431. {
  32432. front: {
  32433. height: math.unit(7, "feet"),
  32434. weight: math.unit(180, "lb"),
  32435. name: "Front",
  32436. image: {
  32437. source: "./media/characters/necrolance/front.svg",
  32438. extra: 1062/947,
  32439. bottom: 41/1103
  32440. }
  32441. },
  32442. back: {
  32443. height: math.unit(7, "feet"),
  32444. weight: math.unit(180, "lb"),
  32445. name: "Back",
  32446. image: {
  32447. source: "./media/characters/necrolance/back.svg",
  32448. extra: 1045/984,
  32449. bottom: 14/1059
  32450. }
  32451. },
  32452. wing: {
  32453. height: math.unit(2.67, "feet"),
  32454. name: "Wing",
  32455. image: {
  32456. source: "./media/characters/necrolance/wing.svg"
  32457. }
  32458. },
  32459. },
  32460. [
  32461. {
  32462. name: "Normal",
  32463. height: math.unit(7, "feet"),
  32464. default: true
  32465. },
  32466. ]
  32467. ))
  32468. characterMakers.push(() => makeCharacter(
  32469. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32470. {
  32471. front: {
  32472. height: math.unit(76, "meters"),
  32473. weight: math.unit(30000, "tons"),
  32474. name: "Front",
  32475. image: {
  32476. source: "./media/characters/tyler/front.svg",
  32477. extra: 1640/1640,
  32478. bottom: 114/1754
  32479. }
  32480. },
  32481. },
  32482. [
  32483. {
  32484. name: "Macro",
  32485. height: math.unit(76, "meters"),
  32486. default: true
  32487. },
  32488. ]
  32489. ))
  32490. characterMakers.push(() => makeCharacter(
  32491. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32492. {
  32493. front: {
  32494. height: math.unit(4 + 11/12, "feet"),
  32495. weight: math.unit(132, "lb"),
  32496. name: "Front",
  32497. image: {
  32498. source: "./media/characters/icey/front.svg",
  32499. extra: 2750/2550,
  32500. bottom: 33/2783
  32501. }
  32502. },
  32503. back: {
  32504. height: math.unit(4 + 11/12, "feet"),
  32505. weight: math.unit(132, "lb"),
  32506. name: "Back",
  32507. image: {
  32508. source: "./media/characters/icey/back.svg",
  32509. extra: 2624/2481,
  32510. bottom: 35/2659
  32511. }
  32512. },
  32513. },
  32514. [
  32515. {
  32516. name: "Normal",
  32517. height: math.unit(4 + 11/12, "feet"),
  32518. default: true
  32519. },
  32520. ]
  32521. ))
  32522. characterMakers.push(() => makeCharacter(
  32523. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32524. {
  32525. front: {
  32526. height: math.unit(100, "feet"),
  32527. weight: math.unit(0, "lb"),
  32528. name: "Front",
  32529. image: {
  32530. source: "./media/characters/smile/front.svg",
  32531. extra: 2983/2912,
  32532. bottom: 162/3145
  32533. }
  32534. },
  32535. back: {
  32536. height: math.unit(100, "feet"),
  32537. weight: math.unit(0, "lb"),
  32538. name: "Back",
  32539. image: {
  32540. source: "./media/characters/smile/back.svg",
  32541. extra: 3143/3031,
  32542. bottom: 91/3234
  32543. }
  32544. },
  32545. head: {
  32546. height: math.unit(26.3, "feet"),
  32547. weight: math.unit(0, "lb"),
  32548. name: "Head",
  32549. image: {
  32550. source: "./media/characters/smile/head.svg"
  32551. }
  32552. },
  32553. collar: {
  32554. height: math.unit(5.3, "feet"),
  32555. weight: math.unit(0, "lb"),
  32556. name: "Collar",
  32557. image: {
  32558. source: "./media/characters/smile/collar.svg"
  32559. }
  32560. },
  32561. },
  32562. [
  32563. {
  32564. name: "Macro",
  32565. height: math.unit(100, "feet"),
  32566. default: true
  32567. },
  32568. ]
  32569. ))
  32570. characterMakers.push(() => makeCharacter(
  32571. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32572. {
  32573. dragon: {
  32574. height: math.unit(26, "feet"),
  32575. weight: math.unit(36, "tons"),
  32576. name: "Dragon",
  32577. image: {
  32578. source: "./media/characters/arimphae/dragon.svg",
  32579. extra: 1574/983,
  32580. bottom: 357/1931
  32581. }
  32582. },
  32583. drake: {
  32584. height: math.unit(9, "feet"),
  32585. weight: math.unit(1.5, "tons"),
  32586. name: "Drake",
  32587. image: {
  32588. source: "./media/characters/arimphae/drake.svg",
  32589. extra: 1120/925,
  32590. bottom: 435/1555
  32591. }
  32592. },
  32593. },
  32594. [
  32595. {
  32596. name: "Small",
  32597. height: math.unit(26*5/9, "feet")
  32598. },
  32599. {
  32600. name: "Normal",
  32601. height: math.unit(26, "feet"),
  32602. default: true
  32603. },
  32604. ]
  32605. ))
  32606. characterMakers.push(() => makeCharacter(
  32607. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32608. {
  32609. front: {
  32610. height: math.unit(8 + 9/12, "feet"),
  32611. name: "Front",
  32612. image: {
  32613. source: "./media/characters/xander/front.svg",
  32614. extra: 1237/974,
  32615. bottom: 94/1331
  32616. }
  32617. },
  32618. },
  32619. [
  32620. {
  32621. name: "Normal",
  32622. height: math.unit(8 + 9/12, "feet"),
  32623. default: true
  32624. },
  32625. {
  32626. name: "Gaze Grabber",
  32627. height: math.unit(13 + 8/12, "feet")
  32628. },
  32629. {
  32630. name: "Jaw Dropper",
  32631. height: math.unit(27, "feet")
  32632. },
  32633. {
  32634. name: "Show Stopper",
  32635. height: math.unit(136, "feet")
  32636. },
  32637. {
  32638. name: "Superstar",
  32639. height: math.unit(1.9e6, "miles")
  32640. },
  32641. ]
  32642. ))
  32643. characterMakers.push(() => makeCharacter(
  32644. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32645. {
  32646. side: {
  32647. height: math.unit(2100, "feet"),
  32648. name: "Side",
  32649. image: {
  32650. source: "./media/characters/osiris/side.svg",
  32651. extra: 1105/939,
  32652. bottom: 167/1272
  32653. }
  32654. },
  32655. },
  32656. [
  32657. {
  32658. name: "Macro",
  32659. height: math.unit(2100, "feet"),
  32660. default: true
  32661. },
  32662. ]
  32663. ))
  32664. characterMakers.push(() => makeCharacter(
  32665. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32666. {
  32667. front: {
  32668. height: math.unit(6 + 8/12, "feet"),
  32669. weight: math.unit(225, "lb"),
  32670. name: "Front",
  32671. image: {
  32672. source: "./media/characters/rhys-londe/front.svg",
  32673. extra: 2258/2141,
  32674. bottom: 188/2446
  32675. }
  32676. },
  32677. back: {
  32678. height: math.unit(6 + 8/12, "feet"),
  32679. weight: math.unit(225, "lb"),
  32680. name: "Back",
  32681. image: {
  32682. source: "./media/characters/rhys-londe/back.svg",
  32683. extra: 2237/2137,
  32684. bottom: 63/2300
  32685. }
  32686. },
  32687. frontNsfw: {
  32688. height: math.unit(6 + 8/12, "feet"),
  32689. weight: math.unit(225, "lb"),
  32690. name: "Front (NSFW)",
  32691. image: {
  32692. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32693. extra: 2258/2141,
  32694. bottom: 188/2446
  32695. }
  32696. },
  32697. backNsfw: {
  32698. height: math.unit(6 + 8/12, "feet"),
  32699. weight: math.unit(225, "lb"),
  32700. name: "Back (NSFW)",
  32701. image: {
  32702. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32703. extra: 2237/2137,
  32704. bottom: 63/2300
  32705. }
  32706. },
  32707. dick: {
  32708. height: math.unit(30, "inches"),
  32709. name: "Dick",
  32710. image: {
  32711. source: "./media/characters/rhys-londe/dick.svg"
  32712. }
  32713. },
  32714. maw: {
  32715. height: math.unit(1.6, "feet"),
  32716. name: "Maw",
  32717. image: {
  32718. source: "./media/characters/rhys-londe/maw.svg"
  32719. }
  32720. },
  32721. },
  32722. [
  32723. {
  32724. name: "Normal",
  32725. height: math.unit(6 + 8/12, "feet"),
  32726. default: true
  32727. },
  32728. ]
  32729. ))
  32730. characterMakers.push(() => makeCharacter(
  32731. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32732. {
  32733. front: {
  32734. height: math.unit(3 + 10/12, "feet"),
  32735. weight: math.unit(90, "lb"),
  32736. name: "Front",
  32737. image: {
  32738. source: "./media/characters/taivas-ensim/front.svg",
  32739. extra: 1327/1216,
  32740. bottom: 96/1423
  32741. }
  32742. },
  32743. back: {
  32744. height: math.unit(3 + 10/12, "feet"),
  32745. weight: math.unit(90, "lb"),
  32746. name: "Back",
  32747. image: {
  32748. source: "./media/characters/taivas-ensim/back.svg",
  32749. extra: 1355/1247,
  32750. bottom: 11/1366
  32751. }
  32752. },
  32753. frontNsfw: {
  32754. height: math.unit(3 + 10/12, "feet"),
  32755. weight: math.unit(90, "lb"),
  32756. name: "Front (NSFW)",
  32757. image: {
  32758. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32759. extra: 1327/1216,
  32760. bottom: 96/1423
  32761. }
  32762. },
  32763. backNsfw: {
  32764. height: math.unit(3 + 10/12, "feet"),
  32765. weight: math.unit(90, "lb"),
  32766. name: "Back (NSFW)",
  32767. image: {
  32768. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32769. extra: 1355/1247,
  32770. bottom: 11/1366
  32771. }
  32772. },
  32773. },
  32774. [
  32775. {
  32776. name: "Normal",
  32777. height: math.unit(3 + 10/12, "feet"),
  32778. default: true
  32779. },
  32780. ]
  32781. ))
  32782. characterMakers.push(() => makeCharacter(
  32783. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32784. {
  32785. front: {
  32786. height: math.unit(9 + 6/12, "feet"),
  32787. weight: math.unit(940, "lb"),
  32788. name: "Front",
  32789. image: {
  32790. source: "./media/characters/byliss/front.svg",
  32791. extra: 1327/1290,
  32792. bottom: 82/1409
  32793. }
  32794. },
  32795. back: {
  32796. height: math.unit(9 + 6/12, "feet"),
  32797. weight: math.unit(940, "lb"),
  32798. name: "Back",
  32799. image: {
  32800. source: "./media/characters/byliss/back.svg",
  32801. extra: 1376/1349,
  32802. bottom: 9/1385
  32803. }
  32804. },
  32805. frontNsfw: {
  32806. height: math.unit(9 + 6/12, "feet"),
  32807. weight: math.unit(940, "lb"),
  32808. name: "Front (NSFW)",
  32809. image: {
  32810. source: "./media/characters/byliss/front-nsfw.svg",
  32811. extra: 1327/1290,
  32812. bottom: 82/1409
  32813. }
  32814. },
  32815. backNsfw: {
  32816. height: math.unit(9 + 6/12, "feet"),
  32817. weight: math.unit(940, "lb"),
  32818. name: "Back (NSFW)",
  32819. image: {
  32820. source: "./media/characters/byliss/back-nsfw.svg",
  32821. extra: 1376/1349,
  32822. bottom: 9/1385
  32823. }
  32824. },
  32825. },
  32826. [
  32827. {
  32828. name: "Normal",
  32829. height: math.unit(9 + 6/12, "feet"),
  32830. default: true
  32831. },
  32832. ]
  32833. ))
  32834. characterMakers.push(() => makeCharacter(
  32835. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32836. {
  32837. front: {
  32838. height: math.unit(5 + 2/12, "feet"),
  32839. weight: math.unit(200, "lb"),
  32840. name: "Front",
  32841. image: {
  32842. source: "./media/characters/noraly/front.svg",
  32843. extra: 4985/4773,
  32844. bottom: 150/5135
  32845. }
  32846. },
  32847. full: {
  32848. height: math.unit(5 + 2/12, "feet"),
  32849. weight: math.unit(164, "lb"),
  32850. name: "Full",
  32851. image: {
  32852. source: "./media/characters/noraly/full.svg",
  32853. extra: 1114/1059,
  32854. bottom: 35/1149
  32855. }
  32856. },
  32857. fuller: {
  32858. height: math.unit(5 + 2/12, "feet"),
  32859. weight: math.unit(230, "lb"),
  32860. name: "Fuller",
  32861. image: {
  32862. source: "./media/characters/noraly/fuller.svg",
  32863. extra: 1114/1059,
  32864. bottom: 35/1149
  32865. }
  32866. },
  32867. fullest: {
  32868. height: math.unit(5 + 2/12, "feet"),
  32869. weight: math.unit(300, "lb"),
  32870. name: "Fullest",
  32871. image: {
  32872. source: "./media/characters/noraly/fullest.svg",
  32873. extra: 1114/1059,
  32874. bottom: 35/1149
  32875. }
  32876. },
  32877. },
  32878. [
  32879. {
  32880. name: "Normal",
  32881. height: math.unit(5 + 2/12, "feet"),
  32882. default: true
  32883. },
  32884. ]
  32885. ))
  32886. characterMakers.push(() => makeCharacter(
  32887. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32888. {
  32889. front: {
  32890. height: math.unit(5 + 2/12, "feet"),
  32891. weight: math.unit(210, "lb"),
  32892. name: "Front",
  32893. image: {
  32894. source: "./media/characters/pera/front.svg",
  32895. extra: 1560/1531,
  32896. bottom: 165/1725
  32897. }
  32898. },
  32899. back: {
  32900. height: math.unit(5 + 2/12, "feet"),
  32901. weight: math.unit(210, "lb"),
  32902. name: "Back",
  32903. image: {
  32904. source: "./media/characters/pera/back.svg",
  32905. extra: 1523/1493,
  32906. bottom: 152/1675
  32907. }
  32908. },
  32909. dick: {
  32910. height: math.unit(2.4, "feet"),
  32911. name: "Dick",
  32912. image: {
  32913. source: "./media/characters/pera/dick.svg"
  32914. }
  32915. },
  32916. },
  32917. [
  32918. {
  32919. name: "Normal",
  32920. height: math.unit(5 + 2/12, "feet"),
  32921. default: true
  32922. },
  32923. ]
  32924. ))
  32925. characterMakers.push(() => makeCharacter(
  32926. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32927. {
  32928. front: {
  32929. height: math.unit(12, "feet"),
  32930. weight: math.unit(3200, "lb"),
  32931. name: "Front",
  32932. image: {
  32933. source: "./media/characters/julian/front.svg",
  32934. extra: 2962/2701,
  32935. bottom: 184/3146
  32936. }
  32937. },
  32938. maw: {
  32939. height: math.unit(5.35, "feet"),
  32940. name: "Maw",
  32941. image: {
  32942. source: "./media/characters/julian/maw.svg"
  32943. }
  32944. },
  32945. paw: {
  32946. height: math.unit(3.07, "feet"),
  32947. name: "Paw",
  32948. image: {
  32949. source: "./media/characters/julian/paw.svg"
  32950. }
  32951. },
  32952. },
  32953. [
  32954. {
  32955. name: "Default",
  32956. height: math.unit(12, "feet"),
  32957. default: true
  32958. },
  32959. {
  32960. name: "Big",
  32961. height: math.unit(50, "feet")
  32962. },
  32963. {
  32964. name: "Really Big",
  32965. height: math.unit(1, "mile")
  32966. },
  32967. {
  32968. name: "Extremely Big",
  32969. height: math.unit(100, "miles")
  32970. },
  32971. {
  32972. name: "Planet Hugger",
  32973. height: math.unit(200, "megameters")
  32974. },
  32975. {
  32976. name: "Unreasonably Big",
  32977. height: math.unit(1e300, "meters")
  32978. },
  32979. ]
  32980. ))
  32981. characterMakers.push(() => makeCharacter(
  32982. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32983. {
  32984. solgooleo: {
  32985. height: math.unit(4, "meters"),
  32986. weight: math.unit(6000*1.5, "kg"),
  32987. volume: math.unit(6000, "liters"),
  32988. name: "Solgooleo",
  32989. image: {
  32990. source: "./media/characters/pi/solgooleo.svg",
  32991. extra: 388/331,
  32992. bottom: 29/417
  32993. }
  32994. },
  32995. },
  32996. [
  32997. {
  32998. name: "Normal",
  32999. height: math.unit(4, "meters"),
  33000. default: true
  33001. },
  33002. ]
  33003. ))
  33004. characterMakers.push(() => makeCharacter(
  33005. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33006. {
  33007. front: {
  33008. height: math.unit(8, "feet"),
  33009. weight: math.unit(4, "tons"),
  33010. name: "Front",
  33011. image: {
  33012. source: "./media/characters/shaun/front.svg",
  33013. extra: 503/495,
  33014. bottom: 20/523
  33015. }
  33016. },
  33017. back: {
  33018. height: math.unit(8, "feet"),
  33019. weight: math.unit(4, "tons"),
  33020. name: "Back",
  33021. image: {
  33022. source: "./media/characters/shaun/back.svg",
  33023. extra: 487/480,
  33024. bottom: 20/507
  33025. }
  33026. },
  33027. },
  33028. [
  33029. {
  33030. name: "Lorg",
  33031. height: math.unit(8, "feet"),
  33032. default: true
  33033. },
  33034. ]
  33035. ))
  33036. characterMakers.push(() => makeCharacter(
  33037. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33038. {
  33039. frontAnthro: {
  33040. height: math.unit(7, "feet"),
  33041. name: "Front",
  33042. image: {
  33043. source: "./media/characters/sini/front-anthro.svg",
  33044. extra: 726/678,
  33045. bottom: 35/761
  33046. },
  33047. form: "anthro",
  33048. default: true
  33049. },
  33050. backAnthro: {
  33051. height: math.unit(7, "feet"),
  33052. name: "Back",
  33053. image: {
  33054. source: "./media/characters/sini/back-anthro.svg",
  33055. extra: 743/701,
  33056. bottom: 12/755
  33057. },
  33058. form: "anthro",
  33059. },
  33060. frontAnthroNsfw: {
  33061. height: math.unit(7, "feet"),
  33062. name: "Front (NSFW)",
  33063. image: {
  33064. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33065. extra: 726/678,
  33066. bottom: 35/761
  33067. },
  33068. form: "anthro"
  33069. },
  33070. backAnthroNsfw: {
  33071. height: math.unit(7, "feet"),
  33072. name: "Back (NSFW)",
  33073. image: {
  33074. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33075. extra: 743/701,
  33076. bottom: 12/755
  33077. },
  33078. form: "anthro",
  33079. },
  33080. mawAnthro: {
  33081. height: math.unit(2.14, "feet"),
  33082. name: "Maw",
  33083. image: {
  33084. source: "./media/characters/sini/maw-anthro.svg"
  33085. },
  33086. form: "anthro"
  33087. },
  33088. dick: {
  33089. height: math.unit(1.45, "feet"),
  33090. name: "Dick",
  33091. image: {
  33092. source: "./media/characters/sini/dick-anthro.svg"
  33093. },
  33094. form: "anthro"
  33095. },
  33096. feral: {
  33097. height: math.unit(16, "feet"),
  33098. name: "Feral",
  33099. image: {
  33100. source: "./media/characters/sini/feral.svg",
  33101. extra: 814/605,
  33102. bottom: 11/825
  33103. },
  33104. form: "feral",
  33105. default: true
  33106. },
  33107. feralNsfw: {
  33108. height: math.unit(16, "feet"),
  33109. name: "Feral (NSFW)",
  33110. image: {
  33111. source: "./media/characters/sini/feral-nsfw.svg",
  33112. extra: 814/605,
  33113. bottom: 11/825
  33114. },
  33115. form: "feral"
  33116. },
  33117. mawFeral: {
  33118. height: math.unit(5.66, "feet"),
  33119. name: "Maw",
  33120. image: {
  33121. source: "./media/characters/sini/maw-feral.svg"
  33122. },
  33123. form: "feral",
  33124. },
  33125. pawFeral: {
  33126. height: math.unit(5.17, "feet"),
  33127. name: "Paw",
  33128. image: {
  33129. source: "./media/characters/sini/paw-feral.svg"
  33130. },
  33131. form: "feral",
  33132. },
  33133. rumpFeral: {
  33134. height: math.unit(13.11, "feet"),
  33135. name: "Rump",
  33136. image: {
  33137. source: "./media/characters/sini/rump-feral.svg"
  33138. },
  33139. form: "feral",
  33140. },
  33141. dickFeral: {
  33142. height: math.unit(1, "feet"),
  33143. name: "Dick",
  33144. image: {
  33145. source: "./media/characters/sini/dick-feral.svg"
  33146. },
  33147. form: "feral",
  33148. },
  33149. eyeFeral: {
  33150. height: math.unit(1.23, "feet"),
  33151. name: "Eye",
  33152. image: {
  33153. source: "./media/characters/sini/eye-feral.svg"
  33154. },
  33155. form: "feral",
  33156. },
  33157. },
  33158. [
  33159. {
  33160. name: "Normal",
  33161. height: math.unit(7, "feet"),
  33162. default: true,
  33163. form: "anthro"
  33164. },
  33165. {
  33166. name: "Normal",
  33167. height: math.unit(16, "feet"),
  33168. default: true,
  33169. form: "feral"
  33170. },
  33171. ],
  33172. {
  33173. "anthro": {
  33174. name: "Anthro",
  33175. default: true
  33176. },
  33177. "feral": {
  33178. name: "Feral",
  33179. }
  33180. }
  33181. ))
  33182. characterMakers.push(() => makeCharacter(
  33183. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33184. {
  33185. side: {
  33186. height: math.unit(13, "meters"),
  33187. weight: math.unit(9072, "kg"),
  33188. name: "Side",
  33189. image: {
  33190. source: "./media/characters/raylldo/side.svg",
  33191. extra: 403/344,
  33192. bottom: 42/445
  33193. }
  33194. },
  33195. leaping: {
  33196. height: math.unit(12.3, "meters"),
  33197. weight: math.unit(9072, "kg"),
  33198. name: "Leaping",
  33199. image: {
  33200. source: "./media/characters/raylldo/leaping.svg",
  33201. extra: 470/249,
  33202. bottom: 13/483
  33203. }
  33204. },
  33205. flying: {
  33206. height: math.unit(18, "meters"),
  33207. weight: math.unit(9072, "kg"),
  33208. name: "Flying",
  33209. image: {
  33210. source: "./media/characters/raylldo/flying.svg"
  33211. }
  33212. },
  33213. head: {
  33214. height: math.unit(5.85, "meters"),
  33215. name: "Head",
  33216. image: {
  33217. source: "./media/characters/raylldo/head.svg"
  33218. }
  33219. },
  33220. maw: {
  33221. height: math.unit(5.32, "meters"),
  33222. name: "Maw",
  33223. image: {
  33224. source: "./media/characters/raylldo/maw.svg"
  33225. }
  33226. },
  33227. eye: {
  33228. height: math.unit(0.54, "meters"),
  33229. name: "Eye",
  33230. image: {
  33231. source: "./media/characters/raylldo/eye.svg"
  33232. }
  33233. },
  33234. },
  33235. [
  33236. {
  33237. name: "Normal",
  33238. height: math.unit(13, "meters"),
  33239. default: true
  33240. },
  33241. ]
  33242. ))
  33243. characterMakers.push(() => makeCharacter(
  33244. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33245. {
  33246. anthroFront: {
  33247. height: math.unit(9, "feet"),
  33248. weight: math.unit(600, "lb"),
  33249. name: "Anthro (Front)",
  33250. image: {
  33251. source: "./media/characters/glint/anthro-front.svg",
  33252. extra: 1097/1018,
  33253. bottom: 28/1125
  33254. }
  33255. },
  33256. anthroBack: {
  33257. height: math.unit(9, "feet"),
  33258. weight: math.unit(600, "lb"),
  33259. name: "Anthro (Back)",
  33260. image: {
  33261. source: "./media/characters/glint/anthro-back.svg",
  33262. extra: 1154/997,
  33263. bottom: 36/1190
  33264. }
  33265. },
  33266. feral: {
  33267. height: math.unit(11, "feet"),
  33268. weight: math.unit(50000, "lb"),
  33269. name: "Feral",
  33270. image: {
  33271. source: "./media/characters/glint/feral.svg",
  33272. extra: 3035/1585,
  33273. bottom: 1169/4204
  33274. }
  33275. },
  33276. dickAnthro: {
  33277. height: math.unit(0.7, "meters"),
  33278. name: "Dick (Anthro)",
  33279. image: {
  33280. source: "./media/characters/glint/dick-anthro.svg"
  33281. }
  33282. },
  33283. dickFeral: {
  33284. height: math.unit(2.65, "meters"),
  33285. name: "Dick (Feral)",
  33286. image: {
  33287. source: "./media/characters/glint/dick-feral.svg"
  33288. }
  33289. },
  33290. slitHidden: {
  33291. height: math.unit(5.85, "meters"),
  33292. name: "Slit (Hidden)",
  33293. image: {
  33294. source: "./media/characters/glint/slit-hidden.svg"
  33295. }
  33296. },
  33297. slitErect: {
  33298. height: math.unit(5.85, "meters"),
  33299. name: "Slit (Erect)",
  33300. image: {
  33301. source: "./media/characters/glint/slit-erect.svg"
  33302. }
  33303. },
  33304. mawAnthro: {
  33305. height: math.unit(0.63, "meters"),
  33306. name: "Maw (Anthro)",
  33307. image: {
  33308. source: "./media/characters/glint/maw.svg"
  33309. }
  33310. },
  33311. mawFeral: {
  33312. height: math.unit(2.89, "meters"),
  33313. name: "Maw (Feral)",
  33314. image: {
  33315. source: "./media/characters/glint/maw.svg"
  33316. }
  33317. },
  33318. },
  33319. [
  33320. {
  33321. name: "Normal",
  33322. height: math.unit(9, "feet"),
  33323. default: true
  33324. },
  33325. ]
  33326. ))
  33327. characterMakers.push(() => makeCharacter(
  33328. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33329. {
  33330. side: {
  33331. height: math.unit(15, "feet"),
  33332. weight: math.unit(5000, "kg"),
  33333. name: "Side",
  33334. image: {
  33335. source: "./media/characters/kairne/side.svg",
  33336. extra: 979/811,
  33337. bottom: 13/992
  33338. }
  33339. },
  33340. front: {
  33341. height: math.unit(15, "feet"),
  33342. weight: math.unit(5000, "kg"),
  33343. name: "Front",
  33344. image: {
  33345. source: "./media/characters/kairne/front.svg",
  33346. extra: 908/814,
  33347. bottom: 26/934
  33348. }
  33349. },
  33350. sideNsfw: {
  33351. height: math.unit(15, "feet"),
  33352. weight: math.unit(5000, "kg"),
  33353. name: "Side (NSFW)",
  33354. image: {
  33355. source: "./media/characters/kairne/side-nsfw.svg",
  33356. extra: 979/811,
  33357. bottom: 13/992
  33358. }
  33359. },
  33360. frontNsfw: {
  33361. height: math.unit(15, "feet"),
  33362. weight: math.unit(5000, "kg"),
  33363. name: "Front (NSFW)",
  33364. image: {
  33365. source: "./media/characters/kairne/front-nsfw.svg",
  33366. extra: 908/814,
  33367. bottom: 26/934
  33368. }
  33369. },
  33370. dickCaged: {
  33371. height: math.unit(0.65, "meters"),
  33372. name: "Dick-caged",
  33373. image: {
  33374. source: "./media/characters/kairne/dick-caged.svg"
  33375. }
  33376. },
  33377. dick: {
  33378. height: math.unit(0.79, "meters"),
  33379. name: "Dick",
  33380. image: {
  33381. source: "./media/characters/kairne/dick.svg"
  33382. }
  33383. },
  33384. genitals: {
  33385. height: math.unit(1.29, "meters"),
  33386. name: "Genitals",
  33387. image: {
  33388. source: "./media/characters/kairne/genitals.svg"
  33389. }
  33390. },
  33391. maw: {
  33392. height: math.unit(1.73, "meters"),
  33393. name: "Maw",
  33394. image: {
  33395. source: "./media/characters/kairne/maw.svg"
  33396. }
  33397. },
  33398. },
  33399. [
  33400. {
  33401. name: "Normal",
  33402. height: math.unit(15, "feet"),
  33403. default: true
  33404. },
  33405. ]
  33406. ))
  33407. characterMakers.push(() => makeCharacter(
  33408. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33409. {
  33410. front: {
  33411. height: math.unit(5 + 8/12, "feet"),
  33412. weight: math.unit(139, "lb"),
  33413. name: "Front",
  33414. image: {
  33415. source: "./media/characters/biscuit-jackal/front.svg",
  33416. extra: 2106/1961,
  33417. bottom: 58/2164
  33418. }
  33419. },
  33420. back: {
  33421. height: math.unit(5 + 8/12, "feet"),
  33422. weight: math.unit(139, "lb"),
  33423. name: "Back",
  33424. image: {
  33425. source: "./media/characters/biscuit-jackal/back.svg",
  33426. extra: 2132/1976,
  33427. bottom: 57/2189
  33428. }
  33429. },
  33430. werejackal: {
  33431. height: math.unit(6 + 3/12, "feet"),
  33432. weight: math.unit(188, "lb"),
  33433. name: "Werejackal",
  33434. image: {
  33435. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33436. extra: 2373/2178,
  33437. bottom: 53/2426
  33438. }
  33439. },
  33440. },
  33441. [
  33442. {
  33443. name: "Normal",
  33444. height: math.unit(5 + 8/12, "feet"),
  33445. default: true
  33446. },
  33447. ]
  33448. ))
  33449. characterMakers.push(() => makeCharacter(
  33450. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33451. {
  33452. front: {
  33453. height: math.unit(140, "cm"),
  33454. weight: math.unit(45, "kg"),
  33455. name: "Front",
  33456. image: {
  33457. source: "./media/characters/tayra-white/front.svg",
  33458. extra: 2229/2192,
  33459. bottom: 75/2304
  33460. }
  33461. },
  33462. },
  33463. [
  33464. {
  33465. name: "Normal",
  33466. height: math.unit(140, "cm"),
  33467. default: true
  33468. },
  33469. ]
  33470. ))
  33471. characterMakers.push(() => makeCharacter(
  33472. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33473. {
  33474. front: {
  33475. height: math.unit(4 + 5/12, "feet"),
  33476. name: "Front",
  33477. image: {
  33478. source: "./media/characters/scoop/front.svg",
  33479. extra: 1257/1136,
  33480. bottom: 69/1326
  33481. }
  33482. },
  33483. back: {
  33484. height: math.unit(4 + 5/12, "feet"),
  33485. name: "Back",
  33486. image: {
  33487. source: "./media/characters/scoop/back.svg",
  33488. extra: 1321/1152,
  33489. bottom: 32/1353
  33490. }
  33491. },
  33492. maw: {
  33493. height: math.unit(0.68, "feet"),
  33494. name: "Maw",
  33495. image: {
  33496. source: "./media/characters/scoop/maw.svg"
  33497. }
  33498. },
  33499. },
  33500. [
  33501. {
  33502. name: "Really Small",
  33503. height: math.unit(1, "mm")
  33504. },
  33505. {
  33506. name: "Micro",
  33507. height: math.unit(1, "inch")
  33508. },
  33509. {
  33510. name: "Normal",
  33511. height: math.unit(4 + 5/12, "feet"),
  33512. default: true
  33513. },
  33514. {
  33515. name: "Macro",
  33516. height: math.unit(200, "feet")
  33517. },
  33518. {
  33519. name: "Megamacro",
  33520. height: math.unit(3240, "feet")
  33521. },
  33522. {
  33523. name: "Teramacro",
  33524. height: math.unit(2500, "miles")
  33525. },
  33526. ]
  33527. ))
  33528. characterMakers.push(() => makeCharacter(
  33529. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33530. {
  33531. front: {
  33532. height: math.unit(15 + 7/12, "feet"),
  33533. name: "Front",
  33534. image: {
  33535. source: "./media/characters/saphinara/front.svg",
  33536. extra: 604/546,
  33537. bottom: 19/623
  33538. }
  33539. },
  33540. side: {
  33541. height: math.unit(15 + 7/12, "feet"),
  33542. name: "Side",
  33543. image: {
  33544. source: "./media/characters/saphinara/side.svg",
  33545. extra: 605/547,
  33546. bottom: 6/611
  33547. }
  33548. },
  33549. back: {
  33550. height: math.unit(15 + 7/12, "feet"),
  33551. name: "Back",
  33552. image: {
  33553. source: "./media/characters/saphinara/back.svg",
  33554. extra: 591/531,
  33555. bottom: 13/604
  33556. }
  33557. },
  33558. frontTail: {
  33559. height: math.unit(15 + 7/12, "feet"),
  33560. name: "Front (Full Tail)",
  33561. image: {
  33562. source: "./media/characters/saphinara/front-tail.svg",
  33563. extra: 748/547,
  33564. bottom: 66/814
  33565. }
  33566. },
  33567. },
  33568. [
  33569. {
  33570. name: "Normal",
  33571. height: math.unit(15 + 7/12, "feet"),
  33572. default: true
  33573. },
  33574. {
  33575. name: "Angry",
  33576. height: math.unit(30 + 6/12, "feet")
  33577. },
  33578. {
  33579. name: "Enraged",
  33580. height: math.unit(102 + 1/12, "feet")
  33581. },
  33582. ]
  33583. ))
  33584. characterMakers.push(() => makeCharacter(
  33585. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33586. {
  33587. front: {
  33588. height: math.unit(6 + 8/12, "feet"),
  33589. weight: math.unit(300, "lb"),
  33590. name: "Front",
  33591. image: {
  33592. source: "./media/characters/jrain/front.svg",
  33593. extra: 3039/2865,
  33594. bottom: 399/3438
  33595. }
  33596. },
  33597. back: {
  33598. height: math.unit(6 + 8/12, "feet"),
  33599. weight: math.unit(300, "lb"),
  33600. name: "Back",
  33601. image: {
  33602. source: "./media/characters/jrain/back.svg",
  33603. extra: 3089/2938,
  33604. bottom: 172/3261
  33605. }
  33606. },
  33607. head: {
  33608. height: math.unit(2.14, "feet"),
  33609. name: "Head",
  33610. image: {
  33611. source: "./media/characters/jrain/head.svg"
  33612. }
  33613. },
  33614. maw: {
  33615. height: math.unit(1.77, "feet"),
  33616. name: "Maw",
  33617. image: {
  33618. source: "./media/characters/jrain/maw.svg"
  33619. }
  33620. },
  33621. leftHand: {
  33622. height: math.unit(1.1, "feet"),
  33623. name: "Left Hand",
  33624. image: {
  33625. source: "./media/characters/jrain/left-hand.svg"
  33626. }
  33627. },
  33628. rightHand: {
  33629. height: math.unit(1.1, "feet"),
  33630. name: "Right Hand",
  33631. image: {
  33632. source: "./media/characters/jrain/right-hand.svg"
  33633. }
  33634. },
  33635. eye: {
  33636. height: math.unit(0.35, "feet"),
  33637. name: "Eye",
  33638. image: {
  33639. source: "./media/characters/jrain/eye.svg"
  33640. }
  33641. },
  33642. },
  33643. [
  33644. {
  33645. name: "Normal",
  33646. height: math.unit(6 + 8/12, "feet"),
  33647. default: true
  33648. },
  33649. {
  33650. name: "Casually Large",
  33651. height: math.unit(25, "feet")
  33652. },
  33653. {
  33654. name: "Giant",
  33655. height: math.unit(100, "feet")
  33656. },
  33657. {
  33658. name: "Kaiju",
  33659. height: math.unit(300, "feet")
  33660. },
  33661. ]
  33662. ))
  33663. characterMakers.push(() => makeCharacter(
  33664. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33665. {
  33666. dragon: {
  33667. height: math.unit(5, "meters"),
  33668. name: "Dragon",
  33669. image: {
  33670. source: "./media/characters/sabrina/dragon.svg",
  33671. extra: 3670 / 2365,
  33672. bottom: 333 / 4003
  33673. }
  33674. },
  33675. gryphon: {
  33676. height: math.unit(3, "meters"),
  33677. name: "Gryphon",
  33678. image: {
  33679. source: "./media/characters/sabrina/gryphon.svg",
  33680. extra: 1576 / 945,
  33681. bottom: 71 / 1647
  33682. }
  33683. },
  33684. snake: {
  33685. height: math.unit(12, "meters"),
  33686. name: "Snake",
  33687. image: {
  33688. source: "./media/characters/sabrina/snake.svg",
  33689. extra: 1758 / 1320,
  33690. bottom: 186 / 1944
  33691. }
  33692. },
  33693. collar: {
  33694. height: math.unit(1.86, "meters"),
  33695. name: "Collar",
  33696. image: {
  33697. source: "./media/characters/sabrina/collar.svg"
  33698. }
  33699. },
  33700. eye: {
  33701. height: math.unit(0.53, "meters"),
  33702. name: "Eye",
  33703. image: {
  33704. source: "./media/characters/sabrina/eye.svg"
  33705. }
  33706. },
  33707. foot: {
  33708. height: math.unit(1.86, "meters"),
  33709. name: "Foot",
  33710. image: {
  33711. source: "./media/characters/sabrina/foot.svg"
  33712. }
  33713. },
  33714. hand: {
  33715. height: math.unit(1.32, "meters"),
  33716. name: "Hand",
  33717. image: {
  33718. source: "./media/characters/sabrina/hand.svg"
  33719. }
  33720. },
  33721. head: {
  33722. height: math.unit(2.44, "meters"),
  33723. name: "Head",
  33724. image: {
  33725. source: "./media/characters/sabrina/head.svg"
  33726. }
  33727. },
  33728. headAngry: {
  33729. height: math.unit(2.44, "meters"),
  33730. name: "Head (Angry))",
  33731. image: {
  33732. source: "./media/characters/sabrina/head-angry.svg"
  33733. }
  33734. },
  33735. maw: {
  33736. height: math.unit(1.65, "meters"),
  33737. name: "Maw",
  33738. image: {
  33739. source: "./media/characters/sabrina/maw.svg"
  33740. }
  33741. },
  33742. spikes: {
  33743. height: math.unit(1.69, "meters"),
  33744. name: "Spikes",
  33745. image: {
  33746. source: "./media/characters/sabrina/spikes.svg"
  33747. }
  33748. },
  33749. stomach: {
  33750. height: math.unit(1.15, "meters"),
  33751. name: "Stomach",
  33752. image: {
  33753. source: "./media/characters/sabrina/stomach.svg"
  33754. }
  33755. },
  33756. tongue: {
  33757. height: math.unit(1.27, "meters"),
  33758. name: "Tongue",
  33759. image: {
  33760. source: "./media/characters/sabrina/tongue.svg"
  33761. }
  33762. },
  33763. wingDorsal: {
  33764. height: math.unit(4.85, "meters"),
  33765. name: "Wing (Dorsal)",
  33766. image: {
  33767. source: "./media/characters/sabrina/wing-dorsal.svg"
  33768. }
  33769. },
  33770. wingVentral: {
  33771. height: math.unit(4.85, "meters"),
  33772. name: "Wing (Ventral)",
  33773. image: {
  33774. source: "./media/characters/sabrina/wing-ventral.svg"
  33775. }
  33776. },
  33777. },
  33778. [
  33779. {
  33780. name: "Normal",
  33781. height: math.unit(5, "meters"),
  33782. default: true
  33783. },
  33784. ]
  33785. ))
  33786. characterMakers.push(() => makeCharacter(
  33787. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33788. {
  33789. frontMaid: {
  33790. height: math.unit(5 + 5/12, "feet"),
  33791. weight: math.unit(130, "lb"),
  33792. name: "Front (Maid)",
  33793. image: {
  33794. source: "./media/characters/midnight-tales/front-maid.svg",
  33795. extra: 489/454,
  33796. bottom: 61/550
  33797. }
  33798. },
  33799. frontFormal: {
  33800. height: math.unit(5 + 5/12, "feet"),
  33801. weight: math.unit(130, "lb"),
  33802. name: "Front (Formal)",
  33803. image: {
  33804. source: "./media/characters/midnight-tales/front-formal.svg",
  33805. extra: 489/454,
  33806. bottom: 61/550
  33807. }
  33808. },
  33809. back: {
  33810. height: math.unit(5 + 5/12, "feet"),
  33811. weight: math.unit(130, "lb"),
  33812. name: "Back",
  33813. image: {
  33814. source: "./media/characters/midnight-tales/back.svg",
  33815. extra: 498/456,
  33816. bottom: 33/531
  33817. }
  33818. },
  33819. frontBeast: {
  33820. height: math.unit(40, "feet"),
  33821. weight: math.unit(64000, "lb"),
  33822. name: "Front (Beast)",
  33823. image: {
  33824. source: "./media/characters/midnight-tales/front-beast.svg",
  33825. extra: 927/860,
  33826. bottom: 53/980
  33827. }
  33828. },
  33829. backBeast: {
  33830. height: math.unit(40, "feet"),
  33831. weight: math.unit(64000, "lb"),
  33832. name: "Back (Beast)",
  33833. image: {
  33834. source: "./media/characters/midnight-tales/back-beast.svg",
  33835. extra: 929/855,
  33836. bottom: 16/945
  33837. }
  33838. },
  33839. footBeast: {
  33840. height: math.unit(6.7, "feet"),
  33841. name: "Foot (Beast)",
  33842. image: {
  33843. source: "./media/characters/midnight-tales/foot-beast.svg"
  33844. }
  33845. },
  33846. headBeast: {
  33847. height: math.unit(8, "feet"),
  33848. name: "Head (Beast)",
  33849. image: {
  33850. source: "./media/characters/midnight-tales/head-beast.svg"
  33851. }
  33852. },
  33853. },
  33854. [
  33855. {
  33856. name: "Normal",
  33857. height: math.unit(5 + 5 / 12, "feet"),
  33858. default: true
  33859. },
  33860. {
  33861. name: "Macro",
  33862. height: math.unit(25, "feet")
  33863. },
  33864. ]
  33865. ))
  33866. characterMakers.push(() => makeCharacter(
  33867. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33868. {
  33869. front: {
  33870. height: math.unit(5 + 10/12, "feet"),
  33871. name: "Front",
  33872. image: {
  33873. source: "./media/characters/argon/front.svg",
  33874. extra: 2009/1935,
  33875. bottom: 118/2127
  33876. }
  33877. },
  33878. back: {
  33879. height: math.unit(5 + 10/12, "feet"),
  33880. name: "Back",
  33881. image: {
  33882. source: "./media/characters/argon/back.svg",
  33883. extra: 2047/1992,
  33884. bottom: 20/2067
  33885. }
  33886. },
  33887. frontDressed: {
  33888. height: math.unit(5 + 10/12, "feet"),
  33889. name: "Front (Dressed)",
  33890. image: {
  33891. source: "./media/characters/argon/front-dressed.svg",
  33892. extra: 2009/1935,
  33893. bottom: 118/2127
  33894. }
  33895. },
  33896. },
  33897. [
  33898. {
  33899. name: "Normal",
  33900. height: math.unit(5 + 10/12, "feet"),
  33901. default: true
  33902. },
  33903. ]
  33904. ))
  33905. characterMakers.push(() => makeCharacter(
  33906. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33907. {
  33908. front: {
  33909. height: math.unit(8 + 6/12, "feet"),
  33910. weight: math.unit(1150, "lb"),
  33911. name: "Front",
  33912. image: {
  33913. source: "./media/characters/kichi/front.svg",
  33914. extra: 1267/1164,
  33915. bottom: 61/1328
  33916. }
  33917. },
  33918. back: {
  33919. height: math.unit(8 + 6/12, "feet"),
  33920. weight: math.unit(1150, "lb"),
  33921. name: "Back",
  33922. image: {
  33923. source: "./media/characters/kichi/back.svg",
  33924. extra: 1273/1166,
  33925. bottom: 33/1306
  33926. }
  33927. },
  33928. },
  33929. [
  33930. {
  33931. name: "Normal",
  33932. height: math.unit(8 + 6/12, "feet"),
  33933. default: true
  33934. },
  33935. ]
  33936. ))
  33937. characterMakers.push(() => makeCharacter(
  33938. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33939. {
  33940. front: {
  33941. height: math.unit(6, "feet"),
  33942. weight: math.unit(210, "lb"),
  33943. name: "Front",
  33944. image: {
  33945. source: "./media/characters/manetel-greyscale/front.svg",
  33946. extra: 350/312,
  33947. bottom: 8/358
  33948. }
  33949. },
  33950. },
  33951. [
  33952. {
  33953. name: "Micro",
  33954. height: math.unit(2, "inches")
  33955. },
  33956. {
  33957. name: "Normal",
  33958. height: math.unit(6, "feet"),
  33959. default: true
  33960. },
  33961. {
  33962. name: "Minimacro",
  33963. height: math.unit(17, "feet")
  33964. },
  33965. {
  33966. name: "Macro",
  33967. height: math.unit(117, "feet")
  33968. },
  33969. ]
  33970. ))
  33971. characterMakers.push(() => makeCharacter(
  33972. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33973. {
  33974. side: {
  33975. height: math.unit(5 + 1/12, "feet"),
  33976. weight: math.unit(418, "lb"),
  33977. name: "Side",
  33978. image: {
  33979. source: "./media/characters/softpurr/side.svg",
  33980. extra: 1993/1945,
  33981. bottom: 134/2127
  33982. }
  33983. },
  33984. front: {
  33985. height: math.unit(5 + 1/12, "feet"),
  33986. weight: math.unit(418, "lb"),
  33987. name: "Front",
  33988. image: {
  33989. source: "./media/characters/softpurr/front.svg",
  33990. extra: 1950/1856,
  33991. bottom: 174/2124
  33992. }
  33993. },
  33994. paw: {
  33995. height: math.unit(1, "feet"),
  33996. name: "Paw",
  33997. image: {
  33998. source: "./media/characters/softpurr/paw.svg"
  33999. }
  34000. },
  34001. },
  34002. [
  34003. {
  34004. name: "Normal",
  34005. height: math.unit(5 + 1/12, "feet"),
  34006. default: true
  34007. },
  34008. ]
  34009. ))
  34010. characterMakers.push(() => makeCharacter(
  34011. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34012. {
  34013. front: {
  34014. height: math.unit(260, "meters"),
  34015. name: "Front",
  34016. image: {
  34017. source: "./media/characters/anahita/front.svg",
  34018. extra: 665/635,
  34019. bottom: 89/754
  34020. }
  34021. },
  34022. },
  34023. [
  34024. {
  34025. name: "Macro",
  34026. height: math.unit(260, "meters"),
  34027. default: true
  34028. },
  34029. ]
  34030. ))
  34031. characterMakers.push(() => makeCharacter(
  34032. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34033. {
  34034. front: {
  34035. height: math.unit(4 + 10/12, "feet"),
  34036. weight: math.unit(160, "lb"),
  34037. name: "Front",
  34038. image: {
  34039. source: "./media/characters/chip-mouse/front.svg",
  34040. extra: 3528/3408,
  34041. bottom: 0/3528
  34042. }
  34043. },
  34044. frontNsfw: {
  34045. height: math.unit(4 + 10/12, "feet"),
  34046. weight: math.unit(160, "lb"),
  34047. name: "Front (NSFW)",
  34048. image: {
  34049. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34050. extra: 3528/3408,
  34051. bottom: 0/3528
  34052. }
  34053. },
  34054. },
  34055. [
  34056. {
  34057. name: "Normal",
  34058. height: math.unit(4 + 10/12, "feet"),
  34059. default: true
  34060. },
  34061. ]
  34062. ))
  34063. characterMakers.push(() => makeCharacter(
  34064. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34065. {
  34066. side: {
  34067. height: math.unit(10, "feet"),
  34068. weight: math.unit(14000, "lb"),
  34069. name: "Side",
  34070. image: {
  34071. source: "./media/characters/kremm/side.svg",
  34072. extra: 1390/1053,
  34073. bottom: 90/1480
  34074. }
  34075. },
  34076. gut: {
  34077. height: math.unit(5.8, "feet"),
  34078. name: "Gut",
  34079. image: {
  34080. source: "./media/characters/kremm/gut.svg"
  34081. }
  34082. },
  34083. ass: {
  34084. height: math.unit(6.1, "feet"),
  34085. name: "Ass",
  34086. image: {
  34087. source: "./media/characters/kremm/ass.svg"
  34088. }
  34089. },
  34090. jaws: {
  34091. height: math.unit(2.2, "feet"),
  34092. name: "Jaws",
  34093. image: {
  34094. source: "./media/characters/kremm/jaws.svg"
  34095. }
  34096. },
  34097. dick: {
  34098. height: math.unit(4.26, "feet"),
  34099. name: "Dick",
  34100. image: {
  34101. source: "./media/characters/kremm/dick.svg"
  34102. }
  34103. },
  34104. },
  34105. [
  34106. {
  34107. name: "Normal",
  34108. height: math.unit(10, "feet"),
  34109. default: true
  34110. },
  34111. ]
  34112. ))
  34113. characterMakers.push(() => makeCharacter(
  34114. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34115. {
  34116. front: {
  34117. height: math.unit(30, "stories"),
  34118. name: "Front",
  34119. image: {
  34120. source: "./media/characters/kai/front.svg",
  34121. extra: 1892/1718,
  34122. bottom: 162/2054
  34123. }
  34124. },
  34125. },
  34126. [
  34127. {
  34128. name: "Macro",
  34129. height: math.unit(30, "stories"),
  34130. default: true
  34131. },
  34132. ]
  34133. ))
  34134. characterMakers.push(() => makeCharacter(
  34135. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34136. {
  34137. front: {
  34138. height: math.unit(6 + 4/12, "feet"),
  34139. weight: math.unit(145, "lb"),
  34140. name: "Front",
  34141. image: {
  34142. source: "./media/characters/sykes/front.svg",
  34143. extra: 1321 / 1187,
  34144. bottom: 66 / 1387
  34145. }
  34146. },
  34147. back: {
  34148. height: math.unit(6 + 4/12, "feet"),
  34149. weight: math.unit(145, "lb"),
  34150. name: "Back",
  34151. image: {
  34152. source: "./media/characters/sykes/back.svg",
  34153. extra: 1326/1181,
  34154. bottom: 31/1357
  34155. }
  34156. },
  34157. handBack: {
  34158. height: math.unit(0.9, "feet"),
  34159. name: "Hand (Back)",
  34160. image: {
  34161. source: "./media/characters/sykes/hand-back.svg"
  34162. }
  34163. },
  34164. handFront: {
  34165. height: math.unit(0.839, "feet"),
  34166. name: "Hand (Front)",
  34167. image: {
  34168. source: "./media/characters/sykes/hand-front.svg"
  34169. }
  34170. },
  34171. leftFoot: {
  34172. height: math.unit(1.2, "feet"),
  34173. name: "Foot (Left)",
  34174. image: {
  34175. source: "./media/characters/sykes/foot-left.svg"
  34176. }
  34177. },
  34178. rightFoot: {
  34179. height: math.unit(1.2, "feet"),
  34180. name: "Foot (Right)",
  34181. image: {
  34182. source: "./media/characters/sykes/foot-right.svg"
  34183. }
  34184. },
  34185. maw: {
  34186. height: math.unit(1.93, "feet"),
  34187. name: "Maw",
  34188. image: {
  34189. source: "./media/characters/sykes/maw.svg"
  34190. }
  34191. },
  34192. teeth: {
  34193. height: math.unit(0.51, "feet"),
  34194. name: "Teeth",
  34195. image: {
  34196. source: "./media/characters/sykes/teeth.svg"
  34197. }
  34198. },
  34199. tongue: {
  34200. height: math.unit(2.13, "feet"),
  34201. name: "Tongue",
  34202. image: {
  34203. source: "./media/characters/sykes/tongue.svg"
  34204. }
  34205. },
  34206. uvula: {
  34207. height: math.unit(0.16, "feet"),
  34208. name: "Uvula",
  34209. image: {
  34210. source: "./media/characters/sykes/uvula.svg"
  34211. }
  34212. },
  34213. collar: {
  34214. height: math.unit(0.287, "feet"),
  34215. name: "Collar",
  34216. image: {
  34217. source: "./media/characters/sykes/collar.svg"
  34218. }
  34219. },
  34220. },
  34221. [
  34222. {
  34223. name: "Shrunken",
  34224. height: math.unit(5, "inches")
  34225. },
  34226. {
  34227. name: "Normal",
  34228. height: math.unit(6 + 4 / 12, "feet"),
  34229. default: true
  34230. },
  34231. {
  34232. name: "Big",
  34233. height: math.unit(15, "feet")
  34234. },
  34235. ]
  34236. ))
  34237. characterMakers.push(() => makeCharacter(
  34238. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34239. {
  34240. front: {
  34241. height: math.unit(5 + 8/12, "feet"),
  34242. weight: math.unit(190, "lb"),
  34243. name: "Front",
  34244. image: {
  34245. source: "./media/characters/oven-otter/front.svg",
  34246. extra: 1809/1740,
  34247. bottom: 181/1990
  34248. }
  34249. },
  34250. back: {
  34251. height: math.unit(5 + 8/12, "feet"),
  34252. weight: math.unit(190, "lb"),
  34253. name: "Back",
  34254. image: {
  34255. source: "./media/characters/oven-otter/back.svg",
  34256. extra: 1709/1635,
  34257. bottom: 118/1827
  34258. }
  34259. },
  34260. hand: {
  34261. height: math.unit(1.07, "feet"),
  34262. name: "Hand",
  34263. image: {
  34264. source: "./media/characters/oven-otter/hand.svg"
  34265. }
  34266. },
  34267. beans: {
  34268. height: math.unit(1.74, "feet"),
  34269. name: "Beans",
  34270. image: {
  34271. source: "./media/characters/oven-otter/beans.svg"
  34272. }
  34273. },
  34274. },
  34275. [
  34276. {
  34277. name: "Micro",
  34278. height: math.unit(0.5, "inches")
  34279. },
  34280. {
  34281. name: "Normal",
  34282. height: math.unit(5 + 8/12, "feet"),
  34283. default: true
  34284. },
  34285. {
  34286. name: "Macro",
  34287. height: math.unit(250, "feet")
  34288. },
  34289. {
  34290. name: "Really High",
  34291. height: math.unit(420, "feet")
  34292. },
  34293. ]
  34294. ))
  34295. characterMakers.push(() => makeCharacter(
  34296. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34297. {
  34298. front: {
  34299. height: math.unit(5, "meters"),
  34300. weight: math.unit(292000000000000, "kg"),
  34301. name: "Front",
  34302. image: {
  34303. source: "./media/characters/devourer/front.svg",
  34304. extra: 1800/1733,
  34305. bottom: 211/2011
  34306. }
  34307. },
  34308. maw: {
  34309. height: math.unit(1.1, "meter"),
  34310. name: "Maw",
  34311. image: {
  34312. source: "./media/characters/devourer/maw.svg"
  34313. }
  34314. },
  34315. },
  34316. [
  34317. {
  34318. name: "Small",
  34319. height: math.unit(3, "meters")
  34320. },
  34321. {
  34322. name: "Large",
  34323. height: math.unit(5, "meters"),
  34324. default: true
  34325. },
  34326. ]
  34327. ))
  34328. characterMakers.push(() => makeCharacter(
  34329. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34330. {
  34331. front: {
  34332. height: math.unit(6, "feet"),
  34333. weight: math.unit(400, "lb"),
  34334. name: "Front",
  34335. image: {
  34336. source: "./media/characters/ellarby/front.svg",
  34337. extra: 1909/1763,
  34338. bottom: 80/1989
  34339. }
  34340. },
  34341. back: {
  34342. height: math.unit(6, "feet"),
  34343. weight: math.unit(400, "lb"),
  34344. name: "Back",
  34345. image: {
  34346. source: "./media/characters/ellarby/back.svg",
  34347. extra: 1914/1784,
  34348. bottom: 172/2086
  34349. }
  34350. },
  34351. },
  34352. [
  34353. {
  34354. name: "Mischief",
  34355. height: math.unit(18, "inches")
  34356. },
  34357. {
  34358. name: "Trouble",
  34359. height: math.unit(12, "feet")
  34360. },
  34361. {
  34362. name: "Havoc",
  34363. height: math.unit(200, "feet"),
  34364. default: true
  34365. },
  34366. {
  34367. name: "Pandemonium",
  34368. height: math.unit(1, "mile")
  34369. },
  34370. {
  34371. name: "Catastrophe",
  34372. height: math.unit(100, "miles")
  34373. },
  34374. ]
  34375. ))
  34376. characterMakers.push(() => makeCharacter(
  34377. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34378. {
  34379. front: {
  34380. height: math.unit(4.7, "meters"),
  34381. weight: math.unit(6500, "kg"),
  34382. name: "Front",
  34383. image: {
  34384. source: "./media/characters/vex/front.svg",
  34385. extra: 1288/1140,
  34386. bottom: 100/1388
  34387. }
  34388. },
  34389. },
  34390. [
  34391. {
  34392. name: "Normal",
  34393. height: math.unit(4.7, "meters"),
  34394. default: true
  34395. },
  34396. ]
  34397. ))
  34398. characterMakers.push(() => makeCharacter(
  34399. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34400. {
  34401. normal: {
  34402. height: math.unit(6, "feet"),
  34403. weight: math.unit(350, "lb"),
  34404. name: "Normal",
  34405. image: {
  34406. source: "./media/characters/teshy/normal.svg",
  34407. extra: 1795/1735,
  34408. bottom: 16/1811
  34409. }
  34410. },
  34411. monsterFront: {
  34412. height: math.unit(12, "feet"),
  34413. weight: math.unit(4700, "lb"),
  34414. name: "Monster (Front)",
  34415. image: {
  34416. source: "./media/characters/teshy/monster-front.svg",
  34417. extra: 2042/2034,
  34418. bottom: 128/2170
  34419. }
  34420. },
  34421. monsterSide: {
  34422. height: math.unit(12, "feet"),
  34423. weight: math.unit(4700, "lb"),
  34424. name: "Monster (Side)",
  34425. image: {
  34426. source: "./media/characters/teshy/monster-side.svg",
  34427. extra: 2067/2056,
  34428. bottom: 70/2137
  34429. }
  34430. },
  34431. monsterBack: {
  34432. height: math.unit(12, "feet"),
  34433. weight: math.unit(4700, "lb"),
  34434. name: "Monster (Back)",
  34435. image: {
  34436. source: "./media/characters/teshy/monster-back.svg",
  34437. extra: 1921/1914,
  34438. bottom: 171/2092
  34439. }
  34440. },
  34441. },
  34442. [
  34443. {
  34444. name: "Normal",
  34445. height: math.unit(6, "feet"),
  34446. default: true
  34447. },
  34448. ]
  34449. ))
  34450. characterMakers.push(() => makeCharacter(
  34451. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34452. {
  34453. front: {
  34454. height: math.unit(6, "feet"),
  34455. name: "Front",
  34456. image: {
  34457. source: "./media/characters/ramey/front.svg",
  34458. extra: 790/787,
  34459. bottom: 27/817
  34460. }
  34461. },
  34462. },
  34463. [
  34464. {
  34465. name: "Normal",
  34466. height: math.unit(6, "feet"),
  34467. default: true
  34468. },
  34469. ]
  34470. ))
  34471. characterMakers.push(() => makeCharacter(
  34472. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34473. {
  34474. front: {
  34475. height: math.unit(5 + 5/12, "feet"),
  34476. weight: math.unit(120, "lb"),
  34477. name: "Front",
  34478. image: {
  34479. source: "./media/characters/phirae/front.svg",
  34480. extra: 2491/2436,
  34481. bottom: 38/2529
  34482. }
  34483. },
  34484. },
  34485. [
  34486. {
  34487. name: "Normal",
  34488. height: math.unit(5 + 5/12, "feet"),
  34489. default: true
  34490. },
  34491. ]
  34492. ))
  34493. characterMakers.push(() => makeCharacter(
  34494. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34495. {
  34496. front: {
  34497. height: math.unit(5 + 3/12, "feet"),
  34498. name: "Front",
  34499. image: {
  34500. source: "./media/characters/stagglas/front.svg",
  34501. extra: 962/882,
  34502. bottom: 53/1015
  34503. }
  34504. },
  34505. feral: {
  34506. height: math.unit(335, "cm"),
  34507. name: "Feral",
  34508. image: {
  34509. source: "./media/characters/stagglas/feral.svg",
  34510. extra: 1732/1090,
  34511. bottom: 48/1780
  34512. }
  34513. },
  34514. },
  34515. [
  34516. {
  34517. name: "Normal",
  34518. height: math.unit(5 + 3/12, "feet"),
  34519. default: true
  34520. },
  34521. ]
  34522. ))
  34523. characterMakers.push(() => makeCharacter(
  34524. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34525. {
  34526. front: {
  34527. height: math.unit(5 + 4/12, "feet"),
  34528. weight: math.unit(145, "lb"),
  34529. name: "Front",
  34530. image: {
  34531. source: "./media/characters/starra/front.svg",
  34532. extra: 1790/1691,
  34533. bottom: 91/1881
  34534. }
  34535. },
  34536. },
  34537. [
  34538. {
  34539. name: "Normal",
  34540. height: math.unit(5 + 4/12, "feet"),
  34541. default: true
  34542. },
  34543. ]
  34544. ))
  34545. characterMakers.push(() => makeCharacter(
  34546. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34547. {
  34548. front: {
  34549. height: math.unit(2.2, "meters"),
  34550. name: "Front",
  34551. image: {
  34552. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34553. extra: 1194/1005,
  34554. bottom: 25/1219
  34555. }
  34556. },
  34557. },
  34558. [
  34559. {
  34560. name: "Normal",
  34561. height: math.unit(2.2, "meters"),
  34562. default: true
  34563. },
  34564. ]
  34565. ))
  34566. characterMakers.push(() => makeCharacter(
  34567. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34568. {
  34569. side: {
  34570. height: math.unit(8 + 2/12, "feet"),
  34571. weight: math.unit(1240, "lb"),
  34572. name: "Side",
  34573. image: {
  34574. source: "./media/characters/mika-valentine/side.svg",
  34575. extra: 2670/2501,
  34576. bottom: 250/2920
  34577. }
  34578. },
  34579. },
  34580. [
  34581. {
  34582. name: "Normal",
  34583. height: math.unit(8 + 2/12, "feet"),
  34584. default: true
  34585. },
  34586. ]
  34587. ))
  34588. characterMakers.push(() => makeCharacter(
  34589. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34590. {
  34591. front: {
  34592. height: math.unit(7 + 2/12, "feet"),
  34593. name: "Front",
  34594. image: {
  34595. source: "./media/characters/xoltol/front.svg",
  34596. extra: 2212/2124,
  34597. bottom: 84/2296
  34598. }
  34599. },
  34600. side: {
  34601. height: math.unit(7 + 2/12, "feet"),
  34602. name: "Side",
  34603. image: {
  34604. source: "./media/characters/xoltol/side.svg",
  34605. extra: 2273/2197,
  34606. bottom: 26/2299
  34607. }
  34608. },
  34609. hand: {
  34610. height: math.unit(2.5, "feet"),
  34611. name: "Hand",
  34612. image: {
  34613. source: "./media/characters/xoltol/hand.svg"
  34614. }
  34615. },
  34616. },
  34617. [
  34618. {
  34619. name: "Small-ish",
  34620. height: math.unit(5 + 11/12, "feet")
  34621. },
  34622. {
  34623. name: "Normal",
  34624. height: math.unit(7 + 2/12, "feet")
  34625. },
  34626. {
  34627. name: "\"Macro\"",
  34628. height: math.unit(14 + 9/12, "feet"),
  34629. default: true
  34630. },
  34631. {
  34632. name: "Alternate Height",
  34633. height: math.unit(20, "feet")
  34634. },
  34635. {
  34636. name: "Actually Macro",
  34637. height: math.unit(100, "feet")
  34638. },
  34639. ]
  34640. ))
  34641. characterMakers.push(() => makeCharacter(
  34642. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34643. {
  34644. front: {
  34645. height: math.unit(5 + 2/12, "feet"),
  34646. name: "Front",
  34647. image: {
  34648. source: "./media/characters/kotetsu-redwood/front.svg",
  34649. extra: 1053/942,
  34650. bottom: 60/1113
  34651. }
  34652. },
  34653. },
  34654. [
  34655. {
  34656. name: "Normal",
  34657. height: math.unit(5 + 2/12, "feet"),
  34658. default: true
  34659. },
  34660. ]
  34661. ))
  34662. characterMakers.push(() => makeCharacter(
  34663. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34664. {
  34665. front: {
  34666. height: math.unit(2.4, "meters"),
  34667. weight: math.unit(125, "kg"),
  34668. name: "Front",
  34669. image: {
  34670. source: "./media/characters/lilith/front.svg",
  34671. extra: 1590/1513,
  34672. bottom: 203/1793
  34673. }
  34674. },
  34675. },
  34676. [
  34677. {
  34678. name: "Humanoid",
  34679. height: math.unit(2.4, "meters")
  34680. },
  34681. {
  34682. name: "Normal",
  34683. height: math.unit(6, "meters"),
  34684. default: true
  34685. },
  34686. {
  34687. name: "Largest",
  34688. height: math.unit(55, "meters")
  34689. },
  34690. ]
  34691. ))
  34692. characterMakers.push(() => makeCharacter(
  34693. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34694. {
  34695. front: {
  34696. height: math.unit(8 + 4/12, "feet"),
  34697. weight: math.unit(535, "lb"),
  34698. name: "Front",
  34699. image: {
  34700. source: "./media/characters/beh'kah-bolger/front.svg",
  34701. extra: 1660/1603,
  34702. bottom: 37/1697
  34703. }
  34704. },
  34705. },
  34706. [
  34707. {
  34708. name: "Normal",
  34709. height: math.unit(8 + 4/12, "feet"),
  34710. default: true
  34711. },
  34712. {
  34713. name: "Kaiju",
  34714. height: math.unit(250, "feet")
  34715. },
  34716. {
  34717. name: "Still Growing",
  34718. height: math.unit(10, "miles")
  34719. },
  34720. {
  34721. name: "Continental",
  34722. height: math.unit(5000, "miles")
  34723. },
  34724. {
  34725. name: "Final Form",
  34726. height: math.unit(2500000, "miles")
  34727. },
  34728. ]
  34729. ))
  34730. characterMakers.push(() => makeCharacter(
  34731. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34732. {
  34733. front: {
  34734. height: math.unit(7 + 2/12, "feet"),
  34735. weight: math.unit(230, "kg"),
  34736. name: "Front",
  34737. image: {
  34738. source: "./media/characters/tatyana-milewska/front.svg",
  34739. extra: 1199/1150,
  34740. bottom: 86/1285
  34741. }
  34742. },
  34743. },
  34744. [
  34745. {
  34746. name: "Normal",
  34747. height: math.unit(7 + 2/12, "feet"),
  34748. default: true
  34749. },
  34750. {
  34751. name: "Big",
  34752. height: math.unit(12, "feet")
  34753. },
  34754. {
  34755. name: "Minimacro",
  34756. height: math.unit(20, "feet")
  34757. },
  34758. {
  34759. name: "Macro",
  34760. height: math.unit(120, "feet")
  34761. },
  34762. ]
  34763. ))
  34764. characterMakers.push(() => makeCharacter(
  34765. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34766. {
  34767. front: {
  34768. height: math.unit(7 + 8/12, "feet"),
  34769. weight: math.unit(152, "kg"),
  34770. name: "Front",
  34771. image: {
  34772. source: "./media/characters/helen-arri/front.svg",
  34773. extra: 440/423,
  34774. bottom: 14/454
  34775. }
  34776. },
  34777. back: {
  34778. height: math.unit(7 + 8/12, "feet"),
  34779. weight: math.unit(152, "kg"),
  34780. name: "Back",
  34781. image: {
  34782. source: "./media/characters/helen-arri/back.svg",
  34783. extra: 443/426,
  34784. bottom: 8/451
  34785. }
  34786. },
  34787. },
  34788. [
  34789. {
  34790. name: "Normal",
  34791. height: math.unit(7 + 8/12, "feet"),
  34792. default: true
  34793. },
  34794. {
  34795. name: "Big",
  34796. height: math.unit(14, "feet")
  34797. },
  34798. {
  34799. name: "Minimacro",
  34800. height: math.unit(24, "feet")
  34801. },
  34802. {
  34803. name: "Macro",
  34804. height: math.unit(140, "feet")
  34805. },
  34806. ]
  34807. ))
  34808. characterMakers.push(() => makeCharacter(
  34809. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34810. {
  34811. front: {
  34812. height: math.unit(6, "meters"),
  34813. name: "Front",
  34814. image: {
  34815. source: "./media/characters/ehanu-rehu/front.svg",
  34816. extra: 1800/1800,
  34817. bottom: 59/1859
  34818. }
  34819. },
  34820. },
  34821. [
  34822. {
  34823. name: "Normal",
  34824. height: math.unit(6, "meters"),
  34825. default: true
  34826. },
  34827. ]
  34828. ))
  34829. characterMakers.push(() => makeCharacter(
  34830. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34831. {
  34832. front: {
  34833. height: math.unit(7 + 3/12, "feet"),
  34834. name: "Front",
  34835. image: {
  34836. source: "./media/characters/renholder/front.svg",
  34837. extra: 3096/2960,
  34838. bottom: 250/3346
  34839. }
  34840. },
  34841. },
  34842. [
  34843. {
  34844. name: "Normal Bat",
  34845. height: math.unit(7 + 3/12, "feet"),
  34846. default: true
  34847. },
  34848. {
  34849. name: "Slightly Tall Bat",
  34850. height: math.unit(100, "feet")
  34851. },
  34852. {
  34853. name: "Big Bat",
  34854. height: math.unit(1000, "feet")
  34855. },
  34856. {
  34857. name: "City-Sized Bat",
  34858. height: math.unit(200000, "feet")
  34859. },
  34860. {
  34861. name: "Bigger Bat",
  34862. height: math.unit(10000, "miles")
  34863. },
  34864. {
  34865. name: "Solar Sized Bat",
  34866. height: math.unit(100, "AU")
  34867. },
  34868. {
  34869. name: "Galactic Bat",
  34870. height: math.unit(200000, "lightyears")
  34871. },
  34872. {
  34873. name: "Universally Known Bat",
  34874. height: math.unit(1, "universe")
  34875. },
  34876. ]
  34877. ))
  34878. characterMakers.push(() => makeCharacter(
  34879. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34880. {
  34881. front: {
  34882. height: math.unit(6 + 11/12, "feet"),
  34883. weight: math.unit(250, "lb"),
  34884. name: "Front",
  34885. image: {
  34886. source: "./media/characters/cookiecat/front.svg",
  34887. extra: 893/827,
  34888. bottom: 14/907
  34889. }
  34890. },
  34891. },
  34892. [
  34893. {
  34894. name: "Micro",
  34895. height: math.unit(3, "inches")
  34896. },
  34897. {
  34898. name: "Normal",
  34899. height: math.unit(6 + 11/12, "feet"),
  34900. default: true
  34901. },
  34902. {
  34903. name: "Macro",
  34904. height: math.unit(100, "feet")
  34905. },
  34906. {
  34907. name: "Macro+",
  34908. height: math.unit(404, "feet")
  34909. },
  34910. {
  34911. name: "Megamacro",
  34912. height: math.unit(165, "miles")
  34913. },
  34914. {
  34915. name: "Planetary",
  34916. height: math.unit(4600, "miles")
  34917. },
  34918. ]
  34919. ))
  34920. characterMakers.push(() => makeCharacter(
  34921. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34922. {
  34923. front: {
  34924. height: math.unit(10 + 3/12, "feet"),
  34925. weight: math.unit(1500, "lb"),
  34926. name: "Front",
  34927. image: {
  34928. source: "./media/characters/tux-kusanagi/front.svg",
  34929. extra: 944/840,
  34930. bottom: 39/983
  34931. }
  34932. },
  34933. back: {
  34934. height: math.unit(10 + 3/12, "feet"),
  34935. weight: math.unit(1500, "lb"),
  34936. name: "Back",
  34937. image: {
  34938. source: "./media/characters/tux-kusanagi/back.svg",
  34939. extra: 941/842,
  34940. bottom: 28/969
  34941. }
  34942. },
  34943. rump: {
  34944. height: math.unit(5.25, "feet"),
  34945. name: "Rump",
  34946. image: {
  34947. source: "./media/characters/tux-kusanagi/rump.svg"
  34948. }
  34949. },
  34950. beak: {
  34951. height: math.unit(1.54, "feet"),
  34952. name: "Beak",
  34953. image: {
  34954. source: "./media/characters/tux-kusanagi/beak.svg"
  34955. }
  34956. },
  34957. },
  34958. [
  34959. {
  34960. name: "Normal",
  34961. height: math.unit(10 + 3/12, "feet"),
  34962. default: true
  34963. },
  34964. ]
  34965. ))
  34966. characterMakers.push(() => makeCharacter(
  34967. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34968. {
  34969. front: {
  34970. height: math.unit(58, "feet"),
  34971. weight: math.unit(200, "tons"),
  34972. name: "Front",
  34973. image: {
  34974. source: "./media/characters/uzarmazari/front.svg",
  34975. extra: 1575/1455,
  34976. bottom: 152/1727
  34977. }
  34978. },
  34979. back: {
  34980. height: math.unit(58, "feet"),
  34981. weight: math.unit(200, "tons"),
  34982. name: "Back",
  34983. image: {
  34984. source: "./media/characters/uzarmazari/back.svg",
  34985. extra: 1585/1510,
  34986. bottom: 157/1742
  34987. }
  34988. },
  34989. head: {
  34990. height: math.unit(26, "feet"),
  34991. name: "Head",
  34992. image: {
  34993. source: "./media/characters/uzarmazari/head.svg"
  34994. }
  34995. },
  34996. },
  34997. [
  34998. {
  34999. name: "Normal",
  35000. height: math.unit(58, "feet"),
  35001. default: true
  35002. },
  35003. ]
  35004. ))
  35005. characterMakers.push(() => makeCharacter(
  35006. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35007. {
  35008. side: {
  35009. height: math.unit(15, "feet"),
  35010. name: "Side",
  35011. image: {
  35012. source: "./media/characters/akitu/side.svg",
  35013. extra: 1421/1321,
  35014. bottom: 157/1578
  35015. }
  35016. },
  35017. front: {
  35018. height: math.unit(15, "feet"),
  35019. name: "Front",
  35020. image: {
  35021. source: "./media/characters/akitu/front.svg",
  35022. extra: 1435/1326,
  35023. bottom: 232/1667
  35024. }
  35025. },
  35026. },
  35027. [
  35028. {
  35029. name: "Normal",
  35030. height: math.unit(15, "feet"),
  35031. default: true
  35032. },
  35033. ]
  35034. ))
  35035. characterMakers.push(() => makeCharacter(
  35036. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35037. {
  35038. front: {
  35039. height: math.unit(10 + 8/12, "feet"),
  35040. name: "Front",
  35041. image: {
  35042. source: "./media/characters/azalie-croixland/front.svg",
  35043. extra: 1972/1856,
  35044. bottom: 31/2003
  35045. }
  35046. },
  35047. },
  35048. [
  35049. {
  35050. name: "Original Height",
  35051. height: math.unit(5 + 4/12, "feet")
  35052. },
  35053. {
  35054. name: "Normal Height",
  35055. height: math.unit(10 + 8/12, "feet"),
  35056. default: true
  35057. },
  35058. ]
  35059. ))
  35060. characterMakers.push(() => makeCharacter(
  35061. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35062. {
  35063. side: {
  35064. height: math.unit(7 + 1/12, "feet"),
  35065. weight: math.unit(245, "lb"),
  35066. name: "Side",
  35067. image: {
  35068. source: "./media/characters/kavus-kazian/side.svg",
  35069. extra: 349/342,
  35070. bottom: 15/364
  35071. }
  35072. },
  35073. },
  35074. [
  35075. {
  35076. name: "Normal",
  35077. height: math.unit(7 + 1/12, "feet"),
  35078. default: true
  35079. },
  35080. ]
  35081. ))
  35082. characterMakers.push(() => makeCharacter(
  35083. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35084. {
  35085. normalFront: {
  35086. height: math.unit(5 + 11/12, "feet"),
  35087. name: "Front",
  35088. image: {
  35089. source: "./media/characters/moonlight-rose/normal-front.svg",
  35090. extra: 1980/1825,
  35091. bottom: 18/1998
  35092. },
  35093. form: "normal",
  35094. default: true
  35095. },
  35096. normalBack: {
  35097. height: math.unit(5 + 11/12, "feet"),
  35098. name: "Back",
  35099. image: {
  35100. source: "./media/characters/moonlight-rose/normal-back.svg",
  35101. extra: 2010/1839,
  35102. bottom: 10/2020
  35103. },
  35104. form: "normal"
  35105. },
  35106. demonFront: {
  35107. height: math.unit(1.5, "earths"),
  35108. name: "Front",
  35109. image: {
  35110. source: "./media/characters/moonlight-rose/demon.svg",
  35111. extra: 1400/1294,
  35112. bottom: 45/1445
  35113. },
  35114. form: "demon",
  35115. default: true
  35116. },
  35117. terraFront: {
  35118. height: math.unit(1.5, "earths"),
  35119. name: "Front",
  35120. image: {
  35121. source: "./media/characters/moonlight-rose/terra.svg"
  35122. },
  35123. form: "terra",
  35124. default: true
  35125. },
  35126. jupiterFront: {
  35127. height: math.unit(69911*2, "km"),
  35128. name: "Front",
  35129. image: {
  35130. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35131. extra: 1367/1286,
  35132. bottom: 55/1422
  35133. },
  35134. form: "jupiter",
  35135. default: true
  35136. },
  35137. neptuneFront: {
  35138. height: math.unit(24622*2, "feet"),
  35139. name: "Front",
  35140. image: {
  35141. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35142. extra: 1851/1712,
  35143. bottom: 0/1851
  35144. },
  35145. form: "neptune",
  35146. default: true
  35147. },
  35148. },
  35149. [
  35150. {
  35151. name: "\"Natural\" Height",
  35152. height: math.unit(5 + 11/12, "feet"),
  35153. form: "normal"
  35154. },
  35155. {
  35156. name: "Smallest comfortable size",
  35157. height: math.unit(40, "meters"),
  35158. form: "normal"
  35159. },
  35160. {
  35161. name: "Common size",
  35162. height: math.unit(50, "km"),
  35163. form: "normal",
  35164. default: true
  35165. },
  35166. {
  35167. name: "Normal",
  35168. height: math.unit(1.5, "earths"),
  35169. form: "demon",
  35170. default: true
  35171. },
  35172. {
  35173. name: "Universal",
  35174. height: math.unit(15, "universes"),
  35175. form: "demon"
  35176. },
  35177. {
  35178. name: "Earth",
  35179. height: math.unit(1.5, "earths"),
  35180. form: "terra",
  35181. default: true
  35182. },
  35183. {
  35184. name: "Super Earth",
  35185. height: math.unit(67.5, "earths"),
  35186. form: "terra"
  35187. },
  35188. {
  35189. name: "Doesn't fit in a solar system...",
  35190. height: math.unit(1, "galaxy"),
  35191. form: "terra"
  35192. },
  35193. {
  35194. name: "Saturn",
  35195. height: math.unit(58232*2, "km"),
  35196. form: "jupiter"
  35197. },
  35198. {
  35199. name: "Jupiter",
  35200. height: math.unit(69911*2, "km"),
  35201. form: "jupiter",
  35202. default: true
  35203. },
  35204. {
  35205. name: "HD 100546 b",
  35206. height: math.unit(482938, "km"),
  35207. form: "jupiter"
  35208. },
  35209. {
  35210. name: "Enceladus",
  35211. height: math.unit(513*2, "km"),
  35212. form: "neptune"
  35213. },
  35214. {
  35215. name: "Europe",
  35216. height: math.unit(1560*2, "km"),
  35217. form: "neptune"
  35218. },
  35219. {
  35220. name: "Neptune",
  35221. height: math.unit(24622*2, "km"),
  35222. form: "neptune",
  35223. default: true
  35224. },
  35225. {
  35226. name: "CoRoT-9b",
  35227. height: math.unit(75067*2, "km"),
  35228. form: "neptune"
  35229. },
  35230. ],
  35231. {
  35232. "normal": {
  35233. name: "Normal",
  35234. default: true
  35235. },
  35236. "demon": {
  35237. name: "Demon"
  35238. },
  35239. "terra": {
  35240. name: "Terra"
  35241. },
  35242. "jupiter": {
  35243. name: "Jupiter"
  35244. },
  35245. "neptune": {
  35246. name: "Neptune"
  35247. }
  35248. }
  35249. ))
  35250. characterMakers.push(() => makeCharacter(
  35251. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35252. {
  35253. front: {
  35254. height: math.unit(16, "feet"),
  35255. weight: math.unit(610, "kg"),
  35256. name: "Front",
  35257. image: {
  35258. source: "./media/characters/huckle/front.svg",
  35259. extra: 1731/1625,
  35260. bottom: 33/1764
  35261. }
  35262. },
  35263. back: {
  35264. height: math.unit(16, "feet"),
  35265. weight: math.unit(610, "kg"),
  35266. name: "Back",
  35267. image: {
  35268. source: "./media/characters/huckle/back.svg",
  35269. extra: 1738/1651,
  35270. bottom: 37/1775
  35271. }
  35272. },
  35273. laughing: {
  35274. height: math.unit(3.75, "feet"),
  35275. name: "Laughing",
  35276. image: {
  35277. source: "./media/characters/huckle/laughing.svg"
  35278. }
  35279. },
  35280. angry: {
  35281. height: math.unit(4.15, "feet"),
  35282. name: "Angry",
  35283. image: {
  35284. source: "./media/characters/huckle/angry.svg"
  35285. }
  35286. },
  35287. },
  35288. [
  35289. {
  35290. name: "Normal",
  35291. height: math.unit(16, "feet"),
  35292. default: true
  35293. },
  35294. {
  35295. name: "Mini Macro",
  35296. height: math.unit(463, "feet")
  35297. },
  35298. {
  35299. name: "Macro",
  35300. height: math.unit(1680, "meters")
  35301. },
  35302. {
  35303. name: "Mega Macro",
  35304. height: math.unit(175, "km")
  35305. },
  35306. {
  35307. name: "Terra Macro",
  35308. height: math.unit(32, "gigameters")
  35309. },
  35310. {
  35311. name: "Multiverse+",
  35312. height: math.unit(2.56e23, "yottameters")
  35313. },
  35314. ]
  35315. ))
  35316. characterMakers.push(() => makeCharacter(
  35317. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35318. {
  35319. front: {
  35320. height: math.unit(6 + 9/12, "feet"),
  35321. weight: math.unit(280, "lb"),
  35322. name: "Front",
  35323. image: {
  35324. source: "./media/characters/candy/front.svg",
  35325. extra: 234/217,
  35326. bottom: 11/245
  35327. }
  35328. },
  35329. },
  35330. [
  35331. {
  35332. name: "Really Small",
  35333. height: math.unit(0.1, "nm")
  35334. },
  35335. {
  35336. name: "Micro",
  35337. height: math.unit(2, "inches")
  35338. },
  35339. {
  35340. name: "Normal",
  35341. height: math.unit(6 + 9/12, "feet"),
  35342. default: true
  35343. },
  35344. {
  35345. name: "Small Macro",
  35346. height: math.unit(69, "feet")
  35347. },
  35348. {
  35349. name: "Macro",
  35350. height: math.unit(160, "feet")
  35351. },
  35352. {
  35353. name: "Megamacro",
  35354. height: math.unit(22000, "miles")
  35355. },
  35356. {
  35357. name: "Gigamacro",
  35358. height: math.unit(50000, "miles")
  35359. },
  35360. ]
  35361. ))
  35362. characterMakers.push(() => makeCharacter(
  35363. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35364. {
  35365. front: {
  35366. height: math.unit(4, "feet"),
  35367. weight: math.unit(90, "lb"),
  35368. name: "Front",
  35369. image: {
  35370. source: "./media/characters/joey-mcdonald/front.svg",
  35371. extra: 1059/852,
  35372. bottom: 33/1092
  35373. }
  35374. },
  35375. back: {
  35376. height: math.unit(4, "feet"),
  35377. weight: math.unit(90, "lb"),
  35378. name: "Back",
  35379. image: {
  35380. source: "./media/characters/joey-mcdonald/back.svg",
  35381. extra: 1077/879,
  35382. bottom: 5/1082
  35383. }
  35384. },
  35385. frontKobold: {
  35386. height: math.unit(4, "feet"),
  35387. weight: math.unit(100, "lb"),
  35388. name: "Front-kobold",
  35389. image: {
  35390. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35391. extra: 1480/1367,
  35392. bottom: 0/1480
  35393. }
  35394. },
  35395. backKobold: {
  35396. height: math.unit(4, "feet"),
  35397. weight: math.unit(100, "lb"),
  35398. name: "Back-kobold",
  35399. image: {
  35400. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35401. extra: 1449/1361,
  35402. bottom: 0/1449
  35403. }
  35404. },
  35405. },
  35406. [
  35407. {
  35408. name: "Normal",
  35409. height: math.unit(4, "feet"),
  35410. default: true
  35411. },
  35412. ]
  35413. ))
  35414. characterMakers.push(() => makeCharacter(
  35415. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35416. {
  35417. front: {
  35418. height: math.unit(12 + 6/12, "feet"),
  35419. name: "Front",
  35420. image: {
  35421. source: "./media/characters/kass-lockheed/front.svg",
  35422. extra: 354/343,
  35423. bottom: 9/363
  35424. }
  35425. },
  35426. back: {
  35427. height: math.unit(12 + 6/12, "feet"),
  35428. name: "Back",
  35429. image: {
  35430. source: "./media/characters/kass-lockheed/back.svg",
  35431. extra: 364/352,
  35432. bottom: 3/367
  35433. }
  35434. },
  35435. dick: {
  35436. height: math.unit(3.12, "feet"),
  35437. name: "Dick",
  35438. image: {
  35439. source: "./media/characters/kass-lockheed/dick.svg"
  35440. }
  35441. },
  35442. head: {
  35443. height: math.unit(2.6, "feet"),
  35444. name: "Head",
  35445. image: {
  35446. source: "./media/characters/kass-lockheed/head.svg"
  35447. }
  35448. },
  35449. bleh: {
  35450. height: math.unit(2.85, "feet"),
  35451. name: "Bleh",
  35452. image: {
  35453. source: "./media/characters/kass-lockheed/bleh.svg"
  35454. }
  35455. },
  35456. smug: {
  35457. height: math.unit(2.85, "feet"),
  35458. name: "Smug",
  35459. image: {
  35460. source: "./media/characters/kass-lockheed/smug.svg"
  35461. }
  35462. },
  35463. },
  35464. [
  35465. {
  35466. name: "Normal",
  35467. height: math.unit(12 + 6/12, "feet"),
  35468. default: true
  35469. },
  35470. ]
  35471. ))
  35472. characterMakers.push(() => makeCharacter(
  35473. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35474. {
  35475. front: {
  35476. height: math.unit(6 + 2/12, "feet"),
  35477. name: "Front",
  35478. image: {
  35479. source: "./media/characters/taylor/front.svg",
  35480. extra: 639/495,
  35481. bottom: 12/651
  35482. }
  35483. },
  35484. },
  35485. [
  35486. {
  35487. name: "Normal",
  35488. height: math.unit(6 + 2/12, "feet"),
  35489. default: true
  35490. },
  35491. {
  35492. name: "Big",
  35493. height: math.unit(15, "feet")
  35494. },
  35495. {
  35496. name: "Lorg",
  35497. height: math.unit(80, "feet")
  35498. },
  35499. {
  35500. name: "Too Lorg",
  35501. height: math.unit(120, "feet")
  35502. },
  35503. ]
  35504. ))
  35505. characterMakers.push(() => makeCharacter(
  35506. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35507. {
  35508. front: {
  35509. height: math.unit(15, "feet"),
  35510. name: "Front",
  35511. image: {
  35512. source: "./media/characters/kaizer/front.svg",
  35513. extra: 1612/1436,
  35514. bottom: 43/1655
  35515. }
  35516. },
  35517. },
  35518. [
  35519. {
  35520. name: "Normal",
  35521. height: math.unit(15, "feet"),
  35522. default: true
  35523. },
  35524. ]
  35525. ))
  35526. characterMakers.push(() => makeCharacter(
  35527. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35528. {
  35529. front: {
  35530. height: math.unit(2, "feet"),
  35531. weight: math.unit(30, "lb"),
  35532. name: "Front",
  35533. image: {
  35534. source: "./media/characters/sandy/front.svg",
  35535. extra: 1439/1307,
  35536. bottom: 194/1633
  35537. }
  35538. },
  35539. },
  35540. [
  35541. {
  35542. name: "Normal",
  35543. height: math.unit(2, "feet"),
  35544. default: true
  35545. },
  35546. ]
  35547. ))
  35548. characterMakers.push(() => makeCharacter(
  35549. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35550. {
  35551. front: {
  35552. height: math.unit(3, "feet"),
  35553. name: "Front",
  35554. image: {
  35555. source: "./media/characters/mellvi/front.svg",
  35556. extra: 1831/1630,
  35557. bottom: 58/1889
  35558. }
  35559. },
  35560. },
  35561. [
  35562. {
  35563. name: "Normal",
  35564. height: math.unit(3, "feet"),
  35565. default: true
  35566. },
  35567. ]
  35568. ))
  35569. characterMakers.push(() => makeCharacter(
  35570. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35571. {
  35572. front: {
  35573. height: math.unit(5 + 11/12, "feet"),
  35574. weight: math.unit(200, "lb"),
  35575. name: "Front",
  35576. image: {
  35577. source: "./media/characters/shirou/front.svg",
  35578. extra: 2491/2383,
  35579. bottom: 189/2680
  35580. }
  35581. },
  35582. back: {
  35583. height: math.unit(5 + 11/12, "feet"),
  35584. weight: math.unit(200, "lb"),
  35585. name: "Back",
  35586. image: {
  35587. source: "./media/characters/shirou/back.svg",
  35588. extra: 2554/2450,
  35589. bottom: 76/2630
  35590. }
  35591. },
  35592. },
  35593. [
  35594. {
  35595. name: "Normal",
  35596. height: math.unit(5 + 11/12, "feet"),
  35597. default: true
  35598. },
  35599. ]
  35600. ))
  35601. characterMakers.push(() => makeCharacter(
  35602. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35603. {
  35604. front: {
  35605. height: math.unit(6 + 3/12, "feet"),
  35606. weight: math.unit(177, "lb"),
  35607. name: "Front",
  35608. image: {
  35609. source: "./media/characters/noryu/front.svg",
  35610. extra: 973/885,
  35611. bottom: 10/983
  35612. }
  35613. },
  35614. },
  35615. [
  35616. {
  35617. name: "Normal",
  35618. height: math.unit(6 + 3/12, "feet"),
  35619. default: true
  35620. },
  35621. ]
  35622. ))
  35623. characterMakers.push(() => makeCharacter(
  35624. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35625. {
  35626. front: {
  35627. height: math.unit(5 + 6/12, "feet"),
  35628. weight: math.unit(170, "lb"),
  35629. name: "Front",
  35630. image: {
  35631. source: "./media/characters/mevolas-rubenido/front.svg",
  35632. extra: 2109/1901,
  35633. bottom: 96/2205
  35634. }
  35635. },
  35636. },
  35637. [
  35638. {
  35639. name: "Normal",
  35640. height: math.unit(5 + 6/12, "feet"),
  35641. default: true
  35642. },
  35643. ]
  35644. ))
  35645. characterMakers.push(() => makeCharacter(
  35646. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35647. {
  35648. front: {
  35649. height: math.unit(100, "feet"),
  35650. name: "Front",
  35651. image: {
  35652. source: "./media/characters/dee/front.svg",
  35653. extra: 2153/2036,
  35654. bottom: 59/2212
  35655. }
  35656. },
  35657. back: {
  35658. height: math.unit(100, "feet"),
  35659. name: "Back",
  35660. image: {
  35661. source: "./media/characters/dee/back.svg",
  35662. extra: 2183/2058,
  35663. bottom: 75/2258
  35664. }
  35665. },
  35666. foot: {
  35667. height: math.unit(19.43, "feet"),
  35668. name: "Foot",
  35669. image: {
  35670. source: "./media/characters/dee/foot.svg"
  35671. }
  35672. },
  35673. hoof: {
  35674. height: math.unit(20.6, "feet"),
  35675. name: "Hoof",
  35676. image: {
  35677. source: "./media/characters/dee/hoof.svg"
  35678. }
  35679. },
  35680. },
  35681. [
  35682. {
  35683. name: "Macro",
  35684. height: math.unit(100, "feet"),
  35685. default: true
  35686. },
  35687. ]
  35688. ))
  35689. characterMakers.push(() => makeCharacter(
  35690. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35691. {
  35692. front: {
  35693. height: math.unit(5 + 6/12, "feet"),
  35694. name: "Front",
  35695. image: {
  35696. source: "./media/characters/teh/front.svg",
  35697. extra: 1002/847,
  35698. bottom: 62/1064
  35699. }
  35700. },
  35701. },
  35702. [
  35703. {
  35704. name: "Normal",
  35705. height: math.unit(5 + 6/12, "feet"),
  35706. default: true
  35707. },
  35708. ]
  35709. ))
  35710. characterMakers.push(() => makeCharacter(
  35711. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35712. {
  35713. side: {
  35714. height: math.unit(6 + 1/12, "feet"),
  35715. weight: math.unit(204, "lb"),
  35716. name: "Side",
  35717. image: {
  35718. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35719. extra: 974/775,
  35720. bottom: 169/1143
  35721. }
  35722. },
  35723. sitting: {
  35724. height: math.unit(6 + 2/12, "feet"),
  35725. weight: math.unit(204, "lb"),
  35726. name: "Sitting",
  35727. image: {
  35728. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35729. extra: 1175/964,
  35730. bottom: 378/1553
  35731. }
  35732. },
  35733. },
  35734. [
  35735. {
  35736. name: "Normal",
  35737. height: math.unit(6 + 1/12, "feet"),
  35738. default: true
  35739. },
  35740. ]
  35741. ))
  35742. characterMakers.push(() => makeCharacter(
  35743. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35744. {
  35745. front: {
  35746. height: math.unit(6, "inches"),
  35747. name: "Front",
  35748. image: {
  35749. source: "./media/characters/tululi/front.svg",
  35750. extra: 1997/1876,
  35751. bottom: 20/2017
  35752. }
  35753. },
  35754. },
  35755. [
  35756. {
  35757. name: "Normal",
  35758. height: math.unit(6, "inches"),
  35759. default: true
  35760. },
  35761. ]
  35762. ))
  35763. characterMakers.push(() => makeCharacter(
  35764. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35765. {
  35766. front: {
  35767. height: math.unit(4 + 1/12, "feet"),
  35768. name: "Front",
  35769. image: {
  35770. source: "./media/characters/star/front.svg",
  35771. extra: 1493/1189,
  35772. bottom: 48/1541
  35773. }
  35774. },
  35775. },
  35776. [
  35777. {
  35778. name: "Normal",
  35779. height: math.unit(4 + 1/12, "feet"),
  35780. default: true
  35781. },
  35782. ]
  35783. ))
  35784. characterMakers.push(() => makeCharacter(
  35785. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35786. {
  35787. front: {
  35788. height: math.unit(6 + 3/12, "feet"),
  35789. name: "Front",
  35790. image: {
  35791. source: "./media/characters/comet/front.svg",
  35792. extra: 1681/1462,
  35793. bottom: 26/1707
  35794. }
  35795. },
  35796. },
  35797. [
  35798. {
  35799. name: "Normal",
  35800. height: math.unit(6 + 3/12, "feet"),
  35801. default: true
  35802. },
  35803. ]
  35804. ))
  35805. characterMakers.push(() => makeCharacter(
  35806. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35807. {
  35808. front: {
  35809. height: math.unit(950, "feet"),
  35810. name: "Front",
  35811. image: {
  35812. source: "./media/characters/vortex/front.svg",
  35813. extra: 1497/1434,
  35814. bottom: 56/1553
  35815. }
  35816. },
  35817. maw: {
  35818. height: math.unit(285, "feet"),
  35819. name: "Maw",
  35820. image: {
  35821. source: "./media/characters/vortex/maw.svg"
  35822. }
  35823. },
  35824. },
  35825. [
  35826. {
  35827. name: "Macro",
  35828. height: math.unit(950, "feet"),
  35829. default: true
  35830. },
  35831. ]
  35832. ))
  35833. characterMakers.push(() => makeCharacter(
  35834. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35835. {
  35836. front: {
  35837. height: math.unit(600, "feet"),
  35838. weight: math.unit(0.02, "grams"),
  35839. name: "Front",
  35840. image: {
  35841. source: "./media/characters/doodle/front.svg",
  35842. extra: 1578/1413,
  35843. bottom: 37/1615
  35844. }
  35845. },
  35846. },
  35847. [
  35848. {
  35849. name: "Macro",
  35850. height: math.unit(600, "feet"),
  35851. default: true
  35852. },
  35853. ]
  35854. ))
  35855. characterMakers.push(() => makeCharacter(
  35856. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35857. {
  35858. front: {
  35859. height: math.unit(6 + 6/12, "feet"),
  35860. name: "Front",
  35861. image: {
  35862. source: "./media/characters/jai/front.svg",
  35863. extra: 1645/1534,
  35864. bottom: 115/1760
  35865. }
  35866. },
  35867. },
  35868. [
  35869. {
  35870. name: "Normal",
  35871. height: math.unit(6 + 6/12, "feet"),
  35872. default: true
  35873. },
  35874. ]
  35875. ))
  35876. characterMakers.push(() => makeCharacter(
  35877. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35878. {
  35879. front: {
  35880. height: math.unit(6 + 8/12, "feet"),
  35881. name: "Front",
  35882. image: {
  35883. source: "./media/characters/pixel/front.svg",
  35884. extra: 1900/1735,
  35885. bottom: 63/1963
  35886. }
  35887. },
  35888. },
  35889. [
  35890. {
  35891. name: "Normal",
  35892. height: math.unit(6 + 8/12, "feet"),
  35893. default: true
  35894. },
  35895. ]
  35896. ))
  35897. characterMakers.push(() => makeCharacter(
  35898. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35899. {
  35900. back: {
  35901. height: math.unit(4 + 1/12, "feet"),
  35902. weight: math.unit(75, "lb"),
  35903. name: "Back",
  35904. image: {
  35905. source: "./media/characters/rhett/back.svg",
  35906. extra: 930/878,
  35907. bottom: 25/955
  35908. }
  35909. },
  35910. front: {
  35911. height: math.unit(4 + 1/12, "feet"),
  35912. weight: math.unit(75, "lb"),
  35913. name: "Front",
  35914. image: {
  35915. source: "./media/characters/rhett/front.svg",
  35916. extra: 1682/1586,
  35917. bottom: 92/1774
  35918. }
  35919. },
  35920. },
  35921. [
  35922. {
  35923. name: "Micro",
  35924. height: math.unit(8, "inches")
  35925. },
  35926. {
  35927. name: "Tiny",
  35928. height: math.unit(2, "feet")
  35929. },
  35930. {
  35931. name: "Normal",
  35932. height: math.unit(4 + 1/12, "feet"),
  35933. default: true
  35934. },
  35935. ]
  35936. ))
  35937. characterMakers.push(() => makeCharacter(
  35938. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35939. {
  35940. front: {
  35941. height: math.unit(3 + 3/12, "feet"),
  35942. name: "Front",
  35943. image: {
  35944. source: "./media/characters/penny/front.svg",
  35945. extra: 1406/1311,
  35946. bottom: 26/1432
  35947. }
  35948. },
  35949. },
  35950. [
  35951. {
  35952. name: "Normal",
  35953. height: math.unit(3 + 3/12, "feet"),
  35954. default: true
  35955. },
  35956. ]
  35957. ))
  35958. characterMakers.push(() => makeCharacter(
  35959. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35960. {
  35961. front: {
  35962. height: math.unit(4 + 11/12, "feet"),
  35963. name: "Front",
  35964. image: {
  35965. source: "./media/characters/monty/front.svg",
  35966. extra: 1479/1209,
  35967. bottom: 0/1479
  35968. }
  35969. },
  35970. },
  35971. [
  35972. {
  35973. name: "Normal",
  35974. height: math.unit(4 + 11/12, "feet"),
  35975. default: true
  35976. },
  35977. ]
  35978. ))
  35979. characterMakers.push(() => makeCharacter(
  35980. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35981. {
  35982. front: {
  35983. height: math.unit(8 + 4/12, "feet"),
  35984. name: "Front",
  35985. image: {
  35986. source: "./media/characters/sterling/front.svg",
  35987. extra: 1420/1236,
  35988. bottom: 27/1447
  35989. }
  35990. },
  35991. },
  35992. [
  35993. {
  35994. name: "Normal",
  35995. height: math.unit(8 + 4/12, "feet"),
  35996. default: true
  35997. },
  35998. ]
  35999. ))
  36000. characterMakers.push(() => makeCharacter(
  36001. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36002. {
  36003. front: {
  36004. height: math.unit(15, "feet"),
  36005. name: "Front",
  36006. image: {
  36007. source: "./media/characters/marble/front.svg",
  36008. extra: 973/937,
  36009. bottom: 32/1005
  36010. }
  36011. },
  36012. },
  36013. [
  36014. {
  36015. name: "Normal",
  36016. height: math.unit(15, "feet"),
  36017. default: true
  36018. },
  36019. ]
  36020. ))
  36021. characterMakers.push(() => makeCharacter(
  36022. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36023. {
  36024. front: {
  36025. height: math.unit(3, "inches"),
  36026. name: "Front",
  36027. image: {
  36028. source: "./media/characters/powder/front.svg",
  36029. extra: 1504/1334,
  36030. bottom: 518/2022
  36031. }
  36032. },
  36033. },
  36034. [
  36035. {
  36036. name: "Normal",
  36037. height: math.unit(3, "inches"),
  36038. default: true
  36039. },
  36040. ]
  36041. ))
  36042. characterMakers.push(() => makeCharacter(
  36043. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36044. {
  36045. front: {
  36046. height: math.unit(4 + 5/12, "feet"),
  36047. name: "Front",
  36048. image: {
  36049. source: "./media/characters/joey-raccoon/front.svg",
  36050. extra: 1273/1197,
  36051. bottom: 0/1273
  36052. }
  36053. },
  36054. },
  36055. [
  36056. {
  36057. name: "Normal",
  36058. height: math.unit(4 + 5/12, "feet"),
  36059. default: true
  36060. },
  36061. ]
  36062. ))
  36063. characterMakers.push(() => makeCharacter(
  36064. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36065. {
  36066. front: {
  36067. height: math.unit(8 + 4/12, "feet"),
  36068. name: "Front",
  36069. image: {
  36070. source: "./media/characters/vick/front.svg",
  36071. extra: 2187/2118,
  36072. bottom: 47/2234
  36073. }
  36074. },
  36075. },
  36076. [
  36077. {
  36078. name: "Normal",
  36079. height: math.unit(8 + 4/12, "feet"),
  36080. default: true
  36081. },
  36082. ]
  36083. ))
  36084. characterMakers.push(() => makeCharacter(
  36085. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36086. {
  36087. front: {
  36088. height: math.unit(5 + 5/12, "feet"),
  36089. name: "Front",
  36090. image: {
  36091. source: "./media/characters/mitsy/front.svg",
  36092. extra: 1842/1695,
  36093. bottom: 0/1842
  36094. }
  36095. },
  36096. },
  36097. [
  36098. {
  36099. name: "Normal",
  36100. height: math.unit(5 + 5/12, "feet"),
  36101. default: true
  36102. },
  36103. ]
  36104. ))
  36105. characterMakers.push(() => makeCharacter(
  36106. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36107. {
  36108. front: {
  36109. height: math.unit(6 + 3/12, "feet"),
  36110. name: "Front",
  36111. image: {
  36112. source: "./media/characters/silvy/front.svg",
  36113. extra: 1995/1836,
  36114. bottom: 225/2220
  36115. }
  36116. },
  36117. },
  36118. [
  36119. {
  36120. name: "Normal",
  36121. height: math.unit(6 + 3/12, "feet"),
  36122. default: true
  36123. },
  36124. ]
  36125. ))
  36126. characterMakers.push(() => makeCharacter(
  36127. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36128. {
  36129. front: {
  36130. height: math.unit(3 + 8/12, "feet"),
  36131. name: "Front",
  36132. image: {
  36133. source: "./media/characters/rodney/front.svg",
  36134. extra: 1956/1747,
  36135. bottom: 31/1987
  36136. }
  36137. },
  36138. frontDressed: {
  36139. height: math.unit(2.9, "feet"),
  36140. name: "Front (Dressed)",
  36141. image: {
  36142. source: "./media/characters/rodney/front-dressed.svg",
  36143. extra: 1382/1241,
  36144. bottom: 385/1767
  36145. }
  36146. },
  36147. },
  36148. [
  36149. {
  36150. name: "Normal",
  36151. height: math.unit(3 + 8/12, "feet"),
  36152. default: true
  36153. },
  36154. ]
  36155. ))
  36156. characterMakers.push(() => makeCharacter(
  36157. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36158. {
  36159. front: {
  36160. height: math.unit(5 + 9/12, "feet"),
  36161. weight: math.unit(194, "lbs"),
  36162. name: "Front",
  36163. image: {
  36164. source: "./media/characters/zakail-sudekai/front.svg",
  36165. extra: 2696/2533,
  36166. bottom: 248/2944
  36167. }
  36168. },
  36169. maw: {
  36170. height: math.unit(1.35, "feet"),
  36171. name: "Maw",
  36172. image: {
  36173. source: "./media/characters/zakail-sudekai/maw.svg"
  36174. }
  36175. },
  36176. },
  36177. [
  36178. {
  36179. name: "Normal",
  36180. height: math.unit(5 + 9/12, "feet"),
  36181. default: true
  36182. },
  36183. ]
  36184. ))
  36185. characterMakers.push(() => makeCharacter(
  36186. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36187. {
  36188. front: {
  36189. height: math.unit(8 + 4/12, "feet"),
  36190. weight: math.unit(1200, "lb"),
  36191. name: "Front",
  36192. image: {
  36193. source: "./media/characters/eleanor/front.svg",
  36194. extra: 1226/1192,
  36195. bottom: 52/1278
  36196. }
  36197. },
  36198. back: {
  36199. height: math.unit(8 + 4/12, "feet"),
  36200. weight: math.unit(1200, "lb"),
  36201. name: "Back",
  36202. image: {
  36203. source: "./media/characters/eleanor/back.svg",
  36204. extra: 1242/1184,
  36205. bottom: 60/1302
  36206. }
  36207. },
  36208. head: {
  36209. height: math.unit(2.62, "feet"),
  36210. name: "Head",
  36211. image: {
  36212. source: "./media/characters/eleanor/head.svg"
  36213. }
  36214. },
  36215. },
  36216. [
  36217. {
  36218. name: "Normal",
  36219. height: math.unit(8 + 4/12, "feet"),
  36220. default: true
  36221. },
  36222. ]
  36223. ))
  36224. characterMakers.push(() => makeCharacter(
  36225. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36226. {
  36227. front: {
  36228. height: math.unit(8 + 4/12, "feet"),
  36229. weight: math.unit(750, "lb"),
  36230. name: "Front",
  36231. image: {
  36232. source: "./media/characters/tanya/front.svg",
  36233. extra: 1749/1615,
  36234. bottom: 33/1782
  36235. }
  36236. },
  36237. },
  36238. [
  36239. {
  36240. name: "Normal",
  36241. height: math.unit(8 + 4/12, "feet"),
  36242. default: true
  36243. },
  36244. ]
  36245. ))
  36246. characterMakers.push(() => makeCharacter(
  36247. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36248. {
  36249. front: {
  36250. height: math.unit(5, "feet"),
  36251. weight: math.unit(225, "lb"),
  36252. name: "Front",
  36253. image: {
  36254. source: "./media/characters/cindy/front.svg",
  36255. extra: 1320/1250,
  36256. bottom: 42/1362
  36257. }
  36258. },
  36259. frontDressed: {
  36260. height: math.unit(5, "feet"),
  36261. weight: math.unit(225, "lb"),
  36262. name: "Front (Dressed)",
  36263. image: {
  36264. source: "./media/characters/cindy/front-dressed.svg",
  36265. extra: 1320/1250,
  36266. bottom: 42/1362
  36267. }
  36268. },
  36269. back: {
  36270. height: math.unit(5, "feet"),
  36271. weight: math.unit(225, "lb"),
  36272. name: "Back",
  36273. image: {
  36274. source: "./media/characters/cindy/back.svg",
  36275. extra: 1384/1346,
  36276. bottom: 14/1398
  36277. }
  36278. },
  36279. },
  36280. [
  36281. {
  36282. name: "Normal",
  36283. height: math.unit(5, "feet"),
  36284. default: true
  36285. },
  36286. ]
  36287. ))
  36288. characterMakers.push(() => makeCharacter(
  36289. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36290. {
  36291. front: {
  36292. height: math.unit(6 + 9/12, "feet"),
  36293. weight: math.unit(440, "lb"),
  36294. name: "Front",
  36295. image: {
  36296. source: "./media/characters/wilbur-owen/front.svg",
  36297. extra: 1575/1448,
  36298. bottom: 72/1647
  36299. }
  36300. },
  36301. back: {
  36302. height: math.unit(6 + 9/12, "feet"),
  36303. weight: math.unit(440, "lb"),
  36304. name: "Back",
  36305. image: {
  36306. source: "./media/characters/wilbur-owen/back.svg",
  36307. extra: 1578/1445,
  36308. bottom: 36/1614
  36309. }
  36310. },
  36311. },
  36312. [
  36313. {
  36314. name: "Normal",
  36315. height: math.unit(6 + 9/12, "feet"),
  36316. default: true
  36317. },
  36318. ]
  36319. ))
  36320. characterMakers.push(() => makeCharacter(
  36321. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36322. {
  36323. front: {
  36324. height: math.unit(6 + 5/12, "feet"),
  36325. weight: math.unit(650, "lb"),
  36326. name: "Front",
  36327. image: {
  36328. source: "./media/characters/keegan/front.svg",
  36329. extra: 2387/2198,
  36330. bottom: 33/2420
  36331. }
  36332. },
  36333. side: {
  36334. height: math.unit(6 + 5/12, "feet"),
  36335. weight: math.unit(650, "lb"),
  36336. name: "Side",
  36337. image: {
  36338. source: "./media/characters/keegan/side.svg",
  36339. extra: 2390/2202,
  36340. bottom: 47/2437
  36341. }
  36342. },
  36343. back: {
  36344. height: math.unit(6 + 5/12, "feet"),
  36345. weight: math.unit(650, "lb"),
  36346. name: "Back",
  36347. image: {
  36348. source: "./media/characters/keegan/back.svg",
  36349. extra: 2418/2268,
  36350. bottom: 15/2433
  36351. }
  36352. },
  36353. frontSfw: {
  36354. height: math.unit(6 + 5/12, "feet"),
  36355. weight: math.unit(650, "lb"),
  36356. name: "Front (SFW)",
  36357. image: {
  36358. source: "./media/characters/keegan/front-sfw.svg",
  36359. extra: 2387/2198,
  36360. bottom: 33/2420
  36361. }
  36362. },
  36363. beans: {
  36364. height: math.unit(1.85, "feet"),
  36365. name: "Beans",
  36366. image: {
  36367. source: "./media/characters/keegan/beans.svg"
  36368. }
  36369. },
  36370. },
  36371. [
  36372. {
  36373. name: "Normal",
  36374. height: math.unit(6 + 5/12, "feet"),
  36375. default: true
  36376. },
  36377. ]
  36378. ))
  36379. characterMakers.push(() => makeCharacter(
  36380. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36381. {
  36382. front: {
  36383. height: math.unit(9, "feet"),
  36384. name: "Front",
  36385. image: {
  36386. source: "./media/characters/colton/front.svg",
  36387. extra: 1589/1326,
  36388. bottom: 139/1728
  36389. }
  36390. },
  36391. },
  36392. [
  36393. {
  36394. name: "Normal",
  36395. height: math.unit(9, "feet"),
  36396. default: true
  36397. },
  36398. ]
  36399. ))
  36400. characterMakers.push(() => makeCharacter(
  36401. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36402. {
  36403. front: {
  36404. height: math.unit(2 + 9/12, "feet"),
  36405. name: "Front",
  36406. image: {
  36407. source: "./media/characters/bora/front.svg",
  36408. extra: 1265/1250,
  36409. bottom: 24/1289
  36410. }
  36411. },
  36412. },
  36413. [
  36414. {
  36415. name: "Normal",
  36416. height: math.unit(2 + 9/12, "feet"),
  36417. default: true
  36418. },
  36419. ]
  36420. ))
  36421. characterMakers.push(() => makeCharacter(
  36422. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36423. {
  36424. front: {
  36425. height: math.unit(8, "feet"),
  36426. name: "Front",
  36427. image: {
  36428. source: "./media/characters/myu-myu/front.svg",
  36429. extra: 1949/1857,
  36430. bottom: 90/2039
  36431. }
  36432. },
  36433. },
  36434. [
  36435. {
  36436. name: "Normal",
  36437. height: math.unit(8, "feet"),
  36438. default: true
  36439. },
  36440. {
  36441. name: "Big",
  36442. height: math.unit(15, "feet")
  36443. },
  36444. {
  36445. name: "BIG",
  36446. height: math.unit(25, "feet")
  36447. },
  36448. ]
  36449. ))
  36450. characterMakers.push(() => makeCharacter(
  36451. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36452. {
  36453. side: {
  36454. height: math.unit(7 + 5/12, "feet"),
  36455. weight: math.unit(2800, "lb"),
  36456. name: "Side",
  36457. image: {
  36458. source: "./media/characters/haloren/side.svg",
  36459. extra: 1793/409,
  36460. bottom: 59/1852
  36461. }
  36462. },
  36463. frontPaw: {
  36464. height: math.unit(2.36, "feet"),
  36465. name: "Front paw",
  36466. image: {
  36467. source: "./media/characters/haloren/front-paw.svg"
  36468. }
  36469. },
  36470. hindPaw: {
  36471. height: math.unit(3.18, "feet"),
  36472. name: "Hind paw",
  36473. image: {
  36474. source: "./media/characters/haloren/hind-paw.svg"
  36475. }
  36476. },
  36477. maw: {
  36478. height: math.unit(5.05, "feet"),
  36479. name: "Maw",
  36480. image: {
  36481. source: "./media/characters/haloren/maw.svg"
  36482. }
  36483. },
  36484. dick: {
  36485. height: math.unit(2.90, "feet"),
  36486. name: "Dick",
  36487. image: {
  36488. source: "./media/characters/haloren/dick.svg"
  36489. }
  36490. },
  36491. },
  36492. [
  36493. {
  36494. name: "Normal",
  36495. height: math.unit(7 + 5/12, "feet"),
  36496. default: true
  36497. },
  36498. {
  36499. name: "Enhanced",
  36500. height: math.unit(14 + 3/12, "feet")
  36501. },
  36502. ]
  36503. ))
  36504. characterMakers.push(() => makeCharacter(
  36505. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36506. {
  36507. front: {
  36508. height: math.unit(171, "cm"),
  36509. name: "Front",
  36510. image: {
  36511. source: "./media/characters/kimmy/front.svg",
  36512. extra: 1491/1435,
  36513. bottom: 53/1544
  36514. }
  36515. },
  36516. },
  36517. [
  36518. {
  36519. name: "Small",
  36520. height: math.unit(9, "cm")
  36521. },
  36522. {
  36523. name: "Normal",
  36524. height: math.unit(171, "cm"),
  36525. default: true
  36526. },
  36527. ]
  36528. ))
  36529. characterMakers.push(() => makeCharacter(
  36530. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36531. {
  36532. front: {
  36533. height: math.unit(8, "feet"),
  36534. weight: math.unit(300, "lb"),
  36535. name: "Front",
  36536. image: {
  36537. source: "./media/characters/galeboomer/front.svg",
  36538. extra: 4651/4415,
  36539. bottom: 162/4813
  36540. }
  36541. },
  36542. back: {
  36543. height: math.unit(8, "feet"),
  36544. weight: math.unit(300, "lb"),
  36545. name: "Back",
  36546. image: {
  36547. source: "./media/characters/galeboomer/back.svg",
  36548. extra: 4544/4314,
  36549. bottom: 16/4560
  36550. }
  36551. },
  36552. frontAlt: {
  36553. height: math.unit(8, "feet"),
  36554. weight: math.unit(300, "lb"),
  36555. name: "Front (Alt)",
  36556. image: {
  36557. source: "./media/characters/galeboomer/front-alt.svg",
  36558. extra: 4458/4228,
  36559. bottom: 68/4526
  36560. }
  36561. },
  36562. maw: {
  36563. height: math.unit(1.2, "feet"),
  36564. name: "Maw",
  36565. image: {
  36566. source: "./media/characters/galeboomer/maw.svg"
  36567. }
  36568. },
  36569. },
  36570. [
  36571. {
  36572. name: "Normal",
  36573. height: math.unit(8, "feet"),
  36574. default: true
  36575. },
  36576. ]
  36577. ))
  36578. characterMakers.push(() => makeCharacter(
  36579. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36580. {
  36581. front: {
  36582. height: math.unit(5 + 9/12, "feet"),
  36583. weight: math.unit(120, "lb"),
  36584. name: "Front",
  36585. image: {
  36586. source: "./media/characters/chyr/front.svg",
  36587. extra: 1323/1254,
  36588. bottom: 63/1386
  36589. }
  36590. },
  36591. back: {
  36592. height: math.unit(5 + 9/12, "feet"),
  36593. weight: math.unit(120, "lb"),
  36594. name: "Back",
  36595. image: {
  36596. source: "./media/characters/chyr/back.svg",
  36597. extra: 1323/1252,
  36598. bottom: 48/1371
  36599. }
  36600. },
  36601. },
  36602. [
  36603. {
  36604. name: "Normal",
  36605. height: math.unit(5 + 9/12, "feet"),
  36606. default: true
  36607. },
  36608. ]
  36609. ))
  36610. characterMakers.push(() => makeCharacter(
  36611. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36612. {
  36613. front: {
  36614. height: math.unit(7, "feet"),
  36615. weight: math.unit(310, "lb"),
  36616. name: "Front",
  36617. image: {
  36618. source: "./media/characters/solarus/front.svg",
  36619. extra: 2415/2021,
  36620. bottom: 103/2518
  36621. }
  36622. },
  36623. back: {
  36624. height: math.unit(7, "feet"),
  36625. weight: math.unit(310, "lb"),
  36626. name: "Back",
  36627. image: {
  36628. source: "./media/characters/solarus/back.svg",
  36629. extra: 2463/2089,
  36630. bottom: 79/2542
  36631. }
  36632. },
  36633. },
  36634. [
  36635. {
  36636. name: "Normal",
  36637. height: math.unit(7, "feet"),
  36638. default: true
  36639. },
  36640. ]
  36641. ))
  36642. characterMakers.push(() => makeCharacter(
  36643. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36644. {
  36645. front: {
  36646. height: math.unit(16, "feet"),
  36647. name: "Front",
  36648. image: {
  36649. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36650. extra: 1844/1780,
  36651. bottom: 58/1902
  36652. }
  36653. },
  36654. winterCoat: {
  36655. height: math.unit(16, "feet"),
  36656. name: "Winter Coat",
  36657. image: {
  36658. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36659. extra: 1807/1775,
  36660. bottom: 69/1876
  36661. }
  36662. },
  36663. },
  36664. [
  36665. {
  36666. name: "Normal",
  36667. height: math.unit(16, "feet"),
  36668. default: true
  36669. },
  36670. {
  36671. name: "Chicago Size",
  36672. height: math.unit(560, "feet")
  36673. },
  36674. ]
  36675. ))
  36676. characterMakers.push(() => makeCharacter(
  36677. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36678. {
  36679. front: {
  36680. height: math.unit(11 + 6/12, "feet"),
  36681. weight: math.unit(1366, "lb"),
  36682. name: "Front",
  36683. image: {
  36684. source: "./media/characters/lexor/front.svg",
  36685. extra: 1560/1481,
  36686. bottom: 211/1771
  36687. }
  36688. },
  36689. back: {
  36690. height: math.unit(11 + 6/12, "feet"),
  36691. weight: math.unit(1366, "lb"),
  36692. name: "Back",
  36693. image: {
  36694. source: "./media/characters/lexor/back.svg",
  36695. extra: 1614/1533,
  36696. bottom: 76/1690
  36697. }
  36698. },
  36699. maw: {
  36700. height: math.unit(3, "feet"),
  36701. name: "Maw",
  36702. image: {
  36703. source: "./media/characters/lexor/maw.svg"
  36704. }
  36705. },
  36706. dick: {
  36707. height: math.unit(2.59, "feet"),
  36708. name: "Dick",
  36709. image: {
  36710. source: "./media/characters/lexor/dick.svg"
  36711. }
  36712. },
  36713. },
  36714. [
  36715. {
  36716. name: "Normal",
  36717. height: math.unit(11 + 6/12, "feet"),
  36718. default: true
  36719. },
  36720. ]
  36721. ))
  36722. characterMakers.push(() => makeCharacter(
  36723. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36724. {
  36725. front: {
  36726. height: math.unit(5 + 8/12, "feet"),
  36727. name: "Front",
  36728. image: {
  36729. source: "./media/characters/magnum/front.svg",
  36730. extra: 942/855,
  36731. bottom: 26/968
  36732. }
  36733. },
  36734. },
  36735. [
  36736. {
  36737. name: "Normal",
  36738. height: math.unit(5 + 8/12, "feet"),
  36739. default: true
  36740. },
  36741. ]
  36742. ))
  36743. characterMakers.push(() => makeCharacter(
  36744. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36745. {
  36746. front: {
  36747. height: math.unit(18 + 4/12, "feet"),
  36748. weight: math.unit(1500, "kg"),
  36749. name: "Front",
  36750. image: {
  36751. source: "./media/characters/solas-sharpsman/front.svg",
  36752. extra: 1698/1589,
  36753. bottom: 0/1698
  36754. }
  36755. },
  36756. },
  36757. [
  36758. {
  36759. name: "Normal",
  36760. height: math.unit(18 + 4/12, "feet"),
  36761. default: true
  36762. },
  36763. ]
  36764. ))
  36765. characterMakers.push(() => makeCharacter(
  36766. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36767. {
  36768. front: {
  36769. height: math.unit(5 + 5/12, "feet"),
  36770. weight: math.unit(180, "lb"),
  36771. name: "Front",
  36772. image: {
  36773. source: "./media/characters/october/front.svg",
  36774. extra: 1800/1650,
  36775. bottom: 0/1800
  36776. }
  36777. },
  36778. frontNsfw: {
  36779. height: math.unit(5 + 5/12, "feet"),
  36780. weight: math.unit(180, "lb"),
  36781. name: "Front (NSFW)",
  36782. image: {
  36783. source: "./media/characters/october/front-nsfw.svg",
  36784. extra: 1392/1307,
  36785. bottom: 42/1434
  36786. }
  36787. },
  36788. },
  36789. [
  36790. {
  36791. name: "Normal",
  36792. height: math.unit(5 + 5/12, "feet"),
  36793. default: true
  36794. },
  36795. ]
  36796. ))
  36797. characterMakers.push(() => makeCharacter(
  36798. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36799. {
  36800. front: {
  36801. height: math.unit(8 + 6/12, "feet"),
  36802. name: "Front",
  36803. image: {
  36804. source: "./media/characters/essynkardi/front.svg",
  36805. extra: 1914/1846,
  36806. bottom: 22/1936
  36807. }
  36808. },
  36809. },
  36810. [
  36811. {
  36812. name: "Normal",
  36813. height: math.unit(8 + 6/12, "feet"),
  36814. default: true
  36815. },
  36816. ]
  36817. ))
  36818. characterMakers.push(() => makeCharacter(
  36819. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36820. {
  36821. front: {
  36822. height: math.unit(6 + 6/12, "feet"),
  36823. weight: math.unit(7, "lb"),
  36824. name: "Front",
  36825. image: {
  36826. source: "./media/characters/icky/front.svg",
  36827. extra: 813/782,
  36828. bottom: 66/879
  36829. }
  36830. },
  36831. back: {
  36832. height: math.unit(6 + 6/12, "feet"),
  36833. weight: math.unit(7, "lb"),
  36834. name: "Back",
  36835. image: {
  36836. source: "./media/characters/icky/back.svg",
  36837. extra: 754/735,
  36838. bottom: 56/810
  36839. }
  36840. },
  36841. },
  36842. [
  36843. {
  36844. name: "Normal",
  36845. height: math.unit(6 + 6/12, "feet"),
  36846. default: true
  36847. },
  36848. ]
  36849. ))
  36850. characterMakers.push(() => makeCharacter(
  36851. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36852. {
  36853. front: {
  36854. height: math.unit(15, "feet"),
  36855. name: "Front",
  36856. image: {
  36857. source: "./media/characters/rojas/front.svg",
  36858. extra: 1462/1408,
  36859. bottom: 95/1557
  36860. }
  36861. },
  36862. back: {
  36863. height: math.unit(15, "feet"),
  36864. name: "Back",
  36865. image: {
  36866. source: "./media/characters/rojas/back.svg",
  36867. extra: 1023/954,
  36868. bottom: 28/1051
  36869. }
  36870. },
  36871. },
  36872. [
  36873. {
  36874. name: "Normal",
  36875. height: math.unit(15, "feet"),
  36876. default: true
  36877. },
  36878. ]
  36879. ))
  36880. characterMakers.push(() => makeCharacter(
  36881. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36882. {
  36883. frontHuman: {
  36884. height: math.unit(5 + 7/12, "feet"),
  36885. name: "Front (Human)",
  36886. image: {
  36887. source: "./media/characters/alek-dryagan/front-human.svg",
  36888. extra: 1687/1667,
  36889. bottom: 69/1756
  36890. }
  36891. },
  36892. backHuman: {
  36893. height: math.unit(5 + 7/12, "feet"),
  36894. name: "Back (Human)",
  36895. image: {
  36896. source: "./media/characters/alek-dryagan/back-human.svg",
  36897. extra: 1670/1649,
  36898. bottom: 65/1735
  36899. }
  36900. },
  36901. frontDemi: {
  36902. height: math.unit(65, "feet"),
  36903. name: "Front (Demi)",
  36904. image: {
  36905. source: "./media/characters/alek-dryagan/front-demi.svg",
  36906. extra: 1669/1642,
  36907. bottom: 49/1718
  36908. }
  36909. },
  36910. backDemi: {
  36911. height: math.unit(65, "feet"),
  36912. name: "Back (Demi)",
  36913. image: {
  36914. source: "./media/characters/alek-dryagan/back-demi.svg",
  36915. extra: 1658/1637,
  36916. bottom: 40/1698
  36917. }
  36918. },
  36919. mawHuman: {
  36920. height: math.unit(0.3, "feet"),
  36921. name: "Maw (Human)",
  36922. image: {
  36923. source: "./media/characters/alek-dryagan/maw-human.svg"
  36924. }
  36925. },
  36926. mawDemi: {
  36927. height: math.unit(3.8, "feet"),
  36928. name: "Maw (Demi)",
  36929. image: {
  36930. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36931. }
  36932. },
  36933. },
  36934. [
  36935. {
  36936. name: "Normal",
  36937. height: math.unit(5 + 7/12, "feet"),
  36938. default: true
  36939. },
  36940. ]
  36941. ))
  36942. characterMakers.push(() => makeCharacter(
  36943. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36944. {
  36945. frontHuman: {
  36946. height: math.unit(5 + 2/12, "feet"),
  36947. name: "Front (Human)",
  36948. image: {
  36949. source: "./media/characters/gen/front-human.svg",
  36950. extra: 1627/1538,
  36951. bottom: 71/1698
  36952. }
  36953. },
  36954. backHuman: {
  36955. height: math.unit(5 + 2/12, "feet"),
  36956. name: "Back (Human)",
  36957. image: {
  36958. source: "./media/characters/gen/back-human.svg",
  36959. extra: 1638/1548,
  36960. bottom: 69/1707
  36961. }
  36962. },
  36963. frontDemi: {
  36964. height: math.unit(5 + 2/12, "feet"),
  36965. name: "Front (Demi)",
  36966. image: {
  36967. source: "./media/characters/gen/front-demi.svg",
  36968. extra: 1627/1538,
  36969. bottom: 71/1698
  36970. }
  36971. },
  36972. backDemi: {
  36973. height: math.unit(5 + 2/12, "feet"),
  36974. name: "Back (Demi)",
  36975. image: {
  36976. source: "./media/characters/gen/back-demi.svg",
  36977. extra: 1638/1548,
  36978. bottom: 69/1707
  36979. }
  36980. },
  36981. },
  36982. [
  36983. {
  36984. name: "Normal",
  36985. height: math.unit(5 + 2/12, "feet"),
  36986. default: true
  36987. },
  36988. ]
  36989. ))
  36990. characterMakers.push(() => makeCharacter(
  36991. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36992. {
  36993. frontImp: {
  36994. height: math.unit(1 + 11/12, "feet"),
  36995. name: "Front (Imp)",
  36996. image: {
  36997. source: "./media/characters/max-kobold/front-imp.svg",
  36998. extra: 1238/1134,
  36999. bottom: 81/1319
  37000. }
  37001. },
  37002. backImp: {
  37003. height: math.unit(1 + 11/12, "feet"),
  37004. name: "Back (Imp)",
  37005. image: {
  37006. source: "./media/characters/max-kobold/back-imp.svg",
  37007. extra: 1334/1175,
  37008. bottom: 34/1368
  37009. }
  37010. },
  37011. frontDemi: {
  37012. height: math.unit(5 + 9/12, "feet"),
  37013. name: "Front (Demi)",
  37014. image: {
  37015. source: "./media/characters/max-kobold/front-demi.svg",
  37016. extra: 1715/1685,
  37017. bottom: 54/1769
  37018. }
  37019. },
  37020. backDemi: {
  37021. height: math.unit(5 + 9/12, "feet"),
  37022. name: "Back (Demi)",
  37023. image: {
  37024. source: "./media/characters/max-kobold/back-demi.svg",
  37025. extra: 1752/1729,
  37026. bottom: 41/1793
  37027. }
  37028. },
  37029. handImp: {
  37030. height: math.unit(0.45, "feet"),
  37031. name: "Hand (Imp)",
  37032. image: {
  37033. source: "./media/characters/max-kobold/hand.svg"
  37034. }
  37035. },
  37036. pawImp: {
  37037. height: math.unit(0.46, "feet"),
  37038. name: "Paw (Imp)",
  37039. image: {
  37040. source: "./media/characters/max-kobold/paw.svg"
  37041. }
  37042. },
  37043. handDemi: {
  37044. height: math.unit(0.80, "feet"),
  37045. name: "Hand (Demi)",
  37046. image: {
  37047. source: "./media/characters/max-kobold/hand.svg"
  37048. }
  37049. },
  37050. pawDemi: {
  37051. height: math.unit(1.1, "feet"),
  37052. name: "Paw (Demi)",
  37053. image: {
  37054. source: "./media/characters/max-kobold/paw.svg"
  37055. }
  37056. },
  37057. headImp: {
  37058. height: math.unit(1.33, "feet"),
  37059. name: "Head (Imp)",
  37060. image: {
  37061. source: "./media/characters/max-kobold/head-imp.svg"
  37062. }
  37063. },
  37064. mawImp: {
  37065. height: math.unit(0.75, "feet"),
  37066. name: "Maw (Imp)",
  37067. image: {
  37068. source: "./media/characters/max-kobold/maw-imp.svg"
  37069. }
  37070. },
  37071. mawDemi: {
  37072. height: math.unit(0.42, "feet"),
  37073. name: "Maw (Demi)",
  37074. image: {
  37075. source: "./media/characters/max-kobold/maw-demi.svg"
  37076. }
  37077. },
  37078. },
  37079. [
  37080. {
  37081. name: "Normal",
  37082. height: math.unit(1 + 11/12, "feet"),
  37083. default: true
  37084. },
  37085. ]
  37086. ))
  37087. characterMakers.push(() => makeCharacter(
  37088. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37089. {
  37090. front: {
  37091. height: math.unit(7 + 5/12, "feet"),
  37092. name: "Front",
  37093. image: {
  37094. source: "./media/characters/carbon/front.svg",
  37095. extra: 1754/1689,
  37096. bottom: 65/1819
  37097. }
  37098. },
  37099. back: {
  37100. height: math.unit(7 + 5/12, "feet"),
  37101. name: "Back",
  37102. image: {
  37103. source: "./media/characters/carbon/back.svg",
  37104. extra: 1762/1695,
  37105. bottom: 24/1786
  37106. }
  37107. },
  37108. frontGigantamax: {
  37109. height: math.unit(150, "feet"),
  37110. name: "Front (Gigantamax)",
  37111. image: {
  37112. source: "./media/characters/carbon/front-gigantamax.svg",
  37113. extra: 1826/1669,
  37114. bottom: 59/1885
  37115. }
  37116. },
  37117. backGigantamax: {
  37118. height: math.unit(150, "feet"),
  37119. name: "Back (Gigantamax)",
  37120. image: {
  37121. source: "./media/characters/carbon/back-gigantamax.svg",
  37122. extra: 1796/1653,
  37123. bottom: 53/1849
  37124. }
  37125. },
  37126. maw: {
  37127. height: math.unit(0.48, "feet"),
  37128. name: "Maw",
  37129. image: {
  37130. source: "./media/characters/carbon/maw.svg"
  37131. }
  37132. },
  37133. mawGigantamax: {
  37134. height: math.unit(7.5, "feet"),
  37135. name: "Maw (Gigantamax)",
  37136. image: {
  37137. source: "./media/characters/carbon/maw-gigantamax.svg"
  37138. }
  37139. },
  37140. },
  37141. [
  37142. {
  37143. name: "Normal",
  37144. height: math.unit(7 + 5/12, "feet"),
  37145. default: true
  37146. },
  37147. ]
  37148. ))
  37149. characterMakers.push(() => makeCharacter(
  37150. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37151. {
  37152. front: {
  37153. height: math.unit(6, "feet"),
  37154. name: "Front",
  37155. image: {
  37156. source: "./media/characters/maverick/front.svg",
  37157. extra: 1672/1661,
  37158. bottom: 85/1757
  37159. }
  37160. },
  37161. back: {
  37162. height: math.unit(6, "feet"),
  37163. name: "Back",
  37164. image: {
  37165. source: "./media/characters/maverick/back.svg",
  37166. extra: 1642/1631,
  37167. bottom: 38/1680
  37168. }
  37169. },
  37170. },
  37171. [
  37172. {
  37173. name: "Normal",
  37174. height: math.unit(6, "feet"),
  37175. default: true
  37176. },
  37177. ]
  37178. ))
  37179. characterMakers.push(() => makeCharacter(
  37180. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37181. {
  37182. front: {
  37183. height: math.unit(15, "feet"),
  37184. weight: math.unit(615, "lb"),
  37185. name: "Front",
  37186. image: {
  37187. source: "./media/characters/grockle/front.svg",
  37188. extra: 1535/1427,
  37189. bottom: 56/1591
  37190. }
  37191. },
  37192. },
  37193. [
  37194. {
  37195. name: "Normal",
  37196. height: math.unit(15, "feet"),
  37197. default: true
  37198. },
  37199. {
  37200. name: "Large",
  37201. height: math.unit(150, "feet")
  37202. },
  37203. {
  37204. name: "Macro",
  37205. height: math.unit(1876, "feet")
  37206. },
  37207. {
  37208. name: "Mega Macro",
  37209. height: math.unit(121940, "feet")
  37210. },
  37211. {
  37212. name: "Giga Macro",
  37213. height: math.unit(750, "km")
  37214. },
  37215. {
  37216. name: "Tera Macro",
  37217. height: math.unit(750000, "km")
  37218. },
  37219. {
  37220. name: "Galactic",
  37221. height: math.unit(1.4e5, "km")
  37222. },
  37223. {
  37224. name: "Godlike",
  37225. height: math.unit(9.8e280, "galaxies")
  37226. },
  37227. ]
  37228. ))
  37229. characterMakers.push(() => makeCharacter(
  37230. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37231. {
  37232. front: {
  37233. height: math.unit(11, "meters"),
  37234. weight: math.unit(20, "tonnes"),
  37235. name: "Front",
  37236. image: {
  37237. source: "./media/characters/alistair/front.svg",
  37238. extra: 1265/1009,
  37239. bottom: 93/1358
  37240. }
  37241. },
  37242. },
  37243. [
  37244. {
  37245. name: "Normal",
  37246. height: math.unit(11, "meters"),
  37247. default: true
  37248. },
  37249. ]
  37250. ))
  37251. characterMakers.push(() => makeCharacter(
  37252. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37253. {
  37254. front: {
  37255. height: math.unit(5 + 8/12, "feet"),
  37256. name: "Front",
  37257. image: {
  37258. source: "./media/characters/haruka/front.svg",
  37259. extra: 2012/1952,
  37260. bottom: 0/2012
  37261. }
  37262. },
  37263. },
  37264. [
  37265. {
  37266. name: "Normal",
  37267. height: math.unit(5 + 8/12, "feet"),
  37268. default: true
  37269. },
  37270. ]
  37271. ))
  37272. characterMakers.push(() => makeCharacter(
  37273. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37274. {
  37275. back: {
  37276. height: math.unit(9, "feet"),
  37277. name: "Back",
  37278. image: {
  37279. source: "./media/characters/vivian-sylveon/back.svg",
  37280. extra: 1853/1714,
  37281. bottom: 0/1853
  37282. }
  37283. },
  37284. },
  37285. [
  37286. {
  37287. name: "Normal",
  37288. height: math.unit(9, "feet"),
  37289. default: true
  37290. },
  37291. {
  37292. name: "Macro",
  37293. height: math.unit(500, "feet")
  37294. },
  37295. {
  37296. name: "Megamacro",
  37297. height: math.unit(600, "miles")
  37298. },
  37299. {
  37300. name: "Gigamacro",
  37301. height: math.unit(30000, "miles")
  37302. },
  37303. ]
  37304. ))
  37305. characterMakers.push(() => makeCharacter(
  37306. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37307. {
  37308. anthro: {
  37309. height: math.unit(5 + 10/12, "feet"),
  37310. weight: math.unit(100, "lb"),
  37311. name: "Anthro",
  37312. image: {
  37313. source: "./media/characters/daiki/anthro.svg",
  37314. extra: 1115/1027,
  37315. bottom: 69/1184
  37316. }
  37317. },
  37318. feral: {
  37319. height: math.unit(200, "feet"),
  37320. name: "Feral",
  37321. image: {
  37322. source: "./media/characters/daiki/feral.svg",
  37323. extra: 1256/313,
  37324. bottom: 39/1295
  37325. }
  37326. },
  37327. feralHead: {
  37328. height: math.unit(171, "feet"),
  37329. name: "Feral Head",
  37330. image: {
  37331. source: "./media/characters/daiki/feral-head.svg"
  37332. }
  37333. },
  37334. manaDragon: {
  37335. height: math.unit(170, "meters"),
  37336. name: "Mana-dragon",
  37337. image: {
  37338. source: "./media/characters/daiki/mana-dragon.svg",
  37339. extra: 763/420,
  37340. bottom: 97/860
  37341. }
  37342. },
  37343. },
  37344. [
  37345. {
  37346. name: "Normal",
  37347. height: math.unit(5 + 10/12, "feet"),
  37348. default: true
  37349. },
  37350. ]
  37351. ))
  37352. characterMakers.push(() => makeCharacter(
  37353. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37354. {
  37355. fullyEquippedFront: {
  37356. height: math.unit(3 + 1/12, "feet"),
  37357. weight: math.unit(24, "lb"),
  37358. name: "Fully Equipped (Front)",
  37359. image: {
  37360. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37361. extra: 687/605,
  37362. bottom: 18/705
  37363. }
  37364. },
  37365. fullyEquippedBack: {
  37366. height: math.unit(3 + 1/12, "feet"),
  37367. weight: math.unit(24, "lb"),
  37368. name: "Fully Equipped (Back)",
  37369. image: {
  37370. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37371. extra: 689/590,
  37372. bottom: 18/707
  37373. }
  37374. },
  37375. dailyWear: {
  37376. height: math.unit(3 + 1/12, "feet"),
  37377. weight: math.unit(24, "lb"),
  37378. name: "Daily Wear",
  37379. image: {
  37380. source: "./media/characters/tea-spot/daily-wear.svg",
  37381. extra: 701/620,
  37382. bottom: 21/722
  37383. }
  37384. },
  37385. maidWork: {
  37386. height: math.unit(3 + 1/12, "feet"),
  37387. weight: math.unit(24, "lb"),
  37388. name: "Maid Work",
  37389. image: {
  37390. source: "./media/characters/tea-spot/maid-work.svg",
  37391. extra: 693/609,
  37392. bottom: 15/708
  37393. }
  37394. },
  37395. },
  37396. [
  37397. {
  37398. name: "Normal",
  37399. height: math.unit(3 + 1/12, "feet"),
  37400. default: true
  37401. },
  37402. ]
  37403. ))
  37404. characterMakers.push(() => makeCharacter(
  37405. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37406. {
  37407. front: {
  37408. height: math.unit(175, "cm"),
  37409. weight: math.unit(75, "kg"),
  37410. name: "Front",
  37411. image: {
  37412. source: "./media/characters/chee/front.svg",
  37413. extra: 1796/1740,
  37414. bottom: 40/1836
  37415. }
  37416. },
  37417. },
  37418. [
  37419. {
  37420. name: "Micro-Micro",
  37421. height: math.unit(1, "nm")
  37422. },
  37423. {
  37424. name: "Micro-erst",
  37425. height: math.unit(1, "micrometer")
  37426. },
  37427. {
  37428. name: "Micro-er",
  37429. height: math.unit(1, "cm")
  37430. },
  37431. {
  37432. name: "Normal",
  37433. height: math.unit(175, "cm"),
  37434. default: true
  37435. },
  37436. {
  37437. name: "Macro",
  37438. height: math.unit(100, "m")
  37439. },
  37440. {
  37441. name: "Macro-er",
  37442. height: math.unit(1, "km")
  37443. },
  37444. {
  37445. name: "Macro-erst",
  37446. height: math.unit(10, "km")
  37447. },
  37448. {
  37449. name: "Macro-Macro",
  37450. height: math.unit(100, "km")
  37451. },
  37452. ]
  37453. ))
  37454. characterMakers.push(() => makeCharacter(
  37455. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37456. {
  37457. front: {
  37458. height: math.unit(11 + 9/12, "feet"),
  37459. weight: math.unit(935, "lb"),
  37460. name: "Front",
  37461. image: {
  37462. source: "./media/characters/kingsley/front.svg",
  37463. extra: 1803/1674,
  37464. bottom: 127/1930
  37465. }
  37466. },
  37467. frontNude: {
  37468. height: math.unit(11 + 9/12, "feet"),
  37469. weight: math.unit(935, "lb"),
  37470. name: "Front (Nude)",
  37471. image: {
  37472. source: "./media/characters/kingsley/front-nude.svg",
  37473. extra: 1803/1674,
  37474. bottom: 127/1930
  37475. }
  37476. },
  37477. },
  37478. [
  37479. {
  37480. name: "Normal",
  37481. height: math.unit(11 + 9/12, "feet"),
  37482. default: true
  37483. },
  37484. ]
  37485. ))
  37486. characterMakers.push(() => makeCharacter(
  37487. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37488. {
  37489. side: {
  37490. height: math.unit(9, "feet"),
  37491. name: "Side",
  37492. image: {
  37493. source: "./media/characters/rymel/side.svg",
  37494. extra: 792/469,
  37495. bottom: 121/913
  37496. }
  37497. },
  37498. maw: {
  37499. height: math.unit(2.4, "meters"),
  37500. name: "Maw",
  37501. image: {
  37502. source: "./media/characters/rymel/maw.svg"
  37503. }
  37504. },
  37505. },
  37506. [
  37507. {
  37508. name: "House Drake",
  37509. height: math.unit(2, "feet")
  37510. },
  37511. {
  37512. name: "Reduced",
  37513. height: math.unit(4.5, "feet")
  37514. },
  37515. {
  37516. name: "Normal",
  37517. height: math.unit(9, "feet"),
  37518. default: true
  37519. },
  37520. ]
  37521. ))
  37522. characterMakers.push(() => makeCharacter(
  37523. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37524. {
  37525. front: {
  37526. height: math.unit(1.74, "meters"),
  37527. weight: math.unit(55, "kg"),
  37528. name: "Front",
  37529. image: {
  37530. source: "./media/characters/rubus/front.svg",
  37531. extra: 1894/1742,
  37532. bottom: 44/1938
  37533. }
  37534. },
  37535. },
  37536. [
  37537. {
  37538. name: "Normal",
  37539. height: math.unit(1.74, "meters"),
  37540. default: true
  37541. },
  37542. ]
  37543. ))
  37544. characterMakers.push(() => makeCharacter(
  37545. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37546. {
  37547. front: {
  37548. height: math.unit(5 + 2/12, "feet"),
  37549. weight: math.unit(112, "lb"),
  37550. name: "Front",
  37551. image: {
  37552. source: "./media/characters/cassie-kingston/front.svg",
  37553. extra: 1438/1390,
  37554. bottom: 47/1485
  37555. }
  37556. },
  37557. },
  37558. [
  37559. {
  37560. name: "Normal",
  37561. height: math.unit(5 + 2/12, "feet"),
  37562. default: true
  37563. },
  37564. {
  37565. name: "Macro",
  37566. height: math.unit(128, "feet")
  37567. },
  37568. {
  37569. name: "Megamacro",
  37570. height: math.unit(2.56, "miles")
  37571. },
  37572. ]
  37573. ))
  37574. characterMakers.push(() => makeCharacter(
  37575. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37576. {
  37577. front: {
  37578. height: math.unit(7, "feet"),
  37579. name: "Front",
  37580. image: {
  37581. source: "./media/characters/fox/front.svg",
  37582. extra: 1798/1703,
  37583. bottom: 55/1853
  37584. }
  37585. },
  37586. back: {
  37587. height: math.unit(7, "feet"),
  37588. name: "Back",
  37589. image: {
  37590. source: "./media/characters/fox/back.svg",
  37591. extra: 1748/1649,
  37592. bottom: 32/1780
  37593. }
  37594. },
  37595. head: {
  37596. height: math.unit(1.95, "feet"),
  37597. name: "Head",
  37598. image: {
  37599. source: "./media/characters/fox/head.svg"
  37600. }
  37601. },
  37602. dick: {
  37603. height: math.unit(1.33, "feet"),
  37604. name: "Dick",
  37605. image: {
  37606. source: "./media/characters/fox/dick.svg"
  37607. }
  37608. },
  37609. foot: {
  37610. height: math.unit(1, "feet"),
  37611. name: "Foot",
  37612. image: {
  37613. source: "./media/characters/fox/foot.svg"
  37614. }
  37615. },
  37616. paw: {
  37617. height: math.unit(0.92, "feet"),
  37618. name: "Paw",
  37619. image: {
  37620. source: "./media/characters/fox/paw.svg"
  37621. }
  37622. },
  37623. },
  37624. [
  37625. {
  37626. name: "Small",
  37627. height: math.unit(3, "inches")
  37628. },
  37629. {
  37630. name: "\"Realistic\"",
  37631. height: math.unit(7, "feet")
  37632. },
  37633. {
  37634. name: "Normal",
  37635. height: math.unit(150, "feet"),
  37636. default: true
  37637. },
  37638. {
  37639. name: "BIG",
  37640. height: math.unit(1200, "feet")
  37641. },
  37642. {
  37643. name: "👀",
  37644. height: math.unit(5, "miles")
  37645. },
  37646. {
  37647. name: "👀👀👀",
  37648. height: math.unit(64, "miles")
  37649. },
  37650. ]
  37651. ))
  37652. characterMakers.push(() => makeCharacter(
  37653. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37654. {
  37655. front: {
  37656. height: math.unit(625, "feet"),
  37657. name: "Front",
  37658. image: {
  37659. source: "./media/characters/asonja-rossa/front.svg",
  37660. extra: 1833/1686,
  37661. bottom: 24/1857
  37662. }
  37663. },
  37664. back: {
  37665. height: math.unit(625, "feet"),
  37666. name: "Back",
  37667. image: {
  37668. source: "./media/characters/asonja-rossa/back.svg",
  37669. extra: 1852/1753,
  37670. bottom: 26/1878
  37671. }
  37672. },
  37673. },
  37674. [
  37675. {
  37676. name: "Macro",
  37677. height: math.unit(625, "feet"),
  37678. default: true
  37679. },
  37680. ]
  37681. ))
  37682. characterMakers.push(() => makeCharacter(
  37683. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37684. {
  37685. side: {
  37686. height: math.unit(8, "feet"),
  37687. name: "Side",
  37688. image: {
  37689. source: "./media/characters/rezukii/side.svg",
  37690. extra: 979/542,
  37691. bottom: 87/1066
  37692. }
  37693. },
  37694. sitting: {
  37695. height: math.unit(14.6, "feet"),
  37696. name: "Sitting",
  37697. image: {
  37698. source: "./media/characters/rezukii/sitting.svg",
  37699. extra: 1023/813,
  37700. bottom: 45/1068
  37701. }
  37702. },
  37703. },
  37704. [
  37705. {
  37706. name: "Tiny",
  37707. height: math.unit(2, "feet")
  37708. },
  37709. {
  37710. name: "Smol",
  37711. height: math.unit(4, "feet")
  37712. },
  37713. {
  37714. name: "Normal",
  37715. height: math.unit(8, "feet"),
  37716. default: true
  37717. },
  37718. {
  37719. name: "Big",
  37720. height: math.unit(12, "feet")
  37721. },
  37722. {
  37723. name: "Macro",
  37724. height: math.unit(30, "feet")
  37725. },
  37726. ]
  37727. ))
  37728. characterMakers.push(() => makeCharacter(
  37729. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37730. {
  37731. front: {
  37732. height: math.unit(14, "feet"),
  37733. weight: math.unit(9.5, "tonnes"),
  37734. name: "Front",
  37735. image: {
  37736. source: "./media/characters/dawnheart/front.svg",
  37737. extra: 2792/2675,
  37738. bottom: 64/2856
  37739. }
  37740. },
  37741. },
  37742. [
  37743. {
  37744. name: "Normal",
  37745. height: math.unit(14, "feet"),
  37746. default: true
  37747. },
  37748. ]
  37749. ))
  37750. characterMakers.push(() => makeCharacter(
  37751. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37752. {
  37753. front: {
  37754. height: math.unit(1.7, "m"),
  37755. name: "Front",
  37756. image: {
  37757. source: "./media/characters/gladi/front.svg",
  37758. extra: 1460/1362,
  37759. bottom: 19/1479
  37760. }
  37761. },
  37762. back: {
  37763. height: math.unit(1.7, "m"),
  37764. name: "Back",
  37765. image: {
  37766. source: "./media/characters/gladi/back.svg",
  37767. extra: 1459/1357,
  37768. bottom: 12/1471
  37769. }
  37770. },
  37771. feral: {
  37772. height: math.unit(2.05, "m"),
  37773. name: "Feral",
  37774. image: {
  37775. source: "./media/characters/gladi/feral.svg",
  37776. extra: 821/557,
  37777. bottom: 91/912
  37778. }
  37779. },
  37780. },
  37781. [
  37782. {
  37783. name: "Shortest",
  37784. height: math.unit(70, "cm")
  37785. },
  37786. {
  37787. name: "Normal",
  37788. height: math.unit(1.7, "m")
  37789. },
  37790. {
  37791. name: "Macro",
  37792. height: math.unit(10, "m"),
  37793. default: true
  37794. },
  37795. {
  37796. name: "Tallest",
  37797. height: math.unit(200, "m")
  37798. },
  37799. ]
  37800. ))
  37801. characterMakers.push(() => makeCharacter(
  37802. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37803. {
  37804. front: {
  37805. height: math.unit(5 + 7/12, "feet"),
  37806. weight: math.unit(2, "tons"),
  37807. name: "Front",
  37808. image: {
  37809. source: "./media/characters/erdno/front.svg",
  37810. extra: 1234/1129,
  37811. bottom: 35/1269
  37812. }
  37813. },
  37814. angled: {
  37815. height: math.unit(5 + 7/12, "feet"),
  37816. weight: math.unit(2, "tons"),
  37817. name: "Angled",
  37818. image: {
  37819. source: "./media/characters/erdno/angled.svg",
  37820. extra: 1185/1139,
  37821. bottom: 36/1221
  37822. }
  37823. },
  37824. side: {
  37825. height: math.unit(5 + 7/12, "feet"),
  37826. weight: math.unit(2, "tons"),
  37827. name: "Side",
  37828. image: {
  37829. source: "./media/characters/erdno/side.svg",
  37830. extra: 1191/1144,
  37831. bottom: 40/1231
  37832. }
  37833. },
  37834. back: {
  37835. height: math.unit(5 + 7/12, "feet"),
  37836. weight: math.unit(2, "tons"),
  37837. name: "Back",
  37838. image: {
  37839. source: "./media/characters/erdno/back.svg",
  37840. extra: 1202/1146,
  37841. bottom: 17/1219
  37842. }
  37843. },
  37844. frontNsfw: {
  37845. height: math.unit(5 + 7/12, "feet"),
  37846. weight: math.unit(2, "tons"),
  37847. name: "Front (NSFW)",
  37848. image: {
  37849. source: "./media/characters/erdno/front-nsfw.svg",
  37850. extra: 1234/1129,
  37851. bottom: 35/1269
  37852. }
  37853. },
  37854. angledNsfw: {
  37855. height: math.unit(5 + 7/12, "feet"),
  37856. weight: math.unit(2, "tons"),
  37857. name: "Angled (NSFW)",
  37858. image: {
  37859. source: "./media/characters/erdno/angled-nsfw.svg",
  37860. extra: 1185/1139,
  37861. bottom: 36/1221
  37862. }
  37863. },
  37864. sideNsfw: {
  37865. height: math.unit(5 + 7/12, "feet"),
  37866. weight: math.unit(2, "tons"),
  37867. name: "Side (NSFW)",
  37868. image: {
  37869. source: "./media/characters/erdno/side-nsfw.svg",
  37870. extra: 1191/1144,
  37871. bottom: 40/1231
  37872. }
  37873. },
  37874. backNsfw: {
  37875. height: math.unit(5 + 7/12, "feet"),
  37876. weight: math.unit(2, "tons"),
  37877. name: "Back (NSFW)",
  37878. image: {
  37879. source: "./media/characters/erdno/back-nsfw.svg",
  37880. extra: 1202/1146,
  37881. bottom: 17/1219
  37882. }
  37883. },
  37884. frontHyper: {
  37885. height: math.unit(5 + 7/12, "feet"),
  37886. weight: math.unit(2, "tons"),
  37887. name: "Front (Hyper)",
  37888. image: {
  37889. source: "./media/characters/erdno/front-hyper.svg",
  37890. extra: 1298/1136,
  37891. bottom: 35/1333
  37892. }
  37893. },
  37894. },
  37895. [
  37896. {
  37897. name: "Normal",
  37898. height: math.unit(5 + 7/12, "feet"),
  37899. default: true
  37900. },
  37901. {
  37902. name: "Big",
  37903. height: math.unit(5.7, "meters")
  37904. },
  37905. {
  37906. name: "Macro",
  37907. height: math.unit(5.7, "kilometers")
  37908. },
  37909. {
  37910. name: "Megamacro",
  37911. height: math.unit(5.7, "earths")
  37912. },
  37913. ]
  37914. ))
  37915. characterMakers.push(() => makeCharacter(
  37916. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37917. {
  37918. front: {
  37919. height: math.unit(5 + 10/12, "feet"),
  37920. weight: math.unit(150, "lb"),
  37921. name: "Front",
  37922. image: {
  37923. source: "./media/characters/jamie/front.svg",
  37924. extra: 1908/1768,
  37925. bottom: 19/1927
  37926. }
  37927. },
  37928. },
  37929. [
  37930. {
  37931. name: "Minimum",
  37932. height: math.unit(2, "cm")
  37933. },
  37934. {
  37935. name: "Micro",
  37936. height: math.unit(3, "inches")
  37937. },
  37938. {
  37939. name: "Normal",
  37940. height: math.unit(5 + 10/12, "feet"),
  37941. default: true
  37942. },
  37943. {
  37944. name: "Macro",
  37945. height: math.unit(150, "feet")
  37946. },
  37947. {
  37948. name: "Megamacro",
  37949. height: math.unit(10000, "m")
  37950. },
  37951. ]
  37952. ))
  37953. characterMakers.push(() => makeCharacter(
  37954. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37955. {
  37956. front: {
  37957. height: math.unit(2, "meters"),
  37958. weight: math.unit(100, "kg"),
  37959. name: "Front",
  37960. image: {
  37961. source: "./media/characters/shiron/front.svg",
  37962. extra: 2103/1985,
  37963. bottom: 98/2201
  37964. }
  37965. },
  37966. back: {
  37967. height: math.unit(2, "meters"),
  37968. weight: math.unit(100, "kg"),
  37969. name: "Back",
  37970. image: {
  37971. source: "./media/characters/shiron/back.svg",
  37972. extra: 2110/2015,
  37973. bottom: 89/2199
  37974. }
  37975. },
  37976. hand: {
  37977. height: math.unit(0.96, "feet"),
  37978. name: "Hand",
  37979. image: {
  37980. source: "./media/characters/shiron/hand.svg"
  37981. }
  37982. },
  37983. foot: {
  37984. height: math.unit(1.464, "feet"),
  37985. name: "Foot",
  37986. image: {
  37987. source: "./media/characters/shiron/foot.svg"
  37988. }
  37989. },
  37990. },
  37991. [
  37992. {
  37993. name: "Normal",
  37994. height: math.unit(2, "meters")
  37995. },
  37996. {
  37997. name: "Macro",
  37998. height: math.unit(500, "meters"),
  37999. default: true
  38000. },
  38001. {
  38002. name: "Megamacro",
  38003. height: math.unit(20, "km")
  38004. },
  38005. ]
  38006. ))
  38007. characterMakers.push(() => makeCharacter(
  38008. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38009. {
  38010. front: {
  38011. height: math.unit(6, "feet"),
  38012. name: "Front",
  38013. image: {
  38014. source: "./media/characters/sam/front.svg",
  38015. extra: 849/826,
  38016. bottom: 19/868
  38017. }
  38018. },
  38019. },
  38020. [
  38021. {
  38022. name: "Normal",
  38023. height: math.unit(6, "feet"),
  38024. default: true
  38025. },
  38026. ]
  38027. ))
  38028. characterMakers.push(() => makeCharacter(
  38029. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38030. {
  38031. front: {
  38032. height: math.unit(8 + 4/12, "feet"),
  38033. weight: math.unit(122, "kg"),
  38034. name: "Front",
  38035. image: {
  38036. source: "./media/characters/namori-kurogawa/front.svg",
  38037. extra: 1894/1576,
  38038. bottom: 34/1928
  38039. }
  38040. },
  38041. },
  38042. [
  38043. {
  38044. name: "Normal",
  38045. height: math.unit(8 + 4/12, "feet"),
  38046. default: true
  38047. },
  38048. ]
  38049. ))
  38050. characterMakers.push(() => makeCharacter(
  38051. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38052. {
  38053. front: {
  38054. height: math.unit(9, "feet"),
  38055. weight: math.unit(621, "lb"),
  38056. name: "Front",
  38057. image: {
  38058. source: "./media/characters/unmru/front.svg",
  38059. extra: 1853/1747,
  38060. bottom: 73/1926
  38061. }
  38062. },
  38063. side: {
  38064. height: math.unit(9, "feet"),
  38065. weight: math.unit(621, "lb"),
  38066. name: "Side",
  38067. image: {
  38068. source: "./media/characters/unmru/side.svg",
  38069. extra: 1781/1671,
  38070. bottom: 127/1908
  38071. }
  38072. },
  38073. back: {
  38074. height: math.unit(9, "feet"),
  38075. weight: math.unit(621, "lb"),
  38076. name: "Back",
  38077. image: {
  38078. source: "./media/characters/unmru/back.svg",
  38079. extra: 1894/1765,
  38080. bottom: 75/1969
  38081. }
  38082. },
  38083. dick: {
  38084. height: math.unit(3, "feet"),
  38085. weight: math.unit(35, "lb"),
  38086. name: "Dick",
  38087. image: {
  38088. source: "./media/characters/unmru/dick.svg"
  38089. }
  38090. },
  38091. },
  38092. [
  38093. {
  38094. name: "Normal",
  38095. height: math.unit(9, "feet")
  38096. },
  38097. {
  38098. name: "Natural",
  38099. height: math.unit(27, "feet"),
  38100. default: true
  38101. },
  38102. {
  38103. name: "Giant",
  38104. height: math.unit(90, "feet")
  38105. },
  38106. {
  38107. name: "Kaiju",
  38108. height: math.unit(270, "feet")
  38109. },
  38110. {
  38111. name: "Macro",
  38112. height: math.unit(900, "feet")
  38113. },
  38114. {
  38115. name: "Macro+",
  38116. height: math.unit(2700, "feet")
  38117. },
  38118. {
  38119. name: "Megamacro",
  38120. height: math.unit(9000, "feet")
  38121. },
  38122. {
  38123. name: "City-Crushing",
  38124. height: math.unit(27000, "feet")
  38125. },
  38126. {
  38127. name: "Mountain-Mashing",
  38128. height: math.unit(90000, "feet")
  38129. },
  38130. {
  38131. name: "Earth-Eclipsing",
  38132. height: math.unit(2.7e8, "feet")
  38133. },
  38134. {
  38135. name: "Sol-Swallowing",
  38136. height: math.unit(9e10, "feet")
  38137. },
  38138. {
  38139. name: "Majoris-Munching",
  38140. height: math.unit(2.7e13, "feet")
  38141. },
  38142. ]
  38143. ))
  38144. characterMakers.push(() => makeCharacter(
  38145. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38146. {
  38147. front: {
  38148. height: math.unit(1, "inch"),
  38149. name: "Front",
  38150. image: {
  38151. source: "./media/characters/squeaks-mouse/front.svg",
  38152. extra: 352/308,
  38153. bottom: 25/377
  38154. }
  38155. },
  38156. },
  38157. [
  38158. {
  38159. name: "Micro",
  38160. height: math.unit(1, "inch"),
  38161. default: true
  38162. },
  38163. ]
  38164. ))
  38165. characterMakers.push(() => makeCharacter(
  38166. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38167. {
  38168. side: {
  38169. height: math.unit(35, "feet"),
  38170. name: "Side",
  38171. image: {
  38172. source: "./media/characters/sayko/side.svg",
  38173. extra: 1697/1021,
  38174. bottom: 82/1779
  38175. }
  38176. },
  38177. head: {
  38178. height: math.unit(16, "feet"),
  38179. name: "Head",
  38180. image: {
  38181. source: "./media/characters/sayko/head.svg"
  38182. }
  38183. },
  38184. forepaw: {
  38185. height: math.unit(7.85, "feet"),
  38186. name: "Forepaw",
  38187. image: {
  38188. source: "./media/characters/sayko/forepaw.svg"
  38189. }
  38190. },
  38191. hindpaw: {
  38192. height: math.unit(8.8, "feet"),
  38193. name: "Hindpaw",
  38194. image: {
  38195. source: "./media/characters/sayko/hindpaw.svg"
  38196. }
  38197. },
  38198. },
  38199. [
  38200. {
  38201. name: "Normal",
  38202. height: math.unit(35, "feet"),
  38203. default: true
  38204. },
  38205. {
  38206. name: "Colossus",
  38207. height: math.unit(100, "meters")
  38208. },
  38209. {
  38210. name: "\"Small\" Deity",
  38211. height: math.unit(1, "km")
  38212. },
  38213. {
  38214. name: "\"Large\" Deity",
  38215. height: math.unit(15, "km")
  38216. },
  38217. ]
  38218. ))
  38219. characterMakers.push(() => makeCharacter(
  38220. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38221. {
  38222. front: {
  38223. height: math.unit(6, "feet"),
  38224. weight: math.unit(250, "lb"),
  38225. name: "Front",
  38226. image: {
  38227. source: "./media/characters/mukiro/front.svg",
  38228. extra: 1368/1310,
  38229. bottom: 34/1402
  38230. }
  38231. },
  38232. },
  38233. [
  38234. {
  38235. name: "Normal",
  38236. height: math.unit(6, "feet"),
  38237. default: true
  38238. },
  38239. ]
  38240. ))
  38241. characterMakers.push(() => makeCharacter(
  38242. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38243. {
  38244. front: {
  38245. height: math.unit(12 + 4/12, "feet"),
  38246. name: "Front",
  38247. image: {
  38248. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38249. extra: 1346/1311,
  38250. bottom: 65/1411
  38251. }
  38252. },
  38253. },
  38254. [
  38255. {
  38256. name: "Base",
  38257. height: math.unit(12 + 4/12, "feet"),
  38258. default: true
  38259. },
  38260. {
  38261. name: "Macro",
  38262. height: math.unit(150, "feet")
  38263. },
  38264. {
  38265. name: "Mega",
  38266. height: math.unit(2, "miles")
  38267. },
  38268. {
  38269. name: "Demi God",
  38270. height: math.unit(4, "AU")
  38271. },
  38272. {
  38273. name: "God Size",
  38274. height: math.unit(1, "universe")
  38275. },
  38276. ]
  38277. ))
  38278. characterMakers.push(() => makeCharacter(
  38279. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38280. {
  38281. front: {
  38282. height: math.unit(3 + 3/12, "feet"),
  38283. weight: math.unit(88, "lb"),
  38284. name: "Front",
  38285. image: {
  38286. source: "./media/characters/trey/front.svg",
  38287. extra: 1815/1509,
  38288. bottom: 60/1875
  38289. }
  38290. },
  38291. },
  38292. [
  38293. {
  38294. name: "Normal",
  38295. height: math.unit(3 + 3/12, "feet"),
  38296. default: true
  38297. },
  38298. ]
  38299. ))
  38300. characterMakers.push(() => makeCharacter(
  38301. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38302. {
  38303. front: {
  38304. height: math.unit(4, "meters"),
  38305. name: "Front",
  38306. image: {
  38307. source: "./media/characters/adelonda/front.svg",
  38308. extra: 1077/982,
  38309. bottom: 39/1116
  38310. }
  38311. },
  38312. back: {
  38313. height: math.unit(4, "meters"),
  38314. name: "Back",
  38315. image: {
  38316. source: "./media/characters/adelonda/back.svg",
  38317. extra: 1105/1003,
  38318. bottom: 25/1130
  38319. }
  38320. },
  38321. feral: {
  38322. height: math.unit(40/1.5, "meters"),
  38323. name: "Feral",
  38324. image: {
  38325. source: "./media/characters/adelonda/feral.svg",
  38326. extra: 597/271,
  38327. bottom: 387/984
  38328. }
  38329. },
  38330. },
  38331. [
  38332. {
  38333. name: "Normal",
  38334. height: math.unit(4, "meters"),
  38335. default: true
  38336. },
  38337. ]
  38338. ))
  38339. characterMakers.push(() => makeCharacter(
  38340. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38341. {
  38342. front: {
  38343. height: math.unit(8 + 4/12, "feet"),
  38344. weight: math.unit(670, "lb"),
  38345. name: "Front",
  38346. image: {
  38347. source: "./media/characters/acadiel/front.svg",
  38348. extra: 1901/1595,
  38349. bottom: 142/2043
  38350. }
  38351. },
  38352. },
  38353. [
  38354. {
  38355. name: "Normal",
  38356. height: math.unit(8 + 4/12, "feet"),
  38357. default: true
  38358. },
  38359. {
  38360. name: "Macro",
  38361. height: math.unit(200, "feet")
  38362. },
  38363. ]
  38364. ))
  38365. characterMakers.push(() => makeCharacter(
  38366. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38367. {
  38368. front: {
  38369. height: math.unit(6 + 2/12, "feet"),
  38370. weight: math.unit(185, "lb"),
  38371. name: "Front",
  38372. image: {
  38373. source: "./media/characters/kayne-ein/front.svg",
  38374. extra: 1780/1560,
  38375. bottom: 81/1861
  38376. }
  38377. },
  38378. },
  38379. [
  38380. {
  38381. name: "Normal",
  38382. height: math.unit(6 + 2/12, "feet"),
  38383. default: true
  38384. },
  38385. {
  38386. name: "Transformation Stage",
  38387. height: math.unit(15, "feet")
  38388. },
  38389. {
  38390. name: "Macro",
  38391. height: math.unit(150, "feet")
  38392. },
  38393. {
  38394. name: "Earth's Shadow",
  38395. height: math.unit(6200, "miles")
  38396. },
  38397. {
  38398. name: "Universal Demon",
  38399. height: math.unit(28e9, "parsecs")
  38400. },
  38401. {
  38402. name: "Multiverse God",
  38403. height: math.unit(3, "multiverses")
  38404. },
  38405. ]
  38406. ))
  38407. characterMakers.push(() => makeCharacter(
  38408. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38409. {
  38410. front: {
  38411. height: math.unit(5 + 5/12, "feet"),
  38412. name: "Front",
  38413. image: {
  38414. source: "./media/characters/fawn/front.svg",
  38415. extra: 1873/1731,
  38416. bottom: 95/1968
  38417. }
  38418. },
  38419. back: {
  38420. height: math.unit(5 + 5/12, "feet"),
  38421. name: "Back",
  38422. image: {
  38423. source: "./media/characters/fawn/back.svg",
  38424. extra: 1813/1700,
  38425. bottom: 14/1827
  38426. }
  38427. },
  38428. hoof: {
  38429. height: math.unit(1.45, "feet"),
  38430. name: "Hoof",
  38431. image: {
  38432. source: "./media/characters/fawn/hoof.svg"
  38433. }
  38434. },
  38435. },
  38436. [
  38437. {
  38438. name: "Normal",
  38439. height: math.unit(5 + 5/12, "feet"),
  38440. default: true
  38441. },
  38442. ]
  38443. ))
  38444. characterMakers.push(() => makeCharacter(
  38445. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38446. {
  38447. front: {
  38448. height: math.unit(2 + 5/12, "feet"),
  38449. name: "Front",
  38450. image: {
  38451. source: "./media/characters/orion/front.svg",
  38452. extra: 1366/1304,
  38453. bottom: 43/1409
  38454. }
  38455. },
  38456. paw: {
  38457. height: math.unit(0.52, "feet"),
  38458. name: "Paw",
  38459. image: {
  38460. source: "./media/characters/orion/paw.svg"
  38461. }
  38462. },
  38463. },
  38464. [
  38465. {
  38466. name: "Normal",
  38467. height: math.unit(2 + 5/12, "feet"),
  38468. default: true
  38469. },
  38470. ]
  38471. ))
  38472. characterMakers.push(() => makeCharacter(
  38473. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38474. {
  38475. front: {
  38476. height: math.unit(5 + 10/12, "feet"),
  38477. name: "Front",
  38478. image: {
  38479. source: "./media/characters/vera/front.svg",
  38480. extra: 1680/1575,
  38481. bottom: 49/1729
  38482. }
  38483. },
  38484. back: {
  38485. height: math.unit(5 + 10/12, "feet"),
  38486. name: "Back",
  38487. image: {
  38488. source: "./media/characters/vera/back.svg",
  38489. extra: 1700/1588,
  38490. bottom: 18/1718
  38491. }
  38492. },
  38493. arcanine: {
  38494. height: math.unit(6 + 8/12, "feet"),
  38495. name: "Arcanine",
  38496. image: {
  38497. source: "./media/characters/vera/arcanine.svg",
  38498. extra: 1590/1511,
  38499. bottom: 71/1661
  38500. }
  38501. },
  38502. maw: {
  38503. height: math.unit(0.82, "feet"),
  38504. name: "Maw",
  38505. image: {
  38506. source: "./media/characters/vera/maw.svg"
  38507. }
  38508. },
  38509. mawArcanine: {
  38510. height: math.unit(0.97, "feet"),
  38511. name: "Maw (Arcanine)",
  38512. image: {
  38513. source: "./media/characters/vera/maw-arcanine.svg"
  38514. }
  38515. },
  38516. paw: {
  38517. height: math.unit(0.75, "feet"),
  38518. name: "Paw",
  38519. image: {
  38520. source: "./media/characters/vera/paw.svg"
  38521. }
  38522. },
  38523. pawprint: {
  38524. height: math.unit(0.52, "feet"),
  38525. name: "Pawprint",
  38526. image: {
  38527. source: "./media/characters/vera/pawprint.svg"
  38528. }
  38529. },
  38530. },
  38531. [
  38532. {
  38533. name: "Normal",
  38534. height: math.unit(5 + 10/12, "feet"),
  38535. default: true
  38536. },
  38537. {
  38538. name: "Macro",
  38539. height: math.unit(75, "feet")
  38540. },
  38541. ]
  38542. ))
  38543. characterMakers.push(() => makeCharacter(
  38544. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38545. {
  38546. front: {
  38547. height: math.unit(4, "feet"),
  38548. weight: math.unit(40, "lb"),
  38549. name: "Front",
  38550. image: {
  38551. source: "./media/characters/orvan-rabbit/front.svg",
  38552. extra: 1896/1642,
  38553. bottom: 29/1925
  38554. }
  38555. },
  38556. },
  38557. [
  38558. {
  38559. name: "Normal",
  38560. height: math.unit(4, "feet"),
  38561. default: true
  38562. },
  38563. ]
  38564. ))
  38565. characterMakers.push(() => makeCharacter(
  38566. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38567. {
  38568. front: {
  38569. height: math.unit(6, "feet"),
  38570. weight: math.unit(168, "lb"),
  38571. name: "Front",
  38572. image: {
  38573. source: "./media/characters/lisa/front.svg",
  38574. extra: 2065/1867,
  38575. bottom: 46/2111
  38576. }
  38577. },
  38578. back: {
  38579. height: math.unit(6, "feet"),
  38580. weight: math.unit(168, "lb"),
  38581. name: "Back",
  38582. image: {
  38583. source: "./media/characters/lisa/back.svg",
  38584. extra: 1982/1838,
  38585. bottom: 29/2011
  38586. }
  38587. },
  38588. maw: {
  38589. height: math.unit(0.81, "feet"),
  38590. name: "Maw",
  38591. image: {
  38592. source: "./media/characters/lisa/maw.svg"
  38593. }
  38594. },
  38595. paw: {
  38596. height: math.unit(0.9, "feet"),
  38597. name: "Paw",
  38598. image: {
  38599. source: "./media/characters/lisa/paw.svg"
  38600. }
  38601. },
  38602. caribousune: {
  38603. height: math.unit(7 + 2/12, "feet"),
  38604. weight: math.unit(268, "lb"),
  38605. name: "Caribousune",
  38606. image: {
  38607. source: "./media/characters/lisa/caribousune.svg",
  38608. extra: 1843/1633,
  38609. bottom: 29/1872
  38610. }
  38611. },
  38612. frontCaribousune: {
  38613. height: math.unit(7 + 2/12, "feet"),
  38614. weight: math.unit(268, "lb"),
  38615. name: "Front (Caribousune)",
  38616. image: {
  38617. source: "./media/characters/lisa/front-caribousune.svg",
  38618. extra: 1818/1638,
  38619. bottom: 52/1870
  38620. }
  38621. },
  38622. sideCaribousune: {
  38623. height: math.unit(7 + 2/12, "feet"),
  38624. weight: math.unit(268, "lb"),
  38625. name: "Side (Caribousune)",
  38626. image: {
  38627. source: "./media/characters/lisa/side-caribousune.svg",
  38628. extra: 1851/1635,
  38629. bottom: 16/1867
  38630. }
  38631. },
  38632. backCaribousune: {
  38633. height: math.unit(7 + 2/12, "feet"),
  38634. weight: math.unit(268, "lb"),
  38635. name: "Back (Caribousune)",
  38636. image: {
  38637. source: "./media/characters/lisa/back-caribousune.svg",
  38638. extra: 1801/1604,
  38639. bottom: 44/1845
  38640. }
  38641. },
  38642. caribou: {
  38643. height: math.unit(7 + 2/12, "feet"),
  38644. weight: math.unit(268, "lb"),
  38645. name: "Caribou",
  38646. image: {
  38647. source: "./media/characters/lisa/caribou.svg",
  38648. extra: 1843/1633,
  38649. bottom: 29/1872
  38650. }
  38651. },
  38652. frontCaribou: {
  38653. height: math.unit(7 + 2/12, "feet"),
  38654. weight: math.unit(268, "lb"),
  38655. name: "Front (Caribou)",
  38656. image: {
  38657. source: "./media/characters/lisa/front-caribou.svg",
  38658. extra: 1818/1638,
  38659. bottom: 52/1870
  38660. }
  38661. },
  38662. sideCaribou: {
  38663. height: math.unit(7 + 2/12, "feet"),
  38664. weight: math.unit(268, "lb"),
  38665. name: "Side (Caribou)",
  38666. image: {
  38667. source: "./media/characters/lisa/side-caribou.svg",
  38668. extra: 1851/1635,
  38669. bottom: 16/1867
  38670. }
  38671. },
  38672. backCaribou: {
  38673. height: math.unit(7 + 2/12, "feet"),
  38674. weight: math.unit(268, "lb"),
  38675. name: "Back (Caribou)",
  38676. image: {
  38677. source: "./media/characters/lisa/back-caribou.svg",
  38678. extra: 1801/1604,
  38679. bottom: 44/1845
  38680. }
  38681. },
  38682. mawCaribou: {
  38683. height: math.unit(1.45, "feet"),
  38684. name: "Maw (Caribou)",
  38685. image: {
  38686. source: "./media/characters/lisa/maw-caribou.svg"
  38687. }
  38688. },
  38689. mawCaribousune: {
  38690. height: math.unit(1.45, "feet"),
  38691. name: "Maw (Caribousune)",
  38692. image: {
  38693. source: "./media/characters/lisa/maw-caribousune.svg"
  38694. }
  38695. },
  38696. pawCaribousune: {
  38697. height: math.unit(1.61, "feet"),
  38698. name: "Paw (Caribou)",
  38699. image: {
  38700. source: "./media/characters/lisa/paw-caribousune.svg"
  38701. }
  38702. },
  38703. },
  38704. [
  38705. {
  38706. name: "Normal",
  38707. height: math.unit(6, "feet")
  38708. },
  38709. {
  38710. name: "God Size",
  38711. height: math.unit(72, "feet"),
  38712. default: true
  38713. },
  38714. {
  38715. name: "Towering",
  38716. height: math.unit(288, "feet")
  38717. },
  38718. {
  38719. name: "City Size",
  38720. height: math.unit(48384, "feet")
  38721. },
  38722. {
  38723. name: "Continental",
  38724. height: math.unit(4200, "miles")
  38725. },
  38726. {
  38727. name: "Planet Eater",
  38728. height: math.unit(42, "earths")
  38729. },
  38730. {
  38731. name: "Star Swallower",
  38732. height: math.unit(42, "solarradii")
  38733. },
  38734. {
  38735. name: "System Swallower",
  38736. height: math.unit(84000, "AU")
  38737. },
  38738. {
  38739. name: "Galaxy Gobbler",
  38740. height: math.unit(42, "galaxies")
  38741. },
  38742. {
  38743. name: "Universe Devourer",
  38744. height: math.unit(42, "universes")
  38745. },
  38746. {
  38747. name: "Multiverse Muncher",
  38748. height: math.unit(42, "multiverses")
  38749. },
  38750. ]
  38751. ))
  38752. characterMakers.push(() => makeCharacter(
  38753. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38754. {
  38755. front: {
  38756. height: math.unit(36, "feet"),
  38757. name: "Front",
  38758. image: {
  38759. source: "./media/characters/shadow-rat/front.svg",
  38760. extra: 1845/1758,
  38761. bottom: 83/1928
  38762. }
  38763. },
  38764. },
  38765. [
  38766. {
  38767. name: "Macro",
  38768. height: math.unit(36, "feet"),
  38769. default: true
  38770. },
  38771. ]
  38772. ))
  38773. characterMakers.push(() => makeCharacter(
  38774. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38775. {
  38776. side: {
  38777. height: math.unit(8, "feet"),
  38778. weight: math.unit(2630, "lb"),
  38779. name: "Side",
  38780. image: {
  38781. source: "./media/characters/torallia/side.svg",
  38782. extra: 2164/2021,
  38783. bottom: 371/2535
  38784. }
  38785. },
  38786. },
  38787. [
  38788. {
  38789. name: "Mortal Interaction",
  38790. height: math.unit(8, "feet")
  38791. },
  38792. {
  38793. name: "Natural",
  38794. height: math.unit(24, "feet"),
  38795. default: true
  38796. },
  38797. {
  38798. name: "Giant",
  38799. height: math.unit(80, "feet")
  38800. },
  38801. {
  38802. name: "Kaiju",
  38803. height: math.unit(240, "feet")
  38804. },
  38805. {
  38806. name: "Macro",
  38807. height: math.unit(800, "feet")
  38808. },
  38809. {
  38810. name: "Macro+",
  38811. height: math.unit(2400, "feet")
  38812. },
  38813. {
  38814. name: "Macro++",
  38815. height: math.unit(8000, "feet")
  38816. },
  38817. {
  38818. name: "City-Crushing",
  38819. height: math.unit(24000, "feet")
  38820. },
  38821. {
  38822. name: "Mountain-Mashing",
  38823. height: math.unit(80000, "feet")
  38824. },
  38825. {
  38826. name: "District Demolisher",
  38827. height: math.unit(240000, "feet")
  38828. },
  38829. {
  38830. name: "Tri-County Terror",
  38831. height: math.unit(800000, "feet")
  38832. },
  38833. {
  38834. name: "State Smasher",
  38835. height: math.unit(2.4e6, "feet")
  38836. },
  38837. {
  38838. name: "Nation Nemesis",
  38839. height: math.unit(8e6, "feet")
  38840. },
  38841. {
  38842. name: "Continent Cracker",
  38843. height: math.unit(2.4e7, "feet")
  38844. },
  38845. {
  38846. name: "Planet-Pillaging",
  38847. height: math.unit(8e7, "feet")
  38848. },
  38849. {
  38850. name: "Earth-Eclipsing",
  38851. height: math.unit(2.4e8, "feet")
  38852. },
  38853. {
  38854. name: "Jovian-Jostling",
  38855. height: math.unit(8e8, "feet")
  38856. },
  38857. {
  38858. name: "Gas Giant Gulper",
  38859. height: math.unit(2.4e9, "feet")
  38860. },
  38861. {
  38862. name: "Astral Annihilator",
  38863. height: math.unit(8e9, "feet")
  38864. },
  38865. {
  38866. name: "Celestial Conqueror",
  38867. height: math.unit(2.4e10, "feet")
  38868. },
  38869. {
  38870. name: "Sol-Swallowing",
  38871. height: math.unit(8e10, "feet")
  38872. },
  38873. {
  38874. name: "Hunter of the Heavens",
  38875. height: math.unit(2.4e13, "feet")
  38876. },
  38877. ]
  38878. ))
  38879. characterMakers.push(() => makeCharacter(
  38880. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38881. {
  38882. front: {
  38883. height: math.unit(6 + 8/12, "feet"),
  38884. name: "Front",
  38885. image: {
  38886. source: "./media/characters/rebecca-pawlson/front.svg",
  38887. extra: 1737/1596,
  38888. bottom: 107/1844
  38889. }
  38890. },
  38891. back: {
  38892. height: math.unit(6 + 8/12, "feet"),
  38893. name: "Back",
  38894. image: {
  38895. source: "./media/characters/rebecca-pawlson/back.svg",
  38896. extra: 1702/1523,
  38897. bottom: 86/1788
  38898. }
  38899. },
  38900. },
  38901. [
  38902. {
  38903. name: "Normal",
  38904. height: math.unit(6 + 8/12, "feet")
  38905. },
  38906. {
  38907. name: "Mini Macro",
  38908. height: math.unit(10, "feet"),
  38909. default: true
  38910. },
  38911. {
  38912. name: "Macro",
  38913. height: math.unit(100, "feet")
  38914. },
  38915. {
  38916. name: "Mega Macro",
  38917. height: math.unit(2500, "feet")
  38918. },
  38919. {
  38920. name: "Giga Macro",
  38921. height: math.unit(50, "miles")
  38922. },
  38923. ]
  38924. ))
  38925. characterMakers.push(() => makeCharacter(
  38926. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38927. {
  38928. front: {
  38929. height: math.unit(7 + 6/12, "feet"),
  38930. weight: math.unit(600, "lb"),
  38931. name: "Front",
  38932. image: {
  38933. source: "./media/characters/moxie-nova/front.svg",
  38934. extra: 1734/1652,
  38935. bottom: 41/1775
  38936. }
  38937. },
  38938. },
  38939. [
  38940. {
  38941. name: "Normal",
  38942. height: math.unit(7 + 6/12, "feet"),
  38943. default: true
  38944. },
  38945. ]
  38946. ))
  38947. characterMakers.push(() => makeCharacter(
  38948. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38949. {
  38950. goat: {
  38951. height: math.unit(4, "feet"),
  38952. weight: math.unit(180, "lb"),
  38953. name: "Goat",
  38954. image: {
  38955. source: "./media/characters/tiffany/goat.svg",
  38956. extra: 1845/1595,
  38957. bottom: 106/1951
  38958. }
  38959. },
  38960. front: {
  38961. height: math.unit(5, "feet"),
  38962. weight: math.unit(150, "lb"),
  38963. name: "Foxcoon",
  38964. image: {
  38965. source: "./media/characters/tiffany/foxcoon.svg",
  38966. extra: 1941/1845,
  38967. bottom: 58/1999
  38968. }
  38969. },
  38970. },
  38971. [
  38972. {
  38973. name: "Normal",
  38974. height: math.unit(5, "feet"),
  38975. default: true
  38976. },
  38977. ]
  38978. ))
  38979. characterMakers.push(() => makeCharacter(
  38980. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38981. {
  38982. front: {
  38983. height: math.unit(8, "feet"),
  38984. weight: math.unit(300, "lb"),
  38985. name: "Front",
  38986. image: {
  38987. source: "./media/characters/raxinath/front.svg",
  38988. extra: 1407/1309,
  38989. bottom: 39/1446
  38990. }
  38991. },
  38992. back: {
  38993. height: math.unit(8, "feet"),
  38994. weight: math.unit(300, "lb"),
  38995. name: "Back",
  38996. image: {
  38997. source: "./media/characters/raxinath/back.svg",
  38998. extra: 1405/1315,
  38999. bottom: 9/1414
  39000. }
  39001. },
  39002. },
  39003. [
  39004. {
  39005. name: "Speck",
  39006. height: math.unit(0.5, "nm")
  39007. },
  39008. {
  39009. name: "Micro",
  39010. height: math.unit(3, "inches")
  39011. },
  39012. {
  39013. name: "Kobold",
  39014. height: math.unit(3, "feet")
  39015. },
  39016. {
  39017. name: "Normal",
  39018. height: math.unit(8, "feet"),
  39019. default: true
  39020. },
  39021. {
  39022. name: "Giant",
  39023. height: math.unit(50, "feet")
  39024. },
  39025. {
  39026. name: "Macro",
  39027. height: math.unit(1000, "feet")
  39028. },
  39029. {
  39030. name: "Megamacro",
  39031. height: math.unit(1, "mile")
  39032. },
  39033. ]
  39034. ))
  39035. characterMakers.push(() => makeCharacter(
  39036. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39037. {
  39038. front: {
  39039. height: math.unit(10, "feet"),
  39040. weight: math.unit(1442, "lb"),
  39041. name: "Front",
  39042. image: {
  39043. source: "./media/characters/mal-dragon/front.svg",
  39044. extra: 1515/1444,
  39045. bottom: 113/1628
  39046. }
  39047. },
  39048. back: {
  39049. height: math.unit(10, "feet"),
  39050. weight: math.unit(1442, "lb"),
  39051. name: "Back",
  39052. image: {
  39053. source: "./media/characters/mal-dragon/back.svg",
  39054. extra: 1527/1434,
  39055. bottom: 25/1552
  39056. }
  39057. },
  39058. },
  39059. [
  39060. {
  39061. name: "Mortal Interaction",
  39062. height: math.unit(10, "feet"),
  39063. default: true
  39064. },
  39065. {
  39066. name: "Large",
  39067. height: math.unit(30, "feet")
  39068. },
  39069. {
  39070. name: "Kaiju",
  39071. height: math.unit(300, "feet")
  39072. },
  39073. {
  39074. name: "Megamacro",
  39075. height: math.unit(10000, "feet")
  39076. },
  39077. {
  39078. name: "Continent Cracker",
  39079. height: math.unit(30000000, "feet")
  39080. },
  39081. {
  39082. name: "Sol-Swallowing",
  39083. height: math.unit(1e11, "feet")
  39084. },
  39085. {
  39086. name: "Light Universal",
  39087. height: math.unit(5, "universes")
  39088. },
  39089. {
  39090. name: "Universe Atoms",
  39091. height: math.unit(1.829e9, "universes")
  39092. },
  39093. {
  39094. name: "Light Multiversal",
  39095. height: math.unit(5, "multiverses")
  39096. },
  39097. {
  39098. name: "Multiverse Atoms",
  39099. height: math.unit(1.829e9, "multiverses")
  39100. },
  39101. {
  39102. name: "Fabric of Time",
  39103. height: math.unit(1e262, "multiverses")
  39104. },
  39105. ]
  39106. ))
  39107. characterMakers.push(() => makeCharacter(
  39108. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39109. {
  39110. front: {
  39111. height: math.unit(9, "feet"),
  39112. weight: math.unit(1050, "lb"),
  39113. name: "Front",
  39114. image: {
  39115. source: "./media/characters/tabitha/front.svg",
  39116. extra: 2083/1994,
  39117. bottom: 68/2151
  39118. }
  39119. },
  39120. },
  39121. [
  39122. {
  39123. name: "Baseline",
  39124. height: math.unit(9, "feet"),
  39125. default: true
  39126. },
  39127. {
  39128. name: "Giant",
  39129. height: math.unit(90, "feet")
  39130. },
  39131. {
  39132. name: "Macro",
  39133. height: math.unit(900, "feet")
  39134. },
  39135. {
  39136. name: "Megamacro",
  39137. height: math.unit(9000, "feet")
  39138. },
  39139. {
  39140. name: "City-Crushing",
  39141. height: math.unit(27000, "feet")
  39142. },
  39143. {
  39144. name: "Mountain-Mashing",
  39145. height: math.unit(90000, "feet")
  39146. },
  39147. {
  39148. name: "Nation Nemesis",
  39149. height: math.unit(9e6, "feet")
  39150. },
  39151. {
  39152. name: "Continent Cracker",
  39153. height: math.unit(27e6, "feet")
  39154. },
  39155. {
  39156. name: "Earth-Eclipsing",
  39157. height: math.unit(2.7e8, "feet")
  39158. },
  39159. {
  39160. name: "Gas Giant Gulper",
  39161. height: math.unit(2.7e9, "feet")
  39162. },
  39163. {
  39164. name: "Sol-Swallowing",
  39165. height: math.unit(9e10, "feet")
  39166. },
  39167. {
  39168. name: "Galaxy Gulper",
  39169. height: math.unit(9, "galaxies")
  39170. },
  39171. {
  39172. name: "Cosmos Churner",
  39173. height: math.unit(9, "universes")
  39174. },
  39175. ]
  39176. ))
  39177. characterMakers.push(() => makeCharacter(
  39178. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39179. {
  39180. front: {
  39181. height: math.unit(160, "cm"),
  39182. weight: math.unit(55, "kg"),
  39183. name: "Front",
  39184. image: {
  39185. source: "./media/characters/tow/front.svg",
  39186. extra: 1751/1722,
  39187. bottom: 74/1825
  39188. }
  39189. },
  39190. },
  39191. [
  39192. {
  39193. name: "Norm",
  39194. height: math.unit(160, "cm")
  39195. },
  39196. {
  39197. name: "Casual",
  39198. height: math.unit(3200, "m"),
  39199. default: true
  39200. },
  39201. {
  39202. name: "Show-Off",
  39203. height: math.unit(160, "km")
  39204. },
  39205. ]
  39206. ))
  39207. characterMakers.push(() => makeCharacter(
  39208. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39209. {
  39210. front: {
  39211. height: math.unit(7 + 11/12, "feet"),
  39212. weight: math.unit(342.8, "lb"),
  39213. name: "Front",
  39214. image: {
  39215. source: "./media/characters/vivian-orca-dragon/front.svg",
  39216. extra: 1890/1865,
  39217. bottom: 28/1918
  39218. }
  39219. },
  39220. },
  39221. [
  39222. {
  39223. name: "Micro",
  39224. height: math.unit(5, "inches")
  39225. },
  39226. {
  39227. name: "Normal",
  39228. height: math.unit(7 + 11/12, "feet"),
  39229. default: true
  39230. },
  39231. {
  39232. name: "Macro",
  39233. height: math.unit(395 + 7/12, "feet")
  39234. },
  39235. ]
  39236. ))
  39237. characterMakers.push(() => makeCharacter(
  39238. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39239. {
  39240. side: {
  39241. height: math.unit(10, "feet"),
  39242. weight: math.unit(1442, "lb"),
  39243. name: "Side",
  39244. image: {
  39245. source: "./media/characters/lotherakon/side.svg",
  39246. extra: 1604/1497,
  39247. bottom: 89/1693
  39248. }
  39249. },
  39250. },
  39251. [
  39252. {
  39253. name: "Mortal Interaction",
  39254. height: math.unit(10, "feet")
  39255. },
  39256. {
  39257. name: "Large",
  39258. height: math.unit(30, "feet"),
  39259. default: true
  39260. },
  39261. {
  39262. name: "Giant",
  39263. height: math.unit(100, "feet")
  39264. },
  39265. {
  39266. name: "Kaiju",
  39267. height: math.unit(300, "feet")
  39268. },
  39269. {
  39270. name: "Macro",
  39271. height: math.unit(1000, "feet")
  39272. },
  39273. {
  39274. name: "Macro+",
  39275. height: math.unit(3000, "feet")
  39276. },
  39277. {
  39278. name: "Megamacro",
  39279. height: math.unit(10000, "feet")
  39280. },
  39281. {
  39282. name: "City-Crushing",
  39283. height: math.unit(30000, "feet")
  39284. },
  39285. {
  39286. name: "Continent Cracker",
  39287. height: math.unit(30e6, "feet")
  39288. },
  39289. {
  39290. name: "Earth Eclipsing",
  39291. height: math.unit(3e8, "feet")
  39292. },
  39293. {
  39294. name: "Gas Giant Gulper",
  39295. height: math.unit(3e9, "feet")
  39296. },
  39297. {
  39298. name: "Sol-Swallowing",
  39299. height: math.unit(1e11, "feet")
  39300. },
  39301. {
  39302. name: "System Swallower",
  39303. height: math.unit(3e14, "feet")
  39304. },
  39305. {
  39306. name: "Galaxy Gulper",
  39307. height: math.unit(10, "galaxies")
  39308. },
  39309. {
  39310. name: "Light Universal",
  39311. height: math.unit(5, "universes")
  39312. },
  39313. {
  39314. name: "Universe Palm",
  39315. height: math.unit(20, "universes")
  39316. },
  39317. {
  39318. name: "Light Multiversal",
  39319. height: math.unit(5, "multiverses")
  39320. },
  39321. {
  39322. name: "Multiverse Palm",
  39323. height: math.unit(20, "multiverses")
  39324. },
  39325. {
  39326. name: "Inferno Incarnate",
  39327. height: math.unit(1e7, "multiverses")
  39328. },
  39329. ]
  39330. ))
  39331. characterMakers.push(() => makeCharacter(
  39332. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39333. {
  39334. front: {
  39335. height: math.unit(8, "feet"),
  39336. weight: math.unit(1200, "lb"),
  39337. name: "Front",
  39338. image: {
  39339. source: "./media/characters/malithee/front.svg",
  39340. extra: 1675/1640,
  39341. bottom: 162/1837
  39342. }
  39343. },
  39344. },
  39345. [
  39346. {
  39347. name: "Mortal Interaction",
  39348. height: math.unit(8, "feet"),
  39349. default: true
  39350. },
  39351. {
  39352. name: "Large",
  39353. height: math.unit(24, "feet")
  39354. },
  39355. {
  39356. name: "Kaiju",
  39357. height: math.unit(240, "feet")
  39358. },
  39359. {
  39360. name: "Megamacro",
  39361. height: math.unit(8000, "feet")
  39362. },
  39363. {
  39364. name: "Continent Cracker",
  39365. height: math.unit(24e6, "feet")
  39366. },
  39367. {
  39368. name: "Earth-Eclipsing",
  39369. height: math.unit(2.4e8, "feet")
  39370. },
  39371. {
  39372. name: "Sol-Swallowing",
  39373. height: math.unit(8e10, "feet")
  39374. },
  39375. {
  39376. name: "Galaxy Gulper",
  39377. height: math.unit(8, "galaxies")
  39378. },
  39379. {
  39380. name: "Light Universal",
  39381. height: math.unit(4, "universes")
  39382. },
  39383. {
  39384. name: "Universe Atoms",
  39385. height: math.unit(1.829e9, "universes")
  39386. },
  39387. {
  39388. name: "Light Multiversal",
  39389. height: math.unit(4, "multiverses")
  39390. },
  39391. {
  39392. name: "Multiverse Atoms",
  39393. height: math.unit(1.829e9, "multiverses")
  39394. },
  39395. {
  39396. name: "Nigh-Omnipresence",
  39397. height: math.unit(8e261, "multiverses")
  39398. },
  39399. ]
  39400. ))
  39401. characterMakers.push(() => makeCharacter(
  39402. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39403. {
  39404. front: {
  39405. height: math.unit(10, "feet"),
  39406. weight: math.unit(1500, "lb"),
  39407. name: "Front",
  39408. image: {
  39409. source: "./media/characters/miles-thestia/front.svg",
  39410. extra: 1812/1727,
  39411. bottom: 86/1898
  39412. }
  39413. },
  39414. back: {
  39415. height: math.unit(10, "feet"),
  39416. weight: math.unit(1500, "lb"),
  39417. name: "Back",
  39418. image: {
  39419. source: "./media/characters/miles-thestia/back.svg",
  39420. extra: 1799/1690,
  39421. bottom: 47/1846
  39422. }
  39423. },
  39424. frontNsfw: {
  39425. height: math.unit(10, "feet"),
  39426. weight: math.unit(1500, "lb"),
  39427. name: "Front (NSFW)",
  39428. image: {
  39429. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39430. extra: 1812/1727,
  39431. bottom: 86/1898
  39432. }
  39433. },
  39434. },
  39435. [
  39436. {
  39437. name: "Mini-Macro",
  39438. height: math.unit(10, "feet"),
  39439. default: true
  39440. },
  39441. ]
  39442. ))
  39443. characterMakers.push(() => makeCharacter(
  39444. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39445. {
  39446. front: {
  39447. height: math.unit(25, "feet"),
  39448. name: "Front",
  39449. image: {
  39450. source: "./media/characters/titan-s-wulf/front.svg",
  39451. extra: 1560/1484,
  39452. bottom: 76/1636
  39453. }
  39454. },
  39455. },
  39456. [
  39457. {
  39458. name: "Smallest",
  39459. height: math.unit(25, "feet"),
  39460. default: true
  39461. },
  39462. {
  39463. name: "Normal",
  39464. height: math.unit(200, "feet")
  39465. },
  39466. {
  39467. name: "Macro",
  39468. height: math.unit(200000, "feet")
  39469. },
  39470. {
  39471. name: "Multiversal Original",
  39472. height: math.unit(10000, "multiverses")
  39473. },
  39474. ]
  39475. ))
  39476. characterMakers.push(() => makeCharacter(
  39477. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39478. {
  39479. front: {
  39480. height: math.unit(8, "feet"),
  39481. weight: math.unit(553, "lb"),
  39482. name: "Front",
  39483. image: {
  39484. source: "./media/characters/tawendeh/front.svg",
  39485. extra: 2365/2268,
  39486. bottom: 83/2448
  39487. }
  39488. },
  39489. frontClothed: {
  39490. height: math.unit(8, "feet"),
  39491. weight: math.unit(553, "lb"),
  39492. name: "Front (Clothed)",
  39493. image: {
  39494. source: "./media/characters/tawendeh/front-clothed.svg",
  39495. extra: 2365/2268,
  39496. bottom: 83/2448
  39497. }
  39498. },
  39499. back: {
  39500. height: math.unit(8, "feet"),
  39501. weight: math.unit(553, "lb"),
  39502. name: "Back",
  39503. image: {
  39504. source: "./media/characters/tawendeh/back.svg",
  39505. extra: 2397/2294,
  39506. bottom: 42/2439
  39507. }
  39508. },
  39509. },
  39510. [
  39511. {
  39512. name: "Mortal Interaction",
  39513. height: math.unit(8, "feet"),
  39514. default: true
  39515. },
  39516. {
  39517. name: "Giant",
  39518. height: math.unit(80, "feet")
  39519. },
  39520. {
  39521. name: "Macro",
  39522. height: math.unit(800, "feet")
  39523. },
  39524. {
  39525. name: "Megamacro",
  39526. height: math.unit(8000, "feet")
  39527. },
  39528. {
  39529. name: "City-Crushing",
  39530. height: math.unit(24000, "feet")
  39531. },
  39532. {
  39533. name: "Mountain-Mashing",
  39534. height: math.unit(80000, "feet")
  39535. },
  39536. {
  39537. name: "Nation Nemesis",
  39538. height: math.unit(8e6, "feet")
  39539. },
  39540. {
  39541. name: "Continent Cracker",
  39542. height: math.unit(24e6, "feet")
  39543. },
  39544. {
  39545. name: "Earth-Eclipsing",
  39546. height: math.unit(2.4e8, "feet")
  39547. },
  39548. {
  39549. name: "Gas Giant Gulper",
  39550. height: math.unit(2.4e9, "feet")
  39551. },
  39552. {
  39553. name: "Sol-Swallowing",
  39554. height: math.unit(8e10, "feet")
  39555. },
  39556. {
  39557. name: "Galaxy Gulper",
  39558. height: math.unit(8, "galaxies")
  39559. },
  39560. {
  39561. name: "Cosmos Churner",
  39562. height: math.unit(8, "universes")
  39563. },
  39564. {
  39565. name: "Omnipotent Otter",
  39566. height: math.unit(80, "universes")
  39567. },
  39568. ]
  39569. ))
  39570. characterMakers.push(() => makeCharacter(
  39571. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39572. {
  39573. front: {
  39574. height: math.unit(2.6, "meters"),
  39575. weight: math.unit(900, "kg"),
  39576. name: "Front",
  39577. image: {
  39578. source: "./media/characters/neesha/front.svg",
  39579. extra: 1803/1653,
  39580. bottom: 128/1931
  39581. }
  39582. },
  39583. },
  39584. [
  39585. {
  39586. name: "Normal",
  39587. height: math.unit(2.6, "meters"),
  39588. default: true
  39589. },
  39590. {
  39591. name: "Macro",
  39592. height: math.unit(50, "meters")
  39593. },
  39594. ]
  39595. ))
  39596. characterMakers.push(() => makeCharacter(
  39597. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39598. {
  39599. front: {
  39600. height: math.unit(5, "feet"),
  39601. weight: math.unit(185, "lb"),
  39602. name: "Front",
  39603. image: {
  39604. source: "./media/characters/kyera/front.svg",
  39605. extra: 1875/1790,
  39606. bottom: 96/1971
  39607. }
  39608. },
  39609. },
  39610. [
  39611. {
  39612. name: "Normal",
  39613. height: math.unit(5, "feet"),
  39614. default: true
  39615. },
  39616. ]
  39617. ))
  39618. characterMakers.push(() => makeCharacter(
  39619. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39620. {
  39621. front: {
  39622. height: math.unit(7 + 6/12, "feet"),
  39623. weight: math.unit(540, "lb"),
  39624. name: "Front",
  39625. image: {
  39626. source: "./media/characters/yuko/front.svg",
  39627. extra: 1282/1222,
  39628. bottom: 101/1383
  39629. }
  39630. },
  39631. frontClothed: {
  39632. height: math.unit(7 + 6/12, "feet"),
  39633. weight: math.unit(540, "lb"),
  39634. name: "Front (Clothed)",
  39635. image: {
  39636. source: "./media/characters/yuko/front-clothed.svg",
  39637. extra: 1282/1222,
  39638. bottom: 101/1383
  39639. }
  39640. },
  39641. },
  39642. [
  39643. {
  39644. name: "Normal",
  39645. height: math.unit(7 + 6/12, "feet"),
  39646. default: true
  39647. },
  39648. {
  39649. name: "Macro",
  39650. height: math.unit(26 + 9/12, "feet")
  39651. },
  39652. {
  39653. name: "Megamacro",
  39654. height: math.unit(300, "feet")
  39655. },
  39656. {
  39657. name: "Gigamacro",
  39658. height: math.unit(5000, "feet")
  39659. },
  39660. {
  39661. name: "Planetary",
  39662. height: math.unit(10000, "miles")
  39663. },
  39664. ]
  39665. ))
  39666. characterMakers.push(() => makeCharacter(
  39667. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39668. {
  39669. front: {
  39670. height: math.unit(8 + 2/12, "feet"),
  39671. weight: math.unit(600, "lb"),
  39672. name: "Front",
  39673. image: {
  39674. source: "./media/characters/deam-nitrel/front.svg",
  39675. extra: 1308/1234,
  39676. bottom: 125/1433
  39677. }
  39678. },
  39679. },
  39680. [
  39681. {
  39682. name: "Normal",
  39683. height: math.unit(8 + 2/12, "feet"),
  39684. default: true
  39685. },
  39686. ]
  39687. ))
  39688. characterMakers.push(() => makeCharacter(
  39689. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39690. {
  39691. front: {
  39692. height: math.unit(6.1, "feet"),
  39693. weight: math.unit(180, "lb"),
  39694. name: "Front",
  39695. image: {
  39696. source: "./media/characters/skyress/front.svg",
  39697. extra: 1045/915,
  39698. bottom: 28/1073
  39699. }
  39700. },
  39701. maw: {
  39702. height: math.unit(1, "feet"),
  39703. name: "Maw",
  39704. image: {
  39705. source: "./media/characters/skyress/maw.svg"
  39706. }
  39707. },
  39708. },
  39709. [
  39710. {
  39711. name: "Normal",
  39712. height: math.unit(6.1, "feet"),
  39713. default: true
  39714. },
  39715. {
  39716. name: "Macro",
  39717. height: math.unit(200, "feet")
  39718. },
  39719. ]
  39720. ))
  39721. characterMakers.push(() => makeCharacter(
  39722. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39723. {
  39724. front: {
  39725. height: math.unit(4 + 2/12, "feet"),
  39726. weight: math.unit(40, "kg"),
  39727. name: "Front",
  39728. image: {
  39729. source: "./media/characters/amethyst-jones/front.svg",
  39730. extra: 1220/1150,
  39731. bottom: 101/1321
  39732. }
  39733. },
  39734. },
  39735. [
  39736. {
  39737. name: "Normal",
  39738. height: math.unit(4 + 2/12, "feet"),
  39739. default: true
  39740. },
  39741. ]
  39742. ))
  39743. characterMakers.push(() => makeCharacter(
  39744. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39745. {
  39746. front: {
  39747. height: math.unit(1.7, "m"),
  39748. weight: math.unit(135, "lb"),
  39749. name: "Front",
  39750. image: {
  39751. source: "./media/characters/jade/front.svg",
  39752. extra: 1818/1767,
  39753. bottom: 32/1850
  39754. }
  39755. },
  39756. back: {
  39757. height: math.unit(1.7, "m"),
  39758. weight: math.unit(135, "lb"),
  39759. name: "Back",
  39760. image: {
  39761. source: "./media/characters/jade/back.svg",
  39762. extra: 1869/1809,
  39763. bottom: 35/1904
  39764. }
  39765. },
  39766. hand: {
  39767. height: math.unit(0.24, "m"),
  39768. name: "Hand",
  39769. image: {
  39770. source: "./media/characters/jade/hand.svg"
  39771. }
  39772. },
  39773. foot: {
  39774. height: math.unit(0.263, "m"),
  39775. name: "Foot",
  39776. image: {
  39777. source: "./media/characters/jade/foot.svg"
  39778. }
  39779. },
  39780. dick: {
  39781. height: math.unit(0.47, "m"),
  39782. name: "Dick",
  39783. image: {
  39784. source: "./media/characters/jade/dick.svg"
  39785. }
  39786. },
  39787. },
  39788. [
  39789. {
  39790. name: "Micro",
  39791. height: math.unit(22, "cm")
  39792. },
  39793. {
  39794. name: "Normal",
  39795. height: math.unit(1.7, "m"),
  39796. default: true
  39797. },
  39798. {
  39799. name: "Macro",
  39800. height: math.unit(152, "m")
  39801. },
  39802. ]
  39803. ))
  39804. characterMakers.push(() => makeCharacter(
  39805. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39806. {
  39807. front: {
  39808. height: math.unit(100, "miles"),
  39809. weight: math.unit(20000, "tons"),
  39810. name: "Front",
  39811. image: {
  39812. source: "./media/characters/cookie/front.svg",
  39813. extra: 1125/1070,
  39814. bottom: 30/1155
  39815. }
  39816. },
  39817. },
  39818. [
  39819. {
  39820. name: "Big",
  39821. height: math.unit(50, "feet")
  39822. },
  39823. {
  39824. name: "Macro",
  39825. height: math.unit(100, "miles"),
  39826. default: true
  39827. },
  39828. {
  39829. name: "Megamacro",
  39830. height: math.unit(90000, "miles")
  39831. },
  39832. ]
  39833. ))
  39834. characterMakers.push(() => makeCharacter(
  39835. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39836. {
  39837. front: {
  39838. height: math.unit(6, "feet"),
  39839. weight: math.unit(145, "lb"),
  39840. name: "Front",
  39841. image: {
  39842. source: "./media/characters/farzian/front.svg",
  39843. extra: 1902/1693,
  39844. bottom: 108/2010
  39845. }
  39846. },
  39847. },
  39848. [
  39849. {
  39850. name: "Macro",
  39851. height: math.unit(500, "feet"),
  39852. default: true
  39853. },
  39854. ]
  39855. ))
  39856. characterMakers.push(() => makeCharacter(
  39857. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39858. {
  39859. front: {
  39860. height: math.unit(3 + 6/12, "feet"),
  39861. weight: math.unit(50, "lb"),
  39862. name: "Front",
  39863. image: {
  39864. source: "./media/characters/kimberly-tilson/front.svg",
  39865. extra: 1400/1322,
  39866. bottom: 36/1436
  39867. }
  39868. },
  39869. back: {
  39870. height: math.unit(3 + 6/12, "feet"),
  39871. weight: math.unit(50, "lb"),
  39872. name: "Back",
  39873. image: {
  39874. source: "./media/characters/kimberly-tilson/back.svg",
  39875. extra: 1370/1307,
  39876. bottom: 20/1390
  39877. }
  39878. },
  39879. },
  39880. [
  39881. {
  39882. name: "Normal",
  39883. height: math.unit(3 + 6/12, "feet"),
  39884. default: true
  39885. },
  39886. ]
  39887. ))
  39888. characterMakers.push(() => makeCharacter(
  39889. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39890. {
  39891. front: {
  39892. height: math.unit(1148, "feet"),
  39893. weight: math.unit(34057, "lb"),
  39894. name: "Front",
  39895. image: {
  39896. source: "./media/characters/harthos/front.svg",
  39897. extra: 1391/1339,
  39898. bottom: 13/1404
  39899. }
  39900. },
  39901. },
  39902. [
  39903. {
  39904. name: "Macro",
  39905. height: math.unit(1148, "feet"),
  39906. default: true
  39907. },
  39908. ]
  39909. ))
  39910. characterMakers.push(() => makeCharacter(
  39911. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39912. {
  39913. front: {
  39914. height: math.unit(15, "feet"),
  39915. name: "Front",
  39916. image: {
  39917. source: "./media/characters/hypatia/front.svg",
  39918. extra: 1653/1591,
  39919. bottom: 79/1732
  39920. }
  39921. },
  39922. },
  39923. [
  39924. {
  39925. name: "Normal",
  39926. height: math.unit(15, "feet")
  39927. },
  39928. {
  39929. name: "Small",
  39930. height: math.unit(300, "feet")
  39931. },
  39932. {
  39933. name: "Macro",
  39934. height: math.unit(2500, "feet"),
  39935. default: true
  39936. },
  39937. {
  39938. name: "Mega Macro",
  39939. height: math.unit(1500, "miles")
  39940. },
  39941. {
  39942. name: "Giga Macro",
  39943. height: math.unit(1.5e6, "miles")
  39944. },
  39945. ]
  39946. ))
  39947. characterMakers.push(() => makeCharacter(
  39948. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39949. {
  39950. front: {
  39951. height: math.unit(6, "feet"),
  39952. weight: math.unit(200, "lb"),
  39953. name: "Front",
  39954. image: {
  39955. source: "./media/characters/wulver/front.svg",
  39956. extra: 1724/1632,
  39957. bottom: 130/1854
  39958. }
  39959. },
  39960. frontNsfw: {
  39961. height: math.unit(6, "feet"),
  39962. weight: math.unit(200, "lb"),
  39963. name: "Front (NSFW)",
  39964. image: {
  39965. source: "./media/characters/wulver/front-nsfw.svg",
  39966. extra: 1724/1632,
  39967. bottom: 130/1854
  39968. }
  39969. },
  39970. },
  39971. [
  39972. {
  39973. name: "Human-Sized",
  39974. height: math.unit(6, "feet")
  39975. },
  39976. {
  39977. name: "Normal",
  39978. height: math.unit(4, "meters"),
  39979. default: true
  39980. },
  39981. {
  39982. name: "Large",
  39983. height: math.unit(6, "m")
  39984. },
  39985. ]
  39986. ))
  39987. characterMakers.push(() => makeCharacter(
  39988. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39989. {
  39990. front: {
  39991. height: math.unit(7, "feet"),
  39992. name: "Front",
  39993. image: {
  39994. source: "./media/characters/maru/front.svg",
  39995. extra: 1595/1570,
  39996. bottom: 0/1595
  39997. }
  39998. },
  39999. },
  40000. [
  40001. {
  40002. name: "Normal",
  40003. height: math.unit(7, "feet"),
  40004. default: true
  40005. },
  40006. {
  40007. name: "Macro",
  40008. height: math.unit(700, "feet")
  40009. },
  40010. {
  40011. name: "Mega Macro",
  40012. height: math.unit(25, "miles")
  40013. },
  40014. ]
  40015. ))
  40016. characterMakers.push(() => makeCharacter(
  40017. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40018. {
  40019. front: {
  40020. height: math.unit(6, "feet"),
  40021. weight: math.unit(170, "lb"),
  40022. name: "Front",
  40023. image: {
  40024. source: "./media/characters/xenon/front.svg",
  40025. extra: 1376/1305,
  40026. bottom: 56/1432
  40027. }
  40028. },
  40029. back: {
  40030. height: math.unit(6, "feet"),
  40031. weight: math.unit(170, "lb"),
  40032. name: "Back",
  40033. image: {
  40034. source: "./media/characters/xenon/back.svg",
  40035. extra: 1328/1259,
  40036. bottom: 95/1423
  40037. }
  40038. },
  40039. maw: {
  40040. height: math.unit(0.52, "feet"),
  40041. name: "Maw",
  40042. image: {
  40043. source: "./media/characters/xenon/maw.svg"
  40044. }
  40045. },
  40046. hand: {
  40047. height: math.unit(0.82, "feet"),
  40048. name: "Hand",
  40049. image: {
  40050. source: "./media/characters/xenon/hand.svg"
  40051. }
  40052. },
  40053. foot: {
  40054. height: math.unit(1.13, "feet"),
  40055. name: "Foot",
  40056. image: {
  40057. source: "./media/characters/xenon/foot.svg"
  40058. }
  40059. },
  40060. },
  40061. [
  40062. {
  40063. name: "Micro",
  40064. height: math.unit(0.8, "inches")
  40065. },
  40066. {
  40067. name: "Normal",
  40068. height: math.unit(6, "feet")
  40069. },
  40070. {
  40071. name: "Macro",
  40072. height: math.unit(50, "feet"),
  40073. default: true
  40074. },
  40075. {
  40076. name: "Macro+",
  40077. height: math.unit(250, "feet")
  40078. },
  40079. {
  40080. name: "Megamacro",
  40081. height: math.unit(1500, "feet")
  40082. },
  40083. ]
  40084. ))
  40085. characterMakers.push(() => makeCharacter(
  40086. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40087. {
  40088. front: {
  40089. height: math.unit(7 + 5/12, "feet"),
  40090. name: "Front",
  40091. image: {
  40092. source: "./media/characters/zane/front.svg",
  40093. extra: 1260/1203,
  40094. bottom: 94/1354
  40095. }
  40096. },
  40097. back: {
  40098. height: math.unit(5.05, "feet"),
  40099. name: "Back",
  40100. image: {
  40101. source: "./media/characters/zane/back.svg",
  40102. extra: 893/829,
  40103. bottom: 30/923
  40104. }
  40105. },
  40106. werewolf: {
  40107. height: math.unit(11, "feet"),
  40108. name: "Werewolf",
  40109. image: {
  40110. source: "./media/characters/zane/werewolf.svg",
  40111. extra: 1383/1323,
  40112. bottom: 89/1472
  40113. }
  40114. },
  40115. foot: {
  40116. height: math.unit(1.46, "feet"),
  40117. name: "Foot",
  40118. image: {
  40119. source: "./media/characters/zane/foot.svg"
  40120. }
  40121. },
  40122. footFront: {
  40123. height: math.unit(0.784, "feet"),
  40124. name: "Foot (Front)",
  40125. image: {
  40126. source: "./media/characters/zane/foot-front.svg"
  40127. }
  40128. },
  40129. dick: {
  40130. height: math.unit(1.95, "feet"),
  40131. name: "Dick",
  40132. image: {
  40133. source: "./media/characters/zane/dick.svg"
  40134. }
  40135. },
  40136. dickWerewolf: {
  40137. height: math.unit(3.77, "feet"),
  40138. name: "Dick (Werewolf)",
  40139. image: {
  40140. source: "./media/characters/zane/dick.svg"
  40141. }
  40142. },
  40143. },
  40144. [
  40145. {
  40146. name: "Normal",
  40147. height: math.unit(7 + 5/12, "feet"),
  40148. default: true
  40149. },
  40150. ]
  40151. ))
  40152. characterMakers.push(() => makeCharacter(
  40153. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40154. {
  40155. front: {
  40156. height: math.unit(6 + 2/12, "feet"),
  40157. weight: math.unit(284, "lb"),
  40158. name: "Front",
  40159. image: {
  40160. source: "./media/characters/benni-desparque/front.svg",
  40161. extra: 1353/1126,
  40162. bottom: 69/1422
  40163. }
  40164. },
  40165. },
  40166. [
  40167. {
  40168. name: "Civilian",
  40169. height: math.unit(6 + 2/12, "feet")
  40170. },
  40171. {
  40172. name: "Normal",
  40173. height: math.unit(98, "feet"),
  40174. default: true
  40175. },
  40176. {
  40177. name: "Kaiju Fighter",
  40178. height: math.unit(268, "feet")
  40179. },
  40180. ]
  40181. ))
  40182. characterMakers.push(() => makeCharacter(
  40183. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40184. {
  40185. front: {
  40186. height: math.unit(5, "feet"),
  40187. weight: math.unit(105, "lb"),
  40188. name: "Front",
  40189. image: {
  40190. source: "./media/characters/maxine/front.svg",
  40191. extra: 1386/1250,
  40192. bottom: 71/1457
  40193. }
  40194. },
  40195. },
  40196. [
  40197. {
  40198. name: "Normal",
  40199. height: math.unit(5, "feet"),
  40200. default: true
  40201. },
  40202. ]
  40203. ))
  40204. characterMakers.push(() => makeCharacter(
  40205. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40206. {
  40207. front: {
  40208. height: math.unit(11 + 7/12, "feet"),
  40209. weight: math.unit(9576, "lb"),
  40210. name: "Front",
  40211. image: {
  40212. source: "./media/characters/scaly/front.svg",
  40213. extra: 888/867,
  40214. bottom: 36/924
  40215. }
  40216. },
  40217. },
  40218. [
  40219. {
  40220. name: "Normal",
  40221. height: math.unit(11 + 7/12, "feet"),
  40222. default: true
  40223. },
  40224. ]
  40225. ))
  40226. characterMakers.push(() => makeCharacter(
  40227. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40228. {
  40229. front: {
  40230. height: math.unit(6 + 3/12, "feet"),
  40231. name: "Front",
  40232. image: {
  40233. source: "./media/characters/saelria/front.svg",
  40234. extra: 1243/1138,
  40235. bottom: 46/1289
  40236. }
  40237. },
  40238. },
  40239. [
  40240. {
  40241. name: "Micro",
  40242. height: math.unit(6, "inches"),
  40243. },
  40244. {
  40245. name: "Normal",
  40246. height: math.unit(6 + 3/12, "feet"),
  40247. default: true
  40248. },
  40249. {
  40250. name: "Macro",
  40251. height: math.unit(25, "feet")
  40252. },
  40253. ]
  40254. ))
  40255. characterMakers.push(() => makeCharacter(
  40256. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40257. {
  40258. front: {
  40259. height: math.unit(80, "meters"),
  40260. weight: math.unit(7000, "tonnes"),
  40261. name: "Front",
  40262. image: {
  40263. source: "./media/characters/tef/front.svg",
  40264. extra: 2036/1991,
  40265. bottom: 54/2090
  40266. }
  40267. },
  40268. back: {
  40269. height: math.unit(80, "meters"),
  40270. weight: math.unit(7000, "tonnes"),
  40271. name: "Back",
  40272. image: {
  40273. source: "./media/characters/tef/back.svg",
  40274. extra: 2036/1991,
  40275. bottom: 54/2090
  40276. }
  40277. },
  40278. },
  40279. [
  40280. {
  40281. name: "Macro",
  40282. height: math.unit(80, "meters"),
  40283. default: true
  40284. },
  40285. ]
  40286. ))
  40287. characterMakers.push(() => makeCharacter(
  40288. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40289. {
  40290. front: {
  40291. height: math.unit(13, "feet"),
  40292. weight: math.unit(6, "tons"),
  40293. name: "Front",
  40294. image: {
  40295. source: "./media/characters/rover/front.svg",
  40296. extra: 1233/1156,
  40297. bottom: 50/1283
  40298. }
  40299. },
  40300. back: {
  40301. height: math.unit(13, "feet"),
  40302. weight: math.unit(6, "tons"),
  40303. name: "Back",
  40304. image: {
  40305. source: "./media/characters/rover/back.svg",
  40306. extra: 1327/1258,
  40307. bottom: 39/1366
  40308. }
  40309. },
  40310. },
  40311. [
  40312. {
  40313. name: "Normal",
  40314. height: math.unit(13, "feet"),
  40315. default: true
  40316. },
  40317. {
  40318. name: "Macro",
  40319. height: math.unit(1300, "feet")
  40320. },
  40321. {
  40322. name: "Megamacro",
  40323. height: math.unit(1300, "miles")
  40324. },
  40325. {
  40326. name: "Gigamacro",
  40327. height: math.unit(1300000, "miles")
  40328. },
  40329. ]
  40330. ))
  40331. characterMakers.push(() => makeCharacter(
  40332. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40333. {
  40334. front: {
  40335. height: math.unit(6, "feet"),
  40336. weight: math.unit(150, "lb"),
  40337. name: "Front",
  40338. image: {
  40339. source: "./media/characters/ariz/front.svg",
  40340. extra: 1401/1346,
  40341. bottom: 5/1406
  40342. }
  40343. },
  40344. },
  40345. [
  40346. {
  40347. name: "Normal",
  40348. height: math.unit(10, "feet"),
  40349. default: true
  40350. },
  40351. ]
  40352. ))
  40353. characterMakers.push(() => makeCharacter(
  40354. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40355. {
  40356. front: {
  40357. height: math.unit(6, "feet"),
  40358. weight: math.unit(140, "lb"),
  40359. name: "Front",
  40360. image: {
  40361. source: "./media/characters/sigrun/front.svg",
  40362. extra: 1418/1359,
  40363. bottom: 27/1445
  40364. }
  40365. },
  40366. },
  40367. [
  40368. {
  40369. name: "Macro",
  40370. height: math.unit(35, "feet"),
  40371. default: true
  40372. },
  40373. ]
  40374. ))
  40375. characterMakers.push(() => makeCharacter(
  40376. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40377. {
  40378. front: {
  40379. height: math.unit(6, "feet"),
  40380. weight: math.unit(150, "lb"),
  40381. name: "Front",
  40382. image: {
  40383. source: "./media/characters/numin/front.svg",
  40384. extra: 1433/1388,
  40385. bottom: 12/1445
  40386. }
  40387. },
  40388. },
  40389. [
  40390. {
  40391. name: "Macro",
  40392. height: math.unit(21.5, "km"),
  40393. default: true
  40394. },
  40395. ]
  40396. ))
  40397. characterMakers.push(() => makeCharacter(
  40398. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40399. {
  40400. front: {
  40401. height: math.unit(6, "feet"),
  40402. weight: math.unit(463, "lb"),
  40403. name: "Front",
  40404. image: {
  40405. source: "./media/characters/melwa/front.svg",
  40406. extra: 1307/1248,
  40407. bottom: 93/1400
  40408. }
  40409. },
  40410. },
  40411. [
  40412. {
  40413. name: "Macro",
  40414. height: math.unit(50, "meters"),
  40415. default: true
  40416. },
  40417. ]
  40418. ))
  40419. characterMakers.push(() => makeCharacter(
  40420. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40421. {
  40422. front: {
  40423. height: math.unit(325, "feet"),
  40424. name: "Front",
  40425. image: {
  40426. source: "./media/characters/zorkaiju/front.svg",
  40427. extra: 1955/1814,
  40428. bottom: 40/1995
  40429. }
  40430. },
  40431. frontExtended: {
  40432. height: math.unit(325, "feet"),
  40433. name: "Front (Extended)",
  40434. image: {
  40435. source: "./media/characters/zorkaiju/front-extended.svg",
  40436. extra: 1955/1814,
  40437. bottom: 40/1995
  40438. }
  40439. },
  40440. side: {
  40441. height: math.unit(325, "feet"),
  40442. name: "Side",
  40443. image: {
  40444. source: "./media/characters/zorkaiju/side.svg",
  40445. extra: 1495/1396,
  40446. bottom: 17/1512
  40447. }
  40448. },
  40449. sideExtended: {
  40450. height: math.unit(325, "feet"),
  40451. name: "Side (Extended)",
  40452. image: {
  40453. source: "./media/characters/zorkaiju/side-extended.svg",
  40454. extra: 1495/1396,
  40455. bottom: 17/1512
  40456. }
  40457. },
  40458. back: {
  40459. height: math.unit(325, "feet"),
  40460. name: "Back",
  40461. image: {
  40462. source: "./media/characters/zorkaiju/back.svg",
  40463. extra: 1959/1821,
  40464. bottom: 31/1990
  40465. }
  40466. },
  40467. backExtended: {
  40468. height: math.unit(325, "feet"),
  40469. name: "Back (Extended)",
  40470. image: {
  40471. source: "./media/characters/zorkaiju/back-extended.svg",
  40472. extra: 1959/1821,
  40473. bottom: 31/1990
  40474. }
  40475. },
  40476. hand: {
  40477. height: math.unit(58.4, "feet"),
  40478. name: "Hand",
  40479. image: {
  40480. source: "./media/characters/zorkaiju/hand.svg"
  40481. }
  40482. },
  40483. handExtended: {
  40484. height: math.unit(61.4, "feet"),
  40485. name: "Hand (Extended)",
  40486. image: {
  40487. source: "./media/characters/zorkaiju/hand-extended.svg"
  40488. }
  40489. },
  40490. foot: {
  40491. height: math.unit(95, "feet"),
  40492. name: "Foot",
  40493. image: {
  40494. source: "./media/characters/zorkaiju/foot.svg"
  40495. }
  40496. },
  40497. leftArm: {
  40498. height: math.unit(59, "feet"),
  40499. name: "Left Arm",
  40500. image: {
  40501. source: "./media/characters/zorkaiju/left-arm.svg"
  40502. }
  40503. },
  40504. rightArm: {
  40505. height: math.unit(59, "feet"),
  40506. name: "Right Arm",
  40507. image: {
  40508. source: "./media/characters/zorkaiju/right-arm.svg"
  40509. }
  40510. },
  40511. tail: {
  40512. height: math.unit(104, "feet"),
  40513. name: "Tail",
  40514. image: {
  40515. source: "./media/characters/zorkaiju/tail.svg"
  40516. }
  40517. },
  40518. tailExtended: {
  40519. height: math.unit(104, "feet"),
  40520. name: "Tail (Extended)",
  40521. image: {
  40522. source: "./media/characters/zorkaiju/tail-extended.svg"
  40523. }
  40524. },
  40525. tailBottom: {
  40526. height: math.unit(104, "feet"),
  40527. name: "Tail Bottom",
  40528. image: {
  40529. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40530. }
  40531. },
  40532. crystal: {
  40533. height: math.unit(27.54, "feet"),
  40534. name: "Crystal",
  40535. image: {
  40536. source: "./media/characters/zorkaiju/crystal.svg"
  40537. }
  40538. },
  40539. },
  40540. [
  40541. {
  40542. name: "Kaiju",
  40543. height: math.unit(325, "feet"),
  40544. default: true
  40545. },
  40546. ]
  40547. ))
  40548. characterMakers.push(() => makeCharacter(
  40549. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40550. {
  40551. front: {
  40552. height: math.unit(6 + 1/12, "feet"),
  40553. weight: math.unit(115, "lb"),
  40554. name: "Front",
  40555. image: {
  40556. source: "./media/characters/bailey-belfry/front.svg",
  40557. extra: 1240/1121,
  40558. bottom: 101/1341
  40559. }
  40560. },
  40561. },
  40562. [
  40563. {
  40564. name: "Normal",
  40565. height: math.unit(6 + 1/12, "feet"),
  40566. default: true
  40567. },
  40568. ]
  40569. ))
  40570. characterMakers.push(() => makeCharacter(
  40571. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40572. {
  40573. side: {
  40574. height: math.unit(4, "meters"),
  40575. weight: math.unit(250, "kg"),
  40576. name: "Side",
  40577. image: {
  40578. source: "./media/characters/blacky/side.svg",
  40579. extra: 1027/919,
  40580. bottom: 43/1070
  40581. }
  40582. },
  40583. maw: {
  40584. height: math.unit(1, "meters"),
  40585. name: "Maw",
  40586. image: {
  40587. source: "./media/characters/blacky/maw.svg"
  40588. }
  40589. },
  40590. paw: {
  40591. height: math.unit(1, "meters"),
  40592. name: "Paw",
  40593. image: {
  40594. source: "./media/characters/blacky/paw.svg"
  40595. }
  40596. },
  40597. },
  40598. [
  40599. {
  40600. name: "Normal",
  40601. height: math.unit(4, "meters"),
  40602. default: true
  40603. },
  40604. ]
  40605. ))
  40606. characterMakers.push(() => makeCharacter(
  40607. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40608. {
  40609. front: {
  40610. height: math.unit(170, "cm"),
  40611. weight: math.unit(66, "kg"),
  40612. name: "Front",
  40613. image: {
  40614. source: "./media/characters/thux-ei/front.svg",
  40615. extra: 1109/1011,
  40616. bottom: 8/1117
  40617. }
  40618. },
  40619. },
  40620. [
  40621. {
  40622. name: "Normal",
  40623. height: math.unit(170, "cm"),
  40624. default: true
  40625. },
  40626. ]
  40627. ))
  40628. characterMakers.push(() => makeCharacter(
  40629. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40630. {
  40631. front: {
  40632. height: math.unit(5, "feet"),
  40633. weight: math.unit(120, "lb"),
  40634. name: "Front",
  40635. image: {
  40636. source: "./media/characters/roxanne-voltaire/front.svg",
  40637. extra: 1901/1779,
  40638. bottom: 53/1954
  40639. }
  40640. },
  40641. },
  40642. [
  40643. {
  40644. name: "Normal",
  40645. height: math.unit(5, "feet"),
  40646. default: true
  40647. },
  40648. {
  40649. name: "Giant",
  40650. height: math.unit(50, "feet")
  40651. },
  40652. {
  40653. name: "Titan",
  40654. height: math.unit(500, "feet")
  40655. },
  40656. {
  40657. name: "Macro",
  40658. height: math.unit(5000, "feet")
  40659. },
  40660. {
  40661. name: "Megamacro",
  40662. height: math.unit(50000, "feet")
  40663. },
  40664. {
  40665. name: "Gigamacro",
  40666. height: math.unit(500000, "feet")
  40667. },
  40668. {
  40669. name: "Teramacro",
  40670. height: math.unit(5e6, "feet")
  40671. },
  40672. ]
  40673. ))
  40674. characterMakers.push(() => makeCharacter(
  40675. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40676. {
  40677. front: {
  40678. height: math.unit(6 + 2/12, "feet"),
  40679. name: "Front",
  40680. image: {
  40681. source: "./media/characters/squeaks/front.svg",
  40682. extra: 1823/1768,
  40683. bottom: 138/1961
  40684. }
  40685. },
  40686. },
  40687. [
  40688. {
  40689. name: "Micro",
  40690. height: math.unit(0.5, "inches")
  40691. },
  40692. {
  40693. name: "Normal",
  40694. height: math.unit(6 + 2/12, "feet"),
  40695. default: true
  40696. },
  40697. {
  40698. name: "Macro",
  40699. height: math.unit(600, "feet")
  40700. },
  40701. ]
  40702. ))
  40703. characterMakers.push(() => makeCharacter(
  40704. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40705. {
  40706. front: {
  40707. height: math.unit(1.72, "meters"),
  40708. name: "Front",
  40709. image: {
  40710. source: "./media/characters/archinger/front.svg",
  40711. extra: 1861/1675,
  40712. bottom: 125/1986
  40713. }
  40714. },
  40715. back: {
  40716. height: math.unit(1.72, "meters"),
  40717. name: "Back",
  40718. image: {
  40719. source: "./media/characters/archinger/back.svg",
  40720. extra: 1844/1701,
  40721. bottom: 104/1948
  40722. }
  40723. },
  40724. cock: {
  40725. height: math.unit(0.59, "feet"),
  40726. name: "Cock",
  40727. image: {
  40728. source: "./media/characters/archinger/cock.svg"
  40729. }
  40730. },
  40731. },
  40732. [
  40733. {
  40734. name: "Normal",
  40735. height: math.unit(1.72, "meters"),
  40736. default: true
  40737. },
  40738. {
  40739. name: "Macro",
  40740. height: math.unit(84, "meters")
  40741. },
  40742. {
  40743. name: "Macro+",
  40744. height: math.unit(112, "meters")
  40745. },
  40746. {
  40747. name: "Macro++",
  40748. height: math.unit(960, "meters")
  40749. },
  40750. {
  40751. name: "Macro+++",
  40752. height: math.unit(4, "km")
  40753. },
  40754. {
  40755. name: "Macro++++",
  40756. height: math.unit(48, "km")
  40757. },
  40758. {
  40759. name: "Macro+++++",
  40760. height: math.unit(4500, "km")
  40761. },
  40762. ]
  40763. ))
  40764. characterMakers.push(() => makeCharacter(
  40765. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40766. {
  40767. front: {
  40768. height: math.unit(5 + 5/12, "feet"),
  40769. name: "Front",
  40770. image: {
  40771. source: "./media/characters/alsnapz/front.svg",
  40772. extra: 1157/1065,
  40773. bottom: 42/1199
  40774. }
  40775. },
  40776. },
  40777. [
  40778. {
  40779. name: "Normal",
  40780. height: math.unit(5 + 5/12, "feet"),
  40781. default: true
  40782. },
  40783. ]
  40784. ))
  40785. characterMakers.push(() => makeCharacter(
  40786. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40787. {
  40788. side: {
  40789. height: math.unit(3.2, "earths"),
  40790. name: "Side",
  40791. image: {
  40792. source: "./media/characters/mag/side.svg",
  40793. extra: 1331/1008,
  40794. bottom: 52/1383
  40795. }
  40796. },
  40797. wing: {
  40798. height: math.unit(1.94, "earths"),
  40799. name: "Wing",
  40800. image: {
  40801. source: "./media/characters/mag/wing.svg"
  40802. }
  40803. },
  40804. dick: {
  40805. height: math.unit(1.8, "earths"),
  40806. name: "Dick",
  40807. image: {
  40808. source: "./media/characters/mag/dick.svg"
  40809. }
  40810. },
  40811. ass: {
  40812. height: math.unit(1.33, "earths"),
  40813. name: "Ass",
  40814. image: {
  40815. source: "./media/characters/mag/ass.svg"
  40816. }
  40817. },
  40818. head: {
  40819. height: math.unit(1.1, "earths"),
  40820. name: "Head",
  40821. image: {
  40822. source: "./media/characters/mag/head.svg"
  40823. }
  40824. },
  40825. maw: {
  40826. height: math.unit(1.62, "earths"),
  40827. name: "Maw",
  40828. image: {
  40829. source: "./media/characters/mag/maw.svg"
  40830. }
  40831. },
  40832. },
  40833. [
  40834. {
  40835. name: "Small",
  40836. height: math.unit(162, "feet")
  40837. },
  40838. {
  40839. name: "Normal",
  40840. height: math.unit(3.2, "earths"),
  40841. default: true
  40842. },
  40843. ]
  40844. ))
  40845. characterMakers.push(() => makeCharacter(
  40846. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40847. {
  40848. front: {
  40849. height: math.unit(512, "feet"),
  40850. weight: math.unit(63509, "tonnes"),
  40851. name: "Front",
  40852. image: {
  40853. source: "./media/characters/vorrel-harroc/front.svg",
  40854. extra: 1075/1063,
  40855. bottom: 62/1137
  40856. }
  40857. },
  40858. },
  40859. [
  40860. {
  40861. name: "Normal",
  40862. height: math.unit(10, "feet")
  40863. },
  40864. {
  40865. name: "Macro",
  40866. height: math.unit(512, "feet"),
  40867. default: true
  40868. },
  40869. {
  40870. name: "Megamacro",
  40871. height: math.unit(256, "miles")
  40872. },
  40873. {
  40874. name: "Gigamacro",
  40875. height: math.unit(4096, "miles")
  40876. },
  40877. ]
  40878. ))
  40879. characterMakers.push(() => makeCharacter(
  40880. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40881. {
  40882. side: {
  40883. height: math.unit(50, "feet"),
  40884. name: "Side",
  40885. image: {
  40886. source: "./media/characters/froimar/side.svg",
  40887. extra: 855/638,
  40888. bottom: 99/954
  40889. }
  40890. },
  40891. },
  40892. [
  40893. {
  40894. name: "Macro",
  40895. height: math.unit(50, "feet"),
  40896. default: true
  40897. },
  40898. ]
  40899. ))
  40900. characterMakers.push(() => makeCharacter(
  40901. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40902. {
  40903. front: {
  40904. height: math.unit(210, "miles"),
  40905. name: "Front",
  40906. image: {
  40907. source: "./media/characters/timothy/front.svg",
  40908. extra: 1007/943,
  40909. bottom: 62/1069
  40910. }
  40911. },
  40912. frontSkirt: {
  40913. height: math.unit(210, "miles"),
  40914. name: "Front (Skirt)",
  40915. image: {
  40916. source: "./media/characters/timothy/front-skirt.svg",
  40917. extra: 1007/943,
  40918. bottom: 62/1069
  40919. }
  40920. },
  40921. frontCoat: {
  40922. height: math.unit(210, "miles"),
  40923. name: "Front (Coat)",
  40924. image: {
  40925. source: "./media/characters/timothy/front-coat.svg",
  40926. extra: 1007/943,
  40927. bottom: 62/1069
  40928. }
  40929. },
  40930. },
  40931. [
  40932. {
  40933. name: "Macro",
  40934. height: math.unit(210, "miles"),
  40935. default: true
  40936. },
  40937. {
  40938. name: "Megamacro",
  40939. height: math.unit(210000, "miles")
  40940. },
  40941. ]
  40942. ))
  40943. characterMakers.push(() => makeCharacter(
  40944. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40945. {
  40946. front: {
  40947. height: math.unit(188, "feet"),
  40948. name: "Front",
  40949. image: {
  40950. source: "./media/characters/pyotr/front.svg",
  40951. extra: 1912/1826,
  40952. bottom: 18/1930
  40953. }
  40954. },
  40955. },
  40956. [
  40957. {
  40958. name: "Macro",
  40959. height: math.unit(188, "feet"),
  40960. default: true
  40961. },
  40962. {
  40963. name: "Megamacro",
  40964. height: math.unit(8, "miles")
  40965. },
  40966. ]
  40967. ))
  40968. characterMakers.push(() => makeCharacter(
  40969. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40970. {
  40971. side: {
  40972. height: math.unit(10, "feet"),
  40973. weight: math.unit(4500, "lb"),
  40974. name: "Side",
  40975. image: {
  40976. source: "./media/characters/ackart/side.svg",
  40977. extra: 1776/1668,
  40978. bottom: 116/1892
  40979. }
  40980. },
  40981. },
  40982. [
  40983. {
  40984. name: "Normal",
  40985. height: math.unit(10, "feet"),
  40986. default: true
  40987. },
  40988. ]
  40989. ))
  40990. characterMakers.push(() => makeCharacter(
  40991. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40992. {
  40993. side: {
  40994. height: math.unit(21, "feet"),
  40995. name: "Side",
  40996. image: {
  40997. source: "./media/characters/nolow/side.svg",
  40998. extra: 1484/1434,
  40999. bottom: 85/1569
  41000. }
  41001. },
  41002. sideErect: {
  41003. height: math.unit(21, "feet"),
  41004. name: "Side-erect",
  41005. image: {
  41006. source: "./media/characters/nolow/side-erect.svg",
  41007. extra: 1484/1434,
  41008. bottom: 85/1569
  41009. }
  41010. },
  41011. },
  41012. [
  41013. {
  41014. name: "Regular",
  41015. height: math.unit(12, "feet")
  41016. },
  41017. {
  41018. name: "Big Chee",
  41019. height: math.unit(21, "feet"),
  41020. default: true
  41021. },
  41022. ]
  41023. ))
  41024. characterMakers.push(() => makeCharacter(
  41025. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41026. {
  41027. front: {
  41028. height: math.unit(7, "feet"),
  41029. weight: math.unit(250, "lb"),
  41030. name: "Front",
  41031. image: {
  41032. source: "./media/characters/nines/front.svg",
  41033. extra: 1741/1607,
  41034. bottom: 41/1782
  41035. }
  41036. },
  41037. side: {
  41038. height: math.unit(7, "feet"),
  41039. weight: math.unit(250, "lb"),
  41040. name: "Side",
  41041. image: {
  41042. source: "./media/characters/nines/side.svg",
  41043. extra: 1854/1735,
  41044. bottom: 93/1947
  41045. }
  41046. },
  41047. back: {
  41048. height: math.unit(7, "feet"),
  41049. weight: math.unit(250, "lb"),
  41050. name: "Back",
  41051. image: {
  41052. source: "./media/characters/nines/back.svg",
  41053. extra: 1748/1615,
  41054. bottom: 20/1768
  41055. }
  41056. },
  41057. },
  41058. [
  41059. {
  41060. name: "Megamacro",
  41061. height: math.unit(99, "km"),
  41062. default: true
  41063. },
  41064. ]
  41065. ))
  41066. characterMakers.push(() => makeCharacter(
  41067. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41068. {
  41069. front: {
  41070. height: math.unit(5 + 10/12, "feet"),
  41071. weight: math.unit(210, "lb"),
  41072. name: "Front",
  41073. image: {
  41074. source: "./media/characters/zenith/front.svg",
  41075. extra: 1531/1452,
  41076. bottom: 198/1729
  41077. }
  41078. },
  41079. back: {
  41080. height: math.unit(5 + 10/12, "feet"),
  41081. weight: math.unit(210, "lb"),
  41082. name: "Back",
  41083. image: {
  41084. source: "./media/characters/zenith/back.svg",
  41085. extra: 1571/1487,
  41086. bottom: 75/1646
  41087. }
  41088. },
  41089. },
  41090. [
  41091. {
  41092. name: "Normal",
  41093. height: math.unit(5 + 10/12, "feet"),
  41094. default: true
  41095. }
  41096. ]
  41097. ))
  41098. characterMakers.push(() => makeCharacter(
  41099. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41100. {
  41101. front: {
  41102. height: math.unit(4, "feet"),
  41103. weight: math.unit(60, "lb"),
  41104. name: "Front",
  41105. image: {
  41106. source: "./media/characters/jasper/front.svg",
  41107. extra: 1450/1379,
  41108. bottom: 19/1469
  41109. }
  41110. },
  41111. },
  41112. [
  41113. {
  41114. name: "Normal",
  41115. height: math.unit(4, "feet"),
  41116. default: true
  41117. },
  41118. ]
  41119. ))
  41120. characterMakers.push(() => makeCharacter(
  41121. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41122. {
  41123. front: {
  41124. height: math.unit(6 + 5/12, "feet"),
  41125. weight: math.unit(290, "lb"),
  41126. name: "Front",
  41127. image: {
  41128. source: "./media/characters/tiberius-thyben/front.svg",
  41129. extra: 757/739,
  41130. bottom: 39/796
  41131. }
  41132. },
  41133. },
  41134. [
  41135. {
  41136. name: "Micro",
  41137. height: math.unit(1.5, "inches")
  41138. },
  41139. {
  41140. name: "Normal",
  41141. height: math.unit(6 + 5/12, "feet"),
  41142. default: true
  41143. },
  41144. {
  41145. name: "Macro",
  41146. height: math.unit(300, "feet")
  41147. },
  41148. ]
  41149. ))
  41150. characterMakers.push(() => makeCharacter(
  41151. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41152. {
  41153. front: {
  41154. height: math.unit(5 + 6/12, "feet"),
  41155. weight: math.unit(60, "kg"),
  41156. name: "Front",
  41157. image: {
  41158. source: "./media/characters/sabre/front.svg",
  41159. extra: 738/671,
  41160. bottom: 27/765
  41161. }
  41162. },
  41163. },
  41164. [
  41165. {
  41166. name: "Teeny",
  41167. height: math.unit(2, "inches")
  41168. },
  41169. {
  41170. name: "Smol",
  41171. height: math.unit(8, "inches")
  41172. },
  41173. {
  41174. name: "Normal",
  41175. height: math.unit(5 + 6/12, "feet"),
  41176. default: true
  41177. },
  41178. {
  41179. name: "Mini-Macro",
  41180. height: math.unit(15, "feet")
  41181. },
  41182. {
  41183. name: "Macro",
  41184. height: math.unit(50, "feet")
  41185. },
  41186. ]
  41187. ))
  41188. characterMakers.push(() => makeCharacter(
  41189. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41190. {
  41191. front: {
  41192. height: math.unit(6 + 4/12, "feet"),
  41193. weight: math.unit(170, "lb"),
  41194. name: "Front",
  41195. image: {
  41196. source: "./media/characters/charlie/front.svg",
  41197. extra: 1348/1228,
  41198. bottom: 15/1363
  41199. }
  41200. },
  41201. },
  41202. [
  41203. {
  41204. name: "Macro",
  41205. height: math.unit(1700, "meters"),
  41206. default: true
  41207. },
  41208. {
  41209. name: "MegaMacro",
  41210. height: math.unit(20400, "meters")
  41211. },
  41212. ]
  41213. ))
  41214. characterMakers.push(() => makeCharacter(
  41215. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41216. {
  41217. front: {
  41218. height: math.unit(6 + 3/12, "feet"),
  41219. weight: math.unit(185, "lb"),
  41220. name: "Front",
  41221. image: {
  41222. source: "./media/characters/susan-grant/front.svg",
  41223. extra: 1351/1327,
  41224. bottom: 26/1377
  41225. }
  41226. },
  41227. },
  41228. [
  41229. {
  41230. name: "Normal",
  41231. height: math.unit(6 + 3/12, "feet"),
  41232. default: true
  41233. },
  41234. {
  41235. name: "Macro",
  41236. height: math.unit(225, "feet")
  41237. },
  41238. {
  41239. name: "Macro+",
  41240. height: math.unit(900, "feet")
  41241. },
  41242. {
  41243. name: "MegaMacro",
  41244. height: math.unit(14400, "feet")
  41245. },
  41246. ]
  41247. ))
  41248. characterMakers.push(() => makeCharacter(
  41249. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41250. {
  41251. front: {
  41252. height: math.unit(5 + 4/12, "feet"),
  41253. weight: math.unit(110, "lb"),
  41254. name: "Front",
  41255. image: {
  41256. source: "./media/characters/axel-isanov/front.svg",
  41257. extra: 1096/1065,
  41258. bottom: 13/1109
  41259. }
  41260. },
  41261. },
  41262. [
  41263. {
  41264. name: "Normal",
  41265. height: math.unit(5 + 4/12, "feet"),
  41266. default: true
  41267. },
  41268. ]
  41269. ))
  41270. characterMakers.push(() => makeCharacter(
  41271. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41272. {
  41273. front: {
  41274. height: math.unit(9, "feet"),
  41275. weight: math.unit(467, "lb"),
  41276. name: "Front",
  41277. image: {
  41278. source: "./media/characters/necahual/front.svg",
  41279. extra: 920/873,
  41280. bottom: 26/946
  41281. }
  41282. },
  41283. back: {
  41284. height: math.unit(9, "feet"),
  41285. weight: math.unit(467, "lb"),
  41286. name: "Back",
  41287. image: {
  41288. source: "./media/characters/necahual/back.svg",
  41289. extra: 930/884,
  41290. bottom: 16/946
  41291. }
  41292. },
  41293. frontUnderwear: {
  41294. height: math.unit(9, "feet"),
  41295. weight: math.unit(467, "lb"),
  41296. name: "Front (Underwear)",
  41297. image: {
  41298. source: "./media/characters/necahual/front-underwear.svg",
  41299. extra: 920/873,
  41300. bottom: 26/946
  41301. }
  41302. },
  41303. frontDressed: {
  41304. height: math.unit(9, "feet"),
  41305. weight: math.unit(467, "lb"),
  41306. name: "Front (Dressed)",
  41307. image: {
  41308. source: "./media/characters/necahual/front-dressed.svg",
  41309. extra: 920/873,
  41310. bottom: 26/946
  41311. }
  41312. },
  41313. },
  41314. [
  41315. {
  41316. name: "Comprsesed",
  41317. height: math.unit(9, "feet")
  41318. },
  41319. {
  41320. name: "Natural",
  41321. height: math.unit(15, "feet"),
  41322. default: true
  41323. },
  41324. {
  41325. name: "Boosted",
  41326. height: math.unit(50, "feet")
  41327. },
  41328. {
  41329. name: "Boosted+",
  41330. height: math.unit(150, "feet")
  41331. },
  41332. {
  41333. name: "Max",
  41334. height: math.unit(500, "feet")
  41335. },
  41336. ]
  41337. ))
  41338. characterMakers.push(() => makeCharacter(
  41339. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41340. {
  41341. front: {
  41342. height: math.unit(22 + 1/12, "feet"),
  41343. weight: math.unit(3200, "lb"),
  41344. name: "Front",
  41345. image: {
  41346. source: "./media/characters/theo-acacia/front.svg",
  41347. extra: 1796/1741,
  41348. bottom: 83/1879
  41349. }
  41350. },
  41351. frontUnderwear: {
  41352. height: math.unit(22 + 1/12, "feet"),
  41353. weight: math.unit(3200, "lb"),
  41354. name: "Front (Underwear)",
  41355. image: {
  41356. source: "./media/characters/theo-acacia/front-underwear.svg",
  41357. extra: 1796/1741,
  41358. bottom: 83/1879
  41359. }
  41360. },
  41361. frontNude: {
  41362. height: math.unit(22 + 1/12, "feet"),
  41363. weight: math.unit(3200, "lb"),
  41364. name: "Front (Nude)",
  41365. image: {
  41366. source: "./media/characters/theo-acacia/front-nude.svg",
  41367. extra: 1796/1741,
  41368. bottom: 83/1879
  41369. }
  41370. },
  41371. },
  41372. [
  41373. {
  41374. name: "Normal",
  41375. height: math.unit(22 + 1/12, "feet"),
  41376. default: true
  41377. },
  41378. ]
  41379. ))
  41380. characterMakers.push(() => makeCharacter(
  41381. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41382. {
  41383. front: {
  41384. height: math.unit(20, "feet"),
  41385. name: "Front",
  41386. image: {
  41387. source: "./media/characters/astra/front.svg",
  41388. extra: 1850/1714,
  41389. bottom: 106/1956
  41390. }
  41391. },
  41392. frontUndressed: {
  41393. height: math.unit(20, "feet"),
  41394. name: "Front (Undressed)",
  41395. image: {
  41396. source: "./media/characters/astra/front-undressed.svg",
  41397. extra: 1926/1749,
  41398. bottom: 0/1926
  41399. }
  41400. },
  41401. hand: {
  41402. height: math.unit(1.53, "feet"),
  41403. name: "Hand",
  41404. image: {
  41405. source: "./media/characters/astra/hand.svg"
  41406. }
  41407. },
  41408. paw: {
  41409. height: math.unit(1.53, "feet"),
  41410. name: "Paw",
  41411. image: {
  41412. source: "./media/characters/astra/paw.svg"
  41413. }
  41414. },
  41415. },
  41416. [
  41417. {
  41418. name: "Smallest",
  41419. height: math.unit(20, "feet")
  41420. },
  41421. {
  41422. name: "Normal",
  41423. height: math.unit(1e9, "miles"),
  41424. default: true
  41425. },
  41426. {
  41427. name: "Larger",
  41428. height: math.unit(5, "multiverses")
  41429. },
  41430. {
  41431. name: "Largest",
  41432. height: math.unit(1e9, "multiverses")
  41433. },
  41434. ]
  41435. ))
  41436. characterMakers.push(() => makeCharacter(
  41437. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41438. {
  41439. front: {
  41440. height: math.unit(8, "feet"),
  41441. name: "Front",
  41442. image: {
  41443. source: "./media/characters/breanna/front.svg",
  41444. extra: 1912/1632,
  41445. bottom: 33/1945
  41446. }
  41447. },
  41448. },
  41449. [
  41450. {
  41451. name: "Smallest",
  41452. height: math.unit(8, "feet")
  41453. },
  41454. {
  41455. name: "Normal",
  41456. height: math.unit(1, "mile"),
  41457. default: true
  41458. },
  41459. {
  41460. name: "Maximum",
  41461. height: math.unit(1500000000000, "lightyears")
  41462. },
  41463. ]
  41464. ))
  41465. characterMakers.push(() => makeCharacter(
  41466. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41467. {
  41468. front: {
  41469. height: math.unit(5 + 11/12, "feet"),
  41470. weight: math.unit(155, "lb"),
  41471. name: "Front",
  41472. image: {
  41473. source: "./media/characters/cai/front.svg",
  41474. extra: 1823/1702,
  41475. bottom: 32/1855
  41476. }
  41477. },
  41478. back: {
  41479. height: math.unit(5 + 11/12, "feet"),
  41480. weight: math.unit(155, "lb"),
  41481. name: "Back",
  41482. image: {
  41483. source: "./media/characters/cai/back.svg",
  41484. extra: 1809/1708,
  41485. bottom: 31/1840
  41486. }
  41487. },
  41488. },
  41489. [
  41490. {
  41491. name: "Normal",
  41492. height: math.unit(5 + 11/12, "feet"),
  41493. default: true
  41494. },
  41495. {
  41496. name: "Big",
  41497. height: math.unit(15, "feet")
  41498. },
  41499. {
  41500. name: "Macro",
  41501. height: math.unit(200, "feet")
  41502. },
  41503. ]
  41504. ))
  41505. characterMakers.push(() => makeCharacter(
  41506. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41507. {
  41508. front: {
  41509. height: math.unit(5 + 6/12, "feet"),
  41510. weight: math.unit(160, "lb"),
  41511. name: "Front",
  41512. image: {
  41513. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41514. extra: 1227/1174,
  41515. bottom: 37/1264
  41516. }
  41517. },
  41518. },
  41519. [
  41520. {
  41521. name: "Macro",
  41522. height: math.unit(444, "meters"),
  41523. default: true
  41524. },
  41525. ]
  41526. ))
  41527. characterMakers.push(() => makeCharacter(
  41528. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41529. {
  41530. front: {
  41531. height: math.unit(18 + 7/12, "feet"),
  41532. name: "Front",
  41533. image: {
  41534. source: "./media/characters/rex/front.svg",
  41535. extra: 1941/1807,
  41536. bottom: 66/2007
  41537. }
  41538. },
  41539. back: {
  41540. height: math.unit(18 + 7/12, "feet"),
  41541. name: "Back",
  41542. image: {
  41543. source: "./media/characters/rex/back.svg",
  41544. extra: 1937/1822,
  41545. bottom: 42/1979
  41546. }
  41547. },
  41548. boot: {
  41549. height: math.unit(3.45, "feet"),
  41550. name: "Boot",
  41551. image: {
  41552. source: "./media/characters/rex/boot.svg"
  41553. }
  41554. },
  41555. paw: {
  41556. height: math.unit(4.17, "feet"),
  41557. name: "Paw",
  41558. image: {
  41559. source: "./media/characters/rex/paw.svg"
  41560. }
  41561. },
  41562. head: {
  41563. height: math.unit(6.728, "feet"),
  41564. name: "Head",
  41565. image: {
  41566. source: "./media/characters/rex/head.svg"
  41567. }
  41568. },
  41569. },
  41570. [
  41571. {
  41572. name: "Nano",
  41573. height: math.unit(18 + 7/12, "feet")
  41574. },
  41575. {
  41576. name: "Micro",
  41577. height: math.unit(1.5, "megameters")
  41578. },
  41579. {
  41580. name: "Normal",
  41581. height: math.unit(440, "megameters"),
  41582. default: true
  41583. },
  41584. {
  41585. name: "Macro",
  41586. height: math.unit(2.5, "gigameters")
  41587. },
  41588. {
  41589. name: "Gigamacro",
  41590. height: math.unit(2, "galaxies")
  41591. },
  41592. ]
  41593. ))
  41594. characterMakers.push(() => makeCharacter(
  41595. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41596. {
  41597. side: {
  41598. height: math.unit(32, "feet"),
  41599. weight: math.unit(250000, "lb"),
  41600. name: "Side",
  41601. image: {
  41602. source: "./media/characters/silverwing/side.svg",
  41603. extra: 1100/1019,
  41604. bottom: 204/1304
  41605. }
  41606. },
  41607. },
  41608. [
  41609. {
  41610. name: "Normal",
  41611. height: math.unit(32, "feet"),
  41612. default: true
  41613. },
  41614. ]
  41615. ))
  41616. characterMakers.push(() => makeCharacter(
  41617. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41618. {
  41619. front: {
  41620. height: math.unit(6 + 6/12, "feet"),
  41621. weight: math.unit(350, "lb"),
  41622. name: "Front",
  41623. image: {
  41624. source: "./media/characters/tristan-hawthorne/front.svg",
  41625. extra: 1159/1124,
  41626. bottom: 37/1196
  41627. }
  41628. },
  41629. },
  41630. [
  41631. {
  41632. name: "Normal",
  41633. height: math.unit(6 + 6/12, "feet"),
  41634. default: true
  41635. },
  41636. ]
  41637. ))
  41638. characterMakers.push(() => makeCharacter(
  41639. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41640. {
  41641. front: {
  41642. height: math.unit(5 + 11/12, "feet"),
  41643. weight: math.unit(190, "lb"),
  41644. name: "Front",
  41645. image: {
  41646. source: "./media/characters/mizu/front.svg",
  41647. extra: 1988/1788,
  41648. bottom: 14/2002
  41649. }
  41650. },
  41651. },
  41652. [
  41653. {
  41654. name: "Normal",
  41655. height: math.unit(5 + 11/12, "feet"),
  41656. default: true
  41657. },
  41658. ]
  41659. ))
  41660. characterMakers.push(() => makeCharacter(
  41661. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41662. {
  41663. front: {
  41664. height: math.unit(1.7, "feet"),
  41665. weight: math.unit(50, "lb"),
  41666. name: "Front",
  41667. image: {
  41668. source: "./media/characters/dechroma/front.svg",
  41669. extra: 1095/859,
  41670. bottom: 64/1159
  41671. }
  41672. },
  41673. },
  41674. [
  41675. {
  41676. name: "Normal",
  41677. height: math.unit(1.7, "feet"),
  41678. default: true
  41679. },
  41680. ]
  41681. ))
  41682. characterMakers.push(() => makeCharacter(
  41683. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41684. {
  41685. side: {
  41686. height: math.unit(30, "feet"),
  41687. name: "Side",
  41688. image: {
  41689. source: "./media/characters/veluren-thanazel/side.svg",
  41690. extra: 1611/633,
  41691. bottom: 118/1729
  41692. }
  41693. },
  41694. front: {
  41695. height: math.unit(30, "feet"),
  41696. name: "Front",
  41697. image: {
  41698. source: "./media/characters/veluren-thanazel/front.svg",
  41699. extra: 1486/636,
  41700. bottom: 238/1724
  41701. }
  41702. },
  41703. head: {
  41704. height: math.unit(21.4, "feet"),
  41705. name: "Head",
  41706. image: {
  41707. source: "./media/characters/veluren-thanazel/head.svg"
  41708. }
  41709. },
  41710. genitals: {
  41711. height: math.unit(19.4, "feet"),
  41712. name: "Genitals",
  41713. image: {
  41714. source: "./media/characters/veluren-thanazel/genitals.svg"
  41715. }
  41716. },
  41717. },
  41718. [
  41719. {
  41720. name: "Social",
  41721. height: math.unit(6, "feet")
  41722. },
  41723. {
  41724. name: "Play",
  41725. height: math.unit(12, "feet")
  41726. },
  41727. {
  41728. name: "True",
  41729. height: math.unit(30, "feet"),
  41730. default: true
  41731. },
  41732. ]
  41733. ))
  41734. characterMakers.push(() => makeCharacter(
  41735. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41736. {
  41737. front: {
  41738. height: math.unit(7 + 6/12, "feet"),
  41739. weight: math.unit(500, "kg"),
  41740. name: "Front",
  41741. image: {
  41742. source: "./media/characters/arcturas/front.svg",
  41743. extra: 1700/1500,
  41744. bottom: 145/1845
  41745. }
  41746. },
  41747. },
  41748. [
  41749. {
  41750. name: "Normal",
  41751. height: math.unit(7 + 6/12, "feet"),
  41752. default: true
  41753. },
  41754. ]
  41755. ))
  41756. characterMakers.push(() => makeCharacter(
  41757. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41758. {
  41759. side: {
  41760. height: math.unit(6, "feet"),
  41761. weight: math.unit(2, "tons"),
  41762. name: "Side",
  41763. image: {
  41764. source: "./media/characters/vitaen/side.svg",
  41765. extra: 1157/617,
  41766. bottom: 122/1279
  41767. }
  41768. },
  41769. },
  41770. [
  41771. {
  41772. name: "Normal",
  41773. height: math.unit(6, "feet"),
  41774. default: true
  41775. },
  41776. ]
  41777. ))
  41778. characterMakers.push(() => makeCharacter(
  41779. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41780. {
  41781. front: {
  41782. height: math.unit(19, "feet"),
  41783. name: "Front",
  41784. image: {
  41785. source: "./media/characters/fia-dreamweaver/front.svg",
  41786. extra: 1630/1504,
  41787. bottom: 25/1655
  41788. }
  41789. },
  41790. },
  41791. [
  41792. {
  41793. name: "Normal",
  41794. height: math.unit(19, "feet"),
  41795. default: true
  41796. },
  41797. ]
  41798. ))
  41799. characterMakers.push(() => makeCharacter(
  41800. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41801. {
  41802. front: {
  41803. height: math.unit(5 + 4/12, "feet"),
  41804. name: "Front",
  41805. image: {
  41806. source: "./media/characters/artan/front.svg",
  41807. extra: 1618/1535,
  41808. bottom: 46/1664
  41809. }
  41810. },
  41811. back: {
  41812. height: math.unit(5 + 4/12, "feet"),
  41813. name: "Back",
  41814. image: {
  41815. source: "./media/characters/artan/back.svg",
  41816. extra: 1618/1543,
  41817. bottom: 31/1649
  41818. }
  41819. },
  41820. },
  41821. [
  41822. {
  41823. name: "Normal",
  41824. height: math.unit(5 + 4/12, "feet"),
  41825. default: true
  41826. },
  41827. ]
  41828. ))
  41829. characterMakers.push(() => makeCharacter(
  41830. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41831. {
  41832. side: {
  41833. height: math.unit(182, "cm"),
  41834. weight: math.unit(1000, "lb"),
  41835. name: "Side",
  41836. image: {
  41837. source: "./media/characters/silver-dragon/side.svg",
  41838. extra: 710/287,
  41839. bottom: 88/798
  41840. }
  41841. },
  41842. },
  41843. [
  41844. {
  41845. name: "Normal",
  41846. height: math.unit(182, "cm"),
  41847. default: true
  41848. },
  41849. ]
  41850. ))
  41851. characterMakers.push(() => makeCharacter(
  41852. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41853. {
  41854. side: {
  41855. height: math.unit(6 + 6/12, "feet"),
  41856. weight: math.unit(1.5, "tons"),
  41857. name: "Side",
  41858. image: {
  41859. source: "./media/characters/zephyr/side.svg",
  41860. extra: 1433/586,
  41861. bottom: 109/1542
  41862. }
  41863. },
  41864. },
  41865. [
  41866. {
  41867. name: "Normal",
  41868. height: math.unit(6 + 6/12, "feet"),
  41869. default: true
  41870. },
  41871. ]
  41872. ))
  41873. characterMakers.push(() => makeCharacter(
  41874. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41875. {
  41876. side: {
  41877. height: math.unit(1, "feet"),
  41878. name: "Side",
  41879. image: {
  41880. source: "./media/characters/vixye/side.svg",
  41881. extra: 632/541,
  41882. bottom: 0/632
  41883. }
  41884. },
  41885. },
  41886. [
  41887. {
  41888. name: "Normal",
  41889. height: math.unit(1, "feet"),
  41890. default: true
  41891. },
  41892. {
  41893. name: "True",
  41894. height: math.unit(1e15, "multiverses")
  41895. },
  41896. ]
  41897. ))
  41898. characterMakers.push(() => makeCharacter(
  41899. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41900. {
  41901. front: {
  41902. height: math.unit(8 + 2/12, "feet"),
  41903. weight: math.unit(650, "lb"),
  41904. name: "Front",
  41905. image: {
  41906. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41907. extra: 1174/1137,
  41908. bottom: 82/1256
  41909. }
  41910. },
  41911. back: {
  41912. height: math.unit(8 + 2/12, "feet"),
  41913. weight: math.unit(650, "lb"),
  41914. name: "Back",
  41915. image: {
  41916. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41917. extra: 1204/1157,
  41918. bottom: 46/1250
  41919. }
  41920. },
  41921. },
  41922. [
  41923. {
  41924. name: "Wildform",
  41925. height: math.unit(8 + 2/12, "feet"),
  41926. default: true
  41927. },
  41928. ]
  41929. ))
  41930. characterMakers.push(() => makeCharacter(
  41931. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41932. {
  41933. front: {
  41934. height: math.unit(18, "feet"),
  41935. name: "Front",
  41936. image: {
  41937. source: "./media/characters/cyphin/front.svg",
  41938. extra: 970/886,
  41939. bottom: 42/1012
  41940. }
  41941. },
  41942. back: {
  41943. height: math.unit(18, "feet"),
  41944. name: "Back",
  41945. image: {
  41946. source: "./media/characters/cyphin/back.svg",
  41947. extra: 1009/894,
  41948. bottom: 24/1033
  41949. }
  41950. },
  41951. head: {
  41952. height: math.unit(5.05, "feet"),
  41953. name: "Head",
  41954. image: {
  41955. source: "./media/characters/cyphin/head.svg"
  41956. }
  41957. },
  41958. tailbud: {
  41959. height: math.unit(5, "feet"),
  41960. name: "Tailbud",
  41961. image: {
  41962. source: "./media/characters/cyphin/tailbud.svg"
  41963. }
  41964. },
  41965. },
  41966. [
  41967. ]
  41968. ))
  41969. characterMakers.push(() => makeCharacter(
  41970. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41971. {
  41972. side: {
  41973. height: math.unit(10, "feet"),
  41974. weight: math.unit(6, "tons"),
  41975. name: "Side",
  41976. image: {
  41977. source: "./media/characters/raijin/side.svg",
  41978. extra: 1529/613,
  41979. bottom: 337/1866
  41980. }
  41981. },
  41982. },
  41983. [
  41984. {
  41985. name: "Normal",
  41986. height: math.unit(10, "feet"),
  41987. default: true
  41988. },
  41989. ]
  41990. ))
  41991. characterMakers.push(() => makeCharacter(
  41992. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41993. {
  41994. side: {
  41995. height: math.unit(9, "feet"),
  41996. name: "Side",
  41997. image: {
  41998. source: "./media/characters/nilghais/side.svg",
  41999. extra: 1047/744,
  42000. bottom: 91/1138
  42001. }
  42002. },
  42003. head: {
  42004. height: math.unit(3.14, "feet"),
  42005. name: "Head",
  42006. image: {
  42007. source: "./media/characters/nilghais/head.svg"
  42008. }
  42009. },
  42010. mouth: {
  42011. height: math.unit(4.6, "feet"),
  42012. name: "Mouth",
  42013. image: {
  42014. source: "./media/characters/nilghais/mouth.svg"
  42015. }
  42016. },
  42017. wings: {
  42018. height: math.unit(24, "feet"),
  42019. name: "Wings",
  42020. image: {
  42021. source: "./media/characters/nilghais/wings.svg"
  42022. }
  42023. },
  42024. ass: {
  42025. height: math.unit(6.12, "feet"),
  42026. name: "Ass",
  42027. image: {
  42028. source: "./media/characters/nilghais/ass.svg"
  42029. }
  42030. },
  42031. },
  42032. [
  42033. {
  42034. name: "Normal",
  42035. height: math.unit(9, "feet"),
  42036. default: true
  42037. },
  42038. ]
  42039. ))
  42040. characterMakers.push(() => makeCharacter(
  42041. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42042. {
  42043. regular: {
  42044. height: math.unit(16 + 2/12, "feet"),
  42045. weight: math.unit(2300, "lb"),
  42046. name: "Regular",
  42047. image: {
  42048. source: "./media/characters/zolgar/regular.svg",
  42049. extra: 1246/1004,
  42050. bottom: 124/1370
  42051. }
  42052. },
  42053. boxers: {
  42054. height: math.unit(16 + 2/12, "feet"),
  42055. weight: math.unit(2300, "lb"),
  42056. name: "Boxers",
  42057. image: {
  42058. source: "./media/characters/zolgar/boxers.svg",
  42059. extra: 1246/1004,
  42060. bottom: 124/1370
  42061. }
  42062. },
  42063. armored: {
  42064. height: math.unit(16 + 2/12, "feet"),
  42065. weight: math.unit(2300, "lb"),
  42066. name: "Armored",
  42067. image: {
  42068. source: "./media/characters/zolgar/armored.svg",
  42069. extra: 1246/1004,
  42070. bottom: 124/1370
  42071. }
  42072. },
  42073. goth: {
  42074. height: math.unit(16 + 2/12, "feet"),
  42075. weight: math.unit(2300, "lb"),
  42076. name: "Goth",
  42077. image: {
  42078. source: "./media/characters/zolgar/goth.svg",
  42079. extra: 1246/1004,
  42080. bottom: 124/1370
  42081. }
  42082. },
  42083. },
  42084. [
  42085. {
  42086. name: "Shrunken Down",
  42087. height: math.unit(9 + 2/12, "feet")
  42088. },
  42089. {
  42090. name: "Normal",
  42091. height: math.unit(16 + 2/12, "feet"),
  42092. default: true
  42093. },
  42094. ]
  42095. ))
  42096. characterMakers.push(() => makeCharacter(
  42097. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42098. {
  42099. front: {
  42100. height: math.unit(6, "feet"),
  42101. weight: math.unit(168, "lb"),
  42102. name: "Front",
  42103. image: {
  42104. source: "./media/characters/luca/front.svg",
  42105. extra: 841/667,
  42106. bottom: 102/943
  42107. }
  42108. },
  42109. },
  42110. [
  42111. {
  42112. name: "Normal",
  42113. height: math.unit(6, "feet"),
  42114. default: true
  42115. },
  42116. ]
  42117. ))
  42118. characterMakers.push(() => makeCharacter(
  42119. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42120. {
  42121. side: {
  42122. height: math.unit(7 + 3/12, "feet"),
  42123. weight: math.unit(312, "lb"),
  42124. name: "Side",
  42125. image: {
  42126. source: "./media/characters/zezo/side.svg",
  42127. extra: 1192/1067,
  42128. bottom: 63/1255
  42129. }
  42130. },
  42131. },
  42132. [
  42133. {
  42134. name: "Normal",
  42135. height: math.unit(7 + 3/12, "feet"),
  42136. default: true
  42137. },
  42138. ]
  42139. ))
  42140. characterMakers.push(() => makeCharacter(
  42141. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42142. {
  42143. front: {
  42144. height: math.unit(5 + 5/12, "feet"),
  42145. weight: math.unit(170, "lb"),
  42146. name: "Front",
  42147. image: {
  42148. source: "./media/characters/mayso/front.svg",
  42149. extra: 1215/1108,
  42150. bottom: 16/1231
  42151. }
  42152. },
  42153. },
  42154. [
  42155. {
  42156. name: "Normal",
  42157. height: math.unit(5 + 5/12, "feet"),
  42158. default: true
  42159. },
  42160. ]
  42161. ))
  42162. characterMakers.push(() => makeCharacter(
  42163. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42164. {
  42165. front: {
  42166. height: math.unit(4 + 3/12, "feet"),
  42167. weight: math.unit(80, "lb"),
  42168. name: "Front",
  42169. image: {
  42170. source: "./media/characters/hess/front.svg",
  42171. extra: 1200/1123,
  42172. bottom: 16/1216
  42173. }
  42174. },
  42175. },
  42176. [
  42177. {
  42178. name: "Normal",
  42179. height: math.unit(4 + 3/12, "feet"),
  42180. default: true
  42181. },
  42182. ]
  42183. ))
  42184. characterMakers.push(() => makeCharacter(
  42185. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42186. {
  42187. front: {
  42188. height: math.unit(1.9, "meters"),
  42189. name: "Front",
  42190. image: {
  42191. source: "./media/characters/ashgar/front.svg",
  42192. extra: 1177/1146,
  42193. bottom: 99/1276
  42194. }
  42195. },
  42196. back: {
  42197. height: math.unit(1.9, "meters"),
  42198. name: "Back",
  42199. image: {
  42200. source: "./media/characters/ashgar/back.svg",
  42201. extra: 1201/1183,
  42202. bottom: 53/1254
  42203. }
  42204. },
  42205. feral: {
  42206. height: math.unit(1.4, "meters"),
  42207. name: "Feral",
  42208. image: {
  42209. source: "./media/characters/ashgar/feral.svg",
  42210. extra: 370/345,
  42211. bottom: 45/415
  42212. }
  42213. },
  42214. },
  42215. [
  42216. {
  42217. name: "Normal",
  42218. height: math.unit(1.9, "meters"),
  42219. default: true
  42220. },
  42221. ]
  42222. ))
  42223. characterMakers.push(() => makeCharacter(
  42224. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42225. {
  42226. regular: {
  42227. height: math.unit(6, "feet"),
  42228. weight: math.unit(220, "lb"),
  42229. name: "Regular",
  42230. image: {
  42231. source: "./media/characters/phillip/regular.svg",
  42232. extra: 1373/1277,
  42233. bottom: 75/1448
  42234. }
  42235. },
  42236. dressed: {
  42237. height: math.unit(6, "feet"),
  42238. weight: math.unit(220, "lb"),
  42239. name: "Dressed",
  42240. image: {
  42241. source: "./media/characters/phillip/dressed.svg",
  42242. extra: 1373/1277,
  42243. bottom: 75/1448
  42244. }
  42245. },
  42246. paw: {
  42247. height: math.unit(1.44, "feet"),
  42248. name: "Paw",
  42249. image: {
  42250. source: "./media/characters/phillip/paw.svg"
  42251. }
  42252. },
  42253. },
  42254. [
  42255. {
  42256. name: "Normal",
  42257. height: math.unit(6, "feet"),
  42258. default: true
  42259. },
  42260. ]
  42261. ))
  42262. characterMakers.push(() => makeCharacter(
  42263. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42264. {
  42265. side: {
  42266. height: math.unit(42, "feet"),
  42267. name: "Side",
  42268. image: {
  42269. source: "./media/characters/uvula/side.svg",
  42270. extra: 683/586,
  42271. bottom: 60/743
  42272. }
  42273. },
  42274. front: {
  42275. height: math.unit(42, "feet"),
  42276. name: "Front",
  42277. image: {
  42278. source: "./media/characters/uvula/front.svg",
  42279. extra: 705/613,
  42280. bottom: 54/759
  42281. }
  42282. },
  42283. maw: {
  42284. height: math.unit(23.5, "feet"),
  42285. name: "Maw",
  42286. image: {
  42287. source: "./media/characters/uvula/maw.svg"
  42288. }
  42289. },
  42290. },
  42291. [
  42292. {
  42293. name: "Original Size",
  42294. height: math.unit(14, "inches")
  42295. },
  42296. {
  42297. name: "Human Size",
  42298. height: math.unit(6, "feet")
  42299. },
  42300. {
  42301. name: "Big",
  42302. height: math.unit(42, "feet"),
  42303. default: true
  42304. },
  42305. {
  42306. name: "Bigger",
  42307. height: math.unit(100, "feet")
  42308. },
  42309. ]
  42310. ))
  42311. characterMakers.push(() => makeCharacter(
  42312. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42313. {
  42314. front: {
  42315. height: math.unit(5 + 11/12, "feet"),
  42316. name: "Front",
  42317. image: {
  42318. source: "./media/characters/lannah/front.svg",
  42319. extra: 1208/1113,
  42320. bottom: 97/1305
  42321. }
  42322. },
  42323. },
  42324. [
  42325. {
  42326. name: "Normal",
  42327. height: math.unit(5 + 11/12, "feet"),
  42328. default: true
  42329. },
  42330. ]
  42331. ))
  42332. characterMakers.push(() => makeCharacter(
  42333. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42334. {
  42335. front: {
  42336. height: math.unit(6 + 3/12, "feet"),
  42337. weight: math.unit(3.5, "tons"),
  42338. name: "Front",
  42339. image: {
  42340. source: "./media/characters/emberflame/front.svg",
  42341. extra: 1198/672,
  42342. bottom: 82/1280
  42343. }
  42344. },
  42345. side: {
  42346. height: math.unit(6 + 3/12, "feet"),
  42347. weight: math.unit(3.5, "tons"),
  42348. name: "Side",
  42349. image: {
  42350. source: "./media/characters/emberflame/side.svg",
  42351. extra: 938/527,
  42352. bottom: 56/994
  42353. }
  42354. },
  42355. },
  42356. [
  42357. {
  42358. name: "Normal",
  42359. height: math.unit(6 + 3/12, "feet"),
  42360. default: true
  42361. },
  42362. ]
  42363. ))
  42364. characterMakers.push(() => makeCharacter(
  42365. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42366. {
  42367. side: {
  42368. height: math.unit(17.5, "feet"),
  42369. weight: math.unit(35, "tons"),
  42370. name: "Side",
  42371. image: {
  42372. source: "./media/characters/sophie-ambrose/side.svg",
  42373. extra: 1573/1242,
  42374. bottom: 71/1644
  42375. }
  42376. },
  42377. maw: {
  42378. height: math.unit(7.4, "feet"),
  42379. name: "Maw",
  42380. image: {
  42381. source: "./media/characters/sophie-ambrose/maw.svg"
  42382. }
  42383. },
  42384. },
  42385. [
  42386. {
  42387. name: "Normal",
  42388. height: math.unit(17.5, "feet"),
  42389. default: true
  42390. },
  42391. ]
  42392. ))
  42393. characterMakers.push(() => makeCharacter(
  42394. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42395. {
  42396. front: {
  42397. height: math.unit(280, "feet"),
  42398. weight: math.unit(550, "tons"),
  42399. name: "Front",
  42400. image: {
  42401. source: "./media/characters/king-mugi/front.svg",
  42402. extra: 1102/947,
  42403. bottom: 104/1206
  42404. }
  42405. },
  42406. },
  42407. [
  42408. {
  42409. name: "King Mugi",
  42410. height: math.unit(280, "feet"),
  42411. default: true
  42412. },
  42413. ]
  42414. ))
  42415. characterMakers.push(() => makeCharacter(
  42416. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42417. {
  42418. front: {
  42419. height: math.unit(64, "meters"),
  42420. name: "Front",
  42421. image: {
  42422. source: "./media/characters/nova-fox/front.svg",
  42423. extra: 1310/1246,
  42424. bottom: 65/1375
  42425. }
  42426. },
  42427. },
  42428. [
  42429. {
  42430. name: "Macro",
  42431. height: math.unit(64, "meters"),
  42432. default: true
  42433. },
  42434. ]
  42435. ))
  42436. characterMakers.push(() => makeCharacter(
  42437. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42438. {
  42439. front: {
  42440. height: math.unit(6 + 3/12, "feet"),
  42441. weight: math.unit(170, "lb"),
  42442. name: "Front",
  42443. image: {
  42444. source: "./media/characters/sam-bat/front.svg",
  42445. extra: 1601/1411,
  42446. bottom: 125/1726
  42447. }
  42448. },
  42449. back: {
  42450. height: math.unit(6 + 3/12, "feet"),
  42451. weight: math.unit(170, "lb"),
  42452. name: "Back",
  42453. image: {
  42454. source: "./media/characters/sam-bat/back.svg",
  42455. extra: 1577/1405,
  42456. bottom: 58/1635
  42457. }
  42458. },
  42459. },
  42460. [
  42461. {
  42462. name: "Normal",
  42463. height: math.unit(6 + 3/12, "feet"),
  42464. default: true
  42465. },
  42466. ]
  42467. ))
  42468. characterMakers.push(() => makeCharacter(
  42469. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42470. {
  42471. front: {
  42472. height: math.unit(59, "feet"),
  42473. weight: math.unit(40000, "lb"),
  42474. name: "Front",
  42475. image: {
  42476. source: "./media/characters/inari/front.svg",
  42477. extra: 1884/1350,
  42478. bottom: 95/1979
  42479. }
  42480. },
  42481. },
  42482. [
  42483. {
  42484. name: "Gigantamax",
  42485. height: math.unit(59, "feet"),
  42486. default: true
  42487. },
  42488. ]
  42489. ))
  42490. characterMakers.push(() => makeCharacter(
  42491. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42492. {
  42493. front: {
  42494. height: math.unit(5 + 8/12, "feet"),
  42495. name: "Front",
  42496. image: {
  42497. source: "./media/characters/elizabeth/front.svg",
  42498. extra: 1395/1298,
  42499. bottom: 54/1449
  42500. }
  42501. },
  42502. mouth: {
  42503. height: math.unit(1.97, "feet"),
  42504. name: "Mouth",
  42505. image: {
  42506. source: "./media/characters/elizabeth/mouth.svg"
  42507. }
  42508. },
  42509. foot: {
  42510. height: math.unit(1.17, "feet"),
  42511. name: "Foot",
  42512. image: {
  42513. source: "./media/characters/elizabeth/foot.svg"
  42514. }
  42515. },
  42516. },
  42517. [
  42518. {
  42519. name: "Normal",
  42520. height: math.unit(5 + 8/12, "feet"),
  42521. default: true
  42522. },
  42523. {
  42524. name: "Minimacro",
  42525. height: math.unit(18, "feet")
  42526. },
  42527. {
  42528. name: "Macro",
  42529. height: math.unit(180, "feet")
  42530. },
  42531. ]
  42532. ))
  42533. characterMakers.push(() => makeCharacter(
  42534. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42535. {
  42536. front: {
  42537. height: math.unit(5 + 2/12, "feet"),
  42538. name: "Front",
  42539. image: {
  42540. source: "./media/characters/october-gossamer/front.svg",
  42541. extra: 505/454,
  42542. bottom: 7/512
  42543. }
  42544. },
  42545. back: {
  42546. height: math.unit(5 + 2/12, "feet"),
  42547. name: "Back",
  42548. image: {
  42549. source: "./media/characters/october-gossamer/back.svg",
  42550. extra: 501/454,
  42551. bottom: 11/512
  42552. }
  42553. },
  42554. },
  42555. [
  42556. {
  42557. name: "Normal",
  42558. height: math.unit(5 + 2/12, "feet"),
  42559. default: true
  42560. },
  42561. ]
  42562. ))
  42563. characterMakers.push(() => makeCharacter(
  42564. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42565. {
  42566. front: {
  42567. height: math.unit(5, "feet"),
  42568. name: "Front",
  42569. image: {
  42570. source: "./media/characters/epiglottis/front.svg",
  42571. extra: 923/849,
  42572. bottom: 17/940
  42573. }
  42574. },
  42575. },
  42576. [
  42577. {
  42578. name: "Original Size",
  42579. height: math.unit(10, "inches")
  42580. },
  42581. {
  42582. name: "Human Size",
  42583. height: math.unit(5, "feet"),
  42584. default: true
  42585. },
  42586. {
  42587. name: "Big",
  42588. height: math.unit(25, "feet")
  42589. },
  42590. {
  42591. name: "Bigger",
  42592. height: math.unit(50, "feet")
  42593. },
  42594. {
  42595. name: "oh lawd",
  42596. height: math.unit(75, "feet")
  42597. },
  42598. ]
  42599. ))
  42600. characterMakers.push(() => makeCharacter(
  42601. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42602. {
  42603. front: {
  42604. height: math.unit(2 + 4/12, "feet"),
  42605. weight: math.unit(60, "lb"),
  42606. name: "Front",
  42607. image: {
  42608. source: "./media/characters/lerm/front.svg",
  42609. extra: 796/790,
  42610. bottom: 79/875
  42611. }
  42612. },
  42613. },
  42614. [
  42615. {
  42616. name: "Normal",
  42617. height: math.unit(2 + 4/12, "feet"),
  42618. default: true
  42619. },
  42620. ]
  42621. ))
  42622. characterMakers.push(() => makeCharacter(
  42623. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42624. {
  42625. front: {
  42626. height: math.unit(5.5, "feet"),
  42627. weight: math.unit(130, "lb"),
  42628. name: "Front",
  42629. image: {
  42630. source: "./media/characters/xena-nebadon/front.svg",
  42631. extra: 1828/1730,
  42632. bottom: 79/1907
  42633. }
  42634. },
  42635. },
  42636. [
  42637. {
  42638. name: "Tiny Puppy",
  42639. height: math.unit(3, "inches")
  42640. },
  42641. {
  42642. name: "Normal",
  42643. height: math.unit(5.5, "feet"),
  42644. default: true
  42645. },
  42646. {
  42647. name: "Lotta Lady",
  42648. height: math.unit(12, "feet")
  42649. },
  42650. {
  42651. name: "Pretty Big",
  42652. height: math.unit(100, "feet")
  42653. },
  42654. {
  42655. name: "Big",
  42656. height: math.unit(500, "feet")
  42657. },
  42658. {
  42659. name: "Skyscraper Toys",
  42660. height: math.unit(2500, "feet")
  42661. },
  42662. {
  42663. name: "Plane Catcher",
  42664. height: math.unit(8, "miles")
  42665. },
  42666. {
  42667. name: "Planet Toys",
  42668. height: math.unit(15, "earths")
  42669. },
  42670. {
  42671. name: "Stardust",
  42672. height: math.unit(0.25, "galaxies")
  42673. },
  42674. {
  42675. name: "Snacks",
  42676. height: math.unit(70, "universes")
  42677. },
  42678. ]
  42679. ))
  42680. characterMakers.push(() => makeCharacter(
  42681. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42682. {
  42683. front: {
  42684. height: math.unit(1.6, "meters"),
  42685. weight: math.unit(60, "kg"),
  42686. name: "Front",
  42687. image: {
  42688. source: "./media/characters/bounty/front.svg",
  42689. extra: 1426/1308,
  42690. bottom: 15/1441
  42691. }
  42692. },
  42693. back: {
  42694. height: math.unit(1.6, "meters"),
  42695. weight: math.unit(60, "kg"),
  42696. name: "Back",
  42697. image: {
  42698. source: "./media/characters/bounty/back.svg",
  42699. extra: 1417/1307,
  42700. bottom: 8/1425
  42701. }
  42702. },
  42703. },
  42704. [
  42705. {
  42706. name: "Normal",
  42707. height: math.unit(1.6, "meters"),
  42708. default: true
  42709. },
  42710. {
  42711. name: "Macro",
  42712. height: math.unit(300, "meters")
  42713. },
  42714. ]
  42715. ))
  42716. characterMakers.push(() => makeCharacter(
  42717. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42718. {
  42719. front: {
  42720. height: math.unit(2 + 8/12, "feet"),
  42721. weight: math.unit(15, "lb"),
  42722. name: "Front",
  42723. image: {
  42724. source: "./media/characters/mochi/front.svg",
  42725. extra: 1022/852,
  42726. bottom: 435/1457
  42727. }
  42728. },
  42729. back: {
  42730. height: math.unit(2 + 8/12, "feet"),
  42731. weight: math.unit(15, "lb"),
  42732. name: "Back",
  42733. image: {
  42734. source: "./media/characters/mochi/back.svg",
  42735. extra: 1335/1119,
  42736. bottom: 39/1374
  42737. }
  42738. },
  42739. bird: {
  42740. height: math.unit(2 + 8/12, "feet"),
  42741. weight: math.unit(15, "lb"),
  42742. name: "Bird",
  42743. image: {
  42744. source: "./media/characters/mochi/bird.svg",
  42745. extra: 1251/1113,
  42746. bottom: 178/1429
  42747. }
  42748. },
  42749. kaiju: {
  42750. height: math.unit(154, "feet"),
  42751. weight: math.unit(1e7, "lb"),
  42752. name: "Kaiju",
  42753. image: {
  42754. source: "./media/characters/mochi/kaiju.svg",
  42755. extra: 460/324,
  42756. bottom: 40/500
  42757. }
  42758. },
  42759. head: {
  42760. height: math.unit(1.21, "feet"),
  42761. name: "Head",
  42762. image: {
  42763. source: "./media/characters/mochi/head.svg"
  42764. }
  42765. },
  42766. alternateTail: {
  42767. height: math.unit(2 + 8/12, "feet"),
  42768. weight: math.unit(45, "lb"),
  42769. name: "Alternate Tail",
  42770. image: {
  42771. source: "./media/characters/mochi/alternate-tail.svg",
  42772. extra: 139/76,
  42773. bottom: 45/184
  42774. }
  42775. },
  42776. },
  42777. [
  42778. {
  42779. name: "Micro",
  42780. height: math.unit(2, "inches")
  42781. },
  42782. {
  42783. name: "Normal",
  42784. height: math.unit(2 + 8/12, "feet"),
  42785. default: true
  42786. },
  42787. {
  42788. name: "Macro",
  42789. height: math.unit(106, "feet")
  42790. },
  42791. ]
  42792. ))
  42793. characterMakers.push(() => makeCharacter(
  42794. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42795. {
  42796. front: {
  42797. height: math.unit(5.67, "feet"),
  42798. weight: math.unit(135, "lb"),
  42799. name: "Front",
  42800. image: {
  42801. source: "./media/characters/sarel/front.svg",
  42802. extra: 865/788,
  42803. bottom: 97/962
  42804. }
  42805. },
  42806. back: {
  42807. height: math.unit(5.67, "feet"),
  42808. weight: math.unit(135, "lb"),
  42809. name: "Back",
  42810. image: {
  42811. source: "./media/characters/sarel/back.svg",
  42812. extra: 857/777,
  42813. bottom: 32/889
  42814. }
  42815. },
  42816. chozoan: {
  42817. height: math.unit(5.67, "feet"),
  42818. weight: math.unit(135, "lb"),
  42819. name: "Chozoan",
  42820. image: {
  42821. source: "./media/characters/sarel/chozoan.svg",
  42822. extra: 865/788,
  42823. bottom: 97/962
  42824. }
  42825. },
  42826. current: {
  42827. height: math.unit(5.67, "feet"),
  42828. weight: math.unit(135, "lb"),
  42829. name: "Current",
  42830. image: {
  42831. source: "./media/characters/sarel/current.svg",
  42832. extra: 865/788,
  42833. bottom: 97/962
  42834. }
  42835. },
  42836. head: {
  42837. height: math.unit(1.77, "feet"),
  42838. name: "Head",
  42839. image: {
  42840. source: "./media/characters/sarel/head.svg"
  42841. }
  42842. },
  42843. claws: {
  42844. height: math.unit(1.8, "feet"),
  42845. name: "Claws",
  42846. image: {
  42847. source: "./media/characters/sarel/claws.svg"
  42848. }
  42849. },
  42850. clawsAlt: {
  42851. height: math.unit(1.8, "feet"),
  42852. name: "Claws-alt",
  42853. image: {
  42854. source: "./media/characters/sarel/claws-alt.svg"
  42855. }
  42856. },
  42857. },
  42858. [
  42859. {
  42860. name: "Normal",
  42861. height: math.unit(5.67, "feet"),
  42862. default: true
  42863. },
  42864. ]
  42865. ))
  42866. characterMakers.push(() => makeCharacter(
  42867. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42868. {
  42869. front: {
  42870. height: math.unit(5500, "feet"),
  42871. name: "Front",
  42872. image: {
  42873. source: "./media/characters/alyonia/front.svg",
  42874. extra: 1200/1135,
  42875. bottom: 29/1229
  42876. }
  42877. },
  42878. back: {
  42879. height: math.unit(5500, "feet"),
  42880. name: "Back",
  42881. image: {
  42882. source: "./media/characters/alyonia/back.svg",
  42883. extra: 1205/1138,
  42884. bottom: 10/1215
  42885. }
  42886. },
  42887. },
  42888. [
  42889. {
  42890. name: "Small",
  42891. height: math.unit(10, "feet")
  42892. },
  42893. {
  42894. name: "Macro",
  42895. height: math.unit(500, "feet")
  42896. },
  42897. {
  42898. name: "Mega Macro",
  42899. height: math.unit(5500, "feet"),
  42900. default: true
  42901. },
  42902. {
  42903. name: "Mega Macro+",
  42904. height: math.unit(500000, "feet")
  42905. },
  42906. {
  42907. name: "Giga Macro",
  42908. height: math.unit(3000, "miles")
  42909. },
  42910. {
  42911. name: "Tera Macro",
  42912. height: math.unit(2.8e6, "miles")
  42913. },
  42914. {
  42915. name: "Galactic",
  42916. height: math.unit(120000, "lightyears")
  42917. },
  42918. ]
  42919. ))
  42920. characterMakers.push(() => makeCharacter(
  42921. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42922. {
  42923. werewolf: {
  42924. height: math.unit(8, "feet"),
  42925. weight: math.unit(425, "lb"),
  42926. name: "Werewolf",
  42927. image: {
  42928. source: "./media/characters/autumn/werewolf.svg",
  42929. extra: 2154/2031,
  42930. bottom: 160/2314
  42931. }
  42932. },
  42933. human: {
  42934. height: math.unit(5 + 8/12, "feet"),
  42935. weight: math.unit(150, "lb"),
  42936. name: "Human",
  42937. image: {
  42938. source: "./media/characters/autumn/human.svg",
  42939. extra: 1200/1149,
  42940. bottom: 30/1230
  42941. }
  42942. },
  42943. },
  42944. [
  42945. {
  42946. name: "Normal",
  42947. height: math.unit(8, "feet"),
  42948. default: true
  42949. },
  42950. ]
  42951. ))
  42952. characterMakers.push(() => makeCharacter(
  42953. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42954. {
  42955. front: {
  42956. height: math.unit(8 + 5/12, "feet"),
  42957. weight: math.unit(825, "lb"),
  42958. name: "Front",
  42959. image: {
  42960. source: "./media/characters/cobalt-charizard/front.svg",
  42961. extra: 1268/1155,
  42962. bottom: 122/1390
  42963. }
  42964. },
  42965. side: {
  42966. height: math.unit(8 + 5/12, "feet"),
  42967. weight: math.unit(825, "lb"),
  42968. name: "Side",
  42969. image: {
  42970. source: "./media/characters/cobalt-charizard/side.svg",
  42971. extra: 1348/1257,
  42972. bottom: 58/1406
  42973. }
  42974. },
  42975. gMax: {
  42976. height: math.unit(134 + 11/12, "feet"),
  42977. name: "G-Max",
  42978. image: {
  42979. source: "./media/characters/cobalt-charizard/g-max.svg",
  42980. extra: 1835/1541,
  42981. bottom: 151/1986
  42982. }
  42983. },
  42984. },
  42985. [
  42986. {
  42987. name: "Normal",
  42988. height: math.unit(8 + 5/12, "feet"),
  42989. default: true
  42990. },
  42991. ]
  42992. ))
  42993. characterMakers.push(() => makeCharacter(
  42994. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42995. {
  42996. front: {
  42997. height: math.unit(6 + 3/12, "feet"),
  42998. weight: math.unit(210, "lb"),
  42999. name: "Front",
  43000. image: {
  43001. source: "./media/characters/stella/front.svg",
  43002. extra: 3549/3335,
  43003. bottom: 51/3600
  43004. }
  43005. },
  43006. },
  43007. [
  43008. {
  43009. name: "Normal",
  43010. height: math.unit(6 + 3/12, "feet"),
  43011. default: true
  43012. },
  43013. ]
  43014. ))
  43015. characterMakers.push(() => makeCharacter(
  43016. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43017. {
  43018. front: {
  43019. height: math.unit(5, "feet"),
  43020. weight: math.unit(90, "lb"),
  43021. name: "Front",
  43022. image: {
  43023. source: "./media/characters/riley-bishop/front.svg",
  43024. extra: 1450/1428,
  43025. bottom: 152/1602
  43026. }
  43027. },
  43028. },
  43029. [
  43030. {
  43031. name: "Normal",
  43032. height: math.unit(5, "feet"),
  43033. default: true
  43034. },
  43035. ]
  43036. ))
  43037. characterMakers.push(() => makeCharacter(
  43038. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43039. {
  43040. side: {
  43041. height: math.unit(8 + 2/12, "feet"),
  43042. weight: math.unit(500, "kg"),
  43043. name: "Side",
  43044. image: {
  43045. source: "./media/characters/theo-arcanine/side.svg",
  43046. extra: 1342/1074,
  43047. bottom: 111/1453
  43048. }
  43049. },
  43050. },
  43051. [
  43052. {
  43053. name: "Normal",
  43054. height: math.unit(8 + 2/12, "feet"),
  43055. default: true
  43056. },
  43057. ]
  43058. ))
  43059. characterMakers.push(() => makeCharacter(
  43060. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43061. {
  43062. front: {
  43063. height: math.unit(4, "feet"),
  43064. name: "Front",
  43065. image: {
  43066. source: "./media/characters/kali/front.svg",
  43067. extra: 1921/1357,
  43068. bottom: 70/1991
  43069. }
  43070. },
  43071. },
  43072. [
  43073. {
  43074. name: "Normal",
  43075. height: math.unit(4, "feet"),
  43076. default: true
  43077. },
  43078. {
  43079. name: "Macro",
  43080. height: math.unit(32, "meters")
  43081. },
  43082. {
  43083. name: "Macro+",
  43084. height: math.unit(150, "meters")
  43085. },
  43086. {
  43087. name: "Megamacro",
  43088. height: math.unit(7500, "meters")
  43089. },
  43090. {
  43091. name: "Megamacro+",
  43092. height: math.unit(80, "kilometers")
  43093. },
  43094. ]
  43095. ))
  43096. characterMakers.push(() => makeCharacter(
  43097. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43098. {
  43099. side: {
  43100. height: math.unit(5 + 11/12, "feet"),
  43101. weight: math.unit(236, "lb"),
  43102. name: "Side",
  43103. image: {
  43104. source: "./media/characters/gapp/side.svg",
  43105. extra: 775/340,
  43106. bottom: 58/833
  43107. }
  43108. },
  43109. mouth: {
  43110. height: math.unit(2.98, "feet"),
  43111. name: "Mouth",
  43112. image: {
  43113. source: "./media/characters/gapp/mouth.svg"
  43114. }
  43115. },
  43116. },
  43117. [
  43118. {
  43119. name: "Normal",
  43120. height: math.unit(5 + 1/12, "feet"),
  43121. default: true
  43122. },
  43123. ]
  43124. ))
  43125. characterMakers.push(() => makeCharacter(
  43126. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43127. {
  43128. front: {
  43129. height: math.unit(6, "feet"),
  43130. name: "Front",
  43131. image: {
  43132. source: "./media/characters/persephone/front.svg",
  43133. extra: 1895/1717,
  43134. bottom: 96/1991
  43135. }
  43136. },
  43137. back: {
  43138. height: math.unit(6, "feet"),
  43139. name: "Back",
  43140. image: {
  43141. source: "./media/characters/persephone/back.svg",
  43142. extra: 1868/1679,
  43143. bottom: 26/1894
  43144. }
  43145. },
  43146. casual: {
  43147. height: math.unit(6, "feet"),
  43148. name: "Casual",
  43149. image: {
  43150. source: "./media/characters/persephone/casual.svg",
  43151. extra: 1713/1541,
  43152. bottom: 76/1789
  43153. }
  43154. },
  43155. },
  43156. [
  43157. {
  43158. name: "Human Size",
  43159. height: math.unit(6, "feet")
  43160. },
  43161. {
  43162. name: "Big Steppy",
  43163. height: math.unit(600, "meters"),
  43164. default: true
  43165. },
  43166. {
  43167. name: "Galaxy Brain",
  43168. height: math.unit(1, "zettameter")
  43169. },
  43170. ]
  43171. ))
  43172. characterMakers.push(() => makeCharacter(
  43173. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43174. {
  43175. front: {
  43176. height: math.unit(1.85, "meters"),
  43177. name: "Front",
  43178. image: {
  43179. source: "./media/characters/riley-foxthing/front.svg",
  43180. extra: 1495/1354,
  43181. bottom: 122/1617
  43182. }
  43183. },
  43184. frontAlt: {
  43185. height: math.unit(1.85, "meters"),
  43186. name: "Front (Alt)",
  43187. image: {
  43188. source: "./media/characters/riley-foxthing/front-alt.svg",
  43189. extra: 1572/1389,
  43190. bottom: 116/1688
  43191. }
  43192. },
  43193. },
  43194. [
  43195. {
  43196. name: "Normal Sized",
  43197. height: math.unit(1.85, "meters"),
  43198. default: true
  43199. },
  43200. {
  43201. name: "Quite Sizable",
  43202. height: math.unit(5, "meters")
  43203. },
  43204. {
  43205. name: "Rather Large",
  43206. height: math.unit(20, "meters")
  43207. },
  43208. {
  43209. name: "Macro",
  43210. height: math.unit(450, "meters")
  43211. },
  43212. {
  43213. name: "Giga",
  43214. height: math.unit(5, "km")
  43215. },
  43216. ]
  43217. ))
  43218. characterMakers.push(() => makeCharacter(
  43219. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43220. {
  43221. front: {
  43222. height: math.unit(6, "feet"),
  43223. weight: math.unit(200, "lb"),
  43224. name: "Front",
  43225. image: {
  43226. source: "./media/characters/blizzard/front.svg",
  43227. extra: 1136/990,
  43228. bottom: 136/1272
  43229. }
  43230. },
  43231. back: {
  43232. height: math.unit(6, "feet"),
  43233. weight: math.unit(200, "lb"),
  43234. name: "Back",
  43235. image: {
  43236. source: "./media/characters/blizzard/back.svg",
  43237. extra: 1175/1034,
  43238. bottom: 97/1272
  43239. }
  43240. },
  43241. sitting: {
  43242. height: math.unit(3.725, "feet"),
  43243. weight: math.unit(200, "lb"),
  43244. name: "Sitting",
  43245. image: {
  43246. source: "./media/characters/blizzard/sitting.svg",
  43247. extra: 581/485,
  43248. bottom: 90/671
  43249. }
  43250. },
  43251. frontWizard: {
  43252. height: math.unit(7.9, "feet"),
  43253. weight: math.unit(200, "lb"),
  43254. name: "Front (Wizard)",
  43255. image: {
  43256. source: "./media/characters/blizzard/front-wizard.svg"
  43257. }
  43258. },
  43259. backWizard: {
  43260. height: math.unit(7.9, "feet"),
  43261. weight: math.unit(200, "lb"),
  43262. name: "Back (Wizard)",
  43263. image: {
  43264. source: "./media/characters/blizzard/back-wizard.svg"
  43265. }
  43266. },
  43267. frontNsfw: {
  43268. height: math.unit(6, "feet"),
  43269. weight: math.unit(200, "lb"),
  43270. name: "Front (NSFW)",
  43271. image: {
  43272. source: "./media/characters/blizzard/front-nsfw.svg",
  43273. extra: 1136/990,
  43274. bottom: 136/1272
  43275. }
  43276. },
  43277. backNsfw: {
  43278. height: math.unit(6, "feet"),
  43279. weight: math.unit(200, "lb"),
  43280. name: "Back (NSFW)",
  43281. image: {
  43282. source: "./media/characters/blizzard/back-nsfw.svg",
  43283. extra: 1175/1034,
  43284. bottom: 97/1272
  43285. }
  43286. },
  43287. sittingNsfw: {
  43288. height: math.unit(3.725, "feet"),
  43289. weight: math.unit(200, "lb"),
  43290. name: "Sitting (NSFW)",
  43291. image: {
  43292. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43293. extra: 581/485,
  43294. bottom: 90/671
  43295. }
  43296. },
  43297. wizardFrontNsfw: {
  43298. height: math.unit(7.9, "feet"),
  43299. weight: math.unit(200, "lb"),
  43300. name: "Wizard (Front, NSFW)",
  43301. image: {
  43302. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43303. }
  43304. },
  43305. },
  43306. [
  43307. {
  43308. name: "Normal",
  43309. height: math.unit(6, "feet"),
  43310. default: true
  43311. },
  43312. ]
  43313. ))
  43314. characterMakers.push(() => makeCharacter(
  43315. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43316. {
  43317. front: {
  43318. height: math.unit(5 + 2/12, "feet"),
  43319. name: "Front",
  43320. image: {
  43321. source: "./media/characters/lumi/front.svg",
  43322. extra: 1328/1268,
  43323. bottom: 103/1431
  43324. }
  43325. },
  43326. back: {
  43327. height: math.unit(5 + 2/12, "feet"),
  43328. name: "Back",
  43329. image: {
  43330. source: "./media/characters/lumi/back.svg",
  43331. extra: 1381/1327,
  43332. bottom: 43/1424
  43333. }
  43334. },
  43335. },
  43336. [
  43337. {
  43338. name: "Normal",
  43339. height: math.unit(5 + 2/12, "feet"),
  43340. default: true
  43341. },
  43342. ]
  43343. ))
  43344. characterMakers.push(() => makeCharacter(
  43345. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43346. {
  43347. front: {
  43348. height: math.unit(5 + 9/12, "feet"),
  43349. name: "Front",
  43350. image: {
  43351. source: "./media/characters/aliya-cotton/front.svg",
  43352. extra: 577/564,
  43353. bottom: 29/606
  43354. }
  43355. },
  43356. },
  43357. [
  43358. {
  43359. name: "Normal",
  43360. height: math.unit(5 + 9/12, "feet"),
  43361. default: true
  43362. },
  43363. ]
  43364. ))
  43365. characterMakers.push(() => makeCharacter(
  43366. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43367. {
  43368. front: {
  43369. height: math.unit(2.7, "meters"),
  43370. weight: math.unit(25000, "lb"),
  43371. name: "Front",
  43372. image: {
  43373. source: "./media/characters/noah-luxray/front.svg",
  43374. extra: 1644/825,
  43375. bottom: 339/1983
  43376. }
  43377. },
  43378. side: {
  43379. height: math.unit(2.97, "meters"),
  43380. weight: math.unit(25000, "lb"),
  43381. name: "Side",
  43382. image: {
  43383. source: "./media/characters/noah-luxray/side.svg",
  43384. extra: 1319/650,
  43385. bottom: 163/1482
  43386. }
  43387. },
  43388. dick: {
  43389. height: math.unit(7.4, "feet"),
  43390. weight: math.unit(2500, "lb"),
  43391. name: "Dick",
  43392. image: {
  43393. source: "./media/characters/noah-luxray/dick.svg"
  43394. }
  43395. },
  43396. dickAlt: {
  43397. height: math.unit(10.83, "feet"),
  43398. weight: math.unit(2500, "lb"),
  43399. name: "Dick-alt",
  43400. image: {
  43401. source: "./media/characters/noah-luxray/dick-alt.svg"
  43402. }
  43403. },
  43404. },
  43405. [
  43406. {
  43407. name: "BIG",
  43408. height: math.unit(2.7, "meters"),
  43409. default: true
  43410. },
  43411. ]
  43412. ))
  43413. characterMakers.push(() => makeCharacter(
  43414. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43415. {
  43416. standing: {
  43417. height: math.unit(183, "cm"),
  43418. weight: math.unit(68, "kg"),
  43419. name: "Standing",
  43420. image: {
  43421. source: "./media/characters/arion/standing.svg",
  43422. extra: 1869/1807,
  43423. bottom: 93/1962
  43424. }
  43425. },
  43426. reclining: {
  43427. height: math.unit(70.5, "cm"),
  43428. weight: math.unit(68, "lb"),
  43429. name: "Reclining",
  43430. image: {
  43431. source: "./media/characters/arion/reclining.svg",
  43432. extra: 937/870,
  43433. bottom: 63/1000
  43434. }
  43435. },
  43436. },
  43437. [
  43438. {
  43439. name: "Colossus Size, Low",
  43440. height: math.unit(33, "meters"),
  43441. default: true
  43442. },
  43443. {
  43444. name: "Colossus Size, Mid",
  43445. height: math.unit(52, "meters")
  43446. },
  43447. {
  43448. name: "Colossus Size, High",
  43449. height: math.unit(60, "meters")
  43450. },
  43451. {
  43452. name: "Titan Size, Low",
  43453. height: math.unit(91, "meters"),
  43454. },
  43455. {
  43456. name: "Titan Size, Mid",
  43457. height: math.unit(122, "meters")
  43458. },
  43459. {
  43460. name: "Titan Size, High",
  43461. height: math.unit(162, "meters")
  43462. },
  43463. ]
  43464. ))
  43465. characterMakers.push(() => makeCharacter(
  43466. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43467. {
  43468. front: {
  43469. height: math.unit(53, "meters"),
  43470. name: "Front",
  43471. image: {
  43472. source: "./media/characters/stellar-marbey/front.svg",
  43473. extra: 1913/1805,
  43474. bottom: 92/2005
  43475. }
  43476. },
  43477. back: {
  43478. height: math.unit(53, "meters"),
  43479. name: "Back",
  43480. image: {
  43481. source: "./media/characters/stellar-marbey/back.svg",
  43482. extra: 1960/1851,
  43483. bottom: 28/1988
  43484. }
  43485. },
  43486. mouth: {
  43487. height: math.unit(3.5, "meters"),
  43488. name: "Mouth",
  43489. image: {
  43490. source: "./media/characters/stellar-marbey/mouth.svg"
  43491. }
  43492. },
  43493. },
  43494. [
  43495. {
  43496. name: "Macro",
  43497. height: math.unit(53, "meters"),
  43498. default: true
  43499. },
  43500. ]
  43501. ))
  43502. characterMakers.push(() => makeCharacter(
  43503. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43504. {
  43505. front: {
  43506. height: math.unit(8 + 1/12, "feet"),
  43507. weight: math.unit(233, "lb"),
  43508. name: "Front",
  43509. image: {
  43510. source: "./media/characters/matsu/front.svg",
  43511. extra: 832/772,
  43512. bottom: 40/872
  43513. }
  43514. },
  43515. back: {
  43516. height: math.unit(8 + 1/12, "feet"),
  43517. weight: math.unit(233, "lb"),
  43518. name: "Back",
  43519. image: {
  43520. source: "./media/characters/matsu/back.svg",
  43521. extra: 839/780,
  43522. bottom: 47/886
  43523. }
  43524. },
  43525. },
  43526. [
  43527. {
  43528. name: "Normal",
  43529. height: math.unit(8 + 1/12, "feet"),
  43530. default: true
  43531. },
  43532. ]
  43533. ))
  43534. characterMakers.push(() => makeCharacter(
  43535. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43536. {
  43537. front: {
  43538. height: math.unit(4, "feet"),
  43539. weight: math.unit(148, "lb"),
  43540. name: "Front",
  43541. image: {
  43542. source: "./media/characters/thiz/front.svg",
  43543. extra: 1913/1748,
  43544. bottom: 62/1975
  43545. }
  43546. },
  43547. },
  43548. [
  43549. {
  43550. name: "Normal",
  43551. height: math.unit(4, "feet"),
  43552. default: true
  43553. },
  43554. ]
  43555. ))
  43556. characterMakers.push(() => makeCharacter(
  43557. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43558. {
  43559. front: {
  43560. height: math.unit(7 + 6/12, "feet"),
  43561. weight: math.unit(267, "lb"),
  43562. name: "Front",
  43563. image: {
  43564. source: "./media/characters/marcel/front.svg",
  43565. extra: 1221/1096,
  43566. bottom: 76/1297
  43567. }
  43568. },
  43569. },
  43570. [
  43571. {
  43572. name: "Normal",
  43573. height: math.unit(7 + 6/12, "feet"),
  43574. default: true
  43575. },
  43576. ]
  43577. ))
  43578. characterMakers.push(() => makeCharacter(
  43579. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43580. {
  43581. side: {
  43582. height: math.unit(42, "meters"),
  43583. name: "Side",
  43584. image: {
  43585. source: "./media/characters/flake/side.svg",
  43586. extra: 1525/1306,
  43587. bottom: 209/1734
  43588. }
  43589. },
  43590. },
  43591. [
  43592. {
  43593. name: "Normal",
  43594. height: math.unit(42, "meters"),
  43595. default: true
  43596. },
  43597. ]
  43598. ))
  43599. characterMakers.push(() => makeCharacter(
  43600. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43601. {
  43602. dressed: {
  43603. height: math.unit(6 + 4/12, "feet"),
  43604. weight: math.unit(520, "lb"),
  43605. name: "Dressed",
  43606. image: {
  43607. source: "./media/characters/someonne/dressed.svg",
  43608. extra: 1020/1010,
  43609. bottom: 178/1198
  43610. }
  43611. },
  43612. undressed: {
  43613. height: math.unit(6 + 4/12, "feet"),
  43614. weight: math.unit(520, "lb"),
  43615. name: "Undressed",
  43616. image: {
  43617. source: "./media/characters/someonne/undressed.svg",
  43618. extra: 1019/1014,
  43619. bottom: 169/1188
  43620. }
  43621. },
  43622. },
  43623. [
  43624. {
  43625. name: "Normal",
  43626. height: math.unit(6 + 4/12, "feet"),
  43627. default: true
  43628. },
  43629. ]
  43630. ))
  43631. characterMakers.push(() => makeCharacter(
  43632. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43633. {
  43634. front: {
  43635. height: math.unit(3, "feet"),
  43636. weight: math.unit(30, "lb"),
  43637. name: "Front",
  43638. image: {
  43639. source: "./media/characters/till/front.svg",
  43640. extra: 892/823,
  43641. bottom: 55/947
  43642. }
  43643. },
  43644. },
  43645. [
  43646. {
  43647. name: "Normal",
  43648. height: math.unit(3, "feet"),
  43649. default: true
  43650. },
  43651. ]
  43652. ))
  43653. characterMakers.push(() => makeCharacter(
  43654. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43655. {
  43656. front: {
  43657. height: math.unit(9 + 8/12, "feet"),
  43658. weight: math.unit(800, "lb"),
  43659. name: "Front",
  43660. image: {
  43661. source: "./media/characters/sydney-heki/front.svg",
  43662. extra: 1360/1300,
  43663. bottom: 22/1382
  43664. }
  43665. },
  43666. back: {
  43667. height: math.unit(9 + 8/12, "feet"),
  43668. weight: math.unit(800, "lb"),
  43669. name: "Back",
  43670. image: {
  43671. source: "./media/characters/sydney-heki/back.svg",
  43672. extra: 1356/1293,
  43673. bottom: 12/1368
  43674. }
  43675. },
  43676. frontDressed: {
  43677. height: math.unit(9 + 8/12, "feet"),
  43678. weight: math.unit(800, "lb"),
  43679. name: "Front-dressed",
  43680. image: {
  43681. source: "./media/characters/sydney-heki/front-dressed.svg",
  43682. extra: 1360/1300,
  43683. bottom: 22/1382
  43684. }
  43685. },
  43686. },
  43687. [
  43688. {
  43689. name: "Normal",
  43690. height: math.unit(9 + 8/12, "feet"),
  43691. default: true
  43692. },
  43693. {
  43694. name: "Macro",
  43695. height: math.unit(500, "feet")
  43696. },
  43697. {
  43698. name: "Megamacro",
  43699. height: math.unit(3.6, "miles")
  43700. },
  43701. ]
  43702. ))
  43703. characterMakers.push(() => makeCharacter(
  43704. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43705. {
  43706. front: {
  43707. height: math.unit(200, "cm"),
  43708. weight: math.unit(250, "lb"),
  43709. name: "Front",
  43710. image: {
  43711. source: "./media/characters/fowler-karlsson/front.svg",
  43712. extra: 897/845,
  43713. bottom: 123/1020
  43714. }
  43715. },
  43716. back: {
  43717. height: math.unit(200, "cm"),
  43718. weight: math.unit(250, "lb"),
  43719. name: "Back",
  43720. image: {
  43721. source: "./media/characters/fowler-karlsson/back.svg",
  43722. extra: 999/944,
  43723. bottom: 26/1025
  43724. }
  43725. },
  43726. dick: {
  43727. height: math.unit(1.92, "feet"),
  43728. weight: math.unit(150, "lb"),
  43729. name: "Dick",
  43730. image: {
  43731. source: "./media/characters/fowler-karlsson/dick.svg"
  43732. }
  43733. },
  43734. },
  43735. [
  43736. {
  43737. name: "Normal",
  43738. height: math.unit(200, "cm"),
  43739. default: true
  43740. },
  43741. {
  43742. name: "Smaller Macro",
  43743. height: math.unit(90, "m")
  43744. },
  43745. {
  43746. name: "Macro",
  43747. height: math.unit(150, "m")
  43748. },
  43749. {
  43750. name: "Bigger Macro",
  43751. height: math.unit(300, "m")
  43752. },
  43753. ]
  43754. ))
  43755. characterMakers.push(() => makeCharacter(
  43756. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43757. {
  43758. side: {
  43759. height: math.unit(8 + 2/12, "feet"),
  43760. weight: math.unit(1, "tonne"),
  43761. name: "Side",
  43762. image: {
  43763. source: "./media/characters/rylide/side.svg",
  43764. extra: 1318/1034,
  43765. bottom: 106/1424
  43766. }
  43767. },
  43768. sitting: {
  43769. height: math.unit(303, "cm"),
  43770. weight: math.unit(1, "tonne"),
  43771. name: "Sitting",
  43772. image: {
  43773. source: "./media/characters/rylide/sitting.svg",
  43774. extra: 1303/1103,
  43775. bottom: 36/1339
  43776. }
  43777. },
  43778. },
  43779. [
  43780. {
  43781. name: "Normal",
  43782. height: math.unit(8 + 2/12, "feet"),
  43783. default: true
  43784. },
  43785. ]
  43786. ))
  43787. characterMakers.push(() => makeCharacter(
  43788. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43789. {
  43790. front: {
  43791. height: math.unit(5 + 10/12, "feet"),
  43792. weight: math.unit(160, "lb"),
  43793. name: "Front",
  43794. image: {
  43795. source: "./media/characters/pudask/front.svg",
  43796. extra: 1616/1590,
  43797. bottom: 161/1777
  43798. }
  43799. },
  43800. },
  43801. [
  43802. {
  43803. name: "Ferret Height",
  43804. height: math.unit(2 + 5/12, "feet")
  43805. },
  43806. {
  43807. name: "Canon Height",
  43808. height: math.unit(5 + 10/12, "feet"),
  43809. default: true
  43810. },
  43811. ]
  43812. ))
  43813. characterMakers.push(() => makeCharacter(
  43814. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43815. {
  43816. front: {
  43817. height: math.unit(3 + 6/12, "feet"),
  43818. weight: math.unit(60, "lb"),
  43819. name: "Front",
  43820. image: {
  43821. source: "./media/characters/ramita/front.svg",
  43822. extra: 1402/1232,
  43823. bottom: 62/1464
  43824. }
  43825. },
  43826. dressed: {
  43827. height: math.unit(3 + 6/12, "feet"),
  43828. weight: math.unit(60, "lb"),
  43829. name: "Dressed",
  43830. image: {
  43831. source: "./media/characters/ramita/dressed.svg",
  43832. extra: 1534/1249,
  43833. bottom: 50/1584
  43834. }
  43835. },
  43836. },
  43837. [
  43838. {
  43839. name: "Normal",
  43840. height: math.unit(3 + 6/12, "feet"),
  43841. default: true
  43842. },
  43843. ]
  43844. ))
  43845. characterMakers.push(() => makeCharacter(
  43846. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43847. {
  43848. front: {
  43849. height: math.unit(8, "feet"),
  43850. name: "Front",
  43851. image: {
  43852. source: "./media/characters/ark/front.svg",
  43853. extra: 772/693,
  43854. bottom: 45/817
  43855. }
  43856. },
  43857. },
  43858. [
  43859. {
  43860. name: "Normal",
  43861. height: math.unit(8, "feet"),
  43862. default: true
  43863. },
  43864. ]
  43865. ))
  43866. characterMakers.push(() => makeCharacter(
  43867. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43868. {
  43869. front: {
  43870. height: math.unit(6, "feet"),
  43871. weight: math.unit(250, "lb"),
  43872. volume: math.unit(5/8, "gallons"),
  43873. name: "Front",
  43874. image: {
  43875. source: "./media/characters/ludwig-horn/front.svg",
  43876. extra: 1782/1635,
  43877. bottom: 96/1878
  43878. }
  43879. },
  43880. back: {
  43881. height: math.unit(6, "feet"),
  43882. weight: math.unit(250, "lb"),
  43883. volume: math.unit(5/8, "gallons"),
  43884. name: "Back",
  43885. image: {
  43886. source: "./media/characters/ludwig-horn/back.svg",
  43887. extra: 1874/1729,
  43888. bottom: 27/1901
  43889. }
  43890. },
  43891. dick: {
  43892. height: math.unit(1.05, "feet"),
  43893. weight: math.unit(15, "lb"),
  43894. volume: math.unit(5/8, "gallons"),
  43895. name: "Dick",
  43896. image: {
  43897. source: "./media/characters/ludwig-horn/dick.svg"
  43898. }
  43899. },
  43900. },
  43901. [
  43902. {
  43903. name: "Small",
  43904. height: math.unit(6, "feet")
  43905. },
  43906. {
  43907. name: "Typical",
  43908. height: math.unit(12, "feet"),
  43909. default: true
  43910. },
  43911. {
  43912. name: "Building",
  43913. height: math.unit(80, "feet")
  43914. },
  43915. {
  43916. name: "Town",
  43917. height: math.unit(800, "feet")
  43918. },
  43919. {
  43920. name: "Kingdom",
  43921. height: math.unit(80000, "feet")
  43922. },
  43923. {
  43924. name: "Planet",
  43925. height: math.unit(8000000, "feet")
  43926. },
  43927. {
  43928. name: "Universe",
  43929. height: math.unit(8000000000, "feet")
  43930. },
  43931. {
  43932. name: "Transcended",
  43933. height: math.unit(8e27, "feet")
  43934. },
  43935. ]
  43936. ))
  43937. characterMakers.push(() => makeCharacter(
  43938. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43939. {
  43940. front: {
  43941. height: math.unit(5, "feet"),
  43942. weight: math.unit(50, "kg"),
  43943. name: "Front",
  43944. image: {
  43945. source: "./media/characters/biot-avery/front.svg",
  43946. extra: 1295/1232,
  43947. bottom: 86/1381
  43948. }
  43949. },
  43950. },
  43951. [
  43952. {
  43953. name: "Normal",
  43954. height: math.unit(5, "feet"),
  43955. default: true
  43956. },
  43957. ]
  43958. ))
  43959. characterMakers.push(() => makeCharacter(
  43960. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43961. {
  43962. front: {
  43963. height: math.unit(6, "feet"),
  43964. name: "Front",
  43965. image: {
  43966. source: "./media/characters/kitsune-kiro/front.svg",
  43967. extra: 1270/1158,
  43968. bottom: 42/1312
  43969. }
  43970. },
  43971. frontAlt: {
  43972. height: math.unit(6, "feet"),
  43973. name: "Front-alt",
  43974. image: {
  43975. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43976. extra: 1130/1081,
  43977. bottom: 36/1166
  43978. }
  43979. },
  43980. },
  43981. [
  43982. {
  43983. name: "Smol",
  43984. height: math.unit(3, "feet")
  43985. },
  43986. {
  43987. name: "Normal",
  43988. height: math.unit(6, "feet"),
  43989. default: true
  43990. },
  43991. ]
  43992. ))
  43993. characterMakers.push(() => makeCharacter(
  43994. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43995. {
  43996. front: {
  43997. height: math.unit(6, "feet"),
  43998. weight: math.unit(125, "lb"),
  43999. name: "Front",
  44000. image: {
  44001. source: "./media/characters/jack-thatcher/front.svg",
  44002. extra: 1474/1370,
  44003. bottom: 26/1500
  44004. }
  44005. },
  44006. back: {
  44007. height: math.unit(6, "feet"),
  44008. weight: math.unit(125, "lb"),
  44009. name: "Back",
  44010. image: {
  44011. source: "./media/characters/jack-thatcher/back.svg",
  44012. extra: 1489/1384,
  44013. bottom: 18/1507
  44014. }
  44015. },
  44016. },
  44017. [
  44018. {
  44019. name: "Normal",
  44020. height: math.unit(6, "feet"),
  44021. default: true
  44022. },
  44023. {
  44024. name: "Macro",
  44025. height: math.unit(75, "feet")
  44026. },
  44027. {
  44028. name: "Macro-er",
  44029. height: math.unit(250, "feet")
  44030. },
  44031. ]
  44032. ))
  44033. characterMakers.push(() => makeCharacter(
  44034. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44035. {
  44036. front: {
  44037. height: math.unit(7, "feet"),
  44038. weight: math.unit(110, "kg"),
  44039. name: "Front",
  44040. image: {
  44041. source: "./media/characters/max-hyper/front.svg",
  44042. extra: 1969/1881,
  44043. bottom: 49/2018
  44044. }
  44045. },
  44046. },
  44047. [
  44048. {
  44049. name: "Normal",
  44050. height: math.unit(7, "feet"),
  44051. default: true
  44052. },
  44053. ]
  44054. ))
  44055. characterMakers.push(() => makeCharacter(
  44056. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44057. {
  44058. front: {
  44059. height: math.unit(5 + 5/12, "feet"),
  44060. weight: math.unit(160, "lb"),
  44061. name: "Front",
  44062. image: {
  44063. source: "./media/characters/spook/front.svg",
  44064. extra: 794/791,
  44065. bottom: 54/848
  44066. }
  44067. },
  44068. back: {
  44069. height: math.unit(5 + 5/12, "feet"),
  44070. weight: math.unit(160, "lb"),
  44071. name: "Back",
  44072. image: {
  44073. source: "./media/characters/spook/back.svg",
  44074. extra: 812/798,
  44075. bottom: 32/844
  44076. }
  44077. },
  44078. },
  44079. [
  44080. {
  44081. name: "Normal",
  44082. height: math.unit(5 + 5/12, "feet"),
  44083. default: true
  44084. },
  44085. ]
  44086. ))
  44087. characterMakers.push(() => makeCharacter(
  44088. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44089. {
  44090. front: {
  44091. height: math.unit(18, "feet"),
  44092. name: "Front",
  44093. image: {
  44094. source: "./media/characters/xeaduulix/front.svg",
  44095. extra: 1380/1166,
  44096. bottom: 110/1490
  44097. }
  44098. },
  44099. back: {
  44100. height: math.unit(18, "feet"),
  44101. name: "Back",
  44102. image: {
  44103. source: "./media/characters/xeaduulix/back.svg",
  44104. extra: 1592/1170,
  44105. bottom: 128/1720
  44106. }
  44107. },
  44108. frontNsfw: {
  44109. height: math.unit(18, "feet"),
  44110. name: "Front (NSFW)",
  44111. image: {
  44112. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44113. extra: 1380/1166,
  44114. bottom: 110/1490
  44115. }
  44116. },
  44117. backNsfw: {
  44118. height: math.unit(18, "feet"),
  44119. name: "Back (NSFW)",
  44120. image: {
  44121. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44122. extra: 1592/1170,
  44123. bottom: 128/1720
  44124. }
  44125. },
  44126. },
  44127. [
  44128. {
  44129. name: "Normal",
  44130. height: math.unit(18, "feet"),
  44131. default: true
  44132. },
  44133. ]
  44134. ))
  44135. characterMakers.push(() => makeCharacter(
  44136. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44137. {
  44138. spreadWings: {
  44139. height: math.unit(20, "feet"),
  44140. name: "Spread Wings",
  44141. image: {
  44142. source: "./media/characters/fledge/spread-wings.svg",
  44143. extra: 693/635,
  44144. bottom: 26/719
  44145. }
  44146. },
  44147. front: {
  44148. height: math.unit(20, "feet"),
  44149. name: "Front",
  44150. image: {
  44151. source: "./media/characters/fledge/front.svg",
  44152. extra: 684/637,
  44153. bottom: 18/702
  44154. }
  44155. },
  44156. frontAlt: {
  44157. height: math.unit(20, "feet"),
  44158. name: "Front (Alt)",
  44159. image: {
  44160. source: "./media/characters/fledge/front-alt.svg",
  44161. extra: 708/664,
  44162. bottom: 13/721
  44163. }
  44164. },
  44165. back: {
  44166. height: math.unit(20, "feet"),
  44167. name: "Back",
  44168. image: {
  44169. source: "./media/characters/fledge/back.svg",
  44170. extra: 718/634,
  44171. bottom: 22/740
  44172. }
  44173. },
  44174. head: {
  44175. height: math.unit(5.55, "feet"),
  44176. name: "Head",
  44177. image: {
  44178. source: "./media/characters/fledge/head.svg"
  44179. }
  44180. },
  44181. headAlt: {
  44182. height: math.unit(5.1, "feet"),
  44183. name: "Head (Alt)",
  44184. image: {
  44185. source: "./media/characters/fledge/head-alt.svg"
  44186. }
  44187. },
  44188. },
  44189. [
  44190. {
  44191. name: "Small",
  44192. height: math.unit(6 + 2/12, "feet")
  44193. },
  44194. {
  44195. name: "Big",
  44196. height: math.unit(20, "feet"),
  44197. default: true
  44198. },
  44199. {
  44200. name: "Giant",
  44201. height: math.unit(100, "feet")
  44202. },
  44203. {
  44204. name: "Macro",
  44205. height: math.unit(200, "feet")
  44206. },
  44207. ]
  44208. ))
  44209. characterMakers.push(() => makeCharacter(
  44210. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44211. {
  44212. front: {
  44213. height: math.unit(1, "meter"),
  44214. name: "Front",
  44215. image: {
  44216. source: "./media/characters/atlas-morenai/front.svg",
  44217. extra: 1275/1043,
  44218. bottom: 19/1294
  44219. }
  44220. },
  44221. back: {
  44222. height: math.unit(1, "meter"),
  44223. name: "Back",
  44224. image: {
  44225. source: "./media/characters/atlas-morenai/back.svg",
  44226. extra: 1141/1001,
  44227. bottom: 25/1166
  44228. }
  44229. },
  44230. },
  44231. [
  44232. {
  44233. name: "Normal",
  44234. height: math.unit(1, "meter"),
  44235. default: true
  44236. },
  44237. {
  44238. name: "Magic-Infused",
  44239. height: math.unit(5, "meters")
  44240. },
  44241. ]
  44242. ))
  44243. characterMakers.push(() => makeCharacter(
  44244. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44245. {
  44246. front: {
  44247. height: math.unit(5, "meters"),
  44248. name: "Front",
  44249. image: {
  44250. source: "./media/characters/cintia/front.svg",
  44251. extra: 1312/1228,
  44252. bottom: 38/1350
  44253. }
  44254. },
  44255. back: {
  44256. height: math.unit(5, "meters"),
  44257. name: "Back",
  44258. image: {
  44259. source: "./media/characters/cintia/back.svg",
  44260. extra: 1260/1166,
  44261. bottom: 98/1358
  44262. }
  44263. },
  44264. frontDick: {
  44265. height: math.unit(5, "meters"),
  44266. name: "Front (Dick)",
  44267. image: {
  44268. source: "./media/characters/cintia/front-dick.svg",
  44269. extra: 1312/1228,
  44270. bottom: 38/1350
  44271. }
  44272. },
  44273. backDick: {
  44274. height: math.unit(5, "meters"),
  44275. name: "Back (Dick)",
  44276. image: {
  44277. source: "./media/characters/cintia/back-dick.svg",
  44278. extra: 1260/1166,
  44279. bottom: 98/1358
  44280. }
  44281. },
  44282. bust: {
  44283. height: math.unit(1.97, "meters"),
  44284. name: "Bust",
  44285. image: {
  44286. source: "./media/characters/cintia/bust.svg",
  44287. extra: 617/565,
  44288. bottom: 0/617
  44289. }
  44290. },
  44291. },
  44292. [
  44293. {
  44294. name: "Normal",
  44295. height: math.unit(5, "meters"),
  44296. default: true
  44297. },
  44298. ]
  44299. ))
  44300. characterMakers.push(() => makeCharacter(
  44301. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44302. {
  44303. side: {
  44304. height: math.unit(100, "feet"),
  44305. name: "Side",
  44306. image: {
  44307. source: "./media/characters/denora/side.svg",
  44308. extra: 875/803,
  44309. bottom: 9/884
  44310. }
  44311. },
  44312. },
  44313. [
  44314. {
  44315. name: "Standard",
  44316. height: math.unit(100, "feet"),
  44317. default: true
  44318. },
  44319. {
  44320. name: "Grand",
  44321. height: math.unit(1000, "feet")
  44322. },
  44323. {
  44324. name: "Conquering",
  44325. height: math.unit(10000, "feet")
  44326. },
  44327. ]
  44328. ))
  44329. characterMakers.push(() => makeCharacter(
  44330. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44331. {
  44332. dressed: {
  44333. height: math.unit(8 + 5/12, "feet"),
  44334. weight: math.unit(700, "lb"),
  44335. name: "Dressed",
  44336. image: {
  44337. source: "./media/characters/kiva/dressed.svg",
  44338. extra: 1102/1055,
  44339. bottom: 60/1162
  44340. }
  44341. },
  44342. nude: {
  44343. height: math.unit(8 + 5/12, "feet"),
  44344. weight: math.unit(700, "lb"),
  44345. name: "Nude",
  44346. image: {
  44347. source: "./media/characters/kiva/nude.svg",
  44348. extra: 1102/1055,
  44349. bottom: 60/1162
  44350. }
  44351. },
  44352. },
  44353. [
  44354. {
  44355. name: "Base Height",
  44356. height: math.unit(8 + 5/12, "feet"),
  44357. default: true
  44358. },
  44359. {
  44360. name: "Macro",
  44361. height: math.unit(100, "feet")
  44362. },
  44363. {
  44364. name: "Max",
  44365. height: math.unit(3280, "feet")
  44366. },
  44367. ]
  44368. ))
  44369. characterMakers.push(() => makeCharacter(
  44370. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44371. {
  44372. front: {
  44373. height: math.unit(6 + 8/12, "feet"),
  44374. weight: math.unit(250, "lb"),
  44375. name: "Front",
  44376. image: {
  44377. source: "./media/characters/ztragon/front.svg",
  44378. extra: 1825/1684,
  44379. bottom: 98/1923
  44380. }
  44381. },
  44382. },
  44383. [
  44384. {
  44385. name: "Normal",
  44386. height: math.unit(6 + 8/12, "feet"),
  44387. default: true
  44388. },
  44389. {
  44390. name: "Macro",
  44391. height: math.unit(80, "feet")
  44392. },
  44393. ]
  44394. ))
  44395. characterMakers.push(() => makeCharacter(
  44396. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44397. {
  44398. front: {
  44399. height: math.unit(10.4, "feet"),
  44400. weight: math.unit(2, "tons"),
  44401. name: "Front",
  44402. image: {
  44403. source: "./media/characters/yesenia/front.svg",
  44404. extra: 1479/1474,
  44405. bottom: 233/1712
  44406. }
  44407. },
  44408. },
  44409. [
  44410. {
  44411. name: "Normal",
  44412. height: math.unit(10.4, "feet"),
  44413. default: true
  44414. },
  44415. ]
  44416. ))
  44417. characterMakers.push(() => makeCharacter(
  44418. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44419. {
  44420. normal: {
  44421. height: math.unit(6 + 1/12, "feet"),
  44422. weight: math.unit(180, "lb"),
  44423. name: "Normal",
  44424. image: {
  44425. source: "./media/characters/leanne-lycheborne/normal.svg",
  44426. extra: 1748/1660,
  44427. bottom: 98/1846
  44428. }
  44429. },
  44430. were: {
  44431. height: math.unit(12, "feet"),
  44432. weight: math.unit(1600, "lb"),
  44433. name: "Were",
  44434. image: {
  44435. source: "./media/characters/leanne-lycheborne/were.svg",
  44436. extra: 1485/1432,
  44437. bottom: 66/1551
  44438. }
  44439. },
  44440. },
  44441. [
  44442. {
  44443. name: "Normal",
  44444. height: math.unit(6 + 1/12, "feet"),
  44445. default: true
  44446. },
  44447. ]
  44448. ))
  44449. characterMakers.push(() => makeCharacter(
  44450. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44451. {
  44452. side: {
  44453. height: math.unit(13, "feet"),
  44454. name: "Side",
  44455. image: {
  44456. source: "./media/characters/kira-tyler/side.svg",
  44457. extra: 693/393,
  44458. bottom: 58/751
  44459. }
  44460. },
  44461. },
  44462. [
  44463. {
  44464. name: "Normal",
  44465. height: math.unit(13, "feet"),
  44466. default: true
  44467. },
  44468. ]
  44469. ))
  44470. characterMakers.push(() => makeCharacter(
  44471. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44472. {
  44473. front: {
  44474. height: math.unit(10.3, "feet"),
  44475. weight: math.unit(150, "lb"),
  44476. name: "Front",
  44477. image: {
  44478. source: "./media/characters/blaze/front.svg",
  44479. extra: 1378/1286,
  44480. bottom: 172/1550
  44481. }
  44482. },
  44483. },
  44484. [
  44485. {
  44486. name: "Normal",
  44487. height: math.unit(10.3, "feet"),
  44488. default: true
  44489. },
  44490. ]
  44491. ))
  44492. characterMakers.push(() => makeCharacter(
  44493. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44494. {
  44495. side: {
  44496. height: math.unit(2, "meters"),
  44497. weight: math.unit(400, "kg"),
  44498. name: "Side",
  44499. image: {
  44500. source: "./media/characters/anu/side.svg",
  44501. extra: 506/394,
  44502. bottom: 18/524
  44503. }
  44504. },
  44505. },
  44506. [
  44507. {
  44508. name: "Humanoid",
  44509. height: math.unit(2, "meters")
  44510. },
  44511. {
  44512. name: "Normal",
  44513. height: math.unit(5, "meters"),
  44514. default: true
  44515. },
  44516. ]
  44517. ))
  44518. characterMakers.push(() => makeCharacter(
  44519. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44520. {
  44521. front: {
  44522. height: math.unit(5 + 5/12, "feet"),
  44523. weight: math.unit(170, "lb"),
  44524. name: "Front",
  44525. image: {
  44526. source: "./media/characters/synx-the-lynx/front.svg",
  44527. extra: 1893/1745,
  44528. bottom: 17/1910
  44529. }
  44530. },
  44531. side: {
  44532. height: math.unit(5 + 5/12, "feet"),
  44533. weight: math.unit(170, "lb"),
  44534. name: "Side",
  44535. image: {
  44536. source: "./media/characters/synx-the-lynx/side.svg",
  44537. extra: 1884/1740,
  44538. bottom: 39/1923
  44539. }
  44540. },
  44541. back: {
  44542. height: math.unit(5 + 5/12, "feet"),
  44543. weight: math.unit(170, "lb"),
  44544. name: "Back",
  44545. image: {
  44546. source: "./media/characters/synx-the-lynx/back.svg",
  44547. extra: 1903/1755,
  44548. bottom: 14/1917
  44549. }
  44550. },
  44551. },
  44552. [
  44553. {
  44554. name: "Normal",
  44555. height: math.unit(5 + 5/12, "feet"),
  44556. default: true
  44557. },
  44558. ]
  44559. ))
  44560. characterMakers.push(() => makeCharacter(
  44561. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44562. {
  44563. back: {
  44564. height: math.unit(15, "feet"),
  44565. name: "Back",
  44566. image: {
  44567. source: "./media/characters/nadezda-fex/back.svg",
  44568. extra: 1695/1481,
  44569. bottom: 25/1720
  44570. }
  44571. },
  44572. },
  44573. [
  44574. {
  44575. name: "Normal",
  44576. height: math.unit(15, "feet"),
  44577. default: true
  44578. },
  44579. {
  44580. name: "Macro",
  44581. height: math.unit(2.5, "miles")
  44582. },
  44583. {
  44584. name: "Goddess",
  44585. height: math.unit(2, "multiverses")
  44586. },
  44587. ]
  44588. ))
  44589. characterMakers.push(() => makeCharacter(
  44590. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44591. {
  44592. front: {
  44593. height: math.unit(216, "cm"),
  44594. name: "Front",
  44595. image: {
  44596. source: "./media/characters/lev/front.svg",
  44597. extra: 1728/1670,
  44598. bottom: 82/1810
  44599. }
  44600. },
  44601. back: {
  44602. height: math.unit(216, "cm"),
  44603. name: "Back",
  44604. image: {
  44605. source: "./media/characters/lev/back.svg",
  44606. extra: 1738/1675,
  44607. bottom: 24/1762
  44608. }
  44609. },
  44610. dressed: {
  44611. height: math.unit(216, "cm"),
  44612. name: "Dressed",
  44613. image: {
  44614. source: "./media/characters/lev/dressed.svg",
  44615. extra: 1397/1351,
  44616. bottom: 73/1470
  44617. }
  44618. },
  44619. head: {
  44620. height: math.unit(0.51, "meter"),
  44621. name: "Head",
  44622. image: {
  44623. source: "./media/characters/lev/head.svg"
  44624. }
  44625. },
  44626. },
  44627. [
  44628. {
  44629. name: "Normal",
  44630. height: math.unit(216, "cm"),
  44631. default: true
  44632. },
  44633. {
  44634. name: "Relatively Macro",
  44635. height: math.unit(80, "meters")
  44636. },
  44637. {
  44638. name: "Megamacro",
  44639. height: math.unit(21600, "meters")
  44640. },
  44641. {
  44642. name: "Megamacro+",
  44643. height: math.unit(64800, "meters")
  44644. },
  44645. ]
  44646. ))
  44647. characterMakers.push(() => makeCharacter(
  44648. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44649. {
  44650. front: {
  44651. height: math.unit(2, "meters"),
  44652. weight: math.unit(80, "kg"),
  44653. name: "Front",
  44654. image: {
  44655. source: "./media/characters/moka/front.svg",
  44656. extra: 1337/1255,
  44657. bottom: 58/1395
  44658. }
  44659. },
  44660. },
  44661. [
  44662. {
  44663. name: "Micro",
  44664. height: math.unit(15, "cm")
  44665. },
  44666. {
  44667. name: "Normal",
  44668. height: math.unit(2, "meters"),
  44669. default: true
  44670. },
  44671. {
  44672. name: "Macro",
  44673. height: math.unit(20, "meters"),
  44674. },
  44675. ]
  44676. ))
  44677. characterMakers.push(() => makeCharacter(
  44678. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44679. {
  44680. front: {
  44681. height: math.unit(9, "feet"),
  44682. weight: math.unit(240, "lb"),
  44683. name: "Front",
  44684. image: {
  44685. source: "./media/characters/kuzco/front.svg",
  44686. extra: 1593/1487,
  44687. bottom: 32/1625
  44688. }
  44689. },
  44690. side: {
  44691. height: math.unit(9, "feet"),
  44692. weight: math.unit(240, "lb"),
  44693. name: "Side",
  44694. image: {
  44695. source: "./media/characters/kuzco/side.svg",
  44696. extra: 1575/1485,
  44697. bottom: 30/1605
  44698. }
  44699. },
  44700. back: {
  44701. height: math.unit(9, "feet"),
  44702. weight: math.unit(240, "lb"),
  44703. name: "Back",
  44704. image: {
  44705. source: "./media/characters/kuzco/back.svg",
  44706. extra: 1603/1514,
  44707. bottom: 14/1617
  44708. }
  44709. },
  44710. },
  44711. [
  44712. {
  44713. name: "Normal",
  44714. height: math.unit(9, "feet"),
  44715. default: true
  44716. },
  44717. ]
  44718. ))
  44719. characterMakers.push(() => makeCharacter(
  44720. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44721. {
  44722. side: {
  44723. height: math.unit(2, "meters"),
  44724. weight: math.unit(300, "kg"),
  44725. name: "Side",
  44726. image: {
  44727. source: "./media/characters/ceruleus/side.svg",
  44728. extra: 1068/974,
  44729. bottom: 126/1194
  44730. }
  44731. },
  44732. },
  44733. [
  44734. {
  44735. name: "Normal",
  44736. height: math.unit(16, "meters"),
  44737. default: true
  44738. },
  44739. ]
  44740. ))
  44741. characterMakers.push(() => makeCharacter(
  44742. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44743. {
  44744. front: {
  44745. height: math.unit(9, "feet"),
  44746. weight: math.unit(500, "kg"),
  44747. name: "Front",
  44748. image: {
  44749. source: "./media/characters/acouya/front.svg",
  44750. extra: 1660/1473,
  44751. bottom: 28/1688
  44752. }
  44753. },
  44754. },
  44755. [
  44756. {
  44757. name: "Normal",
  44758. height: math.unit(9, "feet"),
  44759. default: true
  44760. },
  44761. ]
  44762. ))
  44763. characterMakers.push(() => makeCharacter(
  44764. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44765. {
  44766. front: {
  44767. height: math.unit(5 + 6/12, "feet"),
  44768. weight: math.unit(195, "lb"),
  44769. name: "Front",
  44770. image: {
  44771. source: "./media/characters/vant/front.svg",
  44772. extra: 1396/1320,
  44773. bottom: 20/1416
  44774. }
  44775. },
  44776. back: {
  44777. height: math.unit(5 + 6/12, "feet"),
  44778. weight: math.unit(195, "lb"),
  44779. name: "Back",
  44780. image: {
  44781. source: "./media/characters/vant/back.svg",
  44782. extra: 1396/1320,
  44783. bottom: 20/1416
  44784. }
  44785. },
  44786. maw: {
  44787. height: math.unit(0.75, "feet"),
  44788. name: "Maw",
  44789. image: {
  44790. source: "./media/characters/vant/maw.svg"
  44791. }
  44792. },
  44793. paw: {
  44794. height: math.unit(1.07, "feet"),
  44795. name: "Paw",
  44796. image: {
  44797. source: "./media/characters/vant/paw.svg"
  44798. }
  44799. },
  44800. },
  44801. [
  44802. {
  44803. name: "Micro",
  44804. height: math.unit(0.25, "inches")
  44805. },
  44806. {
  44807. name: "Normal",
  44808. height: math.unit(5 + 6/12, "feet"),
  44809. default: true
  44810. },
  44811. {
  44812. name: "Macro",
  44813. height: math.unit(75, "feet")
  44814. },
  44815. ]
  44816. ))
  44817. characterMakers.push(() => makeCharacter(
  44818. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44819. {
  44820. front: {
  44821. height: math.unit(30, "meters"),
  44822. weight: math.unit(363, "tons"),
  44823. name: "Front",
  44824. image: {
  44825. source: "./media/characters/ahra/front.svg",
  44826. extra: 1914/1814,
  44827. bottom: 46/1960
  44828. }
  44829. },
  44830. },
  44831. [
  44832. {
  44833. name: "Macro",
  44834. height: math.unit(30, "meters"),
  44835. default: true
  44836. },
  44837. ]
  44838. ))
  44839. characterMakers.push(() => makeCharacter(
  44840. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44841. {
  44842. undressed: {
  44843. height: math.unit(2, "m"),
  44844. weight: math.unit(250, "kg"),
  44845. name: "Undressed",
  44846. image: {
  44847. source: "./media/characters/coriander/undressed.svg",
  44848. extra: 1757/1606,
  44849. bottom: 107/1864
  44850. }
  44851. },
  44852. dressed: {
  44853. height: math.unit(2, "m"),
  44854. weight: math.unit(250, "kg"),
  44855. name: "Dressed",
  44856. image: {
  44857. source: "./media/characters/coriander/dressed.svg",
  44858. extra: 1757/1606,
  44859. bottom: 107/1864
  44860. }
  44861. },
  44862. },
  44863. [
  44864. {
  44865. name: "Normal",
  44866. height: math.unit(4, "meters"),
  44867. default: true
  44868. },
  44869. {
  44870. name: "XL",
  44871. height: math.unit(6, "meters")
  44872. },
  44873. {
  44874. name: "XXL",
  44875. height: math.unit(8, "meters")
  44876. },
  44877. ]
  44878. ))
  44879. characterMakers.push(() => makeCharacter(
  44880. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44881. {
  44882. front: {
  44883. height: math.unit(6, "feet"),
  44884. name: "Front",
  44885. image: {
  44886. source: "./media/characters/syrinx/front.svg",
  44887. extra: 1557/1259,
  44888. bottom: 171/1728
  44889. }
  44890. },
  44891. },
  44892. [
  44893. {
  44894. name: "Normal",
  44895. height: math.unit(6 + 3/12, "feet"),
  44896. default: true
  44897. },
  44898. ]
  44899. ))
  44900. characterMakers.push(() => makeCharacter(
  44901. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44902. {
  44903. front: {
  44904. height: math.unit(11 + 6/12, "feet"),
  44905. weight: math.unit(1.5, "tons"),
  44906. name: "Front",
  44907. image: {
  44908. source: "./media/characters/bor/front.svg",
  44909. extra: 1189/1109,
  44910. bottom: 170/1359
  44911. }
  44912. },
  44913. },
  44914. [
  44915. {
  44916. name: "Normal",
  44917. height: math.unit(11 + 6/12, "feet"),
  44918. default: true
  44919. },
  44920. {
  44921. name: "Macro",
  44922. height: math.unit(32 + 9/12, "feet")
  44923. },
  44924. ]
  44925. ))
  44926. characterMakers.push(() => makeCharacter(
  44927. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44928. {
  44929. anthro: {
  44930. height: math.unit(9, "feet"),
  44931. weight: math.unit(2076, "lb"),
  44932. name: "Anthro",
  44933. image: {
  44934. source: "./media/characters/abacus/anthro.svg",
  44935. extra: 1540/1494,
  44936. bottom: 233/1773
  44937. }
  44938. },
  44939. pigeon: {
  44940. height: math.unit(1, "feet"),
  44941. name: "Pigeon",
  44942. image: {
  44943. source: "./media/characters/abacus/pigeon.svg",
  44944. extra: 528/525,
  44945. bottom: 46/574
  44946. }
  44947. },
  44948. },
  44949. [
  44950. {
  44951. name: "Normal",
  44952. height: math.unit(9, "feet"),
  44953. default: true
  44954. },
  44955. ]
  44956. ))
  44957. characterMakers.push(() => makeCharacter(
  44958. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44959. {
  44960. side: {
  44961. height: math.unit(6, "feet"),
  44962. name: "Side",
  44963. image: {
  44964. source: "./media/characters/delkhan/side.svg",
  44965. extra: 1884/1786,
  44966. bottom: 308/2192
  44967. }
  44968. },
  44969. head: {
  44970. height: math.unit(3.38, "feet"),
  44971. name: "Head",
  44972. image: {
  44973. source: "./media/characters/delkhan/head.svg"
  44974. }
  44975. },
  44976. },
  44977. [
  44978. {
  44979. name: "Normal",
  44980. height: math.unit(72, "feet"),
  44981. default: true
  44982. },
  44983. {
  44984. name: "Giant",
  44985. height: math.unit(172, "feet")
  44986. },
  44987. ]
  44988. ))
  44989. characterMakers.push(() => makeCharacter(
  44990. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44991. {
  44992. standing: {
  44993. height: math.unit(6, "feet"),
  44994. name: "Standing",
  44995. image: {
  44996. source: "./media/characters/euchidat/standing.svg",
  44997. extra: 1612/1553,
  44998. bottom: 116/1728
  44999. }
  45000. },
  45001. leaning: {
  45002. height: math.unit(6, "feet"),
  45003. name: "Leaning",
  45004. image: {
  45005. source: "./media/characters/euchidat/leaning.svg",
  45006. extra: 1719/1674,
  45007. bottom: 27/1746
  45008. }
  45009. },
  45010. },
  45011. [
  45012. {
  45013. name: "Normal",
  45014. height: math.unit(175, "feet"),
  45015. default: true
  45016. },
  45017. {
  45018. name: "Megamacro",
  45019. height: math.unit(190, "miles")
  45020. },
  45021. {
  45022. name: "Gigamacro",
  45023. height: math.unit(190000, "miles")
  45024. },
  45025. ]
  45026. ))
  45027. characterMakers.push(() => makeCharacter(
  45028. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45029. {
  45030. front: {
  45031. height: math.unit(6, "feet"),
  45032. weight: math.unit(150, "lb"),
  45033. name: "Front",
  45034. image: {
  45035. source: "./media/characters/rebecca-stack/front.svg",
  45036. extra: 1256/1201,
  45037. bottom: 18/1274
  45038. }
  45039. },
  45040. },
  45041. [
  45042. {
  45043. name: "Normal",
  45044. height: math.unit(5 + 8/12, "feet"),
  45045. default: true
  45046. },
  45047. {
  45048. name: "Demolitionist",
  45049. height: math.unit(200, "feet")
  45050. },
  45051. {
  45052. name: "Out of Control",
  45053. height: math.unit(2, "miles")
  45054. },
  45055. {
  45056. name: "Giga",
  45057. height: math.unit(7200, "miles")
  45058. },
  45059. ]
  45060. ))
  45061. characterMakers.push(() => makeCharacter(
  45062. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45063. {
  45064. front: {
  45065. height: math.unit(6, "feet"),
  45066. weight: math.unit(150, "lb"),
  45067. name: "Front",
  45068. image: {
  45069. source: "./media/characters/jenny-cartwright/front.svg",
  45070. extra: 1384/1376,
  45071. bottom: 58/1442
  45072. }
  45073. },
  45074. },
  45075. [
  45076. {
  45077. name: "Normal",
  45078. height: math.unit(6 + 7/12, "feet"),
  45079. default: true
  45080. },
  45081. {
  45082. name: "Librarian",
  45083. height: math.unit(55, "feet")
  45084. },
  45085. {
  45086. name: "Sightseer",
  45087. height: math.unit(50, "miles")
  45088. },
  45089. {
  45090. name: "Giga",
  45091. height: math.unit(30000, "miles")
  45092. },
  45093. ]
  45094. ))
  45095. characterMakers.push(() => makeCharacter(
  45096. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45097. {
  45098. nude: {
  45099. height: math.unit(8, "feet"),
  45100. weight: math.unit(225, "lb"),
  45101. name: "Nude",
  45102. image: {
  45103. source: "./media/characters/marvy/nude.svg",
  45104. extra: 1900/1683,
  45105. bottom: 89/1989
  45106. }
  45107. },
  45108. dressed: {
  45109. height: math.unit(8, "feet"),
  45110. weight: math.unit(225, "lb"),
  45111. name: "Dressed",
  45112. image: {
  45113. source: "./media/characters/marvy/dressed.svg",
  45114. extra: 1900/1683,
  45115. bottom: 89/1989
  45116. }
  45117. },
  45118. head: {
  45119. height: math.unit(2.85, "feet"),
  45120. name: "Head",
  45121. image: {
  45122. source: "./media/characters/marvy/head.svg"
  45123. }
  45124. },
  45125. },
  45126. [
  45127. {
  45128. name: "Normal",
  45129. height: math.unit(8, "feet"),
  45130. default: true
  45131. },
  45132. ]
  45133. ))
  45134. characterMakers.push(() => makeCharacter(
  45135. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45136. {
  45137. front: {
  45138. height: math.unit(8, "feet"),
  45139. weight: math.unit(250, "lb"),
  45140. name: "Front",
  45141. image: {
  45142. source: "./media/characters/leah/front.svg",
  45143. extra: 1257/1149,
  45144. bottom: 109/1366
  45145. }
  45146. },
  45147. },
  45148. [
  45149. {
  45150. name: "Normal",
  45151. height: math.unit(8, "feet"),
  45152. default: true
  45153. },
  45154. {
  45155. name: "Minimacro",
  45156. height: math.unit(40, "feet")
  45157. },
  45158. {
  45159. name: "Macro",
  45160. height: math.unit(124, "feet")
  45161. },
  45162. {
  45163. name: "Megamacro",
  45164. height: math.unit(850, "feet")
  45165. },
  45166. ]
  45167. ))
  45168. characterMakers.push(() => makeCharacter(
  45169. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45170. {
  45171. side: {
  45172. height: math.unit(13 + 6/12, "feet"),
  45173. weight: math.unit(3200, "lb"),
  45174. name: "Side",
  45175. image: {
  45176. source: "./media/characters/alvir/side.svg",
  45177. extra: 896/589,
  45178. bottom: 26/922
  45179. }
  45180. },
  45181. },
  45182. [
  45183. {
  45184. name: "Normal",
  45185. height: math.unit(13 + 6/12, "feet"),
  45186. default: true
  45187. },
  45188. ]
  45189. ))
  45190. characterMakers.push(() => makeCharacter(
  45191. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45192. {
  45193. front: {
  45194. height: math.unit(5 + 4/12, "feet"),
  45195. weight: math.unit(236, "lb"),
  45196. name: "Front",
  45197. image: {
  45198. source: "./media/characters/zaina-khalil/front.svg",
  45199. extra: 1533/1485,
  45200. bottom: 94/1627
  45201. }
  45202. },
  45203. side: {
  45204. height: math.unit(5 + 4/12, "feet"),
  45205. weight: math.unit(236, "lb"),
  45206. name: "Side",
  45207. image: {
  45208. source: "./media/characters/zaina-khalil/side.svg",
  45209. extra: 1537/1498,
  45210. bottom: 66/1603
  45211. }
  45212. },
  45213. back: {
  45214. height: math.unit(5 + 4/12, "feet"),
  45215. weight: math.unit(236, "lb"),
  45216. name: "Back",
  45217. image: {
  45218. source: "./media/characters/zaina-khalil/back.svg",
  45219. extra: 1546/1494,
  45220. bottom: 89/1635
  45221. }
  45222. },
  45223. },
  45224. [
  45225. {
  45226. name: "Normal",
  45227. height: math.unit(5 + 4/12, "feet"),
  45228. default: true
  45229. },
  45230. ]
  45231. ))
  45232. characterMakers.push(() => makeCharacter(
  45233. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45234. {
  45235. side: {
  45236. height: math.unit(12, "feet"),
  45237. weight: math.unit(4000, "lb"),
  45238. name: "Side",
  45239. image: {
  45240. source: "./media/characters/terry/side.svg",
  45241. extra: 1518/1439,
  45242. bottom: 149/1667
  45243. }
  45244. },
  45245. },
  45246. [
  45247. {
  45248. name: "Normal",
  45249. height: math.unit(12, "feet"),
  45250. default: true
  45251. },
  45252. ]
  45253. ))
  45254. characterMakers.push(() => makeCharacter(
  45255. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45256. {
  45257. front: {
  45258. height: math.unit(12, "feet"),
  45259. weight: math.unit(1500, "lb"),
  45260. name: "Front",
  45261. image: {
  45262. source: "./media/characters/kahea/front.svg",
  45263. extra: 1722/1617,
  45264. bottom: 179/1901
  45265. }
  45266. },
  45267. },
  45268. [
  45269. {
  45270. name: "Normal",
  45271. height: math.unit(12, "feet"),
  45272. default: true
  45273. },
  45274. ]
  45275. ))
  45276. characterMakers.push(() => makeCharacter(
  45277. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45278. {
  45279. demonFront: {
  45280. height: math.unit(36, "feet"),
  45281. name: "Front",
  45282. image: {
  45283. source: "./media/characters/alex-xuria/demon-front.svg",
  45284. extra: 1705/1673,
  45285. bottom: 198/1903
  45286. },
  45287. form: "demon",
  45288. default: true
  45289. },
  45290. demonBack: {
  45291. height: math.unit(36, "feet"),
  45292. name: "Back",
  45293. image: {
  45294. source: "./media/characters/alex-xuria/demon-back.svg",
  45295. extra: 1725/1693,
  45296. bottom: 70/1795
  45297. },
  45298. form: "demon"
  45299. },
  45300. demonHead: {
  45301. height: math.unit(2.14, "meters"),
  45302. name: "Head",
  45303. image: {
  45304. source: "./media/characters/alex-xuria/demon-head.svg"
  45305. },
  45306. form: "demon"
  45307. },
  45308. demonHand: {
  45309. height: math.unit(1.61, "meters"),
  45310. name: "Hand",
  45311. image: {
  45312. source: "./media/characters/alex-xuria/demon-hand.svg"
  45313. },
  45314. form: "demon"
  45315. },
  45316. demonPaw: {
  45317. height: math.unit(1.35, "meters"),
  45318. name: "Paw",
  45319. image: {
  45320. source: "./media/characters/alex-xuria/demon-paw.svg"
  45321. },
  45322. form: "demon"
  45323. },
  45324. demonFoot: {
  45325. height: math.unit(2.2, "meters"),
  45326. name: "Foot",
  45327. image: {
  45328. source: "./media/characters/alex-xuria/demon-foot.svg"
  45329. },
  45330. form: "demon"
  45331. },
  45332. demonCock: {
  45333. height: math.unit(1.74, "meters"),
  45334. name: "Cock",
  45335. image: {
  45336. source: "./media/characters/alex-xuria/demon-cock.svg"
  45337. },
  45338. form: "demon"
  45339. },
  45340. demonTailClosed: {
  45341. height: math.unit(1.47, "meters"),
  45342. name: "Tail (Closed)",
  45343. image: {
  45344. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45345. },
  45346. form: "demon"
  45347. },
  45348. demonTailOpen: {
  45349. height: math.unit(2.85, "meters"),
  45350. name: "Tail (Open)",
  45351. image: {
  45352. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45353. },
  45354. form: "demon"
  45355. },
  45356. incubusFront: {
  45357. height: math.unit(12, "feet"),
  45358. name: "Front",
  45359. image: {
  45360. source: "./media/characters/alex-xuria/incubus-front.svg",
  45361. extra: 1754/1677,
  45362. bottom: 125/1879
  45363. },
  45364. form: "incubus",
  45365. default: true
  45366. },
  45367. incubusBack: {
  45368. height: math.unit(12, "feet"),
  45369. name: "Back",
  45370. image: {
  45371. source: "./media/characters/alex-xuria/incubus-back.svg",
  45372. extra: 1702/1647,
  45373. bottom: 30/1732
  45374. },
  45375. form: "incubus"
  45376. },
  45377. incubusHead: {
  45378. height: math.unit(3.45, "feet"),
  45379. name: "Head",
  45380. image: {
  45381. source: "./media/characters/alex-xuria/incubus-head.svg"
  45382. },
  45383. form: "incubus"
  45384. },
  45385. rabbitFront: {
  45386. height: math.unit(6, "feet"),
  45387. name: "Front",
  45388. image: {
  45389. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45390. extra: 1369/1349,
  45391. bottom: 45/1414
  45392. },
  45393. form: "rabbit",
  45394. default: true
  45395. },
  45396. rabbitSide: {
  45397. height: math.unit(6, "feet"),
  45398. name: "Side",
  45399. image: {
  45400. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45401. extra: 1370/1356,
  45402. bottom: 37/1407
  45403. },
  45404. form: "rabbit"
  45405. },
  45406. rabbitBack: {
  45407. height: math.unit(6, "feet"),
  45408. name: "Back",
  45409. image: {
  45410. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45411. extra: 1375/1358,
  45412. bottom: 43/1418
  45413. },
  45414. form: "rabbit"
  45415. },
  45416. },
  45417. [
  45418. {
  45419. name: "Normal",
  45420. height: math.unit(6, "feet"),
  45421. default: true,
  45422. form: "rabbit"
  45423. },
  45424. {
  45425. name: "Incubus",
  45426. height: math.unit(12, "feet"),
  45427. default: true,
  45428. form: "incubus"
  45429. },
  45430. {
  45431. name: "Demon",
  45432. height: math.unit(36, "feet"),
  45433. default: true,
  45434. form: "demon"
  45435. }
  45436. ],
  45437. {
  45438. "demon": {
  45439. name: "Demon",
  45440. default: true
  45441. },
  45442. "incubus": {
  45443. name: "Incubus",
  45444. },
  45445. "rabbit": {
  45446. name: "Rabbit"
  45447. }
  45448. }
  45449. ))
  45450. characterMakers.push(() => makeCharacter(
  45451. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45452. {
  45453. front: {
  45454. height: math.unit(7 + 5/12, "feet"),
  45455. weight: math.unit(510, "lb"),
  45456. name: "Front",
  45457. image: {
  45458. source: "./media/characters/syrup/front.svg",
  45459. extra: 932/916,
  45460. bottom: 26/958
  45461. }
  45462. },
  45463. },
  45464. [
  45465. {
  45466. name: "Normal",
  45467. height: math.unit(7 + 5/12, "feet"),
  45468. default: true
  45469. },
  45470. {
  45471. name: "Big",
  45472. height: math.unit(50, "feet")
  45473. },
  45474. {
  45475. name: "Macro",
  45476. height: math.unit(300, "feet")
  45477. },
  45478. {
  45479. name: "Megamacro",
  45480. height: math.unit(1, "mile")
  45481. },
  45482. ]
  45483. ))
  45484. characterMakers.push(() => makeCharacter(
  45485. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45486. {
  45487. front: {
  45488. height: math.unit(6 + 9/12, "feet"),
  45489. name: "Front",
  45490. image: {
  45491. source: "./media/characters/zeimne/front.svg",
  45492. extra: 1969/1806,
  45493. bottom: 53/2022
  45494. }
  45495. },
  45496. },
  45497. [
  45498. {
  45499. name: "Normal",
  45500. height: math.unit(6 + 9/12, "feet"),
  45501. default: true
  45502. },
  45503. {
  45504. name: "Giant",
  45505. height: math.unit(550, "feet")
  45506. },
  45507. {
  45508. name: "Mega",
  45509. height: math.unit(3, "miles")
  45510. },
  45511. {
  45512. name: "Giga",
  45513. height: math.unit(250, "miles")
  45514. },
  45515. {
  45516. name: "Tera",
  45517. height: math.unit(1, "AU")
  45518. },
  45519. ]
  45520. ))
  45521. characterMakers.push(() => makeCharacter(
  45522. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45523. {
  45524. front: {
  45525. height: math.unit(5 + 2/12, "feet"),
  45526. name: "Front",
  45527. image: {
  45528. source: "./media/characters/grar/front.svg",
  45529. extra: 1331/1119,
  45530. bottom: 60/1391
  45531. }
  45532. },
  45533. back: {
  45534. height: math.unit(5 + 2/12, "feet"),
  45535. name: "Back",
  45536. image: {
  45537. source: "./media/characters/grar/back.svg",
  45538. extra: 1385/1169,
  45539. bottom: 23/1408
  45540. }
  45541. },
  45542. },
  45543. [
  45544. {
  45545. name: "Normal",
  45546. height: math.unit(5 + 2/12, "feet"),
  45547. default: true
  45548. },
  45549. ]
  45550. ))
  45551. characterMakers.push(() => makeCharacter(
  45552. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45553. {
  45554. front: {
  45555. height: math.unit(13 + 7/12, "feet"),
  45556. weight: math.unit(2200, "lb"),
  45557. name: "Front",
  45558. image: {
  45559. source: "./media/characters/endraya/front.svg",
  45560. extra: 1289/1215,
  45561. bottom: 50/1339
  45562. }
  45563. },
  45564. nude: {
  45565. height: math.unit(13 + 7/12, "feet"),
  45566. weight: math.unit(2200, "lb"),
  45567. name: "Nude",
  45568. image: {
  45569. source: "./media/characters/endraya/nude.svg",
  45570. extra: 1247/1171,
  45571. bottom: 40/1287
  45572. }
  45573. },
  45574. head: {
  45575. height: math.unit(2.6, "feet"),
  45576. name: "Head",
  45577. image: {
  45578. source: "./media/characters/endraya/head.svg"
  45579. }
  45580. },
  45581. slit: {
  45582. height: math.unit(3.4, "feet"),
  45583. name: "Slit",
  45584. image: {
  45585. source: "./media/characters/endraya/slit.svg"
  45586. }
  45587. },
  45588. },
  45589. [
  45590. {
  45591. name: "Normal",
  45592. height: math.unit(13 + 7/12, "feet"),
  45593. default: true
  45594. },
  45595. {
  45596. name: "Macro",
  45597. height: math.unit(200, "feet")
  45598. },
  45599. ]
  45600. ))
  45601. characterMakers.push(() => makeCharacter(
  45602. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45603. {
  45604. front: {
  45605. height: math.unit(412, "meters"),
  45606. name: "Front",
  45607. image: {
  45608. source: "./media/characters/rodryana/front.svg",
  45609. extra: 2002/1921,
  45610. bottom: 53/2055
  45611. }
  45612. },
  45613. back: {
  45614. height: math.unit(412, "meters"),
  45615. name: "Back",
  45616. image: {
  45617. source: "./media/characters/rodryana/back.svg",
  45618. extra: 1993/1926,
  45619. bottom: 48/2041
  45620. }
  45621. },
  45622. maw: {
  45623. height: math.unit(45, "meters"),
  45624. name: "Maw",
  45625. image: {
  45626. source: "./media/characters/rodryana/maw.svg"
  45627. }
  45628. },
  45629. slit: {
  45630. height: math.unit(72, "meters"),
  45631. name: "Slit",
  45632. image: {
  45633. source: "./media/characters/rodryana/slit.svg"
  45634. }
  45635. },
  45636. },
  45637. [
  45638. {
  45639. name: "Macro",
  45640. height: math.unit(412, "meters"),
  45641. default: true
  45642. },
  45643. ]
  45644. ))
  45645. characterMakers.push(() => makeCharacter(
  45646. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45647. {
  45648. front: {
  45649. height: math.unit(6, "feet"),
  45650. weight: math.unit(1000, "lb"),
  45651. name: "Front",
  45652. image: {
  45653. source: "./media/characters/asaya/front.svg",
  45654. extra: 1460/1200,
  45655. bottom: 71/1531
  45656. }
  45657. },
  45658. },
  45659. [
  45660. {
  45661. name: "Normal",
  45662. height: math.unit(8, "km"),
  45663. default: true
  45664. },
  45665. ]
  45666. ))
  45667. characterMakers.push(() => makeCharacter(
  45668. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45669. {
  45670. front: {
  45671. height: math.unit(3.5, "meters"),
  45672. name: "Front",
  45673. image: {
  45674. source: "./media/characters/sarzu-and-israz/front.svg",
  45675. extra: 1570/1558,
  45676. bottom: 150/1720
  45677. },
  45678. },
  45679. back: {
  45680. height: math.unit(3.5, "meters"),
  45681. name: "Back",
  45682. image: {
  45683. source: "./media/characters/sarzu-and-israz/back.svg",
  45684. extra: 1523/1509,
  45685. bottom: 132/1655
  45686. },
  45687. },
  45688. frontFemale: {
  45689. height: math.unit(3.5, "meters"),
  45690. name: "Front (Female)",
  45691. image: {
  45692. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45693. extra: 1570/1558,
  45694. bottom: 150/1720
  45695. },
  45696. },
  45697. frontHerm: {
  45698. height: math.unit(3.5, "meters"),
  45699. name: "Front (Herm)",
  45700. image: {
  45701. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45702. extra: 1570/1558,
  45703. bottom: 150/1720
  45704. },
  45705. },
  45706. },
  45707. [
  45708. {
  45709. name: "Normal",
  45710. height: math.unit(3.5, "meters"),
  45711. default: true,
  45712. },
  45713. {
  45714. name: "Macro",
  45715. height: math.unit(65.5, "meters"),
  45716. },
  45717. ],
  45718. ))
  45719. characterMakers.push(() => makeCharacter(
  45720. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45721. {
  45722. front: {
  45723. height: math.unit(6, "feet"),
  45724. weight: math.unit(250, "lb"),
  45725. name: "Front",
  45726. image: {
  45727. source: "./media/characters/zenimma/front.svg",
  45728. extra: 1346/1320,
  45729. bottom: 58/1404
  45730. }
  45731. },
  45732. back: {
  45733. height: math.unit(6, "feet"),
  45734. weight: math.unit(250, "lb"),
  45735. name: "Back",
  45736. image: {
  45737. source: "./media/characters/zenimma/back.svg",
  45738. extra: 1324/1308,
  45739. bottom: 44/1368
  45740. }
  45741. },
  45742. dick: {
  45743. height: math.unit(1.44, "feet"),
  45744. name: "Dick",
  45745. image: {
  45746. source: "./media/characters/zenimma/dick.svg"
  45747. }
  45748. },
  45749. },
  45750. [
  45751. {
  45752. name: "Canon Height",
  45753. height: math.unit(66, "miles"),
  45754. default: true
  45755. },
  45756. ]
  45757. ))
  45758. characterMakers.push(() => makeCharacter(
  45759. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45760. {
  45761. nude: {
  45762. height: math.unit(6, "feet"),
  45763. weight: math.unit(150, "lb"),
  45764. name: "Nude",
  45765. image: {
  45766. source: "./media/characters/shavon/nude.svg",
  45767. extra: 1242/1096,
  45768. bottom: 98/1340
  45769. }
  45770. },
  45771. dressed: {
  45772. height: math.unit(6, "feet"),
  45773. weight: math.unit(150, "lb"),
  45774. name: "Dressed",
  45775. image: {
  45776. source: "./media/characters/shavon/dressed.svg",
  45777. extra: 1242/1096,
  45778. bottom: 98/1340
  45779. }
  45780. },
  45781. },
  45782. [
  45783. {
  45784. name: "Macro",
  45785. height: math.unit(255, "feet"),
  45786. default: true
  45787. },
  45788. ]
  45789. ))
  45790. characterMakers.push(() => makeCharacter(
  45791. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45792. {
  45793. front: {
  45794. height: math.unit(6, "feet"),
  45795. name: "Front",
  45796. image: {
  45797. source: "./media/characters/steph/front.svg",
  45798. extra: 1430/1330,
  45799. bottom: 54/1484
  45800. }
  45801. },
  45802. },
  45803. [
  45804. {
  45805. name: "Normal",
  45806. height: math.unit(6, "feet"),
  45807. default: true
  45808. },
  45809. ]
  45810. ))
  45811. characterMakers.push(() => makeCharacter(
  45812. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45813. {
  45814. front: {
  45815. height: math.unit(9, "feet"),
  45816. weight: math.unit(400, "lb"),
  45817. name: "Front",
  45818. image: {
  45819. source: "./media/characters/kil'aman/front.svg",
  45820. extra: 1210/1159,
  45821. bottom: 109/1319
  45822. }
  45823. },
  45824. head: {
  45825. height: math.unit(2.14, "feet"),
  45826. name: "Head",
  45827. image: {
  45828. source: "./media/characters/kil'aman/head.svg"
  45829. }
  45830. },
  45831. maw: {
  45832. height: math.unit(1.21, "feet"),
  45833. name: "Maw",
  45834. image: {
  45835. source: "./media/characters/kil'aman/maw.svg"
  45836. }
  45837. },
  45838. foot: {
  45839. height: math.unit(1.7, "feet"),
  45840. name: "Foot",
  45841. image: {
  45842. source: "./media/characters/kil'aman/foot.svg"
  45843. }
  45844. },
  45845. dick: {
  45846. height: math.unit(2.1, "feet"),
  45847. name: "Dick",
  45848. image: {
  45849. source: "./media/characters/kil'aman/dick.svg"
  45850. }
  45851. },
  45852. },
  45853. [
  45854. {
  45855. name: "Normal",
  45856. height: math.unit(9, "feet")
  45857. },
  45858. {
  45859. name: "Canon Height",
  45860. height: math.unit(10, "miles"),
  45861. default: true
  45862. },
  45863. {
  45864. name: "Maximum",
  45865. height: math.unit(6e9, "miles")
  45866. },
  45867. ]
  45868. ))
  45869. characterMakers.push(() => makeCharacter(
  45870. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45871. {
  45872. front: {
  45873. height: math.unit(90, "feet"),
  45874. weight: math.unit(675000, "lb"),
  45875. name: "Front",
  45876. image: {
  45877. source: "./media/characters/qadan/front.svg",
  45878. extra: 1012/1004,
  45879. bottom: 78/1090
  45880. }
  45881. },
  45882. back: {
  45883. height: math.unit(90, "feet"),
  45884. weight: math.unit(675000, "lb"),
  45885. name: "Back",
  45886. image: {
  45887. source: "./media/characters/qadan/back.svg",
  45888. extra: 1042/1031,
  45889. bottom: 55/1097
  45890. }
  45891. },
  45892. armored: {
  45893. height: math.unit(90, "feet"),
  45894. weight: math.unit(675000, "lb"),
  45895. name: "Armored",
  45896. image: {
  45897. source: "./media/characters/qadan/armored.svg",
  45898. extra: 1047/1037,
  45899. bottom: 48/1095
  45900. }
  45901. },
  45902. },
  45903. [
  45904. {
  45905. name: "Normal",
  45906. height: math.unit(90, "feet"),
  45907. default: true
  45908. },
  45909. ]
  45910. ))
  45911. characterMakers.push(() => makeCharacter(
  45912. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  45913. {
  45914. front: {
  45915. height: math.unit(6, "feet"),
  45916. weight: math.unit(225, "lb"),
  45917. name: "Front",
  45918. image: {
  45919. source: "./media/characters/brooke/front.svg",
  45920. extra: 1050/1010,
  45921. bottom: 66/1116
  45922. }
  45923. },
  45924. back: {
  45925. height: math.unit(6, "feet"),
  45926. weight: math.unit(225, "lb"),
  45927. name: "Back",
  45928. image: {
  45929. source: "./media/characters/brooke/back.svg",
  45930. extra: 1053/1013,
  45931. bottom: 41/1094
  45932. }
  45933. },
  45934. dressed: {
  45935. height: math.unit(6, "feet"),
  45936. weight: math.unit(225, "lb"),
  45937. name: "Dressed",
  45938. image: {
  45939. source: "./media/characters/brooke/dressed.svg",
  45940. extra: 1050/1010,
  45941. bottom: 66/1116
  45942. }
  45943. },
  45944. },
  45945. [
  45946. {
  45947. name: "Canon Height",
  45948. height: math.unit(500, "miles"),
  45949. default: true
  45950. },
  45951. ]
  45952. ))
  45953. characterMakers.push(() => makeCharacter(
  45954. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  45955. {
  45956. front: {
  45957. height: math.unit(6 + 2/12, "feet"),
  45958. weight: math.unit(210, "lb"),
  45959. name: "Front",
  45960. image: {
  45961. source: "./media/characters/wubs/front.svg",
  45962. extra: 1345/1325,
  45963. bottom: 70/1415
  45964. }
  45965. },
  45966. back: {
  45967. height: math.unit(6 + 2/12, "feet"),
  45968. weight: math.unit(210, "lb"),
  45969. name: "Back",
  45970. image: {
  45971. source: "./media/characters/wubs/back.svg",
  45972. extra: 1296/1275,
  45973. bottom: 58/1354
  45974. }
  45975. },
  45976. },
  45977. [
  45978. {
  45979. name: "Normal",
  45980. height: math.unit(6 + 2/12, "feet"),
  45981. default: true
  45982. },
  45983. {
  45984. name: "Macro",
  45985. height: math.unit(1000, "feet")
  45986. },
  45987. {
  45988. name: "Megamacro",
  45989. height: math.unit(1, "mile")
  45990. },
  45991. ]
  45992. ))
  45993. characterMakers.push(() => makeCharacter(
  45994. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  45995. {
  45996. front: {
  45997. height: math.unit(4, "feet"),
  45998. weight: math.unit(120, "lb"),
  45999. name: "Front",
  46000. image: {
  46001. source: "./media/characters/blue/front.svg",
  46002. extra: 1636/1525,
  46003. bottom: 43/1679
  46004. }
  46005. },
  46006. back: {
  46007. height: math.unit(4, "feet"),
  46008. weight: math.unit(120, "lb"),
  46009. name: "Back",
  46010. image: {
  46011. source: "./media/characters/blue/back.svg",
  46012. extra: 1660/1560,
  46013. bottom: 57/1717
  46014. }
  46015. },
  46016. paws: {
  46017. height: math.unit(0.826, "feet"),
  46018. name: "Paws",
  46019. image: {
  46020. source: "./media/characters/blue/paws.svg"
  46021. }
  46022. },
  46023. },
  46024. [
  46025. {
  46026. name: "Micro",
  46027. height: math.unit(3, "inches")
  46028. },
  46029. {
  46030. name: "Normal",
  46031. height: math.unit(4, "feet"),
  46032. default: true
  46033. },
  46034. {
  46035. name: "Femenine Form",
  46036. height: math.unit(14, "feet")
  46037. },
  46038. {
  46039. name: "Werebat Form",
  46040. height: math.unit(18, "feet")
  46041. },
  46042. ]
  46043. ))
  46044. characterMakers.push(() => makeCharacter(
  46045. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46046. {
  46047. female: {
  46048. height: math.unit(7 + 4/12, "feet"),
  46049. weight: math.unit(243, "lb"),
  46050. name: "Female",
  46051. image: {
  46052. source: "./media/characters/kaya/female.svg",
  46053. extra: 975/898,
  46054. bottom: 34/1009
  46055. }
  46056. },
  46057. herm: {
  46058. height: math.unit(7 + 4/12, "feet"),
  46059. weight: math.unit(243, "lb"),
  46060. name: "Herm",
  46061. image: {
  46062. source: "./media/characters/kaya/herm.svg",
  46063. extra: 975/898,
  46064. bottom: 34/1009
  46065. }
  46066. },
  46067. },
  46068. [
  46069. {
  46070. name: "Normal",
  46071. height: math.unit(7 + 4/12, "feet"),
  46072. default: true
  46073. },
  46074. ]
  46075. ))
  46076. characterMakers.push(() => makeCharacter(
  46077. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46078. {
  46079. female: {
  46080. height: math.unit(9 + 4/12, "feet"),
  46081. weight: math.unit(398, "lb"),
  46082. name: "Female",
  46083. image: {
  46084. source: "./media/characters/kassandra/female.svg",
  46085. extra: 908/839,
  46086. bottom: 61/969
  46087. }
  46088. },
  46089. intersex: {
  46090. height: math.unit(9 + 4/12, "feet"),
  46091. weight: math.unit(398, "lb"),
  46092. name: "Intersex",
  46093. image: {
  46094. source: "./media/characters/kassandra/intersex.svg",
  46095. extra: 908/839,
  46096. bottom: 61/969
  46097. }
  46098. },
  46099. },
  46100. [
  46101. {
  46102. name: "Normal",
  46103. height: math.unit(9 + 4/12, "feet"),
  46104. default: true
  46105. },
  46106. ]
  46107. ))
  46108. characterMakers.push(() => makeCharacter(
  46109. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46110. {
  46111. front: {
  46112. height: math.unit(3, "meters"),
  46113. name: "Front",
  46114. image: {
  46115. source: "./media/characters/amy/front.svg",
  46116. extra: 1380/1343,
  46117. bottom: 70/1450
  46118. }
  46119. },
  46120. back: {
  46121. height: math.unit(3, "meters"),
  46122. name: "Back",
  46123. image: {
  46124. source: "./media/characters/amy/back.svg",
  46125. extra: 1380/1347,
  46126. bottom: 66/1446
  46127. }
  46128. },
  46129. },
  46130. [
  46131. {
  46132. name: "Normal",
  46133. height: math.unit(3, "meters"),
  46134. default: true
  46135. },
  46136. ]
  46137. ))
  46138. characterMakers.push(() => makeCharacter(
  46139. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46140. {
  46141. side: {
  46142. height: math.unit(47, "cm"),
  46143. weight: math.unit(10.8, "kg"),
  46144. name: "Side",
  46145. image: {
  46146. source: "./media/characters/alphaschakal/side.svg",
  46147. extra: 1058/568,
  46148. bottom: 62/1120
  46149. }
  46150. },
  46151. back: {
  46152. height: math.unit(78, "cm"),
  46153. weight: math.unit(10.8, "kg"),
  46154. name: "Back",
  46155. image: {
  46156. source: "./media/characters/alphaschakal/back.svg",
  46157. extra: 1102/942,
  46158. bottom: 185/1287
  46159. }
  46160. },
  46161. head: {
  46162. height: math.unit(28, "cm"),
  46163. name: "Head",
  46164. image: {
  46165. source: "./media/characters/alphaschakal/head.svg",
  46166. extra: 696/508,
  46167. bottom: 0/696
  46168. }
  46169. },
  46170. paw: {
  46171. height: math.unit(16, "cm"),
  46172. name: "Paw",
  46173. image: {
  46174. source: "./media/characters/alphaschakal/paw.svg"
  46175. }
  46176. },
  46177. },
  46178. [
  46179. {
  46180. name: "Normal",
  46181. height: math.unit(47, "cm"),
  46182. default: true
  46183. },
  46184. {
  46185. name: "Macro",
  46186. height: math.unit(340, "cm")
  46187. },
  46188. ]
  46189. ))
  46190. characterMakers.push(() => makeCharacter(
  46191. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46192. {
  46193. front: {
  46194. height: math.unit(36, "earths"),
  46195. name: "Front",
  46196. image: {
  46197. source: "./media/characters/ecobyss/front.svg",
  46198. extra: 1282/1215,
  46199. bottom: 11/1293
  46200. }
  46201. },
  46202. back: {
  46203. height: math.unit(36, "earths"),
  46204. name: "Back",
  46205. image: {
  46206. source: "./media/characters/ecobyss/back.svg",
  46207. extra: 1291/1222,
  46208. bottom: 8/1299
  46209. }
  46210. },
  46211. },
  46212. [
  46213. {
  46214. name: "Normal",
  46215. height: math.unit(36, "earths"),
  46216. default: true
  46217. },
  46218. ]
  46219. ))
  46220. characterMakers.push(() => makeCharacter(
  46221. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46222. {
  46223. front: {
  46224. height: math.unit(12, "feet"),
  46225. name: "Front",
  46226. image: {
  46227. source: "./media/characters/vasuk/front.svg",
  46228. extra: 1326/1207,
  46229. bottom: 64/1390
  46230. }
  46231. },
  46232. },
  46233. [
  46234. {
  46235. name: "Normal",
  46236. height: math.unit(12, "feet"),
  46237. default: true
  46238. },
  46239. ]
  46240. ))
  46241. characterMakers.push(() => makeCharacter(
  46242. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46243. {
  46244. side: {
  46245. height: math.unit(100, "feet"),
  46246. name: "Side",
  46247. image: {
  46248. source: "./media/characters/linneaus/side.svg",
  46249. extra: 987/807,
  46250. bottom: 47/1034
  46251. }
  46252. },
  46253. },
  46254. [
  46255. {
  46256. name: "Macro",
  46257. height: math.unit(100, "feet"),
  46258. default: true
  46259. },
  46260. ]
  46261. ))
  46262. characterMakers.push(() => makeCharacter(
  46263. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46264. {
  46265. front: {
  46266. height: math.unit(8, "feet"),
  46267. weight: math.unit(1200, "lb"),
  46268. name: "Front",
  46269. image: {
  46270. source: "./media/characters/nyterious-daligdig/front.svg",
  46271. extra: 1284/1094,
  46272. bottom: 84/1368
  46273. }
  46274. },
  46275. back: {
  46276. height: math.unit(8, "feet"),
  46277. weight: math.unit(1200, "lb"),
  46278. name: "Back",
  46279. image: {
  46280. source: "./media/characters/nyterious-daligdig/back.svg",
  46281. extra: 1301/1121,
  46282. bottom: 129/1430
  46283. }
  46284. },
  46285. mouth: {
  46286. height: math.unit(1.464, "feet"),
  46287. name: "Mouth",
  46288. image: {
  46289. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46290. }
  46291. },
  46292. },
  46293. [
  46294. {
  46295. name: "Small",
  46296. height: math.unit(8, "feet"),
  46297. default: true
  46298. },
  46299. {
  46300. name: "Normal",
  46301. height: math.unit(15, "feet")
  46302. },
  46303. {
  46304. name: "Macro",
  46305. height: math.unit(90, "feet")
  46306. },
  46307. ]
  46308. ))
  46309. characterMakers.push(() => makeCharacter(
  46310. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46311. {
  46312. front: {
  46313. height: math.unit(7 + 4/12, "feet"),
  46314. weight: math.unit(252, "lb"),
  46315. name: "Front",
  46316. image: {
  46317. source: "./media/characters/bandel/front.svg",
  46318. extra: 1946/1775,
  46319. bottom: 26/1972
  46320. }
  46321. },
  46322. back: {
  46323. height: math.unit(7 + 4/12, "feet"),
  46324. weight: math.unit(252, "lb"),
  46325. name: "Back",
  46326. image: {
  46327. source: "./media/characters/bandel/back.svg",
  46328. extra: 1940/1770,
  46329. bottom: 25/1965
  46330. }
  46331. },
  46332. maw: {
  46333. height: math.unit(2.15, "feet"),
  46334. name: "Maw",
  46335. image: {
  46336. source: "./media/characters/bandel/maw.svg"
  46337. }
  46338. },
  46339. stomach: {
  46340. height: math.unit(1.95, "feet"),
  46341. name: "Stomach",
  46342. image: {
  46343. source: "./media/characters/bandel/stomach.svg"
  46344. }
  46345. },
  46346. },
  46347. [
  46348. {
  46349. name: "Normal",
  46350. height: math.unit(7 + 4/12, "feet"),
  46351. default: true
  46352. },
  46353. ]
  46354. ))
  46355. characterMakers.push(() => makeCharacter(
  46356. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46357. {
  46358. front: {
  46359. height: math.unit(10 + 5/12, "feet"),
  46360. weight: math.unit(773.5, "kg"),
  46361. name: "Front",
  46362. image: {
  46363. source: "./media/characters/zed/front.svg",
  46364. extra: 987/941,
  46365. bottom: 52/1039
  46366. }
  46367. },
  46368. },
  46369. [
  46370. {
  46371. name: "Short",
  46372. height: math.unit(5 + 4/12, "feet")
  46373. },
  46374. {
  46375. name: "Average",
  46376. height: math.unit(10 + 5/12, "feet"),
  46377. default: true
  46378. },
  46379. {
  46380. name: "Mini-Macro",
  46381. height: math.unit(24 + 9/12, "feet")
  46382. },
  46383. {
  46384. name: "Macro",
  46385. height: math.unit(249, "feet")
  46386. },
  46387. {
  46388. name: "Mega-Macro",
  46389. height: math.unit(12490, "feet")
  46390. },
  46391. {
  46392. name: "Giga-Macro",
  46393. height: math.unit(24.9, "miles")
  46394. },
  46395. {
  46396. name: "Tera-Macro",
  46397. height: math.unit(24900, "miles")
  46398. },
  46399. {
  46400. name: "Cosmic Scale",
  46401. height: math.unit(38.9, "lightyears")
  46402. },
  46403. {
  46404. name: "Universal Scale",
  46405. height: math.unit(138e12, "lightyears")
  46406. },
  46407. ]
  46408. ))
  46409. characterMakers.push(() => makeCharacter(
  46410. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46411. {
  46412. front: {
  46413. height: math.unit(1561, "inches"),
  46414. name: "Front",
  46415. image: {
  46416. source: "./media/characters/ivan/front.svg",
  46417. extra: 1126/1071,
  46418. bottom: 26/1152
  46419. }
  46420. },
  46421. back: {
  46422. height: math.unit(1561, "inches"),
  46423. name: "Back",
  46424. image: {
  46425. source: "./media/characters/ivan/back.svg",
  46426. extra: 1134/1079,
  46427. bottom: 30/1164
  46428. }
  46429. },
  46430. },
  46431. [
  46432. {
  46433. name: "Normal",
  46434. height: math.unit(1561, "inches"),
  46435. default: true
  46436. },
  46437. ]
  46438. ))
  46439. characterMakers.push(() => makeCharacter(
  46440. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46441. {
  46442. front: {
  46443. height: math.unit(5 + 7/12, "feet"),
  46444. weight: math.unit(150, "lb"),
  46445. name: "Front",
  46446. image: {
  46447. source: "./media/characters/robin-arctic-hare/front.svg",
  46448. extra: 1148/974,
  46449. bottom: 20/1168
  46450. }
  46451. },
  46452. },
  46453. [
  46454. {
  46455. name: "Normal",
  46456. height: math.unit(5 + 7/12, "feet"),
  46457. default: true
  46458. },
  46459. ]
  46460. ))
  46461. characterMakers.push(() => makeCharacter(
  46462. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46463. {
  46464. side: {
  46465. height: math.unit(5, "feet"),
  46466. name: "Side",
  46467. image: {
  46468. source: "./media/characters/birch/side.svg",
  46469. extra: 985/796,
  46470. bottom: 111/1096
  46471. }
  46472. },
  46473. },
  46474. [
  46475. {
  46476. name: "Normal",
  46477. height: math.unit(5, "feet"),
  46478. default: true
  46479. },
  46480. ]
  46481. ))
  46482. characterMakers.push(() => makeCharacter(
  46483. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46484. {
  46485. front: {
  46486. height: math.unit(4, "feet"),
  46487. name: "Front",
  46488. image: {
  46489. source: "./media/characters/rasp/front.svg",
  46490. extra: 561/478,
  46491. bottom: 74/635
  46492. }
  46493. },
  46494. },
  46495. [
  46496. {
  46497. name: "Normal",
  46498. height: math.unit(4, "feet"),
  46499. default: true
  46500. },
  46501. ]
  46502. ))
  46503. characterMakers.push(() => makeCharacter(
  46504. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  46505. {
  46506. front: {
  46507. height: math.unit(4 + 6/12, "feet"),
  46508. name: "Front",
  46509. image: {
  46510. source: "./media/characters/agatha/front.svg",
  46511. extra: 947/933,
  46512. bottom: 42/989
  46513. }
  46514. },
  46515. back: {
  46516. height: math.unit(4 + 6/12, "feet"),
  46517. name: "Back",
  46518. image: {
  46519. source: "./media/characters/agatha/back.svg",
  46520. extra: 935/922,
  46521. bottom: 48/983
  46522. }
  46523. },
  46524. },
  46525. [
  46526. {
  46527. name: "Normal",
  46528. height: math.unit(4 + 6 /12, "feet"),
  46529. default: true
  46530. },
  46531. {
  46532. name: "Max Size",
  46533. height: math.unit(500, "feet")
  46534. },
  46535. ]
  46536. ))
  46537. //characters
  46538. function makeCharacters() {
  46539. const results = [];
  46540. characterMakers.forEach(character => {
  46541. results.push(character());
  46542. });
  46543. return results;
  46544. }