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

47667 строки
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. }
  1864. //species
  1865. function getSpeciesInfo(speciesList) {
  1866. let result = new Set();
  1867. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1868. result.add(entry)
  1869. });
  1870. return Array.from(result);
  1871. };
  1872. function getSpeciesInfoHelper(species) {
  1873. if (!speciesData[species]) {
  1874. console.warn(species + " doesn't exist");
  1875. return [];
  1876. }
  1877. if (speciesData[species].parents) {
  1878. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1879. } else {
  1880. return [species];
  1881. }
  1882. }
  1883. characterMakers.push(() => makeCharacter(
  1884. {
  1885. name: "Fen",
  1886. species: ["crux"],
  1887. description: {
  1888. title: "Bio",
  1889. text: "Very furry. Sheds on everything."
  1890. },
  1891. tags: [
  1892. "anthro",
  1893. "goo"
  1894. ]
  1895. },
  1896. {
  1897. front: {
  1898. height: math.unit(12, "feet"),
  1899. weight: math.unit(2400, "lb"),
  1900. name: "Front",
  1901. image: {
  1902. source: "./media/characters/fen/front.svg",
  1903. extra: 1804/1562,
  1904. bottom: 205/2009
  1905. }
  1906. },
  1907. diving: {
  1908. height: math.unit(4.9, "meters"),
  1909. weight: math.unit(2400, "lb"),
  1910. name: "Diving",
  1911. image: {
  1912. source: "./media/characters/fen/diving.svg"
  1913. }
  1914. },
  1915. goo: {
  1916. height: math.unit(12, "feet"),
  1917. weight: math.unit(3000, "lb"),
  1918. capacity: math.unit(6, "people"),
  1919. name: "Goo",
  1920. image: {
  1921. source: "./media/characters/fen/goo.svg",
  1922. extra: 1307/1071,
  1923. bottom: 134/1441
  1924. }
  1925. },
  1926. maw: {
  1927. height: math.unit(5.03, "feet"),
  1928. name: "Maw",
  1929. image: {
  1930. source: "./media/characters/fen/maw.svg"
  1931. }
  1932. },
  1933. gooCeiling: {
  1934. height: math.unit(6.6, "feet"),
  1935. weight: math.unit(3000, "lb"),
  1936. capacity: math.unit(6, "people"),
  1937. name: "Goo (Ceiling)",
  1938. image: {
  1939. source: "./media/characters/fen/goo-ceiling.svg"
  1940. }
  1941. },
  1942. back: {
  1943. height: math.unit(12, "feet"),
  1944. weight: math.unit(2400, "lb"),
  1945. name: "Back",
  1946. image: {
  1947. source: "./media/characters/fen/back.svg",
  1948. },
  1949. info: {
  1950. description: {
  1951. mode: "append",
  1952. text: "\n\nHe is not currently looking at you."
  1953. }
  1954. }
  1955. },
  1956. full: {
  1957. height: math.unit(1.6, "meter"),
  1958. weight: math.unit(3200, "lb"),
  1959. name: "Full",
  1960. image: {
  1961. source: "./media/characters/fen/full.svg",
  1962. extra: 1133/859,
  1963. bottom: 145/1278
  1964. },
  1965. info: {
  1966. description: {
  1967. mode: "append",
  1968. text: "\n\nMunch."
  1969. }
  1970. }
  1971. },
  1972. gooLounging: {
  1973. height: math.unit(4.53, "feet"),
  1974. weight: math.unit(3000, "lb"),
  1975. capacity: math.unit(6, "people"),
  1976. name: "Goo (Lounging)",
  1977. image: {
  1978. source: "./media/characters/fen/goo.svg",
  1979. bottom: 116 / 613
  1980. }
  1981. },
  1982. lounging: {
  1983. height: math.unit(10.52, "feet"),
  1984. weight: math.unit(2400, "lb"),
  1985. name: "Lounging",
  1986. image: {
  1987. source: "./media/characters/fen/lounging.svg"
  1988. }
  1989. },
  1990. },
  1991. [
  1992. {
  1993. name: "Small",
  1994. height: math.unit(2.2428, "meter")
  1995. },
  1996. {
  1997. name: "Normal",
  1998. height: math.unit(12, "feet"),
  1999. default: true,
  2000. },
  2001. {
  2002. name: "Big",
  2003. height: math.unit(20, "feet")
  2004. },
  2005. {
  2006. name: "Minimacro",
  2007. height: math.unit(40, "feet"),
  2008. info: {
  2009. description: {
  2010. mode: "append",
  2011. text: "\n\nTOO DAMN BIG"
  2012. }
  2013. }
  2014. },
  2015. {
  2016. name: "Macro",
  2017. height: math.unit(100, "feet"),
  2018. info: {
  2019. description: {
  2020. mode: "append",
  2021. text: "\n\nTOO DAMN BIG"
  2022. }
  2023. }
  2024. },
  2025. {
  2026. name: "Megamacro",
  2027. height: math.unit(2, "miles")
  2028. },
  2029. {
  2030. name: "Gigamacro",
  2031. height: math.unit(10, "earths")
  2032. },
  2033. ]
  2034. ))
  2035. characterMakers.push(() => makeCharacter(
  2036. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2037. {
  2038. front: {
  2039. height: math.unit(183, "cm"),
  2040. weight: math.unit(80, "kg"),
  2041. name: "Front",
  2042. image: {
  2043. source: "./media/characters/sofia-fluttertail/front.svg",
  2044. bottom: 0.01,
  2045. extra: 2154 / 2081
  2046. }
  2047. },
  2048. frontAlt: {
  2049. height: math.unit(183, "cm"),
  2050. weight: math.unit(80, "kg"),
  2051. name: "Front (alt)",
  2052. image: {
  2053. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2054. }
  2055. },
  2056. back: {
  2057. height: math.unit(183, "cm"),
  2058. weight: math.unit(80, "kg"),
  2059. name: "Back",
  2060. image: {
  2061. source: "./media/characters/sofia-fluttertail/back.svg"
  2062. }
  2063. },
  2064. kneeling: {
  2065. height: math.unit(125, "cm"),
  2066. weight: math.unit(80, "kg"),
  2067. name: "Kneeling",
  2068. image: {
  2069. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2070. extra: 1033 / 977,
  2071. bottom: 23.7 / 1057
  2072. }
  2073. },
  2074. maw: {
  2075. height: math.unit(183 / 5, "cm"),
  2076. name: "Maw",
  2077. image: {
  2078. source: "./media/characters/sofia-fluttertail/maw.svg"
  2079. }
  2080. },
  2081. mawcloseup: {
  2082. height: math.unit(183 / 5 * 0.41, "cm"),
  2083. name: "Maw (Closeup)",
  2084. image: {
  2085. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2086. }
  2087. },
  2088. paws: {
  2089. height: math.unit(1.17, "feet"),
  2090. name: "Paws",
  2091. image: {
  2092. source: "./media/characters/sofia-fluttertail/paws.svg",
  2093. extra: 851 / 851,
  2094. bottom: 17 / 868
  2095. }
  2096. },
  2097. },
  2098. [
  2099. {
  2100. name: "Normal",
  2101. height: math.unit(1.83, "meter")
  2102. },
  2103. {
  2104. name: "Size Thief",
  2105. height: math.unit(18, "feet")
  2106. },
  2107. {
  2108. name: "50 Foot Collie",
  2109. height: math.unit(50, "feet")
  2110. },
  2111. {
  2112. name: "Macro",
  2113. height: math.unit(96, "feet"),
  2114. default: true
  2115. },
  2116. {
  2117. name: "Megamerger",
  2118. height: math.unit(650, "feet")
  2119. },
  2120. ]
  2121. ))
  2122. characterMakers.push(() => makeCharacter(
  2123. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2124. {
  2125. front: {
  2126. height: math.unit(7, "feet"),
  2127. weight: math.unit(100, "kg"),
  2128. name: "Front",
  2129. image: {
  2130. source: "./media/characters/march/front.svg",
  2131. extra: 1992/1851,
  2132. bottom: 39/2031
  2133. }
  2134. },
  2135. foot: {
  2136. height: math.unit(0.9, "feet"),
  2137. name: "Foot",
  2138. image: {
  2139. source: "./media/characters/march/foot.svg"
  2140. }
  2141. },
  2142. },
  2143. [
  2144. {
  2145. name: "Normal",
  2146. height: math.unit(7.9, "feet")
  2147. },
  2148. {
  2149. name: "Macro",
  2150. height: math.unit(220, "meters")
  2151. },
  2152. {
  2153. name: "Megamacro",
  2154. height: math.unit(2.98, "km"),
  2155. default: true
  2156. },
  2157. {
  2158. name: "Gigamacro",
  2159. height: math.unit(15963, "km")
  2160. },
  2161. {
  2162. name: "Teramacro",
  2163. height: math.unit(2980000000, "km")
  2164. },
  2165. {
  2166. name: "Examacro",
  2167. height: math.unit(250, "parsecs")
  2168. },
  2169. ]
  2170. ))
  2171. characterMakers.push(() => makeCharacter(
  2172. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2173. {
  2174. front: {
  2175. height: math.unit(6, "feet"),
  2176. weight: math.unit(60, "kg"),
  2177. name: "Front",
  2178. image: {
  2179. source: "./media/characters/noir/front.svg",
  2180. extra: 1,
  2181. bottom: 0.032
  2182. }
  2183. },
  2184. },
  2185. [
  2186. {
  2187. name: "Normal",
  2188. height: math.unit(6.6, "feet")
  2189. },
  2190. {
  2191. name: "Macro",
  2192. height: math.unit(500, "feet")
  2193. },
  2194. {
  2195. name: "Megamacro",
  2196. height: math.unit(2.5, "km"),
  2197. default: true
  2198. },
  2199. {
  2200. name: "Gigamacro",
  2201. height: math.unit(22500, "km")
  2202. },
  2203. {
  2204. name: "Teramacro",
  2205. height: math.unit(2500000000, "km")
  2206. },
  2207. {
  2208. name: "Examacro",
  2209. height: math.unit(200, "parsecs")
  2210. },
  2211. ]
  2212. ))
  2213. characterMakers.push(() => makeCharacter(
  2214. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2215. {
  2216. front: {
  2217. height: math.unit(7, "feet"),
  2218. weight: math.unit(100, "kg"),
  2219. name: "Front",
  2220. image: {
  2221. source: "./media/characters/okuri/front.svg",
  2222. extra: 1,
  2223. bottom: 0.037
  2224. }
  2225. },
  2226. back: {
  2227. height: math.unit(7, "feet"),
  2228. weight: math.unit(100, "kg"),
  2229. name: "Back",
  2230. image: {
  2231. source: "./media/characters/okuri/back.svg",
  2232. extra: 1,
  2233. bottom: 0.007
  2234. }
  2235. },
  2236. },
  2237. [
  2238. {
  2239. name: "Megamacro",
  2240. height: math.unit(100, "miles"),
  2241. default: true
  2242. },
  2243. ]
  2244. ))
  2245. characterMakers.push(() => makeCharacter(
  2246. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2247. {
  2248. front: {
  2249. height: math.unit(7, "feet"),
  2250. weight: math.unit(100, "kg"),
  2251. name: "Front",
  2252. image: {
  2253. source: "./media/characters/manny/front.svg",
  2254. extra: 1,
  2255. bottom: 0.06
  2256. }
  2257. },
  2258. back: {
  2259. height: math.unit(7, "feet"),
  2260. weight: math.unit(100, "kg"),
  2261. name: "Back",
  2262. image: {
  2263. source: "./media/characters/manny/back.svg",
  2264. extra: 1,
  2265. bottom: 0.014
  2266. }
  2267. },
  2268. },
  2269. [
  2270. {
  2271. name: "Normal",
  2272. height: math.unit(7, "feet"),
  2273. },
  2274. {
  2275. name: "Macro",
  2276. height: math.unit(78, "feet"),
  2277. default: true
  2278. },
  2279. {
  2280. name: "Macro+",
  2281. height: math.unit(300, "meters")
  2282. },
  2283. {
  2284. name: "Macro++",
  2285. height: math.unit(2400, "meters")
  2286. },
  2287. {
  2288. name: "Megamacro",
  2289. height: math.unit(5167, "meters")
  2290. },
  2291. {
  2292. name: "Gigamacro",
  2293. height: math.unit(41769, "miles")
  2294. },
  2295. ]
  2296. ))
  2297. characterMakers.push(() => makeCharacter(
  2298. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2299. {
  2300. front: {
  2301. height: math.unit(7, "feet"),
  2302. weight: math.unit(100, "kg"),
  2303. name: "Front",
  2304. image: {
  2305. source: "./media/characters/adake/front-1.svg"
  2306. }
  2307. },
  2308. frontAlt: {
  2309. height: math.unit(7, "feet"),
  2310. weight: math.unit(100, "kg"),
  2311. name: "Front (Alt)",
  2312. image: {
  2313. source: "./media/characters/adake/front-2.svg",
  2314. extra: 1,
  2315. bottom: 0.01
  2316. }
  2317. },
  2318. back: {
  2319. height: math.unit(7, "feet"),
  2320. weight: math.unit(100, "kg"),
  2321. name: "Back",
  2322. image: {
  2323. source: "./media/characters/adake/back.svg",
  2324. }
  2325. },
  2326. kneel: {
  2327. height: math.unit(5.385, "feet"),
  2328. weight: math.unit(100, "kg"),
  2329. name: "Kneeling",
  2330. image: {
  2331. source: "./media/characters/adake/kneel.svg",
  2332. bottom: 0.052
  2333. }
  2334. },
  2335. },
  2336. [
  2337. {
  2338. name: "Normal",
  2339. height: math.unit(7, "feet"),
  2340. },
  2341. {
  2342. name: "Macro",
  2343. height: math.unit(78, "feet"),
  2344. default: true
  2345. },
  2346. {
  2347. name: "Macro+",
  2348. height: math.unit(300, "meters")
  2349. },
  2350. {
  2351. name: "Macro++",
  2352. height: math.unit(2400, "meters")
  2353. },
  2354. {
  2355. name: "Megamacro",
  2356. height: math.unit(5167, "meters")
  2357. },
  2358. {
  2359. name: "Gigamacro",
  2360. height: math.unit(41769, "miles")
  2361. },
  2362. ]
  2363. ))
  2364. characterMakers.push(() => makeCharacter(
  2365. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2366. {
  2367. front: {
  2368. height: math.unit(1.65, "meters"),
  2369. weight: math.unit(50, "kg"),
  2370. name: "Front",
  2371. image: {
  2372. source: "./media/characters/elijah/front.svg",
  2373. extra: 858 / 830,
  2374. bottom: 95.5 / 953.8559
  2375. }
  2376. },
  2377. back: {
  2378. height: math.unit(1.65, "meters"),
  2379. weight: math.unit(50, "kg"),
  2380. name: "Back",
  2381. image: {
  2382. source: "./media/characters/elijah/back.svg",
  2383. extra: 895 / 850,
  2384. bottom: 5.3 / 897.956
  2385. }
  2386. },
  2387. frontNsfw: {
  2388. height: math.unit(1.65, "meters"),
  2389. weight: math.unit(50, "kg"),
  2390. name: "Front (NSFW)",
  2391. image: {
  2392. source: "./media/characters/elijah/front-nsfw.svg",
  2393. extra: 858 / 830,
  2394. bottom: 95.5 / 953.8559
  2395. }
  2396. },
  2397. backNsfw: {
  2398. height: math.unit(1.65, "meters"),
  2399. weight: math.unit(50, "kg"),
  2400. name: "Back (NSFW)",
  2401. image: {
  2402. source: "./media/characters/elijah/back-nsfw.svg",
  2403. extra: 895 / 850,
  2404. bottom: 5.3 / 897.956
  2405. }
  2406. },
  2407. dick: {
  2408. height: math.unit(1, "feet"),
  2409. name: "Dick",
  2410. image: {
  2411. source: "./media/characters/elijah/dick.svg"
  2412. }
  2413. },
  2414. beakOpen: {
  2415. height: math.unit(1.25, "feet"),
  2416. name: "Beak (Open)",
  2417. image: {
  2418. source: "./media/characters/elijah/beak-open.svg"
  2419. }
  2420. },
  2421. beakShut: {
  2422. height: math.unit(1.25, "feet"),
  2423. name: "Beak (Shut)",
  2424. image: {
  2425. source: "./media/characters/elijah/beak-shut.svg"
  2426. }
  2427. },
  2428. footFlexing: {
  2429. height: math.unit(1.61, "feet"),
  2430. name: "Foot (Flexing)",
  2431. image: {
  2432. source: "./media/characters/elijah/foot-flexing.svg"
  2433. }
  2434. },
  2435. footStepping: {
  2436. height: math.unit(1.44, "feet"),
  2437. name: "Foot (Stepping)",
  2438. image: {
  2439. source: "./media/characters/elijah/foot-stepping.svg"
  2440. }
  2441. },
  2442. plantigradeLeg: {
  2443. height: math.unit(2.34, "feet"),
  2444. name: "Plantigrade Leg",
  2445. image: {
  2446. source: "./media/characters/elijah/plantigrade-leg.svg"
  2447. }
  2448. },
  2449. plantigradeFootLeft: {
  2450. height: math.unit(0.9, "feet"),
  2451. name: "Plantigrade Foot (Left)",
  2452. image: {
  2453. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2454. }
  2455. },
  2456. plantigradeFootRight: {
  2457. height: math.unit(0.9, "feet"),
  2458. name: "Plantigrade Foot (Right)",
  2459. image: {
  2460. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2461. }
  2462. },
  2463. },
  2464. [
  2465. {
  2466. name: "Normal",
  2467. height: math.unit(1.65, "meters")
  2468. },
  2469. {
  2470. name: "Macro",
  2471. height: math.unit(55, "meters"),
  2472. default: true
  2473. },
  2474. {
  2475. name: "Macro+",
  2476. height: math.unit(105, "meters")
  2477. },
  2478. ]
  2479. ))
  2480. characterMakers.push(() => makeCharacter(
  2481. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2482. {
  2483. front: {
  2484. height: math.unit(7 + 2/12, "feet"),
  2485. weight: math.unit(320, "kg"),
  2486. name: "Front",
  2487. image: {
  2488. source: "./media/characters/rai/front.svg",
  2489. extra: 1802/1696,
  2490. bottom: 68/1870
  2491. }
  2492. },
  2493. frontDressed: {
  2494. height: math.unit(7 + 2/12, "feet"),
  2495. weight: math.unit(320, "kg"),
  2496. name: "Front (Dressed)",
  2497. image: {
  2498. source: "./media/characters/rai/front-dressed.svg",
  2499. extra: 1802/1696,
  2500. bottom: 68/1870
  2501. }
  2502. },
  2503. side: {
  2504. height: math.unit(7 + 2/12, "feet"),
  2505. weight: math.unit(320, "kg"),
  2506. name: "Side",
  2507. image: {
  2508. source: "./media/characters/rai/side.svg",
  2509. extra: 1789/1710,
  2510. bottom: 115/1904
  2511. }
  2512. },
  2513. back: {
  2514. height: math.unit(7 + 2/12, "feet"),
  2515. weight: math.unit(320, "kg"),
  2516. name: "Back",
  2517. image: {
  2518. source: "./media/characters/rai/back.svg",
  2519. extra: 1770/1707,
  2520. bottom: 28/1798
  2521. }
  2522. },
  2523. feral: {
  2524. height: math.unit(9.5, "feet"),
  2525. weight: math.unit(640, "kg"),
  2526. name: "Feral",
  2527. image: {
  2528. source: "./media/characters/rai/feral.svg",
  2529. extra: 945/553,
  2530. bottom: 176/1121
  2531. }
  2532. },
  2533. dragon: {
  2534. height: math.unit(23, "feet"),
  2535. weight: math.unit(50000, "lb"),
  2536. name: "Dragon",
  2537. image: {
  2538. source: "./media/characters/rai/dragon.svg",
  2539. extra: 2498 / 2030,
  2540. bottom: 85.2 / 2584
  2541. }
  2542. },
  2543. maw: {
  2544. height: math.unit(1.69, "feet"),
  2545. name: "Maw",
  2546. image: {
  2547. source: "./media/characters/rai/maw.svg"
  2548. }
  2549. },
  2550. },
  2551. [
  2552. {
  2553. name: "Normal",
  2554. height: math.unit(7 + 2/12, "feet")
  2555. },
  2556. {
  2557. name: "Big",
  2558. height: math.unit(11, "feet")
  2559. },
  2560. {
  2561. name: "Macro",
  2562. height: math.unit(302, "feet"),
  2563. default: true
  2564. },
  2565. ]
  2566. ))
  2567. characterMakers.push(() => makeCharacter(
  2568. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2569. {
  2570. frontDressed: {
  2571. height: math.unit(216, "feet"),
  2572. weight: math.unit(7000000, "lb"),
  2573. name: "Front (Dressed)",
  2574. image: {
  2575. source: "./media/characters/jazzy/front-dressed.svg",
  2576. extra: 2738 / 2651,
  2577. bottom: 41.8 / 2786
  2578. }
  2579. },
  2580. backDressed: {
  2581. height: math.unit(216, "feet"),
  2582. weight: math.unit(7000000, "lb"),
  2583. name: "Back (Dressed)",
  2584. image: {
  2585. source: "./media/characters/jazzy/back-dressed.svg",
  2586. extra: 2775 / 2673,
  2587. bottom: 36.8 / 2817
  2588. }
  2589. },
  2590. front: {
  2591. height: math.unit(216, "feet"),
  2592. weight: math.unit(7000000, "lb"),
  2593. name: "Front",
  2594. image: {
  2595. source: "./media/characters/jazzy/front.svg",
  2596. extra: 2738 / 2651,
  2597. bottom: 41.8 / 2786
  2598. }
  2599. },
  2600. back: {
  2601. height: math.unit(216, "feet"),
  2602. weight: math.unit(7000000, "lb"),
  2603. name: "Back",
  2604. image: {
  2605. source: "./media/characters/jazzy/back.svg",
  2606. extra: 2775 / 2673,
  2607. bottom: 36.8 / 2817
  2608. }
  2609. },
  2610. maw: {
  2611. height: math.unit(20, "feet"),
  2612. name: "Maw",
  2613. image: {
  2614. source: "./media/characters/jazzy/maw.svg"
  2615. }
  2616. },
  2617. paws: {
  2618. height: math.unit(27.5, "feet"),
  2619. name: "Paws",
  2620. image: {
  2621. source: "./media/characters/jazzy/paws.svg"
  2622. }
  2623. },
  2624. eye: {
  2625. height: math.unit(4.4, "feet"),
  2626. name: "Eye",
  2627. image: {
  2628. source: "./media/characters/jazzy/eye.svg"
  2629. }
  2630. },
  2631. droneOffense: {
  2632. height: math.unit(9.5, "inches"),
  2633. name: "Drone (Offense)",
  2634. image: {
  2635. source: "./media/characters/jazzy/drone-offense.svg"
  2636. }
  2637. },
  2638. droneRecon: {
  2639. height: math.unit(9.5, "inches"),
  2640. name: "Drone (Recon)",
  2641. image: {
  2642. source: "./media/characters/jazzy/drone-recon.svg"
  2643. }
  2644. },
  2645. droneDefense: {
  2646. height: math.unit(9.5, "inches"),
  2647. name: "Drone (Defense)",
  2648. image: {
  2649. source: "./media/characters/jazzy/drone-defense.svg"
  2650. }
  2651. },
  2652. },
  2653. [
  2654. {
  2655. name: "Macro",
  2656. height: math.unit(216, "feet"),
  2657. default: true
  2658. },
  2659. ]
  2660. ))
  2661. characterMakers.push(() => makeCharacter(
  2662. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2663. {
  2664. front: {
  2665. height: math.unit(9 + 6/12, "feet"),
  2666. weight: math.unit(700, "lb"),
  2667. name: "Front",
  2668. image: {
  2669. source: "./media/characters/flamm/front.svg",
  2670. extra: 1751/1632,
  2671. bottom: 46/1797
  2672. }
  2673. },
  2674. buff: {
  2675. height: math.unit(9 + 6/12, "feet"),
  2676. weight: math.unit(950, "lb"),
  2677. name: "Buff",
  2678. image: {
  2679. source: "./media/characters/flamm/buff.svg",
  2680. extra: 3018/2874,
  2681. bottom: 221/3239
  2682. }
  2683. },
  2684. },
  2685. [
  2686. {
  2687. name: "Normal",
  2688. height: math.unit(9.5, "feet")
  2689. },
  2690. {
  2691. name: "Macro",
  2692. height: math.unit(200, "feet"),
  2693. default: true
  2694. },
  2695. ]
  2696. ))
  2697. characterMakers.push(() => makeCharacter(
  2698. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2699. {
  2700. front: {
  2701. height: math.unit(5 + 3/12, "feet"),
  2702. weight: math.unit(60, "kg"),
  2703. name: "Front",
  2704. image: {
  2705. source: "./media/characters/zephiro/front.svg",
  2706. extra: 2309 / 2162,
  2707. bottom: 0.069
  2708. }
  2709. },
  2710. side: {
  2711. height: math.unit(5 + 3/12, "feet"),
  2712. weight: math.unit(60, "kg"),
  2713. name: "Side",
  2714. image: {
  2715. source: "./media/characters/zephiro/side.svg",
  2716. extra: 2403 / 2279,
  2717. bottom: 0.015
  2718. }
  2719. },
  2720. back: {
  2721. height: math.unit(5 + 3/12, "feet"),
  2722. weight: math.unit(60, "kg"),
  2723. name: "Back",
  2724. image: {
  2725. source: "./media/characters/zephiro/back.svg",
  2726. extra: 2373 / 2244,
  2727. bottom: 0.013
  2728. }
  2729. },
  2730. hand: {
  2731. height: math.unit(0.68, "feet"),
  2732. name: "Hand",
  2733. image: {
  2734. source: "./media/characters/zephiro/hand.svg"
  2735. }
  2736. },
  2737. paw: {
  2738. height: math.unit(1, "feet"),
  2739. name: "Paw",
  2740. image: {
  2741. source: "./media/characters/zephiro/paw.svg"
  2742. }
  2743. },
  2744. beans: {
  2745. height: math.unit(0.93, "feet"),
  2746. name: "Beans",
  2747. image: {
  2748. source: "./media/characters/zephiro/beans.svg"
  2749. }
  2750. },
  2751. },
  2752. [
  2753. {
  2754. name: "Micro",
  2755. height: math.unit(3, "inches")
  2756. },
  2757. {
  2758. name: "Normal",
  2759. height: math.unit(5 + 3 / 12, "feet"),
  2760. default: true
  2761. },
  2762. {
  2763. name: "Macro",
  2764. height: math.unit(118, "feet")
  2765. },
  2766. ]
  2767. ))
  2768. characterMakers.push(() => makeCharacter(
  2769. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2770. {
  2771. front: {
  2772. height: math.unit(5, "feet"),
  2773. weight: math.unit(90, "kg"),
  2774. name: "Front",
  2775. image: {
  2776. source: "./media/characters/fory/front.svg",
  2777. extra: 2862 / 2674,
  2778. bottom: 180 / 3043.8
  2779. }
  2780. },
  2781. back: {
  2782. height: math.unit(5, "feet"),
  2783. weight: math.unit(90, "kg"),
  2784. name: "Back",
  2785. image: {
  2786. source: "./media/characters/fory/back.svg",
  2787. extra: 2962 / 2791,
  2788. bottom: 106 / 3071.8
  2789. }
  2790. },
  2791. foot: {
  2792. height: math.unit(2.14, "feet"),
  2793. name: "Foot",
  2794. image: {
  2795. source: "./media/characters/fory/foot.svg"
  2796. }
  2797. },
  2798. },
  2799. [
  2800. {
  2801. name: "Normal",
  2802. height: math.unit(5, "feet")
  2803. },
  2804. {
  2805. name: "Macro",
  2806. height: math.unit(50, "feet"),
  2807. default: true
  2808. },
  2809. {
  2810. name: "Megamacro",
  2811. height: math.unit(10, "miles")
  2812. },
  2813. {
  2814. name: "Gigamacro",
  2815. height: math.unit(5, "earths")
  2816. },
  2817. ]
  2818. ))
  2819. characterMakers.push(() => makeCharacter(
  2820. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2821. {
  2822. front: {
  2823. height: math.unit(7, "feet"),
  2824. weight: math.unit(90, "kg"),
  2825. name: "Front",
  2826. image: {
  2827. source: "./media/characters/kurrikage/front.svg",
  2828. extra: 1845/1733,
  2829. bottom: 119/1964
  2830. }
  2831. },
  2832. back: {
  2833. height: math.unit(7, "feet"),
  2834. weight: math.unit(90, "kg"),
  2835. name: "Back",
  2836. image: {
  2837. source: "./media/characters/kurrikage/back.svg",
  2838. extra: 1790/1677,
  2839. bottom: 61/1851
  2840. }
  2841. },
  2842. dressed: {
  2843. height: math.unit(7, "feet"),
  2844. weight: math.unit(90, "kg"),
  2845. name: "Dressed",
  2846. image: {
  2847. source: "./media/characters/kurrikage/dressed.svg",
  2848. extra: 1845/1733,
  2849. bottom: 119/1964
  2850. }
  2851. },
  2852. foot: {
  2853. height: math.unit(1.5, "feet"),
  2854. name: "Foot",
  2855. image: {
  2856. source: "./media/characters/kurrikage/foot.svg"
  2857. }
  2858. },
  2859. staff: {
  2860. height: math.unit(6.7, "feet"),
  2861. name: "Staff",
  2862. image: {
  2863. source: "./media/characters/kurrikage/staff.svg"
  2864. }
  2865. },
  2866. peek: {
  2867. height: math.unit(1.05, "feet"),
  2868. name: "Peeking",
  2869. image: {
  2870. source: "./media/characters/kurrikage/peek.svg",
  2871. bottom: 0.08
  2872. }
  2873. },
  2874. },
  2875. [
  2876. {
  2877. name: "Normal",
  2878. height: math.unit(12, "feet"),
  2879. default: true
  2880. },
  2881. {
  2882. name: "Big",
  2883. height: math.unit(20, "feet")
  2884. },
  2885. {
  2886. name: "Macro",
  2887. height: math.unit(500, "feet")
  2888. },
  2889. {
  2890. name: "Megamacro",
  2891. height: math.unit(20, "miles")
  2892. },
  2893. ]
  2894. ))
  2895. characterMakers.push(() => makeCharacter(
  2896. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2897. {
  2898. front: {
  2899. height: math.unit(6, "feet"),
  2900. weight: math.unit(75, "kg"),
  2901. name: "Front",
  2902. image: {
  2903. source: "./media/characters/shingo/front.svg",
  2904. extra: 1900/1825,
  2905. bottom: 82/1982
  2906. }
  2907. },
  2908. side: {
  2909. height: math.unit(6, "feet"),
  2910. weight: math.unit(75, "kg"),
  2911. name: "Side",
  2912. image: {
  2913. source: "./media/characters/shingo/side.svg",
  2914. extra: 1930/1865,
  2915. bottom: 16/1946
  2916. }
  2917. },
  2918. back: {
  2919. height: math.unit(6, "feet"),
  2920. weight: math.unit(75, "kg"),
  2921. name: "Back",
  2922. image: {
  2923. source: "./media/characters/shingo/back.svg",
  2924. extra: 1922/1852,
  2925. bottom: 16/1938
  2926. }
  2927. },
  2928. frontDressed: {
  2929. height: math.unit(6, "feet"),
  2930. weight: math.unit(150, "lb"),
  2931. name: "Front-dressed",
  2932. image: {
  2933. source: "./media/characters/shingo/front-dressed.svg",
  2934. extra: 1900/1825,
  2935. bottom: 82/1982
  2936. }
  2937. },
  2938. paw: {
  2939. height: math.unit(1.29, "feet"),
  2940. name: "Paw",
  2941. image: {
  2942. source: "./media/characters/shingo/paw.svg"
  2943. }
  2944. },
  2945. hand: {
  2946. height: math.unit(1.07, "feet"),
  2947. name: "Hand",
  2948. image: {
  2949. source: "./media/characters/shingo/hand.svg"
  2950. }
  2951. },
  2952. frontAlt: {
  2953. height: math.unit(6, "feet"),
  2954. weight: math.unit(75, "kg"),
  2955. name: "Front (Alt)",
  2956. image: {
  2957. source: "./media/characters/shingo/front-alt.svg",
  2958. extra: 3511 / 3338,
  2959. bottom: 0.005
  2960. }
  2961. },
  2962. frontAlt2: {
  2963. height: math.unit(6, "feet"),
  2964. weight: math.unit(75, "kg"),
  2965. name: "Front (Alt 2)",
  2966. image: {
  2967. source: "./media/characters/shingo/front-alt-2.svg",
  2968. extra: 706/681,
  2969. bottom: 11/717
  2970. }
  2971. },
  2972. pawAlt: {
  2973. height: math.unit(1, "feet"),
  2974. name: "Paw (Alt)",
  2975. image: {
  2976. source: "./media/characters/shingo/paw-alt.svg"
  2977. }
  2978. },
  2979. },
  2980. [
  2981. {
  2982. name: "Micro",
  2983. height: math.unit(4, "inches")
  2984. },
  2985. {
  2986. name: "Normal",
  2987. height: math.unit(6, "feet"),
  2988. default: true
  2989. },
  2990. {
  2991. name: "Macro",
  2992. height: math.unit(108, "feet")
  2993. },
  2994. {
  2995. name: "Macro+",
  2996. height: math.unit(1500, "feet")
  2997. },
  2998. ]
  2999. ))
  3000. characterMakers.push(() => makeCharacter(
  3001. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3002. {
  3003. side: {
  3004. height: math.unit(6, "feet"),
  3005. weight: math.unit(75, "kg"),
  3006. name: "Side",
  3007. image: {
  3008. source: "./media/characters/aigey/side.svg"
  3009. }
  3010. },
  3011. },
  3012. [
  3013. {
  3014. name: "Macro",
  3015. height: math.unit(200, "feet"),
  3016. default: true
  3017. },
  3018. {
  3019. name: "Megamacro",
  3020. height: math.unit(100, "miles")
  3021. },
  3022. ]
  3023. )
  3024. )
  3025. characterMakers.push(() => makeCharacter(
  3026. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3027. {
  3028. front: {
  3029. height: math.unit(5 + 5 / 12, "feet"),
  3030. weight: math.unit(75, "kg"),
  3031. name: "Front",
  3032. image: {
  3033. source: "./media/characters/natasha/front.svg",
  3034. extra: 859 / 824,
  3035. bottom: 23 / 879.6
  3036. }
  3037. },
  3038. frontNsfw: {
  3039. height: math.unit(5 + 5 / 12, "feet"),
  3040. weight: math.unit(75, "kg"),
  3041. name: "Front (NSFW)",
  3042. image: {
  3043. source: "./media/characters/natasha/front-nsfw.svg",
  3044. extra: 859 / 824,
  3045. bottom: 23 / 879.6
  3046. }
  3047. },
  3048. frontErect: {
  3049. height: math.unit(5 + 5 / 12, "feet"),
  3050. weight: math.unit(75, "kg"),
  3051. name: "Front (Erect)",
  3052. image: {
  3053. source: "./media/characters/natasha/front-erect.svg",
  3054. extra: 859 / 824,
  3055. bottom: 23 / 879.6
  3056. }
  3057. },
  3058. back: {
  3059. height: math.unit(5 + 5 / 12, "feet"),
  3060. weight: math.unit(75, "kg"),
  3061. name: "Back",
  3062. image: {
  3063. source: "./media/characters/natasha/back.svg",
  3064. extra: 887.9 / 852.6,
  3065. bottom: 9.7 / 896.4
  3066. }
  3067. },
  3068. backAlt: {
  3069. height: math.unit(5 + 5 / 12, "feet"),
  3070. weight: math.unit(75, "kg"),
  3071. name: "Back (Alt)",
  3072. image: {
  3073. source: "./media/characters/natasha/back-alt.svg",
  3074. extra: 1236.7 / 1192,
  3075. bottom: 22.3 / 1258.2
  3076. }
  3077. },
  3078. dick: {
  3079. height: math.unit(1.772, "feet"),
  3080. name: "Dick",
  3081. image: {
  3082. source: "./media/characters/natasha/dick.svg"
  3083. }
  3084. },
  3085. paw: {
  3086. height: math.unit(0.250, "meters"),
  3087. name: "Paw",
  3088. image: {
  3089. source: "./media/characters/natasha/paw.svg"
  3090. }
  3091. },
  3092. },
  3093. [
  3094. {
  3095. name: "Normal",
  3096. height: math.unit(5 + 5 / 12, "feet")
  3097. },
  3098. {
  3099. name: "Large",
  3100. height: math.unit(12, "feet")
  3101. },
  3102. {
  3103. name: "Macro",
  3104. height: math.unit(100, "feet"),
  3105. default: true
  3106. },
  3107. {
  3108. name: "Macro+",
  3109. height: math.unit(260, "feet")
  3110. },
  3111. {
  3112. name: "Macro++",
  3113. height: math.unit(1, "mile")
  3114. },
  3115. ]
  3116. ))
  3117. characterMakers.push(() => makeCharacter(
  3118. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3119. {
  3120. front: {
  3121. height: math.unit(6, "feet"),
  3122. weight: math.unit(75, "kg"),
  3123. name: "Front",
  3124. image: {
  3125. source: "./media/characters/malik/front.svg"
  3126. }
  3127. },
  3128. side: {
  3129. height: math.unit(6, "feet"),
  3130. weight: math.unit(75, "kg"),
  3131. name: "Side",
  3132. image: {
  3133. source: "./media/characters/malik/side.svg",
  3134. extra: 1.1539
  3135. }
  3136. },
  3137. back: {
  3138. height: math.unit(6, "feet"),
  3139. weight: math.unit(75, "kg"),
  3140. name: "Back",
  3141. image: {
  3142. source: "./media/characters/malik/back.svg"
  3143. }
  3144. },
  3145. },
  3146. [
  3147. {
  3148. name: "Macro",
  3149. height: math.unit(156, "feet"),
  3150. default: true
  3151. },
  3152. {
  3153. name: "Macro+",
  3154. height: math.unit(1188, "feet")
  3155. },
  3156. ]
  3157. ))
  3158. characterMakers.push(() => makeCharacter(
  3159. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3160. {
  3161. front: {
  3162. height: math.unit(6, "feet"),
  3163. weight: math.unit(75, "kg"),
  3164. name: "Front",
  3165. image: {
  3166. source: "./media/characters/sefer/front.svg",
  3167. extra: 848 / 659,
  3168. bottom: 28.3 / 876.442
  3169. }
  3170. },
  3171. back: {
  3172. height: math.unit(6, "feet"),
  3173. weight: math.unit(75, "kg"),
  3174. name: "Back",
  3175. image: {
  3176. source: "./media/characters/sefer/back.svg",
  3177. extra: 864 / 695,
  3178. bottom: 10 / 871
  3179. }
  3180. },
  3181. frontDressed: {
  3182. height: math.unit(6, "feet"),
  3183. weight: math.unit(75, "kg"),
  3184. name: "Front (Dressed)",
  3185. image: {
  3186. source: "./media/characters/sefer/front-dressed.svg",
  3187. extra: 839 / 653,
  3188. bottom: 37.6 / 878
  3189. }
  3190. },
  3191. },
  3192. [
  3193. {
  3194. name: "Normal",
  3195. height: math.unit(6, "feet"),
  3196. default: true
  3197. },
  3198. ]
  3199. ))
  3200. characterMakers.push(() => makeCharacter(
  3201. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3202. {
  3203. body: {
  3204. height: math.unit(2.2428, "meter"),
  3205. weight: math.unit(124.738, "kg"),
  3206. name: "Body",
  3207. image: {
  3208. extra: 1225 / 1050,
  3209. source: "./media/characters/north/front.svg"
  3210. }
  3211. }
  3212. },
  3213. [
  3214. {
  3215. name: "Micro",
  3216. height: math.unit(4, "inches")
  3217. },
  3218. {
  3219. name: "Macro",
  3220. height: math.unit(63, "meters")
  3221. },
  3222. {
  3223. name: "Megamacro",
  3224. height: math.unit(101, "miles"),
  3225. default: true
  3226. }
  3227. ]
  3228. ))
  3229. characterMakers.push(() => makeCharacter(
  3230. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3231. {
  3232. angled: {
  3233. height: math.unit(4, "meter"),
  3234. weight: math.unit(150, "kg"),
  3235. name: "Angled",
  3236. image: {
  3237. source: "./media/characters/talan/angled-sfw.svg",
  3238. bottom: 29 / 3734
  3239. }
  3240. },
  3241. angledNsfw: {
  3242. height: math.unit(4, "meter"),
  3243. weight: math.unit(150, "kg"),
  3244. name: "Angled (NSFW)",
  3245. image: {
  3246. source: "./media/characters/talan/angled-nsfw.svg",
  3247. bottom: 29 / 3734
  3248. }
  3249. },
  3250. frontNsfw: {
  3251. height: math.unit(4, "meter"),
  3252. weight: math.unit(150, "kg"),
  3253. name: "Front (NSFW)",
  3254. image: {
  3255. source: "./media/characters/talan/front-nsfw.svg",
  3256. bottom: 29 / 3734
  3257. }
  3258. },
  3259. sideNsfw: {
  3260. height: math.unit(4, "meter"),
  3261. weight: math.unit(150, "kg"),
  3262. name: "Side (NSFW)",
  3263. image: {
  3264. source: "./media/characters/talan/side-nsfw.svg",
  3265. bottom: 29 / 3734
  3266. }
  3267. },
  3268. back: {
  3269. height: math.unit(4, "meter"),
  3270. weight: math.unit(150, "kg"),
  3271. name: "Back",
  3272. image: {
  3273. source: "./media/characters/talan/back.svg"
  3274. }
  3275. },
  3276. dickBottom: {
  3277. height: math.unit(0.621, "meter"),
  3278. name: "Dick (Bottom)",
  3279. image: {
  3280. source: "./media/characters/talan/dick-bottom.svg"
  3281. }
  3282. },
  3283. dickTop: {
  3284. height: math.unit(0.621, "meter"),
  3285. name: "Dick (Top)",
  3286. image: {
  3287. source: "./media/characters/talan/dick-top.svg"
  3288. }
  3289. },
  3290. dickSide: {
  3291. height: math.unit(0.305, "meter"),
  3292. name: "Dick (Side)",
  3293. image: {
  3294. source: "./media/characters/talan/dick-side.svg"
  3295. }
  3296. },
  3297. dickFront: {
  3298. height: math.unit(0.305, "meter"),
  3299. name: "Dick (Front)",
  3300. image: {
  3301. source: "./media/characters/talan/dick-front.svg"
  3302. }
  3303. },
  3304. },
  3305. [
  3306. {
  3307. name: "Normal",
  3308. height: math.unit(4, "meters")
  3309. },
  3310. {
  3311. name: "Macro",
  3312. height: math.unit(100, "meters")
  3313. },
  3314. {
  3315. name: "Megamacro",
  3316. height: math.unit(2, "miles"),
  3317. default: true
  3318. },
  3319. {
  3320. name: "Gigamacro",
  3321. height: math.unit(5000, "miles")
  3322. },
  3323. {
  3324. name: "Teramacro",
  3325. height: math.unit(100, "parsecs")
  3326. }
  3327. ]
  3328. ))
  3329. characterMakers.push(() => makeCharacter(
  3330. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3331. {
  3332. front: {
  3333. height: math.unit(2, "meter"),
  3334. weight: math.unit(90, "kg"),
  3335. name: "Front",
  3336. image: {
  3337. source: "./media/characters/gael'rathus/front.svg"
  3338. }
  3339. },
  3340. frontAlt: {
  3341. height: math.unit(2, "meter"),
  3342. weight: math.unit(90, "kg"),
  3343. name: "Front (alt)",
  3344. image: {
  3345. source: "./media/characters/gael'rathus/front-alt.svg"
  3346. }
  3347. },
  3348. frontAlt2: {
  3349. height: math.unit(2, "meter"),
  3350. weight: math.unit(90, "kg"),
  3351. name: "Front (alt 2)",
  3352. image: {
  3353. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3354. }
  3355. }
  3356. },
  3357. [
  3358. {
  3359. name: "Normal",
  3360. height: math.unit(9, "feet"),
  3361. default: true
  3362. },
  3363. {
  3364. name: "Large",
  3365. height: math.unit(25, "feet")
  3366. },
  3367. {
  3368. name: "Macro",
  3369. height: math.unit(0.25, "miles")
  3370. },
  3371. {
  3372. name: "Megamacro",
  3373. height: math.unit(10, "miles")
  3374. }
  3375. ]
  3376. ))
  3377. characterMakers.push(() => makeCharacter(
  3378. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3379. {
  3380. side: {
  3381. height: math.unit(2, "meter"),
  3382. weight: math.unit(140, "kg"),
  3383. name: "Side",
  3384. image: {
  3385. source: "./media/characters/sosha/side.svg",
  3386. bottom: 0.042
  3387. }
  3388. },
  3389. },
  3390. [
  3391. {
  3392. name: "Normal",
  3393. height: math.unit(12, "feet"),
  3394. default: true
  3395. }
  3396. ]
  3397. ))
  3398. characterMakers.push(() => makeCharacter(
  3399. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3400. {
  3401. side: {
  3402. height: math.unit(5 + 5 / 12, "feet"),
  3403. weight: math.unit(170, "kg"),
  3404. name: "Side",
  3405. image: {
  3406. source: "./media/characters/runnola/side.svg",
  3407. extra: 741 / 448,
  3408. bottom: 0.05
  3409. }
  3410. },
  3411. },
  3412. [
  3413. {
  3414. name: "Small",
  3415. height: math.unit(3, "feet")
  3416. },
  3417. {
  3418. name: "Normal",
  3419. height: math.unit(5 + 5 / 12, "feet"),
  3420. default: true
  3421. },
  3422. {
  3423. name: "Big",
  3424. height: math.unit(10, "feet")
  3425. },
  3426. ]
  3427. ))
  3428. characterMakers.push(() => makeCharacter(
  3429. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3430. {
  3431. front: {
  3432. height: math.unit(2, "meter"),
  3433. weight: math.unit(50, "kg"),
  3434. name: "Front",
  3435. image: {
  3436. source: "./media/characters/kurribird/front.svg",
  3437. bottom: 0.015
  3438. }
  3439. },
  3440. frontAlt: {
  3441. height: math.unit(1.5, "meter"),
  3442. weight: math.unit(50, "kg"),
  3443. name: "Front (Alt)",
  3444. image: {
  3445. source: "./media/characters/kurribird/front-alt.svg",
  3446. extra: 1.45
  3447. }
  3448. },
  3449. },
  3450. [
  3451. {
  3452. name: "Normal",
  3453. height: math.unit(7, "feet")
  3454. },
  3455. {
  3456. name: "Big",
  3457. height: math.unit(12, "feet"),
  3458. default: true
  3459. },
  3460. {
  3461. name: "Macro",
  3462. height: math.unit(1500, "feet")
  3463. },
  3464. {
  3465. name: "Megamacro",
  3466. height: math.unit(2, "miles")
  3467. }
  3468. ]
  3469. ))
  3470. characterMakers.push(() => makeCharacter(
  3471. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3472. {
  3473. front: {
  3474. height: math.unit(2, "meter"),
  3475. weight: math.unit(80, "kg"),
  3476. name: "Front",
  3477. image: {
  3478. source: "./media/characters/elbial/front.svg",
  3479. extra: 1643 / 1556,
  3480. bottom: 60.2 / 1696
  3481. }
  3482. },
  3483. side: {
  3484. height: math.unit(2, "meter"),
  3485. weight: math.unit(80, "kg"),
  3486. name: "Side",
  3487. image: {
  3488. source: "./media/characters/elbial/side.svg",
  3489. extra: 1601/1528,
  3490. bottom: 97/1698
  3491. }
  3492. },
  3493. back: {
  3494. height: math.unit(2, "meter"),
  3495. weight: math.unit(80, "kg"),
  3496. name: "Back",
  3497. image: {
  3498. source: "./media/characters/elbial/back.svg",
  3499. extra: 1653/1569,
  3500. bottom: 20/1673
  3501. }
  3502. },
  3503. frontDressed: {
  3504. height: math.unit(2, "meter"),
  3505. weight: math.unit(80, "kg"),
  3506. name: "Front (Dressed)",
  3507. image: {
  3508. source: "./media/characters/elbial/front-dressed.svg",
  3509. extra: 1638/1569,
  3510. bottom: 70/1708
  3511. }
  3512. },
  3513. genitals: {
  3514. height: math.unit(2 / 3.367, "meter"),
  3515. name: "Genitals",
  3516. image: {
  3517. source: "./media/characters/elbial/genitals.svg"
  3518. }
  3519. },
  3520. },
  3521. [
  3522. {
  3523. name: "Large",
  3524. height: math.unit(100, "feet")
  3525. },
  3526. {
  3527. name: "Macro",
  3528. height: math.unit(500, "feet"),
  3529. default: true
  3530. },
  3531. {
  3532. name: "Megamacro",
  3533. height: math.unit(10, "miles")
  3534. },
  3535. {
  3536. name: "Gigamacro",
  3537. height: math.unit(25000, "miles")
  3538. },
  3539. {
  3540. name: "Full-Size",
  3541. height: math.unit(8000000, "gigaparsecs")
  3542. }
  3543. ]
  3544. ))
  3545. characterMakers.push(() => makeCharacter(
  3546. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3547. {
  3548. front: {
  3549. height: math.unit(2, "meter"),
  3550. weight: math.unit(60, "kg"),
  3551. name: "Front",
  3552. image: {
  3553. source: "./media/characters/noah/front.svg"
  3554. }
  3555. },
  3556. talons: {
  3557. height: math.unit(0.315, "meter"),
  3558. name: "Talons",
  3559. image: {
  3560. source: "./media/characters/noah/talons.svg"
  3561. }
  3562. }
  3563. },
  3564. [
  3565. {
  3566. name: "Large",
  3567. height: math.unit(50, "feet")
  3568. },
  3569. {
  3570. name: "Macro",
  3571. height: math.unit(750, "feet"),
  3572. default: true
  3573. },
  3574. {
  3575. name: "Megamacro",
  3576. height: math.unit(50, "miles")
  3577. },
  3578. {
  3579. name: "Gigamacro",
  3580. height: math.unit(100000, "miles")
  3581. },
  3582. {
  3583. name: "Full-Size",
  3584. height: math.unit(3000000000, "miles")
  3585. }
  3586. ]
  3587. ))
  3588. characterMakers.push(() => makeCharacter(
  3589. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3590. {
  3591. front: {
  3592. height: math.unit(2, "meter"),
  3593. weight: math.unit(80, "kg"),
  3594. name: "Front",
  3595. image: {
  3596. source: "./media/characters/natalya/front.svg"
  3597. }
  3598. },
  3599. back: {
  3600. height: math.unit(2, "meter"),
  3601. weight: math.unit(80, "kg"),
  3602. name: "Back",
  3603. image: {
  3604. source: "./media/characters/natalya/back.svg"
  3605. }
  3606. }
  3607. },
  3608. [
  3609. {
  3610. name: "Normal",
  3611. height: math.unit(150, "feet"),
  3612. default: true
  3613. },
  3614. {
  3615. name: "Megamacro",
  3616. height: math.unit(5, "miles")
  3617. },
  3618. {
  3619. name: "Full-Size",
  3620. height: math.unit(600, "kiloparsecs")
  3621. }
  3622. ]
  3623. ))
  3624. characterMakers.push(() => makeCharacter(
  3625. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3626. {
  3627. front: {
  3628. height: math.unit(2, "meter"),
  3629. weight: math.unit(50, "kg"),
  3630. name: "Front",
  3631. image: {
  3632. source: "./media/characters/erestrebah/front.svg",
  3633. extra: 1262/1162,
  3634. bottom: 96/1358
  3635. }
  3636. },
  3637. back: {
  3638. height: math.unit(2, "meter"),
  3639. weight: math.unit(50, "kg"),
  3640. name: "Back",
  3641. image: {
  3642. source: "./media/characters/erestrebah/back.svg",
  3643. extra: 1257/1139,
  3644. bottom: 13/1270
  3645. }
  3646. },
  3647. wing: {
  3648. height: math.unit(2, "meter"),
  3649. weight: math.unit(50, "kg"),
  3650. name: "Wing",
  3651. image: {
  3652. source: "./media/characters/erestrebah/wing.svg",
  3653. extra: 1262/1162,
  3654. bottom: 96/1358
  3655. }
  3656. },
  3657. mouth: {
  3658. height: math.unit(0.39, "feet"),
  3659. name: "Mouth",
  3660. image: {
  3661. source: "./media/characters/erestrebah/mouth.svg"
  3662. }
  3663. }
  3664. },
  3665. [
  3666. {
  3667. name: "Normal",
  3668. height: math.unit(10, "feet")
  3669. },
  3670. {
  3671. name: "Large",
  3672. height: math.unit(50, "feet"),
  3673. default: true
  3674. },
  3675. {
  3676. name: "Macro",
  3677. height: math.unit(300, "feet")
  3678. },
  3679. {
  3680. name: "Macro+",
  3681. height: math.unit(750, "feet")
  3682. },
  3683. {
  3684. name: "Megamacro",
  3685. height: math.unit(3, "miles")
  3686. }
  3687. ]
  3688. ))
  3689. characterMakers.push(() => makeCharacter(
  3690. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3691. {
  3692. front: {
  3693. height: math.unit(2, "meter"),
  3694. weight: math.unit(80, "kg"),
  3695. name: "Front",
  3696. image: {
  3697. source: "./media/characters/jennifer/front.svg",
  3698. bottom: 0.11,
  3699. extra: 1.16
  3700. }
  3701. },
  3702. frontAlt: {
  3703. height: math.unit(2, "meter"),
  3704. weight: math.unit(80, "kg"),
  3705. name: "Front (Alt)",
  3706. image: {
  3707. source: "./media/characters/jennifer/front-alt.svg"
  3708. }
  3709. }
  3710. },
  3711. [
  3712. {
  3713. name: "Canon Height",
  3714. height: math.unit(120, "feet"),
  3715. default: true
  3716. },
  3717. {
  3718. name: "Macro+",
  3719. height: math.unit(300, "feet")
  3720. },
  3721. {
  3722. name: "Megamacro",
  3723. height: math.unit(20000, "feet")
  3724. }
  3725. ]
  3726. ))
  3727. characterMakers.push(() => makeCharacter(
  3728. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3729. {
  3730. front: {
  3731. height: math.unit(2, "meter"),
  3732. weight: math.unit(50, "kg"),
  3733. name: "Front",
  3734. image: {
  3735. source: "./media/characters/kalista/front.svg",
  3736. extra: 1314/1145,
  3737. bottom: 101/1415
  3738. }
  3739. },
  3740. back: {
  3741. height: math.unit(2, "meter"),
  3742. weight: math.unit(50, "kg"),
  3743. name: "Back",
  3744. image: {
  3745. source: "./media/characters/kalista/back.svg",
  3746. extra: 1366 / 1156,
  3747. bottom: 33.9 / 1362.78
  3748. }
  3749. }
  3750. },
  3751. [
  3752. {
  3753. name: "Uncomfortably Small",
  3754. height: math.unit(10, "feet")
  3755. },
  3756. {
  3757. name: "Small",
  3758. height: math.unit(30, "feet")
  3759. },
  3760. {
  3761. name: "Macro",
  3762. height: math.unit(100, "feet"),
  3763. default: true
  3764. },
  3765. {
  3766. name: "Macro+",
  3767. height: math.unit(2000, "feet")
  3768. },
  3769. {
  3770. name: "True Form",
  3771. height: math.unit(8924, "miles")
  3772. }
  3773. ]
  3774. ))
  3775. characterMakers.push(() => makeCharacter(
  3776. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3777. {
  3778. front: {
  3779. height: math.unit(2, "meter"),
  3780. weight: math.unit(120, "kg"),
  3781. name: "Front",
  3782. image: {
  3783. source: "./media/characters/ggv/front.svg"
  3784. }
  3785. },
  3786. side: {
  3787. height: math.unit(2, "meter"),
  3788. weight: math.unit(120, "kg"),
  3789. name: "Side",
  3790. image: {
  3791. source: "./media/characters/ggv/side.svg"
  3792. }
  3793. }
  3794. },
  3795. [
  3796. {
  3797. name: "Extremely Puny",
  3798. height: math.unit(9 + 5 / 12, "feet")
  3799. },
  3800. {
  3801. name: "Horribly Small",
  3802. height: math.unit(47.7, "miles"),
  3803. default: true
  3804. },
  3805. {
  3806. name: "Reasonably Sized",
  3807. height: math.unit(25000, "parsecs")
  3808. },
  3809. {
  3810. name: "Slightly Uncompressed",
  3811. height: math.unit(7.77e31, "parsecs")
  3812. },
  3813. {
  3814. name: "Omniversal",
  3815. height: math.unit(1e300, "meters")
  3816. },
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(2, "meter"),
  3824. weight: math.unit(75, "lb"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/napalm/front.svg"
  3828. }
  3829. },
  3830. back: {
  3831. height: math.unit(2, "meter"),
  3832. weight: math.unit(75, "lb"),
  3833. name: "Back",
  3834. image: {
  3835. source: "./media/characters/napalm/back.svg"
  3836. }
  3837. }
  3838. },
  3839. [
  3840. {
  3841. name: "Standard",
  3842. height: math.unit(55, "feet"),
  3843. default: true
  3844. }
  3845. ]
  3846. ))
  3847. characterMakers.push(() => makeCharacter(
  3848. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3849. {
  3850. front: {
  3851. height: math.unit(7 + 5 / 6, "feet"),
  3852. weight: math.unit(325, "lb"),
  3853. name: "Front",
  3854. image: {
  3855. source: "./media/characters/asana/front.svg",
  3856. extra: 1133 / 1060,
  3857. bottom: 15.2 / 1148.6
  3858. }
  3859. },
  3860. back: {
  3861. height: math.unit(7 + 5 / 6, "feet"),
  3862. weight: math.unit(325, "lb"),
  3863. name: "Back",
  3864. image: {
  3865. source: "./media/characters/asana/back.svg",
  3866. extra: 1114 / 1043,
  3867. bottom: 5 / 1120
  3868. }
  3869. },
  3870. dressedDark: {
  3871. height: math.unit(7 + 5 / 6, "feet"),
  3872. weight: math.unit(325, "lb"),
  3873. name: "Dressed (Dark)",
  3874. image: {
  3875. source: "./media/characters/asana/dressed-dark.svg",
  3876. extra: 1133 / 1060,
  3877. bottom: 15.2 / 1148.6
  3878. }
  3879. },
  3880. dressedLight: {
  3881. height: math.unit(7 + 5 / 6, "feet"),
  3882. weight: math.unit(325, "lb"),
  3883. name: "Dressed (Light)",
  3884. image: {
  3885. source: "./media/characters/asana/dressed-light.svg",
  3886. extra: 1133 / 1060,
  3887. bottom: 15.2 / 1148.6
  3888. }
  3889. },
  3890. },
  3891. [
  3892. {
  3893. name: "Standard",
  3894. height: math.unit(7 + 5 / 6, "feet"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Large",
  3899. height: math.unit(10, "meters")
  3900. },
  3901. {
  3902. name: "Macro",
  3903. height: math.unit(2500, "meters")
  3904. },
  3905. {
  3906. name: "Megamacro",
  3907. height: math.unit(5e6, "meters")
  3908. },
  3909. {
  3910. name: "Examacro",
  3911. height: math.unit(5e12, "lightyears")
  3912. },
  3913. {
  3914. name: "Max Size",
  3915. height: math.unit(1e31, "lightyears")
  3916. }
  3917. ]
  3918. ))
  3919. characterMakers.push(() => makeCharacter(
  3920. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3921. {
  3922. front: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(60, "kg"),
  3925. name: "Front",
  3926. image: {
  3927. source: "./media/characters/ebony/front.svg",
  3928. bottom: 0.03,
  3929. extra: 1045 / 810 + 0.03
  3930. }
  3931. },
  3932. side: {
  3933. height: math.unit(2, "meter"),
  3934. weight: math.unit(60, "kg"),
  3935. name: "Side",
  3936. image: {
  3937. source: "./media/characters/ebony/side.svg",
  3938. bottom: 0.03,
  3939. extra: 1045 / 810 + 0.03
  3940. }
  3941. },
  3942. back: {
  3943. height: math.unit(2, "meter"),
  3944. weight: math.unit(60, "kg"),
  3945. name: "Back",
  3946. image: {
  3947. source: "./media/characters/ebony/back.svg",
  3948. bottom: 0.01,
  3949. extra: 1045 / 810 + 0.01
  3950. }
  3951. },
  3952. },
  3953. [
  3954. // TODO check why I did this lol
  3955. {
  3956. name: "Standard",
  3957. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3958. default: true
  3959. },
  3960. {
  3961. name: "Macro",
  3962. height: math.unit(200, "feet")
  3963. },
  3964. {
  3965. name: "Gigamacro",
  3966. height: math.unit(13000, "km")
  3967. }
  3968. ]
  3969. ))
  3970. characterMakers.push(() => makeCharacter(
  3971. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3972. {
  3973. front: {
  3974. height: math.unit(6, "feet"),
  3975. weight: math.unit(175, "lb"),
  3976. name: "Front",
  3977. image: {
  3978. source: "./media/characters/mountain/front.svg",
  3979. extra: 972 / 955,
  3980. bottom: 64 / 1036.6
  3981. }
  3982. },
  3983. back: {
  3984. height: math.unit(6, "feet"),
  3985. weight: math.unit(175, "lb"),
  3986. name: "Back",
  3987. image: {
  3988. source: "./media/characters/mountain/back.svg",
  3989. extra: 970 / 950,
  3990. bottom: 28.25 / 999
  3991. }
  3992. },
  3993. },
  3994. [
  3995. {
  3996. name: "Large",
  3997. height: math.unit(20, "meters")
  3998. },
  3999. {
  4000. name: "Macro",
  4001. height: math.unit(300, "meters")
  4002. },
  4003. {
  4004. name: "Gigamacro",
  4005. height: math.unit(10000, "km"),
  4006. default: true
  4007. },
  4008. {
  4009. name: "Examacro",
  4010. height: math.unit(10e9, "lightyears")
  4011. }
  4012. ]
  4013. ))
  4014. characterMakers.push(() => makeCharacter(
  4015. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4016. {
  4017. front: {
  4018. height: math.unit(8, "feet"),
  4019. weight: math.unit(500, "lb"),
  4020. name: "Front",
  4021. image: {
  4022. source: "./media/characters/rick/front.svg"
  4023. }
  4024. }
  4025. },
  4026. [
  4027. {
  4028. name: "Normal",
  4029. height: math.unit(8, "feet"),
  4030. default: true
  4031. },
  4032. {
  4033. name: "Macro",
  4034. height: math.unit(5, "km")
  4035. }
  4036. ]
  4037. ))
  4038. characterMakers.push(() => makeCharacter(
  4039. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4040. {
  4041. front: {
  4042. height: math.unit(8, "feet"),
  4043. weight: math.unit(120, "lb"),
  4044. name: "Front",
  4045. image: {
  4046. source: "./media/characters/ona/front.svg"
  4047. }
  4048. },
  4049. frontAlt: {
  4050. height: math.unit(8, "feet"),
  4051. weight: math.unit(120, "lb"),
  4052. name: "Front (Alt)",
  4053. image: {
  4054. source: "./media/characters/ona/front-alt.svg"
  4055. }
  4056. },
  4057. back: {
  4058. height: math.unit(8, "feet"),
  4059. weight: math.unit(120, "lb"),
  4060. name: "Back",
  4061. image: {
  4062. source: "./media/characters/ona/back.svg"
  4063. }
  4064. },
  4065. foot: {
  4066. height: math.unit(1.1, "feet"),
  4067. name: "Foot",
  4068. image: {
  4069. source: "./media/characters/ona/foot.svg"
  4070. }
  4071. }
  4072. },
  4073. [
  4074. {
  4075. name: "Megamacro",
  4076. height: math.unit(70, "km"),
  4077. default: true
  4078. },
  4079. {
  4080. name: "Gigamacro",
  4081. height: math.unit(681818, "miles")
  4082. },
  4083. {
  4084. name: "Examacro",
  4085. height: math.unit(3800000, "lightyears")
  4086. },
  4087. ]
  4088. ))
  4089. characterMakers.push(() => makeCharacter(
  4090. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4091. {
  4092. front: {
  4093. height: math.unit(12, "feet"),
  4094. weight: math.unit(3000, "lb"),
  4095. name: "Front",
  4096. image: {
  4097. source: "./media/characters/mech/front.svg",
  4098. extra: 2900 / 2770,
  4099. bottom: 110 / 3010
  4100. }
  4101. },
  4102. back: {
  4103. height: math.unit(12, "feet"),
  4104. weight: math.unit(3000, "lb"),
  4105. name: "Back",
  4106. image: {
  4107. source: "./media/characters/mech/back.svg",
  4108. extra: 3011 / 2890,
  4109. bottom: 94 / 3105
  4110. }
  4111. },
  4112. maw: {
  4113. height: math.unit(3.07, "feet"),
  4114. name: "Maw",
  4115. image: {
  4116. source: "./media/characters/mech/maw.svg"
  4117. }
  4118. },
  4119. head: {
  4120. height: math.unit(2.82, "feet"),
  4121. name: "Head",
  4122. image: {
  4123. source: "./media/characters/mech/head.svg"
  4124. }
  4125. },
  4126. dick: {
  4127. height: math.unit(1.43, "feet"),
  4128. name: "Dick",
  4129. image: {
  4130. source: "./media/characters/mech/dick.svg"
  4131. }
  4132. },
  4133. },
  4134. [
  4135. {
  4136. name: "Normal",
  4137. height: math.unit(12, "feet")
  4138. },
  4139. {
  4140. name: "Macro",
  4141. height: math.unit(300, "feet"),
  4142. default: true
  4143. },
  4144. {
  4145. name: "Macro+",
  4146. height: math.unit(1500, "feet")
  4147. },
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4152. {
  4153. front: {
  4154. height: math.unit(1.3, "meter"),
  4155. weight: math.unit(30, "kg"),
  4156. name: "Front",
  4157. image: {
  4158. source: "./media/characters/gregory/front.svg",
  4159. }
  4160. }
  4161. },
  4162. [
  4163. {
  4164. name: "Normal",
  4165. height: math.unit(1.3, "meter"),
  4166. default: true
  4167. },
  4168. {
  4169. name: "Macro",
  4170. height: math.unit(20, "meter")
  4171. }
  4172. ]
  4173. ))
  4174. characterMakers.push(() => makeCharacter(
  4175. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4176. {
  4177. front: {
  4178. height: math.unit(2.8, "meter"),
  4179. weight: math.unit(200, "kg"),
  4180. name: "Front",
  4181. image: {
  4182. source: "./media/characters/elory/front.svg",
  4183. }
  4184. }
  4185. },
  4186. [
  4187. {
  4188. name: "Normal",
  4189. height: math.unit(2.8, "meter"),
  4190. default: true
  4191. },
  4192. {
  4193. name: "Macro",
  4194. height: math.unit(38, "meter")
  4195. }
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4200. {
  4201. front: {
  4202. height: math.unit(470, "feet"),
  4203. weight: math.unit(924, "tons"),
  4204. name: "Front",
  4205. image: {
  4206. source: "./media/characters/angelpatamon/front.svg",
  4207. }
  4208. }
  4209. },
  4210. [
  4211. {
  4212. name: "Normal",
  4213. height: math.unit(470, "feet"),
  4214. default: true
  4215. },
  4216. {
  4217. name: "Deity Size I",
  4218. height: math.unit(28651.2, "km")
  4219. },
  4220. {
  4221. name: "Deity Size II",
  4222. height: math.unit(171907.2, "km")
  4223. }
  4224. ]
  4225. ))
  4226. characterMakers.push(() => makeCharacter(
  4227. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4228. {
  4229. side: {
  4230. height: math.unit(7.2, "meter"),
  4231. weight: math.unit(8.2, "tons"),
  4232. name: "Side",
  4233. image: {
  4234. source: "./media/characters/cryae/side.svg",
  4235. extra: 3500 / 1500
  4236. }
  4237. }
  4238. },
  4239. [
  4240. {
  4241. name: "Normal",
  4242. height: math.unit(7.2, "meter"),
  4243. default: true
  4244. }
  4245. ]
  4246. ))
  4247. characterMakers.push(() => makeCharacter(
  4248. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4249. {
  4250. front: {
  4251. height: math.unit(6, "feet"),
  4252. weight: math.unit(175, "lb"),
  4253. name: "Front",
  4254. image: {
  4255. source: "./media/characters/xera/front.svg",
  4256. extra: 2377 / 1972,
  4257. bottom: 75.5 / 2452
  4258. }
  4259. },
  4260. side: {
  4261. height: math.unit(6, "feet"),
  4262. weight: math.unit(175, "lb"),
  4263. name: "Side",
  4264. image: {
  4265. source: "./media/characters/xera/side.svg",
  4266. extra: 2345 / 2019,
  4267. bottom: 39.7 / 2384
  4268. }
  4269. },
  4270. back: {
  4271. height: math.unit(6, "feet"),
  4272. weight: math.unit(175, "lb"),
  4273. name: "Back",
  4274. image: {
  4275. source: "./media/characters/xera/back.svg",
  4276. extra: 2095 / 1984,
  4277. bottom: 67 / 2166
  4278. }
  4279. },
  4280. },
  4281. [
  4282. {
  4283. name: "Small",
  4284. height: math.unit(10, "feet")
  4285. },
  4286. {
  4287. name: "Macro",
  4288. height: math.unit(500, "meters"),
  4289. default: true
  4290. },
  4291. {
  4292. name: "Macro+",
  4293. height: math.unit(10, "km")
  4294. },
  4295. {
  4296. name: "Gigamacro",
  4297. height: math.unit(25000, "km")
  4298. },
  4299. {
  4300. name: "Teramacro",
  4301. height: math.unit(3e6, "km")
  4302. }
  4303. ]
  4304. ))
  4305. characterMakers.push(() => makeCharacter(
  4306. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4307. {
  4308. front: {
  4309. height: math.unit(6, "feet"),
  4310. weight: math.unit(175, "lb"),
  4311. name: "Front",
  4312. image: {
  4313. source: "./media/characters/nebula/front.svg",
  4314. extra: 2566 / 2362,
  4315. bottom: 81 / 2644
  4316. }
  4317. }
  4318. },
  4319. [
  4320. {
  4321. name: "Small",
  4322. height: math.unit(4.5, "meters")
  4323. },
  4324. {
  4325. name: "Macro",
  4326. height: math.unit(1500, "meters"),
  4327. default: true
  4328. },
  4329. {
  4330. name: "Megamacro",
  4331. height: math.unit(150, "km")
  4332. },
  4333. {
  4334. name: "Gigamacro",
  4335. height: math.unit(27000, "km")
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(6, "feet"),
  4344. weight: math.unit(225, "lb"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/abysgar/front.svg"
  4348. }
  4349. }
  4350. },
  4351. [
  4352. {
  4353. name: "Small",
  4354. height: math.unit(4.5, "meters")
  4355. },
  4356. {
  4357. name: "Macro",
  4358. height: math.unit(1250, "meters"),
  4359. default: true
  4360. },
  4361. {
  4362. name: "Megamacro",
  4363. height: math.unit(125, "km")
  4364. },
  4365. {
  4366. name: "Gigamacro",
  4367. height: math.unit(26000, "km")
  4368. }
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4373. {
  4374. front: {
  4375. height: math.unit(6, "feet"),
  4376. weight: math.unit(180, "lb"),
  4377. name: "Front",
  4378. image: {
  4379. source: "./media/characters/yakuz/front.svg"
  4380. }
  4381. }
  4382. },
  4383. [
  4384. {
  4385. name: "Small",
  4386. height: math.unit(5, "meters")
  4387. },
  4388. {
  4389. name: "Macro",
  4390. height: math.unit(1500, "meters"),
  4391. default: true
  4392. },
  4393. {
  4394. name: "Megamacro",
  4395. height: math.unit(200, "km")
  4396. },
  4397. {
  4398. name: "Gigamacro",
  4399. height: math.unit(100000, "km")
  4400. }
  4401. ]
  4402. ))
  4403. characterMakers.push(() => makeCharacter(
  4404. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4405. {
  4406. front: {
  4407. height: math.unit(6, "feet"),
  4408. weight: math.unit(175, "lb"),
  4409. name: "Front",
  4410. image: {
  4411. source: "./media/characters/mirova/front.svg",
  4412. extra: 3334 / 3071,
  4413. bottom: 42 / 3375.6
  4414. }
  4415. }
  4416. },
  4417. [
  4418. {
  4419. name: "Small",
  4420. height: math.unit(5, "meters")
  4421. },
  4422. {
  4423. name: "Macro",
  4424. height: math.unit(900, "meters"),
  4425. default: true
  4426. },
  4427. {
  4428. name: "Megamacro",
  4429. height: math.unit(135, "km")
  4430. },
  4431. {
  4432. name: "Gigamacro",
  4433. height: math.unit(20000, "km")
  4434. }
  4435. ]
  4436. ))
  4437. characterMakers.push(() => makeCharacter(
  4438. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4439. {
  4440. side: {
  4441. height: math.unit(28.35, "feet"),
  4442. weight: math.unit(99.75, "tons"),
  4443. name: "Side",
  4444. image: {
  4445. source: "./media/characters/asana-mech/side.svg",
  4446. extra: 923 / 699,
  4447. bottom: 50 / 975
  4448. }
  4449. },
  4450. chaingun: {
  4451. height: math.unit(7, "feet"),
  4452. weight: math.unit(2400, "lb"),
  4453. name: "Chaingun",
  4454. image: {
  4455. source: "./media/characters/asana-mech/chaingun.svg"
  4456. }
  4457. },
  4458. laser: {
  4459. height: math.unit(7.12, "feet"),
  4460. weight: math.unit(2000, "lb"),
  4461. name: "Laser",
  4462. image: {
  4463. source: "./media/characters/asana-mech/laser.svg"
  4464. }
  4465. },
  4466. },
  4467. [
  4468. {
  4469. name: "Normal",
  4470. height: math.unit(28.35, "feet"),
  4471. default: true
  4472. },
  4473. {
  4474. name: "Macro",
  4475. height: math.unit(2500, "feet")
  4476. },
  4477. {
  4478. name: "Megamacro",
  4479. height: math.unit(25, "miles")
  4480. },
  4481. {
  4482. name: "Examacro",
  4483. height: math.unit(6e8, "lightyears")
  4484. },
  4485. ]
  4486. ))
  4487. characterMakers.push(() => makeCharacter(
  4488. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4489. {
  4490. front: {
  4491. height: math.unit(5, "meters"),
  4492. weight: math.unit(1000, "kg"),
  4493. name: "Front",
  4494. image: {
  4495. source: "./media/characters/asche/front.svg",
  4496. extra: 1258 / 1190,
  4497. bottom: 47 / 1305
  4498. }
  4499. },
  4500. frontUnderwear: {
  4501. height: math.unit(5, "meters"),
  4502. weight: math.unit(1000, "kg"),
  4503. name: "Front (Underwear)",
  4504. image: {
  4505. source: "./media/characters/asche/front-underwear.svg",
  4506. extra: 1258 / 1190,
  4507. bottom: 47 / 1305
  4508. }
  4509. },
  4510. frontDressed: {
  4511. height: math.unit(5, "meters"),
  4512. weight: math.unit(1000, "kg"),
  4513. name: "Front (Dressed)",
  4514. image: {
  4515. source: "./media/characters/asche/front-dressed.svg",
  4516. extra: 1258 / 1190,
  4517. bottom: 47 / 1305
  4518. }
  4519. },
  4520. frontArmor: {
  4521. height: math.unit(5, "meters"),
  4522. weight: math.unit(1000, "kg"),
  4523. name: "Front (Armored)",
  4524. image: {
  4525. source: "./media/characters/asche/front-armored.svg",
  4526. extra: 1374 / 1308,
  4527. bottom: 23 / 1397
  4528. }
  4529. },
  4530. mp724: {
  4531. height: math.unit(0.96, "meters"),
  4532. weight: math.unit(38, "kg"),
  4533. name: "H&K MP724",
  4534. image: {
  4535. source: "./media/characters/asche/h&k-mp724.svg"
  4536. }
  4537. },
  4538. side: {
  4539. height: math.unit(5, "meters"),
  4540. weight: math.unit(1000, "kg"),
  4541. name: "Side",
  4542. image: {
  4543. source: "./media/characters/asche/side.svg",
  4544. extra: 1717 / 1609,
  4545. bottom: 0.005
  4546. }
  4547. },
  4548. back: {
  4549. height: math.unit(5, "meters"),
  4550. weight: math.unit(1000, "kg"),
  4551. name: "Back",
  4552. image: {
  4553. source: "./media/characters/asche/back.svg",
  4554. extra: 1570 / 1501
  4555. }
  4556. },
  4557. },
  4558. [
  4559. {
  4560. name: "DEFCON 5",
  4561. height: math.unit(5, "meters")
  4562. },
  4563. {
  4564. name: "DEFCON 4",
  4565. height: math.unit(500, "meters"),
  4566. default: true
  4567. },
  4568. {
  4569. name: "DEFCON 3",
  4570. height: math.unit(5, "km")
  4571. },
  4572. {
  4573. name: "DEFCON 2",
  4574. height: math.unit(500, "km")
  4575. },
  4576. {
  4577. name: "DEFCON 1",
  4578. height: math.unit(500000, "km")
  4579. },
  4580. {
  4581. name: "DEFCON 0",
  4582. height: math.unit(3, "gigaparsecs")
  4583. },
  4584. ]
  4585. ))
  4586. characterMakers.push(() => makeCharacter(
  4587. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4588. {
  4589. front: {
  4590. height: math.unit(2, "meters"),
  4591. weight: math.unit(76, "kg"),
  4592. name: "Front",
  4593. image: {
  4594. source: "./media/characters/gale/front.svg"
  4595. }
  4596. },
  4597. frontAlt1: {
  4598. height: math.unit(2, "meters"),
  4599. weight: math.unit(76, "kg"),
  4600. name: "Front (Alt 1)",
  4601. image: {
  4602. source: "./media/characters/gale/front-alt-1.svg"
  4603. }
  4604. },
  4605. frontAlt2: {
  4606. height: math.unit(2, "meters"),
  4607. weight: math.unit(76, "kg"),
  4608. name: "Front (Alt 2)",
  4609. image: {
  4610. source: "./media/characters/gale/front-alt-2.svg"
  4611. }
  4612. },
  4613. },
  4614. [
  4615. {
  4616. name: "Normal",
  4617. height: math.unit(7, "feet")
  4618. },
  4619. {
  4620. name: "Macro",
  4621. height: math.unit(150, "feet"),
  4622. default: true
  4623. },
  4624. {
  4625. name: "Macro+",
  4626. height: math.unit(300, "feet")
  4627. },
  4628. ]
  4629. ))
  4630. characterMakers.push(() => makeCharacter(
  4631. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4632. {
  4633. front: {
  4634. height: math.unit(5 + 10/12, "feet"),
  4635. weight: math.unit(67, "kg"),
  4636. name: "Front",
  4637. image: {
  4638. source: "./media/characters/draylen/front.svg",
  4639. extra: 832/777,
  4640. bottom: 85/917
  4641. }
  4642. }
  4643. },
  4644. [
  4645. {
  4646. name: "Normal",
  4647. height: math.unit(5 + 10/12, "feet")
  4648. },
  4649. {
  4650. name: "Macro",
  4651. height: math.unit(150, "feet"),
  4652. default: true
  4653. }
  4654. ]
  4655. ))
  4656. characterMakers.push(() => makeCharacter(
  4657. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4658. {
  4659. front: {
  4660. height: math.unit(7 + 9 / 12, "feet"),
  4661. weight: math.unit(379, "lbs"),
  4662. name: "Front",
  4663. image: {
  4664. source: "./media/characters/chez/front.svg"
  4665. }
  4666. },
  4667. side: {
  4668. height: math.unit(7 + 9 / 12, "feet"),
  4669. weight: math.unit(379, "lbs"),
  4670. name: "Side",
  4671. image: {
  4672. source: "./media/characters/chez/side.svg"
  4673. }
  4674. }
  4675. },
  4676. [
  4677. {
  4678. name: "Normal",
  4679. height: math.unit(7 + 9 / 12, "feet"),
  4680. default: true
  4681. },
  4682. {
  4683. name: "God King",
  4684. height: math.unit(9750000, "meters")
  4685. }
  4686. ]
  4687. ))
  4688. characterMakers.push(() => makeCharacter(
  4689. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4690. {
  4691. front: {
  4692. height: math.unit(6, "feet"),
  4693. weight: math.unit(275, "lbs"),
  4694. name: "Front",
  4695. image: {
  4696. source: "./media/characters/kaylum/front.svg",
  4697. bottom: 0.01,
  4698. extra: 1166 / 1031
  4699. }
  4700. },
  4701. frontWingless: {
  4702. height: math.unit(6, "feet"),
  4703. weight: math.unit(275, "lbs"),
  4704. name: "Front (Wingless)",
  4705. image: {
  4706. source: "./media/characters/kaylum/front-wingless.svg",
  4707. bottom: 0.01,
  4708. extra: 1117 / 1031
  4709. }
  4710. }
  4711. },
  4712. [
  4713. {
  4714. name: "Normal",
  4715. height: math.unit(3.05, "meters")
  4716. },
  4717. {
  4718. name: "Master",
  4719. height: math.unit(5.5, "meters")
  4720. },
  4721. {
  4722. name: "Rampage",
  4723. height: math.unit(19, "meters")
  4724. },
  4725. {
  4726. name: "Macro Lite",
  4727. height: math.unit(37, "meters")
  4728. },
  4729. {
  4730. name: "Hyper Predator",
  4731. height: math.unit(61, "meters")
  4732. },
  4733. {
  4734. name: "Macro",
  4735. height: math.unit(138, "meters"),
  4736. default: true
  4737. }
  4738. ]
  4739. ))
  4740. characterMakers.push(() => makeCharacter(
  4741. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4742. {
  4743. front: {
  4744. height: math.unit(6, "feet"),
  4745. weight: math.unit(150, "lbs"),
  4746. name: "Front",
  4747. image: {
  4748. source: "./media/characters/geta/front.svg"
  4749. }
  4750. }
  4751. },
  4752. [
  4753. {
  4754. name: "Micro",
  4755. height: math.unit(3, "inches"),
  4756. default: true
  4757. },
  4758. {
  4759. name: "Normal",
  4760. height: math.unit(5 + 5 / 12, "feet")
  4761. }
  4762. ]
  4763. ))
  4764. characterMakers.push(() => makeCharacter(
  4765. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4766. {
  4767. front: {
  4768. height: math.unit(6, "feet"),
  4769. weight: math.unit(300, "lbs"),
  4770. name: "Front",
  4771. image: {
  4772. source: "./media/characters/tyrnn/front.svg"
  4773. }
  4774. }
  4775. },
  4776. [
  4777. {
  4778. name: "Main Height",
  4779. height: math.unit(355, "feet"),
  4780. default: true
  4781. },
  4782. {
  4783. name: "Fave. Height",
  4784. height: math.unit(2400, "feet")
  4785. }
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(6, "feet"),
  4793. weight: math.unit(300, "lbs"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/appledectomy/front.svg"
  4797. }
  4798. }
  4799. },
  4800. [
  4801. {
  4802. name: "Macro",
  4803. height: math.unit(2500, "feet")
  4804. },
  4805. {
  4806. name: "Megamacro",
  4807. height: math.unit(50, "miles"),
  4808. default: true
  4809. },
  4810. {
  4811. name: "Gigamacro",
  4812. height: math.unit(5000, "miles")
  4813. },
  4814. {
  4815. name: "Teramacro",
  4816. height: math.unit(250000, "miles")
  4817. },
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4822. {
  4823. front: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(200, "lbs"),
  4826. name: "Front",
  4827. image: {
  4828. source: "./media/characters/vulpes/front.svg",
  4829. extra: 573 / 543,
  4830. bottom: 0.033
  4831. }
  4832. },
  4833. side: {
  4834. height: math.unit(6, "feet"),
  4835. weight: math.unit(200, "lbs"),
  4836. name: "Side",
  4837. image: {
  4838. source: "./media/characters/vulpes/side.svg",
  4839. extra: 577 / 549,
  4840. bottom: 11 / 588
  4841. }
  4842. },
  4843. back: {
  4844. height: math.unit(6, "feet"),
  4845. weight: math.unit(200, "lbs"),
  4846. name: "Back",
  4847. image: {
  4848. source: "./media/characters/vulpes/back.svg",
  4849. extra: 573 / 549,
  4850. bottom: 20 / 593
  4851. }
  4852. },
  4853. feet: {
  4854. height: math.unit(1.276, "feet"),
  4855. name: "Feet",
  4856. image: {
  4857. source: "./media/characters/vulpes/feet.svg"
  4858. }
  4859. },
  4860. maw: {
  4861. height: math.unit(1.18, "feet"),
  4862. name: "Maw",
  4863. image: {
  4864. source: "./media/characters/vulpes/maw.svg"
  4865. }
  4866. },
  4867. },
  4868. [
  4869. {
  4870. name: "Micro",
  4871. height: math.unit(2, "inches")
  4872. },
  4873. {
  4874. name: "Normal",
  4875. height: math.unit(6.3, "feet")
  4876. },
  4877. {
  4878. name: "Macro",
  4879. height: math.unit(850, "feet")
  4880. },
  4881. {
  4882. name: "Megamacro",
  4883. height: math.unit(7500, "feet"),
  4884. default: true
  4885. },
  4886. {
  4887. name: "Gigamacro",
  4888. height: math.unit(570000, "miles")
  4889. }
  4890. ]
  4891. ))
  4892. characterMakers.push(() => makeCharacter(
  4893. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4894. {
  4895. front: {
  4896. height: math.unit(6, "feet"),
  4897. weight: math.unit(210, "lbs"),
  4898. name: "Front",
  4899. image: {
  4900. source: "./media/characters/rain-fallen/front.svg"
  4901. }
  4902. },
  4903. side: {
  4904. height: math.unit(6, "feet"),
  4905. weight: math.unit(210, "lbs"),
  4906. name: "Side",
  4907. image: {
  4908. source: "./media/characters/rain-fallen/side.svg"
  4909. }
  4910. },
  4911. back: {
  4912. height: math.unit(6, "feet"),
  4913. weight: math.unit(210, "lbs"),
  4914. name: "Back",
  4915. image: {
  4916. source: "./media/characters/rain-fallen/back.svg"
  4917. }
  4918. },
  4919. feral: {
  4920. height: math.unit(9, "feet"),
  4921. weight: math.unit(700, "lbs"),
  4922. name: "Feral",
  4923. image: {
  4924. source: "./media/characters/rain-fallen/feral.svg"
  4925. }
  4926. },
  4927. },
  4928. [
  4929. {
  4930. name: "Meddling with Mortals",
  4931. height: math.unit(8 + 8/12, "feet")
  4932. },
  4933. {
  4934. name: "Normal",
  4935. height: math.unit(5, "meter")
  4936. },
  4937. {
  4938. name: "Macro",
  4939. height: math.unit(150, "meter"),
  4940. default: true
  4941. },
  4942. {
  4943. name: "Megamacro",
  4944. height: math.unit(278e6, "meter")
  4945. },
  4946. {
  4947. name: "Gigamacro",
  4948. height: math.unit(2e9, "meter")
  4949. },
  4950. {
  4951. name: "Teramacro",
  4952. height: math.unit(8e12, "meter")
  4953. },
  4954. {
  4955. name: "Devourer",
  4956. height: math.unit(14, "zettameters")
  4957. },
  4958. {
  4959. name: "Scarlet King",
  4960. height: math.unit(18, "yottameters")
  4961. },
  4962. {
  4963. name: "Void",
  4964. height: math.unit(1e88, "yottameters")
  4965. }
  4966. ]
  4967. ))
  4968. characterMakers.push(() => makeCharacter(
  4969. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4970. {
  4971. standing: {
  4972. height: math.unit(6, "feet"),
  4973. weight: math.unit(180, "lbs"),
  4974. name: "Standing",
  4975. image: {
  4976. source: "./media/characters/zaakira/standing.svg",
  4977. extra: 1599/1504,
  4978. bottom: 39/1638
  4979. }
  4980. },
  4981. laying: {
  4982. height: math.unit(3, "feet"),
  4983. weight: math.unit(180, "lbs"),
  4984. name: "Laying",
  4985. image: {
  4986. source: "./media/characters/zaakira/laying.svg"
  4987. }
  4988. },
  4989. },
  4990. [
  4991. {
  4992. name: "Normal",
  4993. height: math.unit(12, "feet")
  4994. },
  4995. {
  4996. name: "Macro",
  4997. height: math.unit(279, "feet"),
  4998. default: true
  4999. }
  5000. ]
  5001. ))
  5002. characterMakers.push(() => makeCharacter(
  5003. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5004. {
  5005. femSfw: {
  5006. height: math.unit(8, "feet"),
  5007. weight: math.unit(350, "lb"),
  5008. name: "Fem",
  5009. image: {
  5010. source: "./media/characters/sigvald/fem-sfw.svg",
  5011. extra: 182 / 164,
  5012. bottom: 8.7 / 190.5
  5013. }
  5014. },
  5015. femNsfw: {
  5016. height: math.unit(8, "feet"),
  5017. weight: math.unit(350, "lb"),
  5018. name: "Fem (NSFW)",
  5019. image: {
  5020. source: "./media/characters/sigvald/fem-nsfw.svg",
  5021. extra: 182 / 164,
  5022. bottom: 8.7 / 190.5
  5023. }
  5024. },
  5025. maleNsfw: {
  5026. height: math.unit(8, "feet"),
  5027. weight: math.unit(350, "lb"),
  5028. name: "Male (NSFW)",
  5029. image: {
  5030. source: "./media/characters/sigvald/male-nsfw.svg",
  5031. extra: 182 / 164,
  5032. bottom: 8.7 / 190.5
  5033. }
  5034. },
  5035. hermNsfw: {
  5036. height: math.unit(8, "feet"),
  5037. weight: math.unit(350, "lb"),
  5038. name: "Herm (NSFW)",
  5039. image: {
  5040. source: "./media/characters/sigvald/herm-nsfw.svg",
  5041. extra: 182 / 164,
  5042. bottom: 8.7 / 190.5
  5043. }
  5044. },
  5045. dick: {
  5046. height: math.unit(2.36, "feet"),
  5047. name: "Dick",
  5048. image: {
  5049. source: "./media/characters/sigvald/dick.svg"
  5050. }
  5051. },
  5052. eye: {
  5053. height: math.unit(0.31, "feet"),
  5054. name: "Eye",
  5055. image: {
  5056. source: "./media/characters/sigvald/eye.svg"
  5057. }
  5058. },
  5059. mouth: {
  5060. height: math.unit(0.92, "feet"),
  5061. name: "Mouth",
  5062. image: {
  5063. source: "./media/characters/sigvald/mouth.svg"
  5064. }
  5065. },
  5066. paws: {
  5067. height: math.unit(2.2, "feet"),
  5068. name: "Paws",
  5069. image: {
  5070. source: "./media/characters/sigvald/paws.svg"
  5071. }
  5072. }
  5073. },
  5074. [
  5075. {
  5076. name: "Normal",
  5077. height: math.unit(8, "feet")
  5078. },
  5079. {
  5080. name: "Large",
  5081. height: math.unit(12, "feet")
  5082. },
  5083. {
  5084. name: "Larger",
  5085. height: math.unit(20, "feet")
  5086. },
  5087. {
  5088. name: "Macro",
  5089. height: math.unit(150, "feet")
  5090. },
  5091. {
  5092. name: "Macro+",
  5093. height: math.unit(200, "feet"),
  5094. default: true
  5095. },
  5096. ]
  5097. ))
  5098. characterMakers.push(() => makeCharacter(
  5099. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5100. {
  5101. side: {
  5102. height: math.unit(12, "feet"),
  5103. weight: math.unit(2000, "kg"),
  5104. name: "Side",
  5105. image: {
  5106. source: "./media/characters/scott/side.svg",
  5107. extra: 754 / 724,
  5108. bottom: 0.069
  5109. }
  5110. },
  5111. upright: {
  5112. height: math.unit(12, "feet"),
  5113. weight: math.unit(2000, "kg"),
  5114. name: "Upright",
  5115. image: {
  5116. source: "./media/characters/scott/upright.svg",
  5117. extra: 3881 / 3722,
  5118. bottom: 0.05
  5119. }
  5120. },
  5121. },
  5122. [
  5123. {
  5124. name: "Normal",
  5125. height: math.unit(12, "feet"),
  5126. default: true
  5127. },
  5128. ]
  5129. ))
  5130. characterMakers.push(() => makeCharacter(
  5131. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5132. {
  5133. side: {
  5134. height: math.unit(8, "meters"),
  5135. weight: math.unit(84755, "lbs"),
  5136. name: "Side",
  5137. image: {
  5138. source: "./media/characters/tobias/side.svg",
  5139. extra: 1474 / 1096,
  5140. bottom: 38.9 / 1513.1235
  5141. }
  5142. },
  5143. },
  5144. [
  5145. {
  5146. name: "Normal",
  5147. height: math.unit(8, "meters"),
  5148. default: true
  5149. },
  5150. ]
  5151. ))
  5152. characterMakers.push(() => makeCharacter(
  5153. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5154. {
  5155. front: {
  5156. height: math.unit(5.5, "feet"),
  5157. weight: math.unit(400, "lbs"),
  5158. name: "Front",
  5159. image: {
  5160. source: "./media/characters/kieran/front.svg",
  5161. extra: 2694 / 2364,
  5162. bottom: 217 / 2908
  5163. }
  5164. },
  5165. side: {
  5166. height: math.unit(5.5, "feet"),
  5167. weight: math.unit(400, "lbs"),
  5168. name: "Side",
  5169. image: {
  5170. source: "./media/characters/kieran/side.svg",
  5171. extra: 875 / 777,
  5172. bottom: 84.6 / 959
  5173. }
  5174. },
  5175. },
  5176. [
  5177. {
  5178. name: "Normal",
  5179. height: math.unit(5.5, "feet"),
  5180. default: true
  5181. },
  5182. ]
  5183. ))
  5184. characterMakers.push(() => makeCharacter(
  5185. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5186. {
  5187. side: {
  5188. height: math.unit(2, "meters"),
  5189. weight: math.unit(70, "kg"),
  5190. name: "Side",
  5191. image: {
  5192. source: "./media/characters/sanya/side.svg",
  5193. bottom: 0.02,
  5194. extra: 1.02
  5195. }
  5196. },
  5197. },
  5198. [
  5199. {
  5200. name: "Small",
  5201. height: math.unit(2, "meters")
  5202. },
  5203. {
  5204. name: "Normal",
  5205. height: math.unit(3, "meters")
  5206. },
  5207. {
  5208. name: "Macro",
  5209. height: math.unit(16, "meters"),
  5210. default: true
  5211. },
  5212. ]
  5213. ))
  5214. characterMakers.push(() => makeCharacter(
  5215. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5216. {
  5217. front: {
  5218. height: math.unit(2, "meters"),
  5219. weight: math.unit(120, "kg"),
  5220. name: "Front",
  5221. image: {
  5222. source: "./media/characters/miranda/front.svg",
  5223. extra: 195 / 185,
  5224. bottom: 10.9 / 206.5
  5225. }
  5226. },
  5227. back: {
  5228. height: math.unit(2, "meters"),
  5229. weight: math.unit(120, "kg"),
  5230. name: "Back",
  5231. image: {
  5232. source: "./media/characters/miranda/back.svg",
  5233. extra: 201 / 193,
  5234. bottom: 2.3 / 203.7
  5235. }
  5236. },
  5237. },
  5238. [
  5239. {
  5240. name: "Normal",
  5241. height: math.unit(10, "feet"),
  5242. default: true
  5243. }
  5244. ]
  5245. ))
  5246. characterMakers.push(() => makeCharacter(
  5247. { name: "James", species: ["deer"], tags: ["anthro"] },
  5248. {
  5249. side: {
  5250. height: math.unit(2, "meters"),
  5251. weight: math.unit(100, "kg"),
  5252. name: "Front",
  5253. image: {
  5254. source: "./media/characters/james/front.svg",
  5255. extra: 10 / 8.5
  5256. }
  5257. },
  5258. },
  5259. [
  5260. {
  5261. name: "Normal",
  5262. height: math.unit(8.5, "feet"),
  5263. default: true
  5264. }
  5265. ]
  5266. ))
  5267. characterMakers.push(() => makeCharacter(
  5268. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5269. {
  5270. side: {
  5271. height: math.unit(9.5, "feet"),
  5272. weight: math.unit(2500, "lbs"),
  5273. name: "Side",
  5274. image: {
  5275. source: "./media/characters/heather/side.svg"
  5276. }
  5277. },
  5278. },
  5279. [
  5280. {
  5281. name: "Normal",
  5282. height: math.unit(9.5, "feet"),
  5283. default: true
  5284. }
  5285. ]
  5286. ))
  5287. characterMakers.push(() => makeCharacter(
  5288. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5289. {
  5290. side: {
  5291. height: math.unit(6.5, "feet"),
  5292. weight: math.unit(400, "lbs"),
  5293. name: "Side",
  5294. image: {
  5295. source: "./media/characters/lukas/side.svg",
  5296. extra: 7.25 / 6.5
  5297. }
  5298. },
  5299. },
  5300. [
  5301. {
  5302. name: "Normal",
  5303. height: math.unit(6.5, "feet"),
  5304. default: true
  5305. }
  5306. ]
  5307. ))
  5308. characterMakers.push(() => makeCharacter(
  5309. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5310. {
  5311. side: {
  5312. height: math.unit(5, "feet"),
  5313. weight: math.unit(3000, "lbs"),
  5314. name: "Side",
  5315. image: {
  5316. source: "./media/characters/louise/side.svg"
  5317. }
  5318. },
  5319. },
  5320. [
  5321. {
  5322. name: "Normal",
  5323. height: math.unit(5, "feet"),
  5324. default: true
  5325. }
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5330. {
  5331. side: {
  5332. height: math.unit(6, "feet"),
  5333. weight: math.unit(150, "lbs"),
  5334. name: "Side",
  5335. image: {
  5336. source: "./media/characters/ramona/side.svg",
  5337. extra: 871/854,
  5338. bottom: 41/912
  5339. }
  5340. },
  5341. },
  5342. [
  5343. {
  5344. name: "Normal",
  5345. height: math.unit(5.3, "meters"),
  5346. default: true
  5347. },
  5348. {
  5349. name: "Macro",
  5350. height: math.unit(20, "stories")
  5351. },
  5352. {
  5353. name: "Macro+",
  5354. height: math.unit(50, "stories")
  5355. },
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5360. {
  5361. standing: {
  5362. height: math.unit(5.75, "feet"),
  5363. weight: math.unit(160, "lbs"),
  5364. name: "Standing",
  5365. image: {
  5366. source: "./media/characters/deerpuff/standing.svg",
  5367. extra: 682 / 624
  5368. }
  5369. },
  5370. sitting: {
  5371. height: math.unit(5.75 / 1.79, "feet"),
  5372. weight: math.unit(160, "lbs"),
  5373. name: "Sitting",
  5374. image: {
  5375. source: "./media/characters/deerpuff/sitting.svg",
  5376. bottom: 44 / 400,
  5377. extra: 1
  5378. }
  5379. },
  5380. taurLaying: {
  5381. height: math.unit(6, "feet"),
  5382. weight: math.unit(400, "lbs"),
  5383. name: "Taur (Laying)",
  5384. image: {
  5385. source: "./media/characters/deerpuff/taur-laying.svg"
  5386. }
  5387. },
  5388. },
  5389. [
  5390. {
  5391. name: "Puffball",
  5392. height: math.unit(6, "inches")
  5393. },
  5394. {
  5395. name: "Normalpuff",
  5396. height: math.unit(5.75, "feet")
  5397. },
  5398. {
  5399. name: "Macropuff",
  5400. height: math.unit(1500, "feet"),
  5401. default: true
  5402. },
  5403. {
  5404. name: "Megapuff",
  5405. height: math.unit(500, "miles")
  5406. },
  5407. {
  5408. name: "Gigapuff",
  5409. height: math.unit(250000, "miles")
  5410. },
  5411. {
  5412. name: "Omegapuff",
  5413. height: math.unit(1000, "lightyears")
  5414. },
  5415. ]
  5416. ))
  5417. characterMakers.push(() => makeCharacter(
  5418. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5419. {
  5420. stomping: {
  5421. height: math.unit(6, "feet"),
  5422. weight: math.unit(170, "lbs"),
  5423. name: "Stomping",
  5424. image: {
  5425. source: "./media/characters/vivian/stomping.svg"
  5426. }
  5427. },
  5428. sitting: {
  5429. height: math.unit(6 / 1.75, "feet"),
  5430. weight: math.unit(170, "lbs"),
  5431. name: "Sitting",
  5432. image: {
  5433. source: "./media/characters/vivian/sitting.svg",
  5434. bottom: 1 / 6.4,
  5435. extra: 1,
  5436. }
  5437. },
  5438. },
  5439. [
  5440. {
  5441. name: "Normal",
  5442. height: math.unit(7, "feet"),
  5443. default: true
  5444. },
  5445. {
  5446. name: "Macro",
  5447. height: math.unit(10, "stories")
  5448. },
  5449. {
  5450. name: "Macro+",
  5451. height: math.unit(30, "stories")
  5452. },
  5453. {
  5454. name: "Megamacro",
  5455. height: math.unit(10, "miles")
  5456. },
  5457. {
  5458. name: "Megamacro+",
  5459. height: math.unit(2750000, "meters")
  5460. },
  5461. ]
  5462. ))
  5463. characterMakers.push(() => makeCharacter(
  5464. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5465. {
  5466. front: {
  5467. height: math.unit(6, "feet"),
  5468. weight: math.unit(160, "lbs"),
  5469. name: "Front",
  5470. image: {
  5471. source: "./media/characters/prince/front.svg",
  5472. extra: 3400 / 3000
  5473. }
  5474. },
  5475. jumping: {
  5476. height: math.unit(6, "feet"),
  5477. weight: math.unit(160, "lbs"),
  5478. name: "Jumping",
  5479. image: {
  5480. source: "./media/characters/prince/jump.svg",
  5481. extra: 2555 / 2134
  5482. }
  5483. },
  5484. },
  5485. [
  5486. {
  5487. name: "Normal",
  5488. height: math.unit(7.75, "feet"),
  5489. default: true
  5490. },
  5491. {
  5492. name: "Not cute",
  5493. height: math.unit(17, "feet")
  5494. },
  5495. {
  5496. name: "I said NOT",
  5497. height: math.unit(91, "feet")
  5498. },
  5499. {
  5500. name: "Please stop",
  5501. height: math.unit(560, "feet")
  5502. },
  5503. {
  5504. name: "What have you done",
  5505. height: math.unit(2200, "feet")
  5506. },
  5507. {
  5508. name: "Deer God",
  5509. height: math.unit(3.6, "miles")
  5510. },
  5511. ]
  5512. ))
  5513. characterMakers.push(() => makeCharacter(
  5514. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5515. {
  5516. standing: {
  5517. height: math.unit(6, "feet"),
  5518. weight: math.unit(300, "lbs"),
  5519. name: "Standing",
  5520. image: {
  5521. source: "./media/characters/psymon/standing.svg",
  5522. extra: 1888 / 1810,
  5523. bottom: 0.05
  5524. }
  5525. },
  5526. slithering: {
  5527. height: math.unit(6, "feet"),
  5528. weight: math.unit(300, "lbs"),
  5529. name: "Slithering",
  5530. image: {
  5531. source: "./media/characters/psymon/slithering.svg",
  5532. extra: 1330 / 1224
  5533. }
  5534. },
  5535. slitheringAlt: {
  5536. height: math.unit(6, "feet"),
  5537. weight: math.unit(300, "lbs"),
  5538. name: "Slithering (Alt)",
  5539. image: {
  5540. source: "./media/characters/psymon/slithering-alt.svg",
  5541. extra: 1330 / 1224
  5542. }
  5543. },
  5544. },
  5545. [
  5546. {
  5547. name: "Normal",
  5548. height: math.unit(11.25, "feet"),
  5549. default: true
  5550. },
  5551. {
  5552. name: "Large",
  5553. height: math.unit(27, "feet")
  5554. },
  5555. {
  5556. name: "Giant",
  5557. height: math.unit(87, "feet")
  5558. },
  5559. {
  5560. name: "Macro",
  5561. height: math.unit(365, "feet")
  5562. },
  5563. {
  5564. name: "Megamacro",
  5565. height: math.unit(3, "miles")
  5566. },
  5567. {
  5568. name: "World Serpent",
  5569. height: math.unit(8000, "miles")
  5570. },
  5571. ]
  5572. ))
  5573. characterMakers.push(() => makeCharacter(
  5574. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5575. {
  5576. front: {
  5577. height: math.unit(6, "feet"),
  5578. weight: math.unit(180, "lbs"),
  5579. name: "Front",
  5580. image: {
  5581. source: "./media/characters/daimos/front.svg",
  5582. extra: 4160 / 3897,
  5583. bottom: 0.021
  5584. }
  5585. }
  5586. },
  5587. [
  5588. {
  5589. name: "Normal",
  5590. height: math.unit(8, "feet"),
  5591. default: true
  5592. },
  5593. {
  5594. name: "Big Dog",
  5595. height: math.unit(22, "feet")
  5596. },
  5597. {
  5598. name: "Macro",
  5599. height: math.unit(127, "feet")
  5600. },
  5601. {
  5602. name: "Megamacro",
  5603. height: math.unit(3600, "feet")
  5604. },
  5605. ]
  5606. ))
  5607. characterMakers.push(() => makeCharacter(
  5608. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5609. {
  5610. side: {
  5611. height: math.unit(6, "feet"),
  5612. weight: math.unit(180, "lbs"),
  5613. name: "Side",
  5614. image: {
  5615. source: "./media/characters/blake/side.svg",
  5616. extra: 1212 / 1120,
  5617. bottom: 0.05
  5618. }
  5619. },
  5620. crouched: {
  5621. height: math.unit(6 * 0.57, "feet"),
  5622. weight: math.unit(180, "lbs"),
  5623. name: "Crouched",
  5624. image: {
  5625. source: "./media/characters/blake/crouched.svg",
  5626. extra: 840 / 587,
  5627. bottom: 0.04
  5628. }
  5629. },
  5630. bent: {
  5631. height: math.unit(6 * 0.75, "feet"),
  5632. weight: math.unit(180, "lbs"),
  5633. name: "Bent",
  5634. image: {
  5635. source: "./media/characters/blake/bent.svg",
  5636. extra: 592 / 544,
  5637. bottom: 0.035
  5638. }
  5639. },
  5640. },
  5641. [
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(8 + 1 / 6, "feet"),
  5645. default: true
  5646. },
  5647. {
  5648. name: "Big Backside",
  5649. height: math.unit(37, "feet")
  5650. },
  5651. {
  5652. name: "Subway Shredder",
  5653. height: math.unit(72, "feet")
  5654. },
  5655. {
  5656. name: "City Carver",
  5657. height: math.unit(1675, "feet")
  5658. },
  5659. {
  5660. name: "Tectonic Tweaker",
  5661. height: math.unit(2300, "miles")
  5662. },
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5667. {
  5668. front: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(180, "lbs"),
  5671. name: "Front",
  5672. image: {
  5673. source: "./media/characters/guisetto/front.svg",
  5674. extra: 856 / 817,
  5675. bottom: 0.06
  5676. }
  5677. },
  5678. airborne: {
  5679. height: math.unit(6, "feet"),
  5680. weight: math.unit(180, "lbs"),
  5681. name: "Airborne",
  5682. image: {
  5683. source: "./media/characters/guisetto/airborne.svg",
  5684. extra: 584 / 525
  5685. }
  5686. },
  5687. },
  5688. [
  5689. {
  5690. name: "Normal",
  5691. height: math.unit(10 + 11 / 12, "feet"),
  5692. default: true
  5693. },
  5694. {
  5695. name: "Large",
  5696. height: math.unit(35, "feet")
  5697. },
  5698. {
  5699. name: "Macro",
  5700. height: math.unit(475, "feet")
  5701. },
  5702. ]
  5703. ))
  5704. characterMakers.push(() => makeCharacter(
  5705. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5706. {
  5707. front: {
  5708. height: math.unit(6, "feet"),
  5709. weight: math.unit(180, "lbs"),
  5710. name: "Front",
  5711. image: {
  5712. source: "./media/characters/luxor/front.svg",
  5713. extra: 2940 / 2152
  5714. }
  5715. },
  5716. back: {
  5717. height: math.unit(6, "feet"),
  5718. weight: math.unit(180, "lbs"),
  5719. name: "Back",
  5720. image: {
  5721. source: "./media/characters/luxor/back.svg",
  5722. extra: 1083 / 960
  5723. }
  5724. },
  5725. },
  5726. [
  5727. {
  5728. name: "Normal",
  5729. height: math.unit(5 + 5 / 6, "feet"),
  5730. default: true
  5731. },
  5732. {
  5733. name: "Lamp",
  5734. height: math.unit(50, "feet")
  5735. },
  5736. {
  5737. name: "Lämp",
  5738. height: math.unit(300, "feet")
  5739. },
  5740. {
  5741. name: "The sun is a lamp",
  5742. height: math.unit(250000, "miles")
  5743. },
  5744. ]
  5745. ))
  5746. characterMakers.push(() => makeCharacter(
  5747. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5748. {
  5749. front: {
  5750. height: math.unit(6, "feet"),
  5751. weight: math.unit(50, "lbs"),
  5752. name: "Front",
  5753. image: {
  5754. source: "./media/characters/huoyan/front.svg"
  5755. }
  5756. },
  5757. side: {
  5758. height: math.unit(6, "feet"),
  5759. weight: math.unit(180, "lbs"),
  5760. name: "Side",
  5761. image: {
  5762. source: "./media/characters/huoyan/side.svg"
  5763. }
  5764. },
  5765. },
  5766. [
  5767. {
  5768. name: "Chef",
  5769. height: math.unit(9, "feet")
  5770. },
  5771. {
  5772. name: "Normal",
  5773. height: math.unit(65, "feet"),
  5774. default: true
  5775. },
  5776. {
  5777. name: "Macro",
  5778. height: math.unit(780, "feet")
  5779. },
  5780. {
  5781. name: "Flaming Mountain",
  5782. height: math.unit(4.8, "miles")
  5783. },
  5784. {
  5785. name: "Celestial",
  5786. height: math.unit(765000, "miles")
  5787. },
  5788. ]
  5789. ))
  5790. characterMakers.push(() => makeCharacter(
  5791. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5792. {
  5793. front: {
  5794. height: math.unit(5 + 3 / 4, "feet"),
  5795. weight: math.unit(120, "lbs"),
  5796. name: "Front",
  5797. image: {
  5798. source: "./media/characters/tails/front.svg"
  5799. }
  5800. }
  5801. },
  5802. [
  5803. {
  5804. name: "Normal",
  5805. height: math.unit(5 + 3 / 4, "feet"),
  5806. default: true
  5807. }
  5808. ]
  5809. ))
  5810. characterMakers.push(() => makeCharacter(
  5811. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5812. {
  5813. front: {
  5814. height: math.unit(4, "feet"),
  5815. weight: math.unit(50, "lbs"),
  5816. name: "Front",
  5817. image: {
  5818. source: "./media/characters/rainy/front.svg"
  5819. }
  5820. }
  5821. },
  5822. [
  5823. {
  5824. name: "Macro",
  5825. height: math.unit(800, "feet"),
  5826. default: true
  5827. }
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(150, "lbs"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/rainier/front.svg"
  5839. }
  5840. }
  5841. },
  5842. [
  5843. {
  5844. name: "Micro",
  5845. height: math.unit(2, "mm"),
  5846. default: true
  5847. }
  5848. ]
  5849. ))
  5850. characterMakers.push(() => makeCharacter(
  5851. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5852. {
  5853. front: {
  5854. height: math.unit(8 + 4/12, "feet"),
  5855. name: "Front",
  5856. image: {
  5857. source: "./media/characters/andy-renard/front.svg",
  5858. extra: 1839/1726,
  5859. bottom: 134/1973
  5860. }
  5861. },
  5862. back: {
  5863. height: math.unit(8 + 4/12, "feet"),
  5864. name: "Back",
  5865. image: {
  5866. source: "./media/characters/andy-renard/back.svg",
  5867. extra: 1838/1710,
  5868. bottom: 105/1943
  5869. }
  5870. },
  5871. },
  5872. [
  5873. {
  5874. name: "Tall",
  5875. height: math.unit(8 + 4/12, "feet")
  5876. },
  5877. {
  5878. name: "Mini Macro",
  5879. height: math.unit(15, "feet"),
  5880. default: true
  5881. },
  5882. {
  5883. name: "Macro",
  5884. height: math.unit(100, "feet")
  5885. },
  5886. {
  5887. name: "Mega Macro",
  5888. height: math.unit(1000, "feet")
  5889. },
  5890. {
  5891. name: "Giga Macro",
  5892. height: math.unit(10, "miles")
  5893. },
  5894. {
  5895. name: "God Macro",
  5896. height: math.unit(1, "multiverse")
  5897. },
  5898. ]
  5899. ))
  5900. characterMakers.push(() => makeCharacter(
  5901. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5902. {
  5903. front: {
  5904. height: math.unit(6, "feet"),
  5905. weight: math.unit(210, "lbs"),
  5906. name: "Front",
  5907. image: {
  5908. source: "./media/characters/cimmaron/front-sfw.svg",
  5909. extra: 701 / 676,
  5910. bottom: 0.046
  5911. }
  5912. },
  5913. back: {
  5914. height: math.unit(6, "feet"),
  5915. weight: math.unit(210, "lbs"),
  5916. name: "Back",
  5917. image: {
  5918. source: "./media/characters/cimmaron/back-sfw.svg",
  5919. extra: 701 / 676,
  5920. bottom: 0.046
  5921. }
  5922. },
  5923. frontNsfw: {
  5924. height: math.unit(6, "feet"),
  5925. weight: math.unit(210, "lbs"),
  5926. name: "Front (NSFW)",
  5927. image: {
  5928. source: "./media/characters/cimmaron/front-nsfw.svg",
  5929. extra: 701 / 676,
  5930. bottom: 0.046
  5931. }
  5932. },
  5933. backNsfw: {
  5934. height: math.unit(6, "feet"),
  5935. weight: math.unit(210, "lbs"),
  5936. name: "Back (NSFW)",
  5937. image: {
  5938. source: "./media/characters/cimmaron/back-nsfw.svg",
  5939. extra: 701 / 676,
  5940. bottom: 0.046
  5941. }
  5942. },
  5943. dick: {
  5944. height: math.unit(1.714, "feet"),
  5945. name: "Dick",
  5946. image: {
  5947. source: "./media/characters/cimmaron/dick.svg"
  5948. }
  5949. },
  5950. },
  5951. [
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(6, "feet"),
  5955. default: true
  5956. },
  5957. {
  5958. name: "Macro Mayor",
  5959. height: math.unit(350, "meters")
  5960. },
  5961. ]
  5962. ))
  5963. characterMakers.push(() => makeCharacter(
  5964. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5965. {
  5966. front: {
  5967. height: math.unit(6, "feet"),
  5968. weight: math.unit(200, "lbs"),
  5969. name: "Front",
  5970. image: {
  5971. source: "./media/characters/akari/front.svg",
  5972. extra: 962 / 901,
  5973. bottom: 0.04
  5974. }
  5975. }
  5976. },
  5977. [
  5978. {
  5979. name: "Micro",
  5980. height: math.unit(5, "inches"),
  5981. default: true
  5982. },
  5983. {
  5984. name: "Normal",
  5985. height: math.unit(7, "feet")
  5986. },
  5987. ]
  5988. ))
  5989. characterMakers.push(() => makeCharacter(
  5990. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5991. {
  5992. front: {
  5993. height: math.unit(6, "feet"),
  5994. weight: math.unit(140, "lbs"),
  5995. name: "Front",
  5996. image: {
  5997. source: "./media/characters/cynosura/front.svg",
  5998. extra: 896 / 847
  5999. }
  6000. },
  6001. back: {
  6002. height: math.unit(6, "feet"),
  6003. weight: math.unit(140, "lbs"),
  6004. name: "Back",
  6005. image: {
  6006. source: "./media/characters/cynosura/back.svg",
  6007. extra: 1365 / 1250
  6008. }
  6009. },
  6010. },
  6011. [
  6012. {
  6013. name: "Micro",
  6014. height: math.unit(4, "inches")
  6015. },
  6016. {
  6017. name: "Normal",
  6018. height: math.unit(5.75, "feet"),
  6019. default: true
  6020. },
  6021. {
  6022. name: "Tall",
  6023. height: math.unit(10, "feet")
  6024. },
  6025. {
  6026. name: "Big",
  6027. height: math.unit(20, "feet")
  6028. },
  6029. {
  6030. name: "Macro",
  6031. height: math.unit(50, "feet")
  6032. },
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6037. {
  6038. front: {
  6039. height: math.unit(13 + 2/12, "feet"),
  6040. weight: math.unit(800, "kg"),
  6041. name: "Front",
  6042. image: {
  6043. source: "./media/characters/gin/front.svg",
  6044. extra: 1312/1191,
  6045. bottom: 45/1357
  6046. }
  6047. },
  6048. mouth: {
  6049. height: math.unit(2.39 * 1.8, "feet"),
  6050. name: "Mouth",
  6051. image: {
  6052. source: "./media/characters/gin/mouth.svg"
  6053. }
  6054. },
  6055. hand: {
  6056. height: math.unit(1.57 * 2.19, "feet"),
  6057. name: "Hand",
  6058. image: {
  6059. source: "./media/characters/gin/hand.svg"
  6060. }
  6061. },
  6062. foot: {
  6063. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6064. name: "Foot",
  6065. image: {
  6066. source: "./media/characters/gin/foot.svg"
  6067. }
  6068. },
  6069. sole: {
  6070. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6071. name: "Sole",
  6072. image: {
  6073. source: "./media/characters/gin/sole.svg"
  6074. }
  6075. },
  6076. },
  6077. [
  6078. {
  6079. name: "Very Small",
  6080. height: math.unit(13 + 2 / 12, "feet")
  6081. },
  6082. {
  6083. name: "Micro",
  6084. height: math.unit(600, "miles")
  6085. },
  6086. {
  6087. name: "Regular",
  6088. height: math.unit(20, "earths"),
  6089. default: true
  6090. },
  6091. {
  6092. name: "Macro",
  6093. height: math.unit(2.2, "solarradii")
  6094. },
  6095. {
  6096. name: "Teramacro",
  6097. height: math.unit(1.2, "galaxies")
  6098. },
  6099. {
  6100. name: "Omegamacro",
  6101. height: math.unit(200, "universes")
  6102. },
  6103. ]
  6104. ))
  6105. characterMakers.push(() => makeCharacter(
  6106. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6107. {
  6108. front: {
  6109. height: math.unit(6 + 1 / 6, "feet"),
  6110. weight: math.unit(178, "lbs"),
  6111. name: "Front",
  6112. image: {
  6113. source: "./media/characters/guy/front.svg"
  6114. }
  6115. }
  6116. },
  6117. [
  6118. {
  6119. name: "Normal",
  6120. height: math.unit(6 + 1 / 6, "feet"),
  6121. default: true
  6122. },
  6123. {
  6124. name: "Large",
  6125. height: math.unit(25 + 7 / 12, "feet")
  6126. },
  6127. {
  6128. name: "Macro",
  6129. height: math.unit(60 + 9 / 12, "feet")
  6130. },
  6131. {
  6132. name: "Macro+",
  6133. height: math.unit(246, "feet")
  6134. },
  6135. {
  6136. name: "Macro++",
  6137. height: math.unit(878, "feet")
  6138. }
  6139. ]
  6140. ))
  6141. characterMakers.push(() => makeCharacter(
  6142. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6143. {
  6144. front: {
  6145. height: math.unit(9, "feet"),
  6146. weight: math.unit(800, "lbs"),
  6147. name: "Front",
  6148. image: {
  6149. source: "./media/characters/tiberius/front.svg",
  6150. extra: 2295 / 2071
  6151. }
  6152. },
  6153. back: {
  6154. height: math.unit(9, "feet"),
  6155. weight: math.unit(800, "lbs"),
  6156. name: "Back",
  6157. image: {
  6158. source: "./media/characters/tiberius/back.svg",
  6159. extra: 2373 / 2160
  6160. }
  6161. },
  6162. },
  6163. [
  6164. {
  6165. name: "Normal",
  6166. height: math.unit(9, "feet"),
  6167. default: true
  6168. }
  6169. ]
  6170. ))
  6171. characterMakers.push(() => makeCharacter(
  6172. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6173. {
  6174. front: {
  6175. height: math.unit(6, "feet"),
  6176. weight: math.unit(600, "lbs"),
  6177. name: "Front",
  6178. image: {
  6179. source: "./media/characters/surgo/front.svg",
  6180. extra: 3591 / 2227
  6181. }
  6182. },
  6183. back: {
  6184. height: math.unit(6, "feet"),
  6185. weight: math.unit(600, "lbs"),
  6186. name: "Back",
  6187. image: {
  6188. source: "./media/characters/surgo/back.svg",
  6189. extra: 3557 / 2228
  6190. }
  6191. },
  6192. laying: {
  6193. height: math.unit(6 * 0.85, "feet"),
  6194. weight: math.unit(600, "lbs"),
  6195. name: "Laying",
  6196. image: {
  6197. source: "./media/characters/surgo/laying.svg"
  6198. }
  6199. },
  6200. },
  6201. [
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(6, "feet"),
  6205. default: true
  6206. }
  6207. ]
  6208. ))
  6209. characterMakers.push(() => makeCharacter(
  6210. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6211. {
  6212. side: {
  6213. height: math.unit(6, "feet"),
  6214. weight: math.unit(150, "lbs"),
  6215. name: "Side",
  6216. image: {
  6217. source: "./media/characters/cibus/side.svg",
  6218. extra: 800 / 400
  6219. }
  6220. },
  6221. },
  6222. [
  6223. {
  6224. name: "Normal",
  6225. height: math.unit(6, "feet"),
  6226. default: true
  6227. }
  6228. ]
  6229. ))
  6230. characterMakers.push(() => makeCharacter(
  6231. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6232. {
  6233. front: {
  6234. height: math.unit(6, "feet"),
  6235. weight: math.unit(240, "lbs"),
  6236. name: "Front",
  6237. image: {
  6238. source: "./media/characters/nibbles/front.svg"
  6239. }
  6240. },
  6241. side: {
  6242. height: math.unit(6, "feet"),
  6243. weight: math.unit(240, "lbs"),
  6244. name: "Side",
  6245. image: {
  6246. source: "./media/characters/nibbles/side.svg"
  6247. }
  6248. },
  6249. },
  6250. [
  6251. {
  6252. name: "Normal",
  6253. height: math.unit(9, "feet"),
  6254. default: true
  6255. }
  6256. ]
  6257. ))
  6258. characterMakers.push(() => makeCharacter(
  6259. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6260. {
  6261. side: {
  6262. height: math.unit(5 + 1 / 6, "feet"),
  6263. weight: math.unit(130, "lbs"),
  6264. name: "Side",
  6265. image: {
  6266. source: "./media/characters/rikky/side.svg",
  6267. extra: 851 / 801
  6268. }
  6269. },
  6270. },
  6271. [
  6272. {
  6273. name: "Normal",
  6274. height: math.unit(5 + 1 / 6, "feet")
  6275. },
  6276. {
  6277. name: "Macro",
  6278. height: math.unit(152, "feet"),
  6279. default: true
  6280. },
  6281. {
  6282. name: "Megamacro",
  6283. height: math.unit(7, "miles")
  6284. }
  6285. ]
  6286. ))
  6287. characterMakers.push(() => makeCharacter(
  6288. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6289. {
  6290. side: {
  6291. height: math.unit(370, "cm"),
  6292. weight: math.unit(350, "lbs"),
  6293. name: "Side",
  6294. image: {
  6295. source: "./media/characters/malfressa/side.svg"
  6296. }
  6297. },
  6298. walking: {
  6299. height: math.unit(370, "cm"),
  6300. weight: math.unit(350, "lbs"),
  6301. name: "Walking",
  6302. image: {
  6303. source: "./media/characters/malfressa/walking.svg"
  6304. }
  6305. },
  6306. feral: {
  6307. height: math.unit(2500, "cm"),
  6308. weight: math.unit(100000, "lbs"),
  6309. name: "Feral",
  6310. image: {
  6311. source: "./media/characters/malfressa/feral.svg",
  6312. extra: 2108 / 837,
  6313. bottom: 0.02
  6314. }
  6315. },
  6316. },
  6317. [
  6318. {
  6319. name: "Normal",
  6320. height: math.unit(370, "cm")
  6321. },
  6322. {
  6323. name: "Macro",
  6324. height: math.unit(300, "meters"),
  6325. default: true
  6326. }
  6327. ]
  6328. ))
  6329. characterMakers.push(() => makeCharacter(
  6330. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6331. {
  6332. front: {
  6333. height: math.unit(6, "feet"),
  6334. weight: math.unit(60, "kg"),
  6335. name: "Front",
  6336. image: {
  6337. source: "./media/characters/jaro/front.svg"
  6338. }
  6339. },
  6340. back: {
  6341. height: math.unit(6, "feet"),
  6342. weight: math.unit(60, "kg"),
  6343. name: "Back",
  6344. image: {
  6345. source: "./media/characters/jaro/back.svg"
  6346. }
  6347. },
  6348. },
  6349. [
  6350. {
  6351. name: "Micro",
  6352. height: math.unit(7, "inches")
  6353. },
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(5.5, "feet"),
  6357. default: true
  6358. },
  6359. {
  6360. name: "Minimacro",
  6361. height: math.unit(20, "feet")
  6362. },
  6363. {
  6364. name: "Macro",
  6365. height: math.unit(200, "meters")
  6366. }
  6367. ]
  6368. ))
  6369. characterMakers.push(() => makeCharacter(
  6370. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6371. {
  6372. front: {
  6373. height: math.unit(6, "feet"),
  6374. weight: math.unit(195, "lb"),
  6375. name: "Front",
  6376. image: {
  6377. source: "./media/characters/rogue/front.svg"
  6378. }
  6379. },
  6380. },
  6381. [
  6382. {
  6383. name: "Macro",
  6384. height: math.unit(90, "feet"),
  6385. default: true
  6386. },
  6387. ]
  6388. ))
  6389. characterMakers.push(() => makeCharacter(
  6390. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6391. {
  6392. front: {
  6393. height: math.unit(5 + 8 / 12, "feet"),
  6394. weight: math.unit(140, "lb"),
  6395. name: "Front",
  6396. image: {
  6397. source: "./media/characters/piper/front.svg",
  6398. extra: 3948/3655,
  6399. bottom: 0/3948
  6400. }
  6401. },
  6402. },
  6403. [
  6404. {
  6405. name: "Micro",
  6406. height: math.unit(2, "inches")
  6407. },
  6408. {
  6409. name: "Normal",
  6410. height: math.unit(5 + 8 / 12, "feet")
  6411. },
  6412. {
  6413. name: "Macro",
  6414. height: math.unit(250, "feet"),
  6415. default: true
  6416. },
  6417. {
  6418. name: "Megamacro",
  6419. height: math.unit(7, "miles")
  6420. },
  6421. ]
  6422. ))
  6423. characterMakers.push(() => makeCharacter(
  6424. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6425. {
  6426. front: {
  6427. height: math.unit(6, "feet"),
  6428. weight: math.unit(220, "lb"),
  6429. name: "Front",
  6430. image: {
  6431. source: "./media/characters/gemini/front.svg"
  6432. }
  6433. },
  6434. back: {
  6435. height: math.unit(6, "feet"),
  6436. weight: math.unit(220, "lb"),
  6437. name: "Back",
  6438. image: {
  6439. source: "./media/characters/gemini/back.svg"
  6440. }
  6441. },
  6442. kneeling: {
  6443. height: math.unit(6 / 1.5, "feet"),
  6444. weight: math.unit(220, "lb"),
  6445. name: "Kneeling",
  6446. image: {
  6447. source: "./media/characters/gemini/kneeling.svg",
  6448. bottom: 0.02
  6449. }
  6450. },
  6451. },
  6452. [
  6453. {
  6454. name: "Macro",
  6455. height: math.unit(300, "meters"),
  6456. default: true
  6457. },
  6458. {
  6459. name: "Megamacro",
  6460. height: math.unit(6900, "meters")
  6461. },
  6462. ]
  6463. ))
  6464. characterMakers.push(() => makeCharacter(
  6465. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6466. {
  6467. anthro: {
  6468. height: math.unit(2.35, "meters"),
  6469. weight: math.unit(73, "kg"),
  6470. name: "Anthro",
  6471. image: {
  6472. source: "./media/characters/alicia/anthro.svg",
  6473. extra: 2571 / 2385,
  6474. bottom: 75 / 2648
  6475. }
  6476. },
  6477. paw: {
  6478. height: math.unit(1.32, "feet"),
  6479. name: "Paw",
  6480. image: {
  6481. source: "./media/characters/alicia/paw.svg"
  6482. }
  6483. },
  6484. feral: {
  6485. height: math.unit(1.69, "meters"),
  6486. weight: math.unit(73, "kg"),
  6487. name: "Feral",
  6488. image: {
  6489. source: "./media/characters/alicia/feral.svg",
  6490. extra: 2123 / 1715,
  6491. bottom: 222 / 2349
  6492. }
  6493. },
  6494. },
  6495. [
  6496. {
  6497. name: "Normal",
  6498. height: math.unit(2.35, "meters")
  6499. },
  6500. {
  6501. name: "Macro",
  6502. height: math.unit(60, "meters"),
  6503. default: true
  6504. },
  6505. {
  6506. name: "Megamacro",
  6507. height: math.unit(10000, "kilometers")
  6508. },
  6509. ]
  6510. ))
  6511. characterMakers.push(() => makeCharacter(
  6512. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6513. {
  6514. front: {
  6515. height: math.unit(7, "feet"),
  6516. weight: math.unit(250, "lbs"),
  6517. name: "Front",
  6518. image: {
  6519. source: "./media/characters/archy/front.svg"
  6520. }
  6521. }
  6522. },
  6523. [
  6524. {
  6525. name: "Micro",
  6526. height: math.unit(1, "inch")
  6527. },
  6528. {
  6529. name: "Shorty",
  6530. height: math.unit(5, "feet")
  6531. },
  6532. {
  6533. name: "Normal",
  6534. height: math.unit(7, "feet")
  6535. },
  6536. {
  6537. name: "Macro",
  6538. height: math.unit(600, "meters"),
  6539. default: true
  6540. },
  6541. {
  6542. name: "Megamacro",
  6543. height: math.unit(1, "mile")
  6544. },
  6545. ]
  6546. ))
  6547. characterMakers.push(() => makeCharacter(
  6548. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6549. {
  6550. front: {
  6551. height: math.unit(1.65, "meters"),
  6552. weight: math.unit(74, "kg"),
  6553. name: "Front",
  6554. image: {
  6555. source: "./media/characters/berri/front.svg",
  6556. extra: 857 / 837,
  6557. bottom: 18 / 877
  6558. }
  6559. },
  6560. bum: {
  6561. height: math.unit(1.46, "feet"),
  6562. name: "Bum",
  6563. image: {
  6564. source: "./media/characters/berri/bum.svg"
  6565. }
  6566. },
  6567. mouth: {
  6568. height: math.unit(0.44, "feet"),
  6569. name: "Mouth",
  6570. image: {
  6571. source: "./media/characters/berri/mouth.svg"
  6572. }
  6573. },
  6574. paw: {
  6575. height: math.unit(0.826, "feet"),
  6576. name: "Paw",
  6577. image: {
  6578. source: "./media/characters/berri/paw.svg"
  6579. }
  6580. },
  6581. },
  6582. [
  6583. {
  6584. name: "Normal",
  6585. height: math.unit(1.65, "meters")
  6586. },
  6587. {
  6588. name: "Macro",
  6589. height: math.unit(60, "m"),
  6590. default: true
  6591. },
  6592. {
  6593. name: "Megamacro",
  6594. height: math.unit(9.213, "km")
  6595. },
  6596. {
  6597. name: "Planet Eater",
  6598. height: math.unit(489, "megameters")
  6599. },
  6600. {
  6601. name: "Teramacro",
  6602. height: math.unit(2471635000000, "meters")
  6603. },
  6604. {
  6605. name: "Examacro",
  6606. height: math.unit(8.0624e+26, "meters")
  6607. }
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6612. {
  6613. front: {
  6614. height: math.unit(1.72, "meters"),
  6615. weight: math.unit(68, "kg"),
  6616. name: "Front",
  6617. image: {
  6618. source: "./media/characters/lexi/front.svg"
  6619. }
  6620. }
  6621. },
  6622. [
  6623. {
  6624. name: "Very Smol",
  6625. height: math.unit(10, "mm")
  6626. },
  6627. {
  6628. name: "Micro",
  6629. height: math.unit(6.8, "cm"),
  6630. default: true
  6631. },
  6632. {
  6633. name: "Normal",
  6634. height: math.unit(1.72, "m")
  6635. }
  6636. ]
  6637. ))
  6638. characterMakers.push(() => makeCharacter(
  6639. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6640. {
  6641. front: {
  6642. height: math.unit(1.69, "meters"),
  6643. weight: math.unit(68, "kg"),
  6644. name: "Front",
  6645. image: {
  6646. source: "./media/characters/martin/front.svg",
  6647. extra: 596 / 581
  6648. }
  6649. }
  6650. },
  6651. [
  6652. {
  6653. name: "Micro",
  6654. height: math.unit(6.85, "cm"),
  6655. default: true
  6656. },
  6657. {
  6658. name: "Normal",
  6659. height: math.unit(1.69, "m")
  6660. }
  6661. ]
  6662. ))
  6663. characterMakers.push(() => makeCharacter(
  6664. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6665. {
  6666. front: {
  6667. height: math.unit(1.69, "meters"),
  6668. weight: math.unit(68, "kg"),
  6669. name: "Front",
  6670. image: {
  6671. source: "./media/characters/juno/front.svg"
  6672. }
  6673. }
  6674. },
  6675. [
  6676. {
  6677. name: "Micro",
  6678. height: math.unit(7, "cm")
  6679. },
  6680. {
  6681. name: "Normal",
  6682. height: math.unit(1.89, "m")
  6683. },
  6684. {
  6685. name: "Macro",
  6686. height: math.unit(353, "meters"),
  6687. default: true
  6688. }
  6689. ]
  6690. ))
  6691. characterMakers.push(() => makeCharacter(
  6692. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6693. {
  6694. front: {
  6695. height: math.unit(1.93, "meters"),
  6696. weight: math.unit(83, "kg"),
  6697. name: "Front",
  6698. image: {
  6699. source: "./media/characters/samantha/front.svg"
  6700. }
  6701. },
  6702. frontClothed: {
  6703. height: math.unit(1.93, "meters"),
  6704. weight: math.unit(83, "kg"),
  6705. name: "Front (Clothed)",
  6706. image: {
  6707. source: "./media/characters/samantha/front-clothed.svg"
  6708. }
  6709. },
  6710. back: {
  6711. height: math.unit(1.93, "meters"),
  6712. weight: math.unit(83, "kg"),
  6713. name: "Back",
  6714. image: {
  6715. source: "./media/characters/samantha/back.svg"
  6716. }
  6717. },
  6718. },
  6719. [
  6720. {
  6721. name: "Normal",
  6722. height: math.unit(1.93, "m")
  6723. },
  6724. {
  6725. name: "Macro",
  6726. height: math.unit(74, "meters"),
  6727. default: true
  6728. },
  6729. {
  6730. name: "Macro+",
  6731. height: math.unit(223, "meters"),
  6732. },
  6733. {
  6734. name: "Megamacro",
  6735. height: math.unit(8381, "meters"),
  6736. },
  6737. {
  6738. name: "Megamacro+",
  6739. height: math.unit(12000, "kilometers")
  6740. },
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6745. {
  6746. front: {
  6747. height: math.unit(1.92, "meters"),
  6748. weight: math.unit(80, "kg"),
  6749. name: "Front",
  6750. image: {
  6751. source: "./media/characters/dr-clay/front.svg"
  6752. }
  6753. },
  6754. frontClothed: {
  6755. height: math.unit(1.92, "meters"),
  6756. weight: math.unit(80, "kg"),
  6757. name: "Front (Clothed)",
  6758. image: {
  6759. source: "./media/characters/dr-clay/front-clothed.svg"
  6760. }
  6761. }
  6762. },
  6763. [
  6764. {
  6765. name: "Normal",
  6766. height: math.unit(1.92, "m")
  6767. },
  6768. {
  6769. name: "Macro",
  6770. height: math.unit(214, "meters"),
  6771. default: true
  6772. },
  6773. {
  6774. name: "Macro+",
  6775. height: math.unit(12.237, "meters"),
  6776. },
  6777. {
  6778. name: "Megamacro",
  6779. height: math.unit(557, "megameters"),
  6780. },
  6781. {
  6782. name: "Unimaginable",
  6783. height: math.unit(120e9, "lightyears")
  6784. },
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6789. {
  6790. front: {
  6791. height: math.unit(2, "meters"),
  6792. weight: math.unit(80, "kg"),
  6793. name: "Front",
  6794. image: {
  6795. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6796. }
  6797. }
  6798. },
  6799. [
  6800. {
  6801. name: "Teramacro",
  6802. height: math.unit(500000, "lightyears"),
  6803. default: true
  6804. },
  6805. ]
  6806. ))
  6807. characterMakers.push(() => makeCharacter(
  6808. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6809. {
  6810. crux: {
  6811. height: math.unit(2, "meters"),
  6812. weight: math.unit(150, "kg"),
  6813. name: "Crux",
  6814. image: {
  6815. source: "./media/characters/vemus/crux.svg",
  6816. extra: 1074/936,
  6817. bottom: 23/1097
  6818. }
  6819. },
  6820. skunkTanuki: {
  6821. height: math.unit(2, "meters"),
  6822. weight: math.unit(150, "kg"),
  6823. name: "Skunk-Tanuki",
  6824. image: {
  6825. source: "./media/characters/vemus/skunk-tanuki.svg",
  6826. extra: 926/893,
  6827. bottom: 20/946
  6828. }
  6829. },
  6830. },
  6831. [
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(3.75, "meters"),
  6835. default: true
  6836. },
  6837. {
  6838. name: "Big",
  6839. height: math.unit(8, "meters")
  6840. },
  6841. {
  6842. name: "Macro",
  6843. height: math.unit(100, "meters")
  6844. },
  6845. {
  6846. name: "Macro+",
  6847. height: math.unit(1500, "meters")
  6848. },
  6849. {
  6850. name: "Stellar",
  6851. height: math.unit(14e8, "meters")
  6852. },
  6853. ]
  6854. ))
  6855. characterMakers.push(() => makeCharacter(
  6856. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6857. {
  6858. front: {
  6859. height: math.unit(2, "meters"),
  6860. weight: math.unit(70, "kg"),
  6861. name: "Front",
  6862. image: {
  6863. source: "./media/characters/beherit/front.svg",
  6864. extra: 1408 / 1242
  6865. }
  6866. }
  6867. },
  6868. [
  6869. {
  6870. name: "Normal",
  6871. height: math.unit(6, "feet")
  6872. },
  6873. {
  6874. name: "Lorg",
  6875. height: math.unit(25, "feet"),
  6876. default: true
  6877. },
  6878. {
  6879. name: "Lorger",
  6880. height: math.unit(75, "feet")
  6881. },
  6882. {
  6883. name: "Macro",
  6884. height: math.unit(200, "meters")
  6885. },
  6886. ]
  6887. ))
  6888. characterMakers.push(() => makeCharacter(
  6889. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6890. {
  6891. front: {
  6892. height: math.unit(2, "meters"),
  6893. weight: math.unit(150, "kg"),
  6894. name: "Front",
  6895. image: {
  6896. source: "./media/characters/everett/front.svg",
  6897. extra: 2038 / 1737,
  6898. bottom: 0.03
  6899. }
  6900. },
  6901. paw: {
  6902. height: math.unit(2 / 3.6, "meters"),
  6903. name: "Paw",
  6904. image: {
  6905. source: "./media/characters/everett/paw.svg"
  6906. }
  6907. },
  6908. },
  6909. [
  6910. {
  6911. name: "Normal",
  6912. height: math.unit(15, "feet"),
  6913. default: true
  6914. },
  6915. {
  6916. name: "Lorg",
  6917. height: math.unit(70, "feet"),
  6918. default: true
  6919. },
  6920. {
  6921. name: "Lorger",
  6922. height: math.unit(250, "feet")
  6923. },
  6924. {
  6925. name: "Macro",
  6926. height: math.unit(500, "meters")
  6927. },
  6928. ]
  6929. ))
  6930. characterMakers.push(() => makeCharacter(
  6931. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6932. {
  6933. front: {
  6934. height: math.unit(2, "meters"),
  6935. weight: math.unit(86, "kg"),
  6936. name: "Front",
  6937. image: {
  6938. source: "./media/characters/rose/front.svg",
  6939. extra: 1785/1636,
  6940. bottom: 30/1815
  6941. }
  6942. },
  6943. frontSporty: {
  6944. height: math.unit(2, "meters"),
  6945. weight: math.unit(86, "kg"),
  6946. name: "Front (Sporty)",
  6947. image: {
  6948. source: "./media/characters/rose/front-sporty.svg",
  6949. extra: 350/335,
  6950. bottom: 10/360
  6951. }
  6952. },
  6953. frontAlt: {
  6954. height: math.unit(1.6, "meters"),
  6955. weight: math.unit(86, "kg"),
  6956. name: "Front (Alt)",
  6957. image: {
  6958. source: "./media/characters/rose/front-alt.svg",
  6959. extra: 299/283,
  6960. bottom: 3/302
  6961. }
  6962. },
  6963. plush: {
  6964. height: math.unit(2, "meters"),
  6965. weight: math.unit(86/3, "kg"),
  6966. name: "Plush",
  6967. image: {
  6968. source: "./media/characters/rose/plush.svg",
  6969. extra: 361/337,
  6970. bottom: 11/372
  6971. }
  6972. },
  6973. },
  6974. [
  6975. {
  6976. name: "True Micro",
  6977. height: math.unit(9, "cm")
  6978. },
  6979. {
  6980. name: "Micro",
  6981. height: math.unit(16, "cm")
  6982. },
  6983. {
  6984. name: "Normal",
  6985. height: math.unit(1.85, "meters"),
  6986. default: true
  6987. },
  6988. {
  6989. name: "Mini-Macro",
  6990. height: math.unit(5, "meters")
  6991. },
  6992. {
  6993. name: "Macro",
  6994. height: math.unit(15, "meters")
  6995. },
  6996. {
  6997. name: "True Macro",
  6998. height: math.unit(40, "meters")
  6999. },
  7000. {
  7001. name: "City Scale",
  7002. height: math.unit(1, "km")
  7003. },
  7004. ]
  7005. ))
  7006. characterMakers.push(() => makeCharacter(
  7007. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7008. {
  7009. front: {
  7010. height: math.unit(2, "meters"),
  7011. weight: math.unit(350, "lbs"),
  7012. name: "Front",
  7013. image: {
  7014. source: "./media/characters/regal/front.svg"
  7015. }
  7016. },
  7017. back: {
  7018. height: math.unit(2, "meters"),
  7019. weight: math.unit(350, "lbs"),
  7020. name: "Back",
  7021. image: {
  7022. source: "./media/characters/regal/back.svg"
  7023. }
  7024. },
  7025. },
  7026. [
  7027. {
  7028. name: "Macro",
  7029. height: math.unit(350, "feet"),
  7030. default: true
  7031. }
  7032. ]
  7033. ))
  7034. characterMakers.push(() => makeCharacter(
  7035. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7036. {
  7037. front: {
  7038. height: math.unit(4 + 11 / 12, "feet"),
  7039. weight: math.unit(100, "lbs"),
  7040. name: "Front",
  7041. image: {
  7042. source: "./media/characters/opal/front.svg"
  7043. }
  7044. },
  7045. frontAlt: {
  7046. height: math.unit(4 + 11 / 12, "feet"),
  7047. weight: math.unit(100, "lbs"),
  7048. name: "Front (Alt)",
  7049. image: {
  7050. source: "./media/characters/opal/front-alt.svg"
  7051. }
  7052. },
  7053. },
  7054. [
  7055. {
  7056. name: "Small",
  7057. height: math.unit(4 + 11 / 12, "feet")
  7058. },
  7059. {
  7060. name: "Normal",
  7061. height: math.unit(20, "feet"),
  7062. default: true
  7063. },
  7064. {
  7065. name: "Macro",
  7066. height: math.unit(120, "feet")
  7067. },
  7068. {
  7069. name: "Megamacro",
  7070. height: math.unit(80, "miles")
  7071. },
  7072. {
  7073. name: "True Size",
  7074. height: math.unit(100000, "lightyears")
  7075. },
  7076. ]
  7077. ))
  7078. characterMakers.push(() => makeCharacter(
  7079. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7080. {
  7081. front: {
  7082. height: math.unit(6, "feet"),
  7083. weight: math.unit(200, "lbs"),
  7084. name: "Front",
  7085. image: {
  7086. source: "./media/characters/vector-wuff/front.svg"
  7087. }
  7088. }
  7089. },
  7090. [
  7091. {
  7092. name: "Normal",
  7093. height: math.unit(2.8, "meters")
  7094. },
  7095. {
  7096. name: "Macro",
  7097. height: math.unit(450, "meters"),
  7098. default: true
  7099. },
  7100. {
  7101. name: "Megamacro",
  7102. height: math.unit(15, "kilometers")
  7103. }
  7104. ]
  7105. ))
  7106. characterMakers.push(() => makeCharacter(
  7107. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7108. {
  7109. front: {
  7110. height: math.unit(6, "feet"),
  7111. weight: math.unit(256, "lbs"),
  7112. name: "Front",
  7113. image: {
  7114. source: "./media/characters/dannik/front.svg"
  7115. }
  7116. }
  7117. },
  7118. [
  7119. {
  7120. name: "Macro",
  7121. height: math.unit(69.57, "meters"),
  7122. default: true
  7123. },
  7124. ]
  7125. ))
  7126. characterMakers.push(() => makeCharacter(
  7127. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7128. {
  7129. front: {
  7130. height: math.unit(6, "feet"),
  7131. weight: math.unit(120, "lbs"),
  7132. name: "Front",
  7133. image: {
  7134. source: "./media/characters/azura-saharah/front.svg"
  7135. }
  7136. },
  7137. back: {
  7138. height: math.unit(6, "feet"),
  7139. weight: math.unit(120, "lbs"),
  7140. name: "Back",
  7141. image: {
  7142. source: "./media/characters/azura-saharah/back.svg"
  7143. }
  7144. },
  7145. },
  7146. [
  7147. {
  7148. name: "Macro",
  7149. height: math.unit(100, "feet"),
  7150. default: true
  7151. },
  7152. ]
  7153. ))
  7154. characterMakers.push(() => makeCharacter(
  7155. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7156. {
  7157. side: {
  7158. height: math.unit(5 + 4 / 12, "feet"),
  7159. weight: math.unit(163, "lbs"),
  7160. name: "Side",
  7161. image: {
  7162. source: "./media/characters/kennedy/side.svg"
  7163. }
  7164. }
  7165. },
  7166. [
  7167. {
  7168. name: "Standard Doggo",
  7169. height: math.unit(5 + 4 / 12, "feet")
  7170. },
  7171. {
  7172. name: "Big Doggo",
  7173. height: math.unit(25 + 3 / 12, "feet"),
  7174. default: true
  7175. },
  7176. ]
  7177. ))
  7178. characterMakers.push(() => makeCharacter(
  7179. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7180. {
  7181. front: {
  7182. height: math.unit(5 + 5/12, "feet"),
  7183. weight: math.unit(100, "lbs"),
  7184. name: "Front",
  7185. image: {
  7186. source: "./media/characters/odios-de-lunar/front.svg",
  7187. extra: 1468/1323,
  7188. bottom: 22/1490
  7189. }
  7190. }
  7191. },
  7192. [
  7193. {
  7194. name: "Micro",
  7195. height: math.unit(3, "inches")
  7196. },
  7197. {
  7198. name: "Normal",
  7199. height: math.unit(5.5, "feet"),
  7200. default: true
  7201. },
  7202. {
  7203. name: "Macro",
  7204. height: math.unit(100, "feet")
  7205. },
  7206. ]
  7207. ))
  7208. characterMakers.push(() => makeCharacter(
  7209. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7210. {
  7211. back: {
  7212. height: math.unit(6, "feet"),
  7213. weight: math.unit(220, "lbs"),
  7214. name: "Back",
  7215. image: {
  7216. source: "./media/characters/mandake/back.svg"
  7217. }
  7218. }
  7219. },
  7220. [
  7221. {
  7222. name: "Normal",
  7223. height: math.unit(7, "feet"),
  7224. default: true
  7225. },
  7226. {
  7227. name: "Macro",
  7228. height: math.unit(78, "feet")
  7229. },
  7230. {
  7231. name: "Macro+",
  7232. height: math.unit(300, "meters")
  7233. },
  7234. {
  7235. name: "Macro++",
  7236. height: math.unit(2400, "feet")
  7237. },
  7238. {
  7239. name: "Megamacro",
  7240. height: math.unit(5167, "meters")
  7241. },
  7242. {
  7243. name: "Gigamacro",
  7244. height: math.unit(41769, "miles")
  7245. },
  7246. ]
  7247. ))
  7248. characterMakers.push(() => makeCharacter(
  7249. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7250. {
  7251. front: {
  7252. height: math.unit(6, "feet"),
  7253. weight: math.unit(120, "lbs"),
  7254. name: "Front",
  7255. image: {
  7256. source: "./media/characters/yozey/front.svg"
  7257. }
  7258. },
  7259. frontAlt: {
  7260. height: math.unit(6, "feet"),
  7261. weight: math.unit(120, "lbs"),
  7262. name: "Front (Alt)",
  7263. image: {
  7264. source: "./media/characters/yozey/front-alt.svg"
  7265. }
  7266. },
  7267. side: {
  7268. height: math.unit(6, "feet"),
  7269. weight: math.unit(120, "lbs"),
  7270. name: "Side",
  7271. image: {
  7272. source: "./media/characters/yozey/side.svg"
  7273. }
  7274. },
  7275. },
  7276. [
  7277. {
  7278. name: "Micro",
  7279. height: math.unit(3, "inches"),
  7280. default: true
  7281. },
  7282. {
  7283. name: "Normal",
  7284. height: math.unit(6, "feet")
  7285. }
  7286. ]
  7287. ))
  7288. characterMakers.push(() => makeCharacter(
  7289. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7290. {
  7291. front: {
  7292. height: math.unit(6, "feet"),
  7293. weight: math.unit(103, "lbs"),
  7294. name: "Front",
  7295. image: {
  7296. source: "./media/characters/valeska-voss/front.svg"
  7297. }
  7298. }
  7299. },
  7300. [
  7301. {
  7302. name: "Mini-Sized Sub",
  7303. height: math.unit(3.1, "inches")
  7304. },
  7305. {
  7306. name: "Mid-Sized Sub",
  7307. height: math.unit(6.2, "inches")
  7308. },
  7309. {
  7310. name: "Full-Sized Sub",
  7311. height: math.unit(9.3, "inches")
  7312. },
  7313. {
  7314. name: "Normal",
  7315. height: math.unit(5 + 2 / 12, "foot"),
  7316. default: true
  7317. },
  7318. ]
  7319. ))
  7320. characterMakers.push(() => makeCharacter(
  7321. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7322. {
  7323. front: {
  7324. height: math.unit(6, "feet"),
  7325. weight: math.unit(160, "lbs"),
  7326. name: "Front",
  7327. image: {
  7328. source: "./media/characters/gene-zeta/front.svg",
  7329. extra: 3006 / 2826,
  7330. bottom: 182 / 3188
  7331. }
  7332. }
  7333. },
  7334. [
  7335. {
  7336. name: "Micro",
  7337. height: math.unit(6, "inches")
  7338. },
  7339. {
  7340. name: "Normal",
  7341. height: math.unit(5 + 11 / 12, "foot"),
  7342. default: true
  7343. },
  7344. {
  7345. name: "Macro",
  7346. height: math.unit(140, "feet")
  7347. },
  7348. {
  7349. name: "Supercharged",
  7350. height: math.unit(2500, "feet")
  7351. },
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7356. {
  7357. front: {
  7358. height: math.unit(6, "feet"),
  7359. weight: math.unit(350, "lbs"),
  7360. name: "Front",
  7361. image: {
  7362. source: "./media/characters/razinox/front.svg",
  7363. extra: 1686 / 1548,
  7364. bottom: 28.2 / 1868
  7365. }
  7366. },
  7367. back: {
  7368. height: math.unit(6, "feet"),
  7369. weight: math.unit(350, "lbs"),
  7370. name: "Back",
  7371. image: {
  7372. source: "./media/characters/razinox/back.svg",
  7373. extra: 1660 / 1590,
  7374. bottom: 15 / 1665
  7375. }
  7376. },
  7377. },
  7378. [
  7379. {
  7380. name: "Normal",
  7381. height: math.unit(10 + 8 / 12, "foot")
  7382. },
  7383. {
  7384. name: "Minimacro",
  7385. height: math.unit(15, "foot")
  7386. },
  7387. {
  7388. name: "Macro",
  7389. height: math.unit(60, "foot"),
  7390. default: true
  7391. },
  7392. {
  7393. name: "Megamacro",
  7394. height: math.unit(5, "miles")
  7395. },
  7396. {
  7397. name: "Gigamacro",
  7398. height: math.unit(6000, "miles")
  7399. },
  7400. ]
  7401. ))
  7402. characterMakers.push(() => makeCharacter(
  7403. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7404. {
  7405. front: {
  7406. height: math.unit(6, "feet"),
  7407. weight: math.unit(150, "lbs"),
  7408. name: "Front",
  7409. image: {
  7410. source: "./media/characters/cobalt/front.svg"
  7411. }
  7412. }
  7413. },
  7414. [
  7415. {
  7416. name: "Normal",
  7417. height: math.unit(8 + 1 / 12, "foot")
  7418. },
  7419. {
  7420. name: "Macro",
  7421. height: math.unit(111, "foot"),
  7422. default: true
  7423. },
  7424. {
  7425. name: "Supracosmic",
  7426. height: math.unit(1e42, "feet")
  7427. },
  7428. ]
  7429. ))
  7430. characterMakers.push(() => makeCharacter(
  7431. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7432. {
  7433. front: {
  7434. height: math.unit(6, "feet"),
  7435. weight: math.unit(140, "lbs"),
  7436. name: "Front",
  7437. image: {
  7438. source: "./media/characters/amanda/front.svg"
  7439. }
  7440. }
  7441. },
  7442. [
  7443. {
  7444. name: "Micro",
  7445. height: math.unit(5, "inches"),
  7446. default: true
  7447. },
  7448. ]
  7449. ))
  7450. characterMakers.push(() => makeCharacter(
  7451. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7452. {
  7453. front: {
  7454. height: math.unit(2.75, "meters"),
  7455. weight: math.unit(1200, "lb"),
  7456. name: "Front",
  7457. image: {
  7458. source: "./media/characters/teal/front.svg",
  7459. extra: 2463 / 2320,
  7460. bottom: 166 / 2629
  7461. }
  7462. },
  7463. back: {
  7464. height: math.unit(2.75, "meters"),
  7465. weight: math.unit(1200, "lb"),
  7466. name: "Back",
  7467. image: {
  7468. source: "./media/characters/teal/back.svg",
  7469. extra: 2580 / 2489,
  7470. bottom: 151 / 2731
  7471. }
  7472. },
  7473. sitting: {
  7474. height: math.unit(1.9, "meters"),
  7475. weight: math.unit(1200, "lb"),
  7476. name: "Sitting",
  7477. image: {
  7478. source: "./media/characters/teal/sitting.svg",
  7479. extra: 623 / 590,
  7480. bottom: 121 / 744
  7481. }
  7482. },
  7483. standing: {
  7484. height: math.unit(2.75, "meters"),
  7485. weight: math.unit(1200, "lb"),
  7486. name: "Standing",
  7487. image: {
  7488. source: "./media/characters/teal/standing.svg",
  7489. extra: 923 / 893,
  7490. bottom: 60 / 983
  7491. }
  7492. },
  7493. stretching: {
  7494. height: math.unit(3.65, "meters"),
  7495. weight: math.unit(1200, "lb"),
  7496. name: "Stretching",
  7497. image: {
  7498. source: "./media/characters/teal/stretching.svg",
  7499. extra: 1276 / 1244,
  7500. bottom: 0 / 1276
  7501. }
  7502. },
  7503. legged: {
  7504. height: math.unit(1.3, "meters"),
  7505. weight: math.unit(100, "lb"),
  7506. name: "Legged",
  7507. image: {
  7508. source: "./media/characters/teal/legged.svg",
  7509. extra: 462 / 437,
  7510. bottom: 24 / 486
  7511. }
  7512. },
  7513. naga: {
  7514. height: math.unit(5.4, "meters"),
  7515. weight: math.unit(4000, "lb"),
  7516. name: "Naga",
  7517. image: {
  7518. source: "./media/characters/teal/naga.svg",
  7519. extra: 1902 / 1858,
  7520. bottom: 0 / 1902
  7521. }
  7522. },
  7523. hand: {
  7524. height: math.unit(0.52, "meters"),
  7525. name: "Hand",
  7526. image: {
  7527. source: "./media/characters/teal/hand.svg"
  7528. }
  7529. },
  7530. maw: {
  7531. height: math.unit(0.43, "meters"),
  7532. name: "Maw",
  7533. image: {
  7534. source: "./media/characters/teal/maw.svg"
  7535. }
  7536. },
  7537. slit: {
  7538. height: math.unit(0.25, "meters"),
  7539. name: "Slit",
  7540. image: {
  7541. source: "./media/characters/teal/slit.svg"
  7542. }
  7543. },
  7544. },
  7545. [
  7546. {
  7547. name: "Normal",
  7548. height: math.unit(2.75, "meters"),
  7549. default: true
  7550. },
  7551. {
  7552. name: "Macro",
  7553. height: math.unit(300, "feet")
  7554. },
  7555. {
  7556. name: "Macro+",
  7557. height: math.unit(2000, "feet")
  7558. },
  7559. ]
  7560. ))
  7561. characterMakers.push(() => makeCharacter(
  7562. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7563. {
  7564. frontCat: {
  7565. height: math.unit(6, "feet"),
  7566. weight: math.unit(180, "lbs"),
  7567. name: "Front (Cat)",
  7568. image: {
  7569. source: "./media/characters/ravin-amulet/front-cat.svg"
  7570. }
  7571. },
  7572. frontCatAlt: {
  7573. height: math.unit(6, "feet"),
  7574. weight: math.unit(180, "lbs"),
  7575. name: "Front (Alt, Cat)",
  7576. image: {
  7577. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7578. }
  7579. },
  7580. frontWerewolf: {
  7581. height: math.unit(6 * 1.2, "feet"),
  7582. weight: math.unit(225, "lbs"),
  7583. name: "Front (Werewolf)",
  7584. image: {
  7585. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7586. }
  7587. },
  7588. backWerewolf: {
  7589. height: math.unit(6 * 1.2, "feet"),
  7590. weight: math.unit(225, "lbs"),
  7591. name: "Back (Werewolf)",
  7592. image: {
  7593. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7594. }
  7595. },
  7596. },
  7597. [
  7598. {
  7599. name: "Nano",
  7600. height: math.unit(1, "micrometer")
  7601. },
  7602. {
  7603. name: "Micro",
  7604. height: math.unit(1, "inch")
  7605. },
  7606. {
  7607. name: "Normal",
  7608. height: math.unit(6, "feet"),
  7609. default: true
  7610. },
  7611. {
  7612. name: "Macro",
  7613. height: math.unit(60, "feet")
  7614. }
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7619. {
  7620. front: {
  7621. height: math.unit(6, "feet"),
  7622. weight: math.unit(165, "lbs"),
  7623. name: "Front",
  7624. image: {
  7625. source: "./media/characters/fluoresce/front.svg"
  7626. }
  7627. }
  7628. },
  7629. [
  7630. {
  7631. name: "Micro",
  7632. height: math.unit(6, "cm")
  7633. },
  7634. {
  7635. name: "Normal",
  7636. height: math.unit(5 + 7 / 12, "feet"),
  7637. default: true
  7638. },
  7639. {
  7640. name: "Macro",
  7641. height: math.unit(56, "feet")
  7642. },
  7643. {
  7644. name: "Megamacro",
  7645. height: math.unit(1.9, "miles")
  7646. },
  7647. ]
  7648. ))
  7649. characterMakers.push(() => makeCharacter(
  7650. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7651. {
  7652. front: {
  7653. height: math.unit(9 + 6 / 12, "feet"),
  7654. weight: math.unit(523, "lbs"),
  7655. name: "Side",
  7656. image: {
  7657. source: "./media/characters/aurora/side.svg"
  7658. }
  7659. }
  7660. },
  7661. [
  7662. {
  7663. name: "Normal",
  7664. height: math.unit(9 + 6 / 12, "feet")
  7665. },
  7666. {
  7667. name: "Macro",
  7668. height: math.unit(96, "feet"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Macro+",
  7673. height: math.unit(243, "feet")
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(194, "cm"),
  7682. weight: math.unit(90, "kg"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/ranek/front.svg"
  7686. }
  7687. },
  7688. side: {
  7689. height: math.unit(194, "cm"),
  7690. weight: math.unit(90, "kg"),
  7691. name: "Side",
  7692. image: {
  7693. source: "./media/characters/ranek/side.svg"
  7694. }
  7695. },
  7696. back: {
  7697. height: math.unit(194, "cm"),
  7698. weight: math.unit(90, "kg"),
  7699. name: "Back",
  7700. image: {
  7701. source: "./media/characters/ranek/back.svg"
  7702. }
  7703. },
  7704. feral: {
  7705. height: math.unit(30, "cm"),
  7706. weight: math.unit(1.6, "lbs"),
  7707. name: "Feral",
  7708. image: {
  7709. source: "./media/characters/ranek/feral.svg"
  7710. }
  7711. },
  7712. },
  7713. [
  7714. {
  7715. name: "Normal",
  7716. height: math.unit(194, "cm"),
  7717. default: true
  7718. },
  7719. {
  7720. name: "Macro",
  7721. height: math.unit(100, "meters")
  7722. },
  7723. ]
  7724. ))
  7725. characterMakers.push(() => makeCharacter(
  7726. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7727. {
  7728. front: {
  7729. height: math.unit(5 + 6 / 12, "feet"),
  7730. weight: math.unit(153, "lbs"),
  7731. name: "Front",
  7732. image: {
  7733. source: "./media/characters/andrew-cooper/front.svg"
  7734. }
  7735. },
  7736. },
  7737. [
  7738. {
  7739. name: "Nano",
  7740. height: math.unit(1, "mm")
  7741. },
  7742. {
  7743. name: "Micro",
  7744. height: math.unit(2, "inches")
  7745. },
  7746. {
  7747. name: "Normal",
  7748. height: math.unit(5 + 6 / 12, "feet"),
  7749. default: true
  7750. }
  7751. ]
  7752. ))
  7753. characterMakers.push(() => makeCharacter(
  7754. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7755. {
  7756. front: {
  7757. height: math.unit(6, "feet"),
  7758. weight: math.unit(180, "lbs"),
  7759. name: "Front",
  7760. image: {
  7761. source: "./media/characters/akane-sato/front.svg",
  7762. extra: 1219 / 1140
  7763. }
  7764. },
  7765. back: {
  7766. height: math.unit(6, "feet"),
  7767. weight: math.unit(180, "lbs"),
  7768. name: "Back",
  7769. image: {
  7770. source: "./media/characters/akane-sato/back.svg",
  7771. extra: 1219 / 1170
  7772. }
  7773. },
  7774. },
  7775. [
  7776. {
  7777. name: "Normal",
  7778. height: math.unit(2.5, "meters")
  7779. },
  7780. {
  7781. name: "Macro",
  7782. height: math.unit(250, "meters"),
  7783. default: true
  7784. },
  7785. {
  7786. name: "Megamacro",
  7787. height: math.unit(25, "km")
  7788. },
  7789. ]
  7790. ))
  7791. characterMakers.push(() => makeCharacter(
  7792. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7793. {
  7794. front: {
  7795. height: math.unit(6, "feet"),
  7796. weight: math.unit(65, "kg"),
  7797. name: "Front",
  7798. image: {
  7799. source: "./media/characters/rook/front.svg",
  7800. extra: 960 / 950
  7801. }
  7802. }
  7803. },
  7804. [
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(8.8, "feet")
  7808. },
  7809. {
  7810. name: "Macro",
  7811. height: math.unit(88, "feet"),
  7812. default: true
  7813. },
  7814. {
  7815. name: "Megamacro",
  7816. height: math.unit(8, "miles")
  7817. },
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7822. {
  7823. front: {
  7824. height: math.unit(12 + 2 / 12, "feet"),
  7825. weight: math.unit(808, "lbs"),
  7826. name: "Front",
  7827. image: {
  7828. source: "./media/characters/prodigy/front.svg"
  7829. }
  7830. }
  7831. },
  7832. [
  7833. {
  7834. name: "Normal",
  7835. height: math.unit(12 + 2 / 12, "feet"),
  7836. default: true
  7837. },
  7838. {
  7839. name: "Macro",
  7840. height: math.unit(143, "feet")
  7841. },
  7842. {
  7843. name: "Macro+",
  7844. height: math.unit(400, "feet")
  7845. },
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7850. {
  7851. front: {
  7852. height: math.unit(6, "feet"),
  7853. weight: math.unit(225, "lbs"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/daniel/front.svg"
  7857. }
  7858. },
  7859. leaning: {
  7860. height: math.unit(6, "feet"),
  7861. weight: math.unit(225, "lbs"),
  7862. name: "Leaning",
  7863. image: {
  7864. source: "./media/characters/daniel/leaning.svg"
  7865. }
  7866. },
  7867. },
  7868. [
  7869. {
  7870. name: "Macro",
  7871. height: math.unit(1000, "feet"),
  7872. default: true
  7873. },
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(6, "feet"),
  7881. weight: math.unit(88, "lbs"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/chiros/front.svg",
  7885. extra: 306 / 226
  7886. }
  7887. },
  7888. side: {
  7889. height: math.unit(6, "feet"),
  7890. weight: math.unit(88, "lbs"),
  7891. name: "Side",
  7892. image: {
  7893. source: "./media/characters/chiros/side.svg",
  7894. extra: 306 / 226
  7895. }
  7896. },
  7897. },
  7898. [
  7899. {
  7900. name: "Normal",
  7901. height: math.unit(6, "cm"),
  7902. default: true
  7903. },
  7904. ]
  7905. ))
  7906. characterMakers.push(() => makeCharacter(
  7907. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7908. {
  7909. front: {
  7910. height: math.unit(6, "feet"),
  7911. weight: math.unit(100, "lbs"),
  7912. name: "Front",
  7913. image: {
  7914. source: "./media/characters/selka/front.svg",
  7915. extra: 947 / 887
  7916. }
  7917. }
  7918. },
  7919. [
  7920. {
  7921. name: "Normal",
  7922. height: math.unit(5, "cm"),
  7923. default: true
  7924. },
  7925. ]
  7926. ))
  7927. characterMakers.push(() => makeCharacter(
  7928. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7929. {
  7930. front: {
  7931. height: math.unit(8 + 3 / 12, "feet"),
  7932. weight: math.unit(424, "lbs"),
  7933. name: "Front",
  7934. image: {
  7935. source: "./media/characters/verin/front.svg",
  7936. extra: 1845 / 1550
  7937. }
  7938. },
  7939. frontArmored: {
  7940. height: math.unit(8 + 3 / 12, "feet"),
  7941. weight: math.unit(424, "lbs"),
  7942. name: "Front (Armored)",
  7943. image: {
  7944. source: "./media/characters/verin/front-armor.svg",
  7945. extra: 1845 / 1550,
  7946. bottom: 0.01
  7947. }
  7948. },
  7949. back: {
  7950. height: math.unit(8 + 3 / 12, "feet"),
  7951. weight: math.unit(424, "lbs"),
  7952. name: "Back",
  7953. image: {
  7954. source: "./media/characters/verin/back.svg",
  7955. bottom: 0.1,
  7956. extra: 1
  7957. }
  7958. },
  7959. foot: {
  7960. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7961. name: "Foot",
  7962. image: {
  7963. source: "./media/characters/verin/foot.svg"
  7964. }
  7965. },
  7966. },
  7967. [
  7968. {
  7969. name: "Normal",
  7970. height: math.unit(8 + 3 / 12, "feet")
  7971. },
  7972. {
  7973. name: "Minimacro",
  7974. height: math.unit(21, "feet"),
  7975. default: true
  7976. },
  7977. {
  7978. name: "Macro",
  7979. height: math.unit(626, "feet")
  7980. },
  7981. ]
  7982. ))
  7983. characterMakers.push(() => makeCharacter(
  7984. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7985. {
  7986. front: {
  7987. height: math.unit(2.718, "meters"),
  7988. weight: math.unit(150, "lbs"),
  7989. name: "Front",
  7990. image: {
  7991. source: "./media/characters/sovrim-terraquian/front.svg"
  7992. }
  7993. },
  7994. back: {
  7995. height: math.unit(2.718, "meters"),
  7996. weight: math.unit(150, "lbs"),
  7997. name: "Back",
  7998. image: {
  7999. source: "./media/characters/sovrim-terraquian/back.svg"
  8000. }
  8001. }
  8002. },
  8003. [
  8004. {
  8005. name: "Micro",
  8006. height: math.unit(2, "inches")
  8007. },
  8008. {
  8009. name: "Small",
  8010. height: math.unit(1, "meter")
  8011. },
  8012. {
  8013. name: "Normal",
  8014. height: math.unit(Math.E, "meters"),
  8015. default: true
  8016. },
  8017. {
  8018. name: "Macro",
  8019. height: math.unit(20, "meters")
  8020. },
  8021. {
  8022. name: "Macro+",
  8023. height: math.unit(400, "meters")
  8024. },
  8025. ]
  8026. ))
  8027. characterMakers.push(() => makeCharacter(
  8028. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8029. {
  8030. front: {
  8031. height: math.unit(7, "feet"),
  8032. weight: math.unit(489, "lbs"),
  8033. name: "Front",
  8034. image: {
  8035. source: "./media/characters/reece-silvermane/front.svg",
  8036. bottom: 0.02,
  8037. extra: 1
  8038. }
  8039. },
  8040. },
  8041. [
  8042. {
  8043. name: "Macro",
  8044. height: math.unit(1.5, "miles"),
  8045. default: true
  8046. },
  8047. ]
  8048. ))
  8049. characterMakers.push(() => makeCharacter(
  8050. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8051. {
  8052. front: {
  8053. height: math.unit(6, "feet"),
  8054. weight: math.unit(78, "kg"),
  8055. name: "Front",
  8056. image: {
  8057. source: "./media/characters/kane/front.svg",
  8058. extra: 978 / 899
  8059. }
  8060. },
  8061. },
  8062. [
  8063. {
  8064. name: "Normal",
  8065. height: math.unit(2.1, "m"),
  8066. },
  8067. {
  8068. name: "Macro",
  8069. height: math.unit(1, "km"),
  8070. default: true
  8071. },
  8072. ]
  8073. ))
  8074. characterMakers.push(() => makeCharacter(
  8075. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8076. {
  8077. front: {
  8078. height: math.unit(6, "feet"),
  8079. weight: math.unit(200, "kg"),
  8080. name: "Front",
  8081. image: {
  8082. source: "./media/characters/tegon/front.svg",
  8083. bottom: 0.01,
  8084. extra: 1
  8085. }
  8086. },
  8087. },
  8088. [
  8089. {
  8090. name: "Micro",
  8091. height: math.unit(1, "inch")
  8092. },
  8093. {
  8094. name: "Normal",
  8095. height: math.unit(6 + 3 / 12, "feet"),
  8096. default: true
  8097. },
  8098. {
  8099. name: "Macro",
  8100. height: math.unit(300, "feet")
  8101. },
  8102. {
  8103. name: "Megamacro",
  8104. height: math.unit(69, "miles")
  8105. },
  8106. ]
  8107. ))
  8108. characterMakers.push(() => makeCharacter(
  8109. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8110. {
  8111. side: {
  8112. height: math.unit(6, "feet"),
  8113. weight: math.unit(2304, "lbs"),
  8114. name: "Side",
  8115. image: {
  8116. source: "./media/characters/arcturax/side.svg",
  8117. extra: 790 / 376,
  8118. bottom: 0.01
  8119. }
  8120. },
  8121. },
  8122. [
  8123. {
  8124. name: "Micro",
  8125. height: math.unit(2, "inch")
  8126. },
  8127. {
  8128. name: "Normal",
  8129. height: math.unit(6, "feet")
  8130. },
  8131. {
  8132. name: "Macro",
  8133. height: math.unit(39, "feet"),
  8134. default: true
  8135. },
  8136. {
  8137. name: "Megamacro",
  8138. height: math.unit(7, "miles")
  8139. },
  8140. ]
  8141. ))
  8142. characterMakers.push(() => makeCharacter(
  8143. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8144. {
  8145. front: {
  8146. height: math.unit(6, "feet"),
  8147. weight: math.unit(50, "lbs"),
  8148. name: "Front",
  8149. image: {
  8150. source: "./media/characters/sentri/front.svg",
  8151. extra: 1750 / 1570,
  8152. bottom: 0.025
  8153. }
  8154. },
  8155. frontAlt: {
  8156. height: math.unit(6, "feet"),
  8157. weight: math.unit(50, "lbs"),
  8158. name: "Front (Alt)",
  8159. image: {
  8160. source: "./media/characters/sentri/front-alt.svg",
  8161. extra: 1750 / 1570,
  8162. bottom: 0.025
  8163. }
  8164. },
  8165. },
  8166. [
  8167. {
  8168. name: "Normal",
  8169. height: math.unit(15, "feet"),
  8170. default: true
  8171. },
  8172. {
  8173. name: "Macro",
  8174. height: math.unit(2500, "feet")
  8175. }
  8176. ]
  8177. ))
  8178. characterMakers.push(() => makeCharacter(
  8179. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8180. {
  8181. front: {
  8182. height: math.unit(5 + 8 / 12, "feet"),
  8183. weight: math.unit(130, "lbs"),
  8184. name: "Front",
  8185. image: {
  8186. source: "./media/characters/corvin/front.svg",
  8187. extra: 1803 / 1629
  8188. }
  8189. },
  8190. frontShirt: {
  8191. height: math.unit(5 + 8 / 12, "feet"),
  8192. weight: math.unit(130, "lbs"),
  8193. name: "Front (Shirt)",
  8194. image: {
  8195. source: "./media/characters/corvin/front-shirt.svg",
  8196. extra: 1803 / 1629
  8197. }
  8198. },
  8199. frontPoncho: {
  8200. height: math.unit(5 + 8 / 12, "feet"),
  8201. weight: math.unit(130, "lbs"),
  8202. name: "Front (Poncho)",
  8203. image: {
  8204. source: "./media/characters/corvin/front-poncho.svg",
  8205. extra: 1803 / 1629
  8206. }
  8207. },
  8208. side: {
  8209. height: math.unit(5 + 8 / 12, "feet"),
  8210. weight: math.unit(130, "lbs"),
  8211. name: "Side",
  8212. image: {
  8213. source: "./media/characters/corvin/side.svg",
  8214. extra: 1012 / 945
  8215. }
  8216. },
  8217. back: {
  8218. height: math.unit(5 + 8 / 12, "feet"),
  8219. weight: math.unit(130, "lbs"),
  8220. name: "Back",
  8221. image: {
  8222. source: "./media/characters/corvin/back.svg",
  8223. extra: 1803 / 1629
  8224. }
  8225. },
  8226. },
  8227. [
  8228. {
  8229. name: "Micro",
  8230. height: math.unit(3, "inches")
  8231. },
  8232. {
  8233. name: "Normal",
  8234. height: math.unit(5 + 8 / 12, "feet")
  8235. },
  8236. {
  8237. name: "Macro",
  8238. height: math.unit(300, "feet"),
  8239. default: true
  8240. },
  8241. {
  8242. name: "Megamacro",
  8243. height: math.unit(500, "miles")
  8244. }
  8245. ]
  8246. ))
  8247. characterMakers.push(() => makeCharacter(
  8248. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8249. {
  8250. front: {
  8251. height: math.unit(6, "feet"),
  8252. weight: math.unit(135, "lbs"),
  8253. name: "Front",
  8254. image: {
  8255. source: "./media/characters/q/front.svg",
  8256. extra: 854 / 752,
  8257. bottom: 0.005
  8258. }
  8259. },
  8260. back: {
  8261. height: math.unit(6, "feet"),
  8262. weight: math.unit(130, "lbs"),
  8263. name: "Back",
  8264. image: {
  8265. source: "./media/characters/q/back.svg",
  8266. extra: 854 / 752
  8267. }
  8268. },
  8269. },
  8270. [
  8271. {
  8272. name: "Macro",
  8273. height: math.unit(90, "feet"),
  8274. default: true
  8275. },
  8276. {
  8277. name: "Extra Macro",
  8278. height: math.unit(300, "feet"),
  8279. },
  8280. {
  8281. name: "BIG WALF",
  8282. height: math.unit(750, "feet"),
  8283. },
  8284. ]
  8285. ))
  8286. characterMakers.push(() => makeCharacter(
  8287. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8288. {
  8289. front: {
  8290. height: math.unit(6, "feet"),
  8291. weight: math.unit(150, "lbs"),
  8292. name: "Front",
  8293. image: {
  8294. source: "./media/characters/carley/front.svg",
  8295. extra: 3927 / 3540,
  8296. bottom: 29.2 / 735
  8297. }
  8298. }
  8299. },
  8300. [
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(6 + 3 / 12, "feet")
  8304. },
  8305. {
  8306. name: "Macro",
  8307. height: math.unit(185, "feet"),
  8308. default: true
  8309. },
  8310. {
  8311. name: "Megamacro",
  8312. height: math.unit(8, "miles"),
  8313. },
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8318. {
  8319. front: {
  8320. height: math.unit(3, "feet"),
  8321. weight: math.unit(28, "lbs"),
  8322. name: "Front",
  8323. image: {
  8324. source: "./media/characters/citrine/front.svg"
  8325. }
  8326. }
  8327. },
  8328. [
  8329. {
  8330. name: "Normal",
  8331. height: math.unit(3, "feet"),
  8332. default: true
  8333. }
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8338. {
  8339. front: {
  8340. height: math.unit(14, "feet"),
  8341. weight: math.unit(1450, "kg"),
  8342. capacity: math.unit(15, "people"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/aura-starwind/front.svg",
  8346. extra: 1440/1327,
  8347. bottom: 11/1451
  8348. }
  8349. },
  8350. side: {
  8351. height: math.unit(14, "feet"),
  8352. weight: math.unit(1450, "kg"),
  8353. capacity: math.unit(15, "people"),
  8354. name: "Side",
  8355. image: {
  8356. source: "./media/characters/aura-starwind/side.svg",
  8357. extra: 1654 / 1497
  8358. }
  8359. },
  8360. taur: {
  8361. height: math.unit(18, "feet"),
  8362. weight: math.unit(5500, "kg"),
  8363. capacity: math.unit(50, "people"),
  8364. name: "Taur",
  8365. image: {
  8366. source: "./media/characters/aura-starwind/taur.svg",
  8367. extra: 1760 / 1650
  8368. }
  8369. },
  8370. feral: {
  8371. height: math.unit(46, "feet"),
  8372. weight: math.unit(25000, "kg"),
  8373. capacity: math.unit(120, "people"),
  8374. name: "Feral",
  8375. image: {
  8376. source: "./media/characters/aura-starwind/feral.svg"
  8377. }
  8378. },
  8379. },
  8380. [
  8381. {
  8382. name: "Normal",
  8383. height: math.unit(14, "feet"),
  8384. default: true
  8385. },
  8386. {
  8387. name: "Macro",
  8388. height: math.unit(50, "meters")
  8389. },
  8390. {
  8391. name: "Megamacro",
  8392. height: math.unit(5000, "meters")
  8393. },
  8394. {
  8395. name: "Gigamacro",
  8396. height: math.unit(100000, "kilometers")
  8397. },
  8398. ]
  8399. ))
  8400. characterMakers.push(() => makeCharacter(
  8401. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8402. {
  8403. front: {
  8404. height: math.unit(2 + 7 / 12, "feet"),
  8405. weight: math.unit(32, "lbs"),
  8406. name: "Front",
  8407. image: {
  8408. source: "./media/characters/rivet/front.svg",
  8409. extra: 1716 / 1658,
  8410. bottom: 0.03
  8411. }
  8412. },
  8413. foot: {
  8414. height: math.unit(0.551, "feet"),
  8415. name: "Rivet's Foot",
  8416. image: {
  8417. source: "./media/characters/rivet/foot.svg"
  8418. },
  8419. rename: true
  8420. }
  8421. },
  8422. [
  8423. {
  8424. name: "Micro",
  8425. height: math.unit(1.5, "inches"),
  8426. },
  8427. {
  8428. name: "Normal",
  8429. height: math.unit(2 + 7 / 12, "feet"),
  8430. default: true
  8431. },
  8432. {
  8433. name: "Macro",
  8434. height: math.unit(85, "feet")
  8435. },
  8436. {
  8437. name: "Megamacro",
  8438. height: math.unit(2.2, "km")
  8439. }
  8440. ]
  8441. ))
  8442. characterMakers.push(() => makeCharacter(
  8443. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8444. {
  8445. front: {
  8446. height: math.unit(5 + 9 / 12, "feet"),
  8447. weight: math.unit(150, "lbs"),
  8448. name: "Front",
  8449. image: {
  8450. source: "./media/characters/coffee/front.svg",
  8451. extra: 3666 / 3032,
  8452. bottom: 0.04
  8453. }
  8454. },
  8455. foot: {
  8456. height: math.unit(1.29, "feet"),
  8457. name: "Foot",
  8458. image: {
  8459. source: "./media/characters/coffee/foot.svg"
  8460. }
  8461. },
  8462. },
  8463. [
  8464. {
  8465. name: "Micro",
  8466. height: math.unit(2, "inches"),
  8467. },
  8468. {
  8469. name: "Normal",
  8470. height: math.unit(5 + 9 / 12, "feet"),
  8471. default: true
  8472. },
  8473. {
  8474. name: "Macro",
  8475. height: math.unit(800, "feet")
  8476. },
  8477. {
  8478. name: "Megamacro",
  8479. height: math.unit(25, "miles")
  8480. }
  8481. ]
  8482. ))
  8483. characterMakers.push(() => makeCharacter(
  8484. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8485. {
  8486. front: {
  8487. height: math.unit(6, "feet"),
  8488. weight: math.unit(200, "lbs"),
  8489. name: "Front",
  8490. image: {
  8491. source: "./media/characters/chari-gal/front.svg",
  8492. extra: 1568 / 1385,
  8493. bottom: 0.047
  8494. }
  8495. },
  8496. gigantamax: {
  8497. height: math.unit(6 * 16, "feet"),
  8498. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8499. name: "Gigantamax",
  8500. image: {
  8501. source: "./media/characters/chari-gal/gigantamax.svg",
  8502. extra: 1124 / 888,
  8503. bottom: 0.03
  8504. }
  8505. },
  8506. },
  8507. [
  8508. {
  8509. name: "Normal",
  8510. height: math.unit(5 + 7 / 12, "feet")
  8511. },
  8512. {
  8513. name: "Macro",
  8514. height: math.unit(200, "feet"),
  8515. default: true
  8516. }
  8517. ]
  8518. ))
  8519. characterMakers.push(() => makeCharacter(
  8520. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8521. {
  8522. front: {
  8523. height: math.unit(6, "feet"),
  8524. weight: math.unit(150, "lbs"),
  8525. name: "Front",
  8526. image: {
  8527. source: "./media/characters/nova/front.svg",
  8528. extra: 5000 / 4722,
  8529. bottom: 0.02
  8530. }
  8531. }
  8532. },
  8533. [
  8534. {
  8535. name: "Micro-",
  8536. height: math.unit(0.8, "inches")
  8537. },
  8538. {
  8539. name: "Micro",
  8540. height: math.unit(2, "inches"),
  8541. default: true
  8542. },
  8543. ]
  8544. ))
  8545. characterMakers.push(() => makeCharacter(
  8546. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8547. {
  8548. front: {
  8549. height: math.unit(3 + 1 / 12, "feet"),
  8550. weight: math.unit(21.7, "lbs"),
  8551. name: "Front",
  8552. image: {
  8553. source: "./media/characters/argent/front.svg",
  8554. extra: 1471 / 1331,
  8555. bottom: 100.8 / 1575.5
  8556. }
  8557. }
  8558. },
  8559. [
  8560. {
  8561. name: "Micro",
  8562. height: math.unit(2, "inches")
  8563. },
  8564. {
  8565. name: "Normal",
  8566. height: math.unit(3 + 1 / 12, "feet"),
  8567. default: true
  8568. },
  8569. {
  8570. name: "Macro",
  8571. height: math.unit(120, "feet")
  8572. },
  8573. ]
  8574. ))
  8575. characterMakers.push(() => makeCharacter(
  8576. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8577. {
  8578. lamp: {
  8579. height: math.unit(7 * 1559 / 989, "feet"),
  8580. name: "Magic Lamp",
  8581. image: {
  8582. source: "./media/characters/mira-al-cul/lamp.svg",
  8583. extra: 1617 / 1559
  8584. }
  8585. },
  8586. front: {
  8587. height: math.unit(7, "feet"),
  8588. name: "Front",
  8589. image: {
  8590. source: "./media/characters/mira-al-cul/front.svg",
  8591. extra: 1044 / 990
  8592. }
  8593. },
  8594. },
  8595. [
  8596. {
  8597. name: "Heavily Restricted",
  8598. height: math.unit(7 * 1559 / 989, "feet")
  8599. },
  8600. {
  8601. name: "Freshly Freed",
  8602. height: math.unit(50 * 1559 / 989, "feet")
  8603. },
  8604. {
  8605. name: "World Encompassing",
  8606. height: math.unit(10000 * 1559 / 989, "miles")
  8607. },
  8608. {
  8609. name: "Galactic",
  8610. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8611. },
  8612. {
  8613. name: "Palmed Universe",
  8614. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8615. default: true
  8616. },
  8617. {
  8618. name: "Multiversal Matriarch",
  8619. height: math.unit(8.87e10, "yottameters")
  8620. },
  8621. {
  8622. name: "Void Mother",
  8623. height: math.unit(3.14e110, "yottaparsecs")
  8624. },
  8625. {
  8626. name: "Toying with Transcendence",
  8627. height: math.unit(1e307, "meters")
  8628. },
  8629. ]
  8630. ))
  8631. characterMakers.push(() => makeCharacter(
  8632. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8633. {
  8634. front: {
  8635. height: math.unit(17 + 1 / 12, "feet"),
  8636. weight: math.unit(476.2 * 5, "lbs"),
  8637. name: "Front",
  8638. image: {
  8639. source: "./media/characters/kuro-shi-uchū/front.svg",
  8640. extra: 2329 / 1835,
  8641. bottom: 0.02
  8642. }
  8643. },
  8644. },
  8645. [
  8646. {
  8647. name: "Micro",
  8648. height: math.unit(2, "inches")
  8649. },
  8650. {
  8651. name: "Normal",
  8652. height: math.unit(12, "meters")
  8653. },
  8654. {
  8655. name: "Planetary",
  8656. height: math.unit(0.00929, "AU"),
  8657. default: true
  8658. },
  8659. {
  8660. name: "Universal",
  8661. height: math.unit(20, "gigaparsecs")
  8662. },
  8663. ]
  8664. ))
  8665. characterMakers.push(() => makeCharacter(
  8666. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8667. {
  8668. front: {
  8669. height: math.unit(5 + 2 / 12, "feet"),
  8670. weight: math.unit(120, "lbs"),
  8671. name: "Front",
  8672. image: {
  8673. source: "./media/characters/katherine/front.svg",
  8674. extra: 2075 / 1969
  8675. }
  8676. },
  8677. dress: {
  8678. height: math.unit(5 + 2 / 12, "feet"),
  8679. weight: math.unit(120, "lbs"),
  8680. name: "Dress",
  8681. image: {
  8682. source: "./media/characters/katherine/dress.svg",
  8683. extra: 2258 / 2064
  8684. }
  8685. },
  8686. },
  8687. [
  8688. {
  8689. name: "Micro",
  8690. height: math.unit(1, "inches"),
  8691. default: true
  8692. },
  8693. {
  8694. name: "Normal",
  8695. height: math.unit(5 + 2 / 12, "feet")
  8696. },
  8697. {
  8698. name: "Macro",
  8699. height: math.unit(100, "meters")
  8700. },
  8701. {
  8702. name: "Megamacro",
  8703. height: math.unit(80, "miles")
  8704. },
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8709. {
  8710. front: {
  8711. height: math.unit(7 + 8 / 12, "feet"),
  8712. weight: math.unit(250, "lbs"),
  8713. name: "Front",
  8714. image: {
  8715. source: "./media/characters/yevis/front.svg",
  8716. extra: 1938 / 1755
  8717. }
  8718. }
  8719. },
  8720. [
  8721. {
  8722. name: "Mortal",
  8723. height: math.unit(7 + 8 / 12, "feet")
  8724. },
  8725. {
  8726. name: "Battle",
  8727. height: math.unit(25 + 11 / 12, "feet")
  8728. },
  8729. {
  8730. name: "Wrath",
  8731. height: math.unit(1654 + 11 / 12, "feet")
  8732. },
  8733. {
  8734. name: "Planet Destroyer",
  8735. height: math.unit(12000, "miles")
  8736. },
  8737. {
  8738. name: "Galaxy Conqueror",
  8739. height: math.unit(1.45, "zettameters"),
  8740. default: true
  8741. },
  8742. {
  8743. name: "Universal War",
  8744. height: math.unit(184, "gigaparsecs")
  8745. },
  8746. {
  8747. name: "Eternity War",
  8748. height: math.unit(1.98e55, "yottaparsecs")
  8749. },
  8750. ]
  8751. ))
  8752. characterMakers.push(() => makeCharacter(
  8753. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8754. {
  8755. front: {
  8756. height: math.unit(5 + 8 / 12, "feet"),
  8757. weight: math.unit(63, "kg"),
  8758. name: "Front",
  8759. image: {
  8760. source: "./media/characters/xavier/front.svg",
  8761. extra: 944 / 883
  8762. }
  8763. },
  8764. frontStretch: {
  8765. height: math.unit(5 + 8 / 12, "feet"),
  8766. weight: math.unit(63, "kg"),
  8767. name: "Stretching",
  8768. image: {
  8769. source: "./media/characters/xavier/front-stretch.svg",
  8770. extra: 962 / 820
  8771. }
  8772. },
  8773. },
  8774. [
  8775. {
  8776. name: "Normal",
  8777. height: math.unit(5 + 8 / 12, "feet")
  8778. },
  8779. {
  8780. name: "Macro",
  8781. height: math.unit(100, "meters"),
  8782. default: true
  8783. },
  8784. {
  8785. name: "McLargeHuge",
  8786. height: math.unit(10, "miles")
  8787. },
  8788. ]
  8789. ))
  8790. characterMakers.push(() => makeCharacter(
  8791. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8792. {
  8793. front: {
  8794. height: math.unit(5 + 5 / 12, "feet"),
  8795. weight: math.unit(150, "lb"),
  8796. name: "Front",
  8797. image: {
  8798. source: "./media/characters/joshii/front.svg",
  8799. extra: 765 / 653,
  8800. bottom: 51 / 816
  8801. }
  8802. },
  8803. foot: {
  8804. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8805. name: "Foot",
  8806. image: {
  8807. source: "./media/characters/joshii/foot.svg"
  8808. }
  8809. },
  8810. },
  8811. [
  8812. {
  8813. name: "Micro",
  8814. height: math.unit(2, "inches"),
  8815. default: true
  8816. },
  8817. {
  8818. name: "Normal",
  8819. height: math.unit(5 + 5 / 12, "feet")
  8820. },
  8821. {
  8822. name: "Macro",
  8823. height: math.unit(785, "feet")
  8824. },
  8825. {
  8826. name: "Megamacro",
  8827. height: math.unit(24.5, "miles")
  8828. },
  8829. ]
  8830. ))
  8831. characterMakers.push(() => makeCharacter(
  8832. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8833. {
  8834. front: {
  8835. height: math.unit(6, "feet"),
  8836. weight: math.unit(150, "lb"),
  8837. name: "Front",
  8838. image: {
  8839. source: "./media/characters/goddess-elizabeth/front.svg",
  8840. extra: 1800 / 1525,
  8841. bottom: 0.005
  8842. }
  8843. },
  8844. foot: {
  8845. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8846. name: "Foot",
  8847. image: {
  8848. source: "./media/characters/goddess-elizabeth/foot.svg"
  8849. }
  8850. },
  8851. mouth: {
  8852. height: math.unit(6, "feet"),
  8853. name: "Mouth",
  8854. image: {
  8855. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8856. }
  8857. },
  8858. },
  8859. [
  8860. {
  8861. name: "Micro",
  8862. height: math.unit(12, "feet")
  8863. },
  8864. {
  8865. name: "Normal",
  8866. height: math.unit(80, "miles"),
  8867. default: true
  8868. },
  8869. {
  8870. name: "Macro",
  8871. height: math.unit(15000, "parsecs")
  8872. },
  8873. ]
  8874. ))
  8875. characterMakers.push(() => makeCharacter(
  8876. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8877. {
  8878. front: {
  8879. height: math.unit(5 + 9 / 12, "feet"),
  8880. weight: math.unit(144, "lb"),
  8881. name: "Front",
  8882. image: {
  8883. source: "./media/characters/kara/front.svg"
  8884. }
  8885. },
  8886. feet: {
  8887. height: math.unit(6 / 6.765, "feet"),
  8888. name: "Kara's Feet",
  8889. rename: true,
  8890. image: {
  8891. source: "./media/characters/kara/feet.svg"
  8892. }
  8893. },
  8894. },
  8895. [
  8896. {
  8897. name: "Normal",
  8898. height: math.unit(5 + 9 / 12, "feet")
  8899. },
  8900. {
  8901. name: "Macro",
  8902. height: math.unit(174, "feet"),
  8903. default: true
  8904. },
  8905. ]
  8906. ))
  8907. characterMakers.push(() => makeCharacter(
  8908. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8909. {
  8910. front: {
  8911. height: math.unit(18, "feet"),
  8912. weight: math.unit(4050, "lb"),
  8913. name: "Front",
  8914. image: {
  8915. source: "./media/characters/tyrone/front.svg",
  8916. extra: 2405 / 2270,
  8917. bottom: 182 / 2587
  8918. }
  8919. },
  8920. },
  8921. [
  8922. {
  8923. name: "Normal",
  8924. height: math.unit(18, "feet"),
  8925. default: true
  8926. },
  8927. {
  8928. name: "Macro",
  8929. height: math.unit(300, "feet")
  8930. },
  8931. {
  8932. name: "Megamacro",
  8933. height: math.unit(15, "km")
  8934. },
  8935. {
  8936. name: "Gigamacro",
  8937. height: math.unit(500, "km")
  8938. },
  8939. {
  8940. name: "Teramacro",
  8941. height: math.unit(0.5, "gigameters")
  8942. },
  8943. {
  8944. name: "Omnimacro",
  8945. height: math.unit(1e252, "yottauniverse")
  8946. },
  8947. ]
  8948. ))
  8949. characterMakers.push(() => makeCharacter(
  8950. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8951. {
  8952. front: {
  8953. height: math.unit(7 + 8 / 12, "feet"),
  8954. weight: math.unit(120, "lb"),
  8955. name: "Front",
  8956. image: {
  8957. source: "./media/characters/danny/front.svg",
  8958. extra: 1490 / 1350
  8959. }
  8960. },
  8961. back: {
  8962. height: math.unit(7 + 8 / 12, "feet"),
  8963. weight: math.unit(120, "lb"),
  8964. name: "Back",
  8965. image: {
  8966. source: "./media/characters/danny/back.svg",
  8967. extra: 1490 / 1350
  8968. }
  8969. },
  8970. },
  8971. [
  8972. {
  8973. name: "Normal",
  8974. height: math.unit(7 + 8 / 12, "feet"),
  8975. default: true
  8976. },
  8977. ]
  8978. ))
  8979. characterMakers.push(() => makeCharacter(
  8980. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8981. {
  8982. front: {
  8983. height: math.unit(3.5, "inches"),
  8984. weight: math.unit(19, "grams"),
  8985. name: "Front",
  8986. image: {
  8987. source: "./media/characters/mallow/front.svg",
  8988. extra: 471 / 431
  8989. }
  8990. },
  8991. back: {
  8992. height: math.unit(3.5, "inches"),
  8993. weight: math.unit(19, "grams"),
  8994. name: "Back",
  8995. image: {
  8996. source: "./media/characters/mallow/back.svg",
  8997. extra: 471 / 431
  8998. }
  8999. },
  9000. },
  9001. [
  9002. {
  9003. name: "Normal",
  9004. height: math.unit(3.5, "inches"),
  9005. default: true
  9006. },
  9007. ]
  9008. ))
  9009. characterMakers.push(() => makeCharacter(
  9010. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9011. {
  9012. front: {
  9013. height: math.unit(9, "feet"),
  9014. weight: math.unit(230, "kg"),
  9015. name: "Front",
  9016. image: {
  9017. source: "./media/characters/starry-aqua/front.svg"
  9018. }
  9019. },
  9020. back: {
  9021. height: math.unit(9, "feet"),
  9022. weight: math.unit(230, "kg"),
  9023. name: "Back",
  9024. image: {
  9025. source: "./media/characters/starry-aqua/back.svg"
  9026. }
  9027. },
  9028. hand: {
  9029. height: math.unit(9 * 0.1168, "feet"),
  9030. name: "Hand",
  9031. image: {
  9032. source: "./media/characters/starry-aqua/hand.svg"
  9033. }
  9034. },
  9035. foot: {
  9036. height: math.unit(9 * 0.18, "feet"),
  9037. name: "Foot",
  9038. image: {
  9039. source: "./media/characters/starry-aqua/foot.svg"
  9040. }
  9041. }
  9042. },
  9043. [
  9044. {
  9045. name: "Micro",
  9046. height: math.unit(3, "inches")
  9047. },
  9048. {
  9049. name: "Normal",
  9050. height: math.unit(9, "feet")
  9051. },
  9052. {
  9053. name: "Macro",
  9054. height: math.unit(300, "feet"),
  9055. default: true
  9056. },
  9057. {
  9058. name: "Megamacro",
  9059. height: math.unit(3200, "feet")
  9060. }
  9061. ]
  9062. ))
  9063. characterMakers.push(() => makeCharacter(
  9064. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9065. {
  9066. front: {
  9067. height: math.unit(15, "feet"),
  9068. weight: math.unit(5026, "lb"),
  9069. name: "Front",
  9070. image: {
  9071. source: "./media/characters/luka-towers/front.svg",
  9072. extra: 1269/1133,
  9073. bottom: 51/1320
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Normal",
  9080. height: math.unit(15, "feet"),
  9081. default: true
  9082. },
  9083. {
  9084. name: "Minimacro",
  9085. height: math.unit(25, "feet")
  9086. },
  9087. {
  9088. name: "Macro",
  9089. height: math.unit(320, "feet")
  9090. },
  9091. {
  9092. name: "Megamacro",
  9093. height: math.unit(35000, "feet")
  9094. },
  9095. {
  9096. name: "Gigamacro",
  9097. height: math.unit(4000, "miles")
  9098. },
  9099. {
  9100. name: "Teramacro",
  9101. height: math.unit(15000, "miles")
  9102. },
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9107. {
  9108. front: {
  9109. height: math.unit(6, "feet"),
  9110. weight: math.unit(150, "lb"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/natalie-nightring/front.svg",
  9114. extra: 1,
  9115. bottom: 0.06
  9116. }
  9117. },
  9118. },
  9119. [
  9120. {
  9121. name: "Uh Oh",
  9122. height: math.unit(0.1, "mm")
  9123. },
  9124. {
  9125. name: "Small",
  9126. height: math.unit(3, "inches")
  9127. },
  9128. {
  9129. name: "Human Scale",
  9130. height: math.unit(6, "feet")
  9131. },
  9132. {
  9133. name: "Librarian",
  9134. height: math.unit(50, "feet"),
  9135. default: true
  9136. },
  9137. {
  9138. name: "Immense",
  9139. height: math.unit(200, "miles")
  9140. },
  9141. ]
  9142. ))
  9143. characterMakers.push(() => makeCharacter(
  9144. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9145. {
  9146. front: {
  9147. height: math.unit(6, "feet"),
  9148. weight: math.unit(180, "lbs"),
  9149. name: "Front",
  9150. image: {
  9151. source: "./media/characters/danni-rosie/front.svg",
  9152. extra: 1260 / 1128,
  9153. bottom: 0.022
  9154. }
  9155. },
  9156. },
  9157. [
  9158. {
  9159. name: "Micro",
  9160. height: math.unit(2, "inches"),
  9161. default: true
  9162. },
  9163. ]
  9164. ))
  9165. characterMakers.push(() => makeCharacter(
  9166. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9167. {
  9168. front: {
  9169. height: math.unit(5 + 9 / 12, "feet"),
  9170. weight: math.unit(220, "lb"),
  9171. name: "Front",
  9172. image: {
  9173. source: "./media/characters/samantha-kruse/front.svg",
  9174. extra: (985 / 935),
  9175. bottom: 0.03
  9176. }
  9177. },
  9178. frontUndressed: {
  9179. height: math.unit(5 + 9 / 12, "feet"),
  9180. weight: math.unit(220, "lb"),
  9181. name: "Front (Undressed)",
  9182. image: {
  9183. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9184. extra: (973 / 923),
  9185. bottom: 0.025
  9186. }
  9187. },
  9188. fat: {
  9189. height: math.unit(5 + 9 / 12, "feet"),
  9190. weight: math.unit(900, "lb"),
  9191. name: "Front (Fat)",
  9192. image: {
  9193. source: "./media/characters/samantha-kruse/fat.svg",
  9194. extra: 2688 / 2561
  9195. }
  9196. },
  9197. },
  9198. [
  9199. {
  9200. name: "Normal",
  9201. height: math.unit(5 + 9 / 12, "feet"),
  9202. default: true
  9203. }
  9204. ]
  9205. ))
  9206. characterMakers.push(() => makeCharacter(
  9207. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9208. {
  9209. back: {
  9210. height: math.unit(5 + 4 / 12, "feet"),
  9211. weight: math.unit(4963, "lb"),
  9212. name: "Back",
  9213. image: {
  9214. source: "./media/characters/amelia-rosie/back.svg",
  9215. extra: 1113 / 963,
  9216. bottom: 0.01
  9217. }
  9218. },
  9219. },
  9220. [
  9221. {
  9222. name: "Level 0",
  9223. height: math.unit(5 + 4 / 12, "feet")
  9224. },
  9225. {
  9226. name: "Level 1",
  9227. height: math.unit(164597, "feet"),
  9228. default: true
  9229. },
  9230. {
  9231. name: "Level 2",
  9232. height: math.unit(956243, "miles")
  9233. },
  9234. {
  9235. name: "Level 3",
  9236. height: math.unit(29421709423, "miles")
  9237. },
  9238. {
  9239. name: "Level 4",
  9240. height: math.unit(154, "lightyears")
  9241. },
  9242. {
  9243. name: "Level 5",
  9244. height: math.unit(4738272, "lightyears")
  9245. },
  9246. {
  9247. name: "Level 6",
  9248. height: math.unit(145787152896, "lightyears")
  9249. },
  9250. ]
  9251. ))
  9252. characterMakers.push(() => makeCharacter(
  9253. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9254. {
  9255. front: {
  9256. height: math.unit(5 + 11 / 12, "feet"),
  9257. weight: math.unit(65, "kg"),
  9258. name: "Front",
  9259. image: {
  9260. source: "./media/characters/rook-kitara/front.svg",
  9261. extra: 1347 / 1274,
  9262. bottom: 0.005
  9263. }
  9264. },
  9265. },
  9266. [
  9267. {
  9268. name: "Totally Unfair",
  9269. height: math.unit(1.8, "mm")
  9270. },
  9271. {
  9272. name: "Lap Rookie",
  9273. height: math.unit(1.4, "feet")
  9274. },
  9275. {
  9276. name: "Normal",
  9277. height: math.unit(5 + 11 / 12, "feet"),
  9278. default: true
  9279. },
  9280. {
  9281. name: "How Did This Happen",
  9282. height: math.unit(80, "miles")
  9283. }
  9284. ]
  9285. ))
  9286. characterMakers.push(() => makeCharacter(
  9287. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9288. {
  9289. front: {
  9290. height: math.unit(7, "feet"),
  9291. weight: math.unit(300, "lb"),
  9292. name: "Front",
  9293. image: {
  9294. source: "./media/characters/pisces/front.svg",
  9295. extra: 2255 / 2115,
  9296. bottom: 0.03
  9297. }
  9298. },
  9299. back: {
  9300. height: math.unit(7, "feet"),
  9301. weight: math.unit(300, "lb"),
  9302. name: "Back",
  9303. image: {
  9304. source: "./media/characters/pisces/back.svg",
  9305. extra: 2146 / 2055,
  9306. bottom: 0.04
  9307. }
  9308. },
  9309. },
  9310. [
  9311. {
  9312. name: "Normal",
  9313. height: math.unit(7, "feet"),
  9314. default: true
  9315. },
  9316. {
  9317. name: "Swimming Pool",
  9318. height: math.unit(12.2, "meters")
  9319. },
  9320. {
  9321. name: "Olympic Swimming Pool",
  9322. height: math.unit(56.3, "meters")
  9323. },
  9324. {
  9325. name: "Lake Superior",
  9326. height: math.unit(93900, "meters")
  9327. },
  9328. {
  9329. name: "Mediterranean Sea",
  9330. height: math.unit(644457, "meters")
  9331. },
  9332. {
  9333. name: "World's Oceans",
  9334. height: math.unit(4567491, "meters")
  9335. },
  9336. ]
  9337. ))
  9338. characterMakers.push(() => makeCharacter(
  9339. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9340. {
  9341. front: {
  9342. height: math.unit(2.3, "meters"),
  9343. weight: math.unit(120, "kg"),
  9344. name: "Front",
  9345. image: {
  9346. source: "./media/characters/zelas/front.svg"
  9347. }
  9348. },
  9349. side: {
  9350. height: math.unit(2.3, "meters"),
  9351. weight: math.unit(120, "kg"),
  9352. name: "Side",
  9353. image: {
  9354. source: "./media/characters/zelas/side.svg"
  9355. }
  9356. },
  9357. back: {
  9358. height: math.unit(2.3, "meters"),
  9359. weight: math.unit(120, "kg"),
  9360. name: "Back",
  9361. image: {
  9362. source: "./media/characters/zelas/back.svg"
  9363. }
  9364. },
  9365. foot: {
  9366. height: math.unit(1.116, "feet"),
  9367. name: "Foot",
  9368. image: {
  9369. source: "./media/characters/zelas/foot.svg"
  9370. }
  9371. },
  9372. },
  9373. [
  9374. {
  9375. name: "Normal",
  9376. height: math.unit(2.3, "meters")
  9377. },
  9378. {
  9379. name: "Macro",
  9380. height: math.unit(30, "meters"),
  9381. default: true
  9382. },
  9383. ]
  9384. ))
  9385. characterMakers.push(() => makeCharacter(
  9386. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9387. {
  9388. front: {
  9389. height: math.unit(1, "inch"),
  9390. weight: math.unit(0.21, "grams"),
  9391. name: "Front",
  9392. image: {
  9393. source: "./media/characters/talbot/front.svg",
  9394. extra: 594 / 544
  9395. }
  9396. },
  9397. },
  9398. [
  9399. {
  9400. name: "Micro",
  9401. height: math.unit(1, "inch"),
  9402. default: true
  9403. },
  9404. ]
  9405. ))
  9406. characterMakers.push(() => makeCharacter(
  9407. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9408. {
  9409. front: {
  9410. height: math.unit(3 + 3 / 12, "feet"),
  9411. weight: math.unit(51.8, "lb"),
  9412. name: "Front",
  9413. image: {
  9414. source: "./media/characters/fliss/front.svg",
  9415. extra: 840 / 640
  9416. }
  9417. },
  9418. },
  9419. [
  9420. {
  9421. name: "Teeny Tiny",
  9422. height: math.unit(1, "mm")
  9423. },
  9424. {
  9425. name: "Small",
  9426. height: math.unit(1, "inch"),
  9427. default: true
  9428. },
  9429. {
  9430. name: "Standard Sylveon",
  9431. height: math.unit(3 + 3 / 12, "feet")
  9432. },
  9433. {
  9434. name: "Large Nuisance",
  9435. height: math.unit(33, "feet")
  9436. },
  9437. {
  9438. name: "City Filler",
  9439. height: math.unit(3000, "feet")
  9440. },
  9441. {
  9442. name: "New Horizon",
  9443. height: math.unit(6000, "miles")
  9444. },
  9445. ]
  9446. ))
  9447. characterMakers.push(() => makeCharacter(
  9448. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9449. {
  9450. front: {
  9451. height: math.unit(5, "cm"),
  9452. weight: math.unit(1.94, "g"),
  9453. name: "Front",
  9454. image: {
  9455. source: "./media/characters/fleta/front.svg",
  9456. extra: 835 / 803
  9457. }
  9458. },
  9459. back: {
  9460. height: math.unit(5, "cm"),
  9461. weight: math.unit(1.94, "g"),
  9462. name: "Back",
  9463. image: {
  9464. source: "./media/characters/fleta/back.svg",
  9465. extra: 835 / 803
  9466. }
  9467. },
  9468. },
  9469. [
  9470. {
  9471. name: "Micro",
  9472. height: math.unit(5, "cm"),
  9473. default: true
  9474. },
  9475. ]
  9476. ))
  9477. characterMakers.push(() => makeCharacter(
  9478. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9479. {
  9480. front: {
  9481. height: math.unit(6, "feet"),
  9482. weight: math.unit(225, "lb"),
  9483. name: "Front",
  9484. image: {
  9485. source: "./media/characters/dominic/front.svg",
  9486. extra: 1770 / 1620,
  9487. bottom: 0.025
  9488. }
  9489. },
  9490. back: {
  9491. height: math.unit(6, "feet"),
  9492. weight: math.unit(225, "lb"),
  9493. name: "Back",
  9494. image: {
  9495. source: "./media/characters/dominic/back.svg",
  9496. extra: 1745 / 1620,
  9497. bottom: 0.065
  9498. }
  9499. },
  9500. },
  9501. [
  9502. {
  9503. name: "Nano",
  9504. height: math.unit(0.1, "mm")
  9505. },
  9506. {
  9507. name: "Micro-",
  9508. height: math.unit(1, "mm")
  9509. },
  9510. {
  9511. name: "Micro",
  9512. height: math.unit(4, "inches")
  9513. },
  9514. {
  9515. name: "Normal",
  9516. height: math.unit(6 + 4 / 12, "feet"),
  9517. default: true
  9518. },
  9519. {
  9520. name: "Macro",
  9521. height: math.unit(115, "feet")
  9522. },
  9523. {
  9524. name: "Macro+",
  9525. height: math.unit(955, "feet")
  9526. },
  9527. {
  9528. name: "Megamacro",
  9529. height: math.unit(8990, "feet")
  9530. },
  9531. {
  9532. name: "Gigmacro",
  9533. height: math.unit(9310, "miles")
  9534. },
  9535. {
  9536. name: "Teramacro",
  9537. height: math.unit(1567005010, "miles")
  9538. },
  9539. {
  9540. name: "Examacro",
  9541. height: math.unit(1425, "parsecs")
  9542. },
  9543. ]
  9544. ))
  9545. characterMakers.push(() => makeCharacter(
  9546. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9547. {
  9548. front: {
  9549. height: math.unit(400, "feet"),
  9550. weight: math.unit(44444444, "lb"),
  9551. name: "Front",
  9552. image: {
  9553. source: "./media/characters/major-colonel/front.svg"
  9554. }
  9555. },
  9556. back: {
  9557. height: math.unit(400, "feet"),
  9558. weight: math.unit(44444444, "lb"),
  9559. name: "Back",
  9560. image: {
  9561. source: "./media/characters/major-colonel/back.svg"
  9562. }
  9563. },
  9564. },
  9565. [
  9566. {
  9567. name: "Macro",
  9568. height: math.unit(400, "feet"),
  9569. default: true
  9570. },
  9571. ]
  9572. ))
  9573. characterMakers.push(() => makeCharacter(
  9574. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9575. {
  9576. catFront: {
  9577. height: math.unit(6, "feet"),
  9578. weight: math.unit(120, "lb"),
  9579. name: "Front (Cat Side)",
  9580. image: {
  9581. source: "./media/characters/axel-lycan/cat-front.svg",
  9582. extra: 430 / 402,
  9583. bottom: 43 / 472.35
  9584. }
  9585. },
  9586. catBack: {
  9587. height: math.unit(6, "feet"),
  9588. weight: math.unit(120, "lb"),
  9589. name: "Back (Cat Side)",
  9590. image: {
  9591. source: "./media/characters/axel-lycan/cat-back.svg",
  9592. extra: 447 / 419,
  9593. bottom: 23.3 / 469
  9594. }
  9595. },
  9596. wolfFront: {
  9597. height: math.unit(6, "feet"),
  9598. weight: math.unit(120, "lb"),
  9599. name: "Front (Wolf Side)",
  9600. image: {
  9601. source: "./media/characters/axel-lycan/wolf-front.svg",
  9602. extra: 485 / 456,
  9603. bottom: 19 / 504
  9604. }
  9605. },
  9606. wolfBack: {
  9607. height: math.unit(6, "feet"),
  9608. weight: math.unit(120, "lb"),
  9609. name: "Back (Wolf Side)",
  9610. image: {
  9611. source: "./media/characters/axel-lycan/wolf-back.svg",
  9612. extra: 475 / 438,
  9613. bottom: 39.2 / 514
  9614. }
  9615. },
  9616. },
  9617. [
  9618. {
  9619. name: "Macro",
  9620. height: math.unit(1, "km"),
  9621. default: true
  9622. },
  9623. ]
  9624. ))
  9625. characterMakers.push(() => makeCharacter(
  9626. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9627. {
  9628. front: {
  9629. height: math.unit(5 + 9 / 12, "feet"),
  9630. weight: math.unit(175, "lb"),
  9631. name: "Front",
  9632. image: {
  9633. source: "./media/characters/vanrel-hyena/front.svg",
  9634. extra: 1086 / 1010,
  9635. bottom: 0.04
  9636. }
  9637. },
  9638. },
  9639. [
  9640. {
  9641. name: "Normal",
  9642. height: math.unit(5 + 9 / 12, "feet"),
  9643. default: true
  9644. },
  9645. ]
  9646. ))
  9647. characterMakers.push(() => makeCharacter(
  9648. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9649. {
  9650. front: {
  9651. height: math.unit(6, "feet"),
  9652. weight: math.unit(103, "lb"),
  9653. name: "Front",
  9654. image: {
  9655. source: "./media/characters/abbott-absol/front.svg",
  9656. extra: 2010 / 1842
  9657. }
  9658. },
  9659. },
  9660. [
  9661. {
  9662. name: "Megamicro",
  9663. height: math.unit(0.1, "mm")
  9664. },
  9665. {
  9666. name: "Micro",
  9667. height: math.unit(1, "inch")
  9668. },
  9669. {
  9670. name: "Normal",
  9671. height: math.unit(6, "feet"),
  9672. default: true
  9673. },
  9674. ]
  9675. ))
  9676. characterMakers.push(() => makeCharacter(
  9677. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9678. {
  9679. front: {
  9680. height: math.unit(6, "feet"),
  9681. weight: math.unit(264, "lb"),
  9682. name: "Front",
  9683. image: {
  9684. source: "./media/characters/hector/front.svg",
  9685. extra: 2280 / 2130,
  9686. bottom: 0.07
  9687. }
  9688. },
  9689. },
  9690. [
  9691. {
  9692. name: "Normal",
  9693. height: math.unit(12.25, "foot"),
  9694. default: true
  9695. },
  9696. {
  9697. name: "Macro",
  9698. height: math.unit(160, "feet")
  9699. },
  9700. ]
  9701. ))
  9702. characterMakers.push(() => makeCharacter(
  9703. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9704. {
  9705. front: {
  9706. height: math.unit(6, "feet"),
  9707. weight: math.unit(150, "lb"),
  9708. name: "Front",
  9709. image: {
  9710. source: "./media/characters/sal/front.svg",
  9711. extra: 1846 / 1699,
  9712. bottom: 0.04
  9713. }
  9714. },
  9715. },
  9716. [
  9717. {
  9718. name: "Megamacro",
  9719. height: math.unit(10, "miles"),
  9720. default: true
  9721. },
  9722. ]
  9723. ))
  9724. characterMakers.push(() => makeCharacter(
  9725. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9726. {
  9727. front: {
  9728. height: math.unit(3, "meters"),
  9729. weight: math.unit(450, "kg"),
  9730. name: "front",
  9731. image: {
  9732. source: "./media/characters/ranger/front.svg",
  9733. extra: 2401 / 2243,
  9734. bottom: 0.05
  9735. }
  9736. },
  9737. },
  9738. [
  9739. {
  9740. name: "Normal",
  9741. height: math.unit(3, "meters"),
  9742. default: true
  9743. },
  9744. ]
  9745. ))
  9746. characterMakers.push(() => makeCharacter(
  9747. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9748. {
  9749. front: {
  9750. height: math.unit(14, "feet"),
  9751. weight: math.unit(800, "kg"),
  9752. name: "Front",
  9753. image: {
  9754. source: "./media/characters/theresa/front.svg",
  9755. extra: 3575 / 3346,
  9756. bottom: 0.03
  9757. }
  9758. },
  9759. },
  9760. [
  9761. {
  9762. name: "Normal",
  9763. height: math.unit(14, "feet"),
  9764. default: true
  9765. },
  9766. ]
  9767. ))
  9768. characterMakers.push(() => makeCharacter(
  9769. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9770. {
  9771. front: {
  9772. height: math.unit(6, "feet"),
  9773. weight: math.unit(3, "kg"),
  9774. name: "Front",
  9775. image: {
  9776. source: "./media/characters/ine/front.svg",
  9777. extra: 678 / 539,
  9778. bottom: 0.023
  9779. }
  9780. },
  9781. },
  9782. [
  9783. {
  9784. name: "Normal",
  9785. height: math.unit(2.265, "feet"),
  9786. default: true
  9787. },
  9788. ]
  9789. ))
  9790. characterMakers.push(() => makeCharacter(
  9791. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9792. {
  9793. front: {
  9794. height: math.unit(5, "feet"),
  9795. weight: math.unit(30, "kg"),
  9796. name: "Front",
  9797. image: {
  9798. source: "./media/characters/vial/front.svg",
  9799. extra: 1365 / 1277,
  9800. bottom: 0.04
  9801. }
  9802. },
  9803. },
  9804. [
  9805. {
  9806. name: "Normal",
  9807. height: math.unit(5, "feet"),
  9808. default: true
  9809. },
  9810. ]
  9811. ))
  9812. characterMakers.push(() => makeCharacter(
  9813. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9814. {
  9815. side: {
  9816. height: math.unit(3.4, "meters"),
  9817. weight: math.unit(1000, "lb"),
  9818. name: "Side",
  9819. image: {
  9820. source: "./media/characters/rovoska/side.svg",
  9821. extra: 4403 / 1515
  9822. }
  9823. },
  9824. },
  9825. [
  9826. {
  9827. name: "Normal",
  9828. height: math.unit(3.4, "meters"),
  9829. default: true
  9830. },
  9831. ]
  9832. ))
  9833. characterMakers.push(() => makeCharacter(
  9834. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9835. {
  9836. front: {
  9837. height: math.unit(8, "feet"),
  9838. weight: math.unit(315, "lb"),
  9839. name: "Front",
  9840. image: {
  9841. source: "./media/characters/gunner-rotthbauer/front.svg"
  9842. }
  9843. },
  9844. back: {
  9845. height: math.unit(8, "feet"),
  9846. weight: math.unit(315, "lb"),
  9847. name: "Back",
  9848. image: {
  9849. source: "./media/characters/gunner-rotthbauer/back.svg"
  9850. }
  9851. },
  9852. },
  9853. [
  9854. {
  9855. name: "Micro",
  9856. height: math.unit(3.5, "inches")
  9857. },
  9858. {
  9859. name: "Normal",
  9860. height: math.unit(8, "feet"),
  9861. default: true
  9862. },
  9863. {
  9864. name: "Macro",
  9865. height: math.unit(250, "feet")
  9866. },
  9867. {
  9868. name: "Megamacro",
  9869. height: math.unit(1, "AU")
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9875. {
  9876. front: {
  9877. height: math.unit(5 + 5 / 12, "feet"),
  9878. weight: math.unit(140, "lb"),
  9879. name: "Front",
  9880. image: {
  9881. source: "./media/characters/allatia/front.svg",
  9882. extra: 1227 / 1180,
  9883. bottom: 0.027
  9884. }
  9885. },
  9886. },
  9887. [
  9888. {
  9889. name: "Normal",
  9890. height: math.unit(5 + 5 / 12, "feet")
  9891. },
  9892. {
  9893. name: "Macro",
  9894. height: math.unit(250, "feet"),
  9895. default: true
  9896. },
  9897. {
  9898. name: "Megamacro",
  9899. height: math.unit(8, "miles")
  9900. }
  9901. ]
  9902. ))
  9903. characterMakers.push(() => makeCharacter(
  9904. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9905. {
  9906. front: {
  9907. height: math.unit(6, "feet"),
  9908. weight: math.unit(120, "lb"),
  9909. name: "Front",
  9910. image: {
  9911. source: "./media/characters/tene/front.svg",
  9912. extra: 1728 / 1578,
  9913. bottom: 0.022
  9914. }
  9915. },
  9916. stomping: {
  9917. height: math.unit(2.025, "meters"),
  9918. weight: math.unit(120, "lb"),
  9919. name: "Stomping",
  9920. image: {
  9921. source: "./media/characters/tene/stomping.svg",
  9922. extra: 938 / 873,
  9923. bottom: 0.01
  9924. }
  9925. },
  9926. sitting: {
  9927. height: math.unit(1, "meter"),
  9928. weight: math.unit(120, "lb"),
  9929. name: "Sitting",
  9930. image: {
  9931. source: "./media/characters/tene/sitting.svg",
  9932. extra: 437 / 415,
  9933. bottom: 0.1
  9934. }
  9935. },
  9936. feral: {
  9937. height: math.unit(3.9, "feet"),
  9938. weight: math.unit(250, "lb"),
  9939. name: "Feral",
  9940. image: {
  9941. source: "./media/characters/tene/feral.svg",
  9942. extra: 717 / 458,
  9943. bottom: 0.179
  9944. }
  9945. },
  9946. },
  9947. [
  9948. {
  9949. name: "Normal",
  9950. height: math.unit(6, "feet")
  9951. },
  9952. {
  9953. name: "Macro",
  9954. height: math.unit(300, "feet"),
  9955. default: true
  9956. },
  9957. {
  9958. name: "Megamacro",
  9959. height: math.unit(5, "miles")
  9960. },
  9961. ]
  9962. ))
  9963. characterMakers.push(() => makeCharacter(
  9964. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9965. {
  9966. side: {
  9967. height: math.unit(6, "feet"),
  9968. name: "Side",
  9969. image: {
  9970. source: "./media/characters/evander/side.svg",
  9971. extra: 877 / 477
  9972. }
  9973. },
  9974. },
  9975. [
  9976. {
  9977. name: "Normal",
  9978. height: math.unit(0.83, "meters"),
  9979. default: true
  9980. },
  9981. ]
  9982. ))
  9983. characterMakers.push(() => makeCharacter(
  9984. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9985. {
  9986. front: {
  9987. height: math.unit(12, "feet"),
  9988. weight: math.unit(1000, "lb"),
  9989. name: "Front",
  9990. image: {
  9991. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9992. extra: 1762 / 1611
  9993. }
  9994. },
  9995. back: {
  9996. height: math.unit(12, "feet"),
  9997. weight: math.unit(1000, "lb"),
  9998. name: "Back",
  9999. image: {
  10000. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10001. extra: 1762 / 1611
  10002. }
  10003. },
  10004. },
  10005. [
  10006. {
  10007. name: "Normal",
  10008. height: math.unit(12, "feet"),
  10009. default: true
  10010. },
  10011. {
  10012. name: "Kaiju",
  10013. height: math.unit(150, "feet")
  10014. },
  10015. ]
  10016. ))
  10017. characterMakers.push(() => makeCharacter(
  10018. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10019. {
  10020. front: {
  10021. height: math.unit(6, "feet"),
  10022. weight: math.unit(150, "lb"),
  10023. name: "Front",
  10024. image: {
  10025. source: "./media/characters/zero-alurus/front.svg"
  10026. }
  10027. },
  10028. back: {
  10029. height: math.unit(6, "feet"),
  10030. weight: math.unit(150, "lb"),
  10031. name: "Back",
  10032. image: {
  10033. source: "./media/characters/zero-alurus/back.svg"
  10034. }
  10035. },
  10036. },
  10037. [
  10038. {
  10039. name: "Normal",
  10040. height: math.unit(5 + 10 / 12, "feet")
  10041. },
  10042. {
  10043. name: "Macro",
  10044. height: math.unit(60, "feet"),
  10045. default: true
  10046. },
  10047. {
  10048. name: "Macro+",
  10049. height: math.unit(450, "feet")
  10050. },
  10051. ]
  10052. ))
  10053. characterMakers.push(() => makeCharacter(
  10054. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10055. {
  10056. front: {
  10057. height: math.unit(6, "feet"),
  10058. weight: math.unit(200, "lb"),
  10059. name: "Front",
  10060. image: {
  10061. source: "./media/characters/mega-shi/front.svg",
  10062. extra: 1279 / 1250,
  10063. bottom: 0.02
  10064. }
  10065. },
  10066. back: {
  10067. height: math.unit(6, "feet"),
  10068. weight: math.unit(200, "lb"),
  10069. name: "Back",
  10070. image: {
  10071. source: "./media/characters/mega-shi/back.svg",
  10072. extra: 1279 / 1250,
  10073. bottom: 0.02
  10074. }
  10075. },
  10076. },
  10077. [
  10078. {
  10079. name: "Micro",
  10080. height: math.unit(16 + 6 / 12, "feet")
  10081. },
  10082. {
  10083. name: "Third Dimension",
  10084. height: math.unit(40, "meters")
  10085. },
  10086. {
  10087. name: "Normal",
  10088. height: math.unit(660, "feet"),
  10089. default: true
  10090. },
  10091. {
  10092. name: "Megamacro",
  10093. height: math.unit(10, "miles")
  10094. },
  10095. {
  10096. name: "Planetary Launch",
  10097. height: math.unit(500, "miles")
  10098. },
  10099. {
  10100. name: "Interstellar",
  10101. height: math.unit(1e9, "miles")
  10102. },
  10103. {
  10104. name: "Leaving the Universe",
  10105. height: math.unit(1, "gigaparsec")
  10106. },
  10107. {
  10108. name: "Travelling Universes",
  10109. height: math.unit(30e15, "parsecs")
  10110. },
  10111. ]
  10112. ))
  10113. characterMakers.push(() => makeCharacter(
  10114. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10115. {
  10116. front: {
  10117. height: math.unit(5 + 4/12, "feet"),
  10118. weight: math.unit(120, "lb"),
  10119. name: "Front",
  10120. image: {
  10121. source: "./media/characters/odyssey/front.svg",
  10122. extra: 1747/1571,
  10123. bottom: 47/1794
  10124. }
  10125. },
  10126. side: {
  10127. height: math.unit(5.1, "feet"),
  10128. weight: math.unit(120, "lb"),
  10129. name: "Side",
  10130. image: {
  10131. source: "./media/characters/odyssey/side.svg",
  10132. extra: 1847/1619,
  10133. bottom: 47/1894
  10134. }
  10135. },
  10136. lounging: {
  10137. height: math.unit(1.464, "feet"),
  10138. weight: math.unit(120, "lb"),
  10139. name: "Lounging",
  10140. image: {
  10141. source: "./media/characters/odyssey/lounging.svg",
  10142. extra: 1235/837,
  10143. bottom: 551/1786
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Normal",
  10150. height: math.unit(5 + 4 / 12, "feet")
  10151. },
  10152. {
  10153. name: "Macro",
  10154. height: math.unit(1, "km")
  10155. },
  10156. {
  10157. name: "Megamacro",
  10158. height: math.unit(3000, "km")
  10159. },
  10160. {
  10161. name: "Gigamacro",
  10162. height: math.unit(1, "AU"),
  10163. default: true
  10164. },
  10165. {
  10166. name: "Omniversal",
  10167. height: math.unit(100e14, "lightyears")
  10168. },
  10169. ]
  10170. ))
  10171. characterMakers.push(() => makeCharacter(
  10172. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10173. {
  10174. front: {
  10175. height: math.unit(6, "feet"),
  10176. weight: math.unit(300, "lb"),
  10177. name: "Front",
  10178. image: {
  10179. source: "./media/characters/mekuto/front.svg",
  10180. extra: 921 / 832,
  10181. bottom: 0.03
  10182. }
  10183. },
  10184. hand: {
  10185. height: math.unit(6 / 10.24, "feet"),
  10186. name: "Hand",
  10187. image: {
  10188. source: "./media/characters/mekuto/hand.svg"
  10189. }
  10190. },
  10191. foot: {
  10192. height: math.unit(6 / 5.05, "feet"),
  10193. name: "Foot",
  10194. image: {
  10195. source: "./media/characters/mekuto/foot.svg"
  10196. }
  10197. },
  10198. },
  10199. [
  10200. {
  10201. name: "Minimicro",
  10202. height: math.unit(0.2, "inches")
  10203. },
  10204. {
  10205. name: "Micro",
  10206. height: math.unit(1.5, "inches")
  10207. },
  10208. {
  10209. name: "Normal",
  10210. height: math.unit(5 + 11 / 12, "feet"),
  10211. default: true
  10212. },
  10213. {
  10214. name: "Minimacro",
  10215. height: math.unit(17 + 9 / 12, "feet")
  10216. },
  10217. {
  10218. name: "Macro",
  10219. height: math.unit(177.5, "feet")
  10220. },
  10221. {
  10222. name: "Megamacro",
  10223. height: math.unit(152, "miles")
  10224. },
  10225. ]
  10226. ))
  10227. characterMakers.push(() => makeCharacter(
  10228. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10229. {
  10230. front: {
  10231. height: math.unit(6.5, "inches"),
  10232. weight: math.unit(13, "oz"),
  10233. name: "Front",
  10234. image: {
  10235. source: "./media/characters/dafydd-tomos/front.svg",
  10236. extra: 2990 / 2603,
  10237. bottom: 0.03
  10238. }
  10239. },
  10240. },
  10241. [
  10242. {
  10243. name: "Micro",
  10244. height: math.unit(6.5, "inches"),
  10245. default: true
  10246. },
  10247. ]
  10248. ))
  10249. characterMakers.push(() => makeCharacter(
  10250. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10251. {
  10252. front: {
  10253. height: math.unit(6, "feet"),
  10254. weight: math.unit(150, "lb"),
  10255. name: "Front",
  10256. image: {
  10257. source: "./media/characters/splinter/front.svg",
  10258. extra: 2990 / 2882,
  10259. bottom: 0.04
  10260. }
  10261. },
  10262. back: {
  10263. height: math.unit(6, "feet"),
  10264. weight: math.unit(150, "lb"),
  10265. name: "Back",
  10266. image: {
  10267. source: "./media/characters/splinter/back.svg",
  10268. extra: 2990 / 2882,
  10269. bottom: 0.04
  10270. }
  10271. },
  10272. },
  10273. [
  10274. {
  10275. name: "Normal",
  10276. height: math.unit(6, "feet")
  10277. },
  10278. {
  10279. name: "Macro",
  10280. height: math.unit(230, "meters"),
  10281. default: true
  10282. },
  10283. ]
  10284. ))
  10285. characterMakers.push(() => makeCharacter(
  10286. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10287. {
  10288. front: {
  10289. height: math.unit(4 + 10 / 12, "feet"),
  10290. weight: math.unit(480, "lb"),
  10291. name: "Front",
  10292. image: {
  10293. source: "./media/characters/snow-gabumon/front.svg",
  10294. extra: 1140 / 963,
  10295. bottom: 0.058
  10296. }
  10297. },
  10298. back: {
  10299. height: math.unit(4 + 10 / 12, "feet"),
  10300. weight: math.unit(480, "lb"),
  10301. name: "Back",
  10302. image: {
  10303. source: "./media/characters/snow-gabumon/back.svg",
  10304. extra: 1115 / 962,
  10305. bottom: 0.041
  10306. }
  10307. },
  10308. frontUndresed: {
  10309. height: math.unit(4 + 10 / 12, "feet"),
  10310. weight: math.unit(480, "lb"),
  10311. name: "Front (Undressed)",
  10312. image: {
  10313. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10314. extra: 1061 / 960,
  10315. bottom: 0.045
  10316. }
  10317. },
  10318. },
  10319. [
  10320. {
  10321. name: "Micro",
  10322. height: math.unit(1, "inch")
  10323. },
  10324. {
  10325. name: "Normal",
  10326. height: math.unit(4 + 10 / 12, "feet"),
  10327. default: true
  10328. },
  10329. {
  10330. name: "Macro",
  10331. height: math.unit(200, "feet")
  10332. },
  10333. {
  10334. name: "Megamacro",
  10335. height: math.unit(120, "miles")
  10336. },
  10337. {
  10338. name: "Gigamacro",
  10339. height: math.unit(9800, "miles")
  10340. },
  10341. ]
  10342. ))
  10343. characterMakers.push(() => makeCharacter(
  10344. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10345. {
  10346. front: {
  10347. height: math.unit(1.7, "meters"),
  10348. weight: math.unit(140, "lb"),
  10349. name: "Front",
  10350. image: {
  10351. source: "./media/characters/moody/front.svg",
  10352. extra: 3226 / 3007,
  10353. bottom: 0.087
  10354. }
  10355. },
  10356. },
  10357. [
  10358. {
  10359. name: "Micro",
  10360. height: math.unit(1, "mm")
  10361. },
  10362. {
  10363. name: "Normal",
  10364. height: math.unit(1.7, "meters"),
  10365. default: true
  10366. },
  10367. {
  10368. name: "Macro",
  10369. height: math.unit(80, "meters")
  10370. },
  10371. {
  10372. name: "Macro+",
  10373. height: math.unit(500, "meters")
  10374. },
  10375. ]
  10376. ))
  10377. characterMakers.push(() => makeCharacter(
  10378. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10379. {
  10380. front: {
  10381. height: math.unit(6, "feet"),
  10382. weight: math.unit(150, "lb"),
  10383. name: "Front",
  10384. image: {
  10385. source: "./media/characters/zyas/front.svg",
  10386. extra: 1180 / 1120,
  10387. bottom: 0.045
  10388. }
  10389. },
  10390. },
  10391. [
  10392. {
  10393. name: "Normal",
  10394. height: math.unit(10, "feet"),
  10395. default: true
  10396. },
  10397. {
  10398. name: "Macro",
  10399. height: math.unit(500, "feet")
  10400. },
  10401. {
  10402. name: "Megamacro",
  10403. height: math.unit(5, "miles")
  10404. },
  10405. {
  10406. name: "Teramacro",
  10407. height: math.unit(150000, "miles")
  10408. },
  10409. ]
  10410. ))
  10411. characterMakers.push(() => makeCharacter(
  10412. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10413. {
  10414. front: {
  10415. height: math.unit(6, "feet"),
  10416. weight: math.unit(150, "lb"),
  10417. name: "Front",
  10418. image: {
  10419. source: "./media/characters/cuon/front.svg",
  10420. extra: 1390 / 1320,
  10421. bottom: 0.008
  10422. }
  10423. },
  10424. },
  10425. [
  10426. {
  10427. name: "Micro",
  10428. height: math.unit(3, "inches")
  10429. },
  10430. {
  10431. name: "Normal",
  10432. height: math.unit(18 + 9 / 12, "feet"),
  10433. default: true
  10434. },
  10435. {
  10436. name: "Macro",
  10437. height: math.unit(360, "feet")
  10438. },
  10439. {
  10440. name: "Megamacro",
  10441. height: math.unit(360, "miles")
  10442. },
  10443. ]
  10444. ))
  10445. characterMakers.push(() => makeCharacter(
  10446. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10447. {
  10448. front: {
  10449. height: math.unit(2.4, "meters"),
  10450. weight: math.unit(70, "kg"),
  10451. name: "Front",
  10452. image: {
  10453. source: "./media/characters/nyanuxk/front.svg",
  10454. extra: 1172 / 1084,
  10455. bottom: 0.065
  10456. }
  10457. },
  10458. side: {
  10459. height: math.unit(2.4, "meters"),
  10460. weight: math.unit(70, "kg"),
  10461. name: "Side",
  10462. image: {
  10463. source: "./media/characters/nyanuxk/side.svg",
  10464. extra: 1190 / 1132,
  10465. bottom: 0.007
  10466. }
  10467. },
  10468. back: {
  10469. height: math.unit(2.4, "meters"),
  10470. weight: math.unit(70, "kg"),
  10471. name: "Back",
  10472. image: {
  10473. source: "./media/characters/nyanuxk/back.svg",
  10474. extra: 1200 / 1141,
  10475. bottom: 0.015
  10476. }
  10477. },
  10478. foot: {
  10479. height: math.unit(0.52, "meters"),
  10480. name: "Foot",
  10481. image: {
  10482. source: "./media/characters/nyanuxk/foot.svg"
  10483. }
  10484. },
  10485. },
  10486. [
  10487. {
  10488. name: "Micro",
  10489. height: math.unit(2, "cm")
  10490. },
  10491. {
  10492. name: "Normal",
  10493. height: math.unit(2.4, "meters"),
  10494. default: true
  10495. },
  10496. {
  10497. name: "Smaller Macro",
  10498. height: math.unit(120, "meters")
  10499. },
  10500. {
  10501. name: "Bigger Macro",
  10502. height: math.unit(1.2, "km")
  10503. },
  10504. {
  10505. name: "Megamacro",
  10506. height: math.unit(15, "kilometers")
  10507. },
  10508. {
  10509. name: "Gigamacro",
  10510. height: math.unit(2000, "km")
  10511. },
  10512. {
  10513. name: "Teramacro",
  10514. height: math.unit(500000, "km")
  10515. },
  10516. ]
  10517. ))
  10518. characterMakers.push(() => makeCharacter(
  10519. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10520. {
  10521. side: {
  10522. height: math.unit(6, "feet"),
  10523. name: "Side",
  10524. image: {
  10525. source: "./media/characters/ailbhe/side.svg",
  10526. extra: 757 / 464,
  10527. bottom: 0.041
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Normal",
  10534. height: math.unit(1.07, "meters"),
  10535. default: true
  10536. },
  10537. ]
  10538. ))
  10539. characterMakers.push(() => makeCharacter(
  10540. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10541. {
  10542. front: {
  10543. height: math.unit(6, "feet"),
  10544. weight: math.unit(120, "kg"),
  10545. name: "Front",
  10546. image: {
  10547. source: "./media/characters/zevulfius/front.svg",
  10548. extra: 965 / 903
  10549. }
  10550. },
  10551. side: {
  10552. height: math.unit(6, "feet"),
  10553. weight: math.unit(120, "kg"),
  10554. name: "Side",
  10555. image: {
  10556. source: "./media/characters/zevulfius/side.svg",
  10557. extra: 939 / 900
  10558. }
  10559. },
  10560. back: {
  10561. height: math.unit(6, "feet"),
  10562. weight: math.unit(120, "kg"),
  10563. name: "Back",
  10564. image: {
  10565. source: "./media/characters/zevulfius/back.svg",
  10566. extra: 918 / 854,
  10567. bottom: 0.005
  10568. }
  10569. },
  10570. foot: {
  10571. height: math.unit(6 / 3.72, "feet"),
  10572. name: "Foot",
  10573. image: {
  10574. source: "./media/characters/zevulfius/foot.svg"
  10575. }
  10576. },
  10577. },
  10578. [
  10579. {
  10580. name: "Macro",
  10581. height: math.unit(750, "meters")
  10582. },
  10583. {
  10584. name: "Megamacro",
  10585. height: math.unit(20, "km"),
  10586. default: true
  10587. },
  10588. {
  10589. name: "Gigamacro",
  10590. height: math.unit(2000, "km")
  10591. },
  10592. {
  10593. name: "Teramacro",
  10594. height: math.unit(250000, "km")
  10595. },
  10596. ]
  10597. ))
  10598. characterMakers.push(() => makeCharacter(
  10599. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10600. {
  10601. front: {
  10602. height: math.unit(100, "feet"),
  10603. weight: math.unit(350, "kg"),
  10604. name: "Front",
  10605. image: {
  10606. source: "./media/characters/rikes/front.svg",
  10607. extra: 1565 / 1483,
  10608. bottom: 0.017
  10609. }
  10610. },
  10611. },
  10612. [
  10613. {
  10614. name: "Macro",
  10615. height: math.unit(100, "feet"),
  10616. default: true
  10617. },
  10618. ]
  10619. ))
  10620. characterMakers.push(() => makeCharacter(
  10621. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10622. {
  10623. front: {
  10624. height: math.unit(8, "feet"),
  10625. weight: math.unit(356, "lb"),
  10626. name: "Front",
  10627. image: {
  10628. source: "./media/characters/adam-silver-mane/front.svg",
  10629. extra: 1036/937,
  10630. bottom: 63/1099
  10631. }
  10632. },
  10633. side: {
  10634. height: math.unit(8, "feet"),
  10635. weight: math.unit(356, "lb"),
  10636. name: "Side",
  10637. image: {
  10638. source: "./media/characters/adam-silver-mane/side.svg",
  10639. extra: 997/901,
  10640. bottom: 59/1056
  10641. }
  10642. },
  10643. frontNsfw: {
  10644. height: math.unit(8, "feet"),
  10645. weight: math.unit(356, "lb"),
  10646. name: "Front (NSFW)",
  10647. image: {
  10648. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10649. extra: 1036/937,
  10650. bottom: 63/1099
  10651. }
  10652. },
  10653. sideNsfw: {
  10654. height: math.unit(8, "feet"),
  10655. weight: math.unit(356, "lb"),
  10656. name: "Side (NSFW)",
  10657. image: {
  10658. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10659. extra: 997/901,
  10660. bottom: 59/1056
  10661. }
  10662. },
  10663. dick: {
  10664. height: math.unit(2.1, "feet"),
  10665. name: "Dick",
  10666. image: {
  10667. source: "./media/characters/adam-silver-mane/dick.svg"
  10668. }
  10669. },
  10670. taur: {
  10671. height: math.unit(16, "feet"),
  10672. weight: math.unit(1500, "kg"),
  10673. name: "Taur",
  10674. image: {
  10675. source: "./media/characters/adam-silver-mane/taur.svg",
  10676. extra: 1713 / 1571,
  10677. bottom: 0.01
  10678. }
  10679. },
  10680. },
  10681. [
  10682. {
  10683. name: "Normal",
  10684. height: math.unit(8, "feet")
  10685. },
  10686. {
  10687. name: "Minimacro",
  10688. height: math.unit(80, "feet")
  10689. },
  10690. {
  10691. name: "MDA",
  10692. height: math.unit(80, "meters")
  10693. },
  10694. {
  10695. name: "Macro",
  10696. height: math.unit(800, "feet"),
  10697. default: true
  10698. },
  10699. {
  10700. name: "Megamacro",
  10701. height: math.unit(8000, "feet")
  10702. },
  10703. {
  10704. name: "Gigamacro",
  10705. height: math.unit(800, "miles")
  10706. },
  10707. {
  10708. name: "Teramacro",
  10709. height: math.unit(80000, "miles")
  10710. },
  10711. {
  10712. name: "Celestial",
  10713. height: math.unit(8e6, "miles")
  10714. },
  10715. {
  10716. name: "Star Dragon",
  10717. height: math.unit(800000, "parsecs")
  10718. },
  10719. {
  10720. name: "Godly",
  10721. height: math.unit(800, "teraparsecs")
  10722. },
  10723. ]
  10724. ))
  10725. characterMakers.push(() => makeCharacter(
  10726. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10727. {
  10728. front: {
  10729. height: math.unit(6, "feet"),
  10730. weight: math.unit(150, "lb"),
  10731. name: "Front",
  10732. image: {
  10733. source: "./media/characters/ky'owin/front.svg",
  10734. extra: 3888 / 3068,
  10735. bottom: 0.015
  10736. }
  10737. },
  10738. },
  10739. [
  10740. {
  10741. name: "Normal",
  10742. height: math.unit(6 + 8 / 12, "feet")
  10743. },
  10744. {
  10745. name: "Large",
  10746. height: math.unit(68, "feet")
  10747. },
  10748. {
  10749. name: "Macro",
  10750. height: math.unit(132, "feet")
  10751. },
  10752. {
  10753. name: "Macro+",
  10754. height: math.unit(340, "feet")
  10755. },
  10756. {
  10757. name: "Macro++",
  10758. height: math.unit(680, "feet"),
  10759. default: true
  10760. },
  10761. {
  10762. name: "Megamacro",
  10763. height: math.unit(1, "mile")
  10764. },
  10765. {
  10766. name: "Megamacro+",
  10767. height: math.unit(10, "miles")
  10768. },
  10769. ]
  10770. ))
  10771. characterMakers.push(() => makeCharacter(
  10772. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10773. {
  10774. front: {
  10775. height: math.unit(4, "feet"),
  10776. weight: math.unit(50, "lb"),
  10777. name: "Front",
  10778. image: {
  10779. source: "./media/characters/mal/front.svg",
  10780. extra: 785 / 724,
  10781. bottom: 0.07
  10782. }
  10783. },
  10784. },
  10785. [
  10786. {
  10787. name: "Micro",
  10788. height: math.unit(4, "inches")
  10789. },
  10790. {
  10791. name: "Normal",
  10792. height: math.unit(4, "feet"),
  10793. default: true
  10794. },
  10795. {
  10796. name: "Macro",
  10797. height: math.unit(200, "feet")
  10798. },
  10799. ]
  10800. ))
  10801. characterMakers.push(() => makeCharacter(
  10802. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10803. {
  10804. front: {
  10805. height: math.unit(6, "feet"),
  10806. weight: math.unit(150, "lb"),
  10807. name: "Front",
  10808. image: {
  10809. source: "./media/characters/jordan-deware/front.svg",
  10810. extra: 1191 / 1012
  10811. }
  10812. },
  10813. },
  10814. [
  10815. {
  10816. name: "Nano",
  10817. height: math.unit(0.01, "mm")
  10818. },
  10819. {
  10820. name: "Minimicro",
  10821. height: math.unit(1, "mm")
  10822. },
  10823. {
  10824. name: "Micro",
  10825. height: math.unit(0.5, "inches")
  10826. },
  10827. {
  10828. name: "Normal",
  10829. height: math.unit(4, "feet"),
  10830. default: true
  10831. },
  10832. {
  10833. name: "Minimacro",
  10834. height: math.unit(40, "meters")
  10835. },
  10836. {
  10837. name: "Small Macro",
  10838. height: math.unit(400, "meters")
  10839. },
  10840. {
  10841. name: "Macro",
  10842. height: math.unit(4, "miles")
  10843. },
  10844. {
  10845. name: "Megamacro",
  10846. height: math.unit(40, "miles")
  10847. },
  10848. {
  10849. name: "Megamacro+",
  10850. height: math.unit(400, "miles")
  10851. },
  10852. {
  10853. name: "Gigamacro",
  10854. height: math.unit(400000, "miles")
  10855. },
  10856. ]
  10857. ))
  10858. characterMakers.push(() => makeCharacter(
  10859. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10860. {
  10861. side: {
  10862. height: math.unit(6, "feet"),
  10863. weight: math.unit(150, "lb"),
  10864. name: "Side",
  10865. image: {
  10866. source: "./media/characters/kimiko/side.svg",
  10867. extra: 600 / 358
  10868. }
  10869. },
  10870. },
  10871. [
  10872. {
  10873. name: "Normal",
  10874. height: math.unit(15, "feet"),
  10875. default: true
  10876. },
  10877. {
  10878. name: "Macro",
  10879. height: math.unit(220, "feet")
  10880. },
  10881. {
  10882. name: "Macro+",
  10883. height: math.unit(1450, "feet")
  10884. },
  10885. {
  10886. name: "Megamacro",
  10887. height: math.unit(11500, "feet")
  10888. },
  10889. {
  10890. name: "Gigamacro",
  10891. height: math.unit(9500, "miles")
  10892. },
  10893. {
  10894. name: "Teramacro",
  10895. height: math.unit(2208005005, "miles")
  10896. },
  10897. {
  10898. name: "Examacro",
  10899. height: math.unit(2750, "parsecs")
  10900. },
  10901. {
  10902. name: "Zettamacro",
  10903. height: math.unit(101500, "parsecs")
  10904. },
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10909. {
  10910. front: {
  10911. height: math.unit(6, "feet"),
  10912. weight: math.unit(70, "kg"),
  10913. name: "Front",
  10914. image: {
  10915. source: "./media/characters/andrew-sleepy/front.svg"
  10916. }
  10917. },
  10918. side: {
  10919. height: math.unit(6, "feet"),
  10920. weight: math.unit(70, "kg"),
  10921. name: "Side",
  10922. image: {
  10923. source: "./media/characters/andrew-sleepy/side.svg"
  10924. }
  10925. },
  10926. },
  10927. [
  10928. {
  10929. name: "Micro",
  10930. height: math.unit(1, "mm"),
  10931. default: true
  10932. },
  10933. ]
  10934. ))
  10935. characterMakers.push(() => makeCharacter(
  10936. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10937. {
  10938. front: {
  10939. height: math.unit(6, "feet"),
  10940. weight: math.unit(150, "lb"),
  10941. name: "Front",
  10942. image: {
  10943. source: "./media/characters/judio/front.svg",
  10944. extra: 1258 / 1110
  10945. }
  10946. },
  10947. },
  10948. [
  10949. {
  10950. name: "Normal",
  10951. height: math.unit(5 + 6 / 12, "feet")
  10952. },
  10953. {
  10954. name: "Macro",
  10955. height: math.unit(1000, "feet"),
  10956. default: true
  10957. },
  10958. {
  10959. name: "Megamacro",
  10960. height: math.unit(10, "miles")
  10961. },
  10962. ]
  10963. ))
  10964. characterMakers.push(() => makeCharacter(
  10965. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10966. {
  10967. front: {
  10968. height: math.unit(6, "feet"),
  10969. weight: math.unit(68, "kg"),
  10970. name: "Front",
  10971. image: {
  10972. source: "./media/characters/nomaxice/front.svg",
  10973. extra: 1498 / 1073,
  10974. bottom: 0.075
  10975. }
  10976. },
  10977. foot: {
  10978. height: math.unit(1.1, "feet"),
  10979. name: "Foot",
  10980. image: {
  10981. source: "./media/characters/nomaxice/foot.svg"
  10982. }
  10983. },
  10984. },
  10985. [
  10986. {
  10987. name: "Micro",
  10988. height: math.unit(8, "cm")
  10989. },
  10990. {
  10991. name: "Norm",
  10992. height: math.unit(1.82, "m")
  10993. },
  10994. {
  10995. name: "Norm+",
  10996. height: math.unit(8.8, "feet")
  10997. },
  10998. {
  10999. name: "Big",
  11000. height: math.unit(8, "meters"),
  11001. default: true
  11002. },
  11003. {
  11004. name: "Macro",
  11005. height: math.unit(18, "meters")
  11006. },
  11007. {
  11008. name: "Macro+",
  11009. height: math.unit(88, "meters")
  11010. },
  11011. ]
  11012. ))
  11013. characterMakers.push(() => makeCharacter(
  11014. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11015. {
  11016. front: {
  11017. height: math.unit(12, "feet"),
  11018. weight: math.unit(1.5, "tons"),
  11019. name: "Front",
  11020. image: {
  11021. source: "./media/characters/dydros/front.svg",
  11022. extra: 863 / 800,
  11023. bottom: 0.015
  11024. }
  11025. },
  11026. back: {
  11027. height: math.unit(12, "feet"),
  11028. weight: math.unit(1.5, "tons"),
  11029. name: "Back",
  11030. image: {
  11031. source: "./media/characters/dydros/back.svg",
  11032. extra: 900 / 843,
  11033. bottom: 0.005
  11034. }
  11035. },
  11036. },
  11037. [
  11038. {
  11039. name: "Normal",
  11040. height: math.unit(12, "feet"),
  11041. default: true
  11042. },
  11043. ]
  11044. ))
  11045. characterMakers.push(() => makeCharacter(
  11046. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11047. {
  11048. front: {
  11049. height: math.unit(6, "feet"),
  11050. weight: math.unit(100, "kg"),
  11051. name: "Front",
  11052. image: {
  11053. source: "./media/characters/riggi/front.svg",
  11054. extra: 5787 / 5303
  11055. }
  11056. },
  11057. hyper: {
  11058. height: math.unit(6 * 5 / 3, "feet"),
  11059. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11060. name: "Hyper",
  11061. image: {
  11062. source: "./media/characters/riggi/hyper.svg",
  11063. extra: 3595 / 3485
  11064. }
  11065. },
  11066. },
  11067. [
  11068. {
  11069. name: "Small Macro",
  11070. height: math.unit(50, "feet")
  11071. },
  11072. {
  11073. name: "Default",
  11074. height: math.unit(200, "feet"),
  11075. default: true
  11076. },
  11077. {
  11078. name: "Loom",
  11079. height: math.unit(10000, "feet")
  11080. },
  11081. {
  11082. name: "Cruising Altitude",
  11083. height: math.unit(30000, "feet")
  11084. },
  11085. {
  11086. name: "Megamacro",
  11087. height: math.unit(100, "miles")
  11088. },
  11089. {
  11090. name: "Continent Sized",
  11091. height: math.unit(2800, "miles")
  11092. },
  11093. {
  11094. name: "Earth Sized",
  11095. height: math.unit(8000, "miles")
  11096. },
  11097. ]
  11098. ))
  11099. characterMakers.push(() => makeCharacter(
  11100. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11101. {
  11102. front: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(250, "lb"),
  11105. name: "Front",
  11106. image: {
  11107. source: "./media/characters/alexi/front.svg",
  11108. extra: 3483 / 3291,
  11109. bottom: 0.04
  11110. }
  11111. },
  11112. back: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(250, "lb"),
  11115. name: "Back",
  11116. image: {
  11117. source: "./media/characters/alexi/back.svg",
  11118. extra: 3533 / 3356,
  11119. bottom: 0.021
  11120. }
  11121. },
  11122. frontTransforming: {
  11123. height: math.unit(8.58, "feet"),
  11124. weight: math.unit(1300, "lb"),
  11125. name: "Transforming",
  11126. image: {
  11127. source: "./media/characters/alexi/front-transforming.svg",
  11128. extra: 437 / 409,
  11129. bottom: 19 / 458.66
  11130. }
  11131. },
  11132. frontTransformed: {
  11133. height: math.unit(12.5, "feet"),
  11134. weight: math.unit(4000, "lb"),
  11135. name: "Transformed",
  11136. image: {
  11137. source: "./media/characters/alexi/front-transformed.svg",
  11138. extra: 639 / 614,
  11139. bottom: 30.55 / 671
  11140. }
  11141. },
  11142. },
  11143. [
  11144. {
  11145. name: "Normal",
  11146. height: math.unit(14, "feet"),
  11147. default: true
  11148. },
  11149. {
  11150. name: "Minimacro",
  11151. height: math.unit(30, "meters")
  11152. },
  11153. {
  11154. name: "Macro",
  11155. height: math.unit(500, "meters")
  11156. },
  11157. {
  11158. name: "Megamacro",
  11159. height: math.unit(9000, "km")
  11160. },
  11161. {
  11162. name: "Teramacro",
  11163. height: math.unit(384000, "km")
  11164. },
  11165. ]
  11166. ))
  11167. characterMakers.push(() => makeCharacter(
  11168. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11169. {
  11170. front: {
  11171. height: math.unit(6, "feet"),
  11172. weight: math.unit(150, "lb"),
  11173. name: "Front",
  11174. image: {
  11175. source: "./media/characters/kayroo/front.svg",
  11176. extra: 1153 / 1038,
  11177. bottom: 0.06
  11178. }
  11179. },
  11180. foot: {
  11181. height: math.unit(6, "feet"),
  11182. weight: math.unit(150, "lb"),
  11183. name: "Foot",
  11184. image: {
  11185. source: "./media/characters/kayroo/foot.svg"
  11186. }
  11187. },
  11188. },
  11189. [
  11190. {
  11191. name: "Normal",
  11192. height: math.unit(8, "feet"),
  11193. default: true
  11194. },
  11195. {
  11196. name: "Minimacro",
  11197. height: math.unit(250, "feet")
  11198. },
  11199. {
  11200. name: "Macro",
  11201. height: math.unit(2800, "feet")
  11202. },
  11203. {
  11204. name: "Megamacro",
  11205. height: math.unit(5200, "feet")
  11206. },
  11207. {
  11208. name: "Gigamacro",
  11209. height: math.unit(27000, "feet")
  11210. },
  11211. {
  11212. name: "Omega",
  11213. height: math.unit(45000, "feet")
  11214. },
  11215. ]
  11216. ))
  11217. characterMakers.push(() => makeCharacter(
  11218. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11219. {
  11220. front: {
  11221. height: math.unit(18, "feet"),
  11222. weight: math.unit(5800, "lb"),
  11223. name: "Front",
  11224. image: {
  11225. source: "./media/characters/rhys/front.svg",
  11226. extra: 3386 / 3090,
  11227. bottom: 0.07
  11228. }
  11229. },
  11230. },
  11231. [
  11232. {
  11233. name: "Normal",
  11234. height: math.unit(18, "feet"),
  11235. default: true
  11236. },
  11237. {
  11238. name: "Working Size",
  11239. height: math.unit(200, "feet")
  11240. },
  11241. {
  11242. name: "Demolition Size",
  11243. height: math.unit(2000, "feet")
  11244. },
  11245. {
  11246. name: "Maximum Licensed Size",
  11247. height: math.unit(5, "miles")
  11248. },
  11249. {
  11250. name: "Maximum Observed Size",
  11251. height: math.unit(10, "yottameters")
  11252. },
  11253. ]
  11254. ))
  11255. characterMakers.push(() => makeCharacter(
  11256. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11257. {
  11258. front: {
  11259. height: math.unit(6, "feet"),
  11260. weight: math.unit(250, "lb"),
  11261. name: "Front",
  11262. image: {
  11263. source: "./media/characters/toto/front.svg",
  11264. extra: 527 / 479,
  11265. bottom: 0.05
  11266. }
  11267. },
  11268. },
  11269. [
  11270. {
  11271. name: "Micro",
  11272. height: math.unit(3, "feet")
  11273. },
  11274. {
  11275. name: "Normal",
  11276. height: math.unit(10, "feet")
  11277. },
  11278. {
  11279. name: "Macro",
  11280. height: math.unit(150, "feet"),
  11281. default: true
  11282. },
  11283. {
  11284. name: "Megamacro",
  11285. height: math.unit(1200, "feet")
  11286. },
  11287. ]
  11288. ))
  11289. characterMakers.push(() => makeCharacter(
  11290. { name: "King", species: ["lion"], tags: ["anthro"] },
  11291. {
  11292. back: {
  11293. height: math.unit(6, "feet"),
  11294. weight: math.unit(150, "lb"),
  11295. name: "Back",
  11296. image: {
  11297. source: "./media/characters/king/back.svg"
  11298. }
  11299. },
  11300. },
  11301. [
  11302. {
  11303. name: "Micro",
  11304. height: math.unit(2, "inches")
  11305. },
  11306. {
  11307. name: "Normal",
  11308. height: math.unit(8, "feet")
  11309. },
  11310. {
  11311. name: "Macro",
  11312. height: math.unit(200, "feet"),
  11313. default: true
  11314. },
  11315. {
  11316. name: "Megamacro",
  11317. height: math.unit(50, "miles")
  11318. },
  11319. ]
  11320. ))
  11321. characterMakers.push(() => makeCharacter(
  11322. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11323. {
  11324. front: {
  11325. height: math.unit(11, "feet"),
  11326. weight: math.unit(1400, "lb"),
  11327. name: "Front",
  11328. image: {
  11329. source: "./media/characters/cordite/front.svg",
  11330. extra: 1919/1827,
  11331. bottom: 40/1959
  11332. }
  11333. },
  11334. side: {
  11335. height: math.unit(11, "feet"),
  11336. weight: math.unit(1400, "lb"),
  11337. name: "Side",
  11338. image: {
  11339. source: "./media/characters/cordite/side.svg",
  11340. extra: 1908/1793,
  11341. bottom: 38/1946
  11342. }
  11343. },
  11344. back: {
  11345. height: math.unit(11, "feet"),
  11346. weight: math.unit(1400, "lb"),
  11347. name: "Back",
  11348. image: {
  11349. source: "./media/characters/cordite/back.svg",
  11350. extra: 1938/1837,
  11351. bottom: 10/1948
  11352. }
  11353. },
  11354. feral: {
  11355. height: math.unit(2, "feet"),
  11356. weight: math.unit(90, "lb"),
  11357. name: "Feral",
  11358. image: {
  11359. source: "./media/characters/cordite/feral.svg",
  11360. extra: 1260 / 755,
  11361. bottom: 0.05
  11362. }
  11363. },
  11364. },
  11365. [
  11366. {
  11367. name: "Normal",
  11368. height: math.unit(11, "feet"),
  11369. default: true
  11370. },
  11371. ]
  11372. ))
  11373. characterMakers.push(() => makeCharacter(
  11374. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11375. {
  11376. front: {
  11377. height: math.unit(6, "feet"),
  11378. weight: math.unit(150, "lb"),
  11379. name: "Front",
  11380. image: {
  11381. source: "./media/characters/pianostrong/front.svg",
  11382. extra: 6577 / 6254,
  11383. bottom: 0.02
  11384. }
  11385. },
  11386. side: {
  11387. height: math.unit(6, "feet"),
  11388. weight: math.unit(150, "lb"),
  11389. name: "Side",
  11390. image: {
  11391. source: "./media/characters/pianostrong/side.svg",
  11392. extra: 6106 / 5730
  11393. }
  11394. },
  11395. back: {
  11396. height: math.unit(6, "feet"),
  11397. weight: math.unit(150, "lb"),
  11398. name: "Back",
  11399. image: {
  11400. source: "./media/characters/pianostrong/back.svg",
  11401. extra: 6085 / 5733,
  11402. bottom: 0.01
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Macro",
  11409. height: math.unit(100, "feet")
  11410. },
  11411. {
  11412. name: "Macro+",
  11413. height: math.unit(300, "feet"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Macro++",
  11418. height: math.unit(1000, "feet")
  11419. },
  11420. ]
  11421. ))
  11422. characterMakers.push(() => makeCharacter(
  11423. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11424. {
  11425. front: {
  11426. height: math.unit(6, "feet"),
  11427. weight: math.unit(150, "lb"),
  11428. name: "Front",
  11429. image: {
  11430. source: "./media/characters/kona/front.svg",
  11431. extra: 2960 / 2629,
  11432. bottom: 0.005
  11433. }
  11434. },
  11435. },
  11436. [
  11437. {
  11438. name: "Normal",
  11439. height: math.unit(11 + 8 / 12, "feet")
  11440. },
  11441. {
  11442. name: "Macro",
  11443. height: math.unit(850, "feet"),
  11444. default: true
  11445. },
  11446. {
  11447. name: "Macro+",
  11448. height: math.unit(1.5, "km"),
  11449. default: true
  11450. },
  11451. {
  11452. name: "Megamacro",
  11453. height: math.unit(80, "miles")
  11454. },
  11455. {
  11456. name: "Gigamacro",
  11457. height: math.unit(3500, "miles")
  11458. },
  11459. ]
  11460. ))
  11461. characterMakers.push(() => makeCharacter(
  11462. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11463. {
  11464. side: {
  11465. height: math.unit(1.9, "meters"),
  11466. weight: math.unit(326, "kg"),
  11467. name: "Side",
  11468. image: {
  11469. source: "./media/characters/levi/side.svg",
  11470. extra: 1704 / 1334,
  11471. bottom: 0.02
  11472. }
  11473. },
  11474. },
  11475. [
  11476. {
  11477. name: "Normal",
  11478. height: math.unit(1.9, "meters"),
  11479. default: true
  11480. },
  11481. {
  11482. name: "Macro",
  11483. height: math.unit(20, "meters")
  11484. },
  11485. {
  11486. name: "Macro+",
  11487. height: math.unit(200, "meters")
  11488. },
  11489. {
  11490. name: "Megamacro",
  11491. height: math.unit(2, "km")
  11492. },
  11493. {
  11494. name: "Megamacro+",
  11495. height: math.unit(20, "km")
  11496. },
  11497. {
  11498. name: "Gigamacro",
  11499. height: math.unit(2500, "km")
  11500. },
  11501. {
  11502. name: "Gigamacro+",
  11503. height: math.unit(120000, "km")
  11504. },
  11505. {
  11506. name: "Teramacro",
  11507. height: math.unit(7.77e6, "km")
  11508. },
  11509. ]
  11510. ))
  11511. characterMakers.push(() => makeCharacter(
  11512. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11513. {
  11514. front: {
  11515. height: math.unit(6 + 4/12, "feet"),
  11516. weight: math.unit(190, "lb"),
  11517. name: "Front",
  11518. image: {
  11519. source: "./media/characters/bmc/front.svg",
  11520. extra: 1626/1472,
  11521. bottom: 79/1705
  11522. }
  11523. },
  11524. back: {
  11525. height: math.unit(6 + 4/12, "feet"),
  11526. weight: math.unit(190, "lb"),
  11527. name: "Back",
  11528. image: {
  11529. source: "./media/characters/bmc/back.svg",
  11530. extra: 1640/1479,
  11531. bottom: 45/1685
  11532. }
  11533. },
  11534. frontArmor: {
  11535. height: math.unit(6 + 4/12, "feet"),
  11536. weight: math.unit(190, "lb"),
  11537. name: "Front-armor",
  11538. image: {
  11539. source: "./media/characters/bmc/front-armor.svg",
  11540. extra: 1538/1468,
  11541. bottom: 79/1617
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Human-sized",
  11548. height: math.unit(6 + 4 / 12, "feet")
  11549. },
  11550. {
  11551. name: "Interactive Size",
  11552. height: math.unit(25, "feet")
  11553. },
  11554. {
  11555. name: "Small",
  11556. height: math.unit(250, "feet")
  11557. },
  11558. {
  11559. name: "Normal",
  11560. height: math.unit(1250, "feet"),
  11561. default: true
  11562. },
  11563. {
  11564. name: "Good Day",
  11565. height: math.unit(88, "miles")
  11566. },
  11567. {
  11568. name: "Largest Measured Size",
  11569. height: math.unit(105.960, "galaxies")
  11570. },
  11571. ]
  11572. ))
  11573. characterMakers.push(() => makeCharacter(
  11574. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11575. {
  11576. front: {
  11577. height: math.unit(20, "feet"),
  11578. weight: math.unit(2016, "kg"),
  11579. name: "Front",
  11580. image: {
  11581. source: "./media/characters/sven-the-kaiju/front.svg",
  11582. extra: 1277/1250,
  11583. bottom: 35/1312
  11584. }
  11585. },
  11586. mouth: {
  11587. height: math.unit(1.85, "feet"),
  11588. name: "Mouth",
  11589. image: {
  11590. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11591. }
  11592. },
  11593. },
  11594. [
  11595. {
  11596. name: "Fairy",
  11597. height: math.unit(6, "inches")
  11598. },
  11599. {
  11600. name: "Normal",
  11601. height: math.unit(20, "feet"),
  11602. default: true
  11603. },
  11604. {
  11605. name: "Rampage",
  11606. height: math.unit(200, "feet")
  11607. },
  11608. {
  11609. name: "Archfey Forest Guardian",
  11610. height: math.unit(1, "mile")
  11611. },
  11612. ]
  11613. ))
  11614. characterMakers.push(() => makeCharacter(
  11615. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11616. {
  11617. front: {
  11618. height: math.unit(4, "meters"),
  11619. weight: math.unit(2, "tons"),
  11620. name: "Front",
  11621. image: {
  11622. source: "./media/characters/marik/front.svg",
  11623. extra: 1057 / 1003,
  11624. bottom: 0.08
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Normal",
  11631. height: math.unit(4, "meters"),
  11632. default: true
  11633. },
  11634. {
  11635. name: "Macro",
  11636. height: math.unit(20, "meters")
  11637. },
  11638. {
  11639. name: "Megamacro",
  11640. height: math.unit(50, "km")
  11641. },
  11642. {
  11643. name: "Gigamacro",
  11644. height: math.unit(100, "km")
  11645. },
  11646. {
  11647. name: "Alpha Macro",
  11648. height: math.unit(7.88e7, "yottameters")
  11649. },
  11650. ]
  11651. ))
  11652. characterMakers.push(() => makeCharacter(
  11653. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11654. {
  11655. front: {
  11656. height: math.unit(6, "feet"),
  11657. weight: math.unit(110, "lb"),
  11658. name: "Front",
  11659. image: {
  11660. source: "./media/characters/mel/front.svg",
  11661. extra: 736 / 617,
  11662. bottom: 0.017
  11663. }
  11664. },
  11665. },
  11666. [
  11667. {
  11668. name: "Pico",
  11669. height: math.unit(3, "pm")
  11670. },
  11671. {
  11672. name: "Nano",
  11673. height: math.unit(3, "nm")
  11674. },
  11675. {
  11676. name: "Micro",
  11677. height: math.unit(0.3, "mm"),
  11678. default: true
  11679. },
  11680. {
  11681. name: "Micro+",
  11682. height: math.unit(3, "mm")
  11683. },
  11684. {
  11685. name: "Normal",
  11686. height: math.unit(5 + 10.5 / 12, "feet")
  11687. },
  11688. ]
  11689. ))
  11690. characterMakers.push(() => makeCharacter(
  11691. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11692. {
  11693. kaiju: {
  11694. height: math.unit(1.75, "meters"),
  11695. weight: math.unit(55, "kg"),
  11696. name: "Kaiju",
  11697. image: {
  11698. source: "./media/characters/lykonous/kaiju.svg",
  11699. extra: 1055 / 946,
  11700. bottom: 0.135
  11701. }
  11702. },
  11703. },
  11704. [
  11705. {
  11706. name: "Normal",
  11707. height: math.unit(2.5, "meters"),
  11708. default: true
  11709. },
  11710. {
  11711. name: "Kaiju Dragon",
  11712. height: math.unit(60, "meters")
  11713. },
  11714. {
  11715. name: "Mega Kaiju",
  11716. height: math.unit(120, "km")
  11717. },
  11718. {
  11719. name: "Giga Kaiju",
  11720. height: math.unit(200, "megameters")
  11721. },
  11722. {
  11723. name: "Terra Kaiju",
  11724. height: math.unit(400, "gigameters")
  11725. },
  11726. {
  11727. name: "Kaiju Dragon God",
  11728. height: math.unit(13000, "exaparsecs")
  11729. },
  11730. ]
  11731. ))
  11732. characterMakers.push(() => makeCharacter(
  11733. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11734. {
  11735. front: {
  11736. height: math.unit(6, "feet"),
  11737. weight: math.unit(150, "lb"),
  11738. name: "Front",
  11739. image: {
  11740. source: "./media/characters/blü/front.svg",
  11741. extra: 1883 / 1564,
  11742. bottom: 0.031
  11743. }
  11744. },
  11745. },
  11746. [
  11747. {
  11748. name: "Normal",
  11749. height: math.unit(13, "feet"),
  11750. default: true
  11751. },
  11752. {
  11753. name: "Big Boi",
  11754. height: math.unit(150, "meters")
  11755. },
  11756. {
  11757. name: "Mini Stomper",
  11758. height: math.unit(300, "meters")
  11759. },
  11760. {
  11761. name: "Macro",
  11762. height: math.unit(1000, "meters")
  11763. },
  11764. {
  11765. name: "Megamacro",
  11766. height: math.unit(11000, "meters")
  11767. },
  11768. {
  11769. name: "Gigamacro",
  11770. height: math.unit(11000, "km")
  11771. },
  11772. {
  11773. name: "Teramacro",
  11774. height: math.unit(420000, "km")
  11775. },
  11776. {
  11777. name: "Examacro",
  11778. height: math.unit(120, "parsecs")
  11779. },
  11780. {
  11781. name: "God Tho",
  11782. height: math.unit(98000000000, "parsecs")
  11783. },
  11784. ]
  11785. ))
  11786. characterMakers.push(() => makeCharacter(
  11787. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11788. {
  11789. taurFront: {
  11790. height: math.unit(6, "feet"),
  11791. weight: math.unit(200, "lb"),
  11792. name: "Taur (Front)",
  11793. image: {
  11794. source: "./media/characters/scales/taur-front.svg",
  11795. extra: 1,
  11796. bottom: 0.05
  11797. }
  11798. },
  11799. taurBack: {
  11800. height: math.unit(6, "feet"),
  11801. weight: math.unit(200, "lb"),
  11802. name: "Taur (Back)",
  11803. image: {
  11804. source: "./media/characters/scales/taur-back.svg",
  11805. extra: 1,
  11806. bottom: 0.08
  11807. }
  11808. },
  11809. anthro: {
  11810. height: math.unit(6 * 7 / 12, "feet"),
  11811. weight: math.unit(100, "lb"),
  11812. name: "Anthro",
  11813. image: {
  11814. source: "./media/characters/scales/anthro.svg",
  11815. extra: 1,
  11816. bottom: 0.06
  11817. }
  11818. },
  11819. },
  11820. [
  11821. {
  11822. name: "Normal",
  11823. height: math.unit(12, "feet"),
  11824. default: true
  11825. },
  11826. ]
  11827. ))
  11828. characterMakers.push(() => makeCharacter(
  11829. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11830. {
  11831. front: {
  11832. height: math.unit(6, "feet"),
  11833. weight: math.unit(150, "lb"),
  11834. name: "Front",
  11835. image: {
  11836. source: "./media/characters/koragos/front.svg",
  11837. extra: 841 / 794,
  11838. bottom: 0.035
  11839. }
  11840. },
  11841. back: {
  11842. height: math.unit(6, "feet"),
  11843. weight: math.unit(150, "lb"),
  11844. name: "Back",
  11845. image: {
  11846. source: "./media/characters/koragos/back.svg",
  11847. extra: 841 / 810,
  11848. bottom: 0.022
  11849. }
  11850. },
  11851. },
  11852. [
  11853. {
  11854. name: "Normal",
  11855. height: math.unit(6 + 11 / 12, "feet"),
  11856. default: true
  11857. },
  11858. {
  11859. name: "Macro",
  11860. height: math.unit(490, "feet")
  11861. },
  11862. {
  11863. name: "Megamacro",
  11864. height: math.unit(10, "miles")
  11865. },
  11866. {
  11867. name: "Gigamacro",
  11868. height: math.unit(50, "miles")
  11869. },
  11870. ]
  11871. ))
  11872. characterMakers.push(() => makeCharacter(
  11873. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11874. {
  11875. front: {
  11876. height: math.unit(6, "feet"),
  11877. weight: math.unit(250, "lb"),
  11878. name: "Front",
  11879. image: {
  11880. source: "./media/characters/xylrem/front.svg",
  11881. extra: 3323 / 3050,
  11882. bottom: 0.065
  11883. }
  11884. },
  11885. },
  11886. [
  11887. {
  11888. name: "Micro",
  11889. height: math.unit(4, "feet")
  11890. },
  11891. {
  11892. name: "Normal",
  11893. height: math.unit(16, "feet"),
  11894. default: true
  11895. },
  11896. {
  11897. name: "Macro",
  11898. height: math.unit(2720, "feet")
  11899. },
  11900. {
  11901. name: "Megamacro",
  11902. height: math.unit(25000, "miles")
  11903. },
  11904. ]
  11905. ))
  11906. characterMakers.push(() => makeCharacter(
  11907. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11908. {
  11909. front: {
  11910. height: math.unit(8, "feet"),
  11911. weight: math.unit(250, "kg"),
  11912. name: "Front",
  11913. image: {
  11914. source: "./media/characters/ikideru/front.svg",
  11915. extra: 930 / 870,
  11916. bottom: 0.087
  11917. }
  11918. },
  11919. back: {
  11920. height: math.unit(8, "feet"),
  11921. weight: math.unit(250, "kg"),
  11922. name: "Back",
  11923. image: {
  11924. source: "./media/characters/ikideru/back.svg",
  11925. extra: 919 / 852,
  11926. bottom: 0.055
  11927. }
  11928. },
  11929. },
  11930. [
  11931. {
  11932. name: "Rare",
  11933. height: math.unit(8, "feet"),
  11934. default: true
  11935. },
  11936. {
  11937. name: "Playful Loom",
  11938. height: math.unit(80, "feet")
  11939. },
  11940. {
  11941. name: "City Leaner",
  11942. height: math.unit(230, "feet")
  11943. },
  11944. {
  11945. name: "Megamacro",
  11946. height: math.unit(2500, "feet")
  11947. },
  11948. {
  11949. name: "Gigamacro",
  11950. height: math.unit(26400, "feet")
  11951. },
  11952. {
  11953. name: "Tectonic Shifter",
  11954. height: math.unit(1.7, "megameters")
  11955. },
  11956. {
  11957. name: "Planet Carer",
  11958. height: math.unit(21, "megameters")
  11959. },
  11960. {
  11961. name: "God",
  11962. height: math.unit(11157.22, "parsecs")
  11963. },
  11964. ]
  11965. ))
  11966. characterMakers.push(() => makeCharacter(
  11967. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11968. {
  11969. front: {
  11970. height: math.unit(6, "feet"),
  11971. weight: math.unit(120, "lb"),
  11972. name: "Front",
  11973. image: {
  11974. source: "./media/characters/neo/front.svg"
  11975. }
  11976. },
  11977. },
  11978. [
  11979. {
  11980. name: "Micro",
  11981. height: math.unit(2, "inches"),
  11982. default: true
  11983. },
  11984. {
  11985. name: "Human Size",
  11986. height: math.unit(5 + 8 / 12, "feet")
  11987. },
  11988. ]
  11989. ))
  11990. characterMakers.push(() => makeCharacter(
  11991. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11992. {
  11993. front: {
  11994. height: math.unit(13 + 10 / 12, "feet"),
  11995. weight: math.unit(5320, "lb"),
  11996. name: "Front",
  11997. image: {
  11998. source: "./media/characters/chauncey-chantz/front.svg",
  11999. extra: 1587 / 1435,
  12000. bottom: 0.02
  12001. }
  12002. },
  12003. },
  12004. [
  12005. {
  12006. name: "Normal",
  12007. height: math.unit(13 + 10 / 12, "feet"),
  12008. default: true
  12009. },
  12010. {
  12011. name: "Macro",
  12012. height: math.unit(45, "feet")
  12013. },
  12014. {
  12015. name: "Megamacro",
  12016. height: math.unit(250, "miles")
  12017. },
  12018. {
  12019. name: "Planetary",
  12020. height: math.unit(10000, "miles")
  12021. },
  12022. {
  12023. name: "Galactic",
  12024. height: math.unit(40000, "parsecs")
  12025. },
  12026. {
  12027. name: "Universal",
  12028. height: math.unit(1, "yottameter")
  12029. },
  12030. ]
  12031. ))
  12032. characterMakers.push(() => makeCharacter(
  12033. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12034. {
  12035. front: {
  12036. height: math.unit(6, "feet"),
  12037. weight: math.unit(150, "lb"),
  12038. name: "Front",
  12039. image: {
  12040. source: "./media/characters/epifox/front.svg",
  12041. extra: 1,
  12042. bottom: 0.075
  12043. }
  12044. },
  12045. },
  12046. [
  12047. {
  12048. name: "Micro",
  12049. height: math.unit(6, "inches")
  12050. },
  12051. {
  12052. name: "Normal",
  12053. height: math.unit(12, "feet"),
  12054. default: true
  12055. },
  12056. {
  12057. name: "Macro",
  12058. height: math.unit(3810, "feet")
  12059. },
  12060. {
  12061. name: "Megamacro",
  12062. height: math.unit(500, "miles")
  12063. },
  12064. ]
  12065. ))
  12066. characterMakers.push(() => makeCharacter(
  12067. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12068. {
  12069. front: {
  12070. height: math.unit(1.8796, "m"),
  12071. weight: math.unit(230, "lb"),
  12072. name: "Front",
  12073. image: {
  12074. source: "./media/characters/colin-t/front.svg",
  12075. extra: 1272 / 1193,
  12076. bottom: 0.07
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Micro",
  12083. height: math.unit(0.571, "meters")
  12084. },
  12085. {
  12086. name: "Normal",
  12087. height: math.unit(1.8796, "meters"),
  12088. default: true
  12089. },
  12090. {
  12091. name: "Tall",
  12092. height: math.unit(4, "meters")
  12093. },
  12094. {
  12095. name: "Macro",
  12096. height: math.unit(67.241, "meters")
  12097. },
  12098. {
  12099. name: "Megamacro",
  12100. height: math.unit(371.856, "meters")
  12101. },
  12102. {
  12103. name: "Planetary",
  12104. height: math.unit(12631.5689, "km")
  12105. },
  12106. ]
  12107. ))
  12108. characterMakers.push(() => makeCharacter(
  12109. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12110. {
  12111. front: {
  12112. height: math.unit(1.85, "meters"),
  12113. weight: math.unit(80, "kg"),
  12114. name: "Front",
  12115. image: {
  12116. source: "./media/characters/matvei/front.svg",
  12117. extra: 614 / 594,
  12118. bottom: 0.01
  12119. }
  12120. },
  12121. },
  12122. [
  12123. {
  12124. name: "Normal",
  12125. height: math.unit(1.85, "meters"),
  12126. default: true
  12127. },
  12128. ]
  12129. ))
  12130. characterMakers.push(() => makeCharacter(
  12131. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12132. {
  12133. front: {
  12134. height: math.unit(5 + 9 / 12, "feet"),
  12135. weight: math.unit(70, "lb"),
  12136. name: "Front",
  12137. image: {
  12138. source: "./media/characters/quincy/front.svg",
  12139. extra: 3041 / 2751
  12140. }
  12141. },
  12142. back: {
  12143. height: math.unit(5 + 9 / 12, "feet"),
  12144. weight: math.unit(70, "lb"),
  12145. name: "Back",
  12146. image: {
  12147. source: "./media/characters/quincy/back.svg",
  12148. extra: 3041 / 2751
  12149. }
  12150. },
  12151. flying: {
  12152. height: math.unit(5 + 4 / 12, "feet"),
  12153. weight: math.unit(70, "lb"),
  12154. name: "Flying",
  12155. image: {
  12156. source: "./media/characters/quincy/flying.svg",
  12157. extra: 1044 / 930
  12158. }
  12159. },
  12160. },
  12161. [
  12162. {
  12163. name: "Micro",
  12164. height: math.unit(3, "cm")
  12165. },
  12166. {
  12167. name: "Normal",
  12168. height: math.unit(5 + 9 / 12, "feet")
  12169. },
  12170. {
  12171. name: "Macro",
  12172. height: math.unit(200, "meters"),
  12173. default: true
  12174. },
  12175. {
  12176. name: "Megamacro",
  12177. height: math.unit(1000, "meters")
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(3 + 11/12, "feet"),
  12186. weight: math.unit(50, "lb"),
  12187. name: "Front",
  12188. image: {
  12189. source: "./media/characters/vanrel/front.svg",
  12190. extra: 1104/949,
  12191. bottom: 52/1156
  12192. }
  12193. },
  12194. back: {
  12195. height: math.unit(3 + 11/12, "feet"),
  12196. weight: math.unit(50, "lb"),
  12197. name: "Back",
  12198. image: {
  12199. source: "./media/characters/vanrel/back.svg",
  12200. extra: 1119/976,
  12201. bottom: 37/1156
  12202. }
  12203. },
  12204. tome: {
  12205. height: math.unit(1.35, "feet"),
  12206. weight: math.unit(10, "lb"),
  12207. name: "Vanrel's Tome",
  12208. rename: true,
  12209. image: {
  12210. source: "./media/characters/vanrel/tome.svg"
  12211. }
  12212. },
  12213. beans: {
  12214. height: math.unit(0.89, "feet"),
  12215. name: "Beans",
  12216. image: {
  12217. source: "./media/characters/vanrel/beans.svg"
  12218. }
  12219. },
  12220. },
  12221. [
  12222. {
  12223. name: "Normal",
  12224. height: math.unit(3 + 11/12, "feet"),
  12225. default: true
  12226. },
  12227. ]
  12228. ))
  12229. characterMakers.push(() => makeCharacter(
  12230. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12231. {
  12232. front: {
  12233. height: math.unit(7 + 5 / 12, "feet"),
  12234. name: "Front",
  12235. image: {
  12236. source: "./media/characters/kuiper-vanrel/front.svg",
  12237. extra: 1219/1169,
  12238. bottom: 69/1288
  12239. }
  12240. },
  12241. back: {
  12242. height: math.unit(7 + 5 / 12, "feet"),
  12243. name: "Back",
  12244. image: {
  12245. source: "./media/characters/kuiper-vanrel/back.svg",
  12246. extra: 1236/1193,
  12247. bottom: 27/1263
  12248. }
  12249. },
  12250. foot: {
  12251. height: math.unit(0.55, "meters"),
  12252. name: "Foot",
  12253. image: {
  12254. source: "./media/characters/kuiper-vanrel/foot.svg",
  12255. }
  12256. },
  12257. battle: {
  12258. height: math.unit(6.824, "feet"),
  12259. name: "Battle",
  12260. image: {
  12261. source: "./media/characters/kuiper-vanrel/battle.svg",
  12262. extra: 1466 / 1327,
  12263. bottom: 29 / 1492.5
  12264. }
  12265. },
  12266. meerkui: {
  12267. height: math.unit(18, "inches"),
  12268. name: "Meerkui",
  12269. image: {
  12270. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12271. extra: 1354/1289,
  12272. bottom: 69/1423
  12273. }
  12274. },
  12275. },
  12276. [
  12277. {
  12278. name: "Normal",
  12279. height: math.unit(7 + 5 / 12, "feet"),
  12280. default: true
  12281. },
  12282. ]
  12283. ))
  12284. characterMakers.push(() => makeCharacter(
  12285. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12286. {
  12287. front: {
  12288. height: math.unit(8 + 5 / 12, "feet"),
  12289. name: "Front",
  12290. image: {
  12291. source: "./media/characters/keset-vanrel/front.svg",
  12292. extra: 1231/1148,
  12293. bottom: 82/1313
  12294. }
  12295. },
  12296. back: {
  12297. height: math.unit(8 + 5 / 12, "feet"),
  12298. name: "Back",
  12299. image: {
  12300. source: "./media/characters/keset-vanrel/back.svg",
  12301. extra: 1240/1174,
  12302. bottom: 33/1273
  12303. }
  12304. },
  12305. hand: {
  12306. height: math.unit(0.6, "meters"),
  12307. name: "Hand",
  12308. image: {
  12309. source: "./media/characters/keset-vanrel/hand.svg"
  12310. }
  12311. },
  12312. foot: {
  12313. height: math.unit(0.94978, "meters"),
  12314. name: "Foot",
  12315. image: {
  12316. source: "./media/characters/keset-vanrel/foot.svg"
  12317. }
  12318. },
  12319. battle: {
  12320. height: math.unit(7.408, "feet"),
  12321. name: "Battle",
  12322. image: {
  12323. source: "./media/characters/keset-vanrel/battle.svg",
  12324. extra: 1890 / 1386,
  12325. bottom: 73.28 / 1970
  12326. }
  12327. },
  12328. },
  12329. [
  12330. {
  12331. name: "Normal",
  12332. height: math.unit(8 + 5 / 12, "feet"),
  12333. default: true
  12334. },
  12335. ]
  12336. ))
  12337. characterMakers.push(() => makeCharacter(
  12338. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12339. {
  12340. front: {
  12341. height: math.unit(6, "feet"),
  12342. weight: math.unit(150, "lb"),
  12343. name: "Front",
  12344. image: {
  12345. source: "./media/characters/neos/front.svg",
  12346. extra: 1696 / 992,
  12347. bottom: 0.14
  12348. }
  12349. },
  12350. },
  12351. [
  12352. {
  12353. name: "Normal",
  12354. height: math.unit(54, "cm"),
  12355. default: true
  12356. },
  12357. {
  12358. name: "Macro",
  12359. height: math.unit(100, "m")
  12360. },
  12361. {
  12362. name: "Megamacro",
  12363. height: math.unit(10, "km")
  12364. },
  12365. {
  12366. name: "Megamacro+",
  12367. height: math.unit(100, "km")
  12368. },
  12369. {
  12370. name: "Gigamacro",
  12371. height: math.unit(100, "Mm")
  12372. },
  12373. {
  12374. name: "Teramacro",
  12375. height: math.unit(100, "Gm")
  12376. },
  12377. {
  12378. name: "Examacro",
  12379. height: math.unit(100, "Em")
  12380. },
  12381. {
  12382. name: "Godly",
  12383. height: math.unit(10000, "Ym")
  12384. },
  12385. {
  12386. name: "Beyond Godly",
  12387. height: math.unit(25, "multiverses")
  12388. },
  12389. ]
  12390. ))
  12391. characterMakers.push(() => makeCharacter(
  12392. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12393. {
  12394. feminine: {
  12395. height: math.unit(5, "feet"),
  12396. weight: math.unit(100, "lb"),
  12397. name: "Feminine",
  12398. image: {
  12399. source: "./media/characters/sammy-mouse/feminine.svg",
  12400. extra: 2526 / 2425,
  12401. bottom: 0.123
  12402. }
  12403. },
  12404. masculine: {
  12405. height: math.unit(5, "feet"),
  12406. weight: math.unit(100, "lb"),
  12407. name: "Masculine",
  12408. image: {
  12409. source: "./media/characters/sammy-mouse/masculine.svg",
  12410. extra: 2526 / 2425,
  12411. bottom: 0.123
  12412. }
  12413. },
  12414. },
  12415. [
  12416. {
  12417. name: "Micro",
  12418. height: math.unit(5, "inches")
  12419. },
  12420. {
  12421. name: "Normal",
  12422. height: math.unit(5, "feet"),
  12423. default: true
  12424. },
  12425. {
  12426. name: "Macro",
  12427. height: math.unit(60, "feet")
  12428. },
  12429. ]
  12430. ))
  12431. characterMakers.push(() => makeCharacter(
  12432. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12433. {
  12434. front: {
  12435. height: math.unit(4, "feet"),
  12436. weight: math.unit(50, "lb"),
  12437. name: "Front",
  12438. image: {
  12439. source: "./media/characters/kole/front.svg",
  12440. extra: 1423 / 1303,
  12441. bottom: 0.025
  12442. }
  12443. },
  12444. back: {
  12445. height: math.unit(4, "feet"),
  12446. weight: math.unit(50, "lb"),
  12447. name: "Back",
  12448. image: {
  12449. source: "./media/characters/kole/back.svg",
  12450. extra: 1426 / 1280,
  12451. bottom: 0.02
  12452. }
  12453. },
  12454. },
  12455. [
  12456. {
  12457. name: "Normal",
  12458. height: math.unit(4, "feet"),
  12459. default: true
  12460. },
  12461. ]
  12462. ))
  12463. characterMakers.push(() => makeCharacter(
  12464. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12465. {
  12466. front: {
  12467. height: math.unit(2.5, "feet"),
  12468. weight: math.unit(32, "lb"),
  12469. name: "Front",
  12470. image: {
  12471. source: "./media/characters/rufran/front.svg",
  12472. extra: 1313/885,
  12473. bottom: 94/1407
  12474. }
  12475. },
  12476. side: {
  12477. height: math.unit(2.5, "feet"),
  12478. weight: math.unit(32, "lb"),
  12479. name: "Side",
  12480. image: {
  12481. source: "./media/characters/rufran/side.svg",
  12482. extra: 1109/852,
  12483. bottom: 118/1227
  12484. }
  12485. },
  12486. back: {
  12487. height: math.unit(2.5, "feet"),
  12488. weight: math.unit(32, "lb"),
  12489. name: "Back",
  12490. image: {
  12491. source: "./media/characters/rufran/back.svg",
  12492. extra: 1280/878,
  12493. bottom: 131/1411
  12494. }
  12495. },
  12496. mouth: {
  12497. height: math.unit(1.13, "feet"),
  12498. name: "Mouth",
  12499. image: {
  12500. source: "./media/characters/rufran/mouth.svg"
  12501. }
  12502. },
  12503. foot: {
  12504. height: math.unit(1.33, "feet"),
  12505. name: "Foot",
  12506. image: {
  12507. source: "./media/characters/rufran/foot.svg"
  12508. }
  12509. },
  12510. koboldFront: {
  12511. height: math.unit(2 + 6 / 12, "feet"),
  12512. weight: math.unit(20, "lb"),
  12513. name: "Front (Kobold)",
  12514. image: {
  12515. source: "./media/characters/rufran/kobold-front.svg",
  12516. extra: 2041 / 1839,
  12517. bottom: 0.055
  12518. }
  12519. },
  12520. koboldBack: {
  12521. height: math.unit(2 + 6 / 12, "feet"),
  12522. weight: math.unit(20, "lb"),
  12523. name: "Back (Kobold)",
  12524. image: {
  12525. source: "./media/characters/rufran/kobold-back.svg",
  12526. extra: 2054 / 1839,
  12527. bottom: 0.01
  12528. }
  12529. },
  12530. koboldHand: {
  12531. height: math.unit(0.2166, "meters"),
  12532. name: "Hand (Kobold)",
  12533. image: {
  12534. source: "./media/characters/rufran/kobold-hand.svg"
  12535. }
  12536. },
  12537. koboldFoot: {
  12538. height: math.unit(0.185, "meters"),
  12539. name: "Foot (Kobold)",
  12540. image: {
  12541. source: "./media/characters/rufran/kobold-foot.svg"
  12542. }
  12543. },
  12544. },
  12545. [
  12546. {
  12547. name: "Micro",
  12548. height: math.unit(1, "inch")
  12549. },
  12550. {
  12551. name: "Normal",
  12552. height: math.unit(2 + 6 / 12, "feet"),
  12553. default: true
  12554. },
  12555. {
  12556. name: "Big",
  12557. height: math.unit(60, "feet")
  12558. },
  12559. {
  12560. name: "Macro",
  12561. height: math.unit(325, "feet")
  12562. },
  12563. ]
  12564. ))
  12565. characterMakers.push(() => makeCharacter(
  12566. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12567. {
  12568. front: {
  12569. height: math.unit(0.3, "meters"),
  12570. weight: math.unit(3.5, "kg"),
  12571. name: "Front",
  12572. image: {
  12573. source: "./media/characters/chip/front.svg",
  12574. extra: 748 / 674
  12575. }
  12576. },
  12577. },
  12578. [
  12579. {
  12580. name: "Micro",
  12581. height: math.unit(1, "inch"),
  12582. default: true
  12583. },
  12584. ]
  12585. ))
  12586. characterMakers.push(() => makeCharacter(
  12587. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12588. {
  12589. side: {
  12590. height: math.unit(2.3, "meters"),
  12591. weight: math.unit(3500, "lb"),
  12592. name: "Side",
  12593. image: {
  12594. source: "./media/characters/torvid/side.svg",
  12595. extra: 1972 / 722,
  12596. bottom: 0.035
  12597. }
  12598. },
  12599. },
  12600. [
  12601. {
  12602. name: "Normal",
  12603. height: math.unit(2.3, "meters"),
  12604. default: true
  12605. },
  12606. ]
  12607. ))
  12608. characterMakers.push(() => makeCharacter(
  12609. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12610. {
  12611. front: {
  12612. height: math.unit(2, "meters"),
  12613. weight: math.unit(150.5, "kg"),
  12614. name: "Front",
  12615. image: {
  12616. source: "./media/characters/susan/front.svg",
  12617. extra: 693 / 635,
  12618. bottom: 0.05
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Megamacro",
  12625. height: math.unit(505, "miles"),
  12626. default: true
  12627. },
  12628. ]
  12629. ))
  12630. characterMakers.push(() => makeCharacter(
  12631. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12632. {
  12633. front: {
  12634. height: math.unit(6, "feet"),
  12635. weight: math.unit(150, "lb"),
  12636. name: "Front",
  12637. image: {
  12638. source: "./media/characters/raindrops/front.svg",
  12639. extra: 2655 / 2461,
  12640. bottom: 49 / 2705
  12641. }
  12642. },
  12643. back: {
  12644. height: math.unit(6, "feet"),
  12645. weight: math.unit(150, "lb"),
  12646. name: "Back",
  12647. image: {
  12648. source: "./media/characters/raindrops/back.svg",
  12649. extra: 2574 / 2400,
  12650. bottom: 65 / 2634
  12651. }
  12652. },
  12653. },
  12654. [
  12655. {
  12656. name: "Micro",
  12657. height: math.unit(6, "inches")
  12658. },
  12659. {
  12660. name: "Normal",
  12661. height: math.unit(6 + 2 / 12, "feet")
  12662. },
  12663. {
  12664. name: "Macro",
  12665. height: math.unit(131, "feet"),
  12666. default: true
  12667. },
  12668. {
  12669. name: "Megamacro",
  12670. height: math.unit(15, "miles")
  12671. },
  12672. {
  12673. name: "Gigamacro",
  12674. height: math.unit(4000, "miles")
  12675. },
  12676. {
  12677. name: "Teramacro",
  12678. height: math.unit(315000, "miles")
  12679. },
  12680. ]
  12681. ))
  12682. characterMakers.push(() => makeCharacter(
  12683. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12684. {
  12685. front: {
  12686. height: math.unit(2.794, "meters"),
  12687. weight: math.unit(325, "kg"),
  12688. name: "Front",
  12689. image: {
  12690. source: "./media/characters/tezwa/front.svg",
  12691. extra: 2083 / 1906,
  12692. bottom: 0.031
  12693. }
  12694. },
  12695. foot: {
  12696. height: math.unit(0.687, "meters"),
  12697. name: "Foot",
  12698. image: {
  12699. source: "./media/characters/tezwa/foot.svg"
  12700. }
  12701. },
  12702. },
  12703. [
  12704. {
  12705. name: "Normal",
  12706. height: math.unit(9 + 2 / 12, "feet"),
  12707. default: true
  12708. },
  12709. ]
  12710. ))
  12711. characterMakers.push(() => makeCharacter(
  12712. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12713. {
  12714. front: {
  12715. height: math.unit(58, "feet"),
  12716. weight: math.unit(89000, "lb"),
  12717. name: "Front",
  12718. image: {
  12719. source: "./media/characters/typhus/front.svg",
  12720. extra: 816 / 800,
  12721. bottom: 0.065
  12722. }
  12723. },
  12724. },
  12725. [
  12726. {
  12727. name: "Macro",
  12728. height: math.unit(58, "feet"),
  12729. default: true
  12730. },
  12731. ]
  12732. ))
  12733. characterMakers.push(() => makeCharacter(
  12734. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12735. {
  12736. front: {
  12737. height: math.unit(12, "feet"),
  12738. weight: math.unit(6, "tonnes"),
  12739. name: "Front",
  12740. image: {
  12741. source: "./media/characters/lyra-von-wulf/front.svg",
  12742. extra: 1,
  12743. bottom: 0.10
  12744. }
  12745. },
  12746. frontMecha: {
  12747. height: math.unit(12, "feet"),
  12748. weight: math.unit(12, "tonnes"),
  12749. name: "Front (Mecha)",
  12750. image: {
  12751. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12752. extra: 1,
  12753. bottom: 0.042
  12754. }
  12755. },
  12756. maw: {
  12757. height: math.unit(2.2, "feet"),
  12758. name: "Maw",
  12759. image: {
  12760. source: "./media/characters/lyra-von-wulf/maw.svg"
  12761. }
  12762. },
  12763. },
  12764. [
  12765. {
  12766. name: "Normal",
  12767. height: math.unit(12, "feet"),
  12768. default: true
  12769. },
  12770. {
  12771. name: "Classic",
  12772. height: math.unit(50, "feet")
  12773. },
  12774. {
  12775. name: "Macro",
  12776. height: math.unit(500, "feet")
  12777. },
  12778. {
  12779. name: "Megamacro",
  12780. height: math.unit(1, "mile")
  12781. },
  12782. {
  12783. name: "Gigamacro",
  12784. height: math.unit(400, "miles")
  12785. },
  12786. {
  12787. name: "Teramacro",
  12788. height: math.unit(22000, "miles")
  12789. },
  12790. {
  12791. name: "Solarmacro",
  12792. height: math.unit(8600000, "miles")
  12793. },
  12794. {
  12795. name: "Galactic",
  12796. height: math.unit(1057000, "lightyears")
  12797. },
  12798. ]
  12799. ))
  12800. characterMakers.push(() => makeCharacter(
  12801. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12802. {
  12803. front: {
  12804. height: math.unit(6 + 10 / 12, "feet"),
  12805. weight: math.unit(150, "lb"),
  12806. name: "Front",
  12807. image: {
  12808. source: "./media/characters/dixon/front.svg",
  12809. extra: 3361 / 3209,
  12810. bottom: 0.01
  12811. }
  12812. },
  12813. },
  12814. [
  12815. {
  12816. name: "Normal",
  12817. height: math.unit(6 + 10 / 12, "feet"),
  12818. default: true
  12819. },
  12820. {
  12821. name: "Big",
  12822. height: math.unit(12, "meters")
  12823. },
  12824. {
  12825. name: "Macro",
  12826. height: math.unit(500, "meters")
  12827. },
  12828. {
  12829. name: "Megamacro",
  12830. height: math.unit(2, "km")
  12831. },
  12832. ]
  12833. ))
  12834. characterMakers.push(() => makeCharacter(
  12835. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12836. {
  12837. front: {
  12838. height: math.unit(185, "cm"),
  12839. weight: math.unit(68, "kg"),
  12840. name: "Front",
  12841. image: {
  12842. source: "./media/characters/kauko/front.svg",
  12843. extra: 1455 / 1421,
  12844. bottom: 0.03
  12845. }
  12846. },
  12847. back: {
  12848. height: math.unit(185, "cm"),
  12849. weight: math.unit(68, "kg"),
  12850. name: "Back",
  12851. image: {
  12852. source: "./media/characters/kauko/back.svg",
  12853. extra: 1455 / 1421,
  12854. bottom: 0.004
  12855. }
  12856. },
  12857. },
  12858. [
  12859. {
  12860. name: "Normal",
  12861. height: math.unit(185, "cm"),
  12862. default: true
  12863. },
  12864. ]
  12865. ))
  12866. characterMakers.push(() => makeCharacter(
  12867. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12868. {
  12869. front: {
  12870. height: math.unit(6, "feet"),
  12871. weight: math.unit(150, "kg"),
  12872. name: "Front",
  12873. image: {
  12874. source: "./media/characters/varg/front.svg",
  12875. extra: 1108 / 1018,
  12876. bottom: 0.0375
  12877. }
  12878. },
  12879. },
  12880. [
  12881. {
  12882. name: "Normal",
  12883. height: math.unit(5, "meters")
  12884. },
  12885. {
  12886. name: "Macro",
  12887. height: math.unit(200, "meters")
  12888. },
  12889. {
  12890. name: "Megamacro",
  12891. height: math.unit(20, "kilometers")
  12892. },
  12893. {
  12894. name: "True Size",
  12895. height: math.unit(211, "km"),
  12896. default: true
  12897. },
  12898. {
  12899. name: "Gigamacro",
  12900. height: math.unit(1000, "km")
  12901. },
  12902. {
  12903. name: "Gigamacro+",
  12904. height: math.unit(8000, "km")
  12905. },
  12906. {
  12907. name: "Teramacro",
  12908. height: math.unit(1000000, "km")
  12909. },
  12910. ]
  12911. ))
  12912. characterMakers.push(() => makeCharacter(
  12913. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12914. {
  12915. front: {
  12916. height: math.unit(7 + 7 / 12, "feet"),
  12917. weight: math.unit(267, "lb"),
  12918. name: "Front",
  12919. image: {
  12920. source: "./media/characters/dayza/front.svg",
  12921. extra: 1262 / 1200,
  12922. bottom: 0.035
  12923. }
  12924. },
  12925. side: {
  12926. height: math.unit(7 + 7 / 12, "feet"),
  12927. weight: math.unit(267, "lb"),
  12928. name: "Side",
  12929. image: {
  12930. source: "./media/characters/dayza/side.svg",
  12931. extra: 1295 / 1245,
  12932. bottom: 0.05
  12933. }
  12934. },
  12935. back: {
  12936. height: math.unit(7 + 7 / 12, "feet"),
  12937. weight: math.unit(267, "lb"),
  12938. name: "Back",
  12939. image: {
  12940. source: "./media/characters/dayza/back.svg",
  12941. extra: 1241 / 1170
  12942. }
  12943. },
  12944. },
  12945. [
  12946. {
  12947. name: "Normal",
  12948. height: math.unit(7 + 7 / 12, "feet"),
  12949. default: true
  12950. },
  12951. {
  12952. name: "Macro",
  12953. height: math.unit(155, "feet")
  12954. },
  12955. ]
  12956. ))
  12957. characterMakers.push(() => makeCharacter(
  12958. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12959. {
  12960. front: {
  12961. height: math.unit(6 + 5 / 12, "feet"),
  12962. weight: math.unit(160, "lb"),
  12963. name: "Front",
  12964. image: {
  12965. source: "./media/characters/xanthos/front.svg",
  12966. extra: 1,
  12967. bottom: 0.04
  12968. }
  12969. },
  12970. back: {
  12971. height: math.unit(6 + 5 / 12, "feet"),
  12972. weight: math.unit(160, "lb"),
  12973. name: "Back",
  12974. image: {
  12975. source: "./media/characters/xanthos/back.svg",
  12976. extra: 1,
  12977. bottom: 0.03
  12978. }
  12979. },
  12980. hand: {
  12981. height: math.unit(0.928, "feet"),
  12982. name: "Hand",
  12983. image: {
  12984. source: "./media/characters/xanthos/hand.svg"
  12985. }
  12986. },
  12987. foot: {
  12988. height: math.unit(1.286, "feet"),
  12989. name: "Foot",
  12990. image: {
  12991. source: "./media/characters/xanthos/foot.svg"
  12992. }
  12993. },
  12994. },
  12995. [
  12996. {
  12997. name: "Normal",
  12998. height: math.unit(6 + 5 / 12, "feet"),
  12999. default: true
  13000. },
  13001. {
  13002. name: "Normal+",
  13003. height: math.unit(6, "meters")
  13004. },
  13005. {
  13006. name: "Macro",
  13007. height: math.unit(40, "feet")
  13008. },
  13009. {
  13010. name: "Macro+",
  13011. height: math.unit(200, "meters")
  13012. },
  13013. {
  13014. name: "Megamacro",
  13015. height: math.unit(20, "km")
  13016. },
  13017. {
  13018. name: "Megamacro+",
  13019. height: math.unit(100, "km")
  13020. },
  13021. {
  13022. name: "Gigamacro",
  13023. height: math.unit(200, "megameters")
  13024. },
  13025. {
  13026. name: "Gigamacro+",
  13027. height: math.unit(1.5, "gigameters")
  13028. },
  13029. ]
  13030. ))
  13031. characterMakers.push(() => makeCharacter(
  13032. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13033. {
  13034. front: {
  13035. height: math.unit(6 + 3 / 12, "feet"),
  13036. weight: math.unit(215, "lb"),
  13037. name: "Front",
  13038. image: {
  13039. source: "./media/characters/grynn/front.svg",
  13040. extra: 4627 / 4209,
  13041. bottom: 0.047
  13042. }
  13043. },
  13044. },
  13045. [
  13046. {
  13047. name: "Micro",
  13048. height: math.unit(6, "inches")
  13049. },
  13050. {
  13051. name: "Normal",
  13052. height: math.unit(6 + 3 / 12, "feet"),
  13053. default: true
  13054. },
  13055. {
  13056. name: "Big",
  13057. height: math.unit(104, "feet")
  13058. },
  13059. {
  13060. name: "Macro",
  13061. height: math.unit(944, "feet")
  13062. },
  13063. {
  13064. name: "Macro+",
  13065. height: math.unit(9480, "feet")
  13066. },
  13067. {
  13068. name: "Megamacro",
  13069. height: math.unit(78752, "feet")
  13070. },
  13071. {
  13072. name: "Megamacro+",
  13073. height: math.unit(630128, "feet")
  13074. },
  13075. {
  13076. name: "Megamacro++",
  13077. height: math.unit(3150695, "feet")
  13078. },
  13079. ]
  13080. ))
  13081. characterMakers.push(() => makeCharacter(
  13082. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13083. {
  13084. front: {
  13085. height: math.unit(7 + 5 / 12, "feet"),
  13086. weight: math.unit(450, "lb"),
  13087. name: "Front",
  13088. image: {
  13089. source: "./media/characters/mocha-aura/front.svg",
  13090. extra: 1907 / 1817,
  13091. bottom: 0.04
  13092. }
  13093. },
  13094. back: {
  13095. height: math.unit(7 + 5 / 12, "feet"),
  13096. weight: math.unit(450, "lb"),
  13097. name: "Back",
  13098. image: {
  13099. source: "./media/characters/mocha-aura/back.svg",
  13100. extra: 1900 / 1825,
  13101. bottom: 0.045
  13102. }
  13103. },
  13104. },
  13105. [
  13106. {
  13107. name: "Nano",
  13108. height: math.unit(1, "nm")
  13109. },
  13110. {
  13111. name: "Megamicro",
  13112. height: math.unit(1, "mm")
  13113. },
  13114. {
  13115. name: "Micro",
  13116. height: math.unit(3, "inches")
  13117. },
  13118. {
  13119. name: "Normal",
  13120. height: math.unit(7 + 5 / 12, "feet"),
  13121. default: true
  13122. },
  13123. {
  13124. name: "Macro",
  13125. height: math.unit(30, "feet")
  13126. },
  13127. {
  13128. name: "Megamacro",
  13129. height: math.unit(3500, "feet")
  13130. },
  13131. {
  13132. name: "Teramacro",
  13133. height: math.unit(500000, "miles")
  13134. },
  13135. {
  13136. name: "Petamacro",
  13137. height: math.unit(50000000000000000, "parsecs")
  13138. },
  13139. ]
  13140. ))
  13141. characterMakers.push(() => makeCharacter(
  13142. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13143. {
  13144. front: {
  13145. height: math.unit(6, "feet"),
  13146. weight: math.unit(150, "lb"),
  13147. name: "Front",
  13148. image: {
  13149. source: "./media/characters/ilisha-devya/front.svg",
  13150. extra: 1053/1049,
  13151. bottom: 270/1323
  13152. }
  13153. },
  13154. back: {
  13155. height: math.unit(6, "feet"),
  13156. weight: math.unit(150, "lb"),
  13157. name: "Back",
  13158. image: {
  13159. source: "./media/characters/ilisha-devya/back.svg",
  13160. extra: 1131/1128,
  13161. bottom: 39/1170
  13162. }
  13163. },
  13164. },
  13165. [
  13166. {
  13167. name: "Macro",
  13168. height: math.unit(500, "feet"),
  13169. default: true
  13170. },
  13171. {
  13172. name: "Megamacro",
  13173. height: math.unit(10, "miles")
  13174. },
  13175. {
  13176. name: "Gigamacro",
  13177. height: math.unit(100000, "miles")
  13178. },
  13179. {
  13180. name: "Examacro",
  13181. height: math.unit(1e9, "lightyears")
  13182. },
  13183. {
  13184. name: "Omniversal",
  13185. height: math.unit(1e33, "lightyears")
  13186. },
  13187. {
  13188. name: "Beyond Infinite",
  13189. height: math.unit(1e100, "lightyears")
  13190. },
  13191. ]
  13192. ))
  13193. characterMakers.push(() => makeCharacter(
  13194. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13195. {
  13196. Side: {
  13197. height: math.unit(6, "feet"),
  13198. weight: math.unit(150, "lb"),
  13199. name: "Side",
  13200. image: {
  13201. source: "./media/characters/mira/side.svg",
  13202. extra: 900 / 799,
  13203. bottom: 0.02
  13204. }
  13205. },
  13206. },
  13207. [
  13208. {
  13209. name: "Human Size",
  13210. height: math.unit(6, "feet")
  13211. },
  13212. {
  13213. name: "Macro",
  13214. height: math.unit(100, "feet"),
  13215. default: true
  13216. },
  13217. {
  13218. name: "Megamacro",
  13219. height: math.unit(10, "miles")
  13220. },
  13221. {
  13222. name: "Gigamacro",
  13223. height: math.unit(25000, "miles")
  13224. },
  13225. {
  13226. name: "Teramacro",
  13227. height: math.unit(300, "AU")
  13228. },
  13229. {
  13230. name: "Full Size",
  13231. height: math.unit(4.5e10, "lightyears")
  13232. },
  13233. ]
  13234. ))
  13235. characterMakers.push(() => makeCharacter(
  13236. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13237. {
  13238. front: {
  13239. height: math.unit(6, "feet"),
  13240. weight: math.unit(150, "lb"),
  13241. name: "Front",
  13242. image: {
  13243. source: "./media/characters/holly/front.svg",
  13244. extra: 639 / 606
  13245. }
  13246. },
  13247. back: {
  13248. height: math.unit(6, "feet"),
  13249. weight: math.unit(150, "lb"),
  13250. name: "Back",
  13251. image: {
  13252. source: "./media/characters/holly/back.svg",
  13253. extra: 623 / 598
  13254. }
  13255. },
  13256. frontWorking: {
  13257. height: math.unit(6, "feet"),
  13258. weight: math.unit(150, "lb"),
  13259. name: "Front (Working)",
  13260. image: {
  13261. source: "./media/characters/holly/front-working.svg",
  13262. extra: 607 / 577,
  13263. bottom: 0.048
  13264. }
  13265. },
  13266. },
  13267. [
  13268. {
  13269. name: "Normal",
  13270. height: math.unit(12 + 3 / 12, "feet"),
  13271. default: true
  13272. },
  13273. ]
  13274. ))
  13275. characterMakers.push(() => makeCharacter(
  13276. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13277. {
  13278. front: {
  13279. height: math.unit(6, "feet"),
  13280. weight: math.unit(150, "lb"),
  13281. name: "Front",
  13282. image: {
  13283. source: "./media/characters/porter/front.svg",
  13284. extra: 1,
  13285. bottom: 0.01
  13286. }
  13287. },
  13288. frontRobes: {
  13289. height: math.unit(6, "feet"),
  13290. weight: math.unit(150, "lb"),
  13291. name: "Front (Robes)",
  13292. image: {
  13293. source: "./media/characters/porter/front-robes.svg",
  13294. extra: 1.01,
  13295. bottom: 0.01
  13296. }
  13297. },
  13298. },
  13299. [
  13300. {
  13301. name: "Normal",
  13302. height: math.unit(11 + 9 / 12, "feet"),
  13303. default: true
  13304. },
  13305. ]
  13306. ))
  13307. characterMakers.push(() => makeCharacter(
  13308. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13309. {
  13310. legendary: {
  13311. height: math.unit(6, "feet"),
  13312. weight: math.unit(150, "lb"),
  13313. name: "Legendary",
  13314. image: {
  13315. source: "./media/characters/lucy/legendary.svg",
  13316. extra: 1355 / 1100,
  13317. bottom: 0.045
  13318. }
  13319. },
  13320. },
  13321. [
  13322. {
  13323. name: "Legendary",
  13324. height: math.unit(86882 * 2, "miles"),
  13325. default: true
  13326. },
  13327. ]
  13328. ))
  13329. characterMakers.push(() => makeCharacter(
  13330. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13331. {
  13332. front: {
  13333. height: math.unit(6, "feet"),
  13334. weight: math.unit(150, "lb"),
  13335. name: "Front",
  13336. image: {
  13337. source: "./media/characters/drusilla/front.svg",
  13338. extra: 678 / 635,
  13339. bottom: 0.03
  13340. }
  13341. },
  13342. back: {
  13343. height: math.unit(6, "feet"),
  13344. weight: math.unit(150, "lb"),
  13345. name: "Back",
  13346. image: {
  13347. source: "./media/characters/drusilla/back.svg",
  13348. extra: 678 / 635,
  13349. bottom: 0.005
  13350. }
  13351. },
  13352. },
  13353. [
  13354. {
  13355. name: "Macro",
  13356. height: math.unit(100, "feet")
  13357. },
  13358. {
  13359. name: "Canon Height",
  13360. height: math.unit(2000, "feet"),
  13361. default: true
  13362. },
  13363. ]
  13364. ))
  13365. characterMakers.push(() => makeCharacter(
  13366. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13367. {
  13368. front: {
  13369. height: math.unit(6, "feet"),
  13370. weight: math.unit(180, "lb"),
  13371. name: "Front",
  13372. image: {
  13373. source: "./media/characters/renard-thatch/front.svg",
  13374. extra: 2411 / 2275,
  13375. bottom: 0.01
  13376. }
  13377. },
  13378. frontPosing: {
  13379. height: math.unit(6, "feet"),
  13380. weight: math.unit(180, "lb"),
  13381. name: "Front (Posing)",
  13382. image: {
  13383. source: "./media/characters/renard-thatch/front-posing.svg",
  13384. extra: 2381 / 2261,
  13385. bottom: 0.01
  13386. }
  13387. },
  13388. back: {
  13389. height: math.unit(6, "feet"),
  13390. weight: math.unit(180, "lb"),
  13391. name: "Back",
  13392. image: {
  13393. source: "./media/characters/renard-thatch/back.svg",
  13394. extra: 2428 / 2288
  13395. }
  13396. },
  13397. },
  13398. [
  13399. {
  13400. name: "Micro",
  13401. height: math.unit(3, "inches")
  13402. },
  13403. {
  13404. name: "Default",
  13405. height: math.unit(6, "feet"),
  13406. default: true
  13407. },
  13408. {
  13409. name: "Macro",
  13410. height: math.unit(75, "feet")
  13411. },
  13412. ]
  13413. ))
  13414. characterMakers.push(() => makeCharacter(
  13415. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13416. {
  13417. front: {
  13418. height: math.unit(1450, "feet"),
  13419. weight: math.unit(1.21e6, "tons"),
  13420. name: "Front",
  13421. image: {
  13422. source: "./media/characters/sekvra/front.svg",
  13423. extra: 1193/1190,
  13424. bottom: 78/1271
  13425. }
  13426. },
  13427. side: {
  13428. height: math.unit(1450, "feet"),
  13429. weight: math.unit(1.21e6, "tons"),
  13430. name: "Side",
  13431. image: {
  13432. source: "./media/characters/sekvra/side.svg",
  13433. extra: 1193/1190,
  13434. bottom: 52/1245
  13435. }
  13436. },
  13437. back: {
  13438. height: math.unit(1450, "feet"),
  13439. weight: math.unit(1.21e6, "tons"),
  13440. name: "Back",
  13441. image: {
  13442. source: "./media/characters/sekvra/back.svg",
  13443. extra: 1219/1216,
  13444. bottom: 21/1240
  13445. }
  13446. },
  13447. frontClothed: {
  13448. height: math.unit(1450, "feet"),
  13449. weight: math.unit(1.21e6, "tons"),
  13450. name: "Front (Clothed)",
  13451. image: {
  13452. source: "./media/characters/sekvra/front-clothed.svg",
  13453. extra: 1192/1189,
  13454. bottom: 79/1271
  13455. }
  13456. },
  13457. },
  13458. [
  13459. {
  13460. name: "Macro",
  13461. height: math.unit(1450, "feet"),
  13462. default: true
  13463. },
  13464. {
  13465. name: "Megamacro",
  13466. height: math.unit(15000, "feet")
  13467. },
  13468. ]
  13469. ))
  13470. characterMakers.push(() => makeCharacter(
  13471. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13472. {
  13473. front: {
  13474. height: math.unit(6, "feet"),
  13475. weight: math.unit(150, "lb"),
  13476. name: "Front",
  13477. image: {
  13478. source: "./media/characters/carmine/front.svg",
  13479. extra: 1,
  13480. bottom: 0.035
  13481. }
  13482. },
  13483. frontArmor: {
  13484. height: math.unit(6, "feet"),
  13485. weight: math.unit(150, "lb"),
  13486. name: "Front (Armor)",
  13487. image: {
  13488. source: "./media/characters/carmine/front-armor.svg",
  13489. extra: 1,
  13490. bottom: 0.035
  13491. }
  13492. },
  13493. },
  13494. [
  13495. {
  13496. name: "Large",
  13497. height: math.unit(1, "mile")
  13498. },
  13499. {
  13500. name: "Huge",
  13501. height: math.unit(40, "miles"),
  13502. default: true
  13503. },
  13504. {
  13505. name: "Colossal",
  13506. height: math.unit(2500, "miles")
  13507. },
  13508. ]
  13509. ))
  13510. characterMakers.push(() => makeCharacter(
  13511. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13512. {
  13513. front: {
  13514. height: math.unit(6, "feet"),
  13515. weight: math.unit(150, "lb"),
  13516. name: "Front",
  13517. image: {
  13518. source: "./media/characters/elyssia/front.svg",
  13519. extra: 2201 / 2035,
  13520. bottom: 0.05
  13521. }
  13522. },
  13523. frontClothed: {
  13524. height: math.unit(6, "feet"),
  13525. weight: math.unit(150, "lb"),
  13526. name: "Front (Clothed)",
  13527. image: {
  13528. source: "./media/characters/elyssia/front-clothed.svg",
  13529. extra: 2201 / 2035,
  13530. bottom: 0.05
  13531. }
  13532. },
  13533. back: {
  13534. height: math.unit(6, "feet"),
  13535. weight: math.unit(150, "lb"),
  13536. name: "Back",
  13537. image: {
  13538. source: "./media/characters/elyssia/back.svg",
  13539. extra: 2201 / 2035,
  13540. bottom: 0.013
  13541. }
  13542. },
  13543. },
  13544. [
  13545. {
  13546. name: "Smaller",
  13547. height: math.unit(150, "feet")
  13548. },
  13549. {
  13550. name: "Standard",
  13551. height: math.unit(1400, "feet"),
  13552. default: true
  13553. },
  13554. {
  13555. name: "Distracted",
  13556. height: math.unit(15000, "feet")
  13557. },
  13558. ]
  13559. ))
  13560. characterMakers.push(() => makeCharacter(
  13561. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13562. {
  13563. front: {
  13564. height: math.unit(7 + 4/12, "feet"),
  13565. weight: math.unit(690, "lb"),
  13566. name: "Front",
  13567. image: {
  13568. source: "./media/characters/geno-maxwell/front.svg",
  13569. extra: 984/856,
  13570. bottom: 87/1071
  13571. }
  13572. },
  13573. back: {
  13574. height: math.unit(7 + 4/12, "feet"),
  13575. weight: math.unit(690, "lb"),
  13576. name: "Back",
  13577. image: {
  13578. source: "./media/characters/geno-maxwell/back.svg",
  13579. extra: 981/854,
  13580. bottom: 57/1038
  13581. }
  13582. },
  13583. frontCostume: {
  13584. height: math.unit(7 + 4/12, "feet"),
  13585. weight: math.unit(690, "lb"),
  13586. name: "Front (Costume)",
  13587. image: {
  13588. source: "./media/characters/geno-maxwell/front-costume.svg",
  13589. extra: 984/856,
  13590. bottom: 87/1071
  13591. }
  13592. },
  13593. backcostume: {
  13594. height: math.unit(7 + 4/12, "feet"),
  13595. weight: math.unit(690, "lb"),
  13596. name: "Back (Costume)",
  13597. image: {
  13598. source: "./media/characters/geno-maxwell/back-costume.svg",
  13599. extra: 981/854,
  13600. bottom: 57/1038
  13601. }
  13602. },
  13603. },
  13604. [
  13605. {
  13606. name: "Micro",
  13607. height: math.unit(3, "inches")
  13608. },
  13609. {
  13610. name: "Normal",
  13611. height: math.unit(7 + 4 / 12, "feet"),
  13612. default: true
  13613. },
  13614. {
  13615. name: "Macro",
  13616. height: math.unit(220, "feet")
  13617. },
  13618. {
  13619. name: "Megamacro",
  13620. height: math.unit(11, "miles")
  13621. },
  13622. ]
  13623. ))
  13624. characterMakers.push(() => makeCharacter(
  13625. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13626. {
  13627. front: {
  13628. height: math.unit(7 + 4/12, "feet"),
  13629. weight: math.unit(750, "lb"),
  13630. name: "Front",
  13631. image: {
  13632. source: "./media/characters/regena-maxwell/front.svg",
  13633. extra: 984/856,
  13634. bottom: 87/1071
  13635. }
  13636. },
  13637. back: {
  13638. height: math.unit(7 + 4/12, "feet"),
  13639. weight: math.unit(750, "lb"),
  13640. name: "Back",
  13641. image: {
  13642. source: "./media/characters/regena-maxwell/back.svg",
  13643. extra: 981/854,
  13644. bottom: 57/1038
  13645. }
  13646. },
  13647. frontCostume: {
  13648. height: math.unit(7 + 4/12, "feet"),
  13649. weight: math.unit(750, "lb"),
  13650. name: "Front (Costume)",
  13651. image: {
  13652. source: "./media/characters/regena-maxwell/front-costume.svg",
  13653. extra: 984/856,
  13654. bottom: 87/1071
  13655. }
  13656. },
  13657. backcostume: {
  13658. height: math.unit(7 + 4/12, "feet"),
  13659. weight: math.unit(750, "lb"),
  13660. name: "Back (Costume)",
  13661. image: {
  13662. source: "./media/characters/regena-maxwell/back-costume.svg",
  13663. extra: 981/854,
  13664. bottom: 57/1038
  13665. }
  13666. },
  13667. },
  13668. [
  13669. {
  13670. name: "Normal",
  13671. height: math.unit(7 + 4 / 12, "feet"),
  13672. default: true
  13673. },
  13674. {
  13675. name: "Macro",
  13676. height: math.unit(220, "feet")
  13677. },
  13678. {
  13679. name: "Megamacro",
  13680. height: math.unit(11, "miles")
  13681. },
  13682. ]
  13683. ))
  13684. characterMakers.push(() => makeCharacter(
  13685. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13686. {
  13687. front: {
  13688. height: math.unit(6, "feet"),
  13689. weight: math.unit(150, "lb"),
  13690. name: "Front",
  13691. image: {
  13692. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13693. extra: 860 / 690,
  13694. bottom: 0.03
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Normal",
  13701. height: math.unit(1.7, "meters"),
  13702. default: true
  13703. },
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13708. {
  13709. front: {
  13710. height: math.unit(6, "feet"),
  13711. weight: math.unit(150, "lb"),
  13712. name: "Front",
  13713. image: {
  13714. source: "./media/characters/quilly/front.svg",
  13715. extra: 890 / 776
  13716. }
  13717. },
  13718. },
  13719. [
  13720. {
  13721. name: "Gigamacro",
  13722. height: math.unit(404090, "miles"),
  13723. default: true
  13724. },
  13725. ]
  13726. ))
  13727. characterMakers.push(() => makeCharacter(
  13728. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13729. {
  13730. front: {
  13731. height: math.unit(7 + 8 / 12, "feet"),
  13732. weight: math.unit(350, "lb"),
  13733. name: "Front",
  13734. image: {
  13735. source: "./media/characters/tempest/front.svg",
  13736. extra: 1175 / 1086,
  13737. bottom: 0.02
  13738. }
  13739. },
  13740. },
  13741. [
  13742. {
  13743. name: "Normal",
  13744. height: math.unit(7 + 8 / 12, "feet"),
  13745. default: true
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13751. {
  13752. side: {
  13753. height: math.unit(4 + 5 / 12, "feet"),
  13754. weight: math.unit(80, "lb"),
  13755. name: "Side",
  13756. image: {
  13757. source: "./media/characters/rodger/side.svg",
  13758. extra: 1235 / 1118
  13759. }
  13760. },
  13761. },
  13762. [
  13763. {
  13764. name: "Micro",
  13765. height: math.unit(1, "inch")
  13766. },
  13767. {
  13768. name: "Normal",
  13769. height: math.unit(4 + 5 / 12, "feet"),
  13770. default: true
  13771. },
  13772. {
  13773. name: "Macro",
  13774. height: math.unit(120, "feet")
  13775. },
  13776. ]
  13777. ))
  13778. characterMakers.push(() => makeCharacter(
  13779. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13780. {
  13781. front: {
  13782. height: math.unit(6, "feet"),
  13783. weight: math.unit(150, "lb"),
  13784. name: "Front",
  13785. image: {
  13786. source: "./media/characters/danyel/front.svg",
  13787. extra: 1185 / 1123,
  13788. bottom: 0.05
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Shrunken",
  13795. height: math.unit(0.5, "mm")
  13796. },
  13797. {
  13798. name: "Micro",
  13799. height: math.unit(1, "mm"),
  13800. default: true
  13801. },
  13802. {
  13803. name: "Upsized",
  13804. height: math.unit(5 + 5 / 12, "feet")
  13805. },
  13806. ]
  13807. ))
  13808. characterMakers.push(() => makeCharacter(
  13809. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13810. {
  13811. front: {
  13812. height: math.unit(5 + 6 / 12, "feet"),
  13813. weight: math.unit(200, "lb"),
  13814. name: "Front",
  13815. image: {
  13816. source: "./media/characters/vivian-bijoux/front.svg",
  13817. extra: 1217/1209,
  13818. bottom: 76/1293
  13819. }
  13820. },
  13821. back: {
  13822. height: math.unit(5 + 6 / 12, "feet"),
  13823. weight: math.unit(200, "lb"),
  13824. name: "Back",
  13825. image: {
  13826. source: "./media/characters/vivian-bijoux/back.svg",
  13827. extra: 1214/1208,
  13828. bottom: 51/1265
  13829. }
  13830. },
  13831. dressed: {
  13832. height: math.unit(5 + 6 / 12, "feet"),
  13833. weight: math.unit(200, "lb"),
  13834. name: "Dressed",
  13835. image: {
  13836. source: "./media/characters/vivian-bijoux/dressed.svg",
  13837. extra: 1217/1209,
  13838. bottom: 76/1293
  13839. }
  13840. },
  13841. },
  13842. [
  13843. {
  13844. name: "Normal",
  13845. height: math.unit(5 + 6 / 12, "feet"),
  13846. default: true
  13847. },
  13848. {
  13849. name: "Bad Dream",
  13850. height: math.unit(500, "feet")
  13851. },
  13852. {
  13853. name: "Nightmare",
  13854. height: math.unit(500, "miles")
  13855. },
  13856. ]
  13857. ))
  13858. characterMakers.push(() => makeCharacter(
  13859. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13860. {
  13861. front: {
  13862. height: math.unit(6 + 1 / 12, "feet"),
  13863. weight: math.unit(260, "lb"),
  13864. name: "Front",
  13865. image: {
  13866. source: "./media/characters/zeta/front.svg",
  13867. extra: 1968 / 1889,
  13868. bottom: 0.06
  13869. }
  13870. },
  13871. back: {
  13872. height: math.unit(6 + 1 / 12, "feet"),
  13873. weight: math.unit(260, "lb"),
  13874. name: "Back",
  13875. image: {
  13876. source: "./media/characters/zeta/back.svg",
  13877. extra: 1944 / 1858,
  13878. bottom: 0.03
  13879. }
  13880. },
  13881. hand: {
  13882. height: math.unit(1.112, "feet"),
  13883. name: "Hand",
  13884. image: {
  13885. source: "./media/characters/zeta/hand.svg"
  13886. }
  13887. },
  13888. foot: {
  13889. height: math.unit(1.48, "feet"),
  13890. name: "Foot",
  13891. image: {
  13892. source: "./media/characters/zeta/foot.svg"
  13893. }
  13894. },
  13895. },
  13896. [
  13897. {
  13898. name: "Micro",
  13899. height: math.unit(6, "inches")
  13900. },
  13901. {
  13902. name: "Normal",
  13903. height: math.unit(6 + 1 / 12, "feet"),
  13904. default: true
  13905. },
  13906. {
  13907. name: "Macro",
  13908. height: math.unit(20, "feet")
  13909. },
  13910. ]
  13911. ))
  13912. characterMakers.push(() => makeCharacter(
  13913. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13914. {
  13915. front: {
  13916. height: math.unit(6, "feet"),
  13917. weight: math.unit(150, "lb"),
  13918. name: "Front",
  13919. image: {
  13920. source: "./media/characters/jamie-larsen/front.svg",
  13921. extra: 962 / 933,
  13922. bottom: 0.02
  13923. }
  13924. },
  13925. back: {
  13926. height: math.unit(6, "feet"),
  13927. weight: math.unit(150, "lb"),
  13928. name: "Back",
  13929. image: {
  13930. source: "./media/characters/jamie-larsen/back.svg",
  13931. extra: 997 / 946
  13932. }
  13933. },
  13934. },
  13935. [
  13936. {
  13937. name: "Macro",
  13938. height: math.unit(28 + 7 / 12, "feet"),
  13939. default: true
  13940. },
  13941. {
  13942. name: "Macro+",
  13943. height: math.unit(180, "feet")
  13944. },
  13945. {
  13946. name: "Megamacro",
  13947. height: math.unit(10, "miles")
  13948. },
  13949. {
  13950. name: "Gigamacro",
  13951. height: math.unit(200000, "miles")
  13952. },
  13953. ]
  13954. ))
  13955. characterMakers.push(() => makeCharacter(
  13956. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13957. {
  13958. front: {
  13959. height: math.unit(6, "feet"),
  13960. weight: math.unit(120, "lb"),
  13961. name: "Front",
  13962. image: {
  13963. source: "./media/characters/vance/front.svg",
  13964. extra: 1980 / 1890,
  13965. bottom: 0.09
  13966. }
  13967. },
  13968. back: {
  13969. height: math.unit(6, "feet"),
  13970. weight: math.unit(120, "lb"),
  13971. name: "Back",
  13972. image: {
  13973. source: "./media/characters/vance/back.svg",
  13974. extra: 2081 / 1994,
  13975. bottom: 0.014
  13976. }
  13977. },
  13978. hand: {
  13979. height: math.unit(0.88, "feet"),
  13980. name: "Hand",
  13981. image: {
  13982. source: "./media/characters/vance/hand.svg"
  13983. }
  13984. },
  13985. foot: {
  13986. height: math.unit(0.64, "feet"),
  13987. name: "Foot",
  13988. image: {
  13989. source: "./media/characters/vance/foot.svg"
  13990. }
  13991. },
  13992. },
  13993. [
  13994. {
  13995. name: "Small",
  13996. height: math.unit(90, "feet"),
  13997. default: true
  13998. },
  13999. {
  14000. name: "Macro",
  14001. height: math.unit(100, "meters")
  14002. },
  14003. {
  14004. name: "Megamacro",
  14005. height: math.unit(15, "miles")
  14006. },
  14007. ]
  14008. ))
  14009. characterMakers.push(() => makeCharacter(
  14010. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14011. {
  14012. front: {
  14013. height: math.unit(6, "feet"),
  14014. weight: math.unit(180, "lb"),
  14015. name: "Front",
  14016. image: {
  14017. source: "./media/characters/xochitl/front.svg",
  14018. extra: 2297 / 2261,
  14019. bottom: 0.065
  14020. }
  14021. },
  14022. back: {
  14023. height: math.unit(6, "feet"),
  14024. weight: math.unit(180, "lb"),
  14025. name: "Back",
  14026. image: {
  14027. source: "./media/characters/xochitl/back.svg",
  14028. extra: 2386 / 2354,
  14029. bottom: 0.01
  14030. }
  14031. },
  14032. foot: {
  14033. height: math.unit(6 / 5 * 1.15, "feet"),
  14034. weight: math.unit(150, "lb"),
  14035. name: "Foot",
  14036. image: {
  14037. source: "./media/characters/xochitl/foot.svg"
  14038. }
  14039. },
  14040. },
  14041. [
  14042. {
  14043. name: "Macro",
  14044. height: math.unit(80, "feet")
  14045. },
  14046. {
  14047. name: "Macro+",
  14048. height: math.unit(400, "feet"),
  14049. default: true
  14050. },
  14051. {
  14052. name: "Gigamacro",
  14053. height: math.unit(80000, "miles")
  14054. },
  14055. {
  14056. name: "Gigamacro+",
  14057. height: math.unit(400000, "miles")
  14058. },
  14059. {
  14060. name: "Teramacro",
  14061. height: math.unit(300, "AU")
  14062. },
  14063. ]
  14064. ))
  14065. characterMakers.push(() => makeCharacter(
  14066. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14067. {
  14068. front: {
  14069. height: math.unit(6, "feet"),
  14070. weight: math.unit(150, "lb"),
  14071. name: "Front",
  14072. image: {
  14073. source: "./media/characters/vincent/front.svg",
  14074. extra: 1130 / 1080,
  14075. bottom: 0.055
  14076. }
  14077. },
  14078. beak: {
  14079. height: math.unit(6 * 0.1, "feet"),
  14080. name: "Beak",
  14081. image: {
  14082. source: "./media/characters/vincent/beak.svg"
  14083. }
  14084. },
  14085. hand: {
  14086. height: math.unit(6 * 0.85, "feet"),
  14087. weight: math.unit(150, "lb"),
  14088. name: "Hand",
  14089. image: {
  14090. source: "./media/characters/vincent/hand.svg"
  14091. }
  14092. },
  14093. foot: {
  14094. height: math.unit(6 * 0.19, "feet"),
  14095. weight: math.unit(150, "lb"),
  14096. name: "Foot",
  14097. image: {
  14098. source: "./media/characters/vincent/foot.svg"
  14099. }
  14100. },
  14101. },
  14102. [
  14103. {
  14104. name: "Base",
  14105. height: math.unit(6 + 5 / 12, "feet"),
  14106. default: true
  14107. },
  14108. {
  14109. name: "Macro",
  14110. height: math.unit(300, "feet")
  14111. },
  14112. {
  14113. name: "Megamacro",
  14114. height: math.unit(2, "miles")
  14115. },
  14116. {
  14117. name: "Gigamacro",
  14118. height: math.unit(1000, "miles")
  14119. },
  14120. ]
  14121. ))
  14122. characterMakers.push(() => makeCharacter(
  14123. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14124. {
  14125. front: {
  14126. height: math.unit(2, "meters"),
  14127. weight: math.unit(500, "kg"),
  14128. name: "Front",
  14129. image: {
  14130. source: "./media/characters/coatl/front.svg",
  14131. extra: 3948 / 3500,
  14132. bottom: 0.082
  14133. }
  14134. },
  14135. },
  14136. [
  14137. {
  14138. name: "Normal",
  14139. height: math.unit(4, "meters")
  14140. },
  14141. {
  14142. name: "Macro",
  14143. height: math.unit(100, "meters"),
  14144. default: true
  14145. },
  14146. {
  14147. name: "Macro+",
  14148. height: math.unit(300, "meters")
  14149. },
  14150. {
  14151. name: "Megamacro",
  14152. height: math.unit(3, "gigameters")
  14153. },
  14154. {
  14155. name: "Megamacro+",
  14156. height: math.unit(300, "terameters")
  14157. },
  14158. {
  14159. name: "Megamacro++",
  14160. height: math.unit(3, "lightyears")
  14161. },
  14162. ]
  14163. ))
  14164. characterMakers.push(() => makeCharacter(
  14165. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14166. {
  14167. front: {
  14168. height: math.unit(6, "feet"),
  14169. weight: math.unit(50, "kg"),
  14170. name: "front",
  14171. image: {
  14172. source: "./media/characters/shiroryu/front.svg",
  14173. extra: 1990 / 1935
  14174. }
  14175. },
  14176. },
  14177. [
  14178. {
  14179. name: "Mortal Mingling",
  14180. height: math.unit(3, "meters")
  14181. },
  14182. {
  14183. name: "Kaiju-ish",
  14184. height: math.unit(250, "meters")
  14185. },
  14186. {
  14187. name: "Somewhat Godly",
  14188. height: math.unit(400, "km"),
  14189. default: true
  14190. },
  14191. {
  14192. name: "Planetary",
  14193. height: math.unit(300, "megameters")
  14194. },
  14195. {
  14196. name: "Galaxy-dwarfing",
  14197. height: math.unit(450, "kiloparsecs")
  14198. },
  14199. {
  14200. name: "Universe Eater",
  14201. height: math.unit(150, "gigaparsecs")
  14202. },
  14203. {
  14204. name: "Almost Immeasurable",
  14205. height: math.unit(1.3e266, "yottaparsecs")
  14206. },
  14207. ]
  14208. ))
  14209. characterMakers.push(() => makeCharacter(
  14210. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14211. {
  14212. front: {
  14213. height: math.unit(6, "feet"),
  14214. weight: math.unit(150, "lb"),
  14215. name: "Front",
  14216. image: {
  14217. source: "./media/characters/umeko/front.svg",
  14218. extra: 1,
  14219. bottom: 0.019
  14220. }
  14221. },
  14222. frontArmored: {
  14223. height: math.unit(6, "feet"),
  14224. weight: math.unit(150, "lb"),
  14225. name: "Front (Armored)",
  14226. image: {
  14227. source: "./media/characters/umeko/front-armored.svg",
  14228. extra: 1,
  14229. bottom: 0.021
  14230. }
  14231. },
  14232. },
  14233. [
  14234. {
  14235. name: "Macro",
  14236. height: math.unit(220, "feet"),
  14237. default: true
  14238. },
  14239. {
  14240. name: "Guardian Dragon",
  14241. height: math.unit(50, "miles")
  14242. },
  14243. {
  14244. name: "Cosmic",
  14245. height: math.unit(800000, "miles")
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14251. {
  14252. front: {
  14253. height: math.unit(6, "feet"),
  14254. weight: math.unit(150, "lb"),
  14255. name: "Front",
  14256. image: {
  14257. source: "./media/characters/cassidy/front.svg",
  14258. extra: 810/808,
  14259. bottom: 41/851
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Canon Height",
  14266. height: math.unit(120, "feet"),
  14267. default: true
  14268. },
  14269. {
  14270. name: "Macro+",
  14271. height: math.unit(400, "feet")
  14272. },
  14273. {
  14274. name: "Macro++",
  14275. height: math.unit(4000, "feet")
  14276. },
  14277. {
  14278. name: "Megamacro",
  14279. height: math.unit(3, "miles")
  14280. },
  14281. ]
  14282. ))
  14283. characterMakers.push(() => makeCharacter(
  14284. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14285. {
  14286. front: {
  14287. height: math.unit(6, "feet"),
  14288. weight: math.unit(150, "lb"),
  14289. name: "Front",
  14290. image: {
  14291. source: "./media/characters/isaac/front.svg",
  14292. extra: 896 / 815,
  14293. bottom: 0.11
  14294. }
  14295. },
  14296. },
  14297. [
  14298. {
  14299. name: "Human Size",
  14300. height: math.unit(8, "feet"),
  14301. default: true
  14302. },
  14303. {
  14304. name: "Macro",
  14305. height: math.unit(400, "feet")
  14306. },
  14307. {
  14308. name: "Megamacro",
  14309. height: math.unit(50, "miles")
  14310. },
  14311. {
  14312. name: "Canon Height",
  14313. height: math.unit(200, "AU")
  14314. },
  14315. ]
  14316. ))
  14317. characterMakers.push(() => makeCharacter(
  14318. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14319. {
  14320. front: {
  14321. height: math.unit(6, "feet"),
  14322. weight: math.unit(72, "kg"),
  14323. name: "Front",
  14324. image: {
  14325. source: "./media/characters/sleekit/front.svg",
  14326. extra: 4693 / 4487,
  14327. bottom: 0.012
  14328. }
  14329. },
  14330. },
  14331. [
  14332. {
  14333. name: "Minimum Height",
  14334. height: math.unit(10, "meters")
  14335. },
  14336. {
  14337. name: "Smaller",
  14338. height: math.unit(25, "meters")
  14339. },
  14340. {
  14341. name: "Larger",
  14342. height: math.unit(38, "meters"),
  14343. default: true
  14344. },
  14345. {
  14346. name: "Maximum height",
  14347. height: math.unit(100, "meters")
  14348. },
  14349. ]
  14350. ))
  14351. characterMakers.push(() => makeCharacter(
  14352. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14353. {
  14354. front: {
  14355. height: math.unit(6, "feet"),
  14356. weight: math.unit(150, "lb"),
  14357. name: "Front",
  14358. image: {
  14359. source: "./media/characters/nillia/front.svg",
  14360. extra: 2195 / 2037,
  14361. bottom: 0.005
  14362. }
  14363. },
  14364. back: {
  14365. height: math.unit(6, "feet"),
  14366. weight: math.unit(150, "lb"),
  14367. name: "Back",
  14368. image: {
  14369. source: "./media/characters/nillia/back.svg",
  14370. extra: 2195 / 2037,
  14371. bottom: 0.005
  14372. }
  14373. },
  14374. },
  14375. [
  14376. {
  14377. name: "Canon Height",
  14378. height: math.unit(489, "feet"),
  14379. default: true
  14380. }
  14381. ]
  14382. ))
  14383. characterMakers.push(() => makeCharacter(
  14384. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14385. {
  14386. front: {
  14387. height: math.unit(6, "feet"),
  14388. weight: math.unit(150, "lb"),
  14389. name: "Front",
  14390. image: {
  14391. source: "./media/characters/mesmyriza/front.svg",
  14392. extra: 2067 / 1784,
  14393. bottom: 0.035
  14394. }
  14395. },
  14396. foot: {
  14397. height: math.unit(6 / (250 / 35), "feet"),
  14398. name: "Foot",
  14399. image: {
  14400. source: "./media/characters/mesmyriza/foot.svg"
  14401. }
  14402. },
  14403. },
  14404. [
  14405. {
  14406. name: "Macro",
  14407. height: math.unit(457, "meters"),
  14408. default: true
  14409. },
  14410. {
  14411. name: "Megamacro",
  14412. height: math.unit(8, "megameters")
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14418. {
  14419. front: {
  14420. height: math.unit(6, "feet"),
  14421. weight: math.unit(250, "lb"),
  14422. name: "Front",
  14423. image: {
  14424. source: "./media/characters/saudade/front.svg",
  14425. extra: 1172 / 1139,
  14426. bottom: 0.035
  14427. }
  14428. },
  14429. },
  14430. [
  14431. {
  14432. name: "Micro",
  14433. height: math.unit(3, "inches")
  14434. },
  14435. {
  14436. name: "Normal",
  14437. height: math.unit(6, "feet"),
  14438. default: true
  14439. },
  14440. {
  14441. name: "Macro",
  14442. height: math.unit(50, "feet")
  14443. },
  14444. {
  14445. name: "Megamacro",
  14446. height: math.unit(2800, "feet")
  14447. },
  14448. ]
  14449. ))
  14450. characterMakers.push(() => makeCharacter(
  14451. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14452. {
  14453. front: {
  14454. height: math.unit(5 + 4 / 12, "feet"),
  14455. weight: math.unit(100, "lb"),
  14456. name: "Front",
  14457. image: {
  14458. source: "./media/characters/keireer/front.svg",
  14459. extra: 716 / 666,
  14460. bottom: 0.05
  14461. }
  14462. },
  14463. },
  14464. [
  14465. {
  14466. name: "Normal",
  14467. height: math.unit(5 + 4 / 12, "feet"),
  14468. default: true
  14469. },
  14470. ]
  14471. ))
  14472. characterMakers.push(() => makeCharacter(
  14473. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14474. {
  14475. front: {
  14476. height: math.unit(6, "feet"),
  14477. weight: math.unit(90, "kg"),
  14478. name: "Front",
  14479. image: {
  14480. source: "./media/characters/mirja/front.svg",
  14481. extra: 1789 / 1683,
  14482. bottom: 0.05
  14483. }
  14484. },
  14485. frontDressed: {
  14486. height: math.unit(6, "feet"),
  14487. weight: math.unit(90, "lb"),
  14488. name: "Front (Dressed)",
  14489. image: {
  14490. source: "./media/characters/mirja/front-dressed.svg",
  14491. extra: 1789 / 1683,
  14492. bottom: 0.05
  14493. }
  14494. },
  14495. back: {
  14496. height: math.unit(6, "feet"),
  14497. weight: math.unit(90, "lb"),
  14498. name: "Back",
  14499. image: {
  14500. source: "./media/characters/mirja/back.svg",
  14501. extra: 953 / 917,
  14502. bottom: 0.017
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "\"Incognito\"",
  14509. height: math.unit(3, "meters")
  14510. },
  14511. {
  14512. name: "Strolling Size",
  14513. height: math.unit(15, "km")
  14514. },
  14515. {
  14516. name: "Larger Strolling Size",
  14517. height: math.unit(400, "km")
  14518. },
  14519. {
  14520. name: "Preferred Size",
  14521. height: math.unit(5000, "km")
  14522. },
  14523. {
  14524. name: "True Size",
  14525. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14526. default: true
  14527. },
  14528. ]
  14529. ))
  14530. characterMakers.push(() => makeCharacter(
  14531. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14532. {
  14533. front: {
  14534. height: math.unit(15, "feet"),
  14535. weight: math.unit(880, "kg"),
  14536. name: "Front",
  14537. image: {
  14538. source: "./media/characters/nightraver/front.svg",
  14539. extra: 2444 / 2160,
  14540. bottom: 0.027
  14541. }
  14542. },
  14543. back: {
  14544. height: math.unit(15, "feet"),
  14545. weight: math.unit(880, "kg"),
  14546. name: "Back",
  14547. image: {
  14548. source: "./media/characters/nightraver/back.svg",
  14549. extra: 2309 / 2180,
  14550. bottom: 0.005
  14551. }
  14552. },
  14553. sole: {
  14554. height: math.unit(2.878, "feet"),
  14555. name: "Sole",
  14556. image: {
  14557. source: "./media/characters/nightraver/sole.svg"
  14558. }
  14559. },
  14560. foot: {
  14561. height: math.unit(2.285, "feet"),
  14562. name: "Foot",
  14563. image: {
  14564. source: "./media/characters/nightraver/foot.svg"
  14565. }
  14566. },
  14567. maw: {
  14568. height: math.unit(2.67, "feet"),
  14569. name: "Maw",
  14570. image: {
  14571. source: "./media/characters/nightraver/maw.svg"
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "Micro",
  14578. height: math.unit(1, "cm")
  14579. },
  14580. {
  14581. name: "Normal",
  14582. height: math.unit(15, "feet"),
  14583. default: true
  14584. },
  14585. {
  14586. name: "Macro",
  14587. height: math.unit(300, "feet")
  14588. },
  14589. {
  14590. name: "Megamacro",
  14591. height: math.unit(300, "miles")
  14592. },
  14593. {
  14594. name: "Gigamacro",
  14595. height: math.unit(10000, "miles")
  14596. },
  14597. ]
  14598. ))
  14599. characterMakers.push(() => makeCharacter(
  14600. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14601. {
  14602. side: {
  14603. height: math.unit(2, "inches"),
  14604. weight: math.unit(5, "grams"),
  14605. name: "Side",
  14606. image: {
  14607. source: "./media/characters/arc/side.svg"
  14608. }
  14609. },
  14610. },
  14611. [
  14612. {
  14613. name: "Micro",
  14614. height: math.unit(2, "inches"),
  14615. default: true
  14616. },
  14617. ]
  14618. ))
  14619. characterMakers.push(() => makeCharacter(
  14620. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14621. {
  14622. front: {
  14623. height: math.unit(1.1938, "meters"),
  14624. weight: math.unit(54, "kg"),
  14625. name: "Front",
  14626. image: {
  14627. source: "./media/characters/nebula-shahar/front.svg",
  14628. extra: 1642 / 1436,
  14629. bottom: 0.06
  14630. }
  14631. },
  14632. },
  14633. [
  14634. {
  14635. name: "Megamicro",
  14636. height: math.unit(0.3, "mm")
  14637. },
  14638. {
  14639. name: "Micro",
  14640. height: math.unit(3, "cm")
  14641. },
  14642. {
  14643. name: "Normal",
  14644. height: math.unit(138, "cm"),
  14645. default: true
  14646. },
  14647. {
  14648. name: "Macro",
  14649. height: math.unit(30, "m")
  14650. },
  14651. ]
  14652. ))
  14653. characterMakers.push(() => makeCharacter(
  14654. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14655. {
  14656. front: {
  14657. height: math.unit(5.24, "feet"),
  14658. weight: math.unit(150, "lb"),
  14659. name: "Front",
  14660. image: {
  14661. source: "./media/characters/shayla/front.svg",
  14662. extra: 1512 / 1414,
  14663. bottom: 0.01
  14664. }
  14665. },
  14666. back: {
  14667. height: math.unit(5.24, "feet"),
  14668. weight: math.unit(150, "lb"),
  14669. name: "Back",
  14670. image: {
  14671. source: "./media/characters/shayla/back.svg",
  14672. extra: 1512 / 1414
  14673. }
  14674. },
  14675. hand: {
  14676. height: math.unit(0.7781496062992126, "feet"),
  14677. name: "Hand",
  14678. image: {
  14679. source: "./media/characters/shayla/hand.svg"
  14680. }
  14681. },
  14682. foot: {
  14683. height: math.unit(1.4206036745406823, "feet"),
  14684. name: "Foot",
  14685. image: {
  14686. source: "./media/characters/shayla/foot.svg"
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Micro",
  14693. height: math.unit(0.32, "feet")
  14694. },
  14695. {
  14696. name: "Normal",
  14697. height: math.unit(5.24, "feet"),
  14698. default: true
  14699. },
  14700. {
  14701. name: "Macro",
  14702. height: math.unit(492.12, "feet")
  14703. },
  14704. {
  14705. name: "Megamacro",
  14706. height: math.unit(186.41, "miles")
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(2.2, "m"),
  14715. weight: math.unit(120, "kg"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/pia-jr/front.svg",
  14719. extra: 1000 / 970,
  14720. bottom: 0.035
  14721. }
  14722. },
  14723. hand: {
  14724. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14725. name: "Hand",
  14726. image: {
  14727. source: "./media/characters/pia-jr/hand.svg"
  14728. }
  14729. },
  14730. paw: {
  14731. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14732. name: "Paw",
  14733. image: {
  14734. source: "./media/characters/pia-jr/paw.svg"
  14735. }
  14736. },
  14737. },
  14738. [
  14739. {
  14740. name: "Micro",
  14741. height: math.unit(1.2, "cm")
  14742. },
  14743. {
  14744. name: "Normal",
  14745. height: math.unit(2.2, "m"),
  14746. default: true
  14747. },
  14748. {
  14749. name: "Macro",
  14750. height: math.unit(180, "m")
  14751. },
  14752. {
  14753. name: "Megamacro",
  14754. height: math.unit(420, "km")
  14755. },
  14756. ]
  14757. ))
  14758. characterMakers.push(() => makeCharacter(
  14759. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14760. {
  14761. front: {
  14762. height: math.unit(2, "m"),
  14763. weight: math.unit(115, "kg"),
  14764. name: "Front",
  14765. image: {
  14766. source: "./media/characters/pia-sr/front.svg",
  14767. extra: 760 / 730,
  14768. bottom: 0.015
  14769. }
  14770. },
  14771. back: {
  14772. height: math.unit(2, "m"),
  14773. weight: math.unit(115, "kg"),
  14774. name: "Back",
  14775. image: {
  14776. source: "./media/characters/pia-sr/back.svg",
  14777. extra: 760 / 730,
  14778. bottom: 0.01
  14779. }
  14780. },
  14781. hand: {
  14782. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14783. name: "Hand",
  14784. image: {
  14785. source: "./media/characters/pia-sr/hand.svg"
  14786. }
  14787. },
  14788. foot: {
  14789. height: math.unit(1.83, "feet"),
  14790. name: "Foot",
  14791. image: {
  14792. source: "./media/characters/pia-sr/foot.svg"
  14793. }
  14794. },
  14795. },
  14796. [
  14797. {
  14798. name: "Micro",
  14799. height: math.unit(88, "mm")
  14800. },
  14801. {
  14802. name: "Normal",
  14803. height: math.unit(2, "m"),
  14804. default: true
  14805. },
  14806. {
  14807. name: "Macro",
  14808. height: math.unit(200, "m")
  14809. },
  14810. {
  14811. name: "Megamacro",
  14812. height: math.unit(420, "km")
  14813. },
  14814. ]
  14815. ))
  14816. characterMakers.push(() => makeCharacter(
  14817. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14818. {
  14819. front: {
  14820. height: math.unit(8 + 2 / 12, "feet"),
  14821. weight: math.unit(300, "lb"),
  14822. name: "Front",
  14823. image: {
  14824. source: "./media/characters/kibibyte/front.svg",
  14825. extra: 2221 / 2098,
  14826. bottom: 0.04
  14827. }
  14828. },
  14829. },
  14830. [
  14831. {
  14832. name: "Normal",
  14833. height: math.unit(8 + 2 / 12, "feet"),
  14834. default: true
  14835. },
  14836. {
  14837. name: "Socialable Macro",
  14838. height: math.unit(50, "feet")
  14839. },
  14840. {
  14841. name: "Macro",
  14842. height: math.unit(300, "feet")
  14843. },
  14844. {
  14845. name: "Megamacro",
  14846. height: math.unit(500, "miles")
  14847. },
  14848. ]
  14849. ))
  14850. characterMakers.push(() => makeCharacter(
  14851. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14852. {
  14853. front: {
  14854. height: math.unit(6, "feet"),
  14855. weight: math.unit(150, "lb"),
  14856. name: "Front",
  14857. image: {
  14858. source: "./media/characters/felix/front.svg",
  14859. extra: 762 / 722,
  14860. bottom: 0.02
  14861. }
  14862. },
  14863. frontClothed: {
  14864. height: math.unit(6, "feet"),
  14865. weight: math.unit(150, "lb"),
  14866. name: "Front (Clothed)",
  14867. image: {
  14868. source: "./media/characters/felix/front-clothed.svg",
  14869. extra: 762 / 722,
  14870. bottom: 0.02
  14871. }
  14872. },
  14873. },
  14874. [
  14875. {
  14876. name: "Normal",
  14877. height: math.unit(6 + 8 / 12, "feet"),
  14878. default: true
  14879. },
  14880. {
  14881. name: "Macro",
  14882. height: math.unit(2600, "feet")
  14883. },
  14884. {
  14885. name: "Megamacro",
  14886. height: math.unit(450, "miles")
  14887. },
  14888. ]
  14889. ))
  14890. characterMakers.push(() => makeCharacter(
  14891. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14892. {
  14893. front: {
  14894. height: math.unit(6 + 1 / 12, "feet"),
  14895. weight: math.unit(250, "lb"),
  14896. name: "Front",
  14897. image: {
  14898. source: "./media/characters/tobo/front.svg",
  14899. extra: 608 / 586,
  14900. bottom: 0.023
  14901. }
  14902. },
  14903. back: {
  14904. height: math.unit(6 + 1 / 12, "feet"),
  14905. weight: math.unit(250, "lb"),
  14906. name: "Back",
  14907. image: {
  14908. source: "./media/characters/tobo/back.svg",
  14909. extra: 608 / 586
  14910. }
  14911. },
  14912. },
  14913. [
  14914. {
  14915. name: "Nano",
  14916. height: math.unit(2, "nm")
  14917. },
  14918. {
  14919. name: "Megamicro",
  14920. height: math.unit(0.1, "mm")
  14921. },
  14922. {
  14923. name: "Micro",
  14924. height: math.unit(1, "inch"),
  14925. default: true
  14926. },
  14927. {
  14928. name: "Human-sized",
  14929. height: math.unit(6 + 1 / 12, "feet")
  14930. },
  14931. {
  14932. name: "Macro",
  14933. height: math.unit(250, "feet")
  14934. },
  14935. {
  14936. name: "Megamacro",
  14937. height: math.unit(75, "miles")
  14938. },
  14939. {
  14940. name: "Texas-sized",
  14941. height: math.unit(750, "miles")
  14942. },
  14943. {
  14944. name: "Teramacro",
  14945. height: math.unit(50000, "miles")
  14946. },
  14947. ]
  14948. ))
  14949. characterMakers.push(() => makeCharacter(
  14950. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14951. {
  14952. front: {
  14953. height: math.unit(6, "feet"),
  14954. weight: math.unit(269, "lb"),
  14955. name: "Front",
  14956. image: {
  14957. source: "./media/characters/danny-kapowsky/front.svg",
  14958. extra: 766 / 736,
  14959. bottom: 0.044
  14960. }
  14961. },
  14962. back: {
  14963. height: math.unit(6, "feet"),
  14964. weight: math.unit(269, "lb"),
  14965. name: "Back",
  14966. image: {
  14967. source: "./media/characters/danny-kapowsky/back.svg",
  14968. extra: 797 / 760,
  14969. bottom: 0.025
  14970. }
  14971. },
  14972. },
  14973. [
  14974. {
  14975. name: "Macro",
  14976. height: math.unit(150, "feet"),
  14977. default: true
  14978. },
  14979. {
  14980. name: "Macro+",
  14981. height: math.unit(200, "feet")
  14982. },
  14983. {
  14984. name: "Macro++",
  14985. height: math.unit(300, "feet")
  14986. },
  14987. {
  14988. name: "Macro+++",
  14989. height: math.unit(400, "feet")
  14990. },
  14991. ]
  14992. ))
  14993. characterMakers.push(() => makeCharacter(
  14994. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14995. {
  14996. side: {
  14997. height: math.unit(6, "feet"),
  14998. weight: math.unit(170, "lb"),
  14999. name: "Side",
  15000. image: {
  15001. source: "./media/characters/finn/side.svg",
  15002. extra: 1953 / 1807,
  15003. bottom: 0.057
  15004. }
  15005. },
  15006. },
  15007. [
  15008. {
  15009. name: "Megamacro",
  15010. height: math.unit(14445, "feet"),
  15011. default: true
  15012. },
  15013. ]
  15014. ))
  15015. characterMakers.push(() => makeCharacter(
  15016. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15017. {
  15018. front: {
  15019. height: math.unit(5 + 6 / 12, "feet"),
  15020. weight: math.unit(125, "lb"),
  15021. name: "Front",
  15022. image: {
  15023. source: "./media/characters/roy/front.svg",
  15024. extra: 1,
  15025. bottom: 0.11
  15026. }
  15027. },
  15028. },
  15029. [
  15030. {
  15031. name: "Micro",
  15032. height: math.unit(3, "inches"),
  15033. default: true
  15034. },
  15035. {
  15036. name: "Normal",
  15037. height: math.unit(5 + 6 / 12, "feet")
  15038. },
  15039. {
  15040. name: "Lesser Macro",
  15041. height: math.unit(60, "feet")
  15042. },
  15043. {
  15044. name: "Greater Macro",
  15045. height: math.unit(120, "feet")
  15046. },
  15047. ]
  15048. ))
  15049. characterMakers.push(() => makeCharacter(
  15050. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15051. {
  15052. front: {
  15053. height: math.unit(6, "feet"),
  15054. weight: math.unit(100, "lb"),
  15055. name: "Front",
  15056. image: {
  15057. source: "./media/characters/aevsivs/front.svg",
  15058. extra: 1,
  15059. bottom: 0.03
  15060. }
  15061. },
  15062. back: {
  15063. height: math.unit(6, "feet"),
  15064. weight: math.unit(100, "lb"),
  15065. name: "Back",
  15066. image: {
  15067. source: "./media/characters/aevsivs/back.svg"
  15068. }
  15069. },
  15070. },
  15071. [
  15072. {
  15073. name: "Micro",
  15074. height: math.unit(2, "inches"),
  15075. default: true
  15076. },
  15077. {
  15078. name: "Normal",
  15079. height: math.unit(5, "feet")
  15080. },
  15081. ]
  15082. ))
  15083. characterMakers.push(() => makeCharacter(
  15084. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15085. {
  15086. front: {
  15087. height: math.unit(5 + 7 / 12, "feet"),
  15088. weight: math.unit(159, "lb"),
  15089. name: "Front",
  15090. image: {
  15091. source: "./media/characters/hildegard/front.svg",
  15092. extra: 289 / 269,
  15093. bottom: 7.63 / 297.8
  15094. }
  15095. },
  15096. back: {
  15097. height: math.unit(5 + 7 / 12, "feet"),
  15098. weight: math.unit(159, "lb"),
  15099. name: "Back",
  15100. image: {
  15101. source: "./media/characters/hildegard/back.svg",
  15102. extra: 280 / 260,
  15103. bottom: 2.3 / 282
  15104. }
  15105. },
  15106. },
  15107. [
  15108. {
  15109. name: "Normal",
  15110. height: math.unit(5 + 7 / 12, "feet"),
  15111. default: true
  15112. },
  15113. ]
  15114. ))
  15115. characterMakers.push(() => makeCharacter(
  15116. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15117. {
  15118. bernard: {
  15119. height: math.unit(2 + 7 / 12, "feet"),
  15120. weight: math.unit(66, "lb"),
  15121. name: "Bernard",
  15122. rename: true,
  15123. image: {
  15124. source: "./media/characters/bernard-wilder/bernard.svg",
  15125. extra: 192 / 128,
  15126. bottom: 0.05
  15127. }
  15128. },
  15129. wilder: {
  15130. height: math.unit(5 + 8 / 12, "feet"),
  15131. weight: math.unit(143, "lb"),
  15132. name: "Wilder",
  15133. rename: true,
  15134. image: {
  15135. source: "./media/characters/bernard-wilder/wilder.svg",
  15136. extra: 361 / 312,
  15137. bottom: 0.02
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Normal",
  15144. height: math.unit(2 + 7 / 12, "feet"),
  15145. default: true
  15146. },
  15147. ]
  15148. ))
  15149. characterMakers.push(() => makeCharacter(
  15150. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15151. {
  15152. anthro: {
  15153. height: math.unit(6 + 1 / 12, "feet"),
  15154. weight: math.unit(155, "lb"),
  15155. name: "Anthro",
  15156. image: {
  15157. source: "./media/characters/hearth/anthro.svg",
  15158. extra: 1178/1136,
  15159. bottom: 28/1206
  15160. }
  15161. },
  15162. feral: {
  15163. height: math.unit(3.78, "feet"),
  15164. weight: math.unit(35, "kg"),
  15165. name: "Feral",
  15166. image: {
  15167. source: "./media/characters/hearth/feral.svg",
  15168. extra: 153 / 135,
  15169. bottom: 0.03
  15170. }
  15171. },
  15172. },
  15173. [
  15174. {
  15175. name: "Normal",
  15176. height: math.unit(6 + 1 / 12, "feet"),
  15177. default: true
  15178. },
  15179. ]
  15180. ))
  15181. characterMakers.push(() => makeCharacter(
  15182. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15183. {
  15184. front: {
  15185. height: math.unit(6, "feet"),
  15186. weight: math.unit(182, "lb"),
  15187. name: "Front",
  15188. image: {
  15189. source: "./media/characters/ingrid/front.svg",
  15190. extra: 294 / 268,
  15191. bottom: 0.027
  15192. }
  15193. },
  15194. },
  15195. [
  15196. {
  15197. name: "Normal",
  15198. height: math.unit(6, "feet"),
  15199. default: true
  15200. },
  15201. ]
  15202. ))
  15203. characterMakers.push(() => makeCharacter(
  15204. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15205. {
  15206. eevee: {
  15207. height: math.unit(2 + 10 / 12, "feet"),
  15208. weight: math.unit(86, "lb"),
  15209. name: "Malgam",
  15210. image: {
  15211. source: "./media/characters/malgam/eevee.svg",
  15212. extra: 952/784,
  15213. bottom: 38/990
  15214. }
  15215. },
  15216. sylveon: {
  15217. height: math.unit(4, "feet"),
  15218. weight: math.unit(101, "lb"),
  15219. name: "Future Malgam",
  15220. rename: true,
  15221. image: {
  15222. source: "./media/characters/malgam/sylveon.svg",
  15223. extra: 371 / 325,
  15224. bottom: 0.015
  15225. }
  15226. },
  15227. gigantamax: {
  15228. height: math.unit(50, "feet"),
  15229. name: "Gigantamax Malgam",
  15230. rename: true,
  15231. image: {
  15232. source: "./media/characters/malgam/gigantamax.svg"
  15233. }
  15234. },
  15235. },
  15236. [
  15237. {
  15238. name: "Normal",
  15239. height: math.unit(2 + 10 / 12, "feet"),
  15240. default: true
  15241. },
  15242. ]
  15243. ))
  15244. characterMakers.push(() => makeCharacter(
  15245. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15246. {
  15247. front: {
  15248. height: math.unit(5 + 11 / 12, "feet"),
  15249. weight: math.unit(188, "lb"),
  15250. name: "Front",
  15251. image: {
  15252. source: "./media/characters/fleur/front.svg",
  15253. extra: 309 / 283,
  15254. bottom: 0.007
  15255. }
  15256. },
  15257. },
  15258. [
  15259. {
  15260. name: "Normal",
  15261. height: math.unit(5 + 11 / 12, "feet"),
  15262. default: true
  15263. },
  15264. ]
  15265. ))
  15266. characterMakers.push(() => makeCharacter(
  15267. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15268. {
  15269. front: {
  15270. height: math.unit(5 + 4 / 12, "feet"),
  15271. weight: math.unit(122, "lb"),
  15272. name: "Front",
  15273. image: {
  15274. source: "./media/characters/jude/front.svg",
  15275. extra: 288 / 273,
  15276. bottom: 0.03
  15277. }
  15278. },
  15279. },
  15280. [
  15281. {
  15282. name: "Normal",
  15283. height: math.unit(5 + 4 / 12, "feet"),
  15284. default: true
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15290. {
  15291. front: {
  15292. height: math.unit(5 + 11 / 12, "feet"),
  15293. weight: math.unit(190, "lb"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/seara/front.svg",
  15297. extra: 1,
  15298. bottom: 0.05
  15299. }
  15300. },
  15301. },
  15302. [
  15303. {
  15304. name: "Normal",
  15305. height: math.unit(5 + 11 / 12, "feet"),
  15306. default: true
  15307. },
  15308. ]
  15309. ))
  15310. characterMakers.push(() => makeCharacter(
  15311. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15312. {
  15313. front: {
  15314. height: math.unit(16 + 5 / 12, "feet"),
  15315. weight: math.unit(524, "lb"),
  15316. name: "Front",
  15317. image: {
  15318. source: "./media/characters/caspian/front.svg",
  15319. extra: 1,
  15320. bottom: 0.04
  15321. }
  15322. },
  15323. },
  15324. [
  15325. {
  15326. name: "Normal",
  15327. height: math.unit(16 + 5 / 12, "feet"),
  15328. default: true
  15329. },
  15330. ]
  15331. ))
  15332. characterMakers.push(() => makeCharacter(
  15333. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15334. {
  15335. front: {
  15336. height: math.unit(5 + 7 / 12, "feet"),
  15337. weight: math.unit(170, "lb"),
  15338. name: "Front",
  15339. image: {
  15340. source: "./media/characters/mika/front.svg",
  15341. extra: 1,
  15342. bottom: 0.016
  15343. }
  15344. },
  15345. },
  15346. [
  15347. {
  15348. name: "Normal",
  15349. height: math.unit(5 + 7 / 12, "feet"),
  15350. default: true
  15351. },
  15352. ]
  15353. ))
  15354. characterMakers.push(() => makeCharacter(
  15355. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15356. {
  15357. front: {
  15358. height: math.unit(6 + 2 / 12, "feet"),
  15359. weight: math.unit(268, "lb"),
  15360. name: "Front",
  15361. image: {
  15362. source: "./media/characters/sol/front.svg",
  15363. extra: 247 / 231,
  15364. bottom: 0.05
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Normal",
  15371. height: math.unit(6 + 2 / 12, "feet"),
  15372. default: true
  15373. },
  15374. ]
  15375. ))
  15376. characterMakers.push(() => makeCharacter(
  15377. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15378. {
  15379. buizel: {
  15380. height: math.unit(2 + 5 / 12, "feet"),
  15381. weight: math.unit(87, "lb"),
  15382. name: "Buizel",
  15383. image: {
  15384. source: "./media/characters/umiko/buizel.svg",
  15385. extra: 172 / 157,
  15386. bottom: 0.01
  15387. }
  15388. },
  15389. floatzel: {
  15390. height: math.unit(5 + 9 / 12, "feet"),
  15391. weight: math.unit(250, "lb"),
  15392. name: "Floatzel",
  15393. image: {
  15394. source: "./media/characters/umiko/floatzel.svg",
  15395. extra: 262 / 248
  15396. }
  15397. },
  15398. },
  15399. [
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(2 + 5 / 12, "feet"),
  15403. default: true
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15409. {
  15410. front: {
  15411. height: math.unit(6 + 2 / 12, "feet"),
  15412. weight: math.unit(146, "lb"),
  15413. name: "Front",
  15414. image: {
  15415. source: "./media/characters/iliac/front.svg",
  15416. extra: 389 / 365,
  15417. bottom: 0.035
  15418. }
  15419. },
  15420. },
  15421. [
  15422. {
  15423. name: "Normal",
  15424. height: math.unit(6 + 2 / 12, "feet"),
  15425. default: true
  15426. },
  15427. ]
  15428. ))
  15429. characterMakers.push(() => makeCharacter(
  15430. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15431. {
  15432. front: {
  15433. height: math.unit(6, "feet"),
  15434. weight: math.unit(170, "lb"),
  15435. name: "Front",
  15436. image: {
  15437. source: "./media/characters/topaz/front.svg",
  15438. extra: 317 / 303,
  15439. bottom: 0.055
  15440. }
  15441. },
  15442. },
  15443. [
  15444. {
  15445. name: "Normal",
  15446. height: math.unit(6, "feet"),
  15447. default: true
  15448. },
  15449. ]
  15450. ))
  15451. characterMakers.push(() => makeCharacter(
  15452. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15453. {
  15454. front: {
  15455. height: math.unit(5 + 11 / 12, "feet"),
  15456. weight: math.unit(144, "lb"),
  15457. name: "Front",
  15458. image: {
  15459. source: "./media/characters/gabriel/front.svg",
  15460. extra: 285 / 262,
  15461. bottom: 0.004
  15462. }
  15463. },
  15464. },
  15465. [
  15466. {
  15467. name: "Normal",
  15468. height: math.unit(5 + 11 / 12, "feet"),
  15469. default: true
  15470. },
  15471. ]
  15472. ))
  15473. characterMakers.push(() => makeCharacter(
  15474. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15475. {
  15476. side: {
  15477. height: math.unit(6 + 5 / 12, "feet"),
  15478. weight: math.unit(300, "lb"),
  15479. name: "Side",
  15480. image: {
  15481. source: "./media/characters/tempest-suicune/side.svg",
  15482. extra: 195 / 154,
  15483. bottom: 0.04
  15484. }
  15485. },
  15486. },
  15487. [
  15488. {
  15489. name: "Normal",
  15490. height: math.unit(6 + 5 / 12, "feet"),
  15491. default: true
  15492. },
  15493. ]
  15494. ))
  15495. characterMakers.push(() => makeCharacter(
  15496. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15497. {
  15498. front: {
  15499. height: math.unit(7 + 2 / 12, "feet"),
  15500. weight: math.unit(322, "lb"),
  15501. name: "Front",
  15502. image: {
  15503. source: "./media/characters/vulcan/front.svg",
  15504. extra: 154 / 147,
  15505. bottom: 0.04
  15506. }
  15507. },
  15508. },
  15509. [
  15510. {
  15511. name: "Normal",
  15512. height: math.unit(7 + 2 / 12, "feet"),
  15513. default: true
  15514. },
  15515. ]
  15516. ))
  15517. characterMakers.push(() => makeCharacter(
  15518. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15519. {
  15520. front: {
  15521. height: math.unit(5 + 10 / 12, "feet"),
  15522. weight: math.unit(264, "lb"),
  15523. name: "Front",
  15524. image: {
  15525. source: "./media/characters/gault/front.svg",
  15526. extra: 161 / 140,
  15527. bottom: 0.028
  15528. }
  15529. },
  15530. },
  15531. [
  15532. {
  15533. name: "Normal",
  15534. height: math.unit(5 + 10 / 12, "feet"),
  15535. default: true
  15536. },
  15537. ]
  15538. ))
  15539. characterMakers.push(() => makeCharacter(
  15540. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15541. {
  15542. front: {
  15543. height: math.unit(6, "feet"),
  15544. weight: math.unit(150, "lb"),
  15545. name: "Front",
  15546. image: {
  15547. source: "./media/characters/shard/front.svg",
  15548. extra: 273 / 238,
  15549. bottom: 0.02
  15550. }
  15551. },
  15552. },
  15553. [
  15554. {
  15555. name: "Normal",
  15556. height: math.unit(3 + 6 / 12, "feet"),
  15557. default: true
  15558. },
  15559. ]
  15560. ))
  15561. characterMakers.push(() => makeCharacter(
  15562. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15563. {
  15564. front: {
  15565. height: math.unit(5 + 11 / 12, "feet"),
  15566. weight: math.unit(146, "lb"),
  15567. name: "Front",
  15568. image: {
  15569. source: "./media/characters/ashe/front.svg",
  15570. extra: 400 / 373,
  15571. bottom: 0.01
  15572. }
  15573. },
  15574. },
  15575. [
  15576. {
  15577. name: "Normal",
  15578. height: math.unit(5 + 11 / 12, "feet"),
  15579. default: true
  15580. },
  15581. ]
  15582. ))
  15583. characterMakers.push(() => makeCharacter(
  15584. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15585. {
  15586. front: {
  15587. height: math.unit(5 + 5 / 12, "feet"),
  15588. weight: math.unit(135, "lb"),
  15589. name: "Front",
  15590. image: {
  15591. source: "./media/characters/beatrix/front.svg",
  15592. extra: 392 / 379,
  15593. bottom: 0.01
  15594. }
  15595. },
  15596. },
  15597. [
  15598. {
  15599. name: "Normal",
  15600. height: math.unit(6, "feet"),
  15601. default: true
  15602. },
  15603. ]
  15604. ))
  15605. characterMakers.push(() => makeCharacter(
  15606. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15607. {
  15608. front: {
  15609. height: math.unit(6 + 2/12, "feet"),
  15610. weight: math.unit(135, "lb"),
  15611. name: "Front",
  15612. image: {
  15613. source: "./media/characters/ignatius/front.svg",
  15614. extra: 1380/1259,
  15615. bottom: 27/1407
  15616. }
  15617. },
  15618. },
  15619. [
  15620. {
  15621. name: "Normal",
  15622. height: math.unit(6 + 2/12, "feet"),
  15623. default: true
  15624. },
  15625. ]
  15626. ))
  15627. characterMakers.push(() => makeCharacter(
  15628. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15629. {
  15630. front: {
  15631. height: math.unit(6 + 2 / 12, "feet"),
  15632. weight: math.unit(138, "lb"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/mei-li/front.svg",
  15636. extra: 237 / 229,
  15637. bottom: 0.03
  15638. }
  15639. },
  15640. },
  15641. [
  15642. {
  15643. name: "Normal",
  15644. height: math.unit(6 + 2 / 12, "feet"),
  15645. default: true
  15646. },
  15647. ]
  15648. ))
  15649. characterMakers.push(() => makeCharacter(
  15650. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15651. {
  15652. front: {
  15653. height: math.unit(2 + 4 / 12, "feet"),
  15654. weight: math.unit(62, "lb"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/puru/front.svg",
  15658. extra: 206 / 149,
  15659. bottom: 0.06
  15660. }
  15661. },
  15662. },
  15663. [
  15664. {
  15665. name: "Normal",
  15666. height: math.unit(2 + 4 / 12, "feet"),
  15667. default: true
  15668. },
  15669. ]
  15670. ))
  15671. characterMakers.push(() => makeCharacter(
  15672. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15673. {
  15674. anthro: {
  15675. height: math.unit(5 + 8/12, "feet"),
  15676. weight: math.unit(200, "lb"),
  15677. energyNeed: math.unit(2000, "kcal"),
  15678. name: "Anthro",
  15679. image: {
  15680. source: "./media/characters/kee/anthro.svg",
  15681. extra: 3251/3184,
  15682. bottom: 250/3501
  15683. }
  15684. },
  15685. taur: {
  15686. height: math.unit(11, "feet"),
  15687. weight: math.unit(500, "lb"),
  15688. energyNeed: math.unit(5000, "kcal"),
  15689. name: "Taur",
  15690. image: {
  15691. source: "./media/characters/kee/taur.svg",
  15692. extra: 1362/1320,
  15693. bottom: 83/1445
  15694. }
  15695. },
  15696. },
  15697. [
  15698. {
  15699. name: "Normal",
  15700. height: math.unit(5 + 8/12, "feet"),
  15701. default: true
  15702. },
  15703. {
  15704. name: "Macro",
  15705. height: math.unit(35, "feet")
  15706. },
  15707. ]
  15708. ))
  15709. characterMakers.push(() => makeCharacter(
  15710. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15711. {
  15712. anthro: {
  15713. height: math.unit(7, "feet"),
  15714. weight: math.unit(190, "lb"),
  15715. name: "Anthro",
  15716. image: {
  15717. source: "./media/characters/cobalt-dracha/anthro.svg",
  15718. extra: 231 / 225,
  15719. bottom: 0.04
  15720. }
  15721. },
  15722. feral: {
  15723. height: math.unit(9 + 7 / 12, "feet"),
  15724. weight: math.unit(294, "lb"),
  15725. name: "Feral",
  15726. image: {
  15727. source: "./media/characters/cobalt-dracha/feral.svg",
  15728. extra: 692 / 633,
  15729. bottom: 0.05
  15730. }
  15731. },
  15732. },
  15733. [
  15734. {
  15735. name: "Normal",
  15736. height: math.unit(7, "feet"),
  15737. default: true
  15738. },
  15739. ]
  15740. ))
  15741. characterMakers.push(() => makeCharacter(
  15742. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15743. {
  15744. fallen: {
  15745. height: math.unit(11 + 8 / 12, "feet"),
  15746. weight: math.unit(485, "lb"),
  15747. name: "Java (Fallen)",
  15748. rename: true,
  15749. image: {
  15750. source: "./media/characters/java/fallen.svg",
  15751. extra: 226 / 208,
  15752. bottom: 0.005
  15753. }
  15754. },
  15755. godkin: {
  15756. height: math.unit(10 + 6 / 12, "feet"),
  15757. weight: math.unit(328, "lb"),
  15758. name: "Java (Godkin)",
  15759. rename: true,
  15760. image: {
  15761. source: "./media/characters/java/godkin.svg",
  15762. extra: 1104/1068,
  15763. bottom: 36/1140
  15764. }
  15765. },
  15766. },
  15767. [
  15768. {
  15769. name: "Normal",
  15770. height: math.unit(11 + 8 / 12, "feet"),
  15771. default: true
  15772. },
  15773. ]
  15774. ))
  15775. characterMakers.push(() => makeCharacter(
  15776. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15777. {
  15778. front: {
  15779. height: math.unit(5 + 9 / 12, "feet"),
  15780. weight: math.unit(170, "lb"),
  15781. name: "Front",
  15782. image: {
  15783. source: "./media/characters/purna/front.svg",
  15784. extra: 239 / 229,
  15785. bottom: 0.01
  15786. }
  15787. },
  15788. },
  15789. [
  15790. {
  15791. name: "Normal",
  15792. height: math.unit(5 + 9 / 12, "feet"),
  15793. default: true
  15794. },
  15795. ]
  15796. ))
  15797. characterMakers.push(() => makeCharacter(
  15798. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15799. {
  15800. front: {
  15801. height: math.unit(5 + 9 / 12, "feet"),
  15802. weight: math.unit(142, "lb"),
  15803. name: "Front",
  15804. image: {
  15805. source: "./media/characters/kuva/front.svg",
  15806. extra: 281 / 271,
  15807. bottom: 0.006
  15808. }
  15809. },
  15810. },
  15811. [
  15812. {
  15813. name: "Normal",
  15814. height: math.unit(5 + 9 / 12, "feet"),
  15815. default: true
  15816. },
  15817. ]
  15818. ))
  15819. characterMakers.push(() => makeCharacter(
  15820. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15821. {
  15822. anthro: {
  15823. height: math.unit(9 + 2 / 12, "feet"),
  15824. weight: math.unit(270, "lb"),
  15825. name: "Anthro",
  15826. image: {
  15827. source: "./media/characters/embra/anthro.svg",
  15828. extra: 200 / 187,
  15829. bottom: 0.02
  15830. }
  15831. },
  15832. feral: {
  15833. height: math.unit(18 + 8 / 12, "feet"),
  15834. weight: math.unit(576, "lb"),
  15835. name: "Feral",
  15836. image: {
  15837. source: "./media/characters/embra/feral.svg",
  15838. extra: 152 / 137,
  15839. bottom: 0.037
  15840. }
  15841. },
  15842. },
  15843. [
  15844. {
  15845. name: "Normal",
  15846. height: math.unit(9 + 2 / 12, "feet"),
  15847. default: true
  15848. },
  15849. ]
  15850. ))
  15851. characterMakers.push(() => makeCharacter(
  15852. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15853. {
  15854. anthro: {
  15855. height: math.unit(10 + 9 / 12, "feet"),
  15856. weight: math.unit(224, "lb"),
  15857. name: "Anthro",
  15858. image: {
  15859. source: "./media/characters/grottos/anthro.svg",
  15860. extra: 350 / 332,
  15861. bottom: 0.045
  15862. }
  15863. },
  15864. feral: {
  15865. height: math.unit(20 + 7 / 12, "feet"),
  15866. weight: math.unit(629, "lb"),
  15867. name: "Feral",
  15868. image: {
  15869. source: "./media/characters/grottos/feral.svg",
  15870. extra: 207 / 190,
  15871. bottom: 0.05
  15872. }
  15873. },
  15874. },
  15875. [
  15876. {
  15877. name: "Normal",
  15878. height: math.unit(10 + 9 / 12, "feet"),
  15879. default: true
  15880. },
  15881. ]
  15882. ))
  15883. characterMakers.push(() => makeCharacter(
  15884. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15885. {
  15886. anthro: {
  15887. height: math.unit(9 + 6 / 12, "feet"),
  15888. weight: math.unit(298, "lb"),
  15889. name: "Anthro",
  15890. image: {
  15891. source: "./media/characters/frifna/anthro.svg",
  15892. extra: 282 / 269,
  15893. bottom: 0.015
  15894. }
  15895. },
  15896. feral: {
  15897. height: math.unit(16 + 2 / 12, "feet"),
  15898. weight: math.unit(624, "lb"),
  15899. name: "Feral",
  15900. image: {
  15901. source: "./media/characters/frifna/feral.svg"
  15902. }
  15903. },
  15904. },
  15905. [
  15906. {
  15907. name: "Normal",
  15908. height: math.unit(9 + 6 / 12, "feet"),
  15909. default: true
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15915. {
  15916. front: {
  15917. height: math.unit(6 + 2 / 12, "feet"),
  15918. weight: math.unit(168, "lb"),
  15919. name: "Front",
  15920. image: {
  15921. source: "./media/characters/elise/front.svg",
  15922. extra: 276 / 271
  15923. }
  15924. },
  15925. },
  15926. [
  15927. {
  15928. name: "Normal",
  15929. height: math.unit(6 + 2 / 12, "feet"),
  15930. default: true
  15931. },
  15932. ]
  15933. ))
  15934. characterMakers.push(() => makeCharacter(
  15935. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15936. {
  15937. front: {
  15938. height: math.unit(5 + 10 / 12, "feet"),
  15939. weight: math.unit(210, "lb"),
  15940. name: "Front",
  15941. image: {
  15942. source: "./media/characters/glade/front.svg",
  15943. extra: 258 / 247,
  15944. bottom: 0.008
  15945. }
  15946. },
  15947. },
  15948. [
  15949. {
  15950. name: "Normal",
  15951. height: math.unit(5 + 10 / 12, "feet"),
  15952. default: true
  15953. },
  15954. ]
  15955. ))
  15956. characterMakers.push(() => makeCharacter(
  15957. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15958. {
  15959. front: {
  15960. height: math.unit(5 + 10 / 12, "feet"),
  15961. weight: math.unit(129, "lb"),
  15962. name: "Front",
  15963. image: {
  15964. source: "./media/characters/rina/front.svg",
  15965. extra: 266 / 255,
  15966. bottom: 0.005
  15967. }
  15968. },
  15969. },
  15970. [
  15971. {
  15972. name: "Normal",
  15973. height: math.unit(5 + 10 / 12, "feet"),
  15974. default: true
  15975. },
  15976. ]
  15977. ))
  15978. characterMakers.push(() => makeCharacter(
  15979. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15980. {
  15981. front: {
  15982. height: math.unit(6 + 1 / 12, "feet"),
  15983. weight: math.unit(192, "lb"),
  15984. name: "Front",
  15985. image: {
  15986. source: "./media/characters/veronica/front.svg",
  15987. extra: 319 / 309,
  15988. bottom: 0.005
  15989. }
  15990. },
  15991. },
  15992. [
  15993. {
  15994. name: "Normal",
  15995. height: math.unit(6 + 1 / 12, "feet"),
  15996. default: true
  15997. },
  15998. ]
  15999. ))
  16000. characterMakers.push(() => makeCharacter(
  16001. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16002. {
  16003. front: {
  16004. height: math.unit(9 + 3 / 12, "feet"),
  16005. weight: math.unit(1100, "lb"),
  16006. name: "Front",
  16007. image: {
  16008. source: "./media/characters/braxton/front.svg",
  16009. extra: 1057 / 984,
  16010. bottom: 0.05
  16011. }
  16012. },
  16013. },
  16014. [
  16015. {
  16016. name: "Normal",
  16017. height: math.unit(9 + 3 / 12, "feet")
  16018. },
  16019. {
  16020. name: "Giant",
  16021. height: math.unit(300, "feet"),
  16022. default: true
  16023. },
  16024. {
  16025. name: "Macro",
  16026. height: math.unit(700, "feet")
  16027. },
  16028. {
  16029. name: "Megamacro",
  16030. height: math.unit(6000, "feet")
  16031. },
  16032. ]
  16033. ))
  16034. characterMakers.push(() => makeCharacter(
  16035. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16036. {
  16037. front: {
  16038. height: math.unit(6 + 7 / 12, "feet"),
  16039. weight: math.unit(150, "lb"),
  16040. name: "Front",
  16041. image: {
  16042. source: "./media/characters/blue-feyonics/front.svg",
  16043. extra: 1403 / 1306,
  16044. bottom: 0.047
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Normal",
  16051. height: math.unit(6 + 7 / 12, "feet"),
  16052. default: true
  16053. },
  16054. ]
  16055. ))
  16056. characterMakers.push(() => makeCharacter(
  16057. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16058. {
  16059. front: {
  16060. height: math.unit(1.8, "meters"),
  16061. weight: math.unit(60, "kg"),
  16062. name: "Front",
  16063. image: {
  16064. source: "./media/characters/maxwell/front.svg",
  16065. extra: 2060 / 1873
  16066. }
  16067. },
  16068. },
  16069. [
  16070. {
  16071. name: "Micro",
  16072. height: math.unit(1, "mm")
  16073. },
  16074. {
  16075. name: "Normal",
  16076. height: math.unit(1.8, "meter"),
  16077. default: true
  16078. },
  16079. {
  16080. name: "Macro",
  16081. height: math.unit(30, "meters")
  16082. },
  16083. {
  16084. name: "Megamacro",
  16085. height: math.unit(10, "km")
  16086. },
  16087. ]
  16088. ))
  16089. characterMakers.push(() => makeCharacter(
  16090. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16091. {
  16092. front: {
  16093. height: math.unit(6, "feet"),
  16094. weight: math.unit(150, "lb"),
  16095. name: "Front",
  16096. image: {
  16097. source: "./media/characters/jack/front.svg",
  16098. extra: 1754 / 1640,
  16099. bottom: 0.01
  16100. }
  16101. },
  16102. },
  16103. [
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(80000, "feet"),
  16107. default: true
  16108. },
  16109. {
  16110. name: "Max size",
  16111. height: math.unit(10, "lightyears")
  16112. },
  16113. ]
  16114. ))
  16115. characterMakers.push(() => makeCharacter(
  16116. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16117. {
  16118. urban: {
  16119. height: math.unit(5, "feet"),
  16120. weight: math.unit(240, "lb"),
  16121. name: "Urban",
  16122. image: {
  16123. source: "./media/characters/cafat/urban.svg",
  16124. extra: 1223/1126,
  16125. bottom: 205/1428
  16126. }
  16127. },
  16128. summer: {
  16129. height: math.unit(5, "feet"),
  16130. weight: math.unit(240, "lb"),
  16131. name: "Summer",
  16132. image: {
  16133. source: "./media/characters/cafat/summer.svg",
  16134. extra: 1223/1126,
  16135. bottom: 205/1428
  16136. }
  16137. },
  16138. winter: {
  16139. height: math.unit(5, "feet"),
  16140. weight: math.unit(240, "lb"),
  16141. name: "Winter",
  16142. image: {
  16143. source: "./media/characters/cafat/winter.svg",
  16144. extra: 1223/1126,
  16145. bottom: 205/1428
  16146. }
  16147. },
  16148. lingerie: {
  16149. height: math.unit(5, "feet"),
  16150. weight: math.unit(240, "lb"),
  16151. name: "Lingerie",
  16152. image: {
  16153. source: "./media/characters/cafat/lingerie.svg",
  16154. extra: 1223/1126,
  16155. bottom: 205/1428
  16156. }
  16157. },
  16158. upright: {
  16159. height: math.unit(6.3, "feet"),
  16160. weight: math.unit(240, "lb"),
  16161. name: "Upright",
  16162. image: {
  16163. source: "./media/characters/cafat/upright.svg",
  16164. bottom: 0.01
  16165. }
  16166. },
  16167. uprightFull: {
  16168. height: math.unit(6.3, "feet"),
  16169. weight: math.unit(240, "lb"),
  16170. name: "Upright (Full)",
  16171. image: {
  16172. source: "./media/characters/cafat/upright-full.svg",
  16173. bottom: 0.01
  16174. }
  16175. },
  16176. },
  16177. [
  16178. {
  16179. name: "Small",
  16180. height: math.unit(5, "feet"),
  16181. default: true
  16182. },
  16183. {
  16184. name: "Large",
  16185. height: math.unit(13, "feet")
  16186. },
  16187. ]
  16188. ))
  16189. characterMakers.push(() => makeCharacter(
  16190. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16191. {
  16192. front: {
  16193. height: math.unit(6, "feet"),
  16194. weight: math.unit(150, "lb"),
  16195. name: "Front",
  16196. image: {
  16197. source: "./media/characters/verin-raharra/front.svg",
  16198. extra: 5019 / 4835,
  16199. bottom: 0.023
  16200. }
  16201. },
  16202. },
  16203. [
  16204. {
  16205. name: "Normal",
  16206. height: math.unit(7 + 5 / 12, "feet"),
  16207. default: true
  16208. },
  16209. {
  16210. name: "Upsized",
  16211. height: math.unit(20, "feet")
  16212. },
  16213. ]
  16214. ))
  16215. characterMakers.push(() => makeCharacter(
  16216. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16217. {
  16218. front: {
  16219. height: math.unit(7, "feet"),
  16220. weight: math.unit(230, "lb"),
  16221. name: "Front",
  16222. image: {
  16223. source: "./media/characters/nakata/front.svg",
  16224. extra: 1.005,
  16225. bottom: 0.01
  16226. }
  16227. },
  16228. },
  16229. [
  16230. {
  16231. name: "Normal",
  16232. height: math.unit(7, "feet"),
  16233. default: true
  16234. },
  16235. {
  16236. name: "Big",
  16237. height: math.unit(14, "feet")
  16238. },
  16239. {
  16240. name: "Macro",
  16241. height: math.unit(400, "feet")
  16242. },
  16243. ]
  16244. ))
  16245. characterMakers.push(() => makeCharacter(
  16246. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16247. {
  16248. front: {
  16249. height: math.unit(4.91, "feet"),
  16250. weight: math.unit(100, "lb"),
  16251. name: "Front",
  16252. image: {
  16253. source: "./media/characters/lily/front.svg",
  16254. extra: 1585 / 1415,
  16255. bottom: 0.02
  16256. }
  16257. },
  16258. },
  16259. [
  16260. {
  16261. name: "Normal",
  16262. height: math.unit(4.91, "feet"),
  16263. default: true
  16264. },
  16265. ]
  16266. ))
  16267. characterMakers.push(() => makeCharacter(
  16268. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16269. {
  16270. laying: {
  16271. height: math.unit(4 + 4 / 12, "feet"),
  16272. weight: math.unit(600, "lb"),
  16273. name: "Laying",
  16274. image: {
  16275. source: "./media/characters/sheila/laying.svg",
  16276. extra: 1333 / 1265,
  16277. bottom: 0.16
  16278. }
  16279. },
  16280. },
  16281. [
  16282. {
  16283. name: "Normal",
  16284. height: math.unit(4 + 4 / 12, "feet"),
  16285. default: true
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16291. {
  16292. front: {
  16293. height: math.unit(6, "feet"),
  16294. weight: math.unit(190, "lb"),
  16295. name: "Front",
  16296. image: {
  16297. source: "./media/characters/sax/front.svg",
  16298. extra: 1187 / 973,
  16299. bottom: 0.042
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Micro",
  16306. height: math.unit(4, "inches"),
  16307. default: true
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16313. {
  16314. front: {
  16315. height: math.unit(6, "feet"),
  16316. weight: math.unit(150, "lb"),
  16317. name: "Front",
  16318. image: {
  16319. source: "./media/characters/pandora/front.svg",
  16320. extra: 2720 / 2556,
  16321. bottom: 0.015
  16322. }
  16323. },
  16324. back: {
  16325. height: math.unit(6, "feet"),
  16326. weight: math.unit(150, "lb"),
  16327. name: "Back",
  16328. image: {
  16329. source: "./media/characters/pandora/back.svg",
  16330. extra: 2720 / 2556,
  16331. bottom: 0.01
  16332. }
  16333. },
  16334. beans: {
  16335. height: math.unit(6 / 8, "feet"),
  16336. name: "Beans",
  16337. image: {
  16338. source: "./media/characters/pandora/beans.svg"
  16339. }
  16340. },
  16341. collar: {
  16342. height: math.unit(0.31, "feet"),
  16343. name: "Collar",
  16344. image: {
  16345. source: "./media/characters/pandora/collar.svg"
  16346. }
  16347. },
  16348. skirt: {
  16349. height: math.unit(6, "feet"),
  16350. weight: math.unit(150, "lb"),
  16351. name: "Skirt",
  16352. image: {
  16353. source: "./media/characters/pandora/skirt.svg",
  16354. extra: 1622 / 1525,
  16355. bottom: 0.015
  16356. }
  16357. },
  16358. hoodie: {
  16359. height: math.unit(6, "feet"),
  16360. weight: math.unit(150, "lb"),
  16361. name: "Hoodie",
  16362. image: {
  16363. source: "./media/characters/pandora/hoodie.svg",
  16364. extra: 1622 / 1525,
  16365. bottom: 0.015
  16366. }
  16367. },
  16368. casual: {
  16369. height: math.unit(6, "feet"),
  16370. weight: math.unit(150, "lb"),
  16371. name: "Casual",
  16372. image: {
  16373. source: "./media/characters/pandora/casual.svg",
  16374. extra: 1622 / 1525,
  16375. bottom: 0.015
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Normal",
  16382. height: math.unit(6, "feet")
  16383. },
  16384. {
  16385. name: "Big Steppy",
  16386. height: math.unit(1, "km"),
  16387. default: true
  16388. },
  16389. {
  16390. name: "Galactic Steppy",
  16391. height: math.unit(2, "gigameters")
  16392. },
  16393. ]
  16394. ))
  16395. characterMakers.push(() => makeCharacter(
  16396. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16397. {
  16398. side: {
  16399. height: math.unit(10, "feet"),
  16400. weight: math.unit(800, "kg"),
  16401. name: "Side",
  16402. image: {
  16403. source: "./media/characters/venio-darcony/side.svg",
  16404. extra: 1373 / 1003,
  16405. bottom: 0.037
  16406. }
  16407. },
  16408. front: {
  16409. height: math.unit(19, "feet"),
  16410. weight: math.unit(800, "kg"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/venio-darcony/front.svg"
  16414. }
  16415. },
  16416. back: {
  16417. height: math.unit(19, "feet"),
  16418. weight: math.unit(800, "kg"),
  16419. name: "Back",
  16420. image: {
  16421. source: "./media/characters/venio-darcony/back.svg"
  16422. }
  16423. },
  16424. sideNsfw: {
  16425. height: math.unit(10, "feet"),
  16426. weight: math.unit(800, "kg"),
  16427. name: "Side (NSFW)",
  16428. image: {
  16429. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16430. extra: 1373 / 1003,
  16431. bottom: 0.037
  16432. }
  16433. },
  16434. frontNsfw: {
  16435. height: math.unit(19, "feet"),
  16436. weight: math.unit(800, "kg"),
  16437. name: "Front (NSFW)",
  16438. image: {
  16439. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16440. }
  16441. },
  16442. backNsfw: {
  16443. height: math.unit(19, "feet"),
  16444. weight: math.unit(800, "kg"),
  16445. name: "Back (NSFW)",
  16446. image: {
  16447. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16448. }
  16449. },
  16450. sideArmored: {
  16451. height: math.unit(10, "feet"),
  16452. weight: math.unit(800, "kg"),
  16453. name: "Side (Armored)",
  16454. image: {
  16455. source: "./media/characters/venio-darcony/side-armored.svg",
  16456. extra: 1373 / 1003,
  16457. bottom: 0.037
  16458. }
  16459. },
  16460. frontArmored: {
  16461. height: math.unit(19, "feet"),
  16462. weight: math.unit(900, "kg"),
  16463. name: "Front (Armored)",
  16464. image: {
  16465. source: "./media/characters/venio-darcony/front-armored.svg"
  16466. }
  16467. },
  16468. backArmored: {
  16469. height: math.unit(19, "feet"),
  16470. weight: math.unit(900, "kg"),
  16471. name: "Back (Armored)",
  16472. image: {
  16473. source: "./media/characters/venio-darcony/back-armored.svg"
  16474. }
  16475. },
  16476. sword: {
  16477. height: math.unit(10, "feet"),
  16478. weight: math.unit(50, "lb"),
  16479. name: "Sword",
  16480. image: {
  16481. source: "./media/characters/venio-darcony/sword.svg"
  16482. }
  16483. },
  16484. },
  16485. [
  16486. {
  16487. name: "Normal",
  16488. height: math.unit(10, "feet")
  16489. },
  16490. {
  16491. name: "Macro",
  16492. height: math.unit(130, "feet"),
  16493. default: true
  16494. },
  16495. {
  16496. name: "Macro+",
  16497. height: math.unit(240, "feet")
  16498. },
  16499. ]
  16500. ))
  16501. characterMakers.push(() => makeCharacter(
  16502. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16503. {
  16504. front: {
  16505. height: math.unit(6, "feet"),
  16506. weight: math.unit(150, "lb"),
  16507. name: "Front",
  16508. image: {
  16509. source: "./media/characters/veski/front.svg",
  16510. extra: 1299 / 1225,
  16511. bottom: 0.04
  16512. }
  16513. },
  16514. back: {
  16515. height: math.unit(6, "feet"),
  16516. weight: math.unit(150, "lb"),
  16517. name: "Back",
  16518. image: {
  16519. source: "./media/characters/veski/back.svg",
  16520. extra: 1299 / 1225,
  16521. bottom: 0.008
  16522. }
  16523. },
  16524. maw: {
  16525. height: math.unit(1.5 * 1.21, "feet"),
  16526. name: "Maw",
  16527. image: {
  16528. source: "./media/characters/veski/maw.svg"
  16529. }
  16530. },
  16531. },
  16532. [
  16533. {
  16534. name: "Macro",
  16535. height: math.unit(2, "km"),
  16536. default: true
  16537. },
  16538. ]
  16539. ))
  16540. characterMakers.push(() => makeCharacter(
  16541. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16542. {
  16543. front: {
  16544. height: math.unit(5 + 7 / 12, "feet"),
  16545. name: "Front",
  16546. image: {
  16547. source: "./media/characters/isabelle/front.svg",
  16548. extra: 2130 / 1976,
  16549. bottom: 0.05
  16550. }
  16551. },
  16552. },
  16553. [
  16554. {
  16555. name: "Supermicro",
  16556. height: math.unit(10, "micrometers")
  16557. },
  16558. {
  16559. name: "Micro",
  16560. height: math.unit(1, "inch")
  16561. },
  16562. {
  16563. name: "Tiny",
  16564. height: math.unit(5, "inches")
  16565. },
  16566. {
  16567. name: "Standard",
  16568. height: math.unit(5 + 7 / 12, "inches")
  16569. },
  16570. {
  16571. name: "Macro",
  16572. height: math.unit(80, "meters"),
  16573. default: true
  16574. },
  16575. {
  16576. name: "Megamacro",
  16577. height: math.unit(250, "meters")
  16578. },
  16579. {
  16580. name: "Gigamacro",
  16581. height: math.unit(5, "km")
  16582. },
  16583. {
  16584. name: "Cosmic",
  16585. height: math.unit(2.5e6, "miles")
  16586. },
  16587. ]
  16588. ))
  16589. characterMakers.push(() => makeCharacter(
  16590. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16591. {
  16592. front: {
  16593. height: math.unit(6, "feet"),
  16594. weight: math.unit(150, "lb"),
  16595. name: "Front",
  16596. image: {
  16597. source: "./media/characters/hanzo/front.svg",
  16598. extra: 374 / 344,
  16599. bottom: 0.02
  16600. }
  16601. },
  16602. },
  16603. [
  16604. {
  16605. name: "Normal",
  16606. height: math.unit(8, "feet"),
  16607. default: true
  16608. },
  16609. ]
  16610. ))
  16611. characterMakers.push(() => makeCharacter(
  16612. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16613. {
  16614. front: {
  16615. height: math.unit(7, "feet"),
  16616. weight: math.unit(130, "lb"),
  16617. name: "Front",
  16618. image: {
  16619. source: "./media/characters/anna/front.svg",
  16620. extra: 169 / 145,
  16621. bottom: 0.06
  16622. }
  16623. },
  16624. full: {
  16625. height: math.unit(4.96, "feet"),
  16626. weight: math.unit(220, "lb"),
  16627. name: "Full",
  16628. image: {
  16629. source: "./media/characters/anna/full.svg",
  16630. extra: 138 / 114,
  16631. bottom: 0.15
  16632. }
  16633. },
  16634. tongue: {
  16635. height: math.unit(2.53, "feet"),
  16636. name: "Tongue",
  16637. image: {
  16638. source: "./media/characters/anna/tongue.svg"
  16639. }
  16640. },
  16641. },
  16642. [
  16643. {
  16644. name: "Normal",
  16645. height: math.unit(7, "feet"),
  16646. default: true
  16647. },
  16648. ]
  16649. ))
  16650. characterMakers.push(() => makeCharacter(
  16651. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16652. {
  16653. front: {
  16654. height: math.unit(7, "feet"),
  16655. weight: math.unit(150, "lb"),
  16656. name: "Front",
  16657. image: {
  16658. source: "./media/characters/ian-corvid/front.svg",
  16659. extra: 150 / 142,
  16660. bottom: 0.02
  16661. }
  16662. },
  16663. back: {
  16664. height: math.unit(7, "feet"),
  16665. weight: math.unit(150, "lb"),
  16666. name: "Back",
  16667. image: {
  16668. source: "./media/characters/ian-corvid/back.svg",
  16669. extra: 150 / 143,
  16670. bottom: 0.01
  16671. }
  16672. },
  16673. stomping: {
  16674. height: math.unit(7, "feet"),
  16675. weight: math.unit(150, "lb"),
  16676. name: "Stomping",
  16677. image: {
  16678. source: "./media/characters/ian-corvid/stomping.svg",
  16679. extra: 76 / 72
  16680. }
  16681. },
  16682. sitting: {
  16683. height: math.unit(7 / 1.8, "feet"),
  16684. weight: math.unit(150, "lb"),
  16685. name: "Sitting",
  16686. image: {
  16687. source: "./media/characters/ian-corvid/sitting.svg",
  16688. extra: 1400 / 1269,
  16689. bottom: 0.15
  16690. }
  16691. },
  16692. },
  16693. [
  16694. {
  16695. name: "Tiny Microw",
  16696. height: math.unit(1, "inch")
  16697. },
  16698. {
  16699. name: "Microw",
  16700. height: math.unit(6, "inches")
  16701. },
  16702. {
  16703. name: "Crow",
  16704. height: math.unit(7 + 1 / 12, "feet"),
  16705. default: true
  16706. },
  16707. {
  16708. name: "Macrow",
  16709. height: math.unit(176, "feet")
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16715. {
  16716. front: {
  16717. height: math.unit(5 + 7 / 12, "feet"),
  16718. weight: math.unit(147, "lb"),
  16719. name: "Front",
  16720. image: {
  16721. source: "./media/characters/natalie-kellon/front.svg",
  16722. extra: 1214 / 1141,
  16723. bottom: 0.02
  16724. }
  16725. },
  16726. },
  16727. [
  16728. {
  16729. name: "Micro",
  16730. height: math.unit(1 / 16, "inch")
  16731. },
  16732. {
  16733. name: "Tiny",
  16734. height: math.unit(4, "inches")
  16735. },
  16736. {
  16737. name: "Normal",
  16738. height: math.unit(5 + 7 / 12, "feet"),
  16739. default: true
  16740. },
  16741. {
  16742. name: "Amazon",
  16743. height: math.unit(12, "feet")
  16744. },
  16745. {
  16746. name: "Giantess",
  16747. height: math.unit(160, "meters")
  16748. },
  16749. {
  16750. name: "Titaness",
  16751. height: math.unit(800, "meters")
  16752. },
  16753. ]
  16754. ))
  16755. characterMakers.push(() => makeCharacter(
  16756. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16757. {
  16758. front: {
  16759. height: math.unit(6, "feet"),
  16760. weight: math.unit(150, "lb"),
  16761. name: "Front",
  16762. image: {
  16763. source: "./media/characters/alluria/front.svg",
  16764. extra: 806 / 738,
  16765. bottom: 0.01
  16766. }
  16767. },
  16768. side: {
  16769. height: math.unit(6, "feet"),
  16770. weight: math.unit(150, "lb"),
  16771. name: "Side",
  16772. image: {
  16773. source: "./media/characters/alluria/side.svg",
  16774. extra: 800 / 750,
  16775. }
  16776. },
  16777. back: {
  16778. height: math.unit(6, "feet"),
  16779. weight: math.unit(150, "lb"),
  16780. name: "Back",
  16781. image: {
  16782. source: "./media/characters/alluria/back.svg",
  16783. extra: 806 / 738,
  16784. }
  16785. },
  16786. frontMaid: {
  16787. height: math.unit(6, "feet"),
  16788. weight: math.unit(150, "lb"),
  16789. name: "Front (Maid)",
  16790. image: {
  16791. source: "./media/characters/alluria/front-maid.svg",
  16792. extra: 806 / 738,
  16793. bottom: 0.01
  16794. }
  16795. },
  16796. sideMaid: {
  16797. height: math.unit(6, "feet"),
  16798. weight: math.unit(150, "lb"),
  16799. name: "Side (Maid)",
  16800. image: {
  16801. source: "./media/characters/alluria/side-maid.svg",
  16802. extra: 800 / 750,
  16803. bottom: 0.005
  16804. }
  16805. },
  16806. backMaid: {
  16807. height: math.unit(6, "feet"),
  16808. weight: math.unit(150, "lb"),
  16809. name: "Back (Maid)",
  16810. image: {
  16811. source: "./media/characters/alluria/back-maid.svg",
  16812. extra: 806 / 738,
  16813. }
  16814. },
  16815. },
  16816. [
  16817. {
  16818. name: "Micro",
  16819. height: math.unit(6, "inches"),
  16820. default: true
  16821. },
  16822. ]
  16823. ))
  16824. characterMakers.push(() => makeCharacter(
  16825. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16826. {
  16827. front: {
  16828. height: math.unit(6, "feet"),
  16829. weight: math.unit(150, "lb"),
  16830. name: "Front",
  16831. image: {
  16832. source: "./media/characters/kyle/front.svg",
  16833. extra: 1069 / 962,
  16834. bottom: 77.228 / 1727.45
  16835. }
  16836. },
  16837. },
  16838. [
  16839. {
  16840. name: "Macro",
  16841. height: math.unit(150, "feet"),
  16842. default: true
  16843. },
  16844. ]
  16845. ))
  16846. characterMakers.push(() => makeCharacter(
  16847. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16848. {
  16849. front: {
  16850. height: math.unit(6, "feet"),
  16851. weight: math.unit(300, "lb"),
  16852. name: "Front",
  16853. image: {
  16854. source: "./media/characters/duncan/front.svg",
  16855. extra: 1650 / 1482,
  16856. bottom: 0.05
  16857. }
  16858. },
  16859. },
  16860. [
  16861. {
  16862. name: "Macro",
  16863. height: math.unit(100, "feet"),
  16864. default: true
  16865. },
  16866. ]
  16867. ))
  16868. characterMakers.push(() => makeCharacter(
  16869. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16870. {
  16871. front: {
  16872. height: math.unit(5 + 4 / 12, "feet"),
  16873. weight: math.unit(220, "lb"),
  16874. name: "Front",
  16875. image: {
  16876. source: "./media/characters/memory/front.svg",
  16877. extra: 3641 / 3545,
  16878. bottom: 0.03
  16879. }
  16880. },
  16881. back: {
  16882. height: math.unit(5 + 4 / 12, "feet"),
  16883. weight: math.unit(220, "lb"),
  16884. name: "Back",
  16885. image: {
  16886. source: "./media/characters/memory/back.svg",
  16887. extra: 3641 / 3545,
  16888. bottom: 0.025
  16889. }
  16890. },
  16891. frontSkirt: {
  16892. height: math.unit(5 + 4 / 12, "feet"),
  16893. weight: math.unit(220, "lb"),
  16894. name: "Front (Skirt)",
  16895. image: {
  16896. source: "./media/characters/memory/front-skirt.svg",
  16897. extra: 3641 / 3545,
  16898. bottom: 0.03
  16899. }
  16900. },
  16901. frontDress: {
  16902. height: math.unit(5 + 4 / 12, "feet"),
  16903. weight: math.unit(220, "lb"),
  16904. name: "Front (Dress)",
  16905. image: {
  16906. source: "./media/characters/memory/front-dress.svg",
  16907. extra: 3641 / 3545,
  16908. bottom: 0.03
  16909. }
  16910. },
  16911. },
  16912. [
  16913. {
  16914. name: "Micro",
  16915. height: math.unit(6, "inches"),
  16916. default: true
  16917. },
  16918. {
  16919. name: "Normal",
  16920. height: math.unit(5 + 4 / 12, "feet")
  16921. },
  16922. ]
  16923. ))
  16924. characterMakers.push(() => makeCharacter(
  16925. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16926. {
  16927. front: {
  16928. height: math.unit(4 + 11 / 12, "feet"),
  16929. weight: math.unit(100, "lb"),
  16930. name: "Front",
  16931. image: {
  16932. source: "./media/characters/luno/front.svg",
  16933. extra: 1535 / 1487,
  16934. bottom: 0.03
  16935. }
  16936. },
  16937. },
  16938. [
  16939. {
  16940. name: "Micro",
  16941. height: math.unit(3, "inches")
  16942. },
  16943. {
  16944. name: "Normal",
  16945. height: math.unit(4 + 11 / 12, "feet"),
  16946. default: true
  16947. },
  16948. {
  16949. name: "Macro",
  16950. height: math.unit(300, "feet")
  16951. },
  16952. {
  16953. name: "Megamacro",
  16954. height: math.unit(700, "miles")
  16955. },
  16956. ]
  16957. ))
  16958. characterMakers.push(() => makeCharacter(
  16959. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16960. {
  16961. front: {
  16962. height: math.unit(6 + 2 / 12, "feet"),
  16963. weight: math.unit(170, "lb"),
  16964. name: "Front",
  16965. image: {
  16966. source: "./media/characters/jamesy/front.svg",
  16967. extra: 440 / 382,
  16968. bottom: 0.005
  16969. }
  16970. },
  16971. },
  16972. [
  16973. {
  16974. name: "Micro",
  16975. height: math.unit(3, "inches")
  16976. },
  16977. {
  16978. name: "Normal",
  16979. height: math.unit(6 + 2 / 12, "feet"),
  16980. default: true
  16981. },
  16982. {
  16983. name: "Macro",
  16984. height: math.unit(300, "feet")
  16985. },
  16986. {
  16987. name: "Megamacro",
  16988. height: math.unit(700, "miles")
  16989. },
  16990. ]
  16991. ))
  16992. characterMakers.push(() => makeCharacter(
  16993. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16994. {
  16995. front: {
  16996. height: math.unit(6, "feet"),
  16997. weight: math.unit(160, "lb"),
  16998. name: "Front",
  16999. image: {
  17000. source: "./media/characters/mark/front.svg",
  17001. extra: 3300 / 3100,
  17002. bottom: 136.42 / 3440.47
  17003. }
  17004. },
  17005. },
  17006. [
  17007. {
  17008. name: "Macro",
  17009. height: math.unit(120, "meters")
  17010. },
  17011. {
  17012. name: "Bigger Macro",
  17013. height: math.unit(350, "meters")
  17014. },
  17015. {
  17016. name: "Megamacro",
  17017. height: math.unit(8, "km"),
  17018. default: true
  17019. },
  17020. {
  17021. name: "Continental",
  17022. height: math.unit(4550, "km")
  17023. },
  17024. {
  17025. name: "Planetary",
  17026. height: math.unit(65000, "km")
  17027. },
  17028. ]
  17029. ))
  17030. characterMakers.push(() => makeCharacter(
  17031. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17032. {
  17033. front: {
  17034. height: math.unit(6, "feet"),
  17035. weight: math.unit(400, "lb"),
  17036. name: "Front",
  17037. image: {
  17038. source: "./media/characters/mac/front.svg",
  17039. extra: 1048 / 987.7,
  17040. bottom: 60 / 1107.6,
  17041. }
  17042. },
  17043. },
  17044. [
  17045. {
  17046. name: "Macro",
  17047. height: math.unit(500, "feet"),
  17048. default: true
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17054. {
  17055. front: {
  17056. height: math.unit(5 + 2 / 12, "feet"),
  17057. weight: math.unit(190, "lb"),
  17058. name: "Front",
  17059. image: {
  17060. source: "./media/characters/bari/front.svg",
  17061. extra: 3156 / 2880,
  17062. bottom: 0.03
  17063. }
  17064. },
  17065. back: {
  17066. height: math.unit(5 + 2 / 12, "feet"),
  17067. weight: math.unit(190, "lb"),
  17068. name: "Back",
  17069. image: {
  17070. source: "./media/characters/bari/back.svg",
  17071. extra: 3260 / 2834,
  17072. bottom: 0.025
  17073. }
  17074. },
  17075. frontPlush: {
  17076. height: math.unit(5 + 2 / 12, "feet"),
  17077. weight: math.unit(190, "lb"),
  17078. name: "Front (Plush)",
  17079. image: {
  17080. source: "./media/characters/bari/front-plush.svg",
  17081. extra: 1112 / 1061,
  17082. bottom: 0.002
  17083. }
  17084. },
  17085. },
  17086. [
  17087. {
  17088. name: "Micro",
  17089. height: math.unit(3, "inches")
  17090. },
  17091. {
  17092. name: "Normal",
  17093. height: math.unit(5 + 2 / 12, "feet"),
  17094. default: true
  17095. },
  17096. {
  17097. name: "Macro",
  17098. height: math.unit(20, "feet")
  17099. },
  17100. ]
  17101. ))
  17102. characterMakers.push(() => makeCharacter(
  17103. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17104. {
  17105. front: {
  17106. height: math.unit(6 + 1 / 12, "feet"),
  17107. weight: math.unit(275, "lb"),
  17108. name: "Front",
  17109. image: {
  17110. source: "./media/characters/hunter-misha-raven/front.svg"
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Mortal",
  17117. height: math.unit(6 + 1 / 12, "feet")
  17118. },
  17119. {
  17120. name: "Divine",
  17121. height: math.unit(1.12134e34, "parsecs"),
  17122. default: true
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17128. {
  17129. front: {
  17130. height: math.unit(6 + 3 / 12, "feet"),
  17131. weight: math.unit(220, "lb"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/max-calore/front.svg",
  17135. extra: 1700 / 1648,
  17136. bottom: 0.01
  17137. }
  17138. },
  17139. back: {
  17140. height: math.unit(6 + 3 / 12, "feet"),
  17141. weight: math.unit(220, "lb"),
  17142. name: "Back",
  17143. image: {
  17144. source: "./media/characters/max-calore/back.svg",
  17145. extra: 1700 / 1648,
  17146. bottom: 0.01
  17147. }
  17148. },
  17149. },
  17150. [
  17151. {
  17152. name: "Normal",
  17153. height: math.unit(6 + 3 / 12, "feet"),
  17154. default: true
  17155. },
  17156. ]
  17157. ))
  17158. characterMakers.push(() => makeCharacter(
  17159. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17160. {
  17161. side: {
  17162. height: math.unit(2 + 8 / 12, "feet"),
  17163. weight: math.unit(99, "lb"),
  17164. name: "Side",
  17165. image: {
  17166. source: "./media/characters/aspen/side.svg",
  17167. extra: 152 / 138,
  17168. bottom: 0.032
  17169. }
  17170. },
  17171. },
  17172. [
  17173. {
  17174. name: "Normal",
  17175. height: math.unit(2 + 8 / 12, "feet"),
  17176. default: true
  17177. },
  17178. ]
  17179. ))
  17180. characterMakers.push(() => makeCharacter(
  17181. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17182. {
  17183. side: {
  17184. height: math.unit(3 + 2 / 12, "feet"),
  17185. weight: math.unit(224, "lb"),
  17186. name: "Side",
  17187. image: {
  17188. source: "./media/characters/sheila-feral-wolf/side.svg",
  17189. extra: 179 / 166,
  17190. bottom: 0.03
  17191. }
  17192. },
  17193. },
  17194. [
  17195. {
  17196. name: "Normal",
  17197. height: math.unit(3 + 2 / 12, "feet"),
  17198. default: true
  17199. },
  17200. ]
  17201. ))
  17202. characterMakers.push(() => makeCharacter(
  17203. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17204. {
  17205. side: {
  17206. height: math.unit(1 + 9 / 12, "feet"),
  17207. weight: math.unit(38, "lb"),
  17208. name: "Side",
  17209. image: {
  17210. source: "./media/characters/michelle/side.svg",
  17211. extra: 147 / 136.7,
  17212. bottom: 0.03
  17213. }
  17214. },
  17215. },
  17216. [
  17217. {
  17218. name: "Normal",
  17219. height: math.unit(1 + 9 / 12, "feet"),
  17220. default: true
  17221. },
  17222. ]
  17223. ))
  17224. characterMakers.push(() => makeCharacter(
  17225. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17226. {
  17227. front: {
  17228. height: math.unit(1.54, "feet"),
  17229. weight: math.unit(50, "lb"),
  17230. name: "Front",
  17231. image: {
  17232. source: "./media/characters/nino/front.svg"
  17233. }
  17234. },
  17235. },
  17236. [
  17237. {
  17238. name: "Normal",
  17239. height: math.unit(1.54, "feet"),
  17240. default: true
  17241. },
  17242. ]
  17243. ))
  17244. characterMakers.push(() => makeCharacter(
  17245. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17246. {
  17247. front: {
  17248. height: math.unit(1, "feet"),
  17249. weight: math.unit(16, "lb"),
  17250. name: "Front",
  17251. image: {
  17252. source: "./media/characters/viola/front.svg"
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(1, "feet"),
  17260. default: true
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17266. {
  17267. front: {
  17268. height: math.unit(6 + 5 / 12, "feet"),
  17269. weight: math.unit(580, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/atlas/front.svg",
  17273. extra: 298.5 / 290,
  17274. bottom: 0.015
  17275. }
  17276. },
  17277. },
  17278. [
  17279. {
  17280. name: "Normal",
  17281. height: math.unit(6 + 5 / 12, "feet"),
  17282. default: true
  17283. },
  17284. ]
  17285. ))
  17286. characterMakers.push(() => makeCharacter(
  17287. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17288. {
  17289. side: {
  17290. height: math.unit(1 + 10 / 12, "feet"),
  17291. weight: math.unit(25, "lb"),
  17292. name: "Side",
  17293. image: {
  17294. source: "./media/characters/davy/side.svg",
  17295. extra: 200 / 170,
  17296. bottom: 0.01
  17297. }
  17298. },
  17299. },
  17300. [
  17301. {
  17302. name: "Normal",
  17303. height: math.unit(1 + 10 / 12, "feet"),
  17304. default: true
  17305. },
  17306. ]
  17307. ))
  17308. characterMakers.push(() => makeCharacter(
  17309. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17310. {
  17311. side: {
  17312. height: math.unit(4 + 8 / 12, "feet"),
  17313. weight: math.unit(166, "lb"),
  17314. name: "Side",
  17315. image: {
  17316. source: "./media/characters/fiona/side.svg",
  17317. extra: 232 / 220,
  17318. bottom: 0.03
  17319. }
  17320. },
  17321. },
  17322. [
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(4 + 8 / 12, "feet"),
  17326. default: true
  17327. },
  17328. ]
  17329. ))
  17330. characterMakers.push(() => makeCharacter(
  17331. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17332. {
  17333. front: {
  17334. height: math.unit(3, "feet"),
  17335. weight: math.unit(100, "lb"),
  17336. name: "Front",
  17337. image: {
  17338. source: "./media/characters/lyla/front.svg",
  17339. bottom: 0.1
  17340. }
  17341. },
  17342. },
  17343. [
  17344. {
  17345. name: "Normal",
  17346. height: math.unit(3, "feet"),
  17347. default: true
  17348. },
  17349. ]
  17350. ))
  17351. characterMakers.push(() => makeCharacter(
  17352. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17353. {
  17354. side: {
  17355. height: math.unit(1.8, "feet"),
  17356. weight: math.unit(44, "lb"),
  17357. name: "Side",
  17358. image: {
  17359. source: "./media/characters/perseus/side.svg",
  17360. bottom: 0.21
  17361. }
  17362. },
  17363. },
  17364. [
  17365. {
  17366. name: "Normal",
  17367. height: math.unit(1.8, "feet"),
  17368. default: true
  17369. },
  17370. ]
  17371. ))
  17372. characterMakers.push(() => makeCharacter(
  17373. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17374. {
  17375. side: {
  17376. height: math.unit(4 + 2 / 12, "feet"),
  17377. weight: math.unit(20, "lb"),
  17378. name: "Side",
  17379. image: {
  17380. source: "./media/characters/remus/side.svg"
  17381. }
  17382. },
  17383. },
  17384. [
  17385. {
  17386. name: "Normal",
  17387. height: math.unit(4 + 2 / 12, "feet"),
  17388. default: true
  17389. },
  17390. ]
  17391. ))
  17392. characterMakers.push(() => makeCharacter(
  17393. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17394. {
  17395. front: {
  17396. height: math.unit(4 + 11 / 12, "feet"),
  17397. weight: math.unit(114, "lb"),
  17398. name: "Front",
  17399. image: {
  17400. source: "./media/characters/raf/front.svg",
  17401. extra: 1504/1339,
  17402. bottom: 26/1530
  17403. }
  17404. },
  17405. side: {
  17406. height: math.unit(4 + 11 / 12, "feet"),
  17407. weight: math.unit(114, "lb"),
  17408. name: "Side",
  17409. image: {
  17410. source: "./media/characters/raf/side.svg",
  17411. extra: 1466/1316,
  17412. bottom: 29/1495
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Micro",
  17419. height: math.unit(2, "inches")
  17420. },
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(4 + 11 / 12, "feet"),
  17424. default: true
  17425. },
  17426. {
  17427. name: "Macro",
  17428. height: math.unit(70, "feet")
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17434. {
  17435. front: {
  17436. height: math.unit(1.5, "meters"),
  17437. weight: math.unit(68, "kg"),
  17438. name: "Front",
  17439. image: {
  17440. source: "./media/characters/liam-einarr/front.svg",
  17441. extra: 2822 / 2666
  17442. }
  17443. },
  17444. back: {
  17445. height: math.unit(1.5, "meters"),
  17446. weight: math.unit(68, "kg"),
  17447. name: "Back",
  17448. image: {
  17449. source: "./media/characters/liam-einarr/back.svg",
  17450. extra: 2822 / 2666,
  17451. bottom: 0.015
  17452. }
  17453. },
  17454. },
  17455. [
  17456. {
  17457. name: "Normal",
  17458. height: math.unit(1.5, "meters"),
  17459. default: true
  17460. },
  17461. {
  17462. name: "Macro",
  17463. height: math.unit(150, "meters")
  17464. },
  17465. {
  17466. name: "Megamacro",
  17467. height: math.unit(35, "km")
  17468. },
  17469. ]
  17470. ))
  17471. characterMakers.push(() => makeCharacter(
  17472. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17473. {
  17474. front: {
  17475. height: math.unit(6, "feet"),
  17476. weight: math.unit(75, "kg"),
  17477. name: "Front",
  17478. image: {
  17479. source: "./media/characters/linda/front.svg",
  17480. extra: 930 / 874,
  17481. bottom: 0.004
  17482. }
  17483. },
  17484. },
  17485. [
  17486. {
  17487. name: "Normal",
  17488. height: math.unit(6, "feet"),
  17489. default: true
  17490. },
  17491. ]
  17492. ))
  17493. characterMakers.push(() => makeCharacter(
  17494. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17495. {
  17496. front: {
  17497. height: math.unit(6 + 8 / 12, "feet"),
  17498. weight: math.unit(220, "lb"),
  17499. name: "Front",
  17500. image: {
  17501. source: "./media/characters/caylex/front.svg",
  17502. extra: 821 / 772,
  17503. bottom: 0.07
  17504. }
  17505. },
  17506. back: {
  17507. height: math.unit(6 + 8 / 12, "feet"),
  17508. weight: math.unit(220, "lb"),
  17509. name: "Back",
  17510. image: {
  17511. source: "./media/characters/caylex/back.svg",
  17512. extra: 821 / 772,
  17513. bottom: 0.022
  17514. }
  17515. },
  17516. hand: {
  17517. height: math.unit(1.25, "feet"),
  17518. name: "Hand",
  17519. image: {
  17520. source: "./media/characters/caylex/hand.svg"
  17521. }
  17522. },
  17523. foot: {
  17524. height: math.unit(1.6, "feet"),
  17525. name: "Foot",
  17526. image: {
  17527. source: "./media/characters/caylex/foot.svg"
  17528. }
  17529. },
  17530. armored: {
  17531. height: math.unit(6 + 8 / 12, "feet"),
  17532. weight: math.unit(250, "lb"),
  17533. name: "Armored",
  17534. image: {
  17535. source: "./media/characters/caylex/armored.svg",
  17536. extra: 1420 / 1310,
  17537. bottom: 0.045
  17538. }
  17539. },
  17540. },
  17541. [
  17542. {
  17543. name: "Normal",
  17544. height: math.unit(6 + 8 / 12, "feet"),
  17545. default: true
  17546. },
  17547. {
  17548. name: "Normal+",
  17549. height: math.unit(12, "feet")
  17550. },
  17551. ]
  17552. ))
  17553. characterMakers.push(() => makeCharacter(
  17554. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17555. {
  17556. front: {
  17557. height: math.unit(7 + 6 / 12, "feet"),
  17558. weight: math.unit(288, "lb"),
  17559. name: "Front",
  17560. image: {
  17561. source: "./media/characters/alana/front.svg",
  17562. extra: 679 / 653,
  17563. bottom: 22.5 / 701
  17564. }
  17565. },
  17566. },
  17567. [
  17568. {
  17569. name: "Normal",
  17570. height: math.unit(7 + 6 / 12, "feet")
  17571. },
  17572. {
  17573. name: "Large",
  17574. height: math.unit(50, "feet")
  17575. },
  17576. {
  17577. name: "Macro",
  17578. height: math.unit(100, "feet"),
  17579. default: true
  17580. },
  17581. {
  17582. name: "Macro+",
  17583. height: math.unit(200, "feet")
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17589. {
  17590. front: {
  17591. height: math.unit(6 + 1 / 12, "feet"),
  17592. weight: math.unit(210, "lb"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/hasani/front.svg",
  17596. extra: 244 / 232,
  17597. bottom: 0.01
  17598. }
  17599. },
  17600. back: {
  17601. height: math.unit(6 + 1 / 12, "feet"),
  17602. weight: math.unit(210, "lb"),
  17603. name: "Back",
  17604. image: {
  17605. source: "./media/characters/hasani/back.svg",
  17606. extra: 244 / 232,
  17607. bottom: 0.01
  17608. }
  17609. },
  17610. },
  17611. [
  17612. {
  17613. name: "Normal",
  17614. height: math.unit(6 + 1 / 12, "feet")
  17615. },
  17616. {
  17617. name: "Macro",
  17618. height: math.unit(175, "feet"),
  17619. default: true
  17620. },
  17621. ]
  17622. ))
  17623. characterMakers.push(() => makeCharacter(
  17624. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17625. {
  17626. front: {
  17627. height: math.unit(1.82, "meters"),
  17628. weight: math.unit(140, "lb"),
  17629. name: "Front",
  17630. image: {
  17631. source: "./media/characters/nita/front.svg",
  17632. extra: 2473 / 2363,
  17633. bottom: 0.01
  17634. }
  17635. },
  17636. },
  17637. [
  17638. {
  17639. name: "Normal",
  17640. height: math.unit(1.82, "m")
  17641. },
  17642. {
  17643. name: "Macro",
  17644. height: math.unit(300, "m")
  17645. },
  17646. {
  17647. name: "Mistake Canon",
  17648. height: math.unit(0.5, "miles"),
  17649. default: true
  17650. },
  17651. {
  17652. name: "Big Mistake",
  17653. height: math.unit(13, "miles")
  17654. },
  17655. {
  17656. name: "Playing God",
  17657. height: math.unit(2450, "miles")
  17658. },
  17659. ]
  17660. ))
  17661. characterMakers.push(() => makeCharacter(
  17662. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17663. {
  17664. front: {
  17665. height: math.unit(4, "feet"),
  17666. weight: math.unit(120, "lb"),
  17667. name: "Front",
  17668. image: {
  17669. source: "./media/characters/shiriko/front.svg",
  17670. extra: 970/934,
  17671. bottom: 5/975
  17672. }
  17673. },
  17674. },
  17675. [
  17676. {
  17677. name: "Normal",
  17678. height: math.unit(4, "feet"),
  17679. default: true
  17680. },
  17681. ]
  17682. ))
  17683. characterMakers.push(() => makeCharacter(
  17684. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17685. {
  17686. front: {
  17687. height: math.unit(6, "feet"),
  17688. name: "front",
  17689. image: {
  17690. source: "./media/characters/deja/front.svg",
  17691. extra: 926 / 840,
  17692. bottom: 0.07
  17693. }
  17694. },
  17695. },
  17696. [
  17697. {
  17698. name: "Planck Length",
  17699. height: math.unit(1.6e-35, "meters")
  17700. },
  17701. {
  17702. name: "Normal",
  17703. height: math.unit(30.48, "meters"),
  17704. default: true
  17705. },
  17706. {
  17707. name: "Universal",
  17708. height: math.unit(8.8e26, "meters")
  17709. },
  17710. ]
  17711. ))
  17712. characterMakers.push(() => makeCharacter(
  17713. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17714. {
  17715. side: {
  17716. height: math.unit(8, "feet"),
  17717. weight: math.unit(6300, "lb"),
  17718. name: "Side",
  17719. image: {
  17720. source: "./media/characters/anima/side.svg",
  17721. bottom: 0.035
  17722. }
  17723. },
  17724. },
  17725. [
  17726. {
  17727. name: "Normal",
  17728. height: math.unit(8, "feet"),
  17729. default: true
  17730. },
  17731. ]
  17732. ))
  17733. characterMakers.push(() => makeCharacter(
  17734. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17735. {
  17736. front: {
  17737. height: math.unit(8, "feet"),
  17738. weight: math.unit(350, "lb"),
  17739. name: "Front",
  17740. image: {
  17741. source: "./media/characters/bianca/front.svg",
  17742. extra: 234 / 225,
  17743. bottom: 0.03
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(8, "feet"),
  17751. default: true
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17757. {
  17758. front: {
  17759. height: math.unit(6, "feet"),
  17760. weight: math.unit(150, "lb"),
  17761. name: "Front",
  17762. image: {
  17763. source: "./media/characters/adinia/front.svg",
  17764. extra: 1845 / 1672,
  17765. bottom: 0.02
  17766. }
  17767. },
  17768. back: {
  17769. height: math.unit(6, "feet"),
  17770. weight: math.unit(150, "lb"),
  17771. name: "Back",
  17772. image: {
  17773. source: "./media/characters/adinia/back.svg",
  17774. extra: 1845 / 1672,
  17775. bottom: 0.002
  17776. }
  17777. },
  17778. },
  17779. [
  17780. {
  17781. name: "Normal",
  17782. height: math.unit(11 + 5 / 12, "feet"),
  17783. default: true
  17784. },
  17785. ]
  17786. ))
  17787. characterMakers.push(() => makeCharacter(
  17788. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17789. {
  17790. front: {
  17791. height: math.unit(3, "meters"),
  17792. weight: math.unit(200, "kg"),
  17793. name: "Front",
  17794. image: {
  17795. source: "./media/characters/lykasa/front.svg",
  17796. extra: 1076 / 976,
  17797. bottom: 0.06
  17798. }
  17799. },
  17800. },
  17801. [
  17802. {
  17803. name: "Normal",
  17804. height: math.unit(3, "meters")
  17805. },
  17806. {
  17807. name: "Kaiju",
  17808. height: math.unit(120, "meters"),
  17809. default: true
  17810. },
  17811. {
  17812. name: "Mega Kaiju",
  17813. height: math.unit(240, "km")
  17814. },
  17815. {
  17816. name: "Giga Kaiju",
  17817. height: math.unit(400, "megameters")
  17818. },
  17819. {
  17820. name: "Tera Kaiju",
  17821. height: math.unit(800, "gigameters")
  17822. },
  17823. {
  17824. name: "Kaiju Dragon Goddess",
  17825. height: math.unit(26, "zettaparsecs")
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17831. {
  17832. side: {
  17833. height: math.unit(283 / 124 * 6, "feet"),
  17834. weight: math.unit(35000, "lb"),
  17835. name: "Side",
  17836. image: {
  17837. source: "./media/characters/malfaren/side.svg",
  17838. extra: 1310/529,
  17839. bottom: 24/1334
  17840. }
  17841. },
  17842. front: {
  17843. height: math.unit(22.36, "feet"),
  17844. weight: math.unit(35000, "lb"),
  17845. name: "Front",
  17846. image: {
  17847. source: "./media/characters/malfaren/front.svg",
  17848. extra: 1237/1115,
  17849. bottom: 32/1269
  17850. }
  17851. },
  17852. maw: {
  17853. height: math.unit(6.9, "feet"),
  17854. name: "Maw",
  17855. image: {
  17856. source: "./media/characters/malfaren/maw.svg"
  17857. }
  17858. },
  17859. dick: {
  17860. height: math.unit(6.19, "feet"),
  17861. name: "Dick",
  17862. image: {
  17863. source: "./media/characters/malfaren/dick.svg"
  17864. }
  17865. },
  17866. eye: {
  17867. height: math.unit(0.69, "feet"),
  17868. name: "Eye",
  17869. image: {
  17870. source: "./media/characters/malfaren/eye.svg"
  17871. }
  17872. },
  17873. },
  17874. [
  17875. {
  17876. name: "Big",
  17877. height: math.unit(283 / 162 * 6, "feet"),
  17878. },
  17879. {
  17880. name: "Bigger",
  17881. height: math.unit(283 / 124 * 6, "feet")
  17882. },
  17883. {
  17884. name: "Massive",
  17885. height: math.unit(283 / 92 * 6, "feet"),
  17886. default: true
  17887. },
  17888. {
  17889. name: "👀💦",
  17890. height: math.unit(283 / 73 * 6, "feet"),
  17891. },
  17892. ]
  17893. ))
  17894. characterMakers.push(() => makeCharacter(
  17895. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17896. {
  17897. front: {
  17898. height: math.unit(1.7, "m"),
  17899. weight: math.unit(70, "kg"),
  17900. name: "Front",
  17901. image: {
  17902. source: "./media/characters/kernel/front.svg",
  17903. extra: 222 / 210,
  17904. bottom: 0.007
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Nano",
  17911. height: math.unit(17, "micrometers")
  17912. },
  17913. {
  17914. name: "Micro",
  17915. height: math.unit(1.7, "mm")
  17916. },
  17917. {
  17918. name: "Small",
  17919. height: math.unit(1.7, "cm")
  17920. },
  17921. {
  17922. name: "Normal",
  17923. height: math.unit(1.7, "m"),
  17924. default: true
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17930. {
  17931. front: {
  17932. height: math.unit(1.75, "meters"),
  17933. weight: math.unit(65, "kg"),
  17934. name: "Front",
  17935. image: {
  17936. source: "./media/characters/jayne-folest/front.svg",
  17937. extra: 2115 / 2007,
  17938. bottom: 0.02
  17939. }
  17940. },
  17941. back: {
  17942. height: math.unit(1.75, "meters"),
  17943. weight: math.unit(65, "kg"),
  17944. name: "Back",
  17945. image: {
  17946. source: "./media/characters/jayne-folest/back.svg",
  17947. extra: 2115 / 2007,
  17948. bottom: 0.005
  17949. }
  17950. },
  17951. frontClothed: {
  17952. height: math.unit(1.75, "meters"),
  17953. weight: math.unit(65, "kg"),
  17954. name: "Front (Clothed)",
  17955. image: {
  17956. source: "./media/characters/jayne-folest/front-clothed.svg",
  17957. extra: 2115 / 2007,
  17958. bottom: 0.035
  17959. }
  17960. },
  17961. hand: {
  17962. height: math.unit(1 / 1.260, "feet"),
  17963. name: "Hand",
  17964. image: {
  17965. source: "./media/characters/jayne-folest/hand.svg"
  17966. }
  17967. },
  17968. foot: {
  17969. height: math.unit(1 / 0.918, "feet"),
  17970. name: "Foot",
  17971. image: {
  17972. source: "./media/characters/jayne-folest/foot.svg"
  17973. }
  17974. },
  17975. },
  17976. [
  17977. {
  17978. name: "Micro",
  17979. height: math.unit(4, "cm")
  17980. },
  17981. {
  17982. name: "Normal",
  17983. height: math.unit(1.75, "meters")
  17984. },
  17985. {
  17986. name: "Macro",
  17987. height: math.unit(47.5, "meters"),
  17988. default: true
  17989. },
  17990. ]
  17991. ))
  17992. characterMakers.push(() => makeCharacter(
  17993. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17994. {
  17995. front: {
  17996. height: math.unit(180, "cm"),
  17997. weight: math.unit(70, "kg"),
  17998. name: "Front",
  17999. image: {
  18000. source: "./media/characters/algier/front.svg",
  18001. extra: 596 / 572,
  18002. bottom: 0.04
  18003. }
  18004. },
  18005. back: {
  18006. height: math.unit(180, "cm"),
  18007. weight: math.unit(70, "kg"),
  18008. name: "Back",
  18009. image: {
  18010. source: "./media/characters/algier/back.svg",
  18011. extra: 596 / 572,
  18012. bottom: 0.025
  18013. }
  18014. },
  18015. frontdressed: {
  18016. height: math.unit(180, "cm"),
  18017. weight: math.unit(150, "kg"),
  18018. name: "Front-dressed",
  18019. image: {
  18020. source: "./media/characters/algier/front-dressed.svg",
  18021. extra: 596 / 572,
  18022. bottom: 0.038
  18023. }
  18024. },
  18025. },
  18026. [
  18027. {
  18028. name: "Micro",
  18029. height: math.unit(5, "cm")
  18030. },
  18031. {
  18032. name: "Normal",
  18033. height: math.unit(180, "cm"),
  18034. default: true
  18035. },
  18036. {
  18037. name: "Macro",
  18038. height: math.unit(64, "m")
  18039. },
  18040. ]
  18041. ))
  18042. characterMakers.push(() => makeCharacter(
  18043. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18044. {
  18045. upright: {
  18046. height: math.unit(7, "feet"),
  18047. weight: math.unit(300, "lb"),
  18048. name: "Upright",
  18049. image: {
  18050. source: "./media/characters/pretzel/upright.svg",
  18051. extra: 534 / 522,
  18052. bottom: 0.065
  18053. }
  18054. },
  18055. sprawling: {
  18056. height: math.unit(3.75, "feet"),
  18057. weight: math.unit(300, "lb"),
  18058. name: "Sprawling",
  18059. image: {
  18060. source: "./media/characters/pretzel/sprawling.svg",
  18061. extra: 314 / 281,
  18062. bottom: 0.1
  18063. }
  18064. },
  18065. tongue: {
  18066. height: math.unit(2, "feet"),
  18067. name: "Tongue",
  18068. image: {
  18069. source: "./media/characters/pretzel/tongue.svg"
  18070. }
  18071. },
  18072. },
  18073. [
  18074. {
  18075. name: "Normal",
  18076. height: math.unit(7, "feet"),
  18077. default: true
  18078. },
  18079. {
  18080. name: "Oversized",
  18081. height: math.unit(15, "feet")
  18082. },
  18083. {
  18084. name: "Huge",
  18085. height: math.unit(30, "feet")
  18086. },
  18087. {
  18088. name: "Macro",
  18089. height: math.unit(250, "feet")
  18090. },
  18091. ]
  18092. ))
  18093. characterMakers.push(() => makeCharacter(
  18094. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18095. {
  18096. sideFront: {
  18097. height: math.unit(5 + 2 / 12, "feet"),
  18098. weight: math.unit(120, "lb"),
  18099. name: "Front Side",
  18100. image: {
  18101. source: "./media/characters/roxi/side-front.svg",
  18102. extra: 2924 / 2717,
  18103. bottom: 0.08
  18104. }
  18105. },
  18106. sideBack: {
  18107. height: math.unit(5 + 2 / 12, "feet"),
  18108. weight: math.unit(120, "lb"),
  18109. name: "Back Side",
  18110. image: {
  18111. source: "./media/characters/roxi/side-back.svg",
  18112. extra: 2904 / 2693,
  18113. bottom: 0.06
  18114. }
  18115. },
  18116. front: {
  18117. height: math.unit(5 + 2 / 12, "feet"),
  18118. weight: math.unit(120, "lb"),
  18119. name: "Front",
  18120. image: {
  18121. source: "./media/characters/roxi/front.svg",
  18122. extra: 2028 / 1907,
  18123. bottom: 0.01
  18124. }
  18125. },
  18126. frontAlt: {
  18127. height: math.unit(5 + 2 / 12, "feet"),
  18128. weight: math.unit(120, "lb"),
  18129. name: "Front (Alt)",
  18130. image: {
  18131. source: "./media/characters/roxi/front-alt.svg",
  18132. extra: 1828 / 1798,
  18133. bottom: 0.01
  18134. }
  18135. },
  18136. sitting: {
  18137. height: math.unit(2.8, "feet"),
  18138. weight: math.unit(120, "lb"),
  18139. name: "Sitting",
  18140. image: {
  18141. source: "./media/characters/roxi/sitting.svg",
  18142. extra: 2660 / 2462,
  18143. bottom: 0.1
  18144. }
  18145. },
  18146. },
  18147. [
  18148. {
  18149. name: "Normal",
  18150. height: math.unit(5 + 2 / 12, "feet"),
  18151. default: true
  18152. },
  18153. ]
  18154. ))
  18155. characterMakers.push(() => makeCharacter(
  18156. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18157. {
  18158. side: {
  18159. height: math.unit(55, "feet"),
  18160. weight: math.unit(153, "tons"),
  18161. name: "Side",
  18162. image: {
  18163. source: "./media/characters/shadow/side.svg",
  18164. extra: 701 / 628,
  18165. bottom: 0.02
  18166. }
  18167. },
  18168. flying: {
  18169. height: math.unit(145, "feet"),
  18170. weight: math.unit(153, "tons"),
  18171. name: "Flying",
  18172. image: {
  18173. source: "./media/characters/shadow/flying.svg"
  18174. }
  18175. },
  18176. },
  18177. [
  18178. {
  18179. name: "Normal",
  18180. height: math.unit(55, "feet"),
  18181. default: true
  18182. },
  18183. ]
  18184. ))
  18185. characterMakers.push(() => makeCharacter(
  18186. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18187. {
  18188. front: {
  18189. height: math.unit(6, "feet"),
  18190. weight: math.unit(200, "lb"),
  18191. name: "Front",
  18192. image: {
  18193. source: "./media/characters/marcie/front.svg",
  18194. extra: 960 / 876,
  18195. bottom: 58 / 1017.87
  18196. }
  18197. },
  18198. },
  18199. [
  18200. {
  18201. name: "Macro",
  18202. height: math.unit(1, "mile"),
  18203. default: true
  18204. },
  18205. ]
  18206. ))
  18207. characterMakers.push(() => makeCharacter(
  18208. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18209. {
  18210. front: {
  18211. height: math.unit(7, "feet"),
  18212. weight: math.unit(200, "lb"),
  18213. name: "Front",
  18214. image: {
  18215. source: "./media/characters/kachina/front.svg",
  18216. extra: 1290.68 / 1119,
  18217. bottom: 36.5 / 1327.18
  18218. }
  18219. },
  18220. },
  18221. [
  18222. {
  18223. name: "Normal",
  18224. height: math.unit(7, "feet"),
  18225. default: true
  18226. },
  18227. ]
  18228. ))
  18229. characterMakers.push(() => makeCharacter(
  18230. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18231. {
  18232. looking: {
  18233. height: math.unit(2, "meters"),
  18234. weight: math.unit(300, "kg"),
  18235. name: "Looking",
  18236. image: {
  18237. source: "./media/characters/kash/looking.svg",
  18238. extra: 474 / 344,
  18239. bottom: 0.03
  18240. }
  18241. },
  18242. side: {
  18243. height: math.unit(2, "meters"),
  18244. weight: math.unit(300, "kg"),
  18245. name: "Side",
  18246. image: {
  18247. source: "./media/characters/kash/side.svg",
  18248. extra: 302 / 251,
  18249. bottom: 0.03
  18250. }
  18251. },
  18252. front: {
  18253. height: math.unit(2, "meters"),
  18254. weight: math.unit(300, "kg"),
  18255. name: "Front",
  18256. image: {
  18257. source: "./media/characters/kash/front.svg",
  18258. extra: 495 / 360,
  18259. bottom: 0.015
  18260. }
  18261. },
  18262. },
  18263. [
  18264. {
  18265. name: "Normal",
  18266. height: math.unit(2, "meters"),
  18267. default: true
  18268. },
  18269. {
  18270. name: "Big",
  18271. height: math.unit(3, "meters")
  18272. },
  18273. {
  18274. name: "Large",
  18275. height: math.unit(5, "meters")
  18276. },
  18277. ]
  18278. ))
  18279. characterMakers.push(() => makeCharacter(
  18280. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18281. {
  18282. feeding: {
  18283. height: math.unit(6.7, "feet"),
  18284. weight: math.unit(350, "lb"),
  18285. name: "Feeding",
  18286. image: {
  18287. source: "./media/characters/lalim/feeding.svg",
  18288. }
  18289. },
  18290. },
  18291. [
  18292. {
  18293. name: "Normal",
  18294. height: math.unit(6.7, "feet"),
  18295. default: true
  18296. },
  18297. ]
  18298. ))
  18299. characterMakers.push(() => makeCharacter(
  18300. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18301. {
  18302. front: {
  18303. height: math.unit(9.5, "feet"),
  18304. weight: math.unit(600, "lb"),
  18305. name: "Front",
  18306. image: {
  18307. source: "./media/characters/de'vout/front.svg",
  18308. extra: 1443 / 1328,
  18309. bottom: 0.025
  18310. }
  18311. },
  18312. back: {
  18313. height: math.unit(9.5, "feet"),
  18314. weight: math.unit(600, "lb"),
  18315. name: "Back",
  18316. image: {
  18317. source: "./media/characters/de'vout/back.svg",
  18318. extra: 1443 / 1328
  18319. }
  18320. },
  18321. frontDressed: {
  18322. height: math.unit(9.5, "feet"),
  18323. weight: math.unit(600, "lb"),
  18324. name: "Front (Dressed",
  18325. image: {
  18326. source: "./media/characters/de'vout/front-dressed.svg",
  18327. extra: 1443 / 1328,
  18328. bottom: 0.025
  18329. }
  18330. },
  18331. backDressed: {
  18332. height: math.unit(9.5, "feet"),
  18333. weight: math.unit(600, "lb"),
  18334. name: "Back (Dressed",
  18335. image: {
  18336. source: "./media/characters/de'vout/back-dressed.svg",
  18337. extra: 1443 / 1328
  18338. }
  18339. },
  18340. },
  18341. [
  18342. {
  18343. name: "Normal",
  18344. height: math.unit(9.5, "feet"),
  18345. default: true
  18346. },
  18347. ]
  18348. ))
  18349. characterMakers.push(() => makeCharacter(
  18350. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18351. {
  18352. front: {
  18353. height: math.unit(8, "feet"),
  18354. weight: math.unit(225, "lb"),
  18355. name: "Front",
  18356. image: {
  18357. source: "./media/characters/talana/front.svg",
  18358. extra: 1410 / 1300,
  18359. bottom: 0.015
  18360. }
  18361. },
  18362. frontDressed: {
  18363. height: math.unit(8, "feet"),
  18364. weight: math.unit(225, "lb"),
  18365. name: "Front (Dressed",
  18366. image: {
  18367. source: "./media/characters/talana/front-dressed.svg",
  18368. extra: 1410 / 1300,
  18369. bottom: 0.015
  18370. }
  18371. },
  18372. },
  18373. [
  18374. {
  18375. name: "Normal",
  18376. height: math.unit(8, "feet"),
  18377. default: true
  18378. },
  18379. ]
  18380. ))
  18381. characterMakers.push(() => makeCharacter(
  18382. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18383. {
  18384. side: {
  18385. height: math.unit(7.2, "feet"),
  18386. weight: math.unit(150, "lb"),
  18387. name: "Side",
  18388. image: {
  18389. source: "./media/characters/xeauvok/side.svg",
  18390. extra: 1975 / 1523,
  18391. bottom: 0.07
  18392. }
  18393. },
  18394. },
  18395. [
  18396. {
  18397. name: "Normal",
  18398. height: math.unit(7.2, "feet"),
  18399. default: true
  18400. },
  18401. ]
  18402. ))
  18403. characterMakers.push(() => makeCharacter(
  18404. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18405. {
  18406. side: {
  18407. height: math.unit(10, "feet"),
  18408. weight: math.unit(900, "kg"),
  18409. name: "Side",
  18410. image: {
  18411. source: "./media/characters/zara/side.svg",
  18412. extra: 504 / 498
  18413. }
  18414. },
  18415. },
  18416. [
  18417. {
  18418. name: "Normal",
  18419. height: math.unit(10, "feet"),
  18420. default: true
  18421. },
  18422. ]
  18423. ))
  18424. characterMakers.push(() => makeCharacter(
  18425. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18426. {
  18427. side: {
  18428. height: math.unit(6, "feet"),
  18429. weight: math.unit(150, "lb"),
  18430. name: "Side",
  18431. image: {
  18432. source: "./media/characters/richard-dragon/side.svg",
  18433. extra: 845 / 340,
  18434. bottom: 0.017
  18435. }
  18436. },
  18437. maw: {
  18438. height: math.unit(2.97, "feet"),
  18439. name: "Maw",
  18440. image: {
  18441. source: "./media/characters/richard-dragon/maw.svg"
  18442. }
  18443. },
  18444. },
  18445. [
  18446. ]
  18447. ))
  18448. characterMakers.push(() => makeCharacter(
  18449. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18450. {
  18451. front: {
  18452. height: math.unit(4, "feet"),
  18453. weight: math.unit(100, "lb"),
  18454. name: "Front",
  18455. image: {
  18456. source: "./media/characters/richard-smeargle/front.svg",
  18457. extra: 2952 / 2820,
  18458. bottom: 0.028
  18459. }
  18460. },
  18461. },
  18462. [
  18463. {
  18464. name: "Normal",
  18465. height: math.unit(4, "feet"),
  18466. default: true
  18467. },
  18468. {
  18469. name: "Dynamax",
  18470. height: math.unit(20, "meters")
  18471. },
  18472. ]
  18473. ))
  18474. characterMakers.push(() => makeCharacter(
  18475. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18476. {
  18477. front: {
  18478. height: math.unit(6, "feet"),
  18479. weight: math.unit(110, "lb"),
  18480. name: "Front",
  18481. image: {
  18482. source: "./media/characters/klay/front.svg",
  18483. extra: 962 / 883,
  18484. bottom: 0.04
  18485. }
  18486. },
  18487. back: {
  18488. height: math.unit(6, "feet"),
  18489. weight: math.unit(110, "lb"),
  18490. name: "Back",
  18491. image: {
  18492. source: "./media/characters/klay/back.svg",
  18493. extra: 962 / 883
  18494. }
  18495. },
  18496. beans: {
  18497. height: math.unit(1.15, "feet"),
  18498. name: "Beans",
  18499. image: {
  18500. source: "./media/characters/klay/beans.svg"
  18501. }
  18502. },
  18503. },
  18504. [
  18505. {
  18506. name: "Micro",
  18507. height: math.unit(6, "inches")
  18508. },
  18509. {
  18510. name: "Mini",
  18511. height: math.unit(3, "feet")
  18512. },
  18513. {
  18514. name: "Normal",
  18515. height: math.unit(6, "feet"),
  18516. default: true
  18517. },
  18518. {
  18519. name: "Big",
  18520. height: math.unit(25, "feet")
  18521. },
  18522. {
  18523. name: "Macro",
  18524. height: math.unit(100, "feet")
  18525. },
  18526. {
  18527. name: "Megamacro",
  18528. height: math.unit(400, "feet")
  18529. },
  18530. ]
  18531. ))
  18532. characterMakers.push(() => makeCharacter(
  18533. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18534. {
  18535. front: {
  18536. height: math.unit(6, "feet"),
  18537. weight: math.unit(160, "lb"),
  18538. name: "Front",
  18539. image: {
  18540. source: "./media/characters/marcus/front.svg",
  18541. extra: 734 / 676,
  18542. bottom: 0.03
  18543. }
  18544. },
  18545. },
  18546. [
  18547. {
  18548. name: "Little",
  18549. height: math.unit(6, "feet")
  18550. },
  18551. {
  18552. name: "Normal",
  18553. height: math.unit(110, "feet"),
  18554. default: true
  18555. },
  18556. {
  18557. name: "Macro",
  18558. height: math.unit(250, "feet")
  18559. },
  18560. {
  18561. name: "Megamacro",
  18562. height: math.unit(1000, "feet")
  18563. },
  18564. ]
  18565. ))
  18566. characterMakers.push(() => makeCharacter(
  18567. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18568. {
  18569. front: {
  18570. height: math.unit(7, "feet"),
  18571. weight: math.unit(275, "lb"),
  18572. name: "Front",
  18573. image: {
  18574. source: "./media/characters/claude-delroute/front.svg",
  18575. extra: 902/827,
  18576. bottom: 26/928
  18577. }
  18578. },
  18579. side: {
  18580. height: math.unit(7, "feet"),
  18581. weight: math.unit(275, "lb"),
  18582. name: "Side",
  18583. image: {
  18584. source: "./media/characters/claude-delroute/side.svg",
  18585. extra: 908/853,
  18586. bottom: 16/924
  18587. }
  18588. },
  18589. back: {
  18590. height: math.unit(7, "feet"),
  18591. weight: math.unit(275, "lb"),
  18592. name: "Back",
  18593. image: {
  18594. source: "./media/characters/claude-delroute/back.svg",
  18595. extra: 911/829,
  18596. bottom: 18/929
  18597. }
  18598. },
  18599. maw: {
  18600. height: math.unit(0.6407, "meters"),
  18601. name: "Maw",
  18602. image: {
  18603. source: "./media/characters/claude-delroute/maw.svg"
  18604. }
  18605. },
  18606. },
  18607. [
  18608. {
  18609. name: "Normal",
  18610. height: math.unit(7, "feet"),
  18611. default: true
  18612. },
  18613. {
  18614. name: "Lorge",
  18615. height: math.unit(20, "feet")
  18616. },
  18617. ]
  18618. ))
  18619. characterMakers.push(() => makeCharacter(
  18620. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18621. {
  18622. front: {
  18623. height: math.unit(8 + 4 / 12, "feet"),
  18624. weight: math.unit(600, "lb"),
  18625. name: "Front",
  18626. image: {
  18627. source: "./media/characters/dragonien/front.svg",
  18628. extra: 100 / 94,
  18629. bottom: 3.3 / 103.3445
  18630. }
  18631. },
  18632. back: {
  18633. height: math.unit(8 + 4 / 12, "feet"),
  18634. weight: math.unit(600, "lb"),
  18635. name: "Back",
  18636. image: {
  18637. source: "./media/characters/dragonien/back.svg",
  18638. extra: 776 / 746,
  18639. bottom: 6.4 / 782.0616
  18640. }
  18641. },
  18642. foot: {
  18643. height: math.unit(1.54, "feet"),
  18644. name: "Foot",
  18645. image: {
  18646. source: "./media/characters/dragonien/foot.svg",
  18647. }
  18648. },
  18649. },
  18650. [
  18651. {
  18652. name: "Normal",
  18653. height: math.unit(8 + 4 / 12, "feet"),
  18654. default: true
  18655. },
  18656. {
  18657. name: "Macro",
  18658. height: math.unit(200, "feet")
  18659. },
  18660. {
  18661. name: "Megamacro",
  18662. height: math.unit(1, "mile")
  18663. },
  18664. {
  18665. name: "Gigamacro",
  18666. height: math.unit(1000, "miles")
  18667. },
  18668. ]
  18669. ))
  18670. characterMakers.push(() => makeCharacter(
  18671. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18672. {
  18673. front: {
  18674. height: math.unit(5 + 2 / 12, "feet"),
  18675. weight: math.unit(110, "lb"),
  18676. name: "Front",
  18677. image: {
  18678. source: "./media/characters/desta/front.svg",
  18679. extra: 767 / 726,
  18680. bottom: 11.7 / 779
  18681. }
  18682. },
  18683. back: {
  18684. height: math.unit(5 + 2 / 12, "feet"),
  18685. weight: math.unit(110, "lb"),
  18686. name: "Back",
  18687. image: {
  18688. source: "./media/characters/desta/back.svg",
  18689. extra: 777 / 728,
  18690. bottom: 6 / 784
  18691. }
  18692. },
  18693. frontAlt: {
  18694. height: math.unit(5 + 2 / 12, "feet"),
  18695. weight: math.unit(110, "lb"),
  18696. name: "Front",
  18697. image: {
  18698. source: "./media/characters/desta/front-alt.svg",
  18699. extra: 1482 / 1417
  18700. }
  18701. },
  18702. side: {
  18703. height: math.unit(5 + 2 / 12, "feet"),
  18704. weight: math.unit(110, "lb"),
  18705. name: "Side",
  18706. image: {
  18707. source: "./media/characters/desta/side.svg",
  18708. extra: 2579 / 2491,
  18709. bottom: 0.053
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Micro",
  18716. height: math.unit(6, "inches")
  18717. },
  18718. {
  18719. name: "Normal",
  18720. height: math.unit(5 + 2 / 12, "feet"),
  18721. default: true
  18722. },
  18723. {
  18724. name: "Macro",
  18725. height: math.unit(62, "feet")
  18726. },
  18727. {
  18728. name: "Megamacro",
  18729. height: math.unit(1800, "feet")
  18730. },
  18731. ]
  18732. ))
  18733. characterMakers.push(() => makeCharacter(
  18734. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18735. {
  18736. front: {
  18737. height: math.unit(10, "feet"),
  18738. weight: math.unit(700, "lb"),
  18739. name: "Front",
  18740. image: {
  18741. source: "./media/characters/storm-alystar/front.svg",
  18742. extra: 2112 / 1898,
  18743. bottom: 0.034
  18744. }
  18745. },
  18746. },
  18747. [
  18748. {
  18749. name: "Micro",
  18750. height: math.unit(3.5, "inches")
  18751. },
  18752. {
  18753. name: "Normal",
  18754. height: math.unit(10, "feet"),
  18755. default: true
  18756. },
  18757. {
  18758. name: "Macro",
  18759. height: math.unit(400, "feet")
  18760. },
  18761. {
  18762. name: "Deific",
  18763. height: math.unit(60, "miles")
  18764. },
  18765. ]
  18766. ))
  18767. characterMakers.push(() => makeCharacter(
  18768. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18769. {
  18770. front: {
  18771. height: math.unit(2.35, "meters"),
  18772. weight: math.unit(119, "kg"),
  18773. name: "Front",
  18774. image: {
  18775. source: "./media/characters/ilia/front.svg",
  18776. extra: 1285 / 1255,
  18777. bottom: 0.06
  18778. }
  18779. },
  18780. },
  18781. [
  18782. {
  18783. name: "Normal",
  18784. height: math.unit(2.35, "meters")
  18785. },
  18786. {
  18787. name: "Macro",
  18788. height: math.unit(140, "meters"),
  18789. default: true
  18790. },
  18791. {
  18792. name: "Megamacro",
  18793. height: math.unit(100, "miles")
  18794. },
  18795. ]
  18796. ))
  18797. characterMakers.push(() => makeCharacter(
  18798. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18799. {
  18800. front: {
  18801. height: math.unit(6 + 5 / 12, "feet"),
  18802. weight: math.unit(190, "lb"),
  18803. name: "Front",
  18804. image: {
  18805. source: "./media/characters/kingdead/front.svg",
  18806. extra: 1228 / 1177
  18807. }
  18808. },
  18809. },
  18810. [
  18811. {
  18812. name: "Micro",
  18813. height: math.unit(7, "inches")
  18814. },
  18815. {
  18816. name: "Normal",
  18817. height: math.unit(6 + 5 / 12, "feet")
  18818. },
  18819. {
  18820. name: "Macro",
  18821. height: math.unit(150, "feet"),
  18822. default: true
  18823. },
  18824. {
  18825. name: "Megamacro",
  18826. height: math.unit(200, "miles")
  18827. },
  18828. ]
  18829. ))
  18830. characterMakers.push(() => makeCharacter(
  18831. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18832. {
  18833. front: {
  18834. height: math.unit(8, "feet"),
  18835. weight: math.unit(600, "lb"),
  18836. name: "Front",
  18837. image: {
  18838. source: "./media/characters/kyrehx/front.svg",
  18839. extra: 1195 / 1095,
  18840. bottom: 0.034
  18841. }
  18842. },
  18843. },
  18844. [
  18845. {
  18846. name: "Micro",
  18847. height: math.unit(2, "inches")
  18848. },
  18849. {
  18850. name: "Normal",
  18851. height: math.unit(8, "feet"),
  18852. default: true
  18853. },
  18854. {
  18855. name: "Macro",
  18856. height: math.unit(255, "feet")
  18857. },
  18858. ]
  18859. ))
  18860. characterMakers.push(() => makeCharacter(
  18861. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18862. {
  18863. front: {
  18864. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18865. weight: math.unit(184, "lb"),
  18866. name: "Front",
  18867. image: {
  18868. source: "./media/characters/xang/front.svg",
  18869. extra: 845 / 755
  18870. }
  18871. },
  18872. },
  18873. [
  18874. {
  18875. name: "Normal",
  18876. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18877. default: true
  18878. },
  18879. {
  18880. name: "Macro",
  18881. height: math.unit(0.935 * 146, "feet")
  18882. },
  18883. {
  18884. name: "Megamacro",
  18885. height: math.unit(0.935 * 3, "miles")
  18886. },
  18887. ]
  18888. ))
  18889. characterMakers.push(() => makeCharacter(
  18890. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18891. {
  18892. frontDressed: {
  18893. height: math.unit(5 + 7 / 12, "feet"),
  18894. weight: math.unit(140, "lb"),
  18895. name: "Front (Dressed)",
  18896. image: {
  18897. source: "./media/characters/doc-weardno/front-dressed.svg",
  18898. extra: 263 / 234
  18899. }
  18900. },
  18901. backDressed: {
  18902. height: math.unit(5 + 7 / 12, "feet"),
  18903. weight: math.unit(140, "lb"),
  18904. name: "Back (Dressed)",
  18905. image: {
  18906. source: "./media/characters/doc-weardno/back-dressed.svg",
  18907. extra: 266 / 238
  18908. }
  18909. },
  18910. front: {
  18911. height: math.unit(5 + 7 / 12, "feet"),
  18912. weight: math.unit(140, "lb"),
  18913. name: "Front",
  18914. image: {
  18915. source: "./media/characters/doc-weardno/front.svg",
  18916. extra: 254 / 233
  18917. }
  18918. },
  18919. },
  18920. [
  18921. {
  18922. name: "Micro",
  18923. height: math.unit(3, "inches")
  18924. },
  18925. {
  18926. name: "Normal",
  18927. height: math.unit(5 + 7 / 12, "feet"),
  18928. default: true
  18929. },
  18930. {
  18931. name: "Macro",
  18932. height: math.unit(25, "feet")
  18933. },
  18934. {
  18935. name: "Megamacro",
  18936. height: math.unit(2, "miles")
  18937. },
  18938. ]
  18939. ))
  18940. characterMakers.push(() => makeCharacter(
  18941. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18942. {
  18943. front: {
  18944. height: math.unit(6 + 2 / 12, "feet"),
  18945. weight: math.unit(153, "lb"),
  18946. name: "Front",
  18947. image: {
  18948. source: "./media/characters/seth-whilst/front.svg",
  18949. bottom: 0.07
  18950. }
  18951. },
  18952. },
  18953. [
  18954. {
  18955. name: "Micro",
  18956. height: math.unit(5, "inches")
  18957. },
  18958. {
  18959. name: "Normal",
  18960. height: math.unit(6 + 2 / 12, "feet"),
  18961. default: true
  18962. },
  18963. ]
  18964. ))
  18965. characterMakers.push(() => makeCharacter(
  18966. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18967. {
  18968. front: {
  18969. height: math.unit(3, "inches"),
  18970. weight: math.unit(8, "grams"),
  18971. name: "Front",
  18972. image: {
  18973. source: "./media/characters/pocket-jabari/front.svg",
  18974. extra: 1024 / 974,
  18975. bottom: 0.039
  18976. }
  18977. },
  18978. },
  18979. [
  18980. {
  18981. name: "Minimicro",
  18982. height: math.unit(8, "mm")
  18983. },
  18984. {
  18985. name: "Micro",
  18986. height: math.unit(3, "inches"),
  18987. default: true
  18988. },
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(3, "feet")
  18992. },
  18993. ]
  18994. ))
  18995. characterMakers.push(() => makeCharacter(
  18996. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18997. {
  18998. front: {
  18999. height: math.unit(15, "feet"),
  19000. weight: math.unit(3280, "lb"),
  19001. name: "Front",
  19002. image: {
  19003. source: "./media/characters/sapphy/front.svg",
  19004. extra: 671 / 577,
  19005. bottom: 0.085
  19006. }
  19007. },
  19008. back: {
  19009. height: math.unit(15, "feet"),
  19010. weight: math.unit(3280, "lb"),
  19011. name: "Back",
  19012. image: {
  19013. source: "./media/characters/sapphy/back.svg",
  19014. extra: 631 / 607,
  19015. bottom: 0.045
  19016. }
  19017. },
  19018. },
  19019. [
  19020. {
  19021. name: "Normal",
  19022. height: math.unit(15, "feet")
  19023. },
  19024. {
  19025. name: "Casual Macro",
  19026. height: math.unit(120, "feet")
  19027. },
  19028. {
  19029. name: "Macro",
  19030. height: math.unit(2150, "feet"),
  19031. default: true
  19032. },
  19033. {
  19034. name: "Megamacro",
  19035. height: math.unit(8, "miles")
  19036. },
  19037. {
  19038. name: "Galaxy Mom",
  19039. height: math.unit(6, "megalightyears")
  19040. },
  19041. ]
  19042. ))
  19043. characterMakers.push(() => makeCharacter(
  19044. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19045. {
  19046. front: {
  19047. height: math.unit(6, "feet"),
  19048. weight: math.unit(170, "lb"),
  19049. name: "Front",
  19050. image: {
  19051. source: "./media/characters/kiro/front.svg",
  19052. extra: 1064 / 1012,
  19053. bottom: 0.052
  19054. }
  19055. },
  19056. },
  19057. [
  19058. {
  19059. name: "Micro",
  19060. height: math.unit(6, "inches")
  19061. },
  19062. {
  19063. name: "Normal",
  19064. height: math.unit(6, "feet"),
  19065. default: true
  19066. },
  19067. {
  19068. name: "Macro",
  19069. height: math.unit(72, "feet")
  19070. },
  19071. ]
  19072. ))
  19073. characterMakers.push(() => makeCharacter(
  19074. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19075. {
  19076. front: {
  19077. height: math.unit(5 + 9 / 12, "feet"),
  19078. weight: math.unit(175, "lb"),
  19079. name: "Front",
  19080. image: {
  19081. source: "./media/characters/irishfox/front.svg",
  19082. extra: 1912 / 1680,
  19083. bottom: 0.02
  19084. }
  19085. },
  19086. },
  19087. [
  19088. {
  19089. name: "Nano",
  19090. height: math.unit(1, "mm")
  19091. },
  19092. {
  19093. name: "Micro",
  19094. height: math.unit(2, "inches")
  19095. },
  19096. {
  19097. name: "Normal",
  19098. height: math.unit(5 + 9 / 12, "feet"),
  19099. default: true
  19100. },
  19101. {
  19102. name: "Macro",
  19103. height: math.unit(45, "feet")
  19104. },
  19105. ]
  19106. ))
  19107. characterMakers.push(() => makeCharacter(
  19108. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19109. {
  19110. front: {
  19111. height: math.unit(6 + 1 / 12, "feet"),
  19112. weight: math.unit(75, "lb"),
  19113. name: "Front",
  19114. image: {
  19115. source: "./media/characters/aronai-sieyes/front.svg",
  19116. extra: 1532/1450,
  19117. bottom: 42/1574
  19118. }
  19119. },
  19120. side: {
  19121. height: math.unit(6 + 1 / 12, "feet"),
  19122. weight: math.unit(75, "lb"),
  19123. name: "Side",
  19124. image: {
  19125. source: "./media/characters/aronai-sieyes/side.svg",
  19126. extra: 1422/1365,
  19127. bottom: 148/1570
  19128. }
  19129. },
  19130. back: {
  19131. height: math.unit(6 + 1 / 12, "feet"),
  19132. weight: math.unit(75, "lb"),
  19133. name: "Back",
  19134. image: {
  19135. source: "./media/characters/aronai-sieyes/back.svg",
  19136. extra: 1526/1464,
  19137. bottom: 51/1577
  19138. }
  19139. },
  19140. dressed: {
  19141. height: math.unit(6 + 1 / 12, "feet"),
  19142. weight: math.unit(75, "lb"),
  19143. name: "Dressed",
  19144. image: {
  19145. source: "./media/characters/aronai-sieyes/dressed.svg",
  19146. extra: 1559/1483,
  19147. bottom: 39/1598
  19148. }
  19149. },
  19150. slit: {
  19151. height: math.unit(1.3, "feet"),
  19152. name: "Slit",
  19153. image: {
  19154. source: "./media/characters/aronai-sieyes/slit.svg"
  19155. }
  19156. },
  19157. slitSpread: {
  19158. height: math.unit(0.9, "feet"),
  19159. name: "Slit (Spread)",
  19160. image: {
  19161. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19162. }
  19163. },
  19164. rump: {
  19165. height: math.unit(1.3, "feet"),
  19166. name: "Rump",
  19167. image: {
  19168. source: "./media/characters/aronai-sieyes/rump.svg"
  19169. }
  19170. },
  19171. maw: {
  19172. height: math.unit(1.25, "feet"),
  19173. name: "Maw",
  19174. image: {
  19175. source: "./media/characters/aronai-sieyes/maw.svg"
  19176. }
  19177. },
  19178. feral: {
  19179. height: math.unit(18, "feet"),
  19180. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19181. name: "Feral",
  19182. image: {
  19183. source: "./media/characters/aronai-sieyes/feral.svg",
  19184. extra: 1530 / 1240,
  19185. bottom: 0.035
  19186. }
  19187. },
  19188. },
  19189. [
  19190. {
  19191. name: "Micro",
  19192. height: math.unit(2, "inches")
  19193. },
  19194. {
  19195. name: "Normal",
  19196. height: math.unit(6 + 1 / 12, "feet"),
  19197. default: true
  19198. }
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19203. {
  19204. front: {
  19205. height: math.unit(12, "feet"),
  19206. weight: math.unit(410, "kg"),
  19207. name: "Front",
  19208. image: {
  19209. source: "./media/characters/xuna/front.svg",
  19210. extra: 2184 / 1980
  19211. }
  19212. },
  19213. side: {
  19214. height: math.unit(12, "feet"),
  19215. weight: math.unit(410, "kg"),
  19216. name: "Side",
  19217. image: {
  19218. source: "./media/characters/xuna/side.svg",
  19219. extra: 2184 / 1980
  19220. }
  19221. },
  19222. back: {
  19223. height: math.unit(12, "feet"),
  19224. weight: math.unit(410, "kg"),
  19225. name: "Back",
  19226. image: {
  19227. source: "./media/characters/xuna/back.svg",
  19228. extra: 2184 / 1980
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Nano glow",
  19235. height: math.unit(10, "nm")
  19236. },
  19237. {
  19238. name: "Micro floof",
  19239. height: math.unit(0.3, "m")
  19240. },
  19241. {
  19242. name: "Huggable softy boi",
  19243. height: math.unit(3.6576, "m"),
  19244. default: true
  19245. },
  19246. {
  19247. name: "Admirable floof",
  19248. height: math.unit(80, "meters")
  19249. },
  19250. {
  19251. name: "Gentle macro",
  19252. height: math.unit(300, "meters")
  19253. },
  19254. {
  19255. name: "Very careful floof",
  19256. height: math.unit(3200, "meters")
  19257. },
  19258. {
  19259. name: "The mega floof",
  19260. height: math.unit(36000, "meters")
  19261. },
  19262. {
  19263. name: "Giga-fur-Wicker",
  19264. height: math.unit(4800000, "meters")
  19265. },
  19266. {
  19267. name: "Licky world",
  19268. height: math.unit(20000000, "meters")
  19269. },
  19270. {
  19271. name: "Floofy cyan sun",
  19272. height: math.unit(1500000000, "meters")
  19273. },
  19274. {
  19275. name: "Milky Wicker",
  19276. height: math.unit(1000000000000000000000, "meters")
  19277. },
  19278. {
  19279. name: "The observing Wicker",
  19280. height: math.unit(999999999999999999999999999, "meters")
  19281. },
  19282. ]
  19283. ))
  19284. characterMakers.push(() => makeCharacter(
  19285. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19286. {
  19287. front: {
  19288. height: math.unit(5 + 9 / 12, "feet"),
  19289. weight: math.unit(150, "lb"),
  19290. name: "Front",
  19291. image: {
  19292. source: "./media/characters/arokha-sieyes/front.svg",
  19293. extra: 1425 / 1284,
  19294. bottom: 0.05
  19295. }
  19296. },
  19297. },
  19298. [
  19299. {
  19300. name: "Normal",
  19301. height: math.unit(5 + 9 / 12, "feet")
  19302. },
  19303. {
  19304. name: "Macro",
  19305. height: math.unit(30, "meters"),
  19306. default: true
  19307. },
  19308. ]
  19309. ))
  19310. characterMakers.push(() => makeCharacter(
  19311. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19312. {
  19313. front: {
  19314. height: math.unit(6, "feet"),
  19315. weight: math.unit(180, "lb"),
  19316. name: "Front",
  19317. image: {
  19318. source: "./media/characters/arokh-sieyes/front.svg",
  19319. extra: 1830 / 1769,
  19320. bottom: 0.01
  19321. }
  19322. },
  19323. },
  19324. [
  19325. {
  19326. name: "Normal",
  19327. height: math.unit(6, "feet")
  19328. },
  19329. {
  19330. name: "Macro",
  19331. height: math.unit(30, "meters"),
  19332. default: true
  19333. },
  19334. ]
  19335. ))
  19336. characterMakers.push(() => makeCharacter(
  19337. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19338. {
  19339. side: {
  19340. height: math.unit(13 + 1 / 12, "feet"),
  19341. weight: math.unit(8.5, "tonnes"),
  19342. name: "Side",
  19343. image: {
  19344. source: "./media/characters/goldeneye/side.svg",
  19345. extra: 1182 / 778,
  19346. bottom: 0.067
  19347. }
  19348. },
  19349. paw: {
  19350. height: math.unit(3.4, "feet"),
  19351. name: "Paw",
  19352. image: {
  19353. source: "./media/characters/goldeneye/paw.svg"
  19354. }
  19355. },
  19356. },
  19357. [
  19358. {
  19359. name: "Normal",
  19360. height: math.unit(13 + 1 / 12, "feet"),
  19361. default: true
  19362. },
  19363. ]
  19364. ))
  19365. characterMakers.push(() => makeCharacter(
  19366. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19367. {
  19368. front: {
  19369. height: math.unit(6 + 1 / 12, "feet"),
  19370. weight: math.unit(210, "lb"),
  19371. name: "Front",
  19372. image: {
  19373. source: "./media/characters/leonardo-lycheborne/front.svg",
  19374. extra: 776/723,
  19375. bottom: 34/810
  19376. }
  19377. },
  19378. side: {
  19379. height: math.unit(6 + 1 / 12, "feet"),
  19380. weight: math.unit(210, "lb"),
  19381. name: "Side",
  19382. image: {
  19383. source: "./media/characters/leonardo-lycheborne/side.svg",
  19384. extra: 780/728,
  19385. bottom: 12/792
  19386. }
  19387. },
  19388. back: {
  19389. height: math.unit(6 + 1 / 12, "feet"),
  19390. weight: math.unit(210, "lb"),
  19391. name: "Back",
  19392. image: {
  19393. source: "./media/characters/leonardo-lycheborne/back.svg",
  19394. extra: 775/721,
  19395. bottom: 17/792
  19396. }
  19397. },
  19398. hand: {
  19399. height: math.unit(1.08, "feet"),
  19400. name: "Hand",
  19401. image: {
  19402. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19403. }
  19404. },
  19405. foot: {
  19406. height: math.unit(1.32, "feet"),
  19407. name: "Foot",
  19408. image: {
  19409. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19410. }
  19411. },
  19412. maw: {
  19413. height: math.unit(1, "feet"),
  19414. name: "Maw",
  19415. image: {
  19416. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19417. }
  19418. },
  19419. were: {
  19420. height: math.unit(20, "feet"),
  19421. weight: math.unit(7800, "lb"),
  19422. name: "Were",
  19423. image: {
  19424. source: "./media/characters/leonardo-lycheborne/were.svg",
  19425. extra: 1224/1165,
  19426. bottom: 72/1296
  19427. }
  19428. },
  19429. feral: {
  19430. height: math.unit(7.5, "feet"),
  19431. weight: math.unit(600, "lb"),
  19432. name: "Feral",
  19433. image: {
  19434. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19435. extra: 797/702,
  19436. bottom: 139/936
  19437. }
  19438. },
  19439. taur: {
  19440. height: math.unit(11, "feet"),
  19441. weight: math.unit(3300, "lb"),
  19442. name: "Taur",
  19443. image: {
  19444. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19445. extra: 1271/1197,
  19446. bottom: 47/1318
  19447. }
  19448. },
  19449. barghest: {
  19450. height: math.unit(11, "feet"),
  19451. weight: math.unit(1300, "lb"),
  19452. name: "Barghest",
  19453. image: {
  19454. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19455. extra: 1291/1204,
  19456. bottom: 37/1328
  19457. }
  19458. },
  19459. dick: {
  19460. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19461. name: "Dick",
  19462. image: {
  19463. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19464. }
  19465. },
  19466. dickWere: {
  19467. height: math.unit((20) / 3.8, "feet"),
  19468. name: "Dick (Were)",
  19469. image: {
  19470. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19471. }
  19472. },
  19473. },
  19474. [
  19475. {
  19476. name: "Normal",
  19477. height: math.unit(6 + 1 / 12, "feet"),
  19478. default: true
  19479. },
  19480. ]
  19481. ))
  19482. characterMakers.push(() => makeCharacter(
  19483. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19484. {
  19485. front: {
  19486. height: math.unit(10, "feet"),
  19487. weight: math.unit(350, "lb"),
  19488. name: "Front",
  19489. image: {
  19490. source: "./media/characters/jet/front.svg",
  19491. extra: 2050 / 1980,
  19492. bottom: 0.013
  19493. }
  19494. },
  19495. back: {
  19496. height: math.unit(10, "feet"),
  19497. weight: math.unit(350, "lb"),
  19498. name: "Back",
  19499. image: {
  19500. source: "./media/characters/jet/back.svg",
  19501. extra: 2050 / 1980,
  19502. bottom: 0.013
  19503. }
  19504. },
  19505. },
  19506. [
  19507. {
  19508. name: "Micro",
  19509. height: math.unit(6, "inches")
  19510. },
  19511. {
  19512. name: "Normal",
  19513. height: math.unit(10, "feet"),
  19514. default: true
  19515. },
  19516. {
  19517. name: "Macro",
  19518. height: math.unit(100, "feet")
  19519. },
  19520. ]
  19521. ))
  19522. characterMakers.push(() => makeCharacter(
  19523. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19524. {
  19525. front: {
  19526. height: math.unit(15, "feet"),
  19527. weight: math.unit(2800, "lb"),
  19528. name: "Front",
  19529. image: {
  19530. source: "./media/characters/tanarath/front.svg",
  19531. extra: 2392 / 2220,
  19532. bottom: 0.03
  19533. }
  19534. },
  19535. back: {
  19536. height: math.unit(15, "feet"),
  19537. weight: math.unit(2800, "lb"),
  19538. name: "Back",
  19539. image: {
  19540. source: "./media/characters/tanarath/back.svg",
  19541. extra: 2392 / 2220,
  19542. bottom: 0.03
  19543. }
  19544. },
  19545. },
  19546. [
  19547. {
  19548. name: "Normal",
  19549. height: math.unit(15, "feet"),
  19550. default: true
  19551. },
  19552. ]
  19553. ))
  19554. characterMakers.push(() => makeCharacter(
  19555. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19556. {
  19557. front: {
  19558. height: math.unit(7 + 1 / 12, "feet"),
  19559. weight: math.unit(175, "lb"),
  19560. name: "Front",
  19561. image: {
  19562. source: "./media/characters/patty-cattybatty/front.svg",
  19563. extra: 908 / 874,
  19564. bottom: 0.025
  19565. }
  19566. },
  19567. },
  19568. [
  19569. {
  19570. name: "Micro",
  19571. height: math.unit(1, "inch")
  19572. },
  19573. {
  19574. name: "Normal",
  19575. height: math.unit(7 + 1 / 12, "feet")
  19576. },
  19577. {
  19578. name: "Mini Macro",
  19579. height: math.unit(155, "feet")
  19580. },
  19581. {
  19582. name: "Macro",
  19583. height: math.unit(1077, "feet")
  19584. },
  19585. {
  19586. name: "Mega Macro",
  19587. height: math.unit(47650, "feet"),
  19588. default: true
  19589. },
  19590. {
  19591. name: "Giga Macro",
  19592. height: math.unit(440, "miles")
  19593. },
  19594. {
  19595. name: "Tera Macro",
  19596. height: math.unit(8700, "miles")
  19597. },
  19598. {
  19599. name: "Planetary Macro",
  19600. height: math.unit(32700, "miles")
  19601. },
  19602. {
  19603. name: "Solar Macro",
  19604. height: math.unit(550000, "miles")
  19605. },
  19606. {
  19607. name: "Celestial Macro",
  19608. height: math.unit(2.5, "AU")
  19609. },
  19610. ]
  19611. ))
  19612. characterMakers.push(() => makeCharacter(
  19613. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19614. {
  19615. front: {
  19616. height: math.unit(4 + 5 / 12, "feet"),
  19617. weight: math.unit(90, "lb"),
  19618. name: "Front",
  19619. image: {
  19620. source: "./media/characters/cappu/front.svg",
  19621. extra: 1247 / 1152,
  19622. bottom: 0.012
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Normal",
  19629. height: math.unit(4 + 5 / 12, "feet"),
  19630. default: true
  19631. },
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19636. {
  19637. frontDressed: {
  19638. height: math.unit(70, "cm"),
  19639. weight: math.unit(6, "kg"),
  19640. name: "Front (Dressed)",
  19641. image: {
  19642. source: "./media/characters/sebi/front-dressed.svg",
  19643. extra: 713.5 / 686.5,
  19644. bottom: 0.003
  19645. }
  19646. },
  19647. front: {
  19648. height: math.unit(70, "cm"),
  19649. weight: math.unit(5, "kg"),
  19650. name: "Front",
  19651. image: {
  19652. source: "./media/characters/sebi/front.svg",
  19653. extra: 713.5 / 686.5,
  19654. bottom: 0.003
  19655. }
  19656. }
  19657. },
  19658. [
  19659. {
  19660. name: "Normal",
  19661. height: math.unit(70, "cm"),
  19662. default: true
  19663. },
  19664. {
  19665. name: "Macro",
  19666. height: math.unit(8, "meters")
  19667. },
  19668. ]
  19669. ))
  19670. characterMakers.push(() => makeCharacter(
  19671. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19672. {
  19673. front: {
  19674. height: math.unit(6, "feet"),
  19675. weight: math.unit(150, "lb"),
  19676. name: "Front",
  19677. image: {
  19678. source: "./media/characters/typhek/front.svg",
  19679. extra: 1948 / 1929,
  19680. bottom: 0.025
  19681. }
  19682. },
  19683. side: {
  19684. height: math.unit(6, "feet"),
  19685. weight: math.unit(150, "lb"),
  19686. name: "Side",
  19687. image: {
  19688. source: "./media/characters/typhek/side.svg",
  19689. extra: 2034 / 2010,
  19690. bottom: 0.003
  19691. }
  19692. },
  19693. back: {
  19694. height: math.unit(6, "feet"),
  19695. weight: math.unit(150, "lb"),
  19696. name: "Back",
  19697. image: {
  19698. source: "./media/characters/typhek/back.svg",
  19699. extra: 2005 / 1978,
  19700. bottom: 0.004
  19701. }
  19702. },
  19703. palm: {
  19704. height: math.unit(1.2, "feet"),
  19705. name: "Palm",
  19706. image: {
  19707. source: "./media/characters/typhek/palm.svg"
  19708. }
  19709. },
  19710. fist: {
  19711. height: math.unit(1.1, "feet"),
  19712. name: "Fist",
  19713. image: {
  19714. source: "./media/characters/typhek/fist.svg"
  19715. }
  19716. },
  19717. foot: {
  19718. height: math.unit(1.57, "feet"),
  19719. name: "Foot",
  19720. image: {
  19721. source: "./media/characters/typhek/foot.svg"
  19722. }
  19723. },
  19724. sole: {
  19725. height: math.unit(2.05, "feet"),
  19726. name: "Sole",
  19727. image: {
  19728. source: "./media/characters/typhek/sole.svg"
  19729. }
  19730. },
  19731. },
  19732. [
  19733. {
  19734. name: "Macro",
  19735. height: math.unit(40, "stories"),
  19736. default: true
  19737. },
  19738. {
  19739. name: "Megamacro",
  19740. height: math.unit(1, "mile")
  19741. },
  19742. {
  19743. name: "Gigamacro",
  19744. height: math.unit(4000, "solarradii")
  19745. },
  19746. {
  19747. name: "Universal",
  19748. height: math.unit(1.1, "universes")
  19749. }
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19754. {
  19755. side: {
  19756. height: math.unit(5 + 7 / 12, "feet"),
  19757. weight: math.unit(150, "lb"),
  19758. name: "Side",
  19759. image: {
  19760. source: "./media/characters/kassy/side.svg",
  19761. extra: 1280 / 1225,
  19762. bottom: 0.002
  19763. }
  19764. },
  19765. front: {
  19766. height: math.unit(5 + 7 / 12, "feet"),
  19767. weight: math.unit(150, "lb"),
  19768. name: "Front",
  19769. image: {
  19770. source: "./media/characters/kassy/front.svg",
  19771. extra: 1280 / 1225,
  19772. bottom: 0.025
  19773. }
  19774. },
  19775. back: {
  19776. height: math.unit(5 + 7 / 12, "feet"),
  19777. weight: math.unit(150, "lb"),
  19778. name: "Back",
  19779. image: {
  19780. source: "./media/characters/kassy/back.svg",
  19781. extra: 1280 / 1225,
  19782. bottom: 0.002
  19783. }
  19784. },
  19785. foot: {
  19786. height: math.unit(1.266, "feet"),
  19787. name: "Foot",
  19788. image: {
  19789. source: "./media/characters/kassy/foot.svg"
  19790. }
  19791. },
  19792. },
  19793. [
  19794. {
  19795. name: "Normal",
  19796. height: math.unit(5 + 7 / 12, "feet")
  19797. },
  19798. {
  19799. name: "Macro",
  19800. height: math.unit(137, "feet"),
  19801. default: true
  19802. },
  19803. {
  19804. name: "Megamacro",
  19805. height: math.unit(1, "mile")
  19806. },
  19807. ]
  19808. ))
  19809. characterMakers.push(() => makeCharacter(
  19810. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19811. {
  19812. front: {
  19813. height: math.unit(6 + 1 / 12, "feet"),
  19814. weight: math.unit(200, "lb"),
  19815. name: "Front",
  19816. image: {
  19817. source: "./media/characters/neil/front.svg",
  19818. extra: 1326 / 1250,
  19819. bottom: 0.023
  19820. }
  19821. },
  19822. },
  19823. [
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(6 + 1 / 12, "feet"),
  19827. default: true
  19828. },
  19829. {
  19830. name: "Macro",
  19831. height: math.unit(200, "feet")
  19832. },
  19833. ]
  19834. ))
  19835. characterMakers.push(() => makeCharacter(
  19836. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19837. {
  19838. front: {
  19839. height: math.unit(5 + 9 / 12, "feet"),
  19840. weight: math.unit(190, "lb"),
  19841. name: "Front",
  19842. image: {
  19843. source: "./media/characters/atticus/front.svg",
  19844. extra: 2934 / 2785,
  19845. bottom: 0.025
  19846. }
  19847. },
  19848. },
  19849. [
  19850. {
  19851. name: "Normal",
  19852. height: math.unit(5 + 9 / 12, "feet"),
  19853. default: true
  19854. },
  19855. {
  19856. name: "Macro",
  19857. height: math.unit(180, "feet")
  19858. },
  19859. ]
  19860. ))
  19861. characterMakers.push(() => makeCharacter(
  19862. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19863. {
  19864. side: {
  19865. height: math.unit(9, "feet"),
  19866. weight: math.unit(650, "lb"),
  19867. name: "Side",
  19868. image: {
  19869. source: "./media/characters/milo/side.svg",
  19870. extra: 2644 / 2310,
  19871. bottom: 0.032
  19872. }
  19873. },
  19874. },
  19875. [
  19876. {
  19877. name: "Normal",
  19878. height: math.unit(9, "feet"),
  19879. default: true
  19880. },
  19881. {
  19882. name: "Macro",
  19883. height: math.unit(300, "feet")
  19884. },
  19885. ]
  19886. ))
  19887. characterMakers.push(() => makeCharacter(
  19888. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19889. {
  19890. side: {
  19891. height: math.unit(8, "meters"),
  19892. weight: math.unit(90000, "kg"),
  19893. name: "Side",
  19894. image: {
  19895. source: "./media/characters/ijzer/side.svg",
  19896. extra: 2756 / 1600,
  19897. bottom: 0.01
  19898. }
  19899. },
  19900. },
  19901. [
  19902. {
  19903. name: "Small",
  19904. height: math.unit(3, "meters")
  19905. },
  19906. {
  19907. name: "Normal",
  19908. height: math.unit(8, "meters"),
  19909. default: true
  19910. },
  19911. {
  19912. name: "Normal+",
  19913. height: math.unit(10, "meters")
  19914. },
  19915. {
  19916. name: "Bigger",
  19917. height: math.unit(24, "meters")
  19918. },
  19919. {
  19920. name: "Huge",
  19921. height: math.unit(80, "meters")
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19927. {
  19928. front: {
  19929. height: math.unit(6 + 2 / 12, "feet"),
  19930. weight: math.unit(153, "lb"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/luca-cervicum/front.svg",
  19934. extra: 370 / 327,
  19935. bottom: 0.015
  19936. }
  19937. },
  19938. back: {
  19939. height: math.unit(6 + 2 / 12, "feet"),
  19940. weight: math.unit(153, "lb"),
  19941. name: "Back",
  19942. image: {
  19943. source: "./media/characters/luca-cervicum/back.svg",
  19944. extra: 367 / 333,
  19945. bottom: 0.005
  19946. }
  19947. },
  19948. frontGear: {
  19949. height: math.unit(6 + 2 / 12, "feet"),
  19950. weight: math.unit(173, "lb"),
  19951. name: "Front (Gear)",
  19952. image: {
  19953. source: "./media/characters/luca-cervicum/front-gear.svg",
  19954. extra: 377 / 333,
  19955. bottom: 0.006
  19956. }
  19957. },
  19958. },
  19959. [
  19960. {
  19961. name: "Normal",
  19962. height: math.unit(6 + 2 / 12, "feet"),
  19963. default: true
  19964. },
  19965. ]
  19966. ))
  19967. characterMakers.push(() => makeCharacter(
  19968. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19969. {
  19970. front: {
  19971. height: math.unit(6 + 1 / 12, "feet"),
  19972. weight: math.unit(304, "lb"),
  19973. name: "Front",
  19974. image: {
  19975. source: "./media/characters/oliver/front.svg",
  19976. extra: 157 / 143,
  19977. bottom: 0.08
  19978. }
  19979. },
  19980. },
  19981. [
  19982. {
  19983. name: "Normal",
  19984. height: math.unit(6 + 1 / 12, "feet"),
  19985. default: true
  19986. },
  19987. ]
  19988. ))
  19989. characterMakers.push(() => makeCharacter(
  19990. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19991. {
  19992. front: {
  19993. height: math.unit(5 + 7 / 12, "feet"),
  19994. weight: math.unit(140, "lb"),
  19995. name: "Front",
  19996. image: {
  19997. source: "./media/characters/shane/front.svg",
  19998. extra: 304 / 289,
  19999. bottom: 0.005
  20000. }
  20001. },
  20002. },
  20003. [
  20004. {
  20005. name: "Normal",
  20006. height: math.unit(5 + 7 / 12, "feet"),
  20007. default: true
  20008. },
  20009. ]
  20010. ))
  20011. characterMakers.push(() => makeCharacter(
  20012. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20013. {
  20014. front: {
  20015. height: math.unit(5 + 9 / 12, "feet"),
  20016. weight: math.unit(178, "lb"),
  20017. name: "Front",
  20018. image: {
  20019. source: "./media/characters/shin/front.svg",
  20020. extra: 159 / 151,
  20021. bottom: 0.015
  20022. }
  20023. },
  20024. },
  20025. [
  20026. {
  20027. name: "Normal",
  20028. height: math.unit(5 + 9 / 12, "feet"),
  20029. default: true
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20035. {
  20036. front: {
  20037. height: math.unit(5 + 10 / 12, "feet"),
  20038. weight: math.unit(168, "lb"),
  20039. name: "Front",
  20040. image: {
  20041. source: "./media/characters/xerxes/front.svg",
  20042. extra: 282 / 260,
  20043. bottom: 0.045
  20044. }
  20045. },
  20046. },
  20047. [
  20048. {
  20049. name: "Normal",
  20050. height: math.unit(5 + 10 / 12, "feet"),
  20051. default: true
  20052. },
  20053. ]
  20054. ))
  20055. characterMakers.push(() => makeCharacter(
  20056. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20057. {
  20058. front: {
  20059. height: math.unit(6 + 7 / 12, "feet"),
  20060. weight: math.unit(208, "lb"),
  20061. name: "Front",
  20062. image: {
  20063. source: "./media/characters/chaska/front.svg",
  20064. extra: 332 / 319,
  20065. bottom: 0.015
  20066. }
  20067. },
  20068. },
  20069. [
  20070. {
  20071. name: "Normal",
  20072. height: math.unit(6 + 7 / 12, "feet"),
  20073. default: true
  20074. },
  20075. ]
  20076. ))
  20077. characterMakers.push(() => makeCharacter(
  20078. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20079. {
  20080. front: {
  20081. height: math.unit(5 + 8 / 12, "feet"),
  20082. weight: math.unit(208, "lb"),
  20083. name: "Front",
  20084. image: {
  20085. source: "./media/characters/enuk/front.svg",
  20086. extra: 437 / 406,
  20087. bottom: 0.02
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Normal",
  20094. height: math.unit(5 + 8 / 12, "feet"),
  20095. default: true
  20096. },
  20097. ]
  20098. ))
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20101. {
  20102. front: {
  20103. height: math.unit(5 + 10 / 12, "feet"),
  20104. weight: math.unit(252, "lb"),
  20105. name: "Front",
  20106. image: {
  20107. source: "./media/characters/bruun/front.svg",
  20108. extra: 197 / 187,
  20109. bottom: 0.012
  20110. }
  20111. },
  20112. },
  20113. [
  20114. {
  20115. name: "Normal",
  20116. height: math.unit(5 + 10 / 12, "feet"),
  20117. default: true
  20118. },
  20119. ]
  20120. ))
  20121. characterMakers.push(() => makeCharacter(
  20122. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20123. {
  20124. front: {
  20125. height: math.unit(6 + 10 / 12, "feet"),
  20126. weight: math.unit(255, "lb"),
  20127. name: "Front",
  20128. image: {
  20129. source: "./media/characters/alexeev/front.svg",
  20130. extra: 213 / 200,
  20131. bottom: 0.05
  20132. }
  20133. },
  20134. },
  20135. [
  20136. {
  20137. name: "Normal",
  20138. height: math.unit(6 + 10 / 12, "feet"),
  20139. default: true
  20140. },
  20141. ]
  20142. ))
  20143. characterMakers.push(() => makeCharacter(
  20144. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20145. {
  20146. front: {
  20147. height: math.unit(2 + 8 / 12, "feet"),
  20148. weight: math.unit(22, "lb"),
  20149. name: "Front",
  20150. image: {
  20151. source: "./media/characters/evelyn/front.svg",
  20152. extra: 208 / 180
  20153. }
  20154. },
  20155. },
  20156. [
  20157. {
  20158. name: "Normal",
  20159. height: math.unit(2 + 8 / 12, "feet"),
  20160. default: true
  20161. },
  20162. ]
  20163. ))
  20164. characterMakers.push(() => makeCharacter(
  20165. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20166. {
  20167. front: {
  20168. height: math.unit(5 + 9 / 12, "feet"),
  20169. weight: math.unit(139, "lb"),
  20170. name: "Front",
  20171. image: {
  20172. source: "./media/characters/inca/front.svg",
  20173. extra: 294 / 291,
  20174. bottom: 0.03
  20175. }
  20176. },
  20177. },
  20178. [
  20179. {
  20180. name: "Normal",
  20181. height: math.unit(5 + 9 / 12, "feet"),
  20182. default: true
  20183. },
  20184. ]
  20185. ))
  20186. characterMakers.push(() => makeCharacter(
  20187. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20188. {
  20189. front: {
  20190. height: math.unit(6 + 3 / 12, "feet"),
  20191. weight: math.unit(185, "lb"),
  20192. name: "Front",
  20193. image: {
  20194. source: "./media/characters/mera/front.svg",
  20195. extra: 291 / 277,
  20196. bottom: 0.03
  20197. }
  20198. },
  20199. },
  20200. [
  20201. {
  20202. name: "Normal",
  20203. height: math.unit(6 + 3 / 12, "feet"),
  20204. default: true
  20205. },
  20206. ]
  20207. ))
  20208. characterMakers.push(() => makeCharacter(
  20209. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20210. {
  20211. front: {
  20212. height: math.unit(6 + 7 / 12, "feet"),
  20213. weight: math.unit(160, "lb"),
  20214. name: "Front",
  20215. image: {
  20216. source: "./media/characters/ceres/front.svg",
  20217. extra: 1023 / 950,
  20218. bottom: 0.027
  20219. }
  20220. },
  20221. back: {
  20222. height: math.unit(6 + 7 / 12, "feet"),
  20223. weight: math.unit(160, "lb"),
  20224. name: "Back",
  20225. image: {
  20226. source: "./media/characters/ceres/back.svg",
  20227. extra: 1023 / 950
  20228. }
  20229. },
  20230. },
  20231. [
  20232. {
  20233. name: "Normal",
  20234. height: math.unit(6 + 7 / 12, "feet"),
  20235. default: true
  20236. },
  20237. ]
  20238. ))
  20239. characterMakers.push(() => makeCharacter(
  20240. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20241. {
  20242. front: {
  20243. height: math.unit(5 + 10 / 12, "feet"),
  20244. weight: math.unit(150, "lb"),
  20245. name: "Front",
  20246. image: {
  20247. source: "./media/characters/kris/front.svg",
  20248. extra: 885 / 803,
  20249. bottom: 0.03
  20250. }
  20251. },
  20252. },
  20253. [
  20254. {
  20255. name: "Normal",
  20256. height: math.unit(5 + 10 / 12, "feet"),
  20257. default: true
  20258. },
  20259. ]
  20260. ))
  20261. characterMakers.push(() => makeCharacter(
  20262. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20263. {
  20264. front: {
  20265. height: math.unit(7, "feet"),
  20266. weight: math.unit(120, "kg"),
  20267. name: "Front",
  20268. image: {
  20269. source: "./media/characters/taluthus/front.svg",
  20270. extra: 903 / 833,
  20271. bottom: 0.015
  20272. }
  20273. },
  20274. },
  20275. [
  20276. {
  20277. name: "Normal",
  20278. height: math.unit(7, "feet"),
  20279. default: true
  20280. },
  20281. {
  20282. name: "Macro",
  20283. height: math.unit(300, "feet")
  20284. },
  20285. ]
  20286. ))
  20287. characterMakers.push(() => makeCharacter(
  20288. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20289. {
  20290. front: {
  20291. height: math.unit(5 + 9 / 12, "feet"),
  20292. weight: math.unit(145, "lb"),
  20293. name: "Front",
  20294. image: {
  20295. source: "./media/characters/dawn/front.svg",
  20296. extra: 2094 / 2016,
  20297. bottom: 0.025
  20298. }
  20299. },
  20300. back: {
  20301. height: math.unit(5 + 9 / 12, "feet"),
  20302. weight: math.unit(160, "lb"),
  20303. name: "Back",
  20304. image: {
  20305. source: "./media/characters/dawn/back.svg",
  20306. extra: 2112 / 2080,
  20307. bottom: 0.005
  20308. }
  20309. },
  20310. },
  20311. [
  20312. {
  20313. name: "Normal",
  20314. height: math.unit(6 + 7 / 12, "feet"),
  20315. default: true
  20316. },
  20317. ]
  20318. ))
  20319. characterMakers.push(() => makeCharacter(
  20320. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20321. {
  20322. anthro: {
  20323. height: math.unit(8 + 3 / 12, "feet"),
  20324. weight: math.unit(450, "lb"),
  20325. name: "Anthro",
  20326. image: {
  20327. source: "./media/characters/arador/anthro.svg",
  20328. extra: 1835 / 1718,
  20329. bottom: 0.025
  20330. }
  20331. },
  20332. feral: {
  20333. height: math.unit(4, "feet"),
  20334. weight: math.unit(200, "lb"),
  20335. name: "Feral",
  20336. image: {
  20337. source: "./media/characters/arador/feral.svg",
  20338. extra: 1683 / 1514,
  20339. bottom: 0.07
  20340. }
  20341. },
  20342. },
  20343. [
  20344. {
  20345. name: "Normal",
  20346. height: math.unit(8 + 3 / 12, "feet")
  20347. },
  20348. {
  20349. name: "Macro",
  20350. height: math.unit(82.5, "feet"),
  20351. default: true
  20352. },
  20353. ]
  20354. ))
  20355. characterMakers.push(() => makeCharacter(
  20356. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20357. {
  20358. front: {
  20359. height: math.unit(5 + 10 / 12, "feet"),
  20360. weight: math.unit(125, "lb"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/dharsi/front.svg",
  20364. extra: 716 / 630,
  20365. bottom: 0.035
  20366. }
  20367. },
  20368. },
  20369. [
  20370. {
  20371. name: "Nano",
  20372. height: math.unit(100, "nm")
  20373. },
  20374. {
  20375. name: "Micro",
  20376. height: math.unit(2, "inches")
  20377. },
  20378. {
  20379. name: "Normal",
  20380. height: math.unit(5 + 10 / 12, "feet"),
  20381. default: true
  20382. },
  20383. {
  20384. name: "Macro",
  20385. height: math.unit(1000, "feet")
  20386. },
  20387. {
  20388. name: "Megamacro",
  20389. height: math.unit(10, "miles")
  20390. },
  20391. {
  20392. name: "Gigamacro",
  20393. height: math.unit(3000, "miles")
  20394. },
  20395. {
  20396. name: "Teramacro",
  20397. height: math.unit(500000, "miles")
  20398. },
  20399. {
  20400. name: "Teramacro+",
  20401. height: math.unit(30, "galaxies")
  20402. },
  20403. ]
  20404. ))
  20405. characterMakers.push(() => makeCharacter(
  20406. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20407. {
  20408. front: {
  20409. height: math.unit(6, "feet"),
  20410. weight: math.unit(150, "lb"),
  20411. name: "Front",
  20412. image: {
  20413. source: "./media/characters/deathy/front.svg",
  20414. extra: 1552 / 1463,
  20415. bottom: 0.025
  20416. }
  20417. },
  20418. side: {
  20419. height: math.unit(6, "feet"),
  20420. weight: math.unit(150, "lb"),
  20421. name: "Side",
  20422. image: {
  20423. source: "./media/characters/deathy/side.svg",
  20424. extra: 1604 / 1455,
  20425. bottom: 0.025
  20426. }
  20427. },
  20428. back: {
  20429. height: math.unit(6, "feet"),
  20430. weight: math.unit(150, "lb"),
  20431. name: "Back",
  20432. image: {
  20433. source: "./media/characters/deathy/back.svg",
  20434. extra: 1580 / 1463,
  20435. bottom: 0.005
  20436. }
  20437. },
  20438. },
  20439. [
  20440. {
  20441. name: "Micro",
  20442. height: math.unit(5, "millimeters")
  20443. },
  20444. {
  20445. name: "Normal",
  20446. height: math.unit(6 + 5 / 12, "feet"),
  20447. default: true
  20448. },
  20449. ]
  20450. ))
  20451. characterMakers.push(() => makeCharacter(
  20452. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20453. {
  20454. front: {
  20455. height: math.unit(16, "feet"),
  20456. weight: math.unit(4000, "lb"),
  20457. name: "Front",
  20458. image: {
  20459. source: "./media/characters/juniper/front.svg",
  20460. bottom: 0.04
  20461. }
  20462. },
  20463. },
  20464. [
  20465. {
  20466. name: "Normal",
  20467. height: math.unit(16, "feet"),
  20468. default: true
  20469. },
  20470. ]
  20471. ))
  20472. characterMakers.push(() => makeCharacter(
  20473. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20474. {
  20475. front: {
  20476. height: math.unit(6, "feet"),
  20477. weight: math.unit(150, "lb"),
  20478. name: "Front",
  20479. image: {
  20480. source: "./media/characters/hipster/front.svg",
  20481. extra: 1312 / 1209,
  20482. bottom: 0.025
  20483. }
  20484. },
  20485. back: {
  20486. height: math.unit(6, "feet"),
  20487. weight: math.unit(150, "lb"),
  20488. name: "Back",
  20489. image: {
  20490. source: "./media/characters/hipster/back.svg",
  20491. extra: 1281 / 1196,
  20492. bottom: 0.01
  20493. }
  20494. },
  20495. },
  20496. [
  20497. {
  20498. name: "Micro",
  20499. height: math.unit(1, "mm")
  20500. },
  20501. {
  20502. name: "Normal",
  20503. height: math.unit(4, "inches"),
  20504. default: true
  20505. },
  20506. {
  20507. name: "Macro",
  20508. height: math.unit(500, "feet")
  20509. },
  20510. {
  20511. name: "Megamacro",
  20512. height: math.unit(1000, "miles")
  20513. },
  20514. ]
  20515. ))
  20516. characterMakers.push(() => makeCharacter(
  20517. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20518. {
  20519. front: {
  20520. height: math.unit(6, "feet"),
  20521. weight: math.unit(150, "lb"),
  20522. name: "Front",
  20523. image: {
  20524. source: "./media/characters/tendirmuldr/front.svg",
  20525. extra: 1878 / 1772,
  20526. bottom: 0.015
  20527. }
  20528. },
  20529. },
  20530. [
  20531. {
  20532. name: "Megamacro",
  20533. height: math.unit(1500, "miles"),
  20534. default: true
  20535. },
  20536. ]
  20537. ))
  20538. characterMakers.push(() => makeCharacter(
  20539. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20540. {
  20541. front: {
  20542. height: math.unit(14, "feet"),
  20543. weight: math.unit(12000, "lb"),
  20544. name: "Front",
  20545. image: {
  20546. source: "./media/characters/mort/front.svg",
  20547. extra: 365 / 318,
  20548. bottom: 0.01
  20549. }
  20550. },
  20551. side: {
  20552. height: math.unit(14, "feet"),
  20553. weight: math.unit(12000, "lb"),
  20554. name: "Side",
  20555. image: {
  20556. source: "./media/characters/mort/side.svg",
  20557. extra: 365 / 318,
  20558. bottom: 0.052
  20559. },
  20560. default: true
  20561. },
  20562. back: {
  20563. height: math.unit(14, "feet"),
  20564. weight: math.unit(12000, "lb"),
  20565. name: "Back",
  20566. image: {
  20567. source: "./media/characters/mort/back.svg",
  20568. extra: 371 / 332,
  20569. bottom: 0.18
  20570. }
  20571. },
  20572. },
  20573. [
  20574. {
  20575. name: "Normal",
  20576. height: math.unit(14, "feet"),
  20577. default: true
  20578. },
  20579. ]
  20580. ))
  20581. characterMakers.push(() => makeCharacter(
  20582. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20583. {
  20584. front: {
  20585. height: math.unit(8, "feet"),
  20586. weight: math.unit(1, "ton"),
  20587. name: "Front",
  20588. image: {
  20589. source: "./media/characters/lycoa/front.svg",
  20590. extra: 1875 / 1789,
  20591. bottom: 0.022
  20592. }
  20593. },
  20594. back: {
  20595. height: math.unit(8, "feet"),
  20596. weight: math.unit(1, "ton"),
  20597. name: "Back",
  20598. image: {
  20599. source: "./media/characters/lycoa/back.svg",
  20600. extra: 1835 / 1781,
  20601. bottom: 0.03
  20602. }
  20603. },
  20604. head: {
  20605. height: math.unit(2.1, "feet"),
  20606. name: "Head",
  20607. image: {
  20608. source: "./media/characters/lycoa/head.svg"
  20609. }
  20610. },
  20611. tailmaw: {
  20612. height: math.unit(1.9, "feet"),
  20613. name: "Tailmaw",
  20614. image: {
  20615. source: "./media/characters/lycoa/tailmaw.svg"
  20616. }
  20617. },
  20618. tentacles: {
  20619. height: math.unit(2.1, "feet"),
  20620. name: "Tentacles",
  20621. image: {
  20622. source: "./media/characters/lycoa/tentacles.svg"
  20623. }
  20624. },
  20625. dick: {
  20626. height: math.unit(1.73, "feet"),
  20627. name: "Dick",
  20628. image: {
  20629. source: "./media/characters/lycoa/dick.svg"
  20630. }
  20631. },
  20632. },
  20633. [
  20634. {
  20635. name: "Normal",
  20636. height: math.unit(8, "feet"),
  20637. default: true
  20638. },
  20639. {
  20640. name: "Macro",
  20641. height: math.unit(30, "feet")
  20642. },
  20643. ]
  20644. ))
  20645. characterMakers.push(() => makeCharacter(
  20646. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20647. {
  20648. front: {
  20649. height: math.unit(4 + 2 / 12, "feet"),
  20650. weight: math.unit(70, "lb"),
  20651. name: "Front",
  20652. image: {
  20653. source: "./media/characters/naldara/front.svg",
  20654. extra: 841 / 720,
  20655. bottom: 0.04
  20656. }
  20657. },
  20658. naga: {
  20659. height: math.unit(23, "feet"),
  20660. weight: math.unit(15000, "kg"),
  20661. name: "Naga",
  20662. image: {
  20663. source: "./media/characters/naldara/naga.svg",
  20664. extra: 3290 / 2959,
  20665. bottom: 124 / 3432
  20666. }
  20667. },
  20668. },
  20669. [
  20670. {
  20671. name: "Normal",
  20672. height: math.unit(4 + 2 / 12, "feet"),
  20673. default: true
  20674. },
  20675. ]
  20676. ))
  20677. characterMakers.push(() => makeCharacter(
  20678. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20679. {
  20680. front: {
  20681. height: math.unit(13 + 7 / 12, "feet"),
  20682. weight: math.unit(1500, "lb"),
  20683. name: "Front",
  20684. image: {
  20685. source: "./media/characters/briar/front.svg",
  20686. extra: 626 / 596,
  20687. bottom: 0.08
  20688. }
  20689. },
  20690. },
  20691. [
  20692. {
  20693. name: "Normal",
  20694. height: math.unit(13 + 7 / 12, "feet"),
  20695. default: true
  20696. },
  20697. ]
  20698. ))
  20699. characterMakers.push(() => makeCharacter(
  20700. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20701. {
  20702. side: {
  20703. height: math.unit(10, "feet"),
  20704. weight: math.unit(500, "lb"),
  20705. name: "Side",
  20706. image: {
  20707. source: "./media/characters/vanguard/side.svg",
  20708. extra: 502 / 425,
  20709. bottom: 0.087
  20710. }
  20711. },
  20712. },
  20713. [
  20714. {
  20715. name: "Normal",
  20716. height: math.unit(10, "feet"),
  20717. default: true
  20718. },
  20719. ]
  20720. ))
  20721. characterMakers.push(() => makeCharacter(
  20722. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20723. {
  20724. front: {
  20725. height: math.unit(7.5, "feet"),
  20726. weight: math.unit(2, "lb"),
  20727. name: "Front",
  20728. image: {
  20729. source: "./media/characters/artemis/front.svg",
  20730. extra: 1192 / 1075,
  20731. bottom: 0.07
  20732. }
  20733. },
  20734. frontNsfw: {
  20735. height: math.unit(7.5, "feet"),
  20736. weight: math.unit(2, "lb"),
  20737. name: "Front (NSFW)",
  20738. image: {
  20739. source: "./media/characters/artemis/front-nsfw.svg",
  20740. extra: 1192 / 1075,
  20741. bottom: 0.07
  20742. }
  20743. },
  20744. frontNsfwer: {
  20745. height: math.unit(7.5, "feet"),
  20746. weight: math.unit(2, "lb"),
  20747. name: "Front (NSFW-er)",
  20748. image: {
  20749. source: "./media/characters/artemis/front-nsfwer.svg",
  20750. extra: 1192 / 1075,
  20751. bottom: 0.07
  20752. }
  20753. },
  20754. side: {
  20755. height: math.unit(7.5, "feet"),
  20756. weight: math.unit(2, "lb"),
  20757. name: "Side",
  20758. image: {
  20759. source: "./media/characters/artemis/side.svg",
  20760. extra: 1192 / 1075,
  20761. bottom: 0.07
  20762. }
  20763. },
  20764. sideNsfw: {
  20765. height: math.unit(7.5, "feet"),
  20766. weight: math.unit(2, "lb"),
  20767. name: "Side (NSFW)",
  20768. image: {
  20769. source: "./media/characters/artemis/side-nsfw.svg",
  20770. extra: 1192 / 1075,
  20771. bottom: 0.07
  20772. }
  20773. },
  20774. sideNsfwer: {
  20775. height: math.unit(7.5, "feet"),
  20776. weight: math.unit(2, "lb"),
  20777. name: "Side (NSFW-er)",
  20778. image: {
  20779. source: "./media/characters/artemis/side-nsfwer.svg",
  20780. extra: 1192 / 1075,
  20781. bottom: 0.07
  20782. }
  20783. },
  20784. maw: {
  20785. height: math.unit(1.1, "feet"),
  20786. name: "Maw",
  20787. image: {
  20788. source: "./media/characters/artemis/maw.svg"
  20789. }
  20790. },
  20791. stomach: {
  20792. height: math.unit(0.95, "feet"),
  20793. name: "Stomach",
  20794. image: {
  20795. source: "./media/characters/artemis/stomach.svg"
  20796. }
  20797. },
  20798. dickCanine: {
  20799. height: math.unit(1, "feet"),
  20800. name: "Dick (Canine)",
  20801. image: {
  20802. source: "./media/characters/artemis/dick-canine.svg"
  20803. }
  20804. },
  20805. dickEquine: {
  20806. height: math.unit(0.85, "feet"),
  20807. name: "Dick (Equine)",
  20808. image: {
  20809. source: "./media/characters/artemis/dick-equine.svg"
  20810. }
  20811. },
  20812. dickExotic: {
  20813. height: math.unit(0.85, "feet"),
  20814. name: "Dick (Exotic)",
  20815. image: {
  20816. source: "./media/characters/artemis/dick-exotic.svg"
  20817. }
  20818. },
  20819. },
  20820. [
  20821. {
  20822. name: "Normal",
  20823. height: math.unit(7.5, "feet"),
  20824. default: true
  20825. },
  20826. {
  20827. name: "Enlarged",
  20828. height: math.unit(12, "feet")
  20829. },
  20830. ]
  20831. ))
  20832. characterMakers.push(() => makeCharacter(
  20833. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20834. {
  20835. front: {
  20836. height: math.unit(5 + 3 / 12, "feet"),
  20837. weight: math.unit(160, "lb"),
  20838. name: "Front",
  20839. image: {
  20840. source: "./media/characters/kira/front.svg",
  20841. extra: 906 / 786,
  20842. bottom: 0.01
  20843. }
  20844. },
  20845. back: {
  20846. height: math.unit(5 + 3 / 12, "feet"),
  20847. weight: math.unit(160, "lb"),
  20848. name: "Back",
  20849. image: {
  20850. source: "./media/characters/kira/back.svg",
  20851. extra: 882 / 757,
  20852. bottom: 0.005
  20853. }
  20854. },
  20855. frontDressed: {
  20856. height: math.unit(5 + 3 / 12, "feet"),
  20857. weight: math.unit(160, "lb"),
  20858. name: "Front (Dressed)",
  20859. image: {
  20860. source: "./media/characters/kira/front-dressed.svg",
  20861. extra: 906 / 786,
  20862. bottom: 0.01
  20863. }
  20864. },
  20865. beans: {
  20866. height: math.unit(0.92, "feet"),
  20867. name: "Beans",
  20868. image: {
  20869. source: "./media/characters/kira/beans.svg"
  20870. }
  20871. },
  20872. },
  20873. [
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(5 + 3 / 12, "feet"),
  20877. default: true
  20878. },
  20879. ]
  20880. ))
  20881. characterMakers.push(() => makeCharacter(
  20882. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20883. {
  20884. front: {
  20885. height: math.unit(5 + 4 / 12, "feet"),
  20886. weight: math.unit(145, "lb"),
  20887. name: "Front",
  20888. image: {
  20889. source: "./media/characters/scramble/front.svg",
  20890. extra: 763 / 727,
  20891. bottom: 0.05
  20892. }
  20893. },
  20894. back: {
  20895. height: math.unit(5 + 4 / 12, "feet"),
  20896. weight: math.unit(145, "lb"),
  20897. name: "Back",
  20898. image: {
  20899. source: "./media/characters/scramble/back.svg",
  20900. extra: 826 / 737,
  20901. bottom: 0.002
  20902. }
  20903. },
  20904. },
  20905. [
  20906. {
  20907. name: "Normal",
  20908. height: math.unit(5 + 4 / 12, "feet"),
  20909. default: true
  20910. },
  20911. ]
  20912. ))
  20913. characterMakers.push(() => makeCharacter(
  20914. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20915. {
  20916. side: {
  20917. height: math.unit(6 + 2 / 12, "feet"),
  20918. weight: math.unit(190, "lb"),
  20919. name: "Side",
  20920. image: {
  20921. source: "./media/characters/biscuit/side.svg",
  20922. extra: 858 / 791,
  20923. bottom: 0.044
  20924. }
  20925. },
  20926. },
  20927. [
  20928. {
  20929. name: "Normal",
  20930. height: math.unit(6 + 2 / 12, "feet"),
  20931. default: true
  20932. },
  20933. ]
  20934. ))
  20935. characterMakers.push(() => makeCharacter(
  20936. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20937. {
  20938. front: {
  20939. height: math.unit(5 + 2 / 12, "feet"),
  20940. weight: math.unit(120, "lb"),
  20941. name: "Front",
  20942. image: {
  20943. source: "./media/characters/poffin/front.svg",
  20944. extra: 786 / 680,
  20945. bottom: 0.005
  20946. }
  20947. },
  20948. },
  20949. [
  20950. {
  20951. name: "Normal",
  20952. height: math.unit(5 + 2 / 12, "feet"),
  20953. default: true
  20954. },
  20955. ]
  20956. ))
  20957. characterMakers.push(() => makeCharacter(
  20958. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20959. {
  20960. front: {
  20961. height: math.unit(6 + 3 / 12, "feet"),
  20962. weight: math.unit(519, "lb"),
  20963. name: "Front",
  20964. image: {
  20965. source: "./media/characters/dhari/front.svg",
  20966. extra: 1048 / 946,
  20967. bottom: 0.015
  20968. }
  20969. },
  20970. back: {
  20971. height: math.unit(6 + 3 / 12, "feet"),
  20972. weight: math.unit(519, "lb"),
  20973. name: "Back",
  20974. image: {
  20975. source: "./media/characters/dhari/back.svg",
  20976. extra: 1048 / 931,
  20977. bottom: 0.005
  20978. }
  20979. },
  20980. frontDressed: {
  20981. height: math.unit(6 + 3 / 12, "feet"),
  20982. weight: math.unit(519, "lb"),
  20983. name: "Front (Dressed)",
  20984. image: {
  20985. source: "./media/characters/dhari/front-dressed.svg",
  20986. extra: 1713 / 1546,
  20987. bottom: 0.02
  20988. }
  20989. },
  20990. backDressed: {
  20991. height: math.unit(6 + 3 / 12, "feet"),
  20992. weight: math.unit(519, "lb"),
  20993. name: "Back (Dressed)",
  20994. image: {
  20995. source: "./media/characters/dhari/back-dressed.svg",
  20996. extra: 1699 / 1537,
  20997. bottom: 0.01
  20998. }
  20999. },
  21000. maw: {
  21001. height: math.unit(0.95, "feet"),
  21002. name: "Maw",
  21003. image: {
  21004. source: "./media/characters/dhari/maw.svg"
  21005. }
  21006. },
  21007. wereFront: {
  21008. height: math.unit(12 + 8 / 12, "feet"),
  21009. weight: math.unit(4000, "lb"),
  21010. name: "Front (Were)",
  21011. image: {
  21012. source: "./media/characters/dhari/were-front.svg",
  21013. extra: 1065 / 969,
  21014. bottom: 0.015
  21015. }
  21016. },
  21017. wereBack: {
  21018. height: math.unit(12 + 8 / 12, "feet"),
  21019. weight: math.unit(4000, "lb"),
  21020. name: "Back (Were)",
  21021. image: {
  21022. source: "./media/characters/dhari/were-back.svg",
  21023. extra: 1065 / 969,
  21024. bottom: 0.012
  21025. }
  21026. },
  21027. wereMaw: {
  21028. height: math.unit(0.625, "meters"),
  21029. name: "Maw (Were)",
  21030. image: {
  21031. source: "./media/characters/dhari/were-maw.svg"
  21032. }
  21033. },
  21034. },
  21035. [
  21036. {
  21037. name: "Normal",
  21038. height: math.unit(6 + 3 / 12, "feet"),
  21039. default: true
  21040. },
  21041. ]
  21042. ))
  21043. characterMakers.push(() => makeCharacter(
  21044. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21045. {
  21046. anthro: {
  21047. height: math.unit(5 + 7 / 12, "feet"),
  21048. weight: math.unit(175, "lb"),
  21049. name: "Anthro",
  21050. image: {
  21051. source: "./media/characters/rena-dyne/anthro.svg",
  21052. extra: 1849 / 1785,
  21053. bottom: 0.005
  21054. }
  21055. },
  21056. taur: {
  21057. height: math.unit(15 + 6 / 12, "feet"),
  21058. weight: math.unit(8000, "lb"),
  21059. name: "Taur",
  21060. image: {
  21061. source: "./media/characters/rena-dyne/taur.svg",
  21062. extra: 2315 / 2234,
  21063. bottom: 0.033
  21064. }
  21065. },
  21066. },
  21067. [
  21068. {
  21069. name: "Normal",
  21070. height: math.unit(5 + 7 / 12, "feet"),
  21071. default: true
  21072. },
  21073. ]
  21074. ))
  21075. characterMakers.push(() => makeCharacter(
  21076. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21077. {
  21078. front: {
  21079. height: math.unit(8, "feet"),
  21080. weight: math.unit(600, "lb"),
  21081. name: "Front",
  21082. image: {
  21083. source: "./media/characters/weremeep/front.svg",
  21084. extra: 967 / 862,
  21085. bottom: 0.01
  21086. }
  21087. },
  21088. },
  21089. [
  21090. {
  21091. name: "Normal",
  21092. height: math.unit(8, "feet"),
  21093. default: true
  21094. },
  21095. {
  21096. name: "Lorg",
  21097. height: math.unit(12, "feet")
  21098. },
  21099. {
  21100. name: "Oh Lawd She Comin'",
  21101. height: math.unit(20, "feet")
  21102. },
  21103. ]
  21104. ))
  21105. characterMakers.push(() => makeCharacter(
  21106. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21107. {
  21108. front: {
  21109. height: math.unit(4, "feet"),
  21110. weight: math.unit(90, "lb"),
  21111. name: "Front",
  21112. image: {
  21113. source: "./media/characters/reza/front.svg",
  21114. extra: 1183 / 1111,
  21115. bottom: 0.017
  21116. }
  21117. },
  21118. back: {
  21119. height: math.unit(4, "feet"),
  21120. weight: math.unit(90, "lb"),
  21121. name: "Back",
  21122. image: {
  21123. source: "./media/characters/reza/back.svg",
  21124. extra: 1183 / 1111,
  21125. bottom: 0.01
  21126. }
  21127. },
  21128. drake: {
  21129. height: math.unit(30, "feet"),
  21130. weight: math.unit(246960, "lb"),
  21131. name: "Drake",
  21132. image: {
  21133. source: "./media/characters/reza/drake.svg",
  21134. extra: 2350 / 2024,
  21135. bottom: 60.7 / 2403
  21136. }
  21137. },
  21138. },
  21139. [
  21140. {
  21141. name: "Normal",
  21142. height: math.unit(4, "feet"),
  21143. default: true
  21144. },
  21145. ]
  21146. ))
  21147. characterMakers.push(() => makeCharacter(
  21148. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21149. {
  21150. side: {
  21151. height: math.unit(15, "feet"),
  21152. weight: math.unit(14, "tons"),
  21153. name: "Side",
  21154. image: {
  21155. source: "./media/characters/athea/side.svg",
  21156. extra: 960 / 540,
  21157. bottom: 0.003
  21158. }
  21159. },
  21160. sitting: {
  21161. height: math.unit(6 * 2.85, "feet"),
  21162. weight: math.unit(14, "tons"),
  21163. name: "Sitting",
  21164. image: {
  21165. source: "./media/characters/athea/sitting.svg",
  21166. extra: 621 / 581,
  21167. bottom: 0.075
  21168. }
  21169. },
  21170. maw: {
  21171. height: math.unit(7.59498031496063, "feet"),
  21172. name: "Maw",
  21173. image: {
  21174. source: "./media/characters/athea/maw.svg"
  21175. }
  21176. },
  21177. },
  21178. [
  21179. {
  21180. name: "Lap Cat",
  21181. height: math.unit(2.5, "feet")
  21182. },
  21183. {
  21184. name: "Minimacro",
  21185. height: math.unit(15, "feet"),
  21186. default: true
  21187. },
  21188. {
  21189. name: "Macro",
  21190. height: math.unit(120, "feet")
  21191. },
  21192. {
  21193. name: "Macro+",
  21194. height: math.unit(640, "feet")
  21195. },
  21196. {
  21197. name: "Colossus",
  21198. height: math.unit(2.2, "miles")
  21199. },
  21200. ]
  21201. ))
  21202. characterMakers.push(() => makeCharacter(
  21203. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21204. {
  21205. front: {
  21206. height: math.unit(8 + 8 / 12, "feet"),
  21207. weight: math.unit(130, "kg"),
  21208. name: "Front",
  21209. image: {
  21210. source: "./media/characters/seroko/front.svg",
  21211. extra: 1385 / 1280,
  21212. bottom: 0.025
  21213. }
  21214. },
  21215. back: {
  21216. height: math.unit(8 + 8 / 12, "feet"),
  21217. weight: math.unit(130, "kg"),
  21218. name: "Back",
  21219. image: {
  21220. source: "./media/characters/seroko/back.svg",
  21221. extra: 1369 / 1238,
  21222. bottom: 0.018
  21223. }
  21224. },
  21225. frontDressed: {
  21226. height: math.unit(8 + 8 / 12, "feet"),
  21227. weight: math.unit(130, "kg"),
  21228. name: "Front (Dressed)",
  21229. image: {
  21230. source: "./media/characters/seroko/front-dressed.svg",
  21231. extra: 1366 / 1275,
  21232. bottom: 0.03
  21233. }
  21234. },
  21235. },
  21236. [
  21237. {
  21238. name: "Normal",
  21239. height: math.unit(8 + 8 / 12, "feet"),
  21240. default: true
  21241. },
  21242. ]
  21243. ))
  21244. characterMakers.push(() => makeCharacter(
  21245. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21246. {
  21247. front: {
  21248. height: math.unit(5.5, "feet"),
  21249. weight: math.unit(160, "lb"),
  21250. name: "Front",
  21251. image: {
  21252. source: "./media/characters/quatzi/front.svg",
  21253. extra: 2346 / 2242,
  21254. bottom: 0.015
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Normal",
  21261. height: math.unit(5.5, "feet"),
  21262. default: true
  21263. },
  21264. {
  21265. name: "Big",
  21266. height: math.unit(7.7, "feet")
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21272. {
  21273. front: {
  21274. height: math.unit(5 + 11 / 12, "feet"),
  21275. weight: math.unit(180, "lb"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/sen/front.svg",
  21279. extra: 1321 / 1254,
  21280. bottom: 0.015
  21281. }
  21282. },
  21283. side: {
  21284. height: math.unit(5 + 11 / 12, "feet"),
  21285. weight: math.unit(180, "lb"),
  21286. name: "Side",
  21287. image: {
  21288. source: "./media/characters/sen/side.svg",
  21289. extra: 1321 / 1254,
  21290. bottom: 0.007
  21291. }
  21292. },
  21293. back: {
  21294. height: math.unit(5 + 11 / 12, "feet"),
  21295. weight: math.unit(180, "lb"),
  21296. name: "Back",
  21297. image: {
  21298. source: "./media/characters/sen/back.svg",
  21299. extra: 1321 / 1254
  21300. }
  21301. },
  21302. },
  21303. [
  21304. {
  21305. name: "Normal",
  21306. height: math.unit(5 + 11 / 12, "feet"),
  21307. default: true
  21308. },
  21309. ]
  21310. ))
  21311. characterMakers.push(() => makeCharacter(
  21312. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21313. {
  21314. front: {
  21315. height: math.unit(166.6, "cm"),
  21316. weight: math.unit(66.6, "kg"),
  21317. name: "Front",
  21318. image: {
  21319. source: "./media/characters/fruity/front.svg",
  21320. extra: 1510 / 1386,
  21321. bottom: 0.04
  21322. }
  21323. },
  21324. back: {
  21325. height: math.unit(166.6, "cm"),
  21326. weight: math.unit(66.6, "lb"),
  21327. name: "Back",
  21328. image: {
  21329. source: "./media/characters/fruity/back.svg",
  21330. extra: 1563 / 1435,
  21331. bottom: 0.005
  21332. }
  21333. },
  21334. },
  21335. [
  21336. {
  21337. name: "Normal",
  21338. height: math.unit(166.6, "cm"),
  21339. default: true
  21340. },
  21341. {
  21342. name: "Demonic",
  21343. height: math.unit(166.6, "feet")
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21349. {
  21350. side: {
  21351. height: math.unit(10, "feet"),
  21352. weight: math.unit(500, "lb"),
  21353. name: "Side",
  21354. image: {
  21355. source: "./media/characters/zost/side.svg",
  21356. extra: 966 / 880,
  21357. bottom: 0.075
  21358. }
  21359. },
  21360. mawFront: {
  21361. height: math.unit(1.08, "meters"),
  21362. name: "Maw (Front)",
  21363. image: {
  21364. source: "./media/characters/zost/maw-front.svg"
  21365. }
  21366. },
  21367. mawSide: {
  21368. height: math.unit(2.66, "feet"),
  21369. name: "Maw (Side)",
  21370. image: {
  21371. source: "./media/characters/zost/maw-side.svg"
  21372. }
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Normal",
  21378. height: math.unit(10, "feet"),
  21379. default: true
  21380. },
  21381. ]
  21382. ))
  21383. characterMakers.push(() => makeCharacter(
  21384. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21385. {
  21386. front: {
  21387. height: math.unit(5 + 4 / 12, "feet"),
  21388. weight: math.unit(120, "lb"),
  21389. name: "Front",
  21390. image: {
  21391. source: "./media/characters/luci/front.svg",
  21392. extra: 1985 / 1884,
  21393. bottom: 0.04
  21394. }
  21395. },
  21396. back: {
  21397. height: math.unit(5 + 4 / 12, "feet"),
  21398. weight: math.unit(120, "lb"),
  21399. name: "Back",
  21400. image: {
  21401. source: "./media/characters/luci/back.svg",
  21402. extra: 1892 / 1791,
  21403. bottom: 0.002
  21404. }
  21405. },
  21406. },
  21407. [
  21408. {
  21409. name: "Normal",
  21410. height: math.unit(5 + 4 / 12, "feet"),
  21411. default: true
  21412. },
  21413. ]
  21414. ))
  21415. characterMakers.push(() => makeCharacter(
  21416. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21417. {
  21418. front: {
  21419. height: math.unit(1500, "feet"),
  21420. weight: math.unit(3.8e6, "tons"),
  21421. name: "Front",
  21422. image: {
  21423. source: "./media/characters/2th/front.svg",
  21424. extra: 3489 / 3350,
  21425. bottom: 0.1
  21426. }
  21427. },
  21428. foot: {
  21429. height: math.unit(461, "feet"),
  21430. name: "Foot",
  21431. image: {
  21432. source: "./media/characters/2th/foot.svg"
  21433. }
  21434. },
  21435. },
  21436. [
  21437. {
  21438. name: "\"Micro\"",
  21439. height: math.unit(15 + 7 / 12, "feet")
  21440. },
  21441. {
  21442. name: "Normal",
  21443. height: math.unit(1500, "feet"),
  21444. default: true
  21445. },
  21446. {
  21447. name: "Macro",
  21448. height: math.unit(5000, "feet")
  21449. },
  21450. {
  21451. name: "Megamacro",
  21452. height: math.unit(15, "miles")
  21453. },
  21454. {
  21455. name: "Gigamacro",
  21456. height: math.unit(4000, "miles")
  21457. },
  21458. {
  21459. name: "Galactic",
  21460. height: math.unit(50, "AU")
  21461. },
  21462. ]
  21463. ))
  21464. characterMakers.push(() => makeCharacter(
  21465. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21466. {
  21467. front: {
  21468. height: math.unit(5 + 6 / 12, "feet"),
  21469. weight: math.unit(220, "lb"),
  21470. name: "Front",
  21471. image: {
  21472. source: "./media/characters/amethyst/front.svg",
  21473. extra: 2078 / 2040,
  21474. bottom: 0.045
  21475. }
  21476. },
  21477. back: {
  21478. height: math.unit(5 + 6 / 12, "feet"),
  21479. weight: math.unit(220, "lb"),
  21480. name: "Back",
  21481. image: {
  21482. source: "./media/characters/amethyst/back.svg",
  21483. extra: 2021 / 1989,
  21484. bottom: 0.02
  21485. }
  21486. },
  21487. },
  21488. [
  21489. {
  21490. name: "Normal",
  21491. height: math.unit(5 + 6 / 12, "feet"),
  21492. default: true
  21493. },
  21494. ]
  21495. ))
  21496. characterMakers.push(() => makeCharacter(
  21497. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21498. {
  21499. front: {
  21500. height: math.unit(4 + 11 / 12, "feet"),
  21501. weight: math.unit(120, "lb"),
  21502. name: "Front",
  21503. image: {
  21504. source: "./media/characters/yumi-akiyama/front.svg",
  21505. extra: 1327 / 1235,
  21506. bottom: 0.02
  21507. }
  21508. },
  21509. back: {
  21510. height: math.unit(4 + 11 / 12, "feet"),
  21511. weight: math.unit(120, "lb"),
  21512. name: "Back",
  21513. image: {
  21514. source: "./media/characters/yumi-akiyama/back.svg",
  21515. extra: 1287 / 1245,
  21516. bottom: 0.002
  21517. }
  21518. },
  21519. },
  21520. [
  21521. {
  21522. name: "Galactic",
  21523. height: math.unit(50, "galaxies"),
  21524. default: true
  21525. },
  21526. {
  21527. name: "Universal",
  21528. height: math.unit(100, "universes")
  21529. },
  21530. ]
  21531. ))
  21532. characterMakers.push(() => makeCharacter(
  21533. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21534. {
  21535. front: {
  21536. height: math.unit(8, "feet"),
  21537. weight: math.unit(500, "lb"),
  21538. name: "Front",
  21539. image: {
  21540. source: "./media/characters/rifter-yrmori/front.svg",
  21541. extra: 1180 / 1125,
  21542. bottom: 0.02
  21543. }
  21544. },
  21545. back: {
  21546. height: math.unit(8, "feet"),
  21547. weight: math.unit(500, "lb"),
  21548. name: "Back",
  21549. image: {
  21550. source: "./media/characters/rifter-yrmori/back.svg",
  21551. extra: 1190 / 1145,
  21552. bottom: 0.001
  21553. }
  21554. },
  21555. wings: {
  21556. height: math.unit(7.75, "feet"),
  21557. weight: math.unit(500, "lb"),
  21558. name: "Wings",
  21559. image: {
  21560. source: "./media/characters/rifter-yrmori/wings.svg",
  21561. extra: 1357 / 1285
  21562. }
  21563. },
  21564. maw: {
  21565. height: math.unit(0.8, "feet"),
  21566. name: "Maw",
  21567. image: {
  21568. source: "./media/characters/rifter-yrmori/maw.svg"
  21569. }
  21570. },
  21571. mawfront: {
  21572. height: math.unit(1.45, "feet"),
  21573. name: "Maw (Front)",
  21574. image: {
  21575. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21576. }
  21577. },
  21578. },
  21579. [
  21580. {
  21581. name: "Normal",
  21582. height: math.unit(8, "feet"),
  21583. default: true
  21584. },
  21585. {
  21586. name: "Macro",
  21587. height: math.unit(42, "meters")
  21588. },
  21589. ]
  21590. ))
  21591. characterMakers.push(() => makeCharacter(
  21592. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21593. {
  21594. were: {
  21595. height: math.unit(25 + 6 / 12, "feet"),
  21596. weight: math.unit(10000, "lb"),
  21597. name: "Were",
  21598. image: {
  21599. source: "./media/characters/tahajin/were.svg",
  21600. extra: 801 / 770,
  21601. bottom: 0.042
  21602. }
  21603. },
  21604. aquatic: {
  21605. height: math.unit(6 + 4 / 12, "feet"),
  21606. weight: math.unit(160, "lb"),
  21607. name: "Aquatic",
  21608. image: {
  21609. source: "./media/characters/tahajin/aquatic.svg",
  21610. extra: 572 / 542,
  21611. bottom: 0.04
  21612. }
  21613. },
  21614. chow: {
  21615. height: math.unit(8 + 11 / 12, "feet"),
  21616. weight: math.unit(450, "lb"),
  21617. name: "Chow",
  21618. image: {
  21619. source: "./media/characters/tahajin/chow.svg",
  21620. extra: 660 / 640,
  21621. bottom: 0.015
  21622. }
  21623. },
  21624. demiNaga: {
  21625. height: math.unit(6 + 8 / 12, "feet"),
  21626. weight: math.unit(300, "lb"),
  21627. name: "Demi Naga",
  21628. image: {
  21629. source: "./media/characters/tahajin/demi-naga.svg",
  21630. extra: 643 / 615,
  21631. bottom: 0.1
  21632. }
  21633. },
  21634. data: {
  21635. height: math.unit(5, "inches"),
  21636. weight: math.unit(0.1, "lb"),
  21637. name: "Data",
  21638. image: {
  21639. source: "./media/characters/tahajin/data.svg"
  21640. }
  21641. },
  21642. fluu: {
  21643. height: math.unit(5 + 7 / 12, "feet"),
  21644. weight: math.unit(140, "lb"),
  21645. name: "Fluu",
  21646. image: {
  21647. source: "./media/characters/tahajin/fluu.svg",
  21648. extra: 628 / 592,
  21649. bottom: 0.02
  21650. }
  21651. },
  21652. starWarrior: {
  21653. height: math.unit(4 + 5 / 12, "feet"),
  21654. weight: math.unit(50, "lb"),
  21655. name: "Star Warrior",
  21656. image: {
  21657. source: "./media/characters/tahajin/star-warrior.svg"
  21658. }
  21659. },
  21660. },
  21661. [
  21662. {
  21663. name: "Normal",
  21664. height: math.unit(25 + 6 / 12, "feet"),
  21665. default: true
  21666. },
  21667. ]
  21668. ))
  21669. characterMakers.push(() => makeCharacter(
  21670. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21671. {
  21672. front: {
  21673. height: math.unit(8, "feet"),
  21674. weight: math.unit(350, "lb"),
  21675. name: "Front",
  21676. image: {
  21677. source: "./media/characters/gabira/front.svg",
  21678. extra: 608 / 580,
  21679. bottom: 0.03
  21680. }
  21681. },
  21682. back: {
  21683. height: math.unit(8, "feet"),
  21684. weight: math.unit(350, "lb"),
  21685. name: "Back",
  21686. image: {
  21687. source: "./media/characters/gabira/back.svg",
  21688. extra: 608 / 580,
  21689. bottom: 0.03
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Normal",
  21696. height: math.unit(8, "feet"),
  21697. default: true
  21698. },
  21699. ]
  21700. ))
  21701. characterMakers.push(() => makeCharacter(
  21702. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21703. {
  21704. front: {
  21705. height: math.unit(5 + 3 / 12, "feet"),
  21706. weight: math.unit(137, "lb"),
  21707. name: "Front",
  21708. image: {
  21709. source: "./media/characters/sasha-katraine/front.svg",
  21710. bottom: 0.045
  21711. }
  21712. },
  21713. },
  21714. [
  21715. {
  21716. name: "Micro",
  21717. height: math.unit(5, "inches")
  21718. },
  21719. {
  21720. name: "Normal",
  21721. height: math.unit(5 + 3 / 12, "feet"),
  21722. default: true
  21723. },
  21724. ]
  21725. ))
  21726. characterMakers.push(() => makeCharacter(
  21727. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21728. {
  21729. side: {
  21730. height: math.unit(4, "inches"),
  21731. weight: math.unit(200, "grams"),
  21732. name: "Side",
  21733. image: {
  21734. source: "./media/characters/der/side.svg",
  21735. extra: 719 / 400,
  21736. bottom: 30.6 / 749.9187
  21737. }
  21738. },
  21739. },
  21740. [
  21741. {
  21742. name: "Micro",
  21743. height: math.unit(4, "inches"),
  21744. default: true
  21745. },
  21746. ]
  21747. ))
  21748. characterMakers.push(() => makeCharacter(
  21749. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21750. {
  21751. side: {
  21752. height: math.unit(30, "meters"),
  21753. weight: math.unit(700, "tonnes"),
  21754. name: "Side",
  21755. image: {
  21756. source: "./media/characters/fixerdragon/side.svg",
  21757. extra: (1293.0514 - 116.03) / 1106.86,
  21758. bottom: 116.03 / 1293.0514
  21759. }
  21760. },
  21761. },
  21762. [
  21763. {
  21764. name: "Planck",
  21765. height: math.unit(1.6e-35, "meters")
  21766. },
  21767. {
  21768. name: "Micro",
  21769. height: math.unit(0.4, "meters")
  21770. },
  21771. {
  21772. name: "Normal",
  21773. height: math.unit(30, "meters"),
  21774. default: true
  21775. },
  21776. {
  21777. name: "Megamacro",
  21778. height: math.unit(1.2, "megameters")
  21779. },
  21780. {
  21781. name: "Teramacro",
  21782. height: math.unit(130, "terameters")
  21783. },
  21784. {
  21785. name: "Yottamacro",
  21786. height: math.unit(6200, "yottameters")
  21787. },
  21788. ]
  21789. ));
  21790. characterMakers.push(() => makeCharacter(
  21791. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21792. {
  21793. front: {
  21794. height: math.unit(8, "feet"),
  21795. weight: math.unit(250, "lb"),
  21796. name: "Front",
  21797. image: {
  21798. source: "./media/characters/kite/front.svg",
  21799. extra: 2796 / 2659,
  21800. bottom: 0.002
  21801. }
  21802. },
  21803. },
  21804. [
  21805. {
  21806. name: "Normal",
  21807. height: math.unit(8, "feet"),
  21808. default: true
  21809. },
  21810. {
  21811. name: "Macro",
  21812. height: math.unit(360, "feet")
  21813. },
  21814. {
  21815. name: "Megamacro",
  21816. height: math.unit(1500, "feet")
  21817. },
  21818. ]
  21819. ))
  21820. characterMakers.push(() => makeCharacter(
  21821. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21822. {
  21823. front: {
  21824. height: math.unit(5 + 11/12, "feet"),
  21825. weight: math.unit(170, "lb"),
  21826. name: "Front",
  21827. image: {
  21828. source: "./media/characters/poojawa-vynar/front.svg",
  21829. extra: 1735/1585,
  21830. bottom: 96/1831
  21831. }
  21832. },
  21833. back: {
  21834. height: math.unit(5 + 11/12, "feet"),
  21835. weight: math.unit(170, "lb"),
  21836. name: "Back",
  21837. image: {
  21838. source: "./media/characters/poojawa-vynar/back.svg",
  21839. extra: 1749/1607,
  21840. bottom: 28/1777
  21841. }
  21842. },
  21843. male: {
  21844. height: math.unit(5 + 11/12, "feet"),
  21845. weight: math.unit(170, "lb"),
  21846. name: "Male",
  21847. image: {
  21848. source: "./media/characters/poojawa-vynar/male.svg",
  21849. extra: 1855/1713,
  21850. bottom: 63/1918
  21851. }
  21852. },
  21853. taur: {
  21854. height: math.unit(5 + 11/12, "feet"),
  21855. weight: math.unit(170, "lb"),
  21856. name: "Taur",
  21857. image: {
  21858. source: "./media/characters/poojawa-vynar/taur.svg",
  21859. extra: 1151/1059,
  21860. bottom: 356/1507
  21861. }
  21862. },
  21863. frontDressed: {
  21864. height: math.unit(5 + 11/12, "feet"),
  21865. weight: math.unit(170, "lb"),
  21866. name: "Front (Dressed)",
  21867. image: {
  21868. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21869. extra: 1735/1585,
  21870. bottom: 96/1831
  21871. }
  21872. },
  21873. backDressed: {
  21874. height: math.unit(5 + 11/12, "feet"),
  21875. weight: math.unit(170, "lb"),
  21876. name: "Back (Dressed)",
  21877. image: {
  21878. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21879. extra: 1749/1607,
  21880. bottom: 28/1777
  21881. }
  21882. },
  21883. maleDressed: {
  21884. height: math.unit(5 + 11/12, "feet"),
  21885. weight: math.unit(170, "lb"),
  21886. name: "Male (Dressed)",
  21887. image: {
  21888. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21889. extra: 1855/1713,
  21890. bottom: 63/1918
  21891. }
  21892. },
  21893. taurDressed: {
  21894. height: math.unit(5 + 11/12, "feet"),
  21895. weight: math.unit(170, "lb"),
  21896. name: "Taur (Dressed)",
  21897. image: {
  21898. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21899. extra: 1151/1059,
  21900. bottom: 356/1507
  21901. }
  21902. },
  21903. maw: {
  21904. height: math.unit(1.46, "feet"),
  21905. name: "Maw",
  21906. image: {
  21907. source: "./media/characters/poojawa-vynar/maw.svg"
  21908. }
  21909. },
  21910. head: {
  21911. height: math.unit(2.34, "feet"),
  21912. name: "Head",
  21913. image: {
  21914. source: "./media/characters/poojawa-vynar/head.svg"
  21915. }
  21916. },
  21917. paw: {
  21918. height: math.unit(1.61, "feet"),
  21919. name: "Paw",
  21920. image: {
  21921. source: "./media/characters/poojawa-vynar/paw.svg"
  21922. }
  21923. },
  21924. pawToering: {
  21925. height: math.unit(1.72, "feet"),
  21926. name: "Paw (Toering)",
  21927. image: {
  21928. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21929. }
  21930. },
  21931. toering: {
  21932. height: math.unit(2.9, "inches"),
  21933. name: "Toering",
  21934. image: {
  21935. source: "./media/characters/poojawa-vynar/toering.svg"
  21936. }
  21937. },
  21938. shaft: {
  21939. height: math.unit(0.625, "feet"),
  21940. name: "Shaft",
  21941. image: {
  21942. source: "./media/characters/poojawa-vynar/shaft.svg"
  21943. }
  21944. },
  21945. spade: {
  21946. height: math.unit(0.42, "feet"),
  21947. name: "Spade",
  21948. image: {
  21949. source: "./media/characters/poojawa-vynar/spade.svg"
  21950. }
  21951. },
  21952. },
  21953. [
  21954. {
  21955. name: "Shortstack",
  21956. height: math.unit(4, "feet")
  21957. },
  21958. {
  21959. name: "Normal",
  21960. height: math.unit(5 + 11 / 12, "feet"),
  21961. default: true
  21962. },
  21963. {
  21964. name: "Tauric",
  21965. height: math.unit(4, "meters")
  21966. },
  21967. ]
  21968. ))
  21969. characterMakers.push(() => makeCharacter(
  21970. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21971. {
  21972. front: {
  21973. height: math.unit(293, "meters"),
  21974. weight: math.unit(70400, "tons"),
  21975. name: "Front",
  21976. image: {
  21977. source: "./media/characters/violette/front.svg",
  21978. extra: 1227 / 1180,
  21979. bottom: 0.005
  21980. }
  21981. },
  21982. back: {
  21983. height: math.unit(293, "meters"),
  21984. weight: math.unit(70400, "tons"),
  21985. name: "Back",
  21986. image: {
  21987. source: "./media/characters/violette/back.svg",
  21988. extra: 1227 / 1180,
  21989. bottom: 0.005
  21990. }
  21991. },
  21992. },
  21993. [
  21994. {
  21995. name: "Macro",
  21996. height: math.unit(293, "meters"),
  21997. default: true
  21998. },
  21999. ]
  22000. ))
  22001. characterMakers.push(() => makeCharacter(
  22002. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22003. {
  22004. front: {
  22005. height: math.unit(1050, "feet"),
  22006. weight: math.unit(200000, "tons"),
  22007. name: "Front",
  22008. image: {
  22009. source: "./media/characters/alessandra/front.svg",
  22010. extra: 960 / 912,
  22011. bottom: 0.06
  22012. }
  22013. },
  22014. },
  22015. [
  22016. {
  22017. name: "Macro",
  22018. height: math.unit(1050, "feet")
  22019. },
  22020. {
  22021. name: "Macro+",
  22022. height: math.unit(900, "meters"),
  22023. default: true
  22024. },
  22025. ]
  22026. ))
  22027. characterMakers.push(() => makeCharacter(
  22028. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22029. {
  22030. front: {
  22031. height: math.unit(5, "feet"),
  22032. weight: math.unit(187, "lb"),
  22033. name: "Front",
  22034. image: {
  22035. source: "./media/characters/person/front.svg",
  22036. extra: 3087 / 2945,
  22037. bottom: 91 / 3181
  22038. }
  22039. },
  22040. },
  22041. [
  22042. {
  22043. name: "Micro",
  22044. height: math.unit(3, "inches")
  22045. },
  22046. {
  22047. name: "Normal",
  22048. height: math.unit(5, "feet"),
  22049. default: true
  22050. },
  22051. {
  22052. name: "Macro",
  22053. height: math.unit(90, "feet")
  22054. },
  22055. {
  22056. name: "Max Size",
  22057. height: math.unit(280, "feet")
  22058. },
  22059. ]
  22060. ))
  22061. characterMakers.push(() => makeCharacter(
  22062. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22063. {
  22064. front: {
  22065. height: math.unit(4.5, "meters"),
  22066. weight: math.unit(3200, "lb"),
  22067. name: "Front",
  22068. image: {
  22069. source: "./media/characters/ty/front.svg",
  22070. extra: 1038 / 960,
  22071. bottom: 31.156 / 1068
  22072. }
  22073. },
  22074. back: {
  22075. height: math.unit(4.5, "meters"),
  22076. weight: math.unit(3200, "lb"),
  22077. name: "Back",
  22078. image: {
  22079. source: "./media/characters/ty/back.svg",
  22080. extra: 1044 / 966,
  22081. bottom: 7.48 / 1049
  22082. }
  22083. },
  22084. },
  22085. [
  22086. {
  22087. name: "Normal",
  22088. height: math.unit(4.5, "meters"),
  22089. default: true
  22090. },
  22091. ]
  22092. ))
  22093. characterMakers.push(() => makeCharacter(
  22094. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22095. {
  22096. front: {
  22097. height: math.unit(5 + 4 / 12, "feet"),
  22098. weight: math.unit(115, "lb"),
  22099. name: "Front",
  22100. image: {
  22101. source: "./media/characters/rocky/front.svg",
  22102. extra: 1012 / 975,
  22103. bottom: 54 / 1066
  22104. }
  22105. },
  22106. },
  22107. [
  22108. {
  22109. name: "Normal",
  22110. height: math.unit(5 + 4 / 12, "feet"),
  22111. default: true
  22112. },
  22113. ]
  22114. ))
  22115. characterMakers.push(() => makeCharacter(
  22116. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22117. {
  22118. upright: {
  22119. height: math.unit(6, "meters"),
  22120. weight: math.unit(4000, "kg"),
  22121. name: "Upright",
  22122. image: {
  22123. source: "./media/characters/ruin/upright.svg",
  22124. extra: 668 / 661,
  22125. bottom: 42 / 799.8396
  22126. }
  22127. },
  22128. },
  22129. [
  22130. {
  22131. name: "Normal",
  22132. height: math.unit(6, "meters"),
  22133. default: true
  22134. },
  22135. ]
  22136. ))
  22137. characterMakers.push(() => makeCharacter(
  22138. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22139. {
  22140. front: {
  22141. height: math.unit(5, "feet"),
  22142. weight: math.unit(106, "lb"),
  22143. name: "Front",
  22144. image: {
  22145. source: "./media/characters/robin/front.svg",
  22146. extra: 862 / 799,
  22147. bottom: 42.4 / 914.8856
  22148. }
  22149. },
  22150. },
  22151. [
  22152. {
  22153. name: "Normal",
  22154. height: math.unit(5, "feet"),
  22155. default: true
  22156. },
  22157. ]
  22158. ))
  22159. characterMakers.push(() => makeCharacter(
  22160. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22161. {
  22162. side: {
  22163. height: math.unit(3, "feet"),
  22164. weight: math.unit(225, "lb"),
  22165. name: "Side",
  22166. image: {
  22167. source: "./media/characters/saian/side.svg",
  22168. extra: 566 / 356,
  22169. bottom: 79.7 / 643
  22170. }
  22171. },
  22172. maw: {
  22173. height: math.unit(2.85, "feet"),
  22174. name: "Maw",
  22175. image: {
  22176. source: "./media/characters/saian/maw.svg"
  22177. }
  22178. },
  22179. },
  22180. [
  22181. {
  22182. name: "Normal",
  22183. height: math.unit(3, "feet"),
  22184. default: true
  22185. },
  22186. ]
  22187. ))
  22188. characterMakers.push(() => makeCharacter(
  22189. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22190. {
  22191. side: {
  22192. height: math.unit(8, "feet"),
  22193. weight: math.unit(300, "lb"),
  22194. name: "Side",
  22195. image: {
  22196. source: "./media/characters/equus-silvermane/side.svg",
  22197. extra: 2176 / 2050,
  22198. bottom: 65.7 / 2245
  22199. }
  22200. },
  22201. front: {
  22202. height: math.unit(8, "feet"),
  22203. weight: math.unit(300, "lb"),
  22204. name: "Front",
  22205. image: {
  22206. source: "./media/characters/equus-silvermane/front.svg",
  22207. extra: 4633 / 4400,
  22208. bottom: 71.3 / 4706.915
  22209. }
  22210. },
  22211. sideStepping: {
  22212. height: math.unit(8, "feet"),
  22213. weight: math.unit(300, "lb"),
  22214. name: "Side (Stepping)",
  22215. image: {
  22216. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22217. extra: 1968 / 1860,
  22218. bottom: 16.4 / 1989
  22219. }
  22220. },
  22221. },
  22222. [
  22223. {
  22224. name: "Normal",
  22225. height: math.unit(8, "feet")
  22226. },
  22227. {
  22228. name: "Minimacro",
  22229. height: math.unit(75, "feet"),
  22230. default: true
  22231. },
  22232. {
  22233. name: "Macro",
  22234. height: math.unit(150, "feet")
  22235. },
  22236. {
  22237. name: "Macro+",
  22238. height: math.unit(1000, "feet")
  22239. },
  22240. {
  22241. name: "Megamacro",
  22242. height: math.unit(1, "mile")
  22243. },
  22244. ]
  22245. ))
  22246. characterMakers.push(() => makeCharacter(
  22247. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22248. {
  22249. side: {
  22250. height: math.unit(20, "feet"),
  22251. weight: math.unit(30000, "kg"),
  22252. name: "Side",
  22253. image: {
  22254. source: "./media/characters/windar/side.svg",
  22255. extra: 1491 / 1248,
  22256. bottom: 82.56 / 1568
  22257. }
  22258. },
  22259. },
  22260. [
  22261. {
  22262. name: "Normal",
  22263. height: math.unit(20, "feet"),
  22264. default: true
  22265. },
  22266. ]
  22267. ))
  22268. characterMakers.push(() => makeCharacter(
  22269. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22270. {
  22271. side: {
  22272. height: math.unit(15.66, "feet"),
  22273. weight: math.unit(150, "lb"),
  22274. name: "Side",
  22275. image: {
  22276. source: "./media/characters/melody/side.svg",
  22277. extra: 1097 / 944,
  22278. bottom: 11.8 / 1109
  22279. }
  22280. },
  22281. sideOutfit: {
  22282. height: math.unit(15.66, "feet"),
  22283. weight: math.unit(150, "lb"),
  22284. name: "Side (Outfit)",
  22285. image: {
  22286. source: "./media/characters/melody/side-outfit.svg",
  22287. extra: 1097 / 944,
  22288. bottom: 11.8 / 1109
  22289. }
  22290. },
  22291. },
  22292. [
  22293. {
  22294. name: "Normal",
  22295. height: math.unit(15.66, "feet"),
  22296. default: true
  22297. },
  22298. ]
  22299. ))
  22300. characterMakers.push(() => makeCharacter(
  22301. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22302. {
  22303. front: {
  22304. height: math.unit(8, "feet"),
  22305. weight: math.unit(325, "lb"),
  22306. name: "Front",
  22307. image: {
  22308. source: "./media/characters/windera/front.svg",
  22309. extra: 3180 / 2845,
  22310. bottom: 178 / 3365
  22311. }
  22312. },
  22313. },
  22314. [
  22315. {
  22316. name: "Normal",
  22317. height: math.unit(8, "feet"),
  22318. default: true
  22319. },
  22320. ]
  22321. ))
  22322. characterMakers.push(() => makeCharacter(
  22323. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22324. {
  22325. front: {
  22326. height: math.unit(28.75, "feet"),
  22327. weight: math.unit(2000, "kg"),
  22328. name: "Front",
  22329. image: {
  22330. source: "./media/characters/sonear/front.svg",
  22331. extra: 1041.1 / 964.9,
  22332. bottom: 53.7 / 1096.6
  22333. }
  22334. },
  22335. },
  22336. [
  22337. {
  22338. name: "Normal",
  22339. height: math.unit(28.75, "feet"),
  22340. default: true
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22346. {
  22347. side: {
  22348. height: math.unit(25.5, "feet"),
  22349. weight: math.unit(23000, "kg"),
  22350. name: "Side",
  22351. image: {
  22352. source: "./media/characters/kanara/side.svg"
  22353. }
  22354. },
  22355. },
  22356. [
  22357. {
  22358. name: "Normal",
  22359. height: math.unit(25.5, "feet"),
  22360. default: true
  22361. },
  22362. ]
  22363. ))
  22364. characterMakers.push(() => makeCharacter(
  22365. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22366. {
  22367. side: {
  22368. height: math.unit(10, "feet"),
  22369. weight: math.unit(1000, "kg"),
  22370. name: "Side",
  22371. image: {
  22372. source: "./media/characters/ereus/side.svg",
  22373. extra: 1157 / 959,
  22374. bottom: 153 / 1312.5
  22375. }
  22376. },
  22377. },
  22378. [
  22379. {
  22380. name: "Normal",
  22381. height: math.unit(10, "feet"),
  22382. default: true
  22383. },
  22384. ]
  22385. ))
  22386. characterMakers.push(() => makeCharacter(
  22387. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22388. {
  22389. side: {
  22390. height: math.unit(4.5, "feet"),
  22391. weight: math.unit(500, "lb"),
  22392. name: "Side",
  22393. image: {
  22394. source: "./media/characters/e-ter/side.svg",
  22395. extra: 1550 / 1248,
  22396. bottom: 146 / 1694
  22397. }
  22398. },
  22399. },
  22400. [
  22401. {
  22402. name: "Normal",
  22403. height: math.unit(4.5, "feet"),
  22404. default: true
  22405. },
  22406. ]
  22407. ))
  22408. characterMakers.push(() => makeCharacter(
  22409. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22410. {
  22411. side: {
  22412. height: math.unit(9.7, "feet"),
  22413. weight: math.unit(4000, "kg"),
  22414. name: "Side",
  22415. image: {
  22416. source: "./media/characters/yamie/side.svg"
  22417. }
  22418. },
  22419. },
  22420. [
  22421. {
  22422. name: "Normal",
  22423. height: math.unit(9.7, "feet"),
  22424. default: true
  22425. },
  22426. ]
  22427. ))
  22428. characterMakers.push(() => makeCharacter(
  22429. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22430. {
  22431. front: {
  22432. height: math.unit(50, "feet"),
  22433. weight: math.unit(50000, "kg"),
  22434. name: "Front",
  22435. image: {
  22436. source: "./media/characters/anders/front.svg",
  22437. extra: 570 / 539,
  22438. bottom: 14.7 / 586.7
  22439. }
  22440. },
  22441. },
  22442. [
  22443. {
  22444. name: "Large",
  22445. height: math.unit(50, "feet")
  22446. },
  22447. {
  22448. name: "Macro",
  22449. height: math.unit(2000, "feet"),
  22450. default: true
  22451. },
  22452. {
  22453. name: "Megamacro",
  22454. height: math.unit(12, "miles")
  22455. },
  22456. ]
  22457. ))
  22458. characterMakers.push(() => makeCharacter(
  22459. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22460. {
  22461. front: {
  22462. height: math.unit(7 + 2 / 12, "feet"),
  22463. weight: math.unit(300, "lb"),
  22464. name: "Front",
  22465. image: {
  22466. source: "./media/characters/reban/front.svg",
  22467. extra: 1287/1212,
  22468. bottom: 148/1435
  22469. }
  22470. },
  22471. head: {
  22472. height: math.unit(1.95, "feet"),
  22473. name: "Head",
  22474. image: {
  22475. source: "./media/characters/reban/head.svg"
  22476. }
  22477. },
  22478. maw: {
  22479. height: math.unit(0.95, "feet"),
  22480. name: "Maw",
  22481. image: {
  22482. source: "./media/characters/reban/maw.svg"
  22483. }
  22484. },
  22485. foot: {
  22486. height: math.unit(1.65, "feet"),
  22487. name: "Foot",
  22488. image: {
  22489. source: "./media/characters/reban/foot.svg"
  22490. }
  22491. },
  22492. dick: {
  22493. height: math.unit(7 / 5, "feet"),
  22494. name: "Dick",
  22495. image: {
  22496. source: "./media/characters/reban/dick.svg"
  22497. }
  22498. },
  22499. },
  22500. [
  22501. {
  22502. name: "Natural Height",
  22503. height: math.unit(7 + 2 / 12, "feet")
  22504. },
  22505. {
  22506. name: "Macro",
  22507. height: math.unit(500, "feet"),
  22508. default: true
  22509. },
  22510. {
  22511. name: "Canon Height",
  22512. height: math.unit(50, "AU")
  22513. },
  22514. ]
  22515. ))
  22516. characterMakers.push(() => makeCharacter(
  22517. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22518. {
  22519. front: {
  22520. height: math.unit(6, "feet"),
  22521. weight: math.unit(150, "lb"),
  22522. name: "Front",
  22523. image: {
  22524. source: "./media/characters/terrance-keayes/front.svg",
  22525. extra: 1.005,
  22526. bottom: 151 / 1615
  22527. }
  22528. },
  22529. side: {
  22530. height: math.unit(6, "feet"),
  22531. weight: math.unit(150, "lb"),
  22532. name: "Side",
  22533. image: {
  22534. source: "./media/characters/terrance-keayes/side.svg",
  22535. extra: 1.005,
  22536. bottom: 129.4 / 1544
  22537. }
  22538. },
  22539. back: {
  22540. height: math.unit(6, "feet"),
  22541. weight: math.unit(150, "lb"),
  22542. name: "Back",
  22543. image: {
  22544. source: "./media/characters/terrance-keayes/back.svg",
  22545. extra: 1.005,
  22546. bottom: 58.4 / 1557.3
  22547. }
  22548. },
  22549. dick: {
  22550. height: math.unit(6 * 0.208, "feet"),
  22551. name: "Dick",
  22552. image: {
  22553. source: "./media/characters/terrance-keayes/dick.svg"
  22554. }
  22555. },
  22556. },
  22557. [
  22558. {
  22559. name: "Canon Height",
  22560. height: math.unit(35, "miles"),
  22561. default: true
  22562. },
  22563. ]
  22564. ))
  22565. characterMakers.push(() => makeCharacter(
  22566. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22567. {
  22568. front: {
  22569. height: math.unit(6, "feet"),
  22570. weight: math.unit(150, "lb"),
  22571. name: "Front",
  22572. image: {
  22573. source: "./media/characters/ofelia/front.svg",
  22574. extra: 1130/1117,
  22575. bottom: 91/1221
  22576. }
  22577. },
  22578. back: {
  22579. height: math.unit(6, "feet"),
  22580. weight: math.unit(150, "lb"),
  22581. name: "Back",
  22582. image: {
  22583. source: "./media/characters/ofelia/back.svg",
  22584. extra: 1172/1159,
  22585. bottom: 28/1200
  22586. }
  22587. },
  22588. maw: {
  22589. height: math.unit(1, "feet"),
  22590. name: "Maw",
  22591. image: {
  22592. source: "./media/characters/ofelia/maw.svg"
  22593. }
  22594. },
  22595. foot: {
  22596. height: math.unit(1.949, "feet"),
  22597. name: "Foot",
  22598. image: {
  22599. source: "./media/characters/ofelia/foot.svg"
  22600. }
  22601. },
  22602. },
  22603. [
  22604. {
  22605. name: "Canon Height",
  22606. height: math.unit(2000, "miles"),
  22607. default: true
  22608. },
  22609. ]
  22610. ))
  22611. characterMakers.push(() => makeCharacter(
  22612. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22613. {
  22614. front: {
  22615. height: math.unit(6, "feet"),
  22616. weight: math.unit(150, "lb"),
  22617. name: "Front",
  22618. image: {
  22619. source: "./media/characters/samuel/front.svg",
  22620. extra: 265 / 258,
  22621. bottom: 2 / 266.1566
  22622. }
  22623. },
  22624. },
  22625. [
  22626. {
  22627. name: "Macro",
  22628. height: math.unit(100, "feet"),
  22629. default: true
  22630. },
  22631. {
  22632. name: "Full Size",
  22633. height: math.unit(1000, "miles")
  22634. },
  22635. ]
  22636. ))
  22637. characterMakers.push(() => makeCharacter(
  22638. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22639. {
  22640. front: {
  22641. height: math.unit(6, "feet"),
  22642. weight: math.unit(300, "lb"),
  22643. name: "Front",
  22644. image: {
  22645. source: "./media/characters/beishir-kiel/front.svg",
  22646. extra: 569 / 547,
  22647. bottom: 41.9 / 609
  22648. }
  22649. },
  22650. maw: {
  22651. height: math.unit(6 * 0.202, "feet"),
  22652. name: "Maw",
  22653. image: {
  22654. source: "./media/characters/beishir-kiel/maw.svg"
  22655. }
  22656. },
  22657. },
  22658. [
  22659. {
  22660. name: "Macro",
  22661. height: math.unit(300, "feet"),
  22662. default: true
  22663. },
  22664. ]
  22665. ))
  22666. characterMakers.push(() => makeCharacter(
  22667. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22668. {
  22669. front: {
  22670. height: math.unit(5 + 7/12, "feet"),
  22671. weight: math.unit(120, "lb"),
  22672. name: "Front",
  22673. image: {
  22674. source: "./media/characters/logan-grey/front.svg",
  22675. extra: 1836/1738,
  22676. bottom: 108/1944
  22677. }
  22678. },
  22679. back: {
  22680. height: math.unit(5 + 7/12, "feet"),
  22681. weight: math.unit(120, "lb"),
  22682. name: "Back",
  22683. image: {
  22684. source: "./media/characters/logan-grey/back.svg",
  22685. extra: 1880/1794,
  22686. bottom: 24/1904
  22687. }
  22688. },
  22689. frontSfw: {
  22690. height: math.unit(5 + 7/12, "feet"),
  22691. weight: math.unit(120, "lb"),
  22692. name: "Front (SFW)",
  22693. image: {
  22694. source: "./media/characters/logan-grey/front-sfw.svg",
  22695. extra: 1836/1738,
  22696. bottom: 108/1944
  22697. }
  22698. },
  22699. backSfw: {
  22700. height: math.unit(5 + 7/12, "feet"),
  22701. weight: math.unit(120, "lb"),
  22702. name: "Back (SFW)",
  22703. image: {
  22704. source: "./media/characters/logan-grey/back-sfw.svg",
  22705. extra: 1880/1794,
  22706. bottom: 24/1904
  22707. }
  22708. },
  22709. hands: {
  22710. height: math.unit(0.84, "feet"),
  22711. name: "Hands",
  22712. image: {
  22713. source: "./media/characters/logan-grey/hands.svg"
  22714. }
  22715. },
  22716. paws: {
  22717. height: math.unit(0.72, "feet"),
  22718. name: "Paws",
  22719. image: {
  22720. source: "./media/characters/logan-grey/paws.svg"
  22721. }
  22722. },
  22723. cock: {
  22724. height: math.unit(1.45, "feet"),
  22725. name: "Cock",
  22726. image: {
  22727. source: "./media/characters/logan-grey/cock.svg"
  22728. }
  22729. },
  22730. cockAlt: {
  22731. height: math.unit(1.437, "feet"),
  22732. name: "Cock (alt)",
  22733. image: {
  22734. source: "./media/characters/logan-grey/cock-alt.svg"
  22735. }
  22736. },
  22737. },
  22738. [
  22739. {
  22740. name: "Normal",
  22741. height: math.unit(5 + 8 / 12, "feet")
  22742. },
  22743. {
  22744. name: "The 500 Foot Femboy",
  22745. height: math.unit(500, "feet"),
  22746. default: true
  22747. },
  22748. {
  22749. name: "Megmacro",
  22750. height: math.unit(20, "miles")
  22751. },
  22752. ]
  22753. ))
  22754. characterMakers.push(() => makeCharacter(
  22755. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22756. {
  22757. front: {
  22758. height: math.unit(8 + 2 / 12, "feet"),
  22759. weight: math.unit(275, "lb"),
  22760. name: "Front",
  22761. image: {
  22762. source: "./media/characters/draganta/front.svg",
  22763. extra: 1177 / 1135,
  22764. bottom: 33.46 / 1212.1
  22765. }
  22766. },
  22767. },
  22768. [
  22769. {
  22770. name: "Normal",
  22771. height: math.unit(8 + 6 / 12, "feet"),
  22772. default: true
  22773. },
  22774. {
  22775. name: "Macro",
  22776. height: math.unit(150, "feet")
  22777. },
  22778. {
  22779. name: "Megamacro",
  22780. height: math.unit(1000, "miles")
  22781. },
  22782. ]
  22783. ))
  22784. characterMakers.push(() => makeCharacter(
  22785. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22786. {
  22787. front: {
  22788. height: math.unit(1.72, "m"),
  22789. weight: math.unit(80, "lb"),
  22790. name: "Front",
  22791. image: {
  22792. source: "./media/characters/voski/front.svg",
  22793. extra: 2076.22 / 2022.4,
  22794. bottom: 102.7 / 2177.3866
  22795. }
  22796. },
  22797. frontNsfw: {
  22798. height: math.unit(1.72, "m"),
  22799. weight: math.unit(80, "lb"),
  22800. name: "Front (NSFW)",
  22801. image: {
  22802. source: "./media/characters/voski/front-nsfw.svg",
  22803. extra: 2076.22 / 2022.4,
  22804. bottom: 102.7 / 2177.3866
  22805. }
  22806. },
  22807. back: {
  22808. height: math.unit(1.72, "m"),
  22809. weight: math.unit(80, "lb"),
  22810. name: "Back",
  22811. image: {
  22812. source: "./media/characters/voski/back.svg",
  22813. extra: 2104 / 2051,
  22814. bottom: 10.45 / 2113.63
  22815. }
  22816. },
  22817. },
  22818. [
  22819. {
  22820. name: "Normal",
  22821. height: math.unit(1.72, "m")
  22822. },
  22823. {
  22824. name: "Macro",
  22825. height: math.unit(55, "m"),
  22826. default: true
  22827. },
  22828. {
  22829. name: "Macro+",
  22830. height: math.unit(300, "m")
  22831. },
  22832. {
  22833. name: "Macro++",
  22834. height: math.unit(700, "m")
  22835. },
  22836. {
  22837. name: "Macro+++",
  22838. height: math.unit(4500, "m")
  22839. },
  22840. {
  22841. name: "Macro++++",
  22842. height: math.unit(45, "km")
  22843. },
  22844. {
  22845. name: "Macro+++++",
  22846. height: math.unit(1220, "km")
  22847. },
  22848. ]
  22849. ))
  22850. characterMakers.push(() => makeCharacter(
  22851. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22852. {
  22853. front: {
  22854. height: math.unit(2.3, "m"),
  22855. weight: math.unit(304, "kg"),
  22856. name: "Front",
  22857. image: {
  22858. source: "./media/characters/icowom-lee/front.svg",
  22859. extra: 985 / 955,
  22860. bottom: 25.4 / 1012
  22861. }
  22862. },
  22863. fronttentacles: {
  22864. height: math.unit(2.3, "m"),
  22865. weight: math.unit(304, "kg"),
  22866. name: "Front-tentacles",
  22867. image: {
  22868. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22869. extra: 985 / 955,
  22870. bottom: 25.4 / 1012
  22871. }
  22872. },
  22873. back: {
  22874. height: math.unit(2.3, "m"),
  22875. weight: math.unit(304, "kg"),
  22876. name: "Back",
  22877. image: {
  22878. source: "./media/characters/icowom-lee/back.svg",
  22879. extra: 975 / 954,
  22880. bottom: 9.5 / 985
  22881. }
  22882. },
  22883. backtentacles: {
  22884. height: math.unit(2.3, "m"),
  22885. weight: math.unit(304, "kg"),
  22886. name: "Back-tentacles",
  22887. image: {
  22888. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22889. extra: 975 / 954,
  22890. bottom: 9.5 / 985
  22891. }
  22892. },
  22893. frontDressed: {
  22894. height: math.unit(2.3, "m"),
  22895. weight: math.unit(304, "kg"),
  22896. name: "Front (Dressed)",
  22897. image: {
  22898. source: "./media/characters/icowom-lee/front-dressed.svg",
  22899. extra: 3076 / 2933,
  22900. bottom: 51.4 / 3125.1889
  22901. }
  22902. },
  22903. rump: {
  22904. height: math.unit(0.776, "meters"),
  22905. name: "Rump",
  22906. image: {
  22907. source: "./media/characters/icowom-lee/rump.svg"
  22908. }
  22909. },
  22910. genitals: {
  22911. height: math.unit(0.78, "meters"),
  22912. name: "Genitals",
  22913. image: {
  22914. source: "./media/characters/icowom-lee/genitals.svg"
  22915. }
  22916. },
  22917. },
  22918. [
  22919. {
  22920. name: "Normal",
  22921. height: math.unit(2.3, "meters"),
  22922. default: true
  22923. },
  22924. {
  22925. name: "Macro",
  22926. height: math.unit(94, "meters"),
  22927. default: true
  22928. },
  22929. ]
  22930. ))
  22931. characterMakers.push(() => makeCharacter(
  22932. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22933. {
  22934. front: {
  22935. height: math.unit(22, "meters"),
  22936. weight: math.unit(21000, "kg"),
  22937. name: "Front",
  22938. image: {
  22939. source: "./media/characters/shock-diamond/front.svg",
  22940. extra: 2204 / 2053,
  22941. bottom: 65 / 2239.47
  22942. }
  22943. },
  22944. frontNude: {
  22945. height: math.unit(22, "meters"),
  22946. weight: math.unit(21000, "kg"),
  22947. name: "Front (Nude)",
  22948. image: {
  22949. source: "./media/characters/shock-diamond/front-nude.svg",
  22950. extra: 2514 / 2285,
  22951. bottom: 13 / 2527.56
  22952. }
  22953. },
  22954. },
  22955. [
  22956. {
  22957. name: "Normal",
  22958. height: math.unit(3, "meters")
  22959. },
  22960. {
  22961. name: "Macro",
  22962. height: math.unit(22, "meters"),
  22963. default: true
  22964. },
  22965. ]
  22966. ))
  22967. characterMakers.push(() => makeCharacter(
  22968. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22969. {
  22970. front: {
  22971. height: math.unit(5 + 4 / 12, "feet"),
  22972. weight: math.unit(120, "lb"),
  22973. name: "Front",
  22974. image: {
  22975. source: "./media/characters/rory/front.svg",
  22976. extra: 1318/1241,
  22977. bottom: 42/1360
  22978. }
  22979. },
  22980. back: {
  22981. height: math.unit(5 + 4 / 12, "feet"),
  22982. weight: math.unit(120, "lb"),
  22983. name: "Back",
  22984. image: {
  22985. source: "./media/characters/rory/back.svg",
  22986. extra: 1318/1241,
  22987. bottom: 42/1360
  22988. }
  22989. },
  22990. butt: {
  22991. height: math.unit(1.74, "feet"),
  22992. name: "Butt",
  22993. image: {
  22994. source: "./media/characters/rory/butt.svg"
  22995. }
  22996. },
  22997. dick: {
  22998. height: math.unit(1.02, "feet"),
  22999. name: "Dick",
  23000. image: {
  23001. source: "./media/characters/rory/dick.svg"
  23002. }
  23003. },
  23004. paws: {
  23005. height: math.unit(1, "feet"),
  23006. name: "Paws",
  23007. image: {
  23008. source: "./media/characters/rory/paws.svg"
  23009. }
  23010. },
  23011. frontAlt: {
  23012. height: math.unit(5 + 4 / 12, "feet"),
  23013. weight: math.unit(120, "lb"),
  23014. name: "Front (Alt)",
  23015. image: {
  23016. source: "./media/characters/rory/front-alt.svg",
  23017. extra: 589 / 556,
  23018. bottom: 45.7 / 635.76
  23019. }
  23020. },
  23021. frontAltNude: {
  23022. height: math.unit(5 + 4 / 12, "feet"),
  23023. weight: math.unit(120, "lb"),
  23024. name: "Front (Alt, Nude)",
  23025. image: {
  23026. source: "./media/characters/rory/front-alt-nude.svg",
  23027. extra: 589 / 556,
  23028. bottom: 45.7 / 635.76
  23029. }
  23030. },
  23031. side: {
  23032. height: math.unit(5 + 4 / 12, "feet"),
  23033. weight: math.unit(120, "lb"),
  23034. name: "Side",
  23035. image: {
  23036. source: "./media/characters/rory/side.svg",
  23037. extra: 597 / 564,
  23038. bottom: 55 / 653
  23039. }
  23040. },
  23041. backAlt: {
  23042. height: math.unit(5 + 4 / 12, "feet"),
  23043. weight: math.unit(120, "lb"),
  23044. name: "Back (Alt)",
  23045. image: {
  23046. source: "./media/characters/rory/back-alt.svg",
  23047. extra: 620 / 585,
  23048. bottom: 8.86 / 630.43
  23049. }
  23050. },
  23051. dickAlt: {
  23052. height: math.unit(0.86, "feet"),
  23053. name: "Dick (Alt)",
  23054. image: {
  23055. source: "./media/characters/rory/dick-alt.svg"
  23056. }
  23057. },
  23058. },
  23059. [
  23060. {
  23061. name: "Normal",
  23062. height: math.unit(5 + 4 / 12, "feet"),
  23063. default: true
  23064. },
  23065. {
  23066. name: "Macro",
  23067. height: math.unit(100, "feet")
  23068. },
  23069. {
  23070. name: "Macro+",
  23071. height: math.unit(140, "feet")
  23072. },
  23073. {
  23074. name: "Macro++",
  23075. height: math.unit(300, "feet")
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23081. {
  23082. front: {
  23083. height: math.unit(5 + 9 / 12, "feet"),
  23084. weight: math.unit(190, "lb"),
  23085. name: "Front",
  23086. image: {
  23087. source: "./media/characters/sprisk/front.svg",
  23088. extra: 1225 / 1180,
  23089. bottom: 42.7 / 1266.4
  23090. }
  23091. },
  23092. frontNsfw: {
  23093. height: math.unit(5 + 9 / 12, "feet"),
  23094. weight: math.unit(190, "lb"),
  23095. name: "Front (NSFW)",
  23096. image: {
  23097. source: "./media/characters/sprisk/front-nsfw.svg",
  23098. extra: 1225 / 1180,
  23099. bottom: 42.7 / 1266.4
  23100. }
  23101. },
  23102. back: {
  23103. height: math.unit(5 + 9 / 12, "feet"),
  23104. weight: math.unit(190, "lb"),
  23105. name: "Back",
  23106. image: {
  23107. source: "./media/characters/sprisk/back.svg",
  23108. extra: 1247 / 1200,
  23109. bottom: 5.6 / 1253.04
  23110. }
  23111. },
  23112. },
  23113. [
  23114. {
  23115. name: "Tiny",
  23116. height: math.unit(2, "inches")
  23117. },
  23118. {
  23119. name: "Normal",
  23120. height: math.unit(5 + 9 / 12, "feet"),
  23121. default: true
  23122. },
  23123. {
  23124. name: "Mini Macro",
  23125. height: math.unit(18, "feet")
  23126. },
  23127. {
  23128. name: "Macro",
  23129. height: math.unit(100, "feet")
  23130. },
  23131. {
  23132. name: "MACRO",
  23133. height: math.unit(50, "miles")
  23134. },
  23135. {
  23136. name: "M A C R O",
  23137. height: math.unit(300, "miles")
  23138. },
  23139. ]
  23140. ))
  23141. characterMakers.push(() => makeCharacter(
  23142. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23143. {
  23144. side: {
  23145. height: math.unit(15.6, "meters"),
  23146. weight: math.unit(700000, "kg"),
  23147. name: "Side",
  23148. image: {
  23149. source: "./media/characters/bunsen/side.svg",
  23150. extra: 1644 / 358
  23151. }
  23152. },
  23153. foot: {
  23154. height: math.unit(1.611 * 1644 / 358, "meter"),
  23155. name: "Foot",
  23156. image: {
  23157. source: "./media/characters/bunsen/foot.svg"
  23158. }
  23159. },
  23160. },
  23161. [
  23162. {
  23163. name: "Small",
  23164. height: math.unit(10, "feet")
  23165. },
  23166. {
  23167. name: "Normal",
  23168. height: math.unit(15.6, "meters"),
  23169. default: true
  23170. },
  23171. ]
  23172. ))
  23173. characterMakers.push(() => makeCharacter(
  23174. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23175. {
  23176. front: {
  23177. height: math.unit(4 + 11 / 12, "feet"),
  23178. weight: math.unit(140, "lb"),
  23179. name: "Front",
  23180. image: {
  23181. source: "./media/characters/sesh/front.svg",
  23182. extra: 3420 / 3231,
  23183. bottom: 72 / 3949.5
  23184. }
  23185. },
  23186. },
  23187. [
  23188. {
  23189. name: "Normal",
  23190. height: math.unit(4 + 11 / 12, "feet")
  23191. },
  23192. {
  23193. name: "Grown",
  23194. height: math.unit(15, "feet"),
  23195. default: true
  23196. },
  23197. {
  23198. name: "Macro",
  23199. height: math.unit(1500, "feet")
  23200. },
  23201. {
  23202. name: "Megamacro",
  23203. height: math.unit(30, "miles")
  23204. },
  23205. {
  23206. name: "Continental",
  23207. height: math.unit(3000, "miles")
  23208. },
  23209. {
  23210. name: "Gravity Mass",
  23211. height: math.unit(300000, "miles")
  23212. },
  23213. {
  23214. name: "Planet Buster",
  23215. height: math.unit(30000000, "miles")
  23216. },
  23217. {
  23218. name: "Big",
  23219. height: math.unit(3000000000, "miles")
  23220. },
  23221. ]
  23222. ))
  23223. characterMakers.push(() => makeCharacter(
  23224. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23225. {
  23226. front: {
  23227. height: math.unit(9, "feet"),
  23228. weight: math.unit(350, "lb"),
  23229. name: "Front",
  23230. image: {
  23231. source: "./media/characters/pepper/front.svg",
  23232. extra: 1448 / 1312,
  23233. bottom: 9.4 / 1457.88
  23234. }
  23235. },
  23236. back: {
  23237. height: math.unit(9, "feet"),
  23238. weight: math.unit(350, "lb"),
  23239. name: "Back",
  23240. image: {
  23241. source: "./media/characters/pepper/back.svg",
  23242. extra: 1423 / 1300,
  23243. bottom: 4.6 / 1429
  23244. }
  23245. },
  23246. maw: {
  23247. height: math.unit(0.932, "feet"),
  23248. name: "Maw",
  23249. image: {
  23250. source: "./media/characters/pepper/maw.svg"
  23251. }
  23252. },
  23253. },
  23254. [
  23255. {
  23256. name: "Normal",
  23257. height: math.unit(9, "feet"),
  23258. default: true
  23259. },
  23260. ]
  23261. ))
  23262. characterMakers.push(() => makeCharacter(
  23263. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23264. {
  23265. front: {
  23266. height: math.unit(6, "feet"),
  23267. weight: math.unit(150, "lb"),
  23268. name: "Front",
  23269. image: {
  23270. source: "./media/characters/maelstrom/front.svg",
  23271. extra: 2100 / 1883,
  23272. bottom: 94 / 2196.7
  23273. }
  23274. },
  23275. },
  23276. [
  23277. {
  23278. name: "Less Kaiju",
  23279. height: math.unit(200, "feet")
  23280. },
  23281. {
  23282. name: "Kaiju",
  23283. height: math.unit(400, "feet"),
  23284. default: true
  23285. },
  23286. {
  23287. name: "Kaiju-er",
  23288. height: math.unit(600, "feet")
  23289. },
  23290. ]
  23291. ))
  23292. characterMakers.push(() => makeCharacter(
  23293. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23294. {
  23295. front: {
  23296. height: math.unit(6 + 5 / 12, "feet"),
  23297. weight: math.unit(180, "lb"),
  23298. name: "Front",
  23299. image: {
  23300. source: "./media/characters/lexir/front.svg",
  23301. extra: 180 / 172,
  23302. bottom: 12 / 192
  23303. }
  23304. },
  23305. back: {
  23306. height: math.unit(6 + 5 / 12, "feet"),
  23307. weight: math.unit(180, "lb"),
  23308. name: "Back",
  23309. image: {
  23310. source: "./media/characters/lexir/back.svg",
  23311. extra: 183.84 / 175.5,
  23312. bottom: 3.1 / 187
  23313. }
  23314. },
  23315. },
  23316. [
  23317. {
  23318. name: "Very Smal",
  23319. height: math.unit(1, "nm")
  23320. },
  23321. {
  23322. name: "Normal",
  23323. height: math.unit(6 + 5 / 12, "feet"),
  23324. default: true
  23325. },
  23326. {
  23327. name: "Macro",
  23328. height: math.unit(1, "mile")
  23329. },
  23330. {
  23331. name: "Megamacro",
  23332. height: math.unit(50, "miles")
  23333. },
  23334. ]
  23335. ))
  23336. characterMakers.push(() => makeCharacter(
  23337. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23338. {
  23339. front: {
  23340. height: math.unit(1.5, "meters"),
  23341. weight: math.unit(100, "lb"),
  23342. name: "Front",
  23343. image: {
  23344. source: "./media/characters/maksio/front.svg",
  23345. extra: 1549 / 1531,
  23346. bottom: 123.7 / 1674.5429
  23347. }
  23348. },
  23349. back: {
  23350. height: math.unit(1.5, "meters"),
  23351. weight: math.unit(100, "lb"),
  23352. name: "Back",
  23353. image: {
  23354. source: "./media/characters/maksio/back.svg",
  23355. extra: 1541 / 1509,
  23356. bottom: 97 / 1639
  23357. }
  23358. },
  23359. hand: {
  23360. height: math.unit(0.621, "feet"),
  23361. name: "Hand",
  23362. image: {
  23363. source: "./media/characters/maksio/hand.svg"
  23364. }
  23365. },
  23366. foot: {
  23367. height: math.unit(1.611, "feet"),
  23368. name: "Foot",
  23369. image: {
  23370. source: "./media/characters/maksio/foot.svg"
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Shrunken",
  23377. height: math.unit(10, "cm")
  23378. },
  23379. {
  23380. name: "Normal",
  23381. height: math.unit(150, "cm"),
  23382. default: true
  23383. },
  23384. ]
  23385. ))
  23386. characterMakers.push(() => makeCharacter(
  23387. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23388. {
  23389. front: {
  23390. height: math.unit(100, "feet"),
  23391. name: "Front",
  23392. image: {
  23393. source: "./media/characters/erza-bear/front.svg",
  23394. extra: 2449 / 2390,
  23395. bottom: 46 / 2494
  23396. }
  23397. },
  23398. back: {
  23399. height: math.unit(100, "feet"),
  23400. name: "Back",
  23401. image: {
  23402. source: "./media/characters/erza-bear/back.svg",
  23403. extra: 2489 / 2430,
  23404. bottom: 85.4 / 2480
  23405. }
  23406. },
  23407. tail: {
  23408. height: math.unit(42, "feet"),
  23409. name: "Tail",
  23410. image: {
  23411. source: "./media/characters/erza-bear/tail.svg"
  23412. }
  23413. },
  23414. tongue: {
  23415. height: math.unit(8, "feet"),
  23416. name: "Tongue",
  23417. image: {
  23418. source: "./media/characters/erza-bear/tongue.svg"
  23419. }
  23420. },
  23421. dick: {
  23422. height: math.unit(10.5, "feet"),
  23423. name: "Dick",
  23424. image: {
  23425. source: "./media/characters/erza-bear/dick.svg"
  23426. }
  23427. },
  23428. dickVertical: {
  23429. height: math.unit(16.9, "feet"),
  23430. name: "Dick (Vertical)",
  23431. image: {
  23432. source: "./media/characters/erza-bear/dick-vertical.svg"
  23433. }
  23434. },
  23435. },
  23436. [
  23437. {
  23438. name: "Macro",
  23439. height: math.unit(100, "feet"),
  23440. default: true
  23441. },
  23442. ]
  23443. ))
  23444. characterMakers.push(() => makeCharacter(
  23445. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23446. {
  23447. front: {
  23448. height: math.unit(172, "cm"),
  23449. weight: math.unit(73, "kg"),
  23450. name: "Front",
  23451. image: {
  23452. source: "./media/characters/violet-flor/front.svg",
  23453. extra: 1530 / 1442,
  23454. bottom: 61.9 / 1588.8
  23455. }
  23456. },
  23457. back: {
  23458. height: math.unit(180, "cm"),
  23459. weight: math.unit(73, "kg"),
  23460. name: "Back",
  23461. image: {
  23462. source: "./media/characters/violet-flor/back.svg",
  23463. extra: 1692 / 1630,
  23464. bottom: 20 / 1712
  23465. }
  23466. },
  23467. },
  23468. [
  23469. {
  23470. name: "Normal",
  23471. height: math.unit(172, "cm"),
  23472. default: true
  23473. },
  23474. ]
  23475. ))
  23476. characterMakers.push(() => makeCharacter(
  23477. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23478. {
  23479. front: {
  23480. height: math.unit(6, "feet"),
  23481. weight: math.unit(220, "lb"),
  23482. name: "Front",
  23483. image: {
  23484. source: "./media/characters/lynn-rhea/front.svg",
  23485. extra: 310 / 273
  23486. }
  23487. },
  23488. back: {
  23489. height: math.unit(6, "feet"),
  23490. weight: math.unit(220, "lb"),
  23491. name: "Back",
  23492. image: {
  23493. source: "./media/characters/lynn-rhea/back.svg",
  23494. extra: 310 / 273
  23495. }
  23496. },
  23497. dicks: {
  23498. height: math.unit(0.9, "feet"),
  23499. name: "Dicks",
  23500. image: {
  23501. source: "./media/characters/lynn-rhea/dicks.svg"
  23502. }
  23503. },
  23504. slit: {
  23505. height: math.unit(0.4, "feet"),
  23506. name: "Slit",
  23507. image: {
  23508. source: "./media/characters/lynn-rhea/slit.svg"
  23509. }
  23510. },
  23511. },
  23512. [
  23513. {
  23514. name: "Micro",
  23515. height: math.unit(1, "inch")
  23516. },
  23517. {
  23518. name: "Macro",
  23519. height: math.unit(60, "feet"),
  23520. default: true
  23521. },
  23522. {
  23523. name: "Megamacro",
  23524. height: math.unit(2, "miles")
  23525. },
  23526. {
  23527. name: "Gigamacro",
  23528. height: math.unit(3, "earths")
  23529. },
  23530. {
  23531. name: "Galactic",
  23532. height: math.unit(0.8, "galaxies")
  23533. },
  23534. ]
  23535. ))
  23536. characterMakers.push(() => makeCharacter(
  23537. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23538. {
  23539. front: {
  23540. height: math.unit(1600, "feet"),
  23541. weight: math.unit(85758785169, "kg"),
  23542. name: "Front",
  23543. image: {
  23544. source: "./media/characters/valathos/front.svg",
  23545. extra: 1451 / 1339
  23546. }
  23547. },
  23548. },
  23549. [
  23550. {
  23551. name: "Macro",
  23552. height: math.unit(1600, "feet"),
  23553. default: true
  23554. },
  23555. ]
  23556. ))
  23557. characterMakers.push(() => makeCharacter(
  23558. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23559. {
  23560. front: {
  23561. height: math.unit(7 + 5 / 12, "feet"),
  23562. weight: math.unit(300, "lb"),
  23563. name: "Front",
  23564. image: {
  23565. source: "./media/characters/azula/front.svg",
  23566. extra: 3208 / 2880,
  23567. bottom: 80.2 / 3277
  23568. }
  23569. },
  23570. back: {
  23571. height: math.unit(7 + 5 / 12, "feet"),
  23572. weight: math.unit(300, "lb"),
  23573. name: "Back",
  23574. image: {
  23575. source: "./media/characters/azula/back.svg",
  23576. extra: 3169 / 2822,
  23577. bottom: 150.6 / 3321
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Normal",
  23584. height: math.unit(7 + 5 / 12, "feet"),
  23585. default: true
  23586. },
  23587. {
  23588. name: "Big",
  23589. height: math.unit(20, "feet")
  23590. },
  23591. ]
  23592. ))
  23593. characterMakers.push(() => makeCharacter(
  23594. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23595. {
  23596. front: {
  23597. height: math.unit(5 + 1 / 12, "feet"),
  23598. weight: math.unit(110, "lb"),
  23599. name: "Front",
  23600. image: {
  23601. source: "./media/characters/rupert/front.svg",
  23602. extra: 1549 / 1495,
  23603. bottom: 54.2 / 1604.4
  23604. }
  23605. },
  23606. },
  23607. [
  23608. {
  23609. name: "Normal",
  23610. height: math.unit(5 + 1 / 12, "feet"),
  23611. default: true
  23612. },
  23613. ]
  23614. ))
  23615. characterMakers.push(() => makeCharacter(
  23616. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23617. {
  23618. front: {
  23619. height: math.unit(8 + 4 / 12, "feet"),
  23620. weight: math.unit(350, "lb"),
  23621. name: "Front",
  23622. image: {
  23623. source: "./media/characters/sheera-castellar/front.svg",
  23624. extra: 1957 / 1894,
  23625. bottom: 26.97 / 1975.017
  23626. }
  23627. },
  23628. side: {
  23629. height: math.unit(8 + 4 / 12, "feet"),
  23630. weight: math.unit(350, "lb"),
  23631. name: "Side",
  23632. image: {
  23633. source: "./media/characters/sheera-castellar/side.svg",
  23634. extra: 1957 / 1894
  23635. }
  23636. },
  23637. back: {
  23638. height: math.unit(8 + 4 / 12, "feet"),
  23639. weight: math.unit(350, "lb"),
  23640. name: "Back",
  23641. image: {
  23642. source: "./media/characters/sheera-castellar/back.svg",
  23643. extra: 1957 / 1894
  23644. }
  23645. },
  23646. angled: {
  23647. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23648. weight: math.unit(350, "lb"),
  23649. name: "Angled",
  23650. image: {
  23651. source: "./media/characters/sheera-castellar/angled.svg",
  23652. extra: 1807 / 1707,
  23653. bottom: 68 / 1875
  23654. }
  23655. },
  23656. genitals: {
  23657. height: math.unit(2.2, "feet"),
  23658. name: "Genitals",
  23659. image: {
  23660. source: "./media/characters/sheera-castellar/genitals.svg"
  23661. }
  23662. },
  23663. taur: {
  23664. height: math.unit(10 + 6/12, "feet"),
  23665. name: "Taur",
  23666. image: {
  23667. source: "./media/characters/sheera-castellar/taur.svg",
  23668. extra: 2017/1909,
  23669. bottom: 185/2202
  23670. }
  23671. },
  23672. },
  23673. [
  23674. {
  23675. name: "Normal",
  23676. height: math.unit(8 + 4 / 12, "feet")
  23677. },
  23678. {
  23679. name: "Macro",
  23680. height: math.unit(150, "feet"),
  23681. default: true
  23682. },
  23683. {
  23684. name: "Macro+",
  23685. height: math.unit(800, "feet")
  23686. },
  23687. ]
  23688. ))
  23689. characterMakers.push(() => makeCharacter(
  23690. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23691. {
  23692. front: {
  23693. height: math.unit(6, "feet"),
  23694. weight: math.unit(150, "lb"),
  23695. name: "Front",
  23696. image: {
  23697. source: "./media/characters/jaipur/front.svg",
  23698. extra: 3860 / 3731,
  23699. bottom: 287 / 4140
  23700. }
  23701. },
  23702. back: {
  23703. height: math.unit(6, "feet"),
  23704. weight: math.unit(150, "lb"),
  23705. name: "Back",
  23706. image: {
  23707. source: "./media/characters/jaipur/back.svg",
  23708. extra: 4060 / 3930,
  23709. bottom: 151 / 4200
  23710. }
  23711. },
  23712. },
  23713. [
  23714. {
  23715. name: "Normal",
  23716. height: math.unit(1.85, "meters"),
  23717. default: true
  23718. },
  23719. {
  23720. name: "Macro",
  23721. height: math.unit(150, "meters")
  23722. },
  23723. {
  23724. name: "Macro+",
  23725. height: math.unit(0.5, "miles")
  23726. },
  23727. {
  23728. name: "Macro++",
  23729. height: math.unit(2.5, "miles")
  23730. },
  23731. {
  23732. name: "Macro+++",
  23733. height: math.unit(12, "miles")
  23734. },
  23735. {
  23736. name: "Macro++++",
  23737. height: math.unit(120, "miles")
  23738. },
  23739. {
  23740. name: "Macro+++++",
  23741. height: math.unit(1200, "miles")
  23742. },
  23743. ]
  23744. ))
  23745. characterMakers.push(() => makeCharacter(
  23746. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23747. {
  23748. front: {
  23749. height: math.unit(6, "feet"),
  23750. weight: math.unit(150, "lb"),
  23751. name: "Front",
  23752. image: {
  23753. source: "./media/characters/sheila-wolf/front.svg",
  23754. extra: 1931 / 1808,
  23755. bottom: 29.5 / 1960
  23756. }
  23757. },
  23758. dick: {
  23759. height: math.unit(1.464, "feet"),
  23760. name: "Dick",
  23761. image: {
  23762. source: "./media/characters/sheila-wolf/dick.svg"
  23763. }
  23764. },
  23765. muzzle: {
  23766. height: math.unit(0.513, "feet"),
  23767. name: "Muzzle",
  23768. image: {
  23769. source: "./media/characters/sheila-wolf/muzzle.svg"
  23770. }
  23771. },
  23772. },
  23773. [
  23774. {
  23775. name: "Macro",
  23776. height: math.unit(70, "feet"),
  23777. default: true
  23778. },
  23779. ]
  23780. ))
  23781. characterMakers.push(() => makeCharacter(
  23782. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23783. {
  23784. front: {
  23785. height: math.unit(32, "meters"),
  23786. weight: math.unit(300000, "kg"),
  23787. name: "Front",
  23788. image: {
  23789. source: "./media/characters/almor/front.svg",
  23790. extra: 1408 / 1322,
  23791. bottom: 94.6 / 1506.5
  23792. }
  23793. },
  23794. },
  23795. [
  23796. {
  23797. name: "Macro",
  23798. height: math.unit(32, "meters"),
  23799. default: true
  23800. },
  23801. ]
  23802. ))
  23803. characterMakers.push(() => makeCharacter(
  23804. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23805. {
  23806. front: {
  23807. height: math.unit(7, "feet"),
  23808. weight: math.unit(200, "lb"),
  23809. name: "Front",
  23810. image: {
  23811. source: "./media/characters/silver/front.svg",
  23812. extra: 472.1 / 450.5,
  23813. bottom: 26.5 / 499.424
  23814. }
  23815. },
  23816. },
  23817. [
  23818. {
  23819. name: "Normal",
  23820. height: math.unit(7, "feet"),
  23821. default: true
  23822. },
  23823. {
  23824. name: "Macro",
  23825. height: math.unit(800, "feet")
  23826. },
  23827. {
  23828. name: "Megamacro",
  23829. height: math.unit(250, "miles")
  23830. },
  23831. ]
  23832. ))
  23833. characterMakers.push(() => makeCharacter(
  23834. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23835. {
  23836. front: {
  23837. height: math.unit(6, "feet"),
  23838. weight: math.unit(150, "lb"),
  23839. name: "Front",
  23840. image: {
  23841. source: "./media/characters/pliskin/front.svg",
  23842. extra: 1469 / 1359,
  23843. bottom: 70 / 1540
  23844. }
  23845. },
  23846. },
  23847. [
  23848. {
  23849. name: "Micro",
  23850. height: math.unit(3, "inches")
  23851. },
  23852. {
  23853. name: "Normal",
  23854. height: math.unit(5 + 11 / 12, "feet"),
  23855. default: true
  23856. },
  23857. {
  23858. name: "Macro",
  23859. height: math.unit(120, "feet")
  23860. },
  23861. ]
  23862. ))
  23863. characterMakers.push(() => makeCharacter(
  23864. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23865. {
  23866. front: {
  23867. height: math.unit(6, "feet"),
  23868. weight: math.unit(150, "lb"),
  23869. name: "Front",
  23870. image: {
  23871. source: "./media/characters/sammy/front.svg",
  23872. extra: 1193 / 1089,
  23873. bottom: 30.5 / 1226
  23874. }
  23875. },
  23876. },
  23877. [
  23878. {
  23879. name: "Macro",
  23880. height: math.unit(1700, "feet"),
  23881. default: true
  23882. },
  23883. {
  23884. name: "Examacro",
  23885. height: math.unit(2.5e9, "lightyears")
  23886. },
  23887. ]
  23888. ))
  23889. characterMakers.push(() => makeCharacter(
  23890. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23891. {
  23892. front: {
  23893. height: math.unit(21, "meters"),
  23894. weight: math.unit(12, "tonnes"),
  23895. name: "Front",
  23896. image: {
  23897. source: "./media/characters/kuru/front.svg",
  23898. extra: 4301 / 3785,
  23899. bottom: 371.3 / 4691
  23900. }
  23901. },
  23902. },
  23903. [
  23904. {
  23905. name: "Macro",
  23906. height: math.unit(21, "meters"),
  23907. default: true
  23908. },
  23909. ]
  23910. ))
  23911. characterMakers.push(() => makeCharacter(
  23912. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23913. {
  23914. front: {
  23915. height: math.unit(23, "meters"),
  23916. weight: math.unit(12.2, "tonnes"),
  23917. name: "Front",
  23918. image: {
  23919. source: "./media/characters/rakka/front.svg",
  23920. extra: 4670 / 4169,
  23921. bottom: 301 / 4968.7
  23922. }
  23923. },
  23924. },
  23925. [
  23926. {
  23927. name: "Macro",
  23928. height: math.unit(23, "meters"),
  23929. default: true
  23930. },
  23931. ]
  23932. ))
  23933. characterMakers.push(() => makeCharacter(
  23934. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23935. {
  23936. front: {
  23937. height: math.unit(6, "feet"),
  23938. weight: math.unit(150, "lb"),
  23939. name: "Front",
  23940. image: {
  23941. source: "./media/characters/rhys-feline/front.svg",
  23942. extra: 2488 / 2308,
  23943. bottom: 35.67 / 2519.19
  23944. }
  23945. },
  23946. },
  23947. [
  23948. {
  23949. name: "Really Small",
  23950. height: math.unit(1, "nm")
  23951. },
  23952. {
  23953. name: "Micro",
  23954. height: math.unit(4, "inches")
  23955. },
  23956. {
  23957. name: "Normal",
  23958. height: math.unit(4 + 10 / 12, "feet"),
  23959. default: true
  23960. },
  23961. {
  23962. name: "Macro",
  23963. height: math.unit(100, "feet")
  23964. },
  23965. {
  23966. name: "Megamacto",
  23967. height: math.unit(50, "miles")
  23968. },
  23969. ]
  23970. ))
  23971. characterMakers.push(() => makeCharacter(
  23972. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23973. {
  23974. side: {
  23975. height: math.unit(30, "feet"),
  23976. weight: math.unit(35000, "kg"),
  23977. name: "Side",
  23978. image: {
  23979. source: "./media/characters/alydar/side.svg",
  23980. extra: 234 / 222,
  23981. bottom: 6.5 / 241
  23982. }
  23983. },
  23984. front: {
  23985. height: math.unit(30, "feet"),
  23986. weight: math.unit(35000, "kg"),
  23987. name: "Front",
  23988. image: {
  23989. source: "./media/characters/alydar/front.svg",
  23990. extra: 223.37 / 210.2,
  23991. bottom: 22.3 / 246.76
  23992. }
  23993. },
  23994. top: {
  23995. height: math.unit(64.54, "feet"),
  23996. weight: math.unit(35000, "kg"),
  23997. name: "Top",
  23998. image: {
  23999. source: "./media/characters/alydar/top.svg"
  24000. }
  24001. },
  24002. anthro: {
  24003. height: math.unit(30, "feet"),
  24004. weight: math.unit(9000, "kg"),
  24005. name: "Anthro",
  24006. image: {
  24007. source: "./media/characters/alydar/anthro.svg",
  24008. extra: 432 / 421,
  24009. bottom: 7.18 / 440
  24010. }
  24011. },
  24012. maw: {
  24013. height: math.unit(11.693, "feet"),
  24014. name: "Maw",
  24015. image: {
  24016. source: "./media/characters/alydar/maw.svg"
  24017. }
  24018. },
  24019. head: {
  24020. height: math.unit(11.693, "feet"),
  24021. name: "Head",
  24022. image: {
  24023. source: "./media/characters/alydar/head.svg"
  24024. }
  24025. },
  24026. headAlt: {
  24027. height: math.unit(12.861, "feet"),
  24028. name: "Head (Alt)",
  24029. image: {
  24030. source: "./media/characters/alydar/head-alt.svg"
  24031. }
  24032. },
  24033. wing: {
  24034. height: math.unit(20.712, "feet"),
  24035. name: "Wing",
  24036. image: {
  24037. source: "./media/characters/alydar/wing.svg"
  24038. }
  24039. },
  24040. wingFeather: {
  24041. height: math.unit(9.662, "feet"),
  24042. name: "Wing Feather",
  24043. image: {
  24044. source: "./media/characters/alydar/wing-feather.svg"
  24045. }
  24046. },
  24047. countourFeather: {
  24048. height: math.unit(4.154, "feet"),
  24049. name: "Contour Feather",
  24050. image: {
  24051. source: "./media/characters/alydar/contour-feather.svg"
  24052. }
  24053. },
  24054. },
  24055. [
  24056. {
  24057. name: "Diplomatic",
  24058. height: math.unit(13, "feet"),
  24059. default: true
  24060. },
  24061. {
  24062. name: "Small",
  24063. height: math.unit(30, "feet")
  24064. },
  24065. {
  24066. name: "Normal",
  24067. height: math.unit(95, "feet"),
  24068. default: true
  24069. },
  24070. {
  24071. name: "Large",
  24072. height: math.unit(285, "feet")
  24073. },
  24074. {
  24075. name: "Incomprehensible",
  24076. height: math.unit(450, "megameters")
  24077. },
  24078. ]
  24079. ))
  24080. characterMakers.push(() => makeCharacter(
  24081. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24082. {
  24083. side: {
  24084. height: math.unit(11, "feet"),
  24085. weight: math.unit(1750, "kg"),
  24086. name: "Side",
  24087. image: {
  24088. source: "./media/characters/selicia/side.svg",
  24089. extra: 440 / 396,
  24090. bottom: 24.8 / 465.979
  24091. }
  24092. },
  24093. maw: {
  24094. height: math.unit(4.665, "feet"),
  24095. name: "Maw",
  24096. image: {
  24097. source: "./media/characters/selicia/maw.svg"
  24098. }
  24099. },
  24100. },
  24101. [
  24102. {
  24103. name: "Normal",
  24104. height: math.unit(11, "feet"),
  24105. default: true
  24106. },
  24107. ]
  24108. ))
  24109. characterMakers.push(() => makeCharacter(
  24110. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24111. {
  24112. side: {
  24113. height: math.unit(2 + 6 / 12, "feet"),
  24114. weight: math.unit(30, "lb"),
  24115. name: "Side",
  24116. image: {
  24117. source: "./media/characters/layla/side.svg",
  24118. extra: 244 / 188,
  24119. bottom: 18.2 / 262.1
  24120. }
  24121. },
  24122. back: {
  24123. height: math.unit(2 + 6 / 12, "feet"),
  24124. weight: math.unit(30, "lb"),
  24125. name: "Back",
  24126. image: {
  24127. source: "./media/characters/layla/back.svg",
  24128. extra: 308 / 241.5,
  24129. bottom: 8.9 / 316.8
  24130. }
  24131. },
  24132. cumming: {
  24133. height: math.unit(2 + 6 / 12, "feet"),
  24134. weight: math.unit(30, "lb"),
  24135. name: "Cumming",
  24136. image: {
  24137. source: "./media/characters/layla/cumming.svg",
  24138. extra: 342 / 279,
  24139. bottom: 595 / 938
  24140. }
  24141. },
  24142. dickFlaccid: {
  24143. height: math.unit(2.595, "feet"),
  24144. name: "Flaccid Genitals",
  24145. image: {
  24146. source: "./media/characters/layla/dick-flaccid.svg"
  24147. }
  24148. },
  24149. dickErect: {
  24150. height: math.unit(2.359, "feet"),
  24151. name: "Erect Genitals",
  24152. image: {
  24153. source: "./media/characters/layla/dick-erect.svg"
  24154. }
  24155. },
  24156. dragon: {
  24157. height: math.unit(40, "feet"),
  24158. name: "Dragon",
  24159. image: {
  24160. source: "./media/characters/layla/dragon.svg",
  24161. extra: 610/535,
  24162. bottom: 367/977
  24163. }
  24164. },
  24165. taur: {
  24166. height: math.unit(30, "feet"),
  24167. name: "Taur",
  24168. image: {
  24169. source: "./media/characters/layla/taur.svg",
  24170. extra: 1268/1199,
  24171. bottom: 112/1380
  24172. }
  24173. },
  24174. },
  24175. [
  24176. {
  24177. name: "Micro",
  24178. height: math.unit(1, "inch")
  24179. },
  24180. {
  24181. name: "Small",
  24182. height: math.unit(1, "foot")
  24183. },
  24184. {
  24185. name: "Normal",
  24186. height: math.unit(2 + 6 / 12, "feet"),
  24187. default: true
  24188. },
  24189. {
  24190. name: "Macro",
  24191. height: math.unit(200, "feet")
  24192. },
  24193. {
  24194. name: "Megamacro",
  24195. height: math.unit(1000, "miles")
  24196. },
  24197. {
  24198. name: "Planetary",
  24199. height: math.unit(8000, "miles")
  24200. },
  24201. {
  24202. name: "True Layla",
  24203. height: math.unit(200000 * 7, "multiverses")
  24204. },
  24205. ]
  24206. ))
  24207. characterMakers.push(() => makeCharacter(
  24208. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24209. {
  24210. back: {
  24211. height: math.unit(10.5, "feet"),
  24212. weight: math.unit(800, "lb"),
  24213. name: "Back",
  24214. image: {
  24215. source: "./media/characters/knox/back.svg",
  24216. extra: 1486 / 1089,
  24217. bottom: 107 / 1601.4
  24218. }
  24219. },
  24220. side: {
  24221. height: math.unit(10.5, "feet"),
  24222. weight: math.unit(800, "lb"),
  24223. name: "Side",
  24224. image: {
  24225. source: "./media/characters/knox/side.svg",
  24226. extra: 244 / 218,
  24227. bottom: 14 / 260
  24228. }
  24229. },
  24230. },
  24231. [
  24232. {
  24233. name: "Compact",
  24234. height: math.unit(10.5, "feet"),
  24235. default: true
  24236. },
  24237. {
  24238. name: "Dynamax",
  24239. height: math.unit(210, "feet")
  24240. },
  24241. {
  24242. name: "Full Macro",
  24243. height: math.unit(850, "feet")
  24244. },
  24245. ]
  24246. ))
  24247. characterMakers.push(() => makeCharacter(
  24248. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24249. {
  24250. front: {
  24251. height: math.unit(28, "feet"),
  24252. weight: math.unit(10500, "lb"),
  24253. name: "Front",
  24254. image: {
  24255. source: "./media/characters/kayda/front.svg",
  24256. extra: 1536 / 1428,
  24257. bottom: 68.7 / 1603
  24258. }
  24259. },
  24260. back: {
  24261. height: math.unit(28, "feet"),
  24262. weight: math.unit(10500, "lb"),
  24263. name: "Back",
  24264. image: {
  24265. source: "./media/characters/kayda/back.svg",
  24266. extra: 1557 / 1464,
  24267. bottom: 39.5 / 1597.49
  24268. }
  24269. },
  24270. dick: {
  24271. height: math.unit(3.858, "feet"),
  24272. name: "Dick",
  24273. image: {
  24274. source: "./media/characters/kayda/dick.svg"
  24275. }
  24276. },
  24277. },
  24278. [
  24279. {
  24280. name: "Macro",
  24281. height: math.unit(28, "feet"),
  24282. default: true
  24283. },
  24284. ]
  24285. ))
  24286. characterMakers.push(() => makeCharacter(
  24287. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24288. {
  24289. front: {
  24290. height: math.unit(10 + 11 / 12, "feet"),
  24291. weight: math.unit(1400, "lb"),
  24292. name: "Front",
  24293. image: {
  24294. source: "./media/characters/brian/front.svg",
  24295. extra: 737 / 692,
  24296. bottom: 55.4 / 785
  24297. }
  24298. },
  24299. },
  24300. [
  24301. {
  24302. name: "Normal",
  24303. height: math.unit(10 + 11 / 12, "feet"),
  24304. default: true
  24305. },
  24306. ]
  24307. ))
  24308. characterMakers.push(() => makeCharacter(
  24309. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24310. {
  24311. front: {
  24312. height: math.unit(5 + 8 / 12, "feet"),
  24313. weight: math.unit(140, "lb"),
  24314. name: "Front",
  24315. image: {
  24316. source: "./media/characters/khemri/front.svg",
  24317. extra: 4780 / 4059,
  24318. bottom: 80.1 / 4859.25
  24319. }
  24320. },
  24321. },
  24322. [
  24323. {
  24324. name: "Micro",
  24325. height: math.unit(6, "inches")
  24326. },
  24327. {
  24328. name: "Normal",
  24329. height: math.unit(5 + 8 / 12, "feet"),
  24330. default: true
  24331. },
  24332. ]
  24333. ))
  24334. characterMakers.push(() => makeCharacter(
  24335. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24336. {
  24337. front: {
  24338. height: math.unit(13, "feet"),
  24339. weight: math.unit(1700, "lb"),
  24340. name: "Front",
  24341. image: {
  24342. source: "./media/characters/felix-braveheart/front.svg",
  24343. extra: 1222 / 1157,
  24344. bottom: 53.2 / 1280
  24345. }
  24346. },
  24347. back: {
  24348. height: math.unit(13, "feet"),
  24349. weight: math.unit(1700, "lb"),
  24350. name: "Back",
  24351. image: {
  24352. source: "./media/characters/felix-braveheart/back.svg",
  24353. extra: 1277 / 1203,
  24354. bottom: 50.2 / 1327
  24355. }
  24356. },
  24357. feral: {
  24358. height: math.unit(6, "feet"),
  24359. weight: math.unit(400, "lb"),
  24360. name: "Feral",
  24361. image: {
  24362. source: "./media/characters/felix-braveheart/feral.svg",
  24363. extra: 682 / 625,
  24364. bottom: 6.9 / 688
  24365. }
  24366. },
  24367. },
  24368. [
  24369. {
  24370. name: "Normal",
  24371. height: math.unit(13, "feet"),
  24372. default: true
  24373. },
  24374. ]
  24375. ))
  24376. characterMakers.push(() => makeCharacter(
  24377. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24378. {
  24379. side: {
  24380. height: math.unit(5 + 11 / 12, "feet"),
  24381. weight: math.unit(1400, "lb"),
  24382. name: "Side",
  24383. image: {
  24384. source: "./media/characters/shadow-blade/side.svg",
  24385. extra: 1726 / 1267,
  24386. bottom: 58.4 / 1785
  24387. }
  24388. },
  24389. },
  24390. [
  24391. {
  24392. name: "Normal",
  24393. height: math.unit(5 + 11 / 12, "feet"),
  24394. default: true
  24395. },
  24396. ]
  24397. ))
  24398. characterMakers.push(() => makeCharacter(
  24399. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24400. {
  24401. front: {
  24402. height: math.unit(1 + 6 / 12, "feet"),
  24403. weight: math.unit(25, "lb"),
  24404. name: "Front",
  24405. image: {
  24406. source: "./media/characters/karla-halldor/front.svg",
  24407. extra: 1459 / 1383,
  24408. bottom: 12 / 1472
  24409. }
  24410. },
  24411. },
  24412. [
  24413. {
  24414. name: "Normal",
  24415. height: math.unit(1 + 6 / 12, "feet"),
  24416. default: true
  24417. },
  24418. ]
  24419. ))
  24420. characterMakers.push(() => makeCharacter(
  24421. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24422. {
  24423. front: {
  24424. height: math.unit(6 + 2 / 12, "feet"),
  24425. weight: math.unit(160, "lb"),
  24426. name: "Front",
  24427. image: {
  24428. source: "./media/characters/ariam/front.svg",
  24429. extra: 1073/976,
  24430. bottom: 52/1125
  24431. }
  24432. },
  24433. back: {
  24434. height: math.unit(6 + 2/12, "feet"),
  24435. weight: math.unit(160, "lb"),
  24436. name: "Back",
  24437. image: {
  24438. source: "./media/characters/ariam/back.svg",
  24439. extra: 1103/1023,
  24440. bottom: 9/1112
  24441. }
  24442. },
  24443. dressed: {
  24444. height: math.unit(6 + 2/12, "feet"),
  24445. weight: math.unit(160, "lb"),
  24446. name: "Dressed",
  24447. image: {
  24448. source: "./media/characters/ariam/dressed.svg",
  24449. extra: 1099/1009,
  24450. bottom: 25/1124
  24451. }
  24452. },
  24453. squatting: {
  24454. height: math.unit(4.1, "feet"),
  24455. weight: math.unit(160, "lb"),
  24456. name: "Squatting",
  24457. image: {
  24458. source: "./media/characters/ariam/squatting.svg",
  24459. extra: 2617 / 2112,
  24460. bottom: 61.2 / 2681,
  24461. }
  24462. },
  24463. },
  24464. [
  24465. {
  24466. name: "Normal",
  24467. height: math.unit(6 + 2 / 12, "feet"),
  24468. default: true
  24469. },
  24470. {
  24471. name: "Normal+",
  24472. height: math.unit(4, "meters")
  24473. },
  24474. {
  24475. name: "Macro",
  24476. height: math.unit(50, "meters")
  24477. },
  24478. {
  24479. name: "Macro+",
  24480. height: math.unit(100, "meters")
  24481. },
  24482. {
  24483. name: "Megamacro",
  24484. height: math.unit(20, "km")
  24485. },
  24486. {
  24487. name: "Caretaker",
  24488. height: math.unit(444, "megameters")
  24489. },
  24490. ]
  24491. ))
  24492. characterMakers.push(() => makeCharacter(
  24493. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24494. {
  24495. front: {
  24496. height: math.unit(1.67, "meters"),
  24497. weight: math.unit(140, "lb"),
  24498. name: "Front",
  24499. image: {
  24500. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24501. extra: 438 / 410,
  24502. bottom: 0.75 / 439
  24503. }
  24504. },
  24505. },
  24506. [
  24507. {
  24508. name: "Shrunken",
  24509. height: math.unit(7.6, "cm")
  24510. },
  24511. {
  24512. name: "Human Scale",
  24513. height: math.unit(1.67, "meters")
  24514. },
  24515. {
  24516. name: "Wolxi Scale",
  24517. height: math.unit(36.7, "meters"),
  24518. default: true
  24519. },
  24520. ]
  24521. ))
  24522. characterMakers.push(() => makeCharacter(
  24523. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24524. {
  24525. front: {
  24526. height: math.unit(1.73, "meters"),
  24527. weight: math.unit(240, "lb"),
  24528. name: "Front",
  24529. image: {
  24530. source: "./media/characters/izue-two-mothers/front.svg",
  24531. extra: 469 / 437,
  24532. bottom: 1.24 / 470.6
  24533. }
  24534. },
  24535. },
  24536. [
  24537. {
  24538. name: "Shrunken",
  24539. height: math.unit(7.86, "cm")
  24540. },
  24541. {
  24542. name: "Human Scale",
  24543. height: math.unit(1.73, "meters")
  24544. },
  24545. {
  24546. name: "Wolxi Scale",
  24547. height: math.unit(38, "meters"),
  24548. default: true
  24549. },
  24550. ]
  24551. ))
  24552. characterMakers.push(() => makeCharacter(
  24553. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24554. {
  24555. front: {
  24556. height: math.unit(1.55, "meters"),
  24557. weight: math.unit(120, "lb"),
  24558. name: "Front",
  24559. image: {
  24560. source: "./media/characters/teeku-love-shack/front.svg",
  24561. extra: 387 / 362,
  24562. bottom: 1.51 / 388
  24563. }
  24564. },
  24565. },
  24566. [
  24567. {
  24568. name: "Shrunken",
  24569. height: math.unit(7, "cm")
  24570. },
  24571. {
  24572. name: "Human Scale",
  24573. height: math.unit(1.55, "meters")
  24574. },
  24575. {
  24576. name: "Wolxi Scale",
  24577. height: math.unit(34.1, "meters"),
  24578. default: true
  24579. },
  24580. ]
  24581. ))
  24582. characterMakers.push(() => makeCharacter(
  24583. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24584. {
  24585. front: {
  24586. height: math.unit(1.83, "meters"),
  24587. weight: math.unit(135, "lb"),
  24588. name: "Front",
  24589. image: {
  24590. source: "./media/characters/dejma-the-red/front.svg",
  24591. extra: 480 / 458,
  24592. bottom: 1.8 / 482
  24593. }
  24594. },
  24595. },
  24596. [
  24597. {
  24598. name: "Shrunken",
  24599. height: math.unit(8.3, "cm")
  24600. },
  24601. {
  24602. name: "Human Scale",
  24603. height: math.unit(1.83, "meters")
  24604. },
  24605. {
  24606. name: "Wolxi Scale",
  24607. height: math.unit(40, "meters"),
  24608. default: true
  24609. },
  24610. ]
  24611. ))
  24612. characterMakers.push(() => makeCharacter(
  24613. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24614. {
  24615. front: {
  24616. height: math.unit(1.78, "meters"),
  24617. weight: math.unit(65, "kg"),
  24618. name: "Front",
  24619. image: {
  24620. source: "./media/characters/aki/front.svg",
  24621. extra: 452 / 415
  24622. }
  24623. },
  24624. frontNsfw: {
  24625. height: math.unit(1.78, "meters"),
  24626. weight: math.unit(65, "kg"),
  24627. name: "Front (NSFW)",
  24628. image: {
  24629. source: "./media/characters/aki/front-nsfw.svg",
  24630. extra: 452 / 415
  24631. }
  24632. },
  24633. back: {
  24634. height: math.unit(1.78, "meters"),
  24635. weight: math.unit(65, "kg"),
  24636. name: "Back",
  24637. image: {
  24638. source: "./media/characters/aki/back.svg",
  24639. extra: 452 / 415
  24640. }
  24641. },
  24642. rump: {
  24643. height: math.unit(2.05, "feet"),
  24644. name: "Rump",
  24645. image: {
  24646. source: "./media/characters/aki/rump.svg"
  24647. }
  24648. },
  24649. dick: {
  24650. height: math.unit(0.95, "feet"),
  24651. name: "Dick",
  24652. image: {
  24653. source: "./media/characters/aki/dick.svg"
  24654. }
  24655. },
  24656. },
  24657. [
  24658. {
  24659. name: "Micro",
  24660. height: math.unit(15, "cm")
  24661. },
  24662. {
  24663. name: "Normal",
  24664. height: math.unit(178, "cm"),
  24665. default: true
  24666. },
  24667. {
  24668. name: "Macro",
  24669. height: math.unit(214, "m")
  24670. },
  24671. {
  24672. name: "Macro+",
  24673. height: math.unit(534, "m")
  24674. },
  24675. ]
  24676. ))
  24677. characterMakers.push(() => makeCharacter(
  24678. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24679. {
  24680. front: {
  24681. height: math.unit(5 + 5 / 12, "feet"),
  24682. weight: math.unit(120, "lb"),
  24683. name: "Front",
  24684. image: {
  24685. source: "./media/characters/ari/front.svg",
  24686. extra: 714.5 / 682,
  24687. bottom: 8 / 722.5
  24688. }
  24689. },
  24690. },
  24691. [
  24692. {
  24693. name: "Normal",
  24694. height: math.unit(5 + 5 / 12, "feet")
  24695. },
  24696. {
  24697. name: "Macro",
  24698. height: math.unit(100, "feet"),
  24699. default: true
  24700. },
  24701. {
  24702. name: "Megamacro",
  24703. height: math.unit(100, "miles")
  24704. },
  24705. {
  24706. name: "Gigamacro",
  24707. height: math.unit(80000, "miles")
  24708. },
  24709. ]
  24710. ))
  24711. characterMakers.push(() => makeCharacter(
  24712. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24713. {
  24714. side: {
  24715. height: math.unit(9, "feet"),
  24716. weight: math.unit(400, "kg"),
  24717. name: "Side",
  24718. image: {
  24719. source: "./media/characters/bolt/side.svg",
  24720. extra: 1126 / 896,
  24721. bottom: 60 / 1187.3,
  24722. }
  24723. },
  24724. },
  24725. [
  24726. {
  24727. name: "Micro",
  24728. height: math.unit(5, "inches")
  24729. },
  24730. {
  24731. name: "Normal",
  24732. height: math.unit(9, "feet"),
  24733. default: true
  24734. },
  24735. {
  24736. name: "Macro",
  24737. height: math.unit(700, "feet")
  24738. },
  24739. {
  24740. name: "Max Size",
  24741. height: math.unit(1.52e22, "yottameters")
  24742. },
  24743. ]
  24744. ))
  24745. characterMakers.push(() => makeCharacter(
  24746. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24747. {
  24748. front: {
  24749. height: math.unit(4.53, "meters"),
  24750. weight: math.unit(3, "tons"),
  24751. name: "Front",
  24752. image: {
  24753. source: "./media/characters/draekon-sylviar/front.svg",
  24754. extra: 1228 / 1068,
  24755. bottom: 41 / 1270
  24756. }
  24757. },
  24758. tail: {
  24759. height: math.unit(1.772, "meter"),
  24760. name: "Tail",
  24761. image: {
  24762. source: "./media/characters/draekon-sylviar/tail.svg"
  24763. }
  24764. },
  24765. head: {
  24766. height: math.unit(1.331, "meter"),
  24767. name: "Head",
  24768. image: {
  24769. source: "./media/characters/draekon-sylviar/head.svg"
  24770. }
  24771. },
  24772. hand: {
  24773. height: math.unit(0.564, "meter"),
  24774. name: "Hand",
  24775. image: {
  24776. source: "./media/characters/draekon-sylviar/hand.svg"
  24777. }
  24778. },
  24779. foot: {
  24780. height: math.unit(0.621, "meter"),
  24781. name: "Foot",
  24782. image: {
  24783. source: "./media/characters/draekon-sylviar/foot.svg",
  24784. bottom: 32 / 324
  24785. }
  24786. },
  24787. dick: {
  24788. height: math.unit(61, "cm"),
  24789. name: "Dick",
  24790. image: {
  24791. source: "./media/characters/draekon-sylviar/dick.svg"
  24792. }
  24793. },
  24794. dickseparated: {
  24795. height: math.unit(61, "cm"),
  24796. name: "Dick-separated",
  24797. image: {
  24798. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24799. }
  24800. },
  24801. },
  24802. [
  24803. {
  24804. name: "Small",
  24805. height: math.unit(4.53 / 2, "meters"),
  24806. default: true
  24807. },
  24808. {
  24809. name: "Normal",
  24810. height: math.unit(4.53, "meters"),
  24811. default: true
  24812. },
  24813. {
  24814. name: "Large",
  24815. height: math.unit(4.53 * 2, "meters"),
  24816. },
  24817. ]
  24818. ))
  24819. characterMakers.push(() => makeCharacter(
  24820. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24821. {
  24822. front: {
  24823. height: math.unit(6 + 2 / 12, "feet"),
  24824. weight: math.unit(180, "lb"),
  24825. name: "Front",
  24826. image: {
  24827. source: "./media/characters/brawler/front.svg",
  24828. extra: 3301 / 3027,
  24829. bottom: 138 / 3439
  24830. }
  24831. },
  24832. },
  24833. [
  24834. {
  24835. name: "Normal",
  24836. height: math.unit(6 + 2 / 12, "feet"),
  24837. default: true
  24838. },
  24839. ]
  24840. ))
  24841. characterMakers.push(() => makeCharacter(
  24842. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24843. {
  24844. front: {
  24845. height: math.unit(11, "feet"),
  24846. weight: math.unit(1000, "lb"),
  24847. name: "Front",
  24848. image: {
  24849. source: "./media/characters/alex/front.svg",
  24850. bottom: 44.5 / 620
  24851. }
  24852. },
  24853. },
  24854. [
  24855. {
  24856. name: "Micro",
  24857. height: math.unit(5, "inches")
  24858. },
  24859. {
  24860. name: "Normal",
  24861. height: math.unit(11, "feet"),
  24862. default: true
  24863. },
  24864. {
  24865. name: "Macro",
  24866. height: math.unit(9.5e9, "feet")
  24867. },
  24868. {
  24869. name: "Max Size",
  24870. height: math.unit(1.4e283, "yottameters")
  24871. },
  24872. ]
  24873. ))
  24874. characterMakers.push(() => makeCharacter(
  24875. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24876. {
  24877. female: {
  24878. height: math.unit(29.9, "m"),
  24879. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24880. name: "Female",
  24881. image: {
  24882. source: "./media/characters/zenari/female.svg",
  24883. extra: 3281.6 / 3217,
  24884. bottom: 72.2 / 3353
  24885. }
  24886. },
  24887. male: {
  24888. height: math.unit(27.7, "m"),
  24889. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24890. name: "Male",
  24891. image: {
  24892. source: "./media/characters/zenari/male.svg",
  24893. extra: 3008 / 2991,
  24894. bottom: 54.6 / 3069
  24895. }
  24896. },
  24897. },
  24898. [
  24899. {
  24900. name: "Macro",
  24901. height: math.unit(29.7, "meters"),
  24902. default: true
  24903. },
  24904. ]
  24905. ))
  24906. characterMakers.push(() => makeCharacter(
  24907. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24908. {
  24909. female: {
  24910. height: math.unit(23.8, "m"),
  24911. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24912. name: "Female",
  24913. image: {
  24914. source: "./media/characters/mactarian/female.svg",
  24915. extra: 2662 / 2569,
  24916. bottom: 73 / 2736
  24917. }
  24918. },
  24919. male: {
  24920. height: math.unit(23.8, "m"),
  24921. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24922. name: "Male",
  24923. image: {
  24924. source: "./media/characters/mactarian/male.svg",
  24925. extra: 2673 / 2600,
  24926. bottom: 76 / 2750
  24927. }
  24928. },
  24929. },
  24930. [
  24931. {
  24932. name: "Macro",
  24933. height: math.unit(23.8, "meters"),
  24934. default: true
  24935. },
  24936. ]
  24937. ))
  24938. characterMakers.push(() => makeCharacter(
  24939. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24940. {
  24941. female: {
  24942. height: math.unit(19.3, "m"),
  24943. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24944. name: "Female",
  24945. image: {
  24946. source: "./media/characters/umok/female.svg",
  24947. extra: 2186 / 2078,
  24948. bottom: 87 / 2277
  24949. }
  24950. },
  24951. male: {
  24952. height: math.unit(19.5, "m"),
  24953. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24954. name: "Male",
  24955. image: {
  24956. source: "./media/characters/umok/male.svg",
  24957. extra: 2233 / 2140,
  24958. bottom: 24.4 / 2258
  24959. }
  24960. },
  24961. },
  24962. [
  24963. {
  24964. name: "Macro",
  24965. height: math.unit(19.3, "meters"),
  24966. default: true
  24967. },
  24968. ]
  24969. ))
  24970. characterMakers.push(() => makeCharacter(
  24971. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24972. {
  24973. female: {
  24974. height: math.unit(26.15, "m"),
  24975. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24976. name: "Female",
  24977. image: {
  24978. source: "./media/characters/joraxian/female.svg",
  24979. extra: 2912 / 2824,
  24980. bottom: 36 / 2956
  24981. }
  24982. },
  24983. male: {
  24984. height: math.unit(25.4, "m"),
  24985. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24986. name: "Male",
  24987. image: {
  24988. source: "./media/characters/joraxian/male.svg",
  24989. extra: 2877 / 2721,
  24990. bottom: 82 / 2967
  24991. }
  24992. },
  24993. },
  24994. [
  24995. {
  24996. name: "Macro",
  24997. height: math.unit(26.15, "meters"),
  24998. default: true
  24999. },
  25000. ]
  25001. ))
  25002. characterMakers.push(() => makeCharacter(
  25003. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25004. {
  25005. female: {
  25006. height: math.unit(21.6, "m"),
  25007. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25008. name: "Female",
  25009. image: {
  25010. source: "./media/characters/sthara/female.svg",
  25011. extra: 2516 / 2347,
  25012. bottom: 21.5 / 2537
  25013. }
  25014. },
  25015. male: {
  25016. height: math.unit(24, "m"),
  25017. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25018. name: "Male",
  25019. image: {
  25020. source: "./media/characters/sthara/male.svg",
  25021. extra: 2732 / 2607,
  25022. bottom: 23 / 2732
  25023. }
  25024. },
  25025. },
  25026. [
  25027. {
  25028. name: "Macro",
  25029. height: math.unit(21.6, "meters"),
  25030. default: true
  25031. },
  25032. ]
  25033. ))
  25034. characterMakers.push(() => makeCharacter(
  25035. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25036. {
  25037. front: {
  25038. height: math.unit(6 + 4 / 12, "feet"),
  25039. weight: math.unit(175, "lb"),
  25040. name: "Front",
  25041. image: {
  25042. source: "./media/characters/luka-bryzant/front.svg",
  25043. extra: 311 / 289,
  25044. bottom: 4 / 315
  25045. }
  25046. },
  25047. back: {
  25048. height: math.unit(6 + 4 / 12, "feet"),
  25049. weight: math.unit(175, "lb"),
  25050. name: "Back",
  25051. image: {
  25052. source: "./media/characters/luka-bryzant/back.svg",
  25053. extra: 311 / 289,
  25054. bottom: 3.8 / 313.7
  25055. }
  25056. },
  25057. },
  25058. [
  25059. {
  25060. name: "Micro",
  25061. height: math.unit(10, "inches")
  25062. },
  25063. {
  25064. name: "Normal",
  25065. height: math.unit(6 + 4 / 12, "feet"),
  25066. default: true
  25067. },
  25068. {
  25069. name: "Large",
  25070. height: math.unit(12, "feet")
  25071. },
  25072. ]
  25073. ))
  25074. characterMakers.push(() => makeCharacter(
  25075. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25076. {
  25077. front: {
  25078. height: math.unit(5 + 7 / 12, "feet"),
  25079. weight: math.unit(185, "lb"),
  25080. name: "Front",
  25081. image: {
  25082. source: "./media/characters/aman-aquila/front.svg",
  25083. extra: 1013 / 976,
  25084. bottom: 45.6 / 1057
  25085. }
  25086. },
  25087. side: {
  25088. height: math.unit(5 + 7 / 12, "feet"),
  25089. weight: math.unit(185, "lb"),
  25090. name: "Side",
  25091. image: {
  25092. source: "./media/characters/aman-aquila/side.svg",
  25093. extra: 1054 / 1011,
  25094. bottom: 15 / 1070
  25095. }
  25096. },
  25097. back: {
  25098. height: math.unit(5 + 7 / 12, "feet"),
  25099. weight: math.unit(185, "lb"),
  25100. name: "Back",
  25101. image: {
  25102. source: "./media/characters/aman-aquila/back.svg",
  25103. extra: 1026 / 970,
  25104. bottom: 12 / 1039
  25105. }
  25106. },
  25107. head: {
  25108. height: math.unit(1.211, "feet"),
  25109. name: "Head",
  25110. image: {
  25111. source: "./media/characters/aman-aquila/head.svg",
  25112. }
  25113. },
  25114. },
  25115. [
  25116. {
  25117. name: "Minimicro",
  25118. height: math.unit(0.057, "inches")
  25119. },
  25120. {
  25121. name: "Micro",
  25122. height: math.unit(7, "inches")
  25123. },
  25124. {
  25125. name: "Mini",
  25126. height: math.unit(3 + 7 / 12, "feet")
  25127. },
  25128. {
  25129. name: "Normal",
  25130. height: math.unit(5 + 7 / 12, "feet"),
  25131. default: true
  25132. },
  25133. {
  25134. name: "Macro",
  25135. height: math.unit(157 + 7 / 12, "feet")
  25136. },
  25137. {
  25138. name: "Megamacro",
  25139. height: math.unit(1557 + 7 / 12, "feet")
  25140. },
  25141. {
  25142. name: "Gigamacro",
  25143. height: math.unit(15557 + 7 / 12, "feet")
  25144. },
  25145. ]
  25146. ))
  25147. characterMakers.push(() => makeCharacter(
  25148. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25149. {
  25150. front: {
  25151. height: math.unit(3 + 2 / 12, "inches"),
  25152. weight: math.unit(0.3, "ounces"),
  25153. name: "Front",
  25154. image: {
  25155. source: "./media/characters/hiphae/front.svg",
  25156. extra: 1931 / 1683,
  25157. bottom: 24 / 1955
  25158. }
  25159. },
  25160. },
  25161. [
  25162. {
  25163. name: "Normal",
  25164. height: math.unit(3 + 1 / 2, "inches"),
  25165. default: true
  25166. },
  25167. ]
  25168. ))
  25169. characterMakers.push(() => makeCharacter(
  25170. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25171. {
  25172. front: {
  25173. height: math.unit(5 + 10 / 12, "feet"),
  25174. weight: math.unit(165, "lb"),
  25175. name: "Front",
  25176. image: {
  25177. source: "./media/characters/nicky/front.svg",
  25178. extra: 3144 / 2886,
  25179. bottom: 45.6 / 3192
  25180. }
  25181. },
  25182. back: {
  25183. height: math.unit(5 + 10 / 12, "feet"),
  25184. weight: math.unit(165, "lb"),
  25185. name: "Back",
  25186. image: {
  25187. source: "./media/characters/nicky/back.svg",
  25188. extra: 3055 / 2804,
  25189. bottom: 28.4 / 3087
  25190. }
  25191. },
  25192. frontclothed: {
  25193. height: math.unit(5 + 10 / 12, "feet"),
  25194. weight: math.unit(165, "lb"),
  25195. name: "Front-clothed",
  25196. image: {
  25197. source: "./media/characters/nicky/front-clothed.svg",
  25198. extra: 3184.9 / 2926.9,
  25199. bottom: 86.5 / 3239.9
  25200. }
  25201. },
  25202. foot: {
  25203. height: math.unit(1.16, "feet"),
  25204. name: "Foot",
  25205. image: {
  25206. source: "./media/characters/nicky/foot.svg"
  25207. }
  25208. },
  25209. feet: {
  25210. height: math.unit(1.34, "feet"),
  25211. name: "Feet",
  25212. image: {
  25213. source: "./media/characters/nicky/feet.svg"
  25214. }
  25215. },
  25216. maw: {
  25217. height: math.unit(0.9, "feet"),
  25218. name: "Maw",
  25219. image: {
  25220. source: "./media/characters/nicky/maw.svg"
  25221. }
  25222. },
  25223. },
  25224. [
  25225. {
  25226. name: "Normal",
  25227. height: math.unit(5 + 10 / 12, "feet"),
  25228. default: true
  25229. },
  25230. {
  25231. name: "Macro",
  25232. height: math.unit(60, "feet")
  25233. },
  25234. {
  25235. name: "Megamacro",
  25236. height: math.unit(1, "mile")
  25237. },
  25238. ]
  25239. ))
  25240. characterMakers.push(() => makeCharacter(
  25241. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25242. {
  25243. side: {
  25244. height: math.unit(10, "feet"),
  25245. weight: math.unit(600, "lb"),
  25246. name: "Side",
  25247. image: {
  25248. source: "./media/characters/blair/side.svg",
  25249. bottom: 16.6 / 475,
  25250. extra: 458 / 431
  25251. }
  25252. },
  25253. },
  25254. [
  25255. {
  25256. name: "Micro",
  25257. height: math.unit(8, "inches")
  25258. },
  25259. {
  25260. name: "Normal",
  25261. height: math.unit(10, "feet"),
  25262. default: true
  25263. },
  25264. {
  25265. name: "Macro",
  25266. height: math.unit(180, "feet")
  25267. },
  25268. ]
  25269. ))
  25270. characterMakers.push(() => makeCharacter(
  25271. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25272. {
  25273. front: {
  25274. height: math.unit(5 + 4 / 12, "feet"),
  25275. weight: math.unit(125, "lb"),
  25276. name: "Front",
  25277. image: {
  25278. source: "./media/characters/fisher/front.svg",
  25279. extra: 444 / 390,
  25280. bottom: 2 / 444.8
  25281. }
  25282. },
  25283. },
  25284. [
  25285. {
  25286. name: "Micro",
  25287. height: math.unit(4, "inches")
  25288. },
  25289. {
  25290. name: "Normal",
  25291. height: math.unit(5 + 4 / 12, "feet"),
  25292. default: true
  25293. },
  25294. {
  25295. name: "Macro",
  25296. height: math.unit(100, "feet")
  25297. },
  25298. ]
  25299. ))
  25300. characterMakers.push(() => makeCharacter(
  25301. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25302. {
  25303. front: {
  25304. height: math.unit(6.71, "feet"),
  25305. weight: math.unit(200, "lb"),
  25306. capacity: math.unit(1000000, "people"),
  25307. name: "Front",
  25308. image: {
  25309. source: "./media/characters/gliss/front.svg",
  25310. extra: 2347 / 2231,
  25311. bottom: 113 / 2462
  25312. }
  25313. },
  25314. hammerspaceSize: {
  25315. height: math.unit(6.71 * 717, "feet"),
  25316. weight: math.unit(200, "lb"),
  25317. capacity: math.unit(1000000, "people"),
  25318. name: "Hammerspace Size",
  25319. image: {
  25320. source: "./media/characters/gliss/front.svg",
  25321. extra: 2347 / 2231,
  25322. bottom: 113 / 2462
  25323. }
  25324. },
  25325. },
  25326. [
  25327. {
  25328. name: "Normal",
  25329. height: math.unit(6.71, "feet"),
  25330. default: true
  25331. },
  25332. ]
  25333. ))
  25334. characterMakers.push(() => makeCharacter(
  25335. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25336. {
  25337. side: {
  25338. height: math.unit(1.44, "m"),
  25339. weight: math.unit(80, "kg"),
  25340. name: "Side",
  25341. image: {
  25342. source: "./media/characters/dune-anderson/side.svg",
  25343. bottom: 49 / 1426
  25344. }
  25345. },
  25346. },
  25347. [
  25348. {
  25349. name: "Wolf-sized",
  25350. height: math.unit(1.44, "meters")
  25351. },
  25352. {
  25353. name: "Normal",
  25354. height: math.unit(5.05, "meters"),
  25355. default: true
  25356. },
  25357. {
  25358. name: "Big",
  25359. height: math.unit(14.4, "meters")
  25360. },
  25361. {
  25362. name: "Huge",
  25363. height: math.unit(144, "meters")
  25364. },
  25365. ]
  25366. ))
  25367. characterMakers.push(() => makeCharacter(
  25368. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25369. {
  25370. front: {
  25371. height: math.unit(7, "feet"),
  25372. weight: math.unit(425, "lb"),
  25373. name: "Front",
  25374. image: {
  25375. source: "./media/characters/hind/front.svg",
  25376. extra: 2091 / 1860,
  25377. bottom: 129 / 2220
  25378. }
  25379. },
  25380. back: {
  25381. height: math.unit(7, "feet"),
  25382. weight: math.unit(425, "lb"),
  25383. name: "Back",
  25384. image: {
  25385. source: "./media/characters/hind/back.svg",
  25386. extra: 2091 / 1860,
  25387. bottom: 24.6 / 2309
  25388. }
  25389. },
  25390. tail: {
  25391. height: math.unit(2.8, "feet"),
  25392. name: "Tail",
  25393. image: {
  25394. source: "./media/characters/hind/tail.svg"
  25395. }
  25396. },
  25397. head: {
  25398. height: math.unit(2.55, "feet"),
  25399. name: "Head",
  25400. image: {
  25401. source: "./media/characters/hind/head.svg"
  25402. }
  25403. },
  25404. },
  25405. [
  25406. {
  25407. name: "XS",
  25408. height: math.unit(0.7, "feet")
  25409. },
  25410. {
  25411. name: "Normal",
  25412. height: math.unit(7, "feet"),
  25413. default: true
  25414. },
  25415. {
  25416. name: "XL",
  25417. height: math.unit(70, "feet")
  25418. },
  25419. ]
  25420. ))
  25421. characterMakers.push(() => makeCharacter(
  25422. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25423. {
  25424. front: {
  25425. height: math.unit(2.1, "meters"),
  25426. weight: math.unit(150, "lb"),
  25427. name: "Front",
  25428. image: {
  25429. source: "./media/characters/tharquench-sizestealer/front.svg",
  25430. extra: 1605/1470,
  25431. bottom: 36/1641
  25432. }
  25433. },
  25434. frontAlt: {
  25435. height: math.unit(2.1, "meters"),
  25436. weight: math.unit(150, "lb"),
  25437. name: "Front (Alt)",
  25438. image: {
  25439. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25440. extra: 2318 / 2063,
  25441. bottom: 93.4 / 2410
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Nano",
  25448. height: math.unit(1, "mm")
  25449. },
  25450. {
  25451. name: "Micro",
  25452. height: math.unit(1, "cm")
  25453. },
  25454. {
  25455. name: "Normal",
  25456. height: math.unit(2.1, "meters"),
  25457. default: true
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25463. {
  25464. front: {
  25465. height: math.unit(7 + 5 / 12, "feet"),
  25466. weight: math.unit(357, "lb"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/solex-draconov/front.svg",
  25470. extra: 1993 / 1865,
  25471. bottom: 117 / 2111
  25472. }
  25473. },
  25474. },
  25475. [
  25476. {
  25477. name: "Natural Height",
  25478. height: math.unit(7 + 5 / 12, "feet"),
  25479. default: true
  25480. },
  25481. {
  25482. name: "Macro",
  25483. height: math.unit(350, "feet")
  25484. },
  25485. {
  25486. name: "Macro+",
  25487. height: math.unit(1000, "feet")
  25488. },
  25489. {
  25490. name: "Megamacro",
  25491. height: math.unit(20, "km")
  25492. },
  25493. {
  25494. name: "Megamacro+",
  25495. height: math.unit(1000, "km")
  25496. },
  25497. {
  25498. name: "Gigamacro",
  25499. height: math.unit(2.5, "Gm")
  25500. },
  25501. {
  25502. name: "Teramacro",
  25503. height: math.unit(15, "Tm")
  25504. },
  25505. {
  25506. name: "Galactic",
  25507. height: math.unit(30, "Zm")
  25508. },
  25509. {
  25510. name: "Universal",
  25511. height: math.unit(21000, "Ym")
  25512. },
  25513. {
  25514. name: "Omniversal",
  25515. height: math.unit(9.861e50, "Ym")
  25516. },
  25517. {
  25518. name: "Existential",
  25519. height: math.unit(1e300, "meters")
  25520. },
  25521. ]
  25522. ))
  25523. characterMakers.push(() => makeCharacter(
  25524. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25525. {
  25526. side: {
  25527. height: math.unit(25, "feet"),
  25528. weight: math.unit(90000, "lb"),
  25529. name: "Side",
  25530. image: {
  25531. source: "./media/characters/mandarax/side.svg",
  25532. extra: 614 / 332,
  25533. bottom: 55 / 630
  25534. }
  25535. },
  25536. head: {
  25537. height: math.unit(11.4, "feet"),
  25538. name: "Head",
  25539. image: {
  25540. source: "./media/characters/mandarax/head.svg"
  25541. }
  25542. },
  25543. belly: {
  25544. height: math.unit(33, "feet"),
  25545. name: "Belly",
  25546. capacity: math.unit(500, "people"),
  25547. image: {
  25548. source: "./media/characters/mandarax/belly.svg"
  25549. }
  25550. },
  25551. dick: {
  25552. height: math.unit(8.46, "feet"),
  25553. name: "Dick",
  25554. image: {
  25555. source: "./media/characters/mandarax/dick.svg"
  25556. }
  25557. },
  25558. top: {
  25559. height: math.unit(28, "meters"),
  25560. name: "Top",
  25561. image: {
  25562. source: "./media/characters/mandarax/top.svg"
  25563. }
  25564. },
  25565. },
  25566. [
  25567. {
  25568. name: "Normal",
  25569. height: math.unit(25, "feet"),
  25570. default: true
  25571. },
  25572. ]
  25573. ))
  25574. characterMakers.push(() => makeCharacter(
  25575. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25576. {
  25577. front: {
  25578. height: math.unit(5, "feet"),
  25579. weight: math.unit(90, "lb"),
  25580. name: "Front",
  25581. image: {
  25582. source: "./media/characters/pixil/front.svg",
  25583. extra: 2000 / 1618,
  25584. bottom: 12.3 / 2011
  25585. }
  25586. },
  25587. },
  25588. [
  25589. {
  25590. name: "Normal",
  25591. height: math.unit(5, "feet"),
  25592. default: true
  25593. },
  25594. {
  25595. name: "Megamacro",
  25596. height: math.unit(10, "miles"),
  25597. },
  25598. ]
  25599. ))
  25600. characterMakers.push(() => makeCharacter(
  25601. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25602. {
  25603. front: {
  25604. height: math.unit(7 + 2 / 12, "feet"),
  25605. weight: math.unit(200, "lb"),
  25606. name: "Front",
  25607. image: {
  25608. source: "./media/characters/angel/front.svg",
  25609. extra: 1830 / 1737,
  25610. bottom: 22.6 / 1854,
  25611. }
  25612. },
  25613. },
  25614. [
  25615. {
  25616. name: "Normal",
  25617. height: math.unit(7 + 2 / 12, "feet"),
  25618. default: true
  25619. },
  25620. {
  25621. name: "Macro",
  25622. height: math.unit(1000, "feet")
  25623. },
  25624. {
  25625. name: "Megamacro",
  25626. height: math.unit(2, "miles")
  25627. },
  25628. {
  25629. name: "Gigamacro",
  25630. height: math.unit(20, "earths")
  25631. },
  25632. ]
  25633. ))
  25634. characterMakers.push(() => makeCharacter(
  25635. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25636. {
  25637. front: {
  25638. height: math.unit(5, "feet"),
  25639. weight: math.unit(180, "lb"),
  25640. name: "Front",
  25641. image: {
  25642. source: "./media/characters/mekana/front.svg",
  25643. extra: 1671 / 1605,
  25644. bottom: 3.5 / 1691
  25645. }
  25646. },
  25647. side: {
  25648. height: math.unit(5, "feet"),
  25649. weight: math.unit(180, "lb"),
  25650. name: "Side",
  25651. image: {
  25652. source: "./media/characters/mekana/side.svg",
  25653. extra: 1671 / 1605,
  25654. bottom: 3.5 / 1691
  25655. }
  25656. },
  25657. back: {
  25658. height: math.unit(5, "feet"),
  25659. weight: math.unit(180, "lb"),
  25660. name: "Back",
  25661. image: {
  25662. source: "./media/characters/mekana/back.svg",
  25663. extra: 1671 / 1605,
  25664. bottom: 3.5 / 1691
  25665. }
  25666. },
  25667. },
  25668. [
  25669. {
  25670. name: "Normal",
  25671. height: math.unit(5, "feet"),
  25672. default: true
  25673. },
  25674. ]
  25675. ))
  25676. characterMakers.push(() => makeCharacter(
  25677. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25678. {
  25679. front: {
  25680. height: math.unit(4 + 6 / 12, "feet"),
  25681. weight: math.unit(80, "lb"),
  25682. name: "Front",
  25683. image: {
  25684. source: "./media/characters/pixie/front.svg",
  25685. extra: 1924 / 1825,
  25686. bottom: 22.4 / 1946
  25687. }
  25688. },
  25689. },
  25690. [
  25691. {
  25692. name: "Normal",
  25693. height: math.unit(4 + 6 / 12, "feet"),
  25694. default: true
  25695. },
  25696. {
  25697. name: "Macro",
  25698. height: math.unit(40, "feet")
  25699. },
  25700. ]
  25701. ))
  25702. characterMakers.push(() => makeCharacter(
  25703. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25704. {
  25705. front: {
  25706. height: math.unit(2.1, "meters"),
  25707. weight: math.unit(200, "lb"),
  25708. name: "Front",
  25709. image: {
  25710. source: "./media/characters/the-lascivious/front.svg",
  25711. extra: 1 / 0.893,
  25712. bottom: 3.5 / 573.7
  25713. }
  25714. },
  25715. },
  25716. [
  25717. {
  25718. name: "Human Scale",
  25719. height: math.unit(2.1, "meters")
  25720. },
  25721. {
  25722. name: "Wolxi Scale",
  25723. height: math.unit(46.2, "m"),
  25724. default: true
  25725. },
  25726. {
  25727. name: "Boinker of Buildings",
  25728. height: math.unit(10, "km")
  25729. },
  25730. {
  25731. name: "Shagger of Skyscrapers",
  25732. height: math.unit(40, "km")
  25733. },
  25734. {
  25735. name: "Banger of Boroughs",
  25736. height: math.unit(4000, "km")
  25737. },
  25738. {
  25739. name: "Screwer of States",
  25740. height: math.unit(100000, "km")
  25741. },
  25742. {
  25743. name: "Pounder of Planets",
  25744. height: math.unit(2000000, "km")
  25745. },
  25746. ]
  25747. ))
  25748. characterMakers.push(() => makeCharacter(
  25749. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25750. {
  25751. front: {
  25752. height: math.unit(6, "feet"),
  25753. weight: math.unit(150, "lb"),
  25754. name: "Front",
  25755. image: {
  25756. source: "./media/characters/aj/front.svg",
  25757. extra: 2039 / 1562,
  25758. bottom: 40 / 2079
  25759. }
  25760. },
  25761. },
  25762. [
  25763. {
  25764. name: "Normal",
  25765. height: math.unit(11 + 6 / 12, "feet"),
  25766. default: true
  25767. },
  25768. {
  25769. name: "Megamacro",
  25770. height: math.unit(60, "megameters")
  25771. },
  25772. ]
  25773. ))
  25774. characterMakers.push(() => makeCharacter(
  25775. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25776. {
  25777. side: {
  25778. height: math.unit(31 + 8 / 12, "feet"),
  25779. weight: math.unit(75000, "kg"),
  25780. name: "Side",
  25781. image: {
  25782. source: "./media/characters/koros/side.svg",
  25783. extra: 1442 / 1297,
  25784. bottom: 122.7 / 1562
  25785. }
  25786. },
  25787. dicksKingsCrown: {
  25788. height: math.unit(6, "feet"),
  25789. name: "Dicks (King's Crown)",
  25790. image: {
  25791. source: "./media/characters/koros/dicks-kings-crown.svg"
  25792. }
  25793. },
  25794. dicksTailSet: {
  25795. height: math.unit(3, "feet"),
  25796. name: "Dicks (Tail Set)",
  25797. image: {
  25798. source: "./media/characters/koros/dicks-tail-set.svg"
  25799. }
  25800. },
  25801. dickCumming: {
  25802. height: math.unit(7.98, "feet"),
  25803. name: "Dick (Cumming)",
  25804. image: {
  25805. source: "./media/characters/koros/dick-cumming.svg"
  25806. }
  25807. },
  25808. dicksBack: {
  25809. height: math.unit(5.9, "feet"),
  25810. name: "Dicks (Back)",
  25811. image: {
  25812. source: "./media/characters/koros/dicks-back.svg"
  25813. }
  25814. },
  25815. dicksFront: {
  25816. height: math.unit(3.72, "feet"),
  25817. name: "Dicks (Front)",
  25818. image: {
  25819. source: "./media/characters/koros/dicks-front.svg"
  25820. }
  25821. },
  25822. dicksPeeking: {
  25823. height: math.unit(3.0, "feet"),
  25824. name: "Dicks (Peeking)",
  25825. image: {
  25826. source: "./media/characters/koros/dicks-peeking.svg"
  25827. }
  25828. },
  25829. eye: {
  25830. height: math.unit(1.7, "feet"),
  25831. name: "Eye",
  25832. image: {
  25833. source: "./media/characters/koros/eye.svg"
  25834. }
  25835. },
  25836. headFront: {
  25837. height: math.unit(11.69, "feet"),
  25838. name: "Head (Front)",
  25839. image: {
  25840. source: "./media/characters/koros/head-front.svg"
  25841. }
  25842. },
  25843. headSide: {
  25844. height: math.unit(14, "feet"),
  25845. name: "Head (Side)",
  25846. image: {
  25847. source: "./media/characters/koros/head-side.svg"
  25848. }
  25849. },
  25850. leg: {
  25851. height: math.unit(17, "feet"),
  25852. name: "Leg",
  25853. image: {
  25854. source: "./media/characters/koros/leg.svg"
  25855. }
  25856. },
  25857. mawSide: {
  25858. height: math.unit(12.8, "feet"),
  25859. name: "Maw (Side)",
  25860. image: {
  25861. source: "./media/characters/koros/maw-side.svg"
  25862. }
  25863. },
  25864. mawSpitting: {
  25865. height: math.unit(17, "feet"),
  25866. name: "Maw (Spitting)",
  25867. image: {
  25868. source: "./media/characters/koros/maw-spitting.svg"
  25869. }
  25870. },
  25871. slit: {
  25872. height: math.unit(2.8, "feet"),
  25873. name: "Slit",
  25874. image: {
  25875. source: "./media/characters/koros/slit.svg"
  25876. }
  25877. },
  25878. stomach: {
  25879. height: math.unit(6.8, "feet"),
  25880. capacity: math.unit(20, "people"),
  25881. name: "Stomach",
  25882. image: {
  25883. source: "./media/characters/koros/stomach.svg"
  25884. }
  25885. },
  25886. wingspanBottom: {
  25887. height: math.unit(114, "feet"),
  25888. name: "Wingspan (Bottom)",
  25889. image: {
  25890. source: "./media/characters/koros/wingspan-bottom.svg"
  25891. }
  25892. },
  25893. wingspanTop: {
  25894. height: math.unit(104, "feet"),
  25895. name: "Wingspan (Top)",
  25896. image: {
  25897. source: "./media/characters/koros/wingspan-top.svg"
  25898. }
  25899. },
  25900. },
  25901. [
  25902. {
  25903. name: "Normal",
  25904. height: math.unit(31 + 8 / 12, "feet"),
  25905. default: true
  25906. },
  25907. ]
  25908. ))
  25909. characterMakers.push(() => makeCharacter(
  25910. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25911. {
  25912. front: {
  25913. height: math.unit(18 + 5 / 12, "feet"),
  25914. weight: math.unit(3750, "kg"),
  25915. name: "Front",
  25916. image: {
  25917. source: "./media/characters/vexx/front.svg",
  25918. extra: 426 / 396,
  25919. bottom: 31.5 / 458
  25920. }
  25921. },
  25922. maw: {
  25923. height: math.unit(6, "feet"),
  25924. name: "Maw",
  25925. image: {
  25926. source: "./media/characters/vexx/maw.svg"
  25927. }
  25928. },
  25929. },
  25930. [
  25931. {
  25932. name: "Normal",
  25933. height: math.unit(18 + 5 / 12, "feet"),
  25934. default: true
  25935. },
  25936. ]
  25937. ))
  25938. characterMakers.push(() => makeCharacter(
  25939. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25940. {
  25941. front: {
  25942. height: math.unit(17 + 6 / 12, "feet"),
  25943. weight: math.unit(150, "lb"),
  25944. name: "Front",
  25945. image: {
  25946. source: "./media/characters/baadra/front.svg",
  25947. extra: 3137 / 2890,
  25948. bottom: 168.4 / 3305
  25949. }
  25950. },
  25951. back: {
  25952. height: math.unit(17 + 6 / 12, "feet"),
  25953. weight: math.unit(150, "lb"),
  25954. name: "Back",
  25955. image: {
  25956. source: "./media/characters/baadra/back.svg",
  25957. extra: 3142 / 2890,
  25958. bottom: 220 / 3371
  25959. }
  25960. },
  25961. head: {
  25962. height: math.unit(5.45, "feet"),
  25963. name: "Head",
  25964. image: {
  25965. source: "./media/characters/baadra/head.svg"
  25966. }
  25967. },
  25968. headAngry: {
  25969. height: math.unit(4.95, "feet"),
  25970. name: "Head (Angry)",
  25971. image: {
  25972. source: "./media/characters/baadra/head-angry.svg"
  25973. }
  25974. },
  25975. headOpen: {
  25976. height: math.unit(6, "feet"),
  25977. name: "Head (Open)",
  25978. image: {
  25979. source: "./media/characters/baadra/head-open.svg"
  25980. }
  25981. },
  25982. },
  25983. [
  25984. {
  25985. name: "Normal",
  25986. height: math.unit(17 + 6 / 12, "feet"),
  25987. default: true
  25988. },
  25989. ]
  25990. ))
  25991. characterMakers.push(() => makeCharacter(
  25992. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25993. {
  25994. front: {
  25995. height: math.unit(7 + 3 / 12, "feet"),
  25996. weight: math.unit(180, "lb"),
  25997. name: "Front",
  25998. image: {
  25999. source: "./media/characters/juri/front.svg",
  26000. extra: 1401 / 1237,
  26001. bottom: 18.5 / 1418
  26002. }
  26003. },
  26004. side: {
  26005. height: math.unit(7 + 3 / 12, "feet"),
  26006. weight: math.unit(180, "lb"),
  26007. name: "Side",
  26008. image: {
  26009. source: "./media/characters/juri/side.svg",
  26010. extra: 1424 / 1242,
  26011. bottom: 18.5 / 1447
  26012. }
  26013. },
  26014. sitting: {
  26015. height: math.unit(6, "feet"),
  26016. weight: math.unit(180, "lb"),
  26017. name: "Sitting",
  26018. image: {
  26019. source: "./media/characters/juri/sitting.svg",
  26020. extra: 1270 / 1143,
  26021. bottom: 100 / 1343
  26022. }
  26023. },
  26024. back: {
  26025. height: math.unit(7 + 3 / 12, "feet"),
  26026. weight: math.unit(180, "lb"),
  26027. name: "Back",
  26028. image: {
  26029. source: "./media/characters/juri/back.svg",
  26030. extra: 1377 / 1240,
  26031. bottom: 23.7 / 1405
  26032. }
  26033. },
  26034. maw: {
  26035. height: math.unit(2.8, "feet"),
  26036. name: "Maw",
  26037. image: {
  26038. source: "./media/characters/juri/maw.svg"
  26039. }
  26040. },
  26041. stomach: {
  26042. height: math.unit(0.89, "feet"),
  26043. capacity: math.unit(4, "liters"),
  26044. name: "Stomach",
  26045. image: {
  26046. source: "./media/characters/juri/stomach.svg"
  26047. }
  26048. },
  26049. },
  26050. [
  26051. {
  26052. name: "Normal",
  26053. height: math.unit(7 + 3 / 12, "feet"),
  26054. default: true
  26055. },
  26056. ]
  26057. ))
  26058. characterMakers.push(() => makeCharacter(
  26059. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26060. {
  26061. fox: {
  26062. height: math.unit(5 + 6 / 12, "feet"),
  26063. weight: math.unit(140, "lb"),
  26064. name: "Fox",
  26065. image: {
  26066. source: "./media/characters/maxene-sita/fox.svg",
  26067. extra: 146 / 138,
  26068. bottom: 2.1 / 148.19
  26069. }
  26070. },
  26071. foxLaying: {
  26072. height: math.unit(1.70, "feet"),
  26073. weight: math.unit(140, "lb"),
  26074. name: "Fox (Laying)",
  26075. image: {
  26076. source: "./media/characters/maxene-sita/fox-laying.svg",
  26077. extra: 910 / 572,
  26078. bottom: 71 / 981
  26079. }
  26080. },
  26081. kitsune: {
  26082. height: math.unit(10, "feet"),
  26083. weight: math.unit(800, "lb"),
  26084. name: "Kitsune",
  26085. image: {
  26086. source: "./media/characters/maxene-sita/kitsune.svg",
  26087. extra: 185 / 176,
  26088. bottom: 4.7 / 189.9
  26089. }
  26090. },
  26091. hellhound: {
  26092. height: math.unit(10, "feet"),
  26093. weight: math.unit(700, "lb"),
  26094. name: "Hellhound",
  26095. image: {
  26096. source: "./media/characters/maxene-sita/hellhound.svg",
  26097. extra: 1600 / 1545,
  26098. bottom: 81 / 1681
  26099. }
  26100. },
  26101. },
  26102. [
  26103. {
  26104. name: "Normal",
  26105. height: math.unit(5 + 6 / 12, "feet"),
  26106. default: true
  26107. },
  26108. ]
  26109. ))
  26110. characterMakers.push(() => makeCharacter(
  26111. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26112. {
  26113. front: {
  26114. height: math.unit(3 + 4 / 12, "feet"),
  26115. weight: math.unit(70, "lb"),
  26116. name: "Front",
  26117. image: {
  26118. source: "./media/characters/maia/front.svg",
  26119. extra: 227 / 219.5,
  26120. bottom: 40 / 267
  26121. }
  26122. },
  26123. back: {
  26124. height: math.unit(3 + 4 / 12, "feet"),
  26125. weight: math.unit(70, "lb"),
  26126. name: "Back",
  26127. image: {
  26128. source: "./media/characters/maia/back.svg",
  26129. extra: 237 / 225
  26130. }
  26131. },
  26132. },
  26133. [
  26134. {
  26135. name: "Normal",
  26136. height: math.unit(3 + 4 / 12, "feet"),
  26137. default: true
  26138. },
  26139. ]
  26140. ))
  26141. characterMakers.push(() => makeCharacter(
  26142. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26143. {
  26144. front: {
  26145. height: math.unit(5 + 10 / 12, "feet"),
  26146. weight: math.unit(197, "lb"),
  26147. name: "Front",
  26148. image: {
  26149. source: "./media/characters/jabaro/front.svg",
  26150. extra: 225 / 216,
  26151. bottom: 5.06 / 230
  26152. }
  26153. },
  26154. back: {
  26155. height: math.unit(5 + 10 / 12, "feet"),
  26156. weight: math.unit(197, "lb"),
  26157. name: "Back",
  26158. image: {
  26159. source: "./media/characters/jabaro/back.svg",
  26160. extra: 225 / 219,
  26161. bottom: 1.9 / 227
  26162. }
  26163. },
  26164. },
  26165. [
  26166. {
  26167. name: "Normal",
  26168. height: math.unit(5 + 10 / 12, "feet"),
  26169. default: true
  26170. },
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26175. {
  26176. front: {
  26177. height: math.unit(5 + 8 / 12, "feet"),
  26178. weight: math.unit(139, "lb"),
  26179. name: "Front",
  26180. image: {
  26181. source: "./media/characters/risa/front.svg",
  26182. extra: 270 / 260,
  26183. bottom: 11.2 / 282
  26184. }
  26185. },
  26186. back: {
  26187. height: math.unit(5 + 8 / 12, "feet"),
  26188. weight: math.unit(139, "lb"),
  26189. name: "Back",
  26190. image: {
  26191. source: "./media/characters/risa/back.svg",
  26192. extra: 264 / 255,
  26193. bottom: 4 / 268
  26194. }
  26195. },
  26196. },
  26197. [
  26198. {
  26199. name: "Normal",
  26200. height: math.unit(5 + 8 / 12, "feet"),
  26201. default: true
  26202. },
  26203. ]
  26204. ))
  26205. characterMakers.push(() => makeCharacter(
  26206. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26207. {
  26208. front: {
  26209. height: math.unit(2 + 11 / 12, "feet"),
  26210. weight: math.unit(30, "lb"),
  26211. name: "Front",
  26212. image: {
  26213. source: "./media/characters/weatley/front.svg",
  26214. bottom: 10.7 / 414,
  26215. extra: 403.5 / 362
  26216. }
  26217. },
  26218. back: {
  26219. height: math.unit(2 + 11 / 12, "feet"),
  26220. weight: math.unit(30, "lb"),
  26221. name: "Back",
  26222. image: {
  26223. source: "./media/characters/weatley/back.svg",
  26224. bottom: 10.7 / 414,
  26225. extra: 403.5 / 362
  26226. }
  26227. },
  26228. },
  26229. [
  26230. {
  26231. name: "Normal",
  26232. height: math.unit(2 + 11 / 12, "feet"),
  26233. default: true
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26239. {
  26240. front: {
  26241. height: math.unit(5 + 2 / 12, "feet"),
  26242. weight: math.unit(50, "kg"),
  26243. name: "Front",
  26244. image: {
  26245. source: "./media/characters/mercury-crescent/front.svg",
  26246. extra: 1088 / 1033,
  26247. bottom: 18.9 / 1109
  26248. }
  26249. },
  26250. },
  26251. [
  26252. {
  26253. name: "Normal",
  26254. height: math.unit(5 + 2 / 12, "feet"),
  26255. default: true
  26256. },
  26257. ]
  26258. ))
  26259. characterMakers.push(() => makeCharacter(
  26260. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26261. {
  26262. front: {
  26263. height: math.unit(2, "feet"),
  26264. weight: math.unit(15, "kg"),
  26265. name: "Front",
  26266. image: {
  26267. source: "./media/characters/diamond-jones/front.svg",
  26268. extra: 727/723,
  26269. bottom: 46/773
  26270. }
  26271. },
  26272. },
  26273. [
  26274. {
  26275. name: "Normal",
  26276. height: math.unit(2, "feet"),
  26277. default: true
  26278. },
  26279. ]
  26280. ))
  26281. characterMakers.push(() => makeCharacter(
  26282. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26283. {
  26284. front: {
  26285. height: math.unit(3, "feet"),
  26286. weight: math.unit(30, "kg"),
  26287. name: "Front",
  26288. image: {
  26289. source: "./media/characters/sweet-bit/front.svg",
  26290. extra: 675 / 567,
  26291. bottom: 27.7 / 703
  26292. }
  26293. },
  26294. },
  26295. [
  26296. {
  26297. name: "Normal",
  26298. height: math.unit(3, "feet"),
  26299. default: true
  26300. },
  26301. ]
  26302. ))
  26303. characterMakers.push(() => makeCharacter(
  26304. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26305. {
  26306. side: {
  26307. height: math.unit(9.178, "feet"),
  26308. weight: math.unit(500, "lb"),
  26309. name: "Side",
  26310. image: {
  26311. source: "./media/characters/umbrazen/side.svg",
  26312. extra: 1730 / 1473,
  26313. bottom: 34.6 / 1765
  26314. }
  26315. },
  26316. },
  26317. [
  26318. {
  26319. name: "Normal",
  26320. height: math.unit(9.178, "feet"),
  26321. default: true
  26322. },
  26323. ]
  26324. ))
  26325. characterMakers.push(() => makeCharacter(
  26326. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26327. {
  26328. front: {
  26329. height: math.unit(10, "feet"),
  26330. weight: math.unit(750, "lb"),
  26331. name: "Front",
  26332. image: {
  26333. source: "./media/characters/arlist/front.svg",
  26334. extra: 961 / 778,
  26335. bottom: 6.2 / 986
  26336. }
  26337. },
  26338. },
  26339. [
  26340. {
  26341. name: "Normal",
  26342. height: math.unit(10, "feet"),
  26343. default: true
  26344. },
  26345. ]
  26346. ))
  26347. characterMakers.push(() => makeCharacter(
  26348. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26349. {
  26350. front: {
  26351. height: math.unit(5 + 1 / 12, "feet"),
  26352. weight: math.unit(110, "lb"),
  26353. name: "Front",
  26354. image: {
  26355. source: "./media/characters/aradel/front.svg",
  26356. extra: 324 / 303,
  26357. bottom: 3.6 / 329.4
  26358. }
  26359. },
  26360. },
  26361. [
  26362. {
  26363. name: "Normal",
  26364. height: math.unit(5 + 1 / 12, "feet"),
  26365. default: true
  26366. },
  26367. ]
  26368. ))
  26369. characterMakers.push(() => makeCharacter(
  26370. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26371. {
  26372. front: {
  26373. height: math.unit(3 + 8 / 12, "feet"),
  26374. weight: math.unit(50, "lb"),
  26375. name: "Front",
  26376. image: {
  26377. source: "./media/characters/serryn/front.svg",
  26378. extra: 1792 / 1656,
  26379. bottom: 43.5 / 1840
  26380. }
  26381. },
  26382. },
  26383. [
  26384. {
  26385. name: "Normal",
  26386. height: math.unit(3 + 8 / 12, "feet"),
  26387. default: true
  26388. },
  26389. ]
  26390. ))
  26391. characterMakers.push(() => makeCharacter(
  26392. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26393. {
  26394. front: {
  26395. height: math.unit(7 + 10 / 12, "feet"),
  26396. weight: math.unit(255, "lb"),
  26397. name: "Front",
  26398. image: {
  26399. source: "./media/characters/xavier-thyme/front.svg",
  26400. extra: 3733 / 3642,
  26401. bottom: 131 / 3869
  26402. }
  26403. },
  26404. frontRaven: {
  26405. height: math.unit(7 + 10 / 12, "feet"),
  26406. weight: math.unit(255, "lb"),
  26407. name: "Front (Raven)",
  26408. image: {
  26409. source: "./media/characters/xavier-thyme/front-raven.svg",
  26410. extra: 4385 / 3642,
  26411. bottom: 131 / 4517
  26412. }
  26413. },
  26414. },
  26415. [
  26416. {
  26417. name: "Normal",
  26418. height: math.unit(7 + 10 / 12, "feet"),
  26419. default: true
  26420. },
  26421. ]
  26422. ))
  26423. characterMakers.push(() => makeCharacter(
  26424. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26425. {
  26426. front: {
  26427. height: math.unit(1.6, "m"),
  26428. weight: math.unit(50, "kg"),
  26429. name: "Front",
  26430. image: {
  26431. source: "./media/characters/kiki/front.svg",
  26432. extra: 4682 / 3610,
  26433. bottom: 115 / 4777
  26434. }
  26435. },
  26436. },
  26437. [
  26438. {
  26439. name: "Normal",
  26440. height: math.unit(1.6, "meters"),
  26441. default: true
  26442. },
  26443. ]
  26444. ))
  26445. characterMakers.push(() => makeCharacter(
  26446. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26447. {
  26448. front: {
  26449. height: math.unit(50, "m"),
  26450. weight: math.unit(500, "tonnes"),
  26451. name: "Front",
  26452. image: {
  26453. source: "./media/characters/ryoko/front.svg",
  26454. extra: 4632 / 3926,
  26455. bottom: 193 / 4823
  26456. }
  26457. },
  26458. },
  26459. [
  26460. {
  26461. name: "Normal",
  26462. height: math.unit(50, "meters"),
  26463. default: true
  26464. },
  26465. ]
  26466. ))
  26467. characterMakers.push(() => makeCharacter(
  26468. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26469. {
  26470. front: {
  26471. height: math.unit(30, "m"),
  26472. weight: math.unit(22, "tonnes"),
  26473. name: "Front",
  26474. image: {
  26475. source: "./media/characters/elio/front.svg",
  26476. extra: 4582 / 3720,
  26477. bottom: 236 / 4828
  26478. }
  26479. },
  26480. },
  26481. [
  26482. {
  26483. name: "Normal",
  26484. height: math.unit(30, "meters"),
  26485. default: true
  26486. },
  26487. ]
  26488. ))
  26489. characterMakers.push(() => makeCharacter(
  26490. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26491. {
  26492. front: {
  26493. height: math.unit(6 + 3 / 12, "feet"),
  26494. weight: math.unit(120, "lb"),
  26495. name: "Front",
  26496. image: {
  26497. source: "./media/characters/azura/front.svg",
  26498. extra: 1149 / 1135,
  26499. bottom: 45 / 1194
  26500. }
  26501. },
  26502. frontClothed: {
  26503. height: math.unit(6 + 3 / 12, "feet"),
  26504. weight: math.unit(120, "lb"),
  26505. name: "Front (Clothed)",
  26506. image: {
  26507. source: "./media/characters/azura/front-clothed.svg",
  26508. extra: 1149 / 1135,
  26509. bottom: 45 / 1194
  26510. }
  26511. },
  26512. },
  26513. [
  26514. {
  26515. name: "Normal",
  26516. height: math.unit(6 + 3 / 12, "feet"),
  26517. default: true
  26518. },
  26519. {
  26520. name: "Macro",
  26521. height: math.unit(20 + 6 / 12, "feet")
  26522. },
  26523. {
  26524. name: "Megamacro",
  26525. height: math.unit(12, "miles")
  26526. },
  26527. {
  26528. name: "Gigamacro",
  26529. height: math.unit(10000, "miles")
  26530. },
  26531. {
  26532. name: "Teramacro",
  26533. height: math.unit(900000, "miles")
  26534. },
  26535. ]
  26536. ))
  26537. characterMakers.push(() => makeCharacter(
  26538. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26539. {
  26540. front: {
  26541. height: math.unit(12, "feet"),
  26542. weight: math.unit(1, "ton"),
  26543. capacity: math.unit(660000, "gallons"),
  26544. name: "Front",
  26545. image: {
  26546. source: "./media/characters/zeus/front.svg",
  26547. extra: 5005 / 4717,
  26548. bottom: 363 / 5388
  26549. }
  26550. },
  26551. },
  26552. [
  26553. {
  26554. name: "Normal",
  26555. height: math.unit(12, "feet")
  26556. },
  26557. {
  26558. name: "Preferred Size",
  26559. height: math.unit(0.5, "miles"),
  26560. default: true
  26561. },
  26562. {
  26563. name: "Giga Horse",
  26564. height: math.unit(300, "miles")
  26565. },
  26566. {
  26567. name: "Riding Planets",
  26568. height: math.unit(30, "megameters")
  26569. },
  26570. {
  26571. name: "Cosmic Giant",
  26572. height: math.unit(3, "zettameters")
  26573. },
  26574. {
  26575. name: "Breeding God",
  26576. height: math.unit(9.92e22, "yottameters")
  26577. },
  26578. ]
  26579. ))
  26580. characterMakers.push(() => makeCharacter(
  26581. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26582. {
  26583. side: {
  26584. height: math.unit(9, "feet"),
  26585. weight: math.unit(1500, "kg"),
  26586. name: "Side",
  26587. image: {
  26588. source: "./media/characters/fang/side.svg",
  26589. extra: 924 / 866,
  26590. bottom: 47.5 / 972.3
  26591. }
  26592. },
  26593. },
  26594. [
  26595. {
  26596. name: "Normal",
  26597. height: math.unit(9, "feet"),
  26598. default: true
  26599. },
  26600. {
  26601. name: "Macro",
  26602. height: math.unit(75 + 6 / 12, "feet")
  26603. },
  26604. {
  26605. name: "Teramacro",
  26606. height: math.unit(50000, "miles")
  26607. },
  26608. ]
  26609. ))
  26610. characterMakers.push(() => makeCharacter(
  26611. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26612. {
  26613. front: {
  26614. height: math.unit(10, "feet"),
  26615. weight: math.unit(2, "tons"),
  26616. name: "Front",
  26617. image: {
  26618. source: "./media/characters/rekhit/front.svg",
  26619. extra: 2796 / 2590,
  26620. bottom: 225 / 3022
  26621. }
  26622. },
  26623. },
  26624. [
  26625. {
  26626. name: "Normal",
  26627. height: math.unit(10, "feet"),
  26628. default: true
  26629. },
  26630. {
  26631. name: "Macro",
  26632. height: math.unit(500, "feet")
  26633. },
  26634. ]
  26635. ))
  26636. characterMakers.push(() => makeCharacter(
  26637. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26638. {
  26639. front: {
  26640. height: math.unit(7 + 6.451 / 12, "feet"),
  26641. weight: math.unit(310, "lb"),
  26642. name: "Front",
  26643. image: {
  26644. source: "./media/characters/dahlia-verrick/front.svg",
  26645. extra: 1488 / 1365,
  26646. bottom: 6.2 / 1495
  26647. }
  26648. },
  26649. back: {
  26650. height: math.unit(7 + 6.451 / 12, "feet"),
  26651. weight: math.unit(310, "lb"),
  26652. name: "Back",
  26653. image: {
  26654. source: "./media/characters/dahlia-verrick/back.svg",
  26655. extra: 1472 / 1351,
  26656. bottom: 5.28 / 1477
  26657. }
  26658. },
  26659. frontBusiness: {
  26660. height: math.unit(7 + 6.451 / 12, "feet"),
  26661. weight: math.unit(200, "lb"),
  26662. name: "Front (Business)",
  26663. image: {
  26664. source: "./media/characters/dahlia-verrick/front-business.svg",
  26665. extra: 1478 / 1381,
  26666. bottom: 5.5 / 1484
  26667. }
  26668. },
  26669. frontCasual: {
  26670. height: math.unit(7 + 6.451 / 12, "feet"),
  26671. weight: math.unit(200, "lb"),
  26672. name: "Front (Casual)",
  26673. image: {
  26674. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26675. extra: 1478 / 1381,
  26676. bottom: 5.5 / 1484
  26677. }
  26678. },
  26679. },
  26680. [
  26681. {
  26682. name: "Travel-Sized",
  26683. height: math.unit(7.45, "inches")
  26684. },
  26685. {
  26686. name: "Normal",
  26687. height: math.unit(7 + 6.451 / 12, "feet"),
  26688. default: true
  26689. },
  26690. {
  26691. name: "Hitting the Town",
  26692. height: math.unit(37 + 8 / 12, "feet")
  26693. },
  26694. {
  26695. name: "Stomp in the Suburbs",
  26696. height: math.unit(964 + 9.728 / 12, "feet")
  26697. },
  26698. {
  26699. name: "Sit on the City",
  26700. height: math.unit(61747 + 10.592 / 12, "feet")
  26701. },
  26702. {
  26703. name: "Glomp the Globe",
  26704. height: math.unit(252919327 + 4.832 / 12, "feet")
  26705. },
  26706. ]
  26707. ))
  26708. characterMakers.push(() => makeCharacter(
  26709. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26710. {
  26711. front: {
  26712. height: math.unit(6 + 4 / 12, "feet"),
  26713. weight: math.unit(320, "lb"),
  26714. name: "Front",
  26715. image: {
  26716. source: "./media/characters/balina-mahigan/front.svg",
  26717. extra: 447 / 428,
  26718. bottom: 18 / 466
  26719. }
  26720. },
  26721. back: {
  26722. height: math.unit(6 + 4 / 12, "feet"),
  26723. weight: math.unit(320, "lb"),
  26724. name: "Back",
  26725. image: {
  26726. source: "./media/characters/balina-mahigan/back.svg",
  26727. extra: 445 / 428,
  26728. bottom: 4.07 / 448
  26729. }
  26730. },
  26731. arm: {
  26732. height: math.unit(1.88, "feet"),
  26733. name: "Arm",
  26734. image: {
  26735. source: "./media/characters/balina-mahigan/arm.svg"
  26736. }
  26737. },
  26738. backPort: {
  26739. height: math.unit(0.685, "feet"),
  26740. name: "Back Port",
  26741. image: {
  26742. source: "./media/characters/balina-mahigan/back-port.svg"
  26743. }
  26744. },
  26745. hoofpaw: {
  26746. height: math.unit(1.41, "feet"),
  26747. name: "Hoofpaw",
  26748. image: {
  26749. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26750. }
  26751. },
  26752. leftHandBack: {
  26753. height: math.unit(0.938, "feet"),
  26754. name: "Left Hand (Back)",
  26755. image: {
  26756. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26757. }
  26758. },
  26759. leftHandFront: {
  26760. height: math.unit(0.938, "feet"),
  26761. name: "Left Hand (Front)",
  26762. image: {
  26763. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26764. }
  26765. },
  26766. rightHandBack: {
  26767. height: math.unit(0.95, "feet"),
  26768. name: "Right Hand (Back)",
  26769. image: {
  26770. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26771. }
  26772. },
  26773. rightHandFront: {
  26774. height: math.unit(0.95, "feet"),
  26775. name: "Right Hand (Front)",
  26776. image: {
  26777. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26778. }
  26779. },
  26780. },
  26781. [
  26782. {
  26783. name: "Normal",
  26784. height: math.unit(6 + 4 / 12, "feet"),
  26785. default: true
  26786. },
  26787. ]
  26788. ))
  26789. characterMakers.push(() => makeCharacter(
  26790. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26791. {
  26792. front: {
  26793. height: math.unit(6, "feet"),
  26794. weight: math.unit(320, "lb"),
  26795. name: "Front",
  26796. image: {
  26797. source: "./media/characters/balina-mejeri/front.svg",
  26798. extra: 517 / 488,
  26799. bottom: 44.2 / 561
  26800. }
  26801. },
  26802. },
  26803. [
  26804. {
  26805. name: "Normal",
  26806. height: math.unit(6 + 4 / 12, "feet")
  26807. },
  26808. {
  26809. name: "Business",
  26810. height: math.unit(155, "feet"),
  26811. default: true
  26812. },
  26813. ]
  26814. ))
  26815. characterMakers.push(() => makeCharacter(
  26816. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26817. {
  26818. kneeling: {
  26819. height: math.unit(6 + 4 / 12, "feet"),
  26820. weight: math.unit(300 * 20, "lb"),
  26821. name: "Kneeling",
  26822. image: {
  26823. source: "./media/characters/balbarian/kneeling.svg",
  26824. extra: 922 / 862,
  26825. bottom: 42.4 / 965
  26826. }
  26827. },
  26828. },
  26829. [
  26830. {
  26831. name: "Normal",
  26832. height: math.unit(6 + 4 / 12, "feet")
  26833. },
  26834. {
  26835. name: "Treasured",
  26836. height: math.unit(18 + 9 / 12, "feet"),
  26837. default: true
  26838. },
  26839. {
  26840. name: "Macro",
  26841. height: math.unit(900, "feet")
  26842. },
  26843. ]
  26844. ))
  26845. characterMakers.push(() => makeCharacter(
  26846. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26847. {
  26848. front: {
  26849. height: math.unit(6 + 4 / 12, "feet"),
  26850. weight: math.unit(325, "lb"),
  26851. name: "Front",
  26852. image: {
  26853. source: "./media/characters/balina-amarini/front.svg",
  26854. extra: 415 / 403,
  26855. bottom: 19 / 433.4
  26856. }
  26857. },
  26858. back: {
  26859. height: math.unit(6 + 4 / 12, "feet"),
  26860. weight: math.unit(325, "lb"),
  26861. name: "Back",
  26862. image: {
  26863. source: "./media/characters/balina-amarini/back.svg",
  26864. extra: 415 / 403,
  26865. bottom: 13.5 / 432
  26866. }
  26867. },
  26868. overdrive: {
  26869. height: math.unit(6 + 4 / 12, "feet"),
  26870. weight: math.unit(400, "lb"),
  26871. name: "Overdrive",
  26872. image: {
  26873. source: "./media/characters/balina-amarini/overdrive.svg",
  26874. extra: 269 / 259,
  26875. bottom: 12 / 282
  26876. }
  26877. },
  26878. },
  26879. [
  26880. {
  26881. name: "Boom",
  26882. height: math.unit(9 + 10 / 12, "feet"),
  26883. default: true
  26884. },
  26885. {
  26886. name: "Macro",
  26887. height: math.unit(280, "feet")
  26888. },
  26889. ]
  26890. ))
  26891. characterMakers.push(() => makeCharacter(
  26892. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26893. {
  26894. goddess: {
  26895. height: math.unit(600, "feet"),
  26896. weight: math.unit(2000000, "tons"),
  26897. name: "Goddess",
  26898. image: {
  26899. source: "./media/characters/lady-kubwa/goddess.svg",
  26900. extra: 1240.5 / 1223,
  26901. bottom: 22 / 1263
  26902. }
  26903. },
  26904. goddesser: {
  26905. height: math.unit(900, "feet"),
  26906. weight: math.unit(20000000, "lb"),
  26907. name: "Goddess-er",
  26908. image: {
  26909. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26910. extra: 899 / 888,
  26911. bottom: 12.6 / 912
  26912. }
  26913. },
  26914. },
  26915. [
  26916. {
  26917. name: "Macro",
  26918. height: math.unit(600, "feet"),
  26919. default: true
  26920. },
  26921. {
  26922. name: "Megamacro",
  26923. height: math.unit(250, "miles")
  26924. },
  26925. ]
  26926. ))
  26927. characterMakers.push(() => makeCharacter(
  26928. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26929. {
  26930. front: {
  26931. height: math.unit(7 + 7 / 12, "feet"),
  26932. weight: math.unit(250, "lb"),
  26933. name: "Front",
  26934. image: {
  26935. source: "./media/characters/tala-grovehorn/front.svg",
  26936. extra: 2636 / 2525,
  26937. bottom: 147 / 2781
  26938. }
  26939. },
  26940. back: {
  26941. height: math.unit(7 + 7 / 12, "feet"),
  26942. weight: math.unit(250, "lb"),
  26943. name: "Back",
  26944. image: {
  26945. source: "./media/characters/tala-grovehorn/back.svg",
  26946. extra: 2635 / 2539,
  26947. bottom: 100 / 2732.8
  26948. }
  26949. },
  26950. mouth: {
  26951. height: math.unit(1.15, "feet"),
  26952. name: "Mouth",
  26953. image: {
  26954. source: "./media/characters/tala-grovehorn/mouth.svg"
  26955. }
  26956. },
  26957. dick: {
  26958. height: math.unit(2.36, "feet"),
  26959. name: "Dick",
  26960. image: {
  26961. source: "./media/characters/tala-grovehorn/dick.svg"
  26962. }
  26963. },
  26964. slit: {
  26965. height: math.unit(0.61, "feet"),
  26966. name: "Slit",
  26967. image: {
  26968. source: "./media/characters/tala-grovehorn/slit.svg"
  26969. }
  26970. },
  26971. },
  26972. [
  26973. ]
  26974. ))
  26975. characterMakers.push(() => makeCharacter(
  26976. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26977. {
  26978. front: {
  26979. height: math.unit(7 + 7 / 12, "feet"),
  26980. weight: math.unit(225, "lb"),
  26981. name: "Front",
  26982. image: {
  26983. source: "./media/characters/epona/front.svg",
  26984. extra: 2445 / 2290,
  26985. bottom: 251 / 2696
  26986. }
  26987. },
  26988. back: {
  26989. height: math.unit(7 + 7 / 12, "feet"),
  26990. weight: math.unit(225, "lb"),
  26991. name: "Back",
  26992. image: {
  26993. source: "./media/characters/epona/back.svg",
  26994. extra: 2546 / 2408,
  26995. bottom: 44 / 2589
  26996. }
  26997. },
  26998. genitals: {
  26999. height: math.unit(1.5, "feet"),
  27000. name: "Genitals",
  27001. image: {
  27002. source: "./media/characters/epona/genitals.svg"
  27003. }
  27004. },
  27005. },
  27006. [
  27007. {
  27008. name: "Normal",
  27009. height: math.unit(7 + 7 / 12, "feet"),
  27010. default: true
  27011. },
  27012. ]
  27013. ))
  27014. characterMakers.push(() => makeCharacter(
  27015. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27016. {
  27017. front: {
  27018. height: math.unit(7, "feet"),
  27019. weight: math.unit(518, "lb"),
  27020. name: "Front",
  27021. image: {
  27022. source: "./media/characters/avia-bloodbourn/front.svg",
  27023. extra: 1466 / 1350,
  27024. bottom: 65 / 1527
  27025. }
  27026. },
  27027. },
  27028. [
  27029. ]
  27030. ))
  27031. characterMakers.push(() => makeCharacter(
  27032. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27033. {
  27034. front: {
  27035. height: math.unit(9.35, "feet"),
  27036. weight: math.unit(600, "lb"),
  27037. name: "Front",
  27038. image: {
  27039. source: "./media/characters/amera/front.svg",
  27040. extra: 891 / 818,
  27041. bottom: 30 / 922.7
  27042. }
  27043. },
  27044. back: {
  27045. height: math.unit(9.35, "feet"),
  27046. weight: math.unit(600, "lb"),
  27047. name: "Back",
  27048. image: {
  27049. source: "./media/characters/amera/back.svg",
  27050. extra: 876 / 824,
  27051. bottom: 6.8 / 884
  27052. }
  27053. },
  27054. dick: {
  27055. height: math.unit(2.14, "feet"),
  27056. name: "Dick",
  27057. image: {
  27058. source: "./media/characters/amera/dick.svg"
  27059. }
  27060. },
  27061. },
  27062. [
  27063. {
  27064. name: "Normal",
  27065. height: math.unit(9.35, "feet"),
  27066. default: true
  27067. },
  27068. ]
  27069. ))
  27070. characterMakers.push(() => makeCharacter(
  27071. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27072. {
  27073. kneeling: {
  27074. height: math.unit(3 + 4 / 12, "feet"),
  27075. weight: math.unit(90, "lb"),
  27076. name: "Kneeling",
  27077. image: {
  27078. source: "./media/characters/rosewen/kneeling.svg",
  27079. extra: 1835 / 1571,
  27080. bottom: 27.7 / 1862
  27081. }
  27082. },
  27083. },
  27084. [
  27085. {
  27086. name: "Normal",
  27087. height: math.unit(3 + 4 / 12, "feet"),
  27088. default: true
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27094. {
  27095. front: {
  27096. height: math.unit(5 + 10 / 12, "feet"),
  27097. weight: math.unit(200, "lb"),
  27098. name: "Front",
  27099. image: {
  27100. source: "./media/characters/sabah/front.svg",
  27101. extra: 849 / 763,
  27102. bottom: 33.9 / 881
  27103. }
  27104. },
  27105. },
  27106. [
  27107. {
  27108. name: "Normal",
  27109. height: math.unit(5 + 10 / 12, "feet"),
  27110. default: true
  27111. },
  27112. ]
  27113. ))
  27114. characterMakers.push(() => makeCharacter(
  27115. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27116. {
  27117. front: {
  27118. height: math.unit(3 + 5 / 12, "feet"),
  27119. weight: math.unit(40, "kg"),
  27120. name: "Front",
  27121. image: {
  27122. source: "./media/characters/purple-flame/front.svg",
  27123. extra: 1577 / 1412,
  27124. bottom: 97 / 1694
  27125. }
  27126. },
  27127. frontDressed: {
  27128. height: math.unit(3 + 5 / 12, "feet"),
  27129. weight: math.unit(40, "kg"),
  27130. name: "Front (Dressed)",
  27131. image: {
  27132. source: "./media/characters/purple-flame/front-dressed.svg",
  27133. extra: 1577 / 1412,
  27134. bottom: 97 / 1694
  27135. }
  27136. },
  27137. headphones: {
  27138. height: math.unit(0.85, "feet"),
  27139. name: "Headphones",
  27140. image: {
  27141. source: "./media/characters/purple-flame/headphones.svg"
  27142. }
  27143. },
  27144. },
  27145. [
  27146. {
  27147. name: "Really Small",
  27148. height: math.unit(5, "cm")
  27149. },
  27150. {
  27151. name: "Micro",
  27152. height: math.unit(1 + 5 / 12, "feet")
  27153. },
  27154. {
  27155. name: "Normal",
  27156. height: math.unit(3 + 5 / 12, "feet"),
  27157. default: true
  27158. },
  27159. {
  27160. name: "Minimacro",
  27161. height: math.unit(125, "feet")
  27162. },
  27163. {
  27164. name: "Macro",
  27165. height: math.unit(0.5, "miles")
  27166. },
  27167. {
  27168. name: "Megamacro",
  27169. height: math.unit(50, "miles")
  27170. },
  27171. {
  27172. name: "Gigantic",
  27173. height: math.unit(750, "miles")
  27174. },
  27175. {
  27176. name: "Planetary",
  27177. height: math.unit(15000, "miles")
  27178. },
  27179. ]
  27180. ))
  27181. characterMakers.push(() => makeCharacter(
  27182. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27183. {
  27184. front: {
  27185. height: math.unit(14, "feet"),
  27186. weight: math.unit(959, "lb"),
  27187. name: "Front",
  27188. image: {
  27189. source: "./media/characters/arsenal/front.svg",
  27190. extra: 2357 / 2157,
  27191. bottom: 93 / 2458
  27192. }
  27193. },
  27194. },
  27195. [
  27196. {
  27197. name: "Normal",
  27198. height: math.unit(14, "feet"),
  27199. default: true
  27200. },
  27201. ]
  27202. ))
  27203. characterMakers.push(() => makeCharacter(
  27204. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27205. {
  27206. front: {
  27207. height: math.unit(6, "feet"),
  27208. weight: math.unit(150, "lb"),
  27209. name: "Front",
  27210. image: {
  27211. source: "./media/characters/adira/front.svg",
  27212. extra: 1078 / 1029,
  27213. bottom: 87 / 1166
  27214. }
  27215. },
  27216. },
  27217. [
  27218. {
  27219. name: "Micro",
  27220. height: math.unit(4, "inches"),
  27221. default: true
  27222. },
  27223. {
  27224. name: "Macro",
  27225. height: math.unit(50, "feet")
  27226. },
  27227. ]
  27228. ))
  27229. characterMakers.push(() => makeCharacter(
  27230. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27231. {
  27232. front: {
  27233. height: math.unit(16, "feet"),
  27234. weight: math.unit(1000, "lb"),
  27235. name: "Front",
  27236. image: {
  27237. source: "./media/characters/grim/front.svg",
  27238. extra: 622 / 614,
  27239. bottom: 18.1 / 642
  27240. }
  27241. },
  27242. back: {
  27243. height: math.unit(16, "feet"),
  27244. weight: math.unit(1000, "lb"),
  27245. name: "Back",
  27246. image: {
  27247. source: "./media/characters/grim/back.svg",
  27248. extra: 610.6 / 602,
  27249. bottom: 40.8 / 652
  27250. }
  27251. },
  27252. hunched: {
  27253. height: math.unit(9.75, "feet"),
  27254. weight: math.unit(1000, "lb"),
  27255. name: "Hunched",
  27256. image: {
  27257. source: "./media/characters/grim/hunched.svg",
  27258. extra: 304 / 297,
  27259. bottom: 35.4 / 394
  27260. }
  27261. },
  27262. },
  27263. [
  27264. {
  27265. name: "Normal",
  27266. height: math.unit(16, "feet"),
  27267. default: true
  27268. },
  27269. ]
  27270. ))
  27271. characterMakers.push(() => makeCharacter(
  27272. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27273. {
  27274. front: {
  27275. height: math.unit(2.3, "meters"),
  27276. weight: math.unit(300, "lb"),
  27277. name: "Front",
  27278. image: {
  27279. source: "./media/characters/sinja/front-sfw.svg",
  27280. extra: 1393 / 1294,
  27281. bottom: 70 / 1463
  27282. }
  27283. },
  27284. frontNsfw: {
  27285. height: math.unit(2.3, "meters"),
  27286. weight: math.unit(300, "lb"),
  27287. name: "Front (NSFW)",
  27288. image: {
  27289. source: "./media/characters/sinja/front-nsfw.svg",
  27290. extra: 1393 / 1294,
  27291. bottom: 70 / 1463
  27292. }
  27293. },
  27294. back: {
  27295. height: math.unit(2.3, "meters"),
  27296. weight: math.unit(300, "lb"),
  27297. name: "Back",
  27298. image: {
  27299. source: "./media/characters/sinja/back.svg",
  27300. extra: 1393 / 1294,
  27301. bottom: 70 / 1463
  27302. }
  27303. },
  27304. head: {
  27305. height: math.unit(1.771, "feet"),
  27306. name: "Head",
  27307. image: {
  27308. source: "./media/characters/sinja/head.svg"
  27309. }
  27310. },
  27311. slit: {
  27312. height: math.unit(0.8, "feet"),
  27313. name: "Slit",
  27314. image: {
  27315. source: "./media/characters/sinja/slit.svg"
  27316. }
  27317. },
  27318. },
  27319. [
  27320. {
  27321. name: "Normal",
  27322. height: math.unit(2.3, "meters")
  27323. },
  27324. {
  27325. name: "Macro",
  27326. height: math.unit(91, "meters"),
  27327. default: true
  27328. },
  27329. {
  27330. name: "Megamacro",
  27331. height: math.unit(91440, "meters")
  27332. },
  27333. {
  27334. name: "Gigamacro",
  27335. height: math.unit(60960000, "meters")
  27336. },
  27337. {
  27338. name: "Teramacro",
  27339. height: math.unit(9144000000, "meters")
  27340. },
  27341. ]
  27342. ))
  27343. characterMakers.push(() => makeCharacter(
  27344. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27345. {
  27346. front: {
  27347. height: math.unit(1.7, "meters"),
  27348. weight: math.unit(130, "lb"),
  27349. name: "Front",
  27350. image: {
  27351. source: "./media/characters/kyu/front.svg",
  27352. extra: 415 / 395,
  27353. bottom: 5 / 420
  27354. }
  27355. },
  27356. head: {
  27357. height: math.unit(1.75, "feet"),
  27358. name: "Head",
  27359. image: {
  27360. source: "./media/characters/kyu/head.svg"
  27361. }
  27362. },
  27363. foot: {
  27364. height: math.unit(0.81, "feet"),
  27365. name: "Foot",
  27366. image: {
  27367. source: "./media/characters/kyu/foot.svg"
  27368. }
  27369. },
  27370. },
  27371. [
  27372. {
  27373. name: "Normal",
  27374. height: math.unit(1.7, "meters")
  27375. },
  27376. {
  27377. name: "Macro",
  27378. height: math.unit(131, "feet"),
  27379. default: true
  27380. },
  27381. {
  27382. name: "Megamacro",
  27383. height: math.unit(91440, "meters")
  27384. },
  27385. {
  27386. name: "Gigamacro",
  27387. height: math.unit(60960000, "meters")
  27388. },
  27389. {
  27390. name: "Teramacro",
  27391. height: math.unit(9144000000, "meters")
  27392. },
  27393. ]
  27394. ))
  27395. characterMakers.push(() => makeCharacter(
  27396. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27397. {
  27398. front: {
  27399. height: math.unit(7 + 1 / 12, "feet"),
  27400. weight: math.unit(250, "lb"),
  27401. name: "Front",
  27402. image: {
  27403. source: "./media/characters/joey/front.svg",
  27404. extra: 1791 / 1537,
  27405. bottom: 28 / 1816
  27406. }
  27407. },
  27408. },
  27409. [
  27410. {
  27411. name: "Micro",
  27412. height: math.unit(3, "inches")
  27413. },
  27414. {
  27415. name: "Normal",
  27416. height: math.unit(7 + 1 / 12, "feet"),
  27417. default: true
  27418. },
  27419. ]
  27420. ))
  27421. characterMakers.push(() => makeCharacter(
  27422. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27423. {
  27424. front: {
  27425. height: math.unit(165, "cm"),
  27426. weight: math.unit(140, "lb"),
  27427. name: "Front",
  27428. image: {
  27429. source: "./media/characters/sam-evans/front.svg",
  27430. extra: 3417 / 3230,
  27431. bottom: 41.3 / 3417
  27432. }
  27433. },
  27434. frontSixTails: {
  27435. height: math.unit(165, "cm"),
  27436. weight: math.unit(140, "lb"),
  27437. name: "Front-six-tails",
  27438. image: {
  27439. source: "./media/characters/sam-evans/front-six-tails.svg",
  27440. extra: 3417 / 3230,
  27441. bottom: 41.3 / 3417
  27442. }
  27443. },
  27444. back: {
  27445. height: math.unit(165, "cm"),
  27446. weight: math.unit(140, "lb"),
  27447. name: "Back",
  27448. image: {
  27449. source: "./media/characters/sam-evans/back.svg",
  27450. extra: 3227 / 3032,
  27451. bottom: 6.8 / 3234
  27452. }
  27453. },
  27454. face: {
  27455. height: math.unit(0.68, "feet"),
  27456. name: "Face",
  27457. image: {
  27458. source: "./media/characters/sam-evans/face.svg"
  27459. }
  27460. },
  27461. },
  27462. [
  27463. {
  27464. name: "Normal",
  27465. height: math.unit(165, "cm"),
  27466. default: true
  27467. },
  27468. {
  27469. name: "Macro",
  27470. height: math.unit(100, "meters")
  27471. },
  27472. {
  27473. name: "Macro+",
  27474. height: math.unit(800, "meters")
  27475. },
  27476. {
  27477. name: "Macro++",
  27478. height: math.unit(3, "km")
  27479. },
  27480. {
  27481. name: "Macro+++",
  27482. height: math.unit(30, "km")
  27483. },
  27484. ]
  27485. ))
  27486. characterMakers.push(() => makeCharacter(
  27487. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27488. {
  27489. front: {
  27490. height: math.unit(10, "feet"),
  27491. weight: math.unit(750, "lb"),
  27492. name: "Front",
  27493. image: {
  27494. source: "./media/characters/juliet-a/front.svg",
  27495. extra: 1766 / 1720,
  27496. bottom: 43 / 1809
  27497. }
  27498. },
  27499. back: {
  27500. height: math.unit(10, "feet"),
  27501. weight: math.unit(750, "lb"),
  27502. name: "Back",
  27503. image: {
  27504. source: "./media/characters/juliet-a/back.svg",
  27505. extra: 1781 / 1734,
  27506. bottom: 35 / 1810,
  27507. }
  27508. },
  27509. },
  27510. [
  27511. {
  27512. name: "Normal",
  27513. height: math.unit(10, "feet"),
  27514. default: true
  27515. },
  27516. {
  27517. name: "Dragon Form",
  27518. height: math.unit(250, "feet")
  27519. },
  27520. {
  27521. name: "Macro",
  27522. height: math.unit(1000, "feet")
  27523. },
  27524. {
  27525. name: "Megamacro",
  27526. height: math.unit(10000, "feet")
  27527. }
  27528. ]
  27529. ))
  27530. characterMakers.push(() => makeCharacter(
  27531. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27532. {
  27533. regular: {
  27534. height: math.unit(7 + 3 / 12, "feet"),
  27535. weight: math.unit(260, "lb"),
  27536. name: "Regular",
  27537. image: {
  27538. source: "./media/characters/wild/regular.svg",
  27539. extra: 97.45 / 92,
  27540. bottom: 6.8 / 104.3
  27541. }
  27542. },
  27543. biggums: {
  27544. height: math.unit(8 + 6 / 12, "feet"),
  27545. weight: math.unit(425, "lb"),
  27546. name: "Biggums",
  27547. image: {
  27548. source: "./media/characters/wild/biggums.svg",
  27549. extra: 97.45 / 92,
  27550. bottom: 7.5 / 132.34
  27551. }
  27552. },
  27553. mawRegular: {
  27554. height: math.unit(1.24, "feet"),
  27555. name: "Maw (Regular)",
  27556. image: {
  27557. source: "./media/characters/wild/maw.svg"
  27558. }
  27559. },
  27560. mawBiggums: {
  27561. height: math.unit(1.47, "feet"),
  27562. name: "Maw (Biggums)",
  27563. image: {
  27564. source: "./media/characters/wild/maw.svg"
  27565. }
  27566. },
  27567. },
  27568. [
  27569. {
  27570. name: "Normal",
  27571. height: math.unit(7 + 3 / 12, "feet"),
  27572. default: true
  27573. },
  27574. ]
  27575. ))
  27576. characterMakers.push(() => makeCharacter(
  27577. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27578. {
  27579. front: {
  27580. height: math.unit(2.5, "meters"),
  27581. weight: math.unit(200, "kg"),
  27582. name: "Front",
  27583. image: {
  27584. source: "./media/characters/vidar/front.svg",
  27585. extra: 2994 / 2795,
  27586. bottom: 56 / 3061
  27587. }
  27588. },
  27589. back: {
  27590. height: math.unit(2.5, "meters"),
  27591. weight: math.unit(200, "kg"),
  27592. name: "Back",
  27593. image: {
  27594. source: "./media/characters/vidar/back.svg",
  27595. extra: 3131 / 2928,
  27596. bottom: 13.5 / 3141.5
  27597. }
  27598. },
  27599. feral: {
  27600. height: math.unit(2.5, "meters"),
  27601. weight: math.unit(2000, "kg"),
  27602. name: "Feral",
  27603. image: {
  27604. source: "./media/characters/vidar/feral.svg",
  27605. extra: 2790 / 1765,
  27606. bottom: 6 / 2796
  27607. }
  27608. },
  27609. },
  27610. [
  27611. {
  27612. name: "Normal",
  27613. height: math.unit(2.5, "meters"),
  27614. default: true
  27615. },
  27616. {
  27617. name: "Macro",
  27618. height: math.unit(100, "meters")
  27619. },
  27620. ]
  27621. ))
  27622. characterMakers.push(() => makeCharacter(
  27623. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27624. {
  27625. front: {
  27626. height: math.unit(5 + 9 / 12, "feet"),
  27627. weight: math.unit(120, "lb"),
  27628. name: "Front",
  27629. image: {
  27630. source: "./media/characters/ash/front.svg",
  27631. extra: 2189 / 1961,
  27632. bottom: 5.2 / 2194
  27633. }
  27634. },
  27635. },
  27636. [
  27637. {
  27638. name: "Normal",
  27639. height: math.unit(5 + 9 / 12, "feet"),
  27640. default: true
  27641. },
  27642. ]
  27643. ))
  27644. characterMakers.push(() => makeCharacter(
  27645. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27646. {
  27647. front: {
  27648. height: math.unit(9, "feet"),
  27649. weight: math.unit(10000, "lb"),
  27650. name: "Front",
  27651. image: {
  27652. source: "./media/characters/gygabite/front.svg",
  27653. bottom: 31.7 / 537.8,
  27654. extra: 505 / 370
  27655. }
  27656. },
  27657. },
  27658. [
  27659. {
  27660. name: "Normal",
  27661. height: math.unit(9, "feet"),
  27662. default: true
  27663. },
  27664. ]
  27665. ))
  27666. characterMakers.push(() => makeCharacter(
  27667. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27668. {
  27669. front: {
  27670. height: math.unit(12, "feet"),
  27671. weight: math.unit(35000, "lb"),
  27672. name: "Front",
  27673. image: {
  27674. source: "./media/characters/p0tat0/front.svg",
  27675. extra: 1065 / 921,
  27676. bottom: 55.7 / 1121.25
  27677. }
  27678. },
  27679. },
  27680. [
  27681. {
  27682. name: "Normal",
  27683. height: math.unit(12, "feet"),
  27684. default: true
  27685. },
  27686. ]
  27687. ))
  27688. characterMakers.push(() => makeCharacter(
  27689. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27690. {
  27691. side: {
  27692. height: math.unit(6.5, "feet"),
  27693. weight: math.unit(800, "lb"),
  27694. name: "Side",
  27695. image: {
  27696. source: "./media/characters/dusk/side.svg",
  27697. extra: 615 / 373,
  27698. bottom: 53 / 664
  27699. }
  27700. },
  27701. sitting: {
  27702. height: math.unit(7, "feet"),
  27703. weight: math.unit(800, "lb"),
  27704. name: "Sitting",
  27705. image: {
  27706. source: "./media/characters/dusk/sitting.svg",
  27707. extra: 753 / 425,
  27708. bottom: 33 / 774
  27709. }
  27710. },
  27711. head: {
  27712. height: math.unit(6.1, "feet"),
  27713. name: "Head",
  27714. image: {
  27715. source: "./media/characters/dusk/head.svg"
  27716. }
  27717. },
  27718. },
  27719. [
  27720. {
  27721. name: "Normal",
  27722. height: math.unit(7, "feet"),
  27723. default: true
  27724. },
  27725. ]
  27726. ))
  27727. characterMakers.push(() => makeCharacter(
  27728. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27729. {
  27730. front: {
  27731. height: math.unit(15, "feet"),
  27732. weight: math.unit(7000, "lb"),
  27733. name: "Front",
  27734. image: {
  27735. source: "./media/characters/jay-direwolf/front.svg",
  27736. extra: 1810 / 1732,
  27737. bottom: 66 / 1892
  27738. }
  27739. },
  27740. },
  27741. [
  27742. {
  27743. name: "Normal",
  27744. height: math.unit(15, "feet"),
  27745. default: true
  27746. },
  27747. ]
  27748. ))
  27749. characterMakers.push(() => makeCharacter(
  27750. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27751. {
  27752. front: {
  27753. height: math.unit(4 + 9 / 12, "feet"),
  27754. weight: math.unit(130, "lb"),
  27755. name: "Front",
  27756. image: {
  27757. source: "./media/characters/anchovie/front.svg",
  27758. extra: 382 / 350,
  27759. bottom: 25 / 409
  27760. }
  27761. },
  27762. back: {
  27763. height: math.unit(4 + 9 / 12, "feet"),
  27764. weight: math.unit(130, "lb"),
  27765. name: "Back",
  27766. image: {
  27767. source: "./media/characters/anchovie/back.svg",
  27768. extra: 385 / 352,
  27769. bottom: 16.6 / 402
  27770. }
  27771. },
  27772. frontDressed: {
  27773. height: math.unit(4 + 9 / 12, "feet"),
  27774. weight: math.unit(130, "lb"),
  27775. name: "Front (Dressed)",
  27776. image: {
  27777. source: "./media/characters/anchovie/front-dressed.svg",
  27778. extra: 382 / 350,
  27779. bottom: 25 / 409
  27780. }
  27781. },
  27782. backDressed: {
  27783. height: math.unit(4 + 9 / 12, "feet"),
  27784. weight: math.unit(130, "lb"),
  27785. name: "Back (Dressed)",
  27786. image: {
  27787. source: "./media/characters/anchovie/back-dressed.svg",
  27788. extra: 385 / 352,
  27789. bottom: 16.6 / 402
  27790. }
  27791. },
  27792. },
  27793. [
  27794. {
  27795. name: "Micro",
  27796. height: math.unit(6.4, "inches")
  27797. },
  27798. {
  27799. name: "Normal",
  27800. height: math.unit(4 + 9 / 12, "feet"),
  27801. default: true
  27802. },
  27803. ]
  27804. ))
  27805. characterMakers.push(() => makeCharacter(
  27806. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27807. {
  27808. front: {
  27809. height: math.unit(2, "meters"),
  27810. weight: math.unit(180, "lb"),
  27811. name: "Front",
  27812. image: {
  27813. source: "./media/characters/acidrenamon/front.svg",
  27814. extra: 987 / 890,
  27815. bottom: 22.8 / 1009
  27816. }
  27817. },
  27818. back: {
  27819. height: math.unit(2, "meters"),
  27820. weight: math.unit(180, "lb"),
  27821. name: "Back",
  27822. image: {
  27823. source: "./media/characters/acidrenamon/back.svg",
  27824. extra: 983 / 891,
  27825. bottom: 8.4 / 992
  27826. }
  27827. },
  27828. head: {
  27829. height: math.unit(1.92, "feet"),
  27830. name: "Head",
  27831. image: {
  27832. source: "./media/characters/acidrenamon/head.svg"
  27833. }
  27834. },
  27835. rump: {
  27836. height: math.unit(1.72, "feet"),
  27837. name: "Rump",
  27838. image: {
  27839. source: "./media/characters/acidrenamon/rump.svg"
  27840. }
  27841. },
  27842. tail: {
  27843. height: math.unit(4.2, "feet"),
  27844. name: "Tail",
  27845. image: {
  27846. source: "./media/characters/acidrenamon/tail.svg"
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Normal",
  27853. height: math.unit(2, "meters"),
  27854. default: true
  27855. },
  27856. {
  27857. name: "Minimacro",
  27858. height: math.unit(7, "meters")
  27859. },
  27860. {
  27861. name: "Macro",
  27862. height: math.unit(200, "meters")
  27863. },
  27864. {
  27865. name: "Gigamacro",
  27866. height: math.unit(0.2, "earths")
  27867. },
  27868. ]
  27869. ))
  27870. characterMakers.push(() => makeCharacter(
  27871. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27872. {
  27873. front: {
  27874. height: math.unit(152, "feet"),
  27875. name: "Front",
  27876. image: {
  27877. source: "./media/characters/kenzie-lee/front.svg",
  27878. extra: 1869/1774,
  27879. bottom: 128/1997
  27880. }
  27881. },
  27882. side: {
  27883. height: math.unit(86, "feet"),
  27884. name: "Side",
  27885. image: {
  27886. source: "./media/characters/kenzie-lee/side.svg",
  27887. extra: 930/815,
  27888. bottom: 177/1107
  27889. }
  27890. },
  27891. paw: {
  27892. height: math.unit(15, "feet"),
  27893. name: "Paw",
  27894. image: {
  27895. source: "./media/characters/kenzie-lee/paw.svg"
  27896. }
  27897. },
  27898. },
  27899. [
  27900. {
  27901. name: "Micro",
  27902. height: math.unit(1.5, "inches")
  27903. },
  27904. {
  27905. name: "Normal",
  27906. height: math.unit(152, "feet"),
  27907. default: true
  27908. },
  27909. {
  27910. name: "Megamacro",
  27911. height: math.unit(7, "miles")
  27912. },
  27913. {
  27914. name: "Gigamacro",
  27915. height: math.unit(8000, "miles")
  27916. },
  27917. ]
  27918. ))
  27919. characterMakers.push(() => makeCharacter(
  27920. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27921. {
  27922. side: {
  27923. height: math.unit(6, "feet"),
  27924. weight: math.unit(150, "lb"),
  27925. name: "Side",
  27926. image: {
  27927. source: "./media/characters/withers/side.svg",
  27928. extra: 1830 / 1728,
  27929. bottom: 96 / 1927
  27930. }
  27931. },
  27932. front: {
  27933. height: math.unit(6, "feet"),
  27934. weight: math.unit(150, "lb"),
  27935. name: "Front",
  27936. image: {
  27937. source: "./media/characters/withers/front.svg",
  27938. extra: 1514 / 1438,
  27939. bottom: 118 / 1632
  27940. }
  27941. },
  27942. },
  27943. [
  27944. {
  27945. name: "Macro",
  27946. height: math.unit(168, "feet"),
  27947. default: true
  27948. },
  27949. {
  27950. name: "Megamacro",
  27951. height: math.unit(15, "miles")
  27952. }
  27953. ]
  27954. ))
  27955. characterMakers.push(() => makeCharacter(
  27956. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27957. {
  27958. front: {
  27959. height: math.unit(6 + 7 / 12, "feet"),
  27960. weight: math.unit(250, "lb"),
  27961. name: "Front",
  27962. image: {
  27963. source: "./media/characters/nemoskii/front.svg",
  27964. extra: 2270 / 1734,
  27965. bottom: 86 / 2354
  27966. }
  27967. },
  27968. back: {
  27969. height: math.unit(6 + 7 / 12, "feet"),
  27970. weight: math.unit(250, "lb"),
  27971. name: "Back",
  27972. image: {
  27973. source: "./media/characters/nemoskii/back.svg",
  27974. extra: 1845 / 1788,
  27975. bottom: 10.5 / 1852
  27976. }
  27977. },
  27978. head: {
  27979. height: math.unit(1.31, "feet"),
  27980. name: "Head",
  27981. image: {
  27982. source: "./media/characters/nemoskii/head.svg"
  27983. }
  27984. },
  27985. },
  27986. [
  27987. {
  27988. name: "Micro",
  27989. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27990. },
  27991. {
  27992. name: "Normal",
  27993. height: math.unit(6 + 7 / 12, "feet"),
  27994. default: true
  27995. },
  27996. {
  27997. name: "Macro",
  27998. height: math.unit((6 + 7 / 12) * 150, "feet")
  27999. },
  28000. {
  28001. name: "Macro+",
  28002. height: math.unit((6 + 7 / 12) * 500, "feet")
  28003. },
  28004. {
  28005. name: "Megamacro",
  28006. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28007. },
  28008. ]
  28009. ))
  28010. characterMakers.push(() => makeCharacter(
  28011. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28012. {
  28013. front: {
  28014. height: math.unit(1, "mile"),
  28015. weight: math.unit(265261.9, "lb"),
  28016. name: "Front",
  28017. image: {
  28018. source: "./media/characters/shui/front.svg",
  28019. extra: 1633 / 1564,
  28020. bottom: 91.5 / 1726
  28021. }
  28022. },
  28023. },
  28024. [
  28025. {
  28026. name: "Macro",
  28027. height: math.unit(1, "mile"),
  28028. default: true
  28029. },
  28030. ]
  28031. ))
  28032. characterMakers.push(() => makeCharacter(
  28033. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28034. {
  28035. front: {
  28036. height: math.unit(12 + 6 / 12, "feet"),
  28037. weight: math.unit(1342, "lb"),
  28038. name: "Front",
  28039. image: {
  28040. source: "./media/characters/arokh-takakura/front.svg",
  28041. extra: 1089 / 1043,
  28042. bottom: 77.4 / 1176.7
  28043. }
  28044. },
  28045. back: {
  28046. height: math.unit(12 + 6 / 12, "feet"),
  28047. weight: math.unit(1342, "lb"),
  28048. name: "Back",
  28049. image: {
  28050. source: "./media/characters/arokh-takakura/back.svg",
  28051. extra: 1046 / 1019,
  28052. bottom: 102 / 1150
  28053. }
  28054. },
  28055. },
  28056. [
  28057. {
  28058. name: "Big",
  28059. height: math.unit(12 + 6 / 12, "feet"),
  28060. default: true
  28061. },
  28062. ]
  28063. ))
  28064. characterMakers.push(() => makeCharacter(
  28065. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28066. {
  28067. front: {
  28068. height: math.unit(5 + 6 / 12, "feet"),
  28069. weight: math.unit(150, "lb"),
  28070. name: "Front",
  28071. image: {
  28072. source: "./media/characters/theo/front.svg",
  28073. extra: 1184 / 1131,
  28074. bottom: 7.4 / 1191
  28075. }
  28076. },
  28077. },
  28078. [
  28079. {
  28080. name: "Micro",
  28081. height: math.unit(5, "inches")
  28082. },
  28083. {
  28084. name: "Normal",
  28085. height: math.unit(5 + 6 / 12, "feet"),
  28086. default: true
  28087. },
  28088. ]
  28089. ))
  28090. characterMakers.push(() => makeCharacter(
  28091. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28092. {
  28093. front: {
  28094. height: math.unit(5 + 9 / 12, "feet"),
  28095. weight: math.unit(130, "lb"),
  28096. name: "Front",
  28097. image: {
  28098. source: "./media/characters/cecelia-swift/front.svg",
  28099. extra: 502 / 484,
  28100. bottom: 23 / 523
  28101. }
  28102. },
  28103. back: {
  28104. height: math.unit(5 + 9 / 12, "feet"),
  28105. weight: math.unit(130, "lb"),
  28106. name: "Back",
  28107. image: {
  28108. source: "./media/characters/cecelia-swift/back.svg",
  28109. extra: 499 / 485,
  28110. bottom: 12 / 511
  28111. }
  28112. },
  28113. head: {
  28114. height: math.unit(0.90, "feet"),
  28115. name: "Head",
  28116. image: {
  28117. source: "./media/characters/cecelia-swift/head.svg"
  28118. }
  28119. },
  28120. rump: {
  28121. height: math.unit(1.75, "feet"),
  28122. name: "Rump",
  28123. image: {
  28124. source: "./media/characters/cecelia-swift/rump.svg"
  28125. }
  28126. },
  28127. },
  28128. [
  28129. {
  28130. name: "Normal",
  28131. height: math.unit(5 + 9 / 12, "feet"),
  28132. default: true
  28133. },
  28134. {
  28135. name: "Big",
  28136. height: math.unit(50, "feet")
  28137. },
  28138. {
  28139. name: "Macro",
  28140. height: math.unit(100, "feet")
  28141. },
  28142. {
  28143. name: "Macro+",
  28144. height: math.unit(500, "feet")
  28145. },
  28146. {
  28147. name: "Macro++",
  28148. height: math.unit(1000, "feet")
  28149. },
  28150. ]
  28151. ))
  28152. characterMakers.push(() => makeCharacter(
  28153. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28154. {
  28155. front: {
  28156. height: math.unit(6, "feet"),
  28157. weight: math.unit(150, "lb"),
  28158. name: "Front",
  28159. image: {
  28160. source: "./media/characters/kaunan/front.svg",
  28161. extra: 2890 / 2523,
  28162. bottom: 49 / 2939
  28163. }
  28164. },
  28165. },
  28166. [
  28167. {
  28168. name: "Macro",
  28169. height: math.unit(150, "feet"),
  28170. default: true
  28171. },
  28172. ]
  28173. ))
  28174. characterMakers.push(() => makeCharacter(
  28175. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28176. {
  28177. front: {
  28178. height: math.unit(175, "cm"),
  28179. weight: math.unit(60, "kg"),
  28180. name: "Front",
  28181. image: {
  28182. source: "./media/characters/fei/front.svg",
  28183. extra: 1873/1723,
  28184. bottom: 53/1926
  28185. }
  28186. },
  28187. },
  28188. [
  28189. {
  28190. name: "Mortal",
  28191. height: math.unit(175, "cm")
  28192. },
  28193. {
  28194. name: "Normal",
  28195. height: math.unit(3500, "m"),
  28196. default: true
  28197. },
  28198. {
  28199. name: "Stroll",
  28200. height: math.unit(17.5, "km")
  28201. },
  28202. {
  28203. name: "Showoff",
  28204. height: math.unit(175, "km")
  28205. },
  28206. ]
  28207. ))
  28208. characterMakers.push(() => makeCharacter(
  28209. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28210. {
  28211. front: {
  28212. height: math.unit(7, "feet"),
  28213. weight: math.unit(1000, "kg"),
  28214. name: "Front",
  28215. image: {
  28216. source: "./media/characters/edrax/front.svg",
  28217. extra: 2838 / 2550,
  28218. bottom: 130 / 2968
  28219. }
  28220. },
  28221. },
  28222. [
  28223. {
  28224. name: "Small",
  28225. height: math.unit(7, "feet")
  28226. },
  28227. {
  28228. name: "Normal",
  28229. height: math.unit(1500, "meters")
  28230. },
  28231. {
  28232. name: "Mega",
  28233. height: math.unit(12000000, "km"),
  28234. default: true
  28235. },
  28236. {
  28237. name: "Megamacro",
  28238. height: math.unit(10600000, "lightyears")
  28239. },
  28240. {
  28241. name: "Hypermacro",
  28242. height: math.unit(256, "yottameters")
  28243. },
  28244. ]
  28245. ))
  28246. characterMakers.push(() => makeCharacter(
  28247. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28248. {
  28249. front: {
  28250. height: math.unit(10, "feet"),
  28251. weight: math.unit(750, "lb"),
  28252. name: "Front",
  28253. image: {
  28254. source: "./media/characters/clove/front.svg",
  28255. extra: 1918/1751,
  28256. bottom: 52/1970
  28257. }
  28258. },
  28259. back: {
  28260. height: math.unit(10, "feet"),
  28261. weight: math.unit(750, "lb"),
  28262. name: "Back",
  28263. image: {
  28264. source: "./media/characters/clove/back.svg",
  28265. extra: 1912/1747,
  28266. bottom: 50/1962
  28267. }
  28268. },
  28269. },
  28270. [
  28271. {
  28272. name: "Normal",
  28273. height: math.unit(10, "feet"),
  28274. default: true
  28275. },
  28276. ]
  28277. ))
  28278. characterMakers.push(() => makeCharacter(
  28279. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28280. {
  28281. front: {
  28282. height: math.unit(4, "feet"),
  28283. weight: math.unit(50, "lb"),
  28284. name: "Front",
  28285. image: {
  28286. source: "./media/characters/alex-rabbit/front.svg",
  28287. extra: 507 / 458,
  28288. bottom: 18.5 / 527
  28289. }
  28290. },
  28291. back: {
  28292. height: math.unit(4, "feet"),
  28293. weight: math.unit(50, "lb"),
  28294. name: "Back",
  28295. image: {
  28296. source: "./media/characters/alex-rabbit/back.svg",
  28297. extra: 502 / 460,
  28298. bottom: 18.9 / 521
  28299. }
  28300. },
  28301. },
  28302. [
  28303. {
  28304. name: "Normal",
  28305. height: math.unit(4, "feet"),
  28306. default: true
  28307. },
  28308. ]
  28309. ))
  28310. characterMakers.push(() => makeCharacter(
  28311. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28312. {
  28313. front: {
  28314. height: math.unit(1 + 3 / 12, "feet"),
  28315. weight: math.unit(80, "lb"),
  28316. name: "Front",
  28317. image: {
  28318. source: "./media/characters/zander-rose/front.svg",
  28319. extra: 916 / 797,
  28320. bottom: 17 / 933
  28321. }
  28322. },
  28323. back: {
  28324. height: math.unit(1 + 3 / 12, "feet"),
  28325. weight: math.unit(80, "lb"),
  28326. name: "Back",
  28327. image: {
  28328. source: "./media/characters/zander-rose/back.svg",
  28329. extra: 903 / 779,
  28330. bottom: 31 / 934
  28331. }
  28332. },
  28333. },
  28334. [
  28335. {
  28336. name: "Normal",
  28337. height: math.unit(1 + 3 / 12, "feet"),
  28338. default: true
  28339. },
  28340. ]
  28341. ))
  28342. characterMakers.push(() => makeCharacter(
  28343. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28344. {
  28345. anthro: {
  28346. height: math.unit(6, "feet"),
  28347. weight: math.unit(150, "lb"),
  28348. name: "Anthro",
  28349. image: {
  28350. source: "./media/characters/razz/anthro.svg",
  28351. extra: 1437 / 1343,
  28352. bottom: 48 / 1485
  28353. }
  28354. },
  28355. feral: {
  28356. height: math.unit(6, "feet"),
  28357. weight: math.unit(150, "lb"),
  28358. name: "Feral",
  28359. image: {
  28360. source: "./media/characters/razz/feral.svg",
  28361. extra: 2569 / 1385,
  28362. bottom: 95 / 2664
  28363. }
  28364. },
  28365. },
  28366. [
  28367. {
  28368. name: "Normal",
  28369. height: math.unit(6, "feet"),
  28370. default: true
  28371. },
  28372. ]
  28373. ))
  28374. characterMakers.push(() => makeCharacter(
  28375. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28376. {
  28377. front: {
  28378. height: math.unit(9 + 4 / 12, "feet"),
  28379. weight: math.unit(500, "lb"),
  28380. name: "Front",
  28381. image: {
  28382. source: "./media/characters/morrigan/front.svg",
  28383. extra: 2707 / 2579,
  28384. bottom: 156 / 2863
  28385. }
  28386. },
  28387. },
  28388. [
  28389. {
  28390. name: "Normal",
  28391. height: math.unit(9 + 4 / 12, "feet"),
  28392. default: true
  28393. },
  28394. ]
  28395. ))
  28396. characterMakers.push(() => makeCharacter(
  28397. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28398. {
  28399. front: {
  28400. height: math.unit(5, "stories"),
  28401. weight: math.unit(4000, "lb"),
  28402. name: "Front",
  28403. image: {
  28404. source: "./media/characters/jenene/front.svg",
  28405. extra: 1780 / 1710,
  28406. bottom: 57 / 1837
  28407. }
  28408. },
  28409. },
  28410. [
  28411. {
  28412. name: "Normal",
  28413. height: math.unit(5, "stories"),
  28414. default: true
  28415. },
  28416. ]
  28417. ))
  28418. characterMakers.push(() => makeCharacter(
  28419. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28420. {
  28421. taurSfw: {
  28422. height: math.unit(10, "meters"),
  28423. weight: math.unit(17500, "kg"),
  28424. name: "Taur",
  28425. image: {
  28426. source: "./media/characters/faey/taur-sfw.svg",
  28427. extra: 1200 / 968,
  28428. bottom: 41 / 1241
  28429. }
  28430. },
  28431. chestmaw: {
  28432. height: math.unit(2.01, "meters"),
  28433. name: "Chestmaw",
  28434. image: {
  28435. source: "./media/characters/faey/chestmaw.svg"
  28436. }
  28437. },
  28438. foot: {
  28439. height: math.unit(2.43, "meters"),
  28440. name: "Foot",
  28441. image: {
  28442. source: "./media/characters/faey/foot.svg"
  28443. }
  28444. },
  28445. jaws: {
  28446. height: math.unit(1.66, "meters"),
  28447. name: "Jaws",
  28448. image: {
  28449. source: "./media/characters/faey/jaws.svg"
  28450. }
  28451. },
  28452. tongues: {
  28453. height: math.unit(2.01, "meters"),
  28454. name: "Tongues",
  28455. image: {
  28456. source: "./media/characters/faey/tongues.svg"
  28457. }
  28458. },
  28459. },
  28460. [
  28461. {
  28462. name: "Small",
  28463. height: math.unit(10, "meters"),
  28464. default: true
  28465. },
  28466. {
  28467. name: "Big",
  28468. height: math.unit(500000, "km")
  28469. },
  28470. ]
  28471. ))
  28472. characterMakers.push(() => makeCharacter(
  28473. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28474. {
  28475. front: {
  28476. height: math.unit(7, "feet"),
  28477. weight: math.unit(275, "lb"),
  28478. name: "Front",
  28479. image: {
  28480. source: "./media/characters/roku/front.svg",
  28481. extra: 903 / 878,
  28482. bottom: 37 / 940
  28483. }
  28484. },
  28485. },
  28486. [
  28487. {
  28488. name: "Normal",
  28489. height: math.unit(7, "feet"),
  28490. default: true
  28491. },
  28492. {
  28493. name: "Macro",
  28494. height: math.unit(500, "feet")
  28495. },
  28496. {
  28497. name: "Megamacro",
  28498. height: math.unit(200, "miles")
  28499. },
  28500. ]
  28501. ))
  28502. characterMakers.push(() => makeCharacter(
  28503. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28504. {
  28505. front: {
  28506. height: math.unit(6 + 2 / 12, "feet"),
  28507. weight: math.unit(150, "lb"),
  28508. name: "Front",
  28509. image: {
  28510. source: "./media/characters/lira/front.svg",
  28511. extra: 1727 / 1605,
  28512. bottom: 26 / 1753
  28513. }
  28514. },
  28515. back: {
  28516. height: math.unit(6 + 2 / 12, "feet"),
  28517. weight: math.unit(150, "lb"),
  28518. name: "Back",
  28519. image: {
  28520. source: "./media/characters/lira/back.svg",
  28521. extra: 1713/1621,
  28522. bottom: 20/1733
  28523. }
  28524. },
  28525. hand: {
  28526. height: math.unit(0.75, "feet"),
  28527. name: "Hand",
  28528. image: {
  28529. source: "./media/characters/lira/hand.svg"
  28530. }
  28531. },
  28532. maw: {
  28533. height: math.unit(0.65, "feet"),
  28534. name: "Maw",
  28535. image: {
  28536. source: "./media/characters/lira/maw.svg"
  28537. }
  28538. },
  28539. pawDigi: {
  28540. height: math.unit(1.6, "feet"),
  28541. name: "Paw Digi",
  28542. image: {
  28543. source: "./media/characters/lira/paw-digi.svg"
  28544. }
  28545. },
  28546. pawPlanti: {
  28547. height: math.unit(1.4, "feet"),
  28548. name: "Paw Planti",
  28549. image: {
  28550. source: "./media/characters/lira/paw-planti.svg"
  28551. }
  28552. },
  28553. },
  28554. [
  28555. {
  28556. name: "Normal",
  28557. height: math.unit(6 + 2 / 12, "feet"),
  28558. default: true
  28559. },
  28560. {
  28561. name: "Macro",
  28562. height: math.unit(100, "feet")
  28563. },
  28564. {
  28565. name: "Macro²",
  28566. height: math.unit(1600, "feet")
  28567. },
  28568. {
  28569. name: "Planetary",
  28570. height: math.unit(20, "earths")
  28571. },
  28572. ]
  28573. ))
  28574. characterMakers.push(() => makeCharacter(
  28575. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28576. {
  28577. front: {
  28578. height: math.unit(6, "feet"),
  28579. weight: math.unit(150, "lb"),
  28580. name: "Front",
  28581. image: {
  28582. source: "./media/characters/hadjet/front.svg",
  28583. extra: 1480 / 1346,
  28584. bottom: 26 / 1506
  28585. }
  28586. },
  28587. frontNsfw: {
  28588. height: math.unit(6, "feet"),
  28589. weight: math.unit(150, "lb"),
  28590. name: "Front (NSFW)",
  28591. image: {
  28592. source: "./media/characters/hadjet/front-nsfw.svg",
  28593. extra: 1440 / 1358,
  28594. bottom: 52 / 1492
  28595. }
  28596. },
  28597. },
  28598. [
  28599. {
  28600. name: "Macro",
  28601. height: math.unit(10, "stories"),
  28602. default: true
  28603. },
  28604. {
  28605. name: "Megamacro",
  28606. height: math.unit(1.5, "miles")
  28607. },
  28608. {
  28609. name: "Megamacro+",
  28610. height: math.unit(5, "miles")
  28611. },
  28612. ]
  28613. ))
  28614. characterMakers.push(() => makeCharacter(
  28615. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28616. {
  28617. side: {
  28618. height: math.unit(106, "feet"),
  28619. weight: math.unit(500, "tonnes"),
  28620. name: "Side",
  28621. image: {
  28622. source: "./media/characters/kodran/side.svg",
  28623. extra: 553 / 480,
  28624. bottom: 33 / 586
  28625. }
  28626. },
  28627. front: {
  28628. height: math.unit(132, "feet"),
  28629. weight: math.unit(500, "tonnes"),
  28630. name: "Front",
  28631. image: {
  28632. source: "./media/characters/kodran/front.svg",
  28633. extra: 667 / 643,
  28634. bottom: 42 / 709
  28635. }
  28636. },
  28637. flying: {
  28638. height: math.unit(350, "feet"),
  28639. weight: math.unit(500, "tonnes"),
  28640. name: "Flying",
  28641. image: {
  28642. source: "./media/characters/kodran/flying.svg"
  28643. }
  28644. },
  28645. foot: {
  28646. height: math.unit(33, "feet"),
  28647. name: "Foot",
  28648. image: {
  28649. source: "./media/characters/kodran/foot.svg"
  28650. }
  28651. },
  28652. footFront: {
  28653. height: math.unit(19, "feet"),
  28654. name: "Foot (Front)",
  28655. image: {
  28656. source: "./media/characters/kodran/foot-front.svg",
  28657. extra: 261 / 261,
  28658. bottom: 91 / 352
  28659. }
  28660. },
  28661. headFront: {
  28662. height: math.unit(53, "feet"),
  28663. name: "Head (Front)",
  28664. image: {
  28665. source: "./media/characters/kodran/head-front.svg"
  28666. }
  28667. },
  28668. headSide: {
  28669. height: math.unit(65, "feet"),
  28670. name: "Head (Side)",
  28671. image: {
  28672. source: "./media/characters/kodran/head-side.svg"
  28673. }
  28674. },
  28675. throat: {
  28676. height: math.unit(79, "feet"),
  28677. name: "Throat",
  28678. image: {
  28679. source: "./media/characters/kodran/throat.svg"
  28680. }
  28681. },
  28682. },
  28683. [
  28684. {
  28685. name: "Large",
  28686. height: math.unit(106, "feet"),
  28687. default: true
  28688. },
  28689. ]
  28690. ))
  28691. characterMakers.push(() => makeCharacter(
  28692. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28693. {
  28694. side: {
  28695. height: math.unit(11, "feet"),
  28696. weight: math.unit(150, "lb"),
  28697. name: "Side",
  28698. image: {
  28699. source: "./media/characters/pyxaron/side.svg",
  28700. extra: 305 / 195,
  28701. bottom: 17 / 322
  28702. }
  28703. },
  28704. },
  28705. [
  28706. {
  28707. name: "Normal",
  28708. height: math.unit(11, "feet"),
  28709. default: true
  28710. },
  28711. ]
  28712. ))
  28713. characterMakers.push(() => makeCharacter(
  28714. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28715. {
  28716. front: {
  28717. height: math.unit(6, "feet"),
  28718. weight: math.unit(150, "lb"),
  28719. name: "Front",
  28720. image: {
  28721. source: "./media/characters/meep/front.svg",
  28722. extra: 88 / 80,
  28723. bottom: 6 / 94
  28724. }
  28725. },
  28726. },
  28727. [
  28728. {
  28729. name: "Fun Sized",
  28730. height: math.unit(2, "inches"),
  28731. default: true
  28732. },
  28733. {
  28734. name: "Friend Sized",
  28735. height: math.unit(8, "inches")
  28736. },
  28737. ]
  28738. ))
  28739. characterMakers.push(() => makeCharacter(
  28740. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28741. {
  28742. front: {
  28743. height: math.unit(15, "feet"),
  28744. weight: math.unit(2500, "lb"),
  28745. name: "Front",
  28746. image: {
  28747. source: "./media/characters/holly-rabbit/front.svg",
  28748. extra: 1433 / 1233,
  28749. bottom: 125 / 1558
  28750. }
  28751. },
  28752. dick: {
  28753. height: math.unit(4.6, "feet"),
  28754. name: "Dick",
  28755. image: {
  28756. source: "./media/characters/holly-rabbit/dick.svg"
  28757. }
  28758. },
  28759. },
  28760. [
  28761. {
  28762. name: "Normal",
  28763. height: math.unit(15, "feet"),
  28764. default: true
  28765. },
  28766. {
  28767. name: "Macro",
  28768. height: math.unit(250, "feet")
  28769. },
  28770. {
  28771. name: "Macro+",
  28772. height: math.unit(2500, "feet")
  28773. },
  28774. ]
  28775. ))
  28776. characterMakers.push(() => makeCharacter(
  28777. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28778. {
  28779. front: {
  28780. height: math.unit(3.02, "meters"),
  28781. weight: math.unit(500, "kg"),
  28782. name: "Front",
  28783. image: {
  28784. source: "./media/characters/drena/front.svg",
  28785. extra: 282 / 243,
  28786. bottom: 8 / 290
  28787. }
  28788. },
  28789. side: {
  28790. height: math.unit(3.02, "meters"),
  28791. weight: math.unit(500, "kg"),
  28792. name: "Side",
  28793. image: {
  28794. source: "./media/characters/drena/side.svg",
  28795. extra: 280 / 245,
  28796. bottom: 10 / 290
  28797. }
  28798. },
  28799. back: {
  28800. height: math.unit(3.02, "meters"),
  28801. weight: math.unit(500, "kg"),
  28802. name: "Back",
  28803. image: {
  28804. source: "./media/characters/drena/back.svg",
  28805. extra: 278 / 243,
  28806. bottom: 2 / 280
  28807. }
  28808. },
  28809. foot: {
  28810. height: math.unit(0.75, "meters"),
  28811. name: "Foot",
  28812. image: {
  28813. source: "./media/characters/drena/foot.svg"
  28814. }
  28815. },
  28816. maw: {
  28817. height: math.unit(0.82, "meters"),
  28818. name: "Maw",
  28819. image: {
  28820. source: "./media/characters/drena/maw.svg"
  28821. }
  28822. },
  28823. rump: {
  28824. height: math.unit(0.93, "meters"),
  28825. name: "Rump",
  28826. image: {
  28827. source: "./media/characters/drena/rump.svg"
  28828. }
  28829. },
  28830. },
  28831. [
  28832. {
  28833. name: "Normal",
  28834. height: math.unit(3.02, "meters"),
  28835. default: true
  28836. },
  28837. ]
  28838. ))
  28839. characterMakers.push(() => makeCharacter(
  28840. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28841. {
  28842. front: {
  28843. height: math.unit(6 + 4 / 12, "feet"),
  28844. weight: math.unit(250, "lb"),
  28845. name: "Front",
  28846. image: {
  28847. source: "./media/characters/remmyzilla/front.svg",
  28848. extra: 4033 / 3588,
  28849. bottom: 123 / 4156
  28850. }
  28851. },
  28852. back: {
  28853. height: math.unit(6 + 4 / 12, "feet"),
  28854. weight: math.unit(250, "lb"),
  28855. name: "Back",
  28856. image: {
  28857. source: "./media/characters/remmyzilla/back.svg",
  28858. extra: 2687 / 2555,
  28859. bottom: 48 / 2735
  28860. }
  28861. },
  28862. paw: {
  28863. height: math.unit(1.73, "feet"),
  28864. name: "Paw",
  28865. image: {
  28866. source: "./media/characters/remmyzilla/paw.svg"
  28867. }
  28868. },
  28869. maw: {
  28870. height: math.unit(1.73, "feet"),
  28871. name: "Maw",
  28872. image: {
  28873. source: "./media/characters/remmyzilla/maw.svg"
  28874. }
  28875. },
  28876. },
  28877. [
  28878. {
  28879. name: "Normal",
  28880. height: math.unit(6 + 4 / 12, "feet")
  28881. },
  28882. {
  28883. name: "Minimacro",
  28884. height: math.unit(12 + 8 / 12, "feet")
  28885. },
  28886. {
  28887. name: "Normal",
  28888. height: math.unit(640, "feet"),
  28889. default: true
  28890. },
  28891. {
  28892. name: "Megamacro",
  28893. height: math.unit(6400, "feet")
  28894. },
  28895. {
  28896. name: "Gigamacro",
  28897. height: math.unit(64000, "miles")
  28898. },
  28899. ]
  28900. ))
  28901. characterMakers.push(() => makeCharacter(
  28902. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28903. {
  28904. front: {
  28905. height: math.unit(2.5, "meters"),
  28906. weight: math.unit(300, "lb"),
  28907. name: "Front",
  28908. image: {
  28909. source: "./media/characters/lawrence/front.svg",
  28910. extra: 357 / 335,
  28911. bottom: 30 / 387
  28912. }
  28913. },
  28914. back: {
  28915. height: math.unit(2.5, "meters"),
  28916. weight: math.unit(300, "lb"),
  28917. name: "Back",
  28918. image: {
  28919. source: "./media/characters/lawrence/back.svg",
  28920. extra: 357 / 338,
  28921. bottom: 16 / 373
  28922. }
  28923. },
  28924. head: {
  28925. height: math.unit(0.9, "meter"),
  28926. name: "Head",
  28927. image: {
  28928. source: "./media/characters/lawrence/head.svg"
  28929. }
  28930. },
  28931. maw: {
  28932. height: math.unit(0.7, "meter"),
  28933. name: "Maw",
  28934. image: {
  28935. source: "./media/characters/lawrence/maw.svg"
  28936. }
  28937. },
  28938. footBottom: {
  28939. height: math.unit(0.5, "meter"),
  28940. name: "Foot (Bottom)",
  28941. image: {
  28942. source: "./media/characters/lawrence/foot-bottom.svg"
  28943. }
  28944. },
  28945. footTop: {
  28946. height: math.unit(0.5, "meter"),
  28947. name: "Foot (Top)",
  28948. image: {
  28949. source: "./media/characters/lawrence/foot-top.svg"
  28950. }
  28951. },
  28952. },
  28953. [
  28954. {
  28955. name: "Normal",
  28956. height: math.unit(2.5, "meters"),
  28957. default: true
  28958. },
  28959. {
  28960. name: "Macro",
  28961. height: math.unit(95, "meters")
  28962. },
  28963. {
  28964. name: "Megamacro",
  28965. height: math.unit(150, "km")
  28966. },
  28967. ]
  28968. ))
  28969. characterMakers.push(() => makeCharacter(
  28970. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28971. {
  28972. front: {
  28973. height: math.unit(4.2, "meters"),
  28974. name: "Front",
  28975. image: {
  28976. source: "./media/characters/sydney/front.svg",
  28977. extra: 1323 / 1277,
  28978. bottom: 111 / 1434
  28979. }
  28980. },
  28981. },
  28982. [
  28983. {
  28984. name: "Normal",
  28985. height: math.unit(4.2, "meters"),
  28986. default: true
  28987. },
  28988. ]
  28989. ))
  28990. characterMakers.push(() => makeCharacter(
  28991. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28992. {
  28993. back: {
  28994. height: math.unit(201, "feet"),
  28995. name: "Back",
  28996. image: {
  28997. source: "./media/characters/jessica/back.svg",
  28998. extra: 273 / 259,
  28999. bottom: 7 / 280
  29000. }
  29001. },
  29002. },
  29003. [
  29004. {
  29005. name: "Normal",
  29006. height: math.unit(201, "feet"),
  29007. default: true
  29008. },
  29009. {
  29010. name: "Megamacro",
  29011. height: math.unit(8, "miles")
  29012. },
  29013. ]
  29014. ))
  29015. characterMakers.push(() => makeCharacter(
  29016. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29017. {
  29018. side: {
  29019. height: math.unit(5.6, "m"),
  29020. weight: math.unit(8000, "kg"),
  29021. name: "Side",
  29022. image: {
  29023. source: "./media/characters/victoria/side.svg",
  29024. extra: 1542/1229,
  29025. bottom: 124/1666
  29026. }
  29027. },
  29028. maw: {
  29029. height: math.unit(7.14, "feet"),
  29030. name: "Maw",
  29031. image: {
  29032. source: "./media/characters/victoria/maw.svg"
  29033. }
  29034. },
  29035. },
  29036. [
  29037. {
  29038. name: "Normal",
  29039. height: math.unit(5.6, "m"),
  29040. default: true
  29041. },
  29042. ]
  29043. ))
  29044. characterMakers.push(() => makeCharacter(
  29045. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29046. {
  29047. front: {
  29048. height: math.unit(5 + 6 / 12, "feet"),
  29049. name: "Front",
  29050. image: {
  29051. source: "./media/characters/cat/front.svg",
  29052. extra: 1449/1295,
  29053. bottom: 34/1483
  29054. },
  29055. form: "cat",
  29056. default: true
  29057. },
  29058. back: {
  29059. height: math.unit(5 + 6 / 12, "feet"),
  29060. name: "Back",
  29061. image: {
  29062. source: "./media/characters/cat/back.svg",
  29063. extra: 1466/1301,
  29064. bottom: 19/1485
  29065. },
  29066. form: "cat"
  29067. },
  29068. taur: {
  29069. height: math.unit(7, "feet"),
  29070. name: "Taur",
  29071. image: {
  29072. source: "./media/characters/cat/taur.svg",
  29073. extra: 1389/1233,
  29074. bottom: 83/1472
  29075. },
  29076. form: "taur",
  29077. default: true
  29078. },
  29079. lucarioFront: {
  29080. height: math.unit(4, "feet"),
  29081. name: "Lucario (Front)",
  29082. image: {
  29083. source: "./media/characters/cat/lucario-front.svg",
  29084. extra: 1149/1019,
  29085. bottom: 84/1233
  29086. },
  29087. form: "lucario",
  29088. default: true
  29089. },
  29090. lucarioBack: {
  29091. height: math.unit(4, "feet"),
  29092. name: "Lucario (Back)",
  29093. image: {
  29094. source: "./media/characters/cat/lucario-back.svg",
  29095. extra: 1190/1059,
  29096. bottom: 33/1223
  29097. },
  29098. form: "lucario"
  29099. },
  29100. megaLucario: {
  29101. height: math.unit(4, "feet"),
  29102. name: "Mega Lucario",
  29103. image: {
  29104. source: "./media/characters/cat/mega-lucario.svg",
  29105. extra: 1515 / 1319,
  29106. bottom: 63 / 1578
  29107. },
  29108. form: "lucario"
  29109. },
  29110. nickit: {
  29111. height: math.unit(2, "feet"),
  29112. name: "Nickit",
  29113. image: {
  29114. source: "./media/characters/cat/nickit.svg",
  29115. extra: 1980 / 1585,
  29116. bottom: 102 / 2082
  29117. },
  29118. form: "nickit",
  29119. default: true
  29120. },
  29121. lopunnyFront: {
  29122. height: math.unit(5, "feet"),
  29123. name: "Lopunny (Front)",
  29124. image: {
  29125. source: "./media/characters/cat/lopunny-front.svg",
  29126. extra: 1782 / 1469,
  29127. bottom: 38 / 1820
  29128. },
  29129. form: "lopunny",
  29130. default: true
  29131. },
  29132. lopunnyBack: {
  29133. height: math.unit(5, "feet"),
  29134. name: "Lopunny (Back)",
  29135. image: {
  29136. source: "./media/characters/cat/lopunny-back.svg",
  29137. extra: 1660 / 1490,
  29138. bottom: 25 / 1685
  29139. },
  29140. form: "lopunny"
  29141. },
  29142. },
  29143. [
  29144. {
  29145. name: "Really small",
  29146. height: math.unit(1, "nm")
  29147. },
  29148. {
  29149. name: "Micro",
  29150. height: math.unit(5, "inches")
  29151. },
  29152. {
  29153. name: "Normal",
  29154. height: math.unit(5 + 6 / 12, "feet"),
  29155. default: true
  29156. },
  29157. {
  29158. name: "Macro",
  29159. height: math.unit(50, "feet")
  29160. },
  29161. {
  29162. name: "Macro+",
  29163. height: math.unit(150, "feet")
  29164. },
  29165. {
  29166. name: "Megamacro",
  29167. height: math.unit(100, "miles")
  29168. },
  29169. ]
  29170. ))
  29171. characterMakers.push(() => makeCharacter(
  29172. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29173. {
  29174. front: {
  29175. height: math.unit(63.4, "meters"),
  29176. weight: math.unit(3.28349e+6, "kilograms"),
  29177. name: "Front",
  29178. image: {
  29179. source: "./media/characters/kirina-violet/front.svg",
  29180. extra: 2812 / 2725,
  29181. bottom: 0 / 2812
  29182. }
  29183. },
  29184. back: {
  29185. height: math.unit(63.4, "meters"),
  29186. weight: math.unit(3.28349e+6, "kilograms"),
  29187. name: "Back",
  29188. image: {
  29189. source: "./media/characters/kirina-violet/back.svg",
  29190. extra: 2812 / 2725,
  29191. bottom: 0 / 2812
  29192. }
  29193. },
  29194. mouth: {
  29195. height: math.unit(4.35, "meters"),
  29196. name: "Mouth",
  29197. image: {
  29198. source: "./media/characters/kirina-violet/mouth.svg"
  29199. }
  29200. },
  29201. paw: {
  29202. height: math.unit(5.6, "meters"),
  29203. name: "Paw",
  29204. image: {
  29205. source: "./media/characters/kirina-violet/paw.svg"
  29206. }
  29207. },
  29208. tail: {
  29209. height: math.unit(18, "meters"),
  29210. name: "Tail",
  29211. image: {
  29212. source: "./media/characters/kirina-violet/tail.svg"
  29213. }
  29214. },
  29215. },
  29216. [
  29217. {
  29218. name: "Macro",
  29219. height: math.unit(63.4, "meters"),
  29220. default: true
  29221. },
  29222. ]
  29223. ))
  29224. characterMakers.push(() => makeCharacter(
  29225. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29226. {
  29227. front: {
  29228. height: math.unit(75, "feet"),
  29229. name: "Front",
  29230. image: {
  29231. source: "./media/characters/cat-gigachu/front.svg",
  29232. extra: 1239/1027,
  29233. bottom: 32/1271
  29234. }
  29235. },
  29236. back: {
  29237. height: math.unit(75, "feet"),
  29238. name: "Back",
  29239. image: {
  29240. source: "./media/characters/cat-gigachu/back.svg",
  29241. extra: 1229/1030,
  29242. bottom: 9/1238
  29243. }
  29244. },
  29245. },
  29246. [
  29247. {
  29248. name: "Dynamax",
  29249. height: math.unit(75, "feet"),
  29250. default: true
  29251. },
  29252. ]
  29253. ))
  29254. characterMakers.push(() => makeCharacter(
  29255. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29256. {
  29257. front: {
  29258. height: math.unit(6, "feet"),
  29259. weight: math.unit(150, "lb"),
  29260. name: "Front",
  29261. image: {
  29262. source: "./media/characters/sfaiyan/front.svg",
  29263. extra: 999 / 978,
  29264. bottom: 5 / 1004
  29265. }
  29266. },
  29267. },
  29268. [
  29269. {
  29270. name: "Normal",
  29271. height: math.unit(1.82, "meters")
  29272. },
  29273. {
  29274. name: "Giant",
  29275. height: math.unit(2.27, "km"),
  29276. default: true
  29277. },
  29278. ]
  29279. ))
  29280. characterMakers.push(() => makeCharacter(
  29281. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29282. {
  29283. front: {
  29284. height: math.unit(179, "cm"),
  29285. weight: math.unit(100, "kg"),
  29286. name: "Front",
  29287. image: {
  29288. source: "./media/characters/raunehkeli/front.svg",
  29289. extra: 1934 / 1926,
  29290. bottom: 0 / 1934
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Normal",
  29297. height: math.unit(179, "cm")
  29298. },
  29299. {
  29300. name: "Maximum",
  29301. height: math.unit(575, "meters"),
  29302. default: true
  29303. },
  29304. ]
  29305. ))
  29306. characterMakers.push(() => makeCharacter(
  29307. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29308. {
  29309. front: {
  29310. height: math.unit(6, "feet"),
  29311. weight: math.unit(150, "lb"),
  29312. name: "Front",
  29313. image: {
  29314. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29315. extra: 2625 / 2518,
  29316. bottom: 60 / 2685
  29317. }
  29318. },
  29319. },
  29320. [
  29321. {
  29322. name: "Normal",
  29323. height: math.unit(6 + 2 / 12, "feet")
  29324. },
  29325. {
  29326. name: "Macro",
  29327. height: math.unit(1180, "feet"),
  29328. default: true
  29329. },
  29330. ]
  29331. ))
  29332. characterMakers.push(() => makeCharacter(
  29333. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29334. {
  29335. front: {
  29336. height: math.unit(5 + 6 / 12, "feet"),
  29337. weight: math.unit(108, "lb"),
  29338. name: "Front",
  29339. image: {
  29340. source: "./media/characters/lilith-zott/front.svg",
  29341. extra: 2510 / 2238,
  29342. bottom: 100 / 2610
  29343. }
  29344. },
  29345. frontDressed: {
  29346. height: math.unit(5 + 6 / 12, "feet"),
  29347. weight: math.unit(108, "lb"),
  29348. name: "Front (Dressed)",
  29349. image: {
  29350. source: "./media/characters/lilith-zott/front-dressed.svg",
  29351. extra: 2510 / 2238,
  29352. bottom: 100 / 2610
  29353. }
  29354. },
  29355. },
  29356. [
  29357. {
  29358. name: "Normal",
  29359. height: math.unit(5 + 6 / 12, "feet")
  29360. },
  29361. {
  29362. name: "Macro",
  29363. height: math.unit(1030, "feet"),
  29364. default: true
  29365. },
  29366. ]
  29367. ))
  29368. characterMakers.push(() => makeCharacter(
  29369. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29370. {
  29371. front: {
  29372. height: math.unit(6, "feet"),
  29373. weight: math.unit(150, "lb"),
  29374. name: "Front",
  29375. image: {
  29376. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29377. extra: 2567 / 2435,
  29378. bottom: 39 / 2606
  29379. }
  29380. },
  29381. frontSuper: {
  29382. height: math.unit(6, "feet"),
  29383. name: "Front (Super)",
  29384. image: {
  29385. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29386. extra: 2567 / 2435,
  29387. bottom: 39 / 2606
  29388. }
  29389. },
  29390. },
  29391. [
  29392. {
  29393. name: "Normal",
  29394. height: math.unit(5 + 10 / 12, "feet")
  29395. },
  29396. {
  29397. name: "Macro",
  29398. height: math.unit(1100, "feet"),
  29399. default: true
  29400. },
  29401. ]
  29402. ))
  29403. characterMakers.push(() => makeCharacter(
  29404. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29405. {
  29406. front: {
  29407. height: math.unit(100, "miles"),
  29408. name: "Front",
  29409. image: {
  29410. source: "./media/characters/sona/front.svg",
  29411. extra: 2433 / 2201,
  29412. bottom: 53 / 2486
  29413. }
  29414. },
  29415. foot: {
  29416. height: math.unit(16.1, "miles"),
  29417. name: "Foot",
  29418. image: {
  29419. source: "./media/characters/sona/foot.svg"
  29420. }
  29421. },
  29422. },
  29423. [
  29424. {
  29425. name: "Macro",
  29426. height: math.unit(100, "miles"),
  29427. default: true
  29428. },
  29429. ]
  29430. ))
  29431. characterMakers.push(() => makeCharacter(
  29432. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29433. {
  29434. front: {
  29435. height: math.unit(6, "feet"),
  29436. weight: math.unit(150, "lb"),
  29437. name: "Front",
  29438. image: {
  29439. source: "./media/characters/bailey/front.svg",
  29440. extra: 1778 / 1724,
  29441. bottom: 30 / 1808
  29442. }
  29443. },
  29444. },
  29445. [
  29446. {
  29447. name: "Micro",
  29448. height: math.unit(4, "inches")
  29449. },
  29450. {
  29451. name: "Normal",
  29452. height: math.unit(5 + 5 / 12, "feet"),
  29453. default: true
  29454. },
  29455. {
  29456. name: "Macro",
  29457. height: math.unit(250, "feet")
  29458. },
  29459. {
  29460. name: "Megamacro",
  29461. height: math.unit(100, "miles")
  29462. },
  29463. ]
  29464. ))
  29465. characterMakers.push(() => makeCharacter(
  29466. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29467. {
  29468. front: {
  29469. height: math.unit(5 + 2 / 12, "feet"),
  29470. weight: math.unit(120, "lb"),
  29471. name: "Front",
  29472. image: {
  29473. source: "./media/characters/snaps/front.svg",
  29474. extra: 2370 / 2177,
  29475. bottom: 48 / 2418
  29476. }
  29477. },
  29478. back: {
  29479. height: math.unit(5 + 2 / 12, "feet"),
  29480. weight: math.unit(120, "lb"),
  29481. name: "Back",
  29482. image: {
  29483. source: "./media/characters/snaps/back.svg",
  29484. extra: 2408 / 2258,
  29485. bottom: 15 / 2423
  29486. }
  29487. },
  29488. },
  29489. [
  29490. {
  29491. name: "Micro",
  29492. height: math.unit(9, "inches")
  29493. },
  29494. {
  29495. name: "Normal",
  29496. height: math.unit(5 + 2 / 12, "feet"),
  29497. default: true
  29498. },
  29499. {
  29500. name: "Mini Macro",
  29501. height: math.unit(10, "feet")
  29502. },
  29503. ]
  29504. ))
  29505. characterMakers.push(() => makeCharacter(
  29506. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29507. {
  29508. front: {
  29509. height: math.unit(1.8, "meters"),
  29510. weight: math.unit(85, "kg"),
  29511. name: "Front",
  29512. image: {
  29513. source: "./media/characters/azteck/front.svg",
  29514. extra: 2815 / 2625,
  29515. bottom: 89 / 2904
  29516. }
  29517. },
  29518. back: {
  29519. height: math.unit(1.8, "meters"),
  29520. weight: math.unit(85, "kg"),
  29521. name: "Back",
  29522. image: {
  29523. source: "./media/characters/azteck/back.svg",
  29524. extra: 2856 / 2648,
  29525. bottom: 85 / 2941
  29526. }
  29527. },
  29528. frontDressed: {
  29529. height: math.unit(1.8, "meters"),
  29530. weight: math.unit(85, "kg"),
  29531. name: "Front (Dressed)",
  29532. image: {
  29533. source: "./media/characters/azteck/front-dressed.svg",
  29534. extra: 2147 / 2003,
  29535. bottom: 68 / 2215
  29536. }
  29537. },
  29538. head: {
  29539. height: math.unit(0.47, "meters"),
  29540. weight: math.unit(85, "kg"),
  29541. name: "Head",
  29542. image: {
  29543. source: "./media/characters/azteck/head.svg"
  29544. }
  29545. },
  29546. },
  29547. [
  29548. {
  29549. name: "Bite sized",
  29550. height: math.unit(16, "cm")
  29551. },
  29552. {
  29553. name: "Normal",
  29554. height: math.unit(1.8, "meters"),
  29555. default: true
  29556. },
  29557. ]
  29558. ))
  29559. characterMakers.push(() => makeCharacter(
  29560. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29561. {
  29562. front: {
  29563. height: math.unit(6, "feet"),
  29564. weight: math.unit(150, "lb"),
  29565. name: "Front",
  29566. image: {
  29567. source: "./media/characters/pidge/front.svg",
  29568. extra: 620 / 588,
  29569. bottom: 9 / 629
  29570. }
  29571. },
  29572. back: {
  29573. height: math.unit(6, "feet"),
  29574. weight: math.unit(150, "lb"),
  29575. name: "Back",
  29576. image: {
  29577. source: "./media/characters/pidge/back.svg",
  29578. extra: 620 / 588,
  29579. bottom: 9 / 629
  29580. }
  29581. },
  29582. },
  29583. [
  29584. {
  29585. name: "Macro",
  29586. height: math.unit(1, "mile"),
  29587. default: true
  29588. },
  29589. ]
  29590. ))
  29591. characterMakers.push(() => makeCharacter(
  29592. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29593. {
  29594. front: {
  29595. height: math.unit(6, "feet"),
  29596. weight: math.unit(150, "lb"),
  29597. name: "Front",
  29598. image: {
  29599. source: "./media/characters/en/front.svg",
  29600. extra: 1697 / 1563,
  29601. bottom: 103 / 1800
  29602. }
  29603. },
  29604. back: {
  29605. height: math.unit(6, "feet"),
  29606. weight: math.unit(150, "lb"),
  29607. name: "Back",
  29608. image: {
  29609. source: "./media/characters/en/back.svg",
  29610. extra: 1700 / 1570,
  29611. bottom: 51 / 1751
  29612. }
  29613. },
  29614. frontDressed: {
  29615. height: math.unit(6, "feet"),
  29616. weight: math.unit(150, "lb"),
  29617. name: "Front (Dressed)",
  29618. image: {
  29619. source: "./media/characters/en/front-dressed.svg",
  29620. extra: 1697 / 1563,
  29621. bottom: 103 / 1800
  29622. }
  29623. },
  29624. backDressed: {
  29625. height: math.unit(6, "feet"),
  29626. weight: math.unit(150, "lb"),
  29627. name: "Back (Dressed)",
  29628. image: {
  29629. source: "./media/characters/en/back-dressed.svg",
  29630. extra: 1700 / 1570,
  29631. bottom: 51 / 1751
  29632. }
  29633. },
  29634. },
  29635. [
  29636. {
  29637. name: "Macro",
  29638. height: math.unit(210, "feet"),
  29639. default: true
  29640. },
  29641. ]
  29642. ))
  29643. characterMakers.push(() => makeCharacter(
  29644. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29645. {
  29646. front: {
  29647. height: math.unit(6, "feet"),
  29648. weight: math.unit(150, "lb"),
  29649. name: "Front",
  29650. image: {
  29651. source: "./media/characters/haze-orris/front.svg",
  29652. extra: 3975 / 3525,
  29653. bottom: 137 / 4112
  29654. }
  29655. },
  29656. },
  29657. [
  29658. {
  29659. name: "Micro",
  29660. height: math.unit(150, "mm"),
  29661. default: true
  29662. },
  29663. ]
  29664. ))
  29665. characterMakers.push(() => makeCharacter(
  29666. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29667. {
  29668. front: {
  29669. height: math.unit(6, "feet"),
  29670. weight: math.unit(150, "lb"),
  29671. name: "Front",
  29672. image: {
  29673. source: "./media/characters/casselene-yaro/front.svg",
  29674. extra: 4721 / 4541,
  29675. bottom: 82 / 4803
  29676. }
  29677. },
  29678. back: {
  29679. height: math.unit(6, "feet"),
  29680. weight: math.unit(150, "lb"),
  29681. name: "Back",
  29682. image: {
  29683. source: "./media/characters/casselene-yaro/back.svg",
  29684. extra: 4569 / 4377,
  29685. bottom: 69 / 4638
  29686. }
  29687. },
  29688. frontDressed: {
  29689. height: math.unit(6, "feet"),
  29690. weight: math.unit(150, "lb"),
  29691. name: "Front-dressed",
  29692. image: {
  29693. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29694. extra: 4721 / 4541,
  29695. bottom: 82 / 4803
  29696. }
  29697. },
  29698. },
  29699. [
  29700. {
  29701. name: "Macro",
  29702. height: math.unit(190, "feet"),
  29703. default: true
  29704. },
  29705. ]
  29706. ))
  29707. characterMakers.push(() => makeCharacter(
  29708. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29709. {
  29710. front: {
  29711. height: math.unit(6, "feet"),
  29712. weight: math.unit(150, "lb"),
  29713. name: "Front",
  29714. image: {
  29715. source: "./media/characters/myra-rue-delore/front.svg",
  29716. extra: 1340 / 1308,
  29717. bottom: 67 / 1407
  29718. }
  29719. },
  29720. back: {
  29721. height: math.unit(6, "feet"),
  29722. weight: math.unit(150, "lb"),
  29723. name: "Back",
  29724. image: {
  29725. source: "./media/characters/myra-rue-delore/back.svg",
  29726. extra: 1341 / 1310,
  29727. bottom: 40 / 1381
  29728. }
  29729. },
  29730. frontDressed: {
  29731. height: math.unit(6, "feet"),
  29732. weight: math.unit(150, "lb"),
  29733. name: "Front (Dressed)",
  29734. image: {
  29735. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29736. extra: 1340 / 1308,
  29737. bottom: 67 / 1407
  29738. }
  29739. },
  29740. },
  29741. [
  29742. {
  29743. name: "Macro",
  29744. height: math.unit(150, "feet"),
  29745. default: true
  29746. },
  29747. ]
  29748. ))
  29749. characterMakers.push(() => makeCharacter(
  29750. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29751. {
  29752. front: {
  29753. height: math.unit(10, "feet"),
  29754. weight: math.unit(15015, "lb"),
  29755. name: "Front",
  29756. image: {
  29757. source: "./media/characters/fem!plat/front.svg",
  29758. extra: 2799 / 2604,
  29759. bottom: 149 / 2948
  29760. }
  29761. },
  29762. },
  29763. [
  29764. {
  29765. name: "Normal",
  29766. height: math.unit(10, "feet"),
  29767. default: true
  29768. },
  29769. {
  29770. name: "Macro",
  29771. height: math.unit(100, "feet")
  29772. },
  29773. {
  29774. name: "Megamacro",
  29775. height: math.unit(1000, "feet")
  29776. },
  29777. ]
  29778. ))
  29779. characterMakers.push(() => makeCharacter(
  29780. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29781. {
  29782. front: {
  29783. height: math.unit(15 + 5 / 12, "feet"),
  29784. weight: math.unit(4600, "lb"),
  29785. name: "Front",
  29786. image: {
  29787. source: "./media/characters/neapolitan-ananassa/front.svg",
  29788. extra: 2903 / 2736,
  29789. bottom: 0 / 2903
  29790. }
  29791. },
  29792. side: {
  29793. height: math.unit(15 + 5 / 12, "feet"),
  29794. weight: math.unit(4600, "lb"),
  29795. name: "Side",
  29796. image: {
  29797. source: "./media/characters/neapolitan-ananassa/side.svg",
  29798. extra: 2925 / 2719,
  29799. bottom: 0 / 2925
  29800. }
  29801. },
  29802. back: {
  29803. height: math.unit(15 + 5 / 12, "feet"),
  29804. weight: math.unit(4600, "lb"),
  29805. name: "Back",
  29806. image: {
  29807. source: "./media/characters/neapolitan-ananassa/back.svg",
  29808. extra: 2903 / 2736,
  29809. bottom: 0 / 2903
  29810. }
  29811. },
  29812. },
  29813. [
  29814. {
  29815. name: "Normal",
  29816. height: math.unit(15 + 5 / 12, "feet"),
  29817. default: true
  29818. },
  29819. {
  29820. name: "Post-Millenium",
  29821. height: math.unit(35 + 5 / 12, "feet")
  29822. },
  29823. {
  29824. name: "Post-Era",
  29825. height: math.unit(450 + 5 / 12, "feet")
  29826. },
  29827. ]
  29828. ))
  29829. characterMakers.push(() => makeCharacter(
  29830. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29831. {
  29832. front: {
  29833. height: math.unit(300, "meters"),
  29834. weight: math.unit(125000, "tonnes"),
  29835. name: "Front",
  29836. image: {
  29837. source: "./media/characters/pazuzu/front.svg",
  29838. extra: 877 / 794,
  29839. bottom: 47 / 924
  29840. }
  29841. },
  29842. },
  29843. [
  29844. {
  29845. name: "Macro",
  29846. height: math.unit(300, "meters"),
  29847. default: true
  29848. },
  29849. ]
  29850. ))
  29851. characterMakers.push(() => makeCharacter(
  29852. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29853. {
  29854. side: {
  29855. height: math.unit(10 + 7 / 12, "feet"),
  29856. weight: math.unit(2.5, "tons"),
  29857. name: "Side",
  29858. image: {
  29859. source: "./media/characters/aasha/side.svg",
  29860. extra: 1345 / 1245,
  29861. bottom: 111 / 1456
  29862. }
  29863. },
  29864. back: {
  29865. height: math.unit(10 + 7 / 12, "feet"),
  29866. weight: math.unit(2.5, "tons"),
  29867. name: "Back",
  29868. image: {
  29869. source: "./media/characters/aasha/back.svg",
  29870. extra: 1133 / 1057,
  29871. bottom: 257 / 1390
  29872. }
  29873. },
  29874. },
  29875. [
  29876. {
  29877. name: "Normal",
  29878. height: math.unit(10 + 7 / 12, "feet"),
  29879. default: true
  29880. },
  29881. ]
  29882. ))
  29883. characterMakers.push(() => makeCharacter(
  29884. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29885. {
  29886. front: {
  29887. height: math.unit(6 + 3 / 12, "feet"),
  29888. name: "Front",
  29889. image: {
  29890. source: "./media/characters/nevan/front.svg",
  29891. extra: 704 / 704,
  29892. bottom: 28 / 732
  29893. }
  29894. },
  29895. back: {
  29896. height: math.unit(6 + 3 / 12, "feet"),
  29897. name: "Back",
  29898. image: {
  29899. source: "./media/characters/nevan/back.svg",
  29900. extra: 714 / 714,
  29901. bottom: 21 / 735
  29902. }
  29903. },
  29904. frontFlaccid: {
  29905. height: math.unit(6 + 3 / 12, "feet"),
  29906. name: "Front (Flaccid)",
  29907. image: {
  29908. source: "./media/characters/nevan/front-flaccid.svg",
  29909. extra: 704 / 704,
  29910. bottom: 28 / 732
  29911. }
  29912. },
  29913. frontErect: {
  29914. height: math.unit(6 + 3 / 12, "feet"),
  29915. name: "Front (Erect)",
  29916. image: {
  29917. source: "./media/characters/nevan/front-erect.svg",
  29918. extra: 704 / 704,
  29919. bottom: 28 / 732
  29920. }
  29921. },
  29922. backFlaccid: {
  29923. height: math.unit(6 + 3 / 12, "feet"),
  29924. name: "Back (Flaccid)",
  29925. image: {
  29926. source: "./media/characters/nevan/back-flaccid.svg",
  29927. extra: 714 / 714,
  29928. bottom: 21 / 735
  29929. }
  29930. },
  29931. },
  29932. [
  29933. {
  29934. name: "Normal",
  29935. height: math.unit(6 + 3 / 12, "feet"),
  29936. default: true
  29937. },
  29938. ]
  29939. ))
  29940. characterMakers.push(() => makeCharacter(
  29941. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29942. {
  29943. front: {
  29944. height: math.unit(4, "feet"),
  29945. name: "Front",
  29946. image: {
  29947. source: "./media/characters/arhan/front.svg",
  29948. extra: 3368 / 3133,
  29949. bottom: 0 / 3368
  29950. }
  29951. },
  29952. side: {
  29953. height: math.unit(4, "feet"),
  29954. name: "Side",
  29955. image: {
  29956. source: "./media/characters/arhan/side.svg",
  29957. extra: 3347 / 3105,
  29958. bottom: 0 / 3347
  29959. }
  29960. },
  29961. tongue: {
  29962. height: math.unit(1.42, "feet"),
  29963. name: "Tongue",
  29964. image: {
  29965. source: "./media/characters/arhan/tongue.svg"
  29966. }
  29967. },
  29968. head: {
  29969. height: math.unit(0.85, "feet"),
  29970. name: "Head",
  29971. image: {
  29972. source: "./media/characters/arhan/head.svg"
  29973. }
  29974. },
  29975. },
  29976. [
  29977. {
  29978. name: "Normal",
  29979. height: math.unit(4, "feet"),
  29980. default: true
  29981. },
  29982. ]
  29983. ))
  29984. characterMakers.push(() => makeCharacter(
  29985. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29986. {
  29987. front: {
  29988. height: math.unit(5 + 7.5 / 12, "feet"),
  29989. weight: math.unit(120, "lb"),
  29990. name: "Front",
  29991. image: {
  29992. source: "./media/characters/digi-duncan/front.svg",
  29993. extra: 330 / 326,
  29994. bottom: 16 / 346
  29995. }
  29996. },
  29997. side: {
  29998. height: math.unit(5 + 7.5 / 12, "feet"),
  29999. weight: math.unit(120, "lb"),
  30000. name: "Side",
  30001. image: {
  30002. source: "./media/characters/digi-duncan/side.svg",
  30003. extra: 341 / 337,
  30004. bottom: 1 / 342
  30005. }
  30006. },
  30007. back: {
  30008. height: math.unit(5 + 7.5 / 12, "feet"),
  30009. weight: math.unit(120, "lb"),
  30010. name: "Back",
  30011. image: {
  30012. source: "./media/characters/digi-duncan/back.svg",
  30013. extra: 330 / 326,
  30014. bottom: 12 / 342
  30015. }
  30016. },
  30017. },
  30018. [
  30019. {
  30020. name: "Speck",
  30021. height: math.unit(0.25, "mm")
  30022. },
  30023. {
  30024. name: "Micro",
  30025. height: math.unit(5, "mm")
  30026. },
  30027. {
  30028. name: "Tiny",
  30029. height: math.unit(0.5, "inches"),
  30030. default: true
  30031. },
  30032. {
  30033. name: "Human",
  30034. height: math.unit(5 + 7.5 / 12, "feet")
  30035. },
  30036. {
  30037. name: "Minigiant",
  30038. height: math.unit(8 + 5.25, "feet")
  30039. },
  30040. {
  30041. name: "Giant",
  30042. height: math.unit(2000, "feet")
  30043. },
  30044. {
  30045. name: "Mega",
  30046. height: math.unit(371.1, "miles")
  30047. },
  30048. ]
  30049. ))
  30050. characterMakers.push(() => makeCharacter(
  30051. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30052. {
  30053. front: {
  30054. height: math.unit(2, "meters"),
  30055. weight: math.unit(350, "kg"),
  30056. name: "Front",
  30057. image: {
  30058. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30059. extra: 898 / 838,
  30060. bottom: 9 / 907
  30061. }
  30062. },
  30063. },
  30064. [
  30065. {
  30066. name: "Micro",
  30067. height: math.unit(8, "meters")
  30068. },
  30069. {
  30070. name: "Normal",
  30071. height: math.unit(50, "meters"),
  30072. default: true
  30073. },
  30074. {
  30075. name: "Macro",
  30076. height: math.unit(500, "meters")
  30077. },
  30078. ]
  30079. ))
  30080. characterMakers.push(() => makeCharacter(
  30081. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30082. {
  30083. front: {
  30084. height: math.unit(6 + 6 / 12, "feet"),
  30085. name: "Front",
  30086. image: {
  30087. source: "./media/characters/khardesh/front.svg",
  30088. extra: 1788/1596,
  30089. bottom: 66/1854
  30090. }
  30091. },
  30092. back: {
  30093. height: math.unit(6 + 6 / 12, "feet"),
  30094. name: "Back",
  30095. image: {
  30096. source: "./media/characters/khardesh/back.svg",
  30097. extra: 1781/1584,
  30098. bottom: 68/1849
  30099. }
  30100. },
  30101. },
  30102. [
  30103. {
  30104. name: "Normal",
  30105. height: math.unit(6 + 6 / 12, "feet"),
  30106. default: true
  30107. },
  30108. {
  30109. name: "Normal+",
  30110. height: math.unit(4, "meters")
  30111. },
  30112. {
  30113. name: "Macro",
  30114. height: math.unit(50, "meters")
  30115. },
  30116. {
  30117. name: "Macro+",
  30118. height: math.unit(100, "meters")
  30119. },
  30120. {
  30121. name: "Megamacro",
  30122. height: math.unit(20, "km")
  30123. },
  30124. ]
  30125. ))
  30126. characterMakers.push(() => makeCharacter(
  30127. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30128. {
  30129. front: {
  30130. height: math.unit(6, "feet"),
  30131. weight: math.unit(150, "lb"),
  30132. name: "Front",
  30133. image: {
  30134. source: "./media/characters/kosho/front.svg",
  30135. extra: 1847 / 1847,
  30136. bottom: 86 / 1933
  30137. }
  30138. },
  30139. },
  30140. [
  30141. {
  30142. name: "Second-stage micro",
  30143. height: math.unit(0.5, "inches")
  30144. },
  30145. {
  30146. name: "First-stage micro",
  30147. height: math.unit(6, "inches")
  30148. },
  30149. {
  30150. name: "Normal",
  30151. height: math.unit(6, "feet"),
  30152. default: true
  30153. },
  30154. {
  30155. name: "First-stage macro",
  30156. height: math.unit(72, "feet")
  30157. },
  30158. {
  30159. name: "Second-stage macro",
  30160. height: math.unit(864, "feet")
  30161. },
  30162. ]
  30163. ))
  30164. characterMakers.push(() => makeCharacter(
  30165. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30166. {
  30167. normal: {
  30168. height: math.unit(4 + 6 / 12, "feet"),
  30169. name: "Normal",
  30170. image: {
  30171. source: "./media/characters/hydra/normal.svg",
  30172. extra: 2833 / 2634,
  30173. bottom: 68 / 2901
  30174. }
  30175. },
  30176. smol: {
  30177. height: math.unit(0.705, "inches"),
  30178. name: "Smol",
  30179. image: {
  30180. source: "./media/characters/hydra/smol.svg",
  30181. extra: 2715 / 2540,
  30182. bottom: 0 / 2715
  30183. }
  30184. },
  30185. },
  30186. [
  30187. {
  30188. name: "Normal",
  30189. height: math.unit(4 + 6 / 12, "feet"),
  30190. default: true
  30191. }
  30192. ]
  30193. ))
  30194. characterMakers.push(() => makeCharacter(
  30195. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30196. {
  30197. front: {
  30198. height: math.unit(0.6, "cm"),
  30199. name: "Front",
  30200. image: {
  30201. source: "./media/characters/daz/front.svg",
  30202. extra: 1682 / 1164,
  30203. bottom: 42 / 1724
  30204. }
  30205. },
  30206. },
  30207. [
  30208. {
  30209. name: "Normal",
  30210. height: math.unit(0.6, "cm"),
  30211. default: true
  30212. },
  30213. ]
  30214. ))
  30215. characterMakers.push(() => makeCharacter(
  30216. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30217. {
  30218. front: {
  30219. height: math.unit(6, "feet"),
  30220. weight: math.unit(235, "lb"),
  30221. name: "Front",
  30222. image: {
  30223. source: "./media/characters/theo-pangolin/front.svg",
  30224. extra: 1996 / 1969,
  30225. bottom: 115 / 2111
  30226. }
  30227. },
  30228. back: {
  30229. height: math.unit(6, "feet"),
  30230. weight: math.unit(235, "lb"),
  30231. name: "Back",
  30232. image: {
  30233. source: "./media/characters/theo-pangolin/back.svg",
  30234. extra: 1979 / 1979,
  30235. bottom: 40 / 2019
  30236. }
  30237. },
  30238. feral: {
  30239. height: math.unit(2, "feet"),
  30240. weight: math.unit(30, "lb"),
  30241. name: "Feral",
  30242. image: {
  30243. source: "./media/characters/theo-pangolin/feral.svg",
  30244. extra: 803 / 791,
  30245. bottom: 181 / 984
  30246. }
  30247. },
  30248. footFive: {
  30249. height: math.unit(1.43, "feet"),
  30250. name: "Foot (Five Toes)",
  30251. image: {
  30252. source: "./media/characters/theo-pangolin/foot-five.svg"
  30253. }
  30254. },
  30255. footFour: {
  30256. height: math.unit(1.43, "feet"),
  30257. name: "Foot (Four Toes)",
  30258. image: {
  30259. source: "./media/characters/theo-pangolin/foot-four.svg"
  30260. }
  30261. },
  30262. handFour: {
  30263. height: math.unit(0.81, "feet"),
  30264. name: "Hand (Four Fingers)",
  30265. image: {
  30266. source: "./media/characters/theo-pangolin/hand-four.svg"
  30267. }
  30268. },
  30269. handThree: {
  30270. height: math.unit(0.81, "feet"),
  30271. name: "Hand (Three Fingers)",
  30272. image: {
  30273. source: "./media/characters/theo-pangolin/hand-three.svg"
  30274. }
  30275. },
  30276. headFront: {
  30277. height: math.unit(1.37, "feet"),
  30278. name: "Head (Front)",
  30279. image: {
  30280. source: "./media/characters/theo-pangolin/head-front.svg"
  30281. }
  30282. },
  30283. headSide: {
  30284. height: math.unit(1.43, "feet"),
  30285. name: "Head (Side)",
  30286. image: {
  30287. source: "./media/characters/theo-pangolin/head-side.svg"
  30288. }
  30289. },
  30290. tongue: {
  30291. height: math.unit(2.29, "feet"),
  30292. name: "Tongue",
  30293. image: {
  30294. source: "./media/characters/theo-pangolin/tongue.svg"
  30295. }
  30296. },
  30297. },
  30298. [
  30299. {
  30300. name: "Normal",
  30301. height: math.unit(6, "feet")
  30302. },
  30303. {
  30304. name: "Macro",
  30305. height: math.unit(400, "feet"),
  30306. default: true
  30307. },
  30308. ]
  30309. ))
  30310. characterMakers.push(() => makeCharacter(
  30311. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30312. {
  30313. front: {
  30314. height: math.unit(6, "inches"),
  30315. weight: math.unit(0.036, "kg"),
  30316. name: "Front",
  30317. image: {
  30318. source: "./media/characters/renée/front.svg",
  30319. extra: 900 / 886,
  30320. bottom: 8 / 908
  30321. }
  30322. },
  30323. },
  30324. [
  30325. {
  30326. name: "Nano",
  30327. height: math.unit(1, "nm")
  30328. },
  30329. {
  30330. name: "Micro",
  30331. height: math.unit(1, "mm")
  30332. },
  30333. {
  30334. name: "Normal",
  30335. height: math.unit(6, "inches")
  30336. },
  30337. {
  30338. name: "Macro",
  30339. height: math.unit(2000, "feet"),
  30340. default: true
  30341. },
  30342. {
  30343. name: "Megamacro",
  30344. height: math.unit(2, "km")
  30345. },
  30346. {
  30347. name: "Gigamacro",
  30348. height: math.unit(2000, "km")
  30349. },
  30350. {
  30351. name: "Teramacro",
  30352. height: math.unit(250000, "km")
  30353. },
  30354. ]
  30355. ))
  30356. characterMakers.push(() => makeCharacter(
  30357. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30358. {
  30359. front: {
  30360. height: math.unit(4, "meters"),
  30361. weight: math.unit(150, "kg"),
  30362. name: "Front",
  30363. image: {
  30364. source: "./media/characters/caledvwlch/front.svg",
  30365. extra: 1760 / 1551,
  30366. bottom: 28 / 1788
  30367. }
  30368. },
  30369. side: {
  30370. height: math.unit(4, "meters"),
  30371. weight: math.unit(150, "kg"),
  30372. name: "Side",
  30373. image: {
  30374. source: "./media/characters/caledvwlch/side.svg",
  30375. extra: 1605 / 1536,
  30376. bottom: 31 / 1636
  30377. }
  30378. },
  30379. back: {
  30380. height: math.unit(4, "meters"),
  30381. weight: math.unit(150, "kg"),
  30382. name: "Back",
  30383. image: {
  30384. source: "./media/characters/caledvwlch/back.svg",
  30385. extra: 1635 / 1565,
  30386. bottom: 27 / 1662
  30387. }
  30388. },
  30389. },
  30390. [
  30391. {
  30392. name: "\"Incognito\"",
  30393. height: math.unit(4, "meters")
  30394. },
  30395. {
  30396. name: "Small rampage",
  30397. height: math.unit(600, "meters")
  30398. },
  30399. {
  30400. name: "Mega",
  30401. height: math.unit(30, "km")
  30402. },
  30403. {
  30404. name: "Home-size",
  30405. height: math.unit(50, "km"),
  30406. default: true
  30407. },
  30408. {
  30409. name: "Giga",
  30410. height: math.unit(300, "km")
  30411. },
  30412. {
  30413. name: "Lounging",
  30414. height: math.unit(11000, "km")
  30415. },
  30416. {
  30417. name: "Planet snacking",
  30418. height: math.unit(2000000, "km")
  30419. },
  30420. ]
  30421. ))
  30422. characterMakers.push(() => makeCharacter(
  30423. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30424. {
  30425. front: {
  30426. height: math.unit(6, "feet"),
  30427. weight: math.unit(215, "lb"),
  30428. name: "Front",
  30429. image: {
  30430. source: "./media/characters/sapphire-svell/front.svg",
  30431. extra: 495 / 455,
  30432. bottom: 20 / 515
  30433. }
  30434. },
  30435. back: {
  30436. height: math.unit(6, "feet"),
  30437. weight: math.unit(216, "lb"),
  30438. name: "Back",
  30439. image: {
  30440. source: "./media/characters/sapphire-svell/back.svg",
  30441. extra: 497 / 477,
  30442. bottom: 7 / 504
  30443. }
  30444. },
  30445. maw: {
  30446. height: math.unit(1.57, "feet"),
  30447. name: "Maw",
  30448. image: {
  30449. source: "./media/characters/sapphire-svell/maw.svg"
  30450. }
  30451. },
  30452. foot: {
  30453. height: math.unit(1.07, "feet"),
  30454. name: "Foot",
  30455. image: {
  30456. source: "./media/characters/sapphire-svell/foot.svg"
  30457. }
  30458. },
  30459. toering: {
  30460. height: math.unit(1.7, "inch"),
  30461. name: "Toering",
  30462. image: {
  30463. source: "./media/characters/sapphire-svell/toering.svg"
  30464. }
  30465. },
  30466. },
  30467. [
  30468. {
  30469. name: "Normal",
  30470. height: math.unit(300, "feet"),
  30471. default: true
  30472. },
  30473. {
  30474. name: "Augmented",
  30475. height: math.unit(1250, "feet")
  30476. },
  30477. {
  30478. name: "Unleashed",
  30479. height: math.unit(3000, "feet")
  30480. },
  30481. ]
  30482. ))
  30483. characterMakers.push(() => makeCharacter(
  30484. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30485. {
  30486. side: {
  30487. height: math.unit(2 + 3 / 12, "feet"),
  30488. weight: math.unit(110, "lb"),
  30489. name: "Side",
  30490. image: {
  30491. source: "./media/characters/glitch-flux/side.svg",
  30492. extra: 997 / 805,
  30493. bottom: 20 / 1017
  30494. }
  30495. },
  30496. },
  30497. [
  30498. {
  30499. name: "Normal",
  30500. height: math.unit(2 + 3 / 12, "feet"),
  30501. default: true
  30502. },
  30503. ]
  30504. ))
  30505. characterMakers.push(() => makeCharacter(
  30506. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30507. {
  30508. front: {
  30509. height: math.unit(4, "meters"),
  30510. name: "Front",
  30511. image: {
  30512. source: "./media/characters/mid/front.svg",
  30513. extra: 507 / 476,
  30514. bottom: 17 / 524
  30515. }
  30516. },
  30517. back: {
  30518. height: math.unit(4, "meters"),
  30519. name: "Back",
  30520. image: {
  30521. source: "./media/characters/mid/back.svg",
  30522. extra: 519 / 487,
  30523. bottom: 7 / 526
  30524. }
  30525. },
  30526. stuck: {
  30527. height: math.unit(2.2, "meters"),
  30528. name: "Stuck",
  30529. image: {
  30530. source: "./media/characters/mid/stuck.svg",
  30531. extra: 1951 / 1869,
  30532. bottom: 88 / 2039
  30533. }
  30534. }
  30535. },
  30536. [
  30537. {
  30538. name: "Normal",
  30539. height: math.unit(4, "meters"),
  30540. default: true
  30541. },
  30542. {
  30543. name: "Big",
  30544. height: math.unit(10, "meters")
  30545. },
  30546. {
  30547. name: "Macro",
  30548. height: math.unit(800, "meters")
  30549. },
  30550. {
  30551. name: "Megamacro",
  30552. height: math.unit(100, "km")
  30553. },
  30554. {
  30555. name: "Overgrown",
  30556. height: math.unit(1, "parsec")
  30557. },
  30558. ]
  30559. ))
  30560. characterMakers.push(() => makeCharacter(
  30561. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30562. {
  30563. front: {
  30564. height: math.unit(2.5, "meters"),
  30565. weight: math.unit(225, "kg"),
  30566. name: "Front",
  30567. image: {
  30568. source: "./media/characters/iris/front.svg",
  30569. extra: 3348 / 3251,
  30570. bottom: 205 / 3553
  30571. }
  30572. },
  30573. maw: {
  30574. height: math.unit(0.56, "meter"),
  30575. name: "Maw",
  30576. image: {
  30577. source: "./media/characters/iris/maw.svg"
  30578. }
  30579. },
  30580. },
  30581. [
  30582. {
  30583. name: "Mewter cat",
  30584. height: math.unit(1.2, "meters")
  30585. },
  30586. {
  30587. name: "Minimacro",
  30588. height: math.unit(2.5, "meters"),
  30589. default: true
  30590. },
  30591. {
  30592. name: "Macro",
  30593. height: math.unit(180, "meters")
  30594. },
  30595. {
  30596. name: "Megamacro",
  30597. height: math.unit(2746, "meters")
  30598. },
  30599. ]
  30600. ))
  30601. characterMakers.push(() => makeCharacter(
  30602. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30603. {
  30604. front: {
  30605. height: math.unit(6, "feet"),
  30606. weight: math.unit(135, "lb"),
  30607. name: "Front",
  30608. image: {
  30609. source: "./media/characters/axel/front.svg",
  30610. extra: 908 / 908,
  30611. bottom: 58 / 966
  30612. }
  30613. },
  30614. side: {
  30615. height: math.unit(6, "feet"),
  30616. weight: math.unit(135, "lb"),
  30617. name: "Side",
  30618. image: {
  30619. source: "./media/characters/axel/side.svg",
  30620. extra: 958 / 958,
  30621. bottom: 11 / 969
  30622. }
  30623. },
  30624. back: {
  30625. height: math.unit(6, "feet"),
  30626. weight: math.unit(135, "lb"),
  30627. name: "Back",
  30628. image: {
  30629. source: "./media/characters/axel/back.svg",
  30630. extra: 887 / 887,
  30631. bottom: 34 / 921
  30632. }
  30633. },
  30634. head: {
  30635. height: math.unit(1.07, "feet"),
  30636. name: "Head",
  30637. image: {
  30638. source: "./media/characters/axel/head.svg"
  30639. }
  30640. },
  30641. beak: {
  30642. height: math.unit(1.4, "feet"),
  30643. name: "Beak",
  30644. image: {
  30645. source: "./media/characters/axel/beak.svg"
  30646. }
  30647. },
  30648. beakSide: {
  30649. height: math.unit(1.4, "feet"),
  30650. name: "Beak Side",
  30651. image: {
  30652. source: "./media/characters/axel/beak-side.svg"
  30653. }
  30654. },
  30655. sheath: {
  30656. height: math.unit(0.5, "feet"),
  30657. name: "Sheath",
  30658. image: {
  30659. source: "./media/characters/axel/sheath.svg"
  30660. }
  30661. },
  30662. dick: {
  30663. height: math.unit(0.98, "feet"),
  30664. name: "Dick",
  30665. image: {
  30666. source: "./media/characters/axel/dick.svg"
  30667. }
  30668. },
  30669. },
  30670. [
  30671. {
  30672. name: "Macro",
  30673. height: math.unit(68, "meters"),
  30674. default: true
  30675. },
  30676. ]
  30677. ))
  30678. characterMakers.push(() => makeCharacter(
  30679. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30680. {
  30681. front: {
  30682. height: math.unit(3.5, "meters"),
  30683. weight: math.unit(1200, "kg"),
  30684. name: "Front",
  30685. image: {
  30686. source: "./media/characters/joanna/front.svg",
  30687. extra: 1596 / 1488,
  30688. bottom: 29 / 1625
  30689. }
  30690. },
  30691. back: {
  30692. height: math.unit(3.5, "meters"),
  30693. weight: math.unit(1200, "kg"),
  30694. name: "Back",
  30695. image: {
  30696. source: "./media/characters/joanna/back.svg",
  30697. extra: 1594 / 1495,
  30698. bottom: 26 / 1620
  30699. }
  30700. },
  30701. frontShorts: {
  30702. height: math.unit(3.5, "meters"),
  30703. weight: math.unit(1200, "kg"),
  30704. name: "Front (Shorts)",
  30705. image: {
  30706. source: "./media/characters/joanna/front-shorts.svg",
  30707. extra: 1596 / 1488,
  30708. bottom: 29 / 1625
  30709. }
  30710. },
  30711. frontBiker: {
  30712. height: math.unit(3.5, "meters"),
  30713. weight: math.unit(1200, "kg"),
  30714. name: "Front (Biker)",
  30715. image: {
  30716. source: "./media/characters/joanna/front-biker.svg",
  30717. extra: 1596 / 1488,
  30718. bottom: 29 / 1625
  30719. }
  30720. },
  30721. backBiker: {
  30722. height: math.unit(3.5, "meters"),
  30723. weight: math.unit(1200, "kg"),
  30724. name: "Back (Biker)",
  30725. image: {
  30726. source: "./media/characters/joanna/back-biker.svg",
  30727. extra: 1594 / 1495,
  30728. bottom: 88 / 1682
  30729. }
  30730. },
  30731. bikeLeft: {
  30732. height: math.unit(2.4, "meters"),
  30733. weight: math.unit(1600, "kg"),
  30734. name: "Bike (Left)",
  30735. image: {
  30736. source: "./media/characters/joanna/bike-left.svg",
  30737. extra: 720 / 720,
  30738. bottom: 8 / 728
  30739. }
  30740. },
  30741. bikeRight: {
  30742. height: math.unit(2.4, "meters"),
  30743. weight: math.unit(1600, "kg"),
  30744. name: "Bike (Right)",
  30745. image: {
  30746. source: "./media/characters/joanna/bike-right.svg",
  30747. extra: 720 / 720,
  30748. bottom: 8 / 728
  30749. }
  30750. },
  30751. },
  30752. [
  30753. {
  30754. name: "Incognito",
  30755. height: math.unit(3.5, "meters")
  30756. },
  30757. {
  30758. name: "Casual Big",
  30759. height: math.unit(200, "meters")
  30760. },
  30761. {
  30762. name: "Macro",
  30763. height: math.unit(600, "meters")
  30764. },
  30765. {
  30766. name: "Original",
  30767. height: math.unit(20, "km"),
  30768. default: true
  30769. },
  30770. {
  30771. name: "Giga",
  30772. height: math.unit(400, "km")
  30773. },
  30774. {
  30775. name: "Lounging",
  30776. height: math.unit(1500, "km")
  30777. },
  30778. {
  30779. name: "Planetary",
  30780. height: math.unit(200000, "km")
  30781. },
  30782. ]
  30783. ))
  30784. characterMakers.push(() => makeCharacter(
  30785. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30786. {
  30787. front: {
  30788. height: math.unit(6, "feet"),
  30789. weight: math.unit(150, "lb"),
  30790. name: "Front",
  30791. image: {
  30792. source: "./media/characters/hugo-sigil/front.svg",
  30793. extra: 522 / 500,
  30794. bottom: 2 / 524
  30795. }
  30796. },
  30797. back: {
  30798. height: math.unit(6, "feet"),
  30799. weight: math.unit(150, "lb"),
  30800. name: "Back",
  30801. image: {
  30802. source: "./media/characters/hugo-sigil/back.svg",
  30803. extra: 519 / 495,
  30804. bottom: 5 / 524
  30805. }
  30806. },
  30807. maw: {
  30808. height: math.unit(1.4, "feet"),
  30809. weight: math.unit(150, "lb"),
  30810. name: "Maw",
  30811. image: {
  30812. source: "./media/characters/hugo-sigil/maw.svg"
  30813. }
  30814. },
  30815. feet: {
  30816. height: math.unit(1.56, "feet"),
  30817. weight: math.unit(150, "lb"),
  30818. name: "Feet",
  30819. image: {
  30820. source: "./media/characters/hugo-sigil/feet.svg",
  30821. extra: 177 / 177,
  30822. bottom: 12 / 189
  30823. }
  30824. },
  30825. },
  30826. [
  30827. {
  30828. name: "Normal",
  30829. height: math.unit(6, "feet")
  30830. },
  30831. {
  30832. name: "Macro",
  30833. height: math.unit(200, "feet"),
  30834. default: true
  30835. },
  30836. ]
  30837. ))
  30838. characterMakers.push(() => makeCharacter(
  30839. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30840. {
  30841. front: {
  30842. height: math.unit(6, "feet"),
  30843. weight: math.unit(150, "lb"),
  30844. name: "Front",
  30845. image: {
  30846. source: "./media/characters/peri/front.svg",
  30847. extra: 2354 / 2233,
  30848. bottom: 49 / 2403
  30849. }
  30850. },
  30851. },
  30852. [
  30853. {
  30854. name: "Really Small",
  30855. height: math.unit(1, "nm")
  30856. },
  30857. {
  30858. name: "Micro",
  30859. height: math.unit(4, "inches")
  30860. },
  30861. {
  30862. name: "Normal",
  30863. height: math.unit(7, "inches"),
  30864. default: true
  30865. },
  30866. {
  30867. name: "Macro",
  30868. height: math.unit(400, "feet")
  30869. },
  30870. {
  30871. name: "Megamacro",
  30872. height: math.unit(100, "miles")
  30873. },
  30874. ]
  30875. ))
  30876. characterMakers.push(() => makeCharacter(
  30877. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30878. {
  30879. frontSlim: {
  30880. height: math.unit(7, "feet"),
  30881. name: "Front (Slim)",
  30882. image: {
  30883. source: "./media/characters/issilora/front-slim.svg",
  30884. extra: 529 / 449,
  30885. bottom: 53 / 582
  30886. }
  30887. },
  30888. sideSlim: {
  30889. height: math.unit(7, "feet"),
  30890. name: "Side (Slim)",
  30891. image: {
  30892. source: "./media/characters/issilora/side-slim.svg",
  30893. extra: 570 / 480,
  30894. bottom: 30 / 600
  30895. }
  30896. },
  30897. backSlim: {
  30898. height: math.unit(7, "feet"),
  30899. name: "Back (Slim)",
  30900. image: {
  30901. source: "./media/characters/issilora/back-slim.svg",
  30902. extra: 537 / 455,
  30903. bottom: 46 / 583
  30904. }
  30905. },
  30906. frontBuff: {
  30907. height: math.unit(7, "feet"),
  30908. name: "Front (Buff)",
  30909. image: {
  30910. source: "./media/characters/issilora/front-buff.svg",
  30911. extra: 2310 / 2035,
  30912. bottom: 335 / 2645
  30913. }
  30914. },
  30915. head: {
  30916. height: math.unit(1.94, "feet"),
  30917. name: "Head",
  30918. image: {
  30919. source: "./media/characters/issilora/head.svg"
  30920. }
  30921. },
  30922. },
  30923. [
  30924. {
  30925. name: "Minimum",
  30926. height: math.unit(7, "feet")
  30927. },
  30928. {
  30929. name: "Comfortable",
  30930. height: math.unit(17, "feet")
  30931. },
  30932. {
  30933. name: "Fun Size",
  30934. height: math.unit(47, "feet")
  30935. },
  30936. {
  30937. name: "Natural Macro",
  30938. height: math.unit(137, "feet"),
  30939. default: true
  30940. },
  30941. {
  30942. name: "Maximum Kaiju",
  30943. height: math.unit(397, "feet")
  30944. },
  30945. ]
  30946. ))
  30947. characterMakers.push(() => makeCharacter(
  30948. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30949. {
  30950. front: {
  30951. height: math.unit(50 + 9/12, "feet"),
  30952. weight: math.unit(32.8, "tons"),
  30953. name: "Front",
  30954. image: {
  30955. source: "./media/characters/irb'iiritaahn/front.svg",
  30956. extra: 1878/1826,
  30957. bottom: 326/2204
  30958. }
  30959. },
  30960. back: {
  30961. height: math.unit(50 + 9/12, "feet"),
  30962. weight: math.unit(32.8, "tons"),
  30963. name: "Back",
  30964. image: {
  30965. source: "./media/characters/irb'iiritaahn/back.svg",
  30966. extra: 2052/2018,
  30967. bottom: 152/2204
  30968. }
  30969. },
  30970. head: {
  30971. height: math.unit(12.86, "feet"),
  30972. name: "Head",
  30973. image: {
  30974. source: "./media/characters/irb'iiritaahn/head.svg"
  30975. }
  30976. },
  30977. maw: {
  30978. height: math.unit(9.66, "feet"),
  30979. name: "Maw",
  30980. image: {
  30981. source: "./media/characters/irb'iiritaahn/maw.svg"
  30982. }
  30983. },
  30984. frontDick: {
  30985. height: math.unit(8.78461, "feet"),
  30986. name: "Front Dick",
  30987. image: {
  30988. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30989. }
  30990. },
  30991. rearDick: {
  30992. height: math.unit(8.78461, "feet"),
  30993. name: "Rear Dick",
  30994. image: {
  30995. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30996. }
  30997. },
  30998. rearDickUnfolded: {
  30999. height: math.unit(8.78, "feet"),
  31000. name: "Rear Dick (Unfolded)",
  31001. image: {
  31002. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31003. }
  31004. },
  31005. wings: {
  31006. height: math.unit(43, "feet"),
  31007. name: "Wings",
  31008. image: {
  31009. source: "./media/characters/irb'iiritaahn/wings.svg"
  31010. }
  31011. },
  31012. },
  31013. [
  31014. {
  31015. name: "Macro",
  31016. height: math.unit(50 + 9/12, "feet"),
  31017. default: true
  31018. },
  31019. ]
  31020. ))
  31021. characterMakers.push(() => makeCharacter(
  31022. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31023. {
  31024. front: {
  31025. height: math.unit(205, "cm"),
  31026. weight: math.unit(102, "kg"),
  31027. name: "Front",
  31028. image: {
  31029. source: "./media/characters/irbisgreif/front.svg",
  31030. extra: 785/706,
  31031. bottom: 13/798
  31032. }
  31033. },
  31034. back: {
  31035. height: math.unit(205, "cm"),
  31036. weight: math.unit(102, "kg"),
  31037. name: "Back",
  31038. image: {
  31039. source: "./media/characters/irbisgreif/back.svg",
  31040. extra: 713/701,
  31041. bottom: 26/739
  31042. }
  31043. },
  31044. frontDressed: {
  31045. height: math.unit(216, "cm"),
  31046. weight: math.unit(102, "kg"),
  31047. name: "Front-dressed",
  31048. image: {
  31049. source: "./media/characters/irbisgreif/front-dressed.svg",
  31050. extra: 902/776,
  31051. bottom: 14/916
  31052. }
  31053. },
  31054. sideDressed: {
  31055. height: math.unit(195, "cm"),
  31056. weight: math.unit(102, "kg"),
  31057. name: "Side-dressed",
  31058. image: {
  31059. source: "./media/characters/irbisgreif/side-dressed.svg",
  31060. extra: 788/688,
  31061. bottom: 21/809
  31062. }
  31063. },
  31064. backDressed: {
  31065. height: math.unit(216, "cm"),
  31066. weight: math.unit(102, "kg"),
  31067. name: "Back-dressed",
  31068. image: {
  31069. source: "./media/characters/irbisgreif/back-dressed.svg",
  31070. extra: 901/783,
  31071. bottom: 10/911
  31072. }
  31073. },
  31074. dick: {
  31075. height: math.unit(0.49, "feet"),
  31076. name: "Dick",
  31077. image: {
  31078. source: "./media/characters/irbisgreif/dick.svg"
  31079. }
  31080. },
  31081. wingTop: {
  31082. height: math.unit(1.93 , "feet"),
  31083. name: "Wing-top",
  31084. image: {
  31085. source: "./media/characters/irbisgreif/wing-top.svg"
  31086. }
  31087. },
  31088. wingBottom: {
  31089. height: math.unit(1.93 , "feet"),
  31090. name: "Wing-bottom",
  31091. image: {
  31092. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31093. }
  31094. },
  31095. },
  31096. [
  31097. {
  31098. name: "Normal",
  31099. height: math.unit(216, "cm"),
  31100. default: true
  31101. },
  31102. ]
  31103. ))
  31104. characterMakers.push(() => makeCharacter(
  31105. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31106. {
  31107. front: {
  31108. height: math.unit(6, "feet"),
  31109. weight: math.unit(150, "lb"),
  31110. name: "Front",
  31111. image: {
  31112. source: "./media/characters/pride/front.svg",
  31113. extra: 1299/1230,
  31114. bottom: 18/1317
  31115. }
  31116. },
  31117. },
  31118. [
  31119. {
  31120. name: "Normal",
  31121. height: math.unit(7, "feet")
  31122. },
  31123. {
  31124. name: "Mini-macro",
  31125. height: math.unit(11, "feet")
  31126. },
  31127. {
  31128. name: "Macro",
  31129. height: math.unit(15, "meters"),
  31130. default: true
  31131. },
  31132. {
  31133. name: "Macro+",
  31134. height: math.unit(40, "meters")
  31135. },
  31136. ]
  31137. ))
  31138. characterMakers.push(() => makeCharacter(
  31139. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31140. {
  31141. front: {
  31142. height: math.unit(4 + 2 / 12, "feet"),
  31143. weight: math.unit(95, "lb"),
  31144. name: "Front",
  31145. image: {
  31146. source: "./media/characters/vaelophis-nyx/front.svg",
  31147. extra: 2532/2330,
  31148. bottom: 0/2532
  31149. }
  31150. },
  31151. back: {
  31152. height: math.unit(4 + 2 / 12, "feet"),
  31153. weight: math.unit(95, "lb"),
  31154. name: "Back",
  31155. image: {
  31156. source: "./media/characters/vaelophis-nyx/back.svg",
  31157. extra: 2484/2361,
  31158. bottom: 0/2484
  31159. }
  31160. },
  31161. feralSide: {
  31162. height: math.unit(2 + 1/12, "feet"),
  31163. weight: math.unit(20, "lb"),
  31164. name: "Feral (Side)",
  31165. image: {
  31166. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31167. extra: 1721/1581,
  31168. bottom: 70/1791
  31169. }
  31170. },
  31171. feralLazing: {
  31172. height: math.unit(1.08, "feet"),
  31173. weight: math.unit(20, "lb"),
  31174. name: "Feral (Lazing)",
  31175. image: {
  31176. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31177. extra: 822/822,
  31178. bottom: 248/1070
  31179. }
  31180. },
  31181. ear: {
  31182. height: math.unit(0.416, "feet"),
  31183. name: "Ear",
  31184. image: {
  31185. source: "./media/characters/vaelophis-nyx/ear.svg"
  31186. }
  31187. },
  31188. eye: {
  31189. height: math.unit(0.0748, "feet"),
  31190. name: "Eye",
  31191. image: {
  31192. source: "./media/characters/vaelophis-nyx/eye.svg"
  31193. }
  31194. },
  31195. mouth: {
  31196. height: math.unit(0.378, "feet"),
  31197. name: "Mouth",
  31198. image: {
  31199. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31200. }
  31201. },
  31202. spade: {
  31203. height: math.unit(0.55, "feet"),
  31204. name: "Spade",
  31205. image: {
  31206. source: "./media/characters/vaelophis-nyx/spade.svg"
  31207. }
  31208. },
  31209. },
  31210. [
  31211. {
  31212. name: "Normal",
  31213. height: math.unit(4 + 2/12, "feet"),
  31214. default: true
  31215. },
  31216. ]
  31217. ))
  31218. characterMakers.push(() => makeCharacter(
  31219. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31220. {
  31221. front: {
  31222. height: math.unit(7, "feet"),
  31223. weight: math.unit(231, "lb"),
  31224. name: "Front",
  31225. image: {
  31226. source: "./media/characters/flux/front.svg",
  31227. extra: 919/871,
  31228. bottom: 0/919
  31229. }
  31230. },
  31231. back: {
  31232. height: math.unit(7, "feet"),
  31233. weight: math.unit(231, "lb"),
  31234. name: "Back",
  31235. image: {
  31236. source: "./media/characters/flux/back.svg",
  31237. extra: 1040/992,
  31238. bottom: 0/1040
  31239. }
  31240. },
  31241. frontDressed: {
  31242. height: math.unit(7, "feet"),
  31243. weight: math.unit(231, "lb"),
  31244. name: "Front (Dressed)",
  31245. image: {
  31246. source: "./media/characters/flux/front-dressed.svg",
  31247. extra: 919/871,
  31248. bottom: 0/919
  31249. }
  31250. },
  31251. feralSide: {
  31252. height: math.unit(5, "feet"),
  31253. weight: math.unit(150, "lb"),
  31254. name: "Feral (Side)",
  31255. image: {
  31256. source: "./media/characters/flux/feral-side.svg",
  31257. extra: 598/528,
  31258. bottom: 28/626
  31259. }
  31260. },
  31261. head: {
  31262. height: math.unit(1.585, "feet"),
  31263. name: "Head",
  31264. image: {
  31265. source: "./media/characters/flux/head.svg"
  31266. }
  31267. },
  31268. headSide: {
  31269. height: math.unit(1.74, "feet"),
  31270. name: "Head (Side)",
  31271. image: {
  31272. source: "./media/characters/flux/head-side.svg"
  31273. }
  31274. },
  31275. headSideFire: {
  31276. height: math.unit(1.76, "feet"),
  31277. name: "Head (Side, Fire)",
  31278. image: {
  31279. source: "./media/characters/flux/head-side-fire.svg"
  31280. }
  31281. },
  31282. },
  31283. [
  31284. {
  31285. name: "Normal",
  31286. height: math.unit(7, "feet"),
  31287. default: true
  31288. },
  31289. ]
  31290. ))
  31291. characterMakers.push(() => makeCharacter(
  31292. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31293. {
  31294. front: {
  31295. height: math.unit(9, "feet"),
  31296. weight: math.unit(1012, "lb"),
  31297. name: "Front",
  31298. image: {
  31299. source: "./media/characters/ulfra-lupae/front.svg",
  31300. extra: 1083/1011,
  31301. bottom: 67/1150
  31302. }
  31303. },
  31304. },
  31305. [
  31306. {
  31307. name: "Micro",
  31308. height: math.unit(6, "inches")
  31309. },
  31310. {
  31311. name: "Socializing",
  31312. height: math.unit(6 + 5/12, "feet")
  31313. },
  31314. {
  31315. name: "Normal",
  31316. height: math.unit(9, "feet"),
  31317. default: true
  31318. },
  31319. {
  31320. name: "Macro",
  31321. height: math.unit(150, "feet")
  31322. },
  31323. ]
  31324. ))
  31325. characterMakers.push(() => makeCharacter(
  31326. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31327. {
  31328. front: {
  31329. height: math.unit(5 + 2/12, "feet"),
  31330. weight: math.unit(120, "lb"),
  31331. name: "Front",
  31332. image: {
  31333. source: "./media/characters/timber/front.svg",
  31334. extra: 2814/2705,
  31335. bottom: 181/2995
  31336. }
  31337. },
  31338. },
  31339. [
  31340. {
  31341. name: "Normal",
  31342. height: math.unit(5 + 2/12, "feet"),
  31343. default: true
  31344. },
  31345. ]
  31346. ))
  31347. characterMakers.push(() => makeCharacter(
  31348. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31349. {
  31350. front: {
  31351. height: math.unit(5 + 7/12, "feet"),
  31352. weight: math.unit(220, "lb"),
  31353. name: "Front",
  31354. image: {
  31355. source: "./media/characters/nicki/front.svg",
  31356. extra: 453/419,
  31357. bottom: 7/460
  31358. }
  31359. },
  31360. frontAlt: {
  31361. height: math.unit(5 + 7/12, "feet"),
  31362. weight: math.unit(220, "lb"),
  31363. name: "Front-alt",
  31364. image: {
  31365. source: "./media/characters/nicki/front-alt.svg",
  31366. extra: 435/411,
  31367. bottom: 12/447
  31368. }
  31369. },
  31370. back: {
  31371. height: math.unit(5 + 7/12, "feet"),
  31372. weight: math.unit(220, "lb"),
  31373. name: "Back",
  31374. image: {
  31375. source: "./media/characters/nicki/back.svg",
  31376. extra: 440/413,
  31377. bottom: 19/459
  31378. }
  31379. },
  31380. taur: {
  31381. height: math.unit(7 + 6/12, "feet"),
  31382. weight: math.unit(700, "lb"),
  31383. name: "Taur",
  31384. image: {
  31385. source: "./media/characters/nicki/taur.svg",
  31386. extra: 975/773,
  31387. bottom: 0/975
  31388. }
  31389. },
  31390. frontNsfw: {
  31391. height: math.unit(5 + 7/12, "feet"),
  31392. weight: math.unit(220, "lb"),
  31393. name: "Front (NSFW)",
  31394. image: {
  31395. source: "./media/characters/nicki/front-nsfw.svg",
  31396. extra: 453/419,
  31397. bottom: 7/460
  31398. }
  31399. },
  31400. frontNsfwAlt: {
  31401. height: math.unit(5 + 7/12, "feet"),
  31402. weight: math.unit(220, "lb"),
  31403. name: "Front (Alt, NSFW)",
  31404. image: {
  31405. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31406. extra: 435/411,
  31407. bottom: 12/447
  31408. }
  31409. },
  31410. backNsfw: {
  31411. height: math.unit(5 + 7/12, "feet"),
  31412. weight: math.unit(220, "lb"),
  31413. name: "Back (NSFW)",
  31414. image: {
  31415. source: "./media/characters/nicki/back-nsfw.svg",
  31416. extra: 440/413,
  31417. bottom: 19/459
  31418. }
  31419. },
  31420. head: {
  31421. height: math.unit(2.1, "feet"),
  31422. name: "Head",
  31423. image: {
  31424. source: "./media/characters/nicki/head.svg"
  31425. }
  31426. },
  31427. paw: {
  31428. height: math.unit(1.88, "feet"),
  31429. name: "Paw",
  31430. image: {
  31431. source: "./media/characters/nicki/paw.svg"
  31432. }
  31433. },
  31434. },
  31435. [
  31436. {
  31437. name: "Normal",
  31438. height: math.unit(5 + 7/12, "feet"),
  31439. default: true
  31440. },
  31441. ]
  31442. ))
  31443. characterMakers.push(() => makeCharacter(
  31444. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31445. {
  31446. front: {
  31447. height: math.unit(7 + 10/12, "feet"),
  31448. weight: math.unit(3.5, "tons"),
  31449. name: "Front",
  31450. image: {
  31451. source: "./media/characters/lee/front.svg",
  31452. extra: 1773/1615,
  31453. bottom: 86/1859
  31454. }
  31455. },
  31456. hand: {
  31457. height: math.unit(1.78, "feet"),
  31458. name: "Hand",
  31459. image: {
  31460. source: "./media/characters/lee/hand.svg"
  31461. }
  31462. },
  31463. maw: {
  31464. height: math.unit(1.18, "feet"),
  31465. name: "Maw",
  31466. image: {
  31467. source: "./media/characters/lee/maw.svg"
  31468. }
  31469. },
  31470. },
  31471. [
  31472. {
  31473. name: "Normal",
  31474. height: math.unit(7 + 10/12, "feet"),
  31475. default: true
  31476. },
  31477. ]
  31478. ))
  31479. characterMakers.push(() => makeCharacter(
  31480. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31481. {
  31482. front: {
  31483. height: math.unit(9, "feet"),
  31484. name: "Front",
  31485. image: {
  31486. source: "./media/characters/guti/front.svg",
  31487. extra: 4551/4355,
  31488. bottom: 123/4674
  31489. }
  31490. },
  31491. tongue: {
  31492. height: math.unit(1, "feet"),
  31493. name: "Tongue",
  31494. image: {
  31495. source: "./media/characters/guti/tongue.svg"
  31496. }
  31497. },
  31498. paw: {
  31499. height: math.unit(1.18, "feet"),
  31500. name: "Paw",
  31501. image: {
  31502. source: "./media/characters/guti/paw.svg"
  31503. }
  31504. },
  31505. },
  31506. [
  31507. {
  31508. name: "Normal",
  31509. height: math.unit(9, "feet"),
  31510. default: true
  31511. },
  31512. ]
  31513. ))
  31514. characterMakers.push(() => makeCharacter(
  31515. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31516. {
  31517. side: {
  31518. height: math.unit(5, "meters"),
  31519. name: "Side",
  31520. image: {
  31521. source: "./media/characters/vesper/side.svg",
  31522. extra: 1605/1518,
  31523. bottom: 0/1605
  31524. }
  31525. },
  31526. },
  31527. [
  31528. {
  31529. name: "Small",
  31530. height: math.unit(5, "meters")
  31531. },
  31532. {
  31533. name: "Sage",
  31534. height: math.unit(100, "meters"),
  31535. default: true
  31536. },
  31537. {
  31538. name: "Fun Size",
  31539. height: math.unit(600, "meters")
  31540. },
  31541. {
  31542. name: "Goddess",
  31543. height: math.unit(20000, "km")
  31544. },
  31545. {
  31546. name: "Maximum",
  31547. height: math.unit(5, "galaxies")
  31548. },
  31549. ]
  31550. ))
  31551. characterMakers.push(() => makeCharacter(
  31552. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31553. {
  31554. front: {
  31555. height: math.unit(6 + 3/12, "feet"),
  31556. weight: math.unit(190, "lb"),
  31557. name: "Front",
  31558. image: {
  31559. source: "./media/characters/gawain/front.svg",
  31560. extra: 2222/2139,
  31561. bottom: 90/2312
  31562. }
  31563. },
  31564. back: {
  31565. height: math.unit(6 + 3/12, "feet"),
  31566. weight: math.unit(190, "lb"),
  31567. name: "Back",
  31568. image: {
  31569. source: "./media/characters/gawain/back.svg",
  31570. extra: 2199/2111,
  31571. bottom: 73/2272
  31572. }
  31573. },
  31574. },
  31575. [
  31576. {
  31577. name: "Normal",
  31578. height: math.unit(6 + 3/12, "feet"),
  31579. default: true
  31580. },
  31581. ]
  31582. ))
  31583. characterMakers.push(() => makeCharacter(
  31584. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31585. {
  31586. side: {
  31587. height: math.unit(3.5, "meters"),
  31588. weight: math.unit(16000, "lb"),
  31589. name: "Side",
  31590. image: {
  31591. source: "./media/characters/dascalti/side.svg",
  31592. extra: 392/273,
  31593. bottom: 47/439
  31594. }
  31595. },
  31596. breath: {
  31597. height: math.unit(7.4, "feet"),
  31598. name: "Breath",
  31599. image: {
  31600. source: "./media/characters/dascalti/breath.svg"
  31601. }
  31602. },
  31603. fed: {
  31604. height: math.unit(3.6, "meters"),
  31605. weight: math.unit(16000, "lb"),
  31606. name: "Fed",
  31607. image: {
  31608. source: "./media/characters/dascalti/fed.svg",
  31609. extra: 1419/820,
  31610. bottom: 95/1514
  31611. }
  31612. },
  31613. },
  31614. [
  31615. {
  31616. name: "Normal",
  31617. height: math.unit(3.5, "meters"),
  31618. default: true
  31619. },
  31620. ]
  31621. ))
  31622. characterMakers.push(() => makeCharacter(
  31623. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31624. {
  31625. front: {
  31626. height: math.unit(3 + 5/12, "feet"),
  31627. name: "Front",
  31628. image: {
  31629. source: "./media/characters/mauve/front.svg",
  31630. extra: 1126/1033,
  31631. bottom: 65/1191
  31632. }
  31633. },
  31634. side: {
  31635. height: math.unit(3 + 5/12, "feet"),
  31636. name: "Side",
  31637. image: {
  31638. source: "./media/characters/mauve/side.svg",
  31639. extra: 1089/1001,
  31640. bottom: 29/1118
  31641. }
  31642. },
  31643. back: {
  31644. height: math.unit(3 + 5/12, "feet"),
  31645. name: "Back",
  31646. image: {
  31647. source: "./media/characters/mauve/back.svg",
  31648. extra: 1173/1053,
  31649. bottom: 109/1282
  31650. }
  31651. },
  31652. },
  31653. [
  31654. {
  31655. name: "Normal",
  31656. height: math.unit(3 + 5/12, "feet"),
  31657. default: true
  31658. },
  31659. ]
  31660. ))
  31661. characterMakers.push(() => makeCharacter(
  31662. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31663. {
  31664. front: {
  31665. height: math.unit(6 + 3/12, "feet"),
  31666. weight: math.unit(430, "lb"),
  31667. name: "Front",
  31668. image: {
  31669. source: "./media/characters/carlos/front.svg",
  31670. extra: 1964/1913,
  31671. bottom: 70/2034
  31672. }
  31673. },
  31674. },
  31675. [
  31676. {
  31677. name: "Normal",
  31678. height: math.unit(6 + 3/12, "feet"),
  31679. default: true
  31680. },
  31681. ]
  31682. ))
  31683. characterMakers.push(() => makeCharacter(
  31684. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31685. {
  31686. back: {
  31687. height: math.unit(5 + 10/12, "feet"),
  31688. weight: math.unit(200, "lb"),
  31689. name: "Back",
  31690. image: {
  31691. source: "./media/characters/jax/back.svg",
  31692. extra: 764/739,
  31693. bottom: 25/789
  31694. }
  31695. },
  31696. },
  31697. [
  31698. {
  31699. name: "Normal",
  31700. height: math.unit(5 + 10/12, "feet"),
  31701. default: true
  31702. },
  31703. ]
  31704. ))
  31705. characterMakers.push(() => makeCharacter(
  31706. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31707. {
  31708. front: {
  31709. height: math.unit(8, "feet"),
  31710. weight: math.unit(250, "lb"),
  31711. name: "Front",
  31712. image: {
  31713. source: "./media/characters/eikthynir/front.svg",
  31714. extra: 1332/1166,
  31715. bottom: 82/1414
  31716. }
  31717. },
  31718. back: {
  31719. height: math.unit(8, "feet"),
  31720. weight: math.unit(250, "lb"),
  31721. name: "Back",
  31722. image: {
  31723. source: "./media/characters/eikthynir/back.svg",
  31724. extra: 1342/1190,
  31725. bottom: 19/1361
  31726. }
  31727. },
  31728. dick: {
  31729. height: math.unit(2.35, "feet"),
  31730. name: "Dick",
  31731. image: {
  31732. source: "./media/characters/eikthynir/dick.svg"
  31733. }
  31734. },
  31735. },
  31736. [
  31737. {
  31738. name: "Normal",
  31739. height: math.unit(8, "feet"),
  31740. default: true
  31741. },
  31742. ]
  31743. ))
  31744. characterMakers.push(() => makeCharacter(
  31745. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31746. {
  31747. front: {
  31748. height: math.unit(99, "meters"),
  31749. weight: math.unit(13000, "tons"),
  31750. name: "Front",
  31751. image: {
  31752. source: "./media/characters/zlmos/front.svg",
  31753. extra: 2202/1992,
  31754. bottom: 315/2517
  31755. }
  31756. },
  31757. },
  31758. [
  31759. {
  31760. name: "Macro",
  31761. height: math.unit(99, "meters"),
  31762. default: true
  31763. },
  31764. ]
  31765. ))
  31766. characterMakers.push(() => makeCharacter(
  31767. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31768. {
  31769. front: {
  31770. height: math.unit(6 + 5/12, "feet"),
  31771. name: "Front",
  31772. image: {
  31773. source: "./media/characters/purri/front.svg",
  31774. extra: 1698/1610,
  31775. bottom: 32/1730
  31776. }
  31777. },
  31778. frontAlt: {
  31779. height: math.unit(6 + 5/12, "feet"),
  31780. name: "Front (Alt)",
  31781. image: {
  31782. source: "./media/characters/purri/front-alt.svg",
  31783. extra: 450/420,
  31784. bottom: 26/476
  31785. }
  31786. },
  31787. boots: {
  31788. height: math.unit(5.5, "feet"),
  31789. name: "Boots",
  31790. image: {
  31791. source: "./media/characters/purri/boots.svg",
  31792. extra: 905/853,
  31793. bottom: 18/923
  31794. }
  31795. },
  31796. lying: {
  31797. height: math.unit(2, "feet"),
  31798. name: "Lying",
  31799. image: {
  31800. source: "./media/characters/purri/lying.svg",
  31801. extra: 940/843,
  31802. bottom: 146/1086
  31803. }
  31804. },
  31805. devious: {
  31806. height: math.unit(1.77, "feet"),
  31807. name: "Devious",
  31808. image: {
  31809. source: "./media/characters/purri/devious.svg",
  31810. extra: 1440/1155,
  31811. bottom: 147/1587
  31812. }
  31813. },
  31814. bean: {
  31815. height: math.unit(1.94, "feet"),
  31816. name: "Bean",
  31817. image: {
  31818. source: "./media/characters/purri/bean.svg"
  31819. }
  31820. },
  31821. },
  31822. [
  31823. {
  31824. name: "Micro",
  31825. height: math.unit(1, "mm")
  31826. },
  31827. {
  31828. name: "Normal",
  31829. height: math.unit(6 + 5/12, "feet"),
  31830. default: true
  31831. },
  31832. {
  31833. name: "Macro :3c",
  31834. height: math.unit(2, "miles")
  31835. },
  31836. ]
  31837. ))
  31838. characterMakers.push(() => makeCharacter(
  31839. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31840. {
  31841. front: {
  31842. height: math.unit(6 + 2/12, "feet"),
  31843. weight: math.unit(250, "lb"),
  31844. name: "Front",
  31845. image: {
  31846. source: "./media/characters/moonlight/front.svg",
  31847. extra: 1044/908,
  31848. bottom: 56/1100
  31849. }
  31850. },
  31851. feral: {
  31852. height: math.unit(3 + 1/12, "feet"),
  31853. weight: math.unit(50, "kg"),
  31854. name: "Feral",
  31855. image: {
  31856. source: "./media/characters/moonlight/feral.svg",
  31857. extra: 3705/2791,
  31858. bottom: 145/3850
  31859. }
  31860. },
  31861. paw: {
  31862. height: math.unit(1, "feet"),
  31863. name: "Paw",
  31864. image: {
  31865. source: "./media/characters/moonlight/paw.svg"
  31866. }
  31867. },
  31868. paws: {
  31869. height: math.unit(0.98, "feet"),
  31870. name: "Paws",
  31871. image: {
  31872. source: "./media/characters/moonlight/paws.svg",
  31873. extra: 939/939,
  31874. bottom: 50/989
  31875. }
  31876. },
  31877. mouth: {
  31878. height: math.unit(0.48, "feet"),
  31879. name: "Mouth",
  31880. image: {
  31881. source: "./media/characters/moonlight/mouth.svg"
  31882. }
  31883. },
  31884. dick: {
  31885. height: math.unit(1.46, "feet"),
  31886. name: "Dick",
  31887. image: {
  31888. source: "./media/characters/moonlight/dick.svg"
  31889. }
  31890. },
  31891. },
  31892. [
  31893. {
  31894. name: "Normal",
  31895. height: math.unit(6 + 2/12, "feet"),
  31896. default: true
  31897. },
  31898. {
  31899. name: "Macro",
  31900. height: math.unit(300, "feet")
  31901. },
  31902. {
  31903. name: "Macro+",
  31904. height: math.unit(1, "mile")
  31905. },
  31906. {
  31907. name: "Mt. Moon",
  31908. height: math.unit(5, "miles")
  31909. },
  31910. {
  31911. name: "Megamacro",
  31912. height: math.unit(15, "miles")
  31913. },
  31914. ]
  31915. ))
  31916. characterMakers.push(() => makeCharacter(
  31917. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31918. {
  31919. back: {
  31920. height: math.unit(6, "feet"),
  31921. weight: math.unit(150, "lb"),
  31922. name: "Back",
  31923. image: {
  31924. source: "./media/characters/sylen/back.svg",
  31925. extra: 1335/1273,
  31926. bottom: 107/1442
  31927. }
  31928. },
  31929. },
  31930. [
  31931. {
  31932. name: "Normal",
  31933. height: math.unit(5 + 5/12, "feet")
  31934. },
  31935. {
  31936. name: "Megamacro",
  31937. height: math.unit(3, "miles"),
  31938. default: true
  31939. },
  31940. ]
  31941. ))
  31942. characterMakers.push(() => makeCharacter(
  31943. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31944. {
  31945. front: {
  31946. height: math.unit(6, "feet"),
  31947. weight: math.unit(190, "lb"),
  31948. name: "Front",
  31949. image: {
  31950. source: "./media/characters/huttser/front.svg",
  31951. extra: 1152/1058,
  31952. bottom: 23/1175
  31953. }
  31954. },
  31955. side: {
  31956. height: math.unit(6, "feet"),
  31957. weight: math.unit(190, "lb"),
  31958. name: "Side",
  31959. image: {
  31960. source: "./media/characters/huttser/side.svg",
  31961. extra: 1174/1065,
  31962. bottom: 18/1192
  31963. }
  31964. },
  31965. back: {
  31966. height: math.unit(6, "feet"),
  31967. weight: math.unit(190, "lb"),
  31968. name: "Back",
  31969. image: {
  31970. source: "./media/characters/huttser/back.svg",
  31971. extra: 1158/1056,
  31972. bottom: 12/1170
  31973. }
  31974. },
  31975. },
  31976. [
  31977. ]
  31978. ))
  31979. characterMakers.push(() => makeCharacter(
  31980. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31981. {
  31982. side: {
  31983. height: math.unit(12 + 9/12, "feet"),
  31984. weight: math.unit(15000, "lb"),
  31985. name: "Side",
  31986. image: {
  31987. source: "./media/characters/faan/side.svg",
  31988. extra: 2747/2697,
  31989. bottom: 0/2747
  31990. }
  31991. },
  31992. front: {
  31993. height: math.unit(12 + 9/12, "feet"),
  31994. weight: math.unit(15000, "lb"),
  31995. name: "Front",
  31996. image: {
  31997. source: "./media/characters/faan/front.svg",
  31998. extra: 607/571,
  31999. bottom: 24/631
  32000. }
  32001. },
  32002. head: {
  32003. height: math.unit(2.85, "feet"),
  32004. name: "Head",
  32005. image: {
  32006. source: "./media/characters/faan/head.svg"
  32007. }
  32008. },
  32009. headAlt: {
  32010. height: math.unit(3.13, "feet"),
  32011. name: "Head-alt",
  32012. image: {
  32013. source: "./media/characters/faan/head-alt.svg"
  32014. }
  32015. },
  32016. },
  32017. [
  32018. {
  32019. name: "Normal",
  32020. height: math.unit(12 + 9/12, "feet"),
  32021. default: true
  32022. },
  32023. ]
  32024. ))
  32025. characterMakers.push(() => makeCharacter(
  32026. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32027. {
  32028. front: {
  32029. height: math.unit(6, "feet"),
  32030. weight: math.unit(300, "lb"),
  32031. name: "Front",
  32032. image: {
  32033. source: "./media/characters/tanio/front.svg",
  32034. extra: 711/673,
  32035. bottom: 25/736
  32036. }
  32037. },
  32038. },
  32039. [
  32040. {
  32041. name: "Normal",
  32042. height: math.unit(6, "feet"),
  32043. default: true
  32044. },
  32045. ]
  32046. ))
  32047. characterMakers.push(() => makeCharacter(
  32048. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32049. {
  32050. front: {
  32051. height: math.unit(3, "inches"),
  32052. name: "Front",
  32053. image: {
  32054. source: "./media/characters/noboru/front.svg",
  32055. extra: 1039/932,
  32056. bottom: 18/1057
  32057. }
  32058. },
  32059. },
  32060. [
  32061. {
  32062. name: "Micro",
  32063. height: math.unit(3, "inches"),
  32064. default: true
  32065. },
  32066. ]
  32067. ))
  32068. characterMakers.push(() => makeCharacter(
  32069. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32070. {
  32071. front: {
  32072. height: math.unit(1.85, "meters"),
  32073. weight: math.unit(80, "kg"),
  32074. name: "Front",
  32075. image: {
  32076. source: "./media/characters/daniel-barrett/front.svg",
  32077. extra: 355/337,
  32078. bottom: 9/364
  32079. }
  32080. },
  32081. },
  32082. [
  32083. {
  32084. name: "Pico",
  32085. height: math.unit(0.0433, "mm")
  32086. },
  32087. {
  32088. name: "Nano",
  32089. height: math.unit(1.5, "mm")
  32090. },
  32091. {
  32092. name: "Micro",
  32093. height: math.unit(5.3, "cm"),
  32094. default: true
  32095. },
  32096. {
  32097. name: "Normal",
  32098. height: math.unit(1.85, "meters")
  32099. },
  32100. {
  32101. name: "Macro",
  32102. height: math.unit(64.7, "meters")
  32103. },
  32104. {
  32105. name: "Megamacro",
  32106. height: math.unit(2.26, "km")
  32107. },
  32108. {
  32109. name: "Gigamacro",
  32110. height: math.unit(79, "km")
  32111. },
  32112. {
  32113. name: "Teramacro",
  32114. height: math.unit(2765, "km")
  32115. },
  32116. {
  32117. name: "Petamacro",
  32118. height: math.unit(96678, "km")
  32119. },
  32120. ]
  32121. ))
  32122. characterMakers.push(() => makeCharacter(
  32123. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32124. {
  32125. front: {
  32126. height: math.unit(30, "meters"),
  32127. weight: math.unit(400, "tons"),
  32128. name: "Front",
  32129. image: {
  32130. source: "./media/characters/zeel/front.svg",
  32131. extra: 2599/2599,
  32132. bottom: 226/2825
  32133. }
  32134. },
  32135. },
  32136. [
  32137. {
  32138. name: "Macro",
  32139. height: math.unit(30, "meters"),
  32140. default: true
  32141. },
  32142. ]
  32143. ))
  32144. characterMakers.push(() => makeCharacter(
  32145. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32146. {
  32147. front: {
  32148. height: math.unit(6 + 7/12, "feet"),
  32149. weight: math.unit(210, "lb"),
  32150. name: "Front",
  32151. image: {
  32152. source: "./media/characters/tarn/front.svg",
  32153. extra: 3517/3220,
  32154. bottom: 91/3608
  32155. }
  32156. },
  32157. back: {
  32158. height: math.unit(6 + 7/12, "feet"),
  32159. weight: math.unit(210, "lb"),
  32160. name: "Back",
  32161. image: {
  32162. source: "./media/characters/tarn/back.svg",
  32163. extra: 3566/3241,
  32164. bottom: 34/3600
  32165. }
  32166. },
  32167. dick: {
  32168. height: math.unit(1.65, "feet"),
  32169. name: "Dick",
  32170. image: {
  32171. source: "./media/characters/tarn/dick.svg"
  32172. }
  32173. },
  32174. paw: {
  32175. height: math.unit(1.80, "feet"),
  32176. name: "Paw",
  32177. image: {
  32178. source: "./media/characters/tarn/paw.svg"
  32179. }
  32180. },
  32181. tongue: {
  32182. height: math.unit(0.97, "feet"),
  32183. name: "Tongue",
  32184. image: {
  32185. source: "./media/characters/tarn/tongue.svg"
  32186. }
  32187. },
  32188. },
  32189. [
  32190. {
  32191. name: "Micro",
  32192. height: math.unit(4, "inches")
  32193. },
  32194. {
  32195. name: "Normal",
  32196. height: math.unit(6 + 7/12, "feet"),
  32197. default: true
  32198. },
  32199. {
  32200. name: "Macro",
  32201. height: math.unit(300, "feet")
  32202. },
  32203. ]
  32204. ))
  32205. characterMakers.push(() => makeCharacter(
  32206. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32207. {
  32208. front: {
  32209. height: math.unit(5 + 7/12, "feet"),
  32210. weight: math.unit(80, "kg"),
  32211. name: "Front",
  32212. image: {
  32213. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32214. extra: 3023/2865,
  32215. bottom: 33/3056
  32216. }
  32217. },
  32218. back: {
  32219. height: math.unit(5 + 7/12, "feet"),
  32220. weight: math.unit(80, "kg"),
  32221. name: "Back",
  32222. image: {
  32223. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32224. extra: 3020/2886,
  32225. bottom: 30/3050
  32226. }
  32227. },
  32228. dick: {
  32229. height: math.unit(0.98, "feet"),
  32230. name: "Dick",
  32231. image: {
  32232. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32233. }
  32234. },
  32235. anatomy: {
  32236. height: math.unit(2.86, "feet"),
  32237. name: "Anatomy",
  32238. image: {
  32239. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32240. }
  32241. },
  32242. },
  32243. [
  32244. {
  32245. name: "Really Small",
  32246. height: math.unit(2, "inches")
  32247. },
  32248. {
  32249. name: "Micro",
  32250. height: math.unit(5.583, "inches")
  32251. },
  32252. {
  32253. name: "Normal",
  32254. height: math.unit(5 + 7/12, "feet"),
  32255. default: true
  32256. },
  32257. {
  32258. name: "Macro",
  32259. height: math.unit(67, "feet")
  32260. },
  32261. {
  32262. name: "Megamacro",
  32263. height: math.unit(134, "feet")
  32264. },
  32265. ]
  32266. ))
  32267. characterMakers.push(() => makeCharacter(
  32268. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32269. {
  32270. front: {
  32271. height: math.unit(9, "feet"),
  32272. weight: math.unit(120, "lb"),
  32273. name: "Front",
  32274. image: {
  32275. source: "./media/characters/sally/front.svg",
  32276. extra: 1506/1349,
  32277. bottom: 66/1572
  32278. }
  32279. },
  32280. },
  32281. [
  32282. {
  32283. name: "Normal",
  32284. height: math.unit(9, "feet"),
  32285. default: true
  32286. },
  32287. ]
  32288. ))
  32289. characterMakers.push(() => makeCharacter(
  32290. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32291. {
  32292. front: {
  32293. height: math.unit(8, "feet"),
  32294. weight: math.unit(900, "lb"),
  32295. name: "Front",
  32296. image: {
  32297. source: "./media/characters/owen/front.svg",
  32298. extra: 1761/1657,
  32299. bottom: 74/1835
  32300. }
  32301. },
  32302. side: {
  32303. height: math.unit(8, "feet"),
  32304. weight: math.unit(900, "lb"),
  32305. name: "Side",
  32306. image: {
  32307. source: "./media/characters/owen/side.svg",
  32308. extra: 1797/1734,
  32309. bottom: 30/1827
  32310. }
  32311. },
  32312. back: {
  32313. height: math.unit(8, "feet"),
  32314. weight: math.unit(900, "lb"),
  32315. name: "Back",
  32316. image: {
  32317. source: "./media/characters/owen/back.svg",
  32318. extra: 1796/1706,
  32319. bottom: 59/1855
  32320. }
  32321. },
  32322. maw: {
  32323. height: math.unit(1.76, "feet"),
  32324. name: "Maw",
  32325. image: {
  32326. source: "./media/characters/owen/maw.svg"
  32327. }
  32328. },
  32329. },
  32330. [
  32331. {
  32332. name: "Normal",
  32333. height: math.unit(8, "feet"),
  32334. default: true
  32335. },
  32336. ]
  32337. ))
  32338. characterMakers.push(() => makeCharacter(
  32339. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32340. {
  32341. front: {
  32342. height: math.unit(4, "feet"),
  32343. weight: math.unit(400, "lb"),
  32344. name: "Front",
  32345. image: {
  32346. source: "./media/characters/ryth/front.svg",
  32347. extra: 1920/1748,
  32348. bottom: 42/1962
  32349. }
  32350. },
  32351. back: {
  32352. height: math.unit(4, "feet"),
  32353. weight: math.unit(400, "lb"),
  32354. name: "Back",
  32355. image: {
  32356. source: "./media/characters/ryth/back.svg",
  32357. extra: 1897/1690,
  32358. bottom: 89/1986
  32359. }
  32360. },
  32361. mouth: {
  32362. height: math.unit(1.39, "feet"),
  32363. name: "Mouth",
  32364. image: {
  32365. source: "./media/characters/ryth/mouth.svg"
  32366. }
  32367. },
  32368. tailmaw: {
  32369. height: math.unit(1.23, "feet"),
  32370. name: "Tailmaw",
  32371. image: {
  32372. source: "./media/characters/ryth/tailmaw.svg"
  32373. }
  32374. },
  32375. goia: {
  32376. height: math.unit(4, "meters"),
  32377. weight: math.unit(10800, "lb"),
  32378. name: "Goia",
  32379. image: {
  32380. source: "./media/characters/ryth/goia.svg",
  32381. extra: 745/640,
  32382. bottom: 107/852
  32383. }
  32384. },
  32385. goiaFront: {
  32386. height: math.unit(4, "meters"),
  32387. weight: math.unit(10800, "lb"),
  32388. name: "Goia (Front)",
  32389. image: {
  32390. source: "./media/characters/ryth/goia-front.svg",
  32391. extra: 750/586,
  32392. bottom: 114/864
  32393. }
  32394. },
  32395. goiaMaw: {
  32396. height: math.unit(5.55, "feet"),
  32397. name: "Goia Maw",
  32398. image: {
  32399. source: "./media/characters/ryth/goia-maw.svg"
  32400. }
  32401. },
  32402. goiaForepaw: {
  32403. height: math.unit(3.5, "feet"),
  32404. name: "Goia Forepaw",
  32405. image: {
  32406. source: "./media/characters/ryth/goia-forepaw.svg"
  32407. }
  32408. },
  32409. goiaHindpaw: {
  32410. height: math.unit(5.55, "feet"),
  32411. name: "Goia Hindpaw",
  32412. image: {
  32413. source: "./media/characters/ryth/goia-hindpaw.svg"
  32414. }
  32415. },
  32416. },
  32417. [
  32418. {
  32419. name: "Normal",
  32420. height: math.unit(4, "feet"),
  32421. default: true
  32422. },
  32423. ]
  32424. ))
  32425. characterMakers.push(() => makeCharacter(
  32426. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32427. {
  32428. front: {
  32429. height: math.unit(7, "feet"),
  32430. weight: math.unit(180, "lb"),
  32431. name: "Front",
  32432. image: {
  32433. source: "./media/characters/necrolance/front.svg",
  32434. extra: 1062/947,
  32435. bottom: 41/1103
  32436. }
  32437. },
  32438. back: {
  32439. height: math.unit(7, "feet"),
  32440. weight: math.unit(180, "lb"),
  32441. name: "Back",
  32442. image: {
  32443. source: "./media/characters/necrolance/back.svg",
  32444. extra: 1045/984,
  32445. bottom: 14/1059
  32446. }
  32447. },
  32448. wing: {
  32449. height: math.unit(2.67, "feet"),
  32450. name: "Wing",
  32451. image: {
  32452. source: "./media/characters/necrolance/wing.svg"
  32453. }
  32454. },
  32455. },
  32456. [
  32457. {
  32458. name: "Normal",
  32459. height: math.unit(7, "feet"),
  32460. default: true
  32461. },
  32462. ]
  32463. ))
  32464. characterMakers.push(() => makeCharacter(
  32465. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32466. {
  32467. front: {
  32468. height: math.unit(76, "meters"),
  32469. weight: math.unit(30000, "tons"),
  32470. name: "Front",
  32471. image: {
  32472. source: "./media/characters/tyler/front.svg",
  32473. extra: 1640/1640,
  32474. bottom: 114/1754
  32475. }
  32476. },
  32477. },
  32478. [
  32479. {
  32480. name: "Macro",
  32481. height: math.unit(76, "meters"),
  32482. default: true
  32483. },
  32484. ]
  32485. ))
  32486. characterMakers.push(() => makeCharacter(
  32487. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32488. {
  32489. front: {
  32490. height: math.unit(4 + 11/12, "feet"),
  32491. weight: math.unit(132, "lb"),
  32492. name: "Front",
  32493. image: {
  32494. source: "./media/characters/icey/front.svg",
  32495. extra: 2750/2550,
  32496. bottom: 33/2783
  32497. }
  32498. },
  32499. back: {
  32500. height: math.unit(4 + 11/12, "feet"),
  32501. weight: math.unit(132, "lb"),
  32502. name: "Back",
  32503. image: {
  32504. source: "./media/characters/icey/back.svg",
  32505. extra: 2624/2481,
  32506. bottom: 35/2659
  32507. }
  32508. },
  32509. },
  32510. [
  32511. {
  32512. name: "Normal",
  32513. height: math.unit(4 + 11/12, "feet"),
  32514. default: true
  32515. },
  32516. ]
  32517. ))
  32518. characterMakers.push(() => makeCharacter(
  32519. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32520. {
  32521. front: {
  32522. height: math.unit(100, "feet"),
  32523. weight: math.unit(0, "lb"),
  32524. name: "Front",
  32525. image: {
  32526. source: "./media/characters/smile/front.svg",
  32527. extra: 2983/2912,
  32528. bottom: 162/3145
  32529. }
  32530. },
  32531. back: {
  32532. height: math.unit(100, "feet"),
  32533. weight: math.unit(0, "lb"),
  32534. name: "Back",
  32535. image: {
  32536. source: "./media/characters/smile/back.svg",
  32537. extra: 3143/3031,
  32538. bottom: 91/3234
  32539. }
  32540. },
  32541. head: {
  32542. height: math.unit(26.3, "feet"),
  32543. weight: math.unit(0, "lb"),
  32544. name: "Head",
  32545. image: {
  32546. source: "./media/characters/smile/head.svg"
  32547. }
  32548. },
  32549. collar: {
  32550. height: math.unit(5.3, "feet"),
  32551. weight: math.unit(0, "lb"),
  32552. name: "Collar",
  32553. image: {
  32554. source: "./media/characters/smile/collar.svg"
  32555. }
  32556. },
  32557. },
  32558. [
  32559. {
  32560. name: "Macro",
  32561. height: math.unit(100, "feet"),
  32562. default: true
  32563. },
  32564. ]
  32565. ))
  32566. characterMakers.push(() => makeCharacter(
  32567. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32568. {
  32569. dragon: {
  32570. height: math.unit(26, "feet"),
  32571. weight: math.unit(36, "tons"),
  32572. name: "Dragon",
  32573. image: {
  32574. source: "./media/characters/arimphae/dragon.svg",
  32575. extra: 1574/983,
  32576. bottom: 357/1931
  32577. }
  32578. },
  32579. drake: {
  32580. height: math.unit(9, "feet"),
  32581. weight: math.unit(1.5, "tons"),
  32582. name: "Drake",
  32583. image: {
  32584. source: "./media/characters/arimphae/drake.svg",
  32585. extra: 1120/925,
  32586. bottom: 435/1555
  32587. }
  32588. },
  32589. },
  32590. [
  32591. {
  32592. name: "Small",
  32593. height: math.unit(26*5/9, "feet")
  32594. },
  32595. {
  32596. name: "Normal",
  32597. height: math.unit(26, "feet"),
  32598. default: true
  32599. },
  32600. ]
  32601. ))
  32602. characterMakers.push(() => makeCharacter(
  32603. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32604. {
  32605. front: {
  32606. height: math.unit(8 + 9/12, "feet"),
  32607. name: "Front",
  32608. image: {
  32609. source: "./media/characters/xander/front.svg",
  32610. extra: 1237/974,
  32611. bottom: 94/1331
  32612. }
  32613. },
  32614. },
  32615. [
  32616. {
  32617. name: "Normal",
  32618. height: math.unit(8 + 9/12, "feet"),
  32619. default: true
  32620. },
  32621. {
  32622. name: "Gaze Grabber",
  32623. height: math.unit(13 + 8/12, "feet")
  32624. },
  32625. {
  32626. name: "Jaw Dropper",
  32627. height: math.unit(27, "feet")
  32628. },
  32629. {
  32630. name: "Show Stopper",
  32631. height: math.unit(136, "feet")
  32632. },
  32633. {
  32634. name: "Superstar",
  32635. height: math.unit(1.9e6, "miles")
  32636. },
  32637. ]
  32638. ))
  32639. characterMakers.push(() => makeCharacter(
  32640. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32641. {
  32642. side: {
  32643. height: math.unit(2100, "feet"),
  32644. name: "Side",
  32645. image: {
  32646. source: "./media/characters/osiris/side.svg",
  32647. extra: 1105/939,
  32648. bottom: 167/1272
  32649. }
  32650. },
  32651. },
  32652. [
  32653. {
  32654. name: "Macro",
  32655. height: math.unit(2100, "feet"),
  32656. default: true
  32657. },
  32658. ]
  32659. ))
  32660. characterMakers.push(() => makeCharacter(
  32661. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32662. {
  32663. front: {
  32664. height: math.unit(6 + 8/12, "feet"),
  32665. weight: math.unit(225, "lb"),
  32666. name: "Front",
  32667. image: {
  32668. source: "./media/characters/rhys-londe/front.svg",
  32669. extra: 2258/2141,
  32670. bottom: 188/2446
  32671. }
  32672. },
  32673. back: {
  32674. height: math.unit(6 + 8/12, "feet"),
  32675. weight: math.unit(225, "lb"),
  32676. name: "Back",
  32677. image: {
  32678. source: "./media/characters/rhys-londe/back.svg",
  32679. extra: 2237/2137,
  32680. bottom: 63/2300
  32681. }
  32682. },
  32683. frontNsfw: {
  32684. height: math.unit(6 + 8/12, "feet"),
  32685. weight: math.unit(225, "lb"),
  32686. name: "Front (NSFW)",
  32687. image: {
  32688. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32689. extra: 2258/2141,
  32690. bottom: 188/2446
  32691. }
  32692. },
  32693. backNsfw: {
  32694. height: math.unit(6 + 8/12, "feet"),
  32695. weight: math.unit(225, "lb"),
  32696. name: "Back (NSFW)",
  32697. image: {
  32698. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32699. extra: 2237/2137,
  32700. bottom: 63/2300
  32701. }
  32702. },
  32703. dick: {
  32704. height: math.unit(30, "inches"),
  32705. name: "Dick",
  32706. image: {
  32707. source: "./media/characters/rhys-londe/dick.svg"
  32708. }
  32709. },
  32710. maw: {
  32711. height: math.unit(1.6, "feet"),
  32712. name: "Maw",
  32713. image: {
  32714. source: "./media/characters/rhys-londe/maw.svg"
  32715. }
  32716. },
  32717. },
  32718. [
  32719. {
  32720. name: "Normal",
  32721. height: math.unit(6 + 8/12, "feet"),
  32722. default: true
  32723. },
  32724. ]
  32725. ))
  32726. characterMakers.push(() => makeCharacter(
  32727. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32728. {
  32729. front: {
  32730. height: math.unit(3 + 10/12, "feet"),
  32731. weight: math.unit(90, "lb"),
  32732. name: "Front",
  32733. image: {
  32734. source: "./media/characters/taivas-ensim/front.svg",
  32735. extra: 1327/1216,
  32736. bottom: 96/1423
  32737. }
  32738. },
  32739. back: {
  32740. height: math.unit(3 + 10/12, "feet"),
  32741. weight: math.unit(90, "lb"),
  32742. name: "Back",
  32743. image: {
  32744. source: "./media/characters/taivas-ensim/back.svg",
  32745. extra: 1355/1247,
  32746. bottom: 11/1366
  32747. }
  32748. },
  32749. frontNsfw: {
  32750. height: math.unit(3 + 10/12, "feet"),
  32751. weight: math.unit(90, "lb"),
  32752. name: "Front (NSFW)",
  32753. image: {
  32754. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32755. extra: 1327/1216,
  32756. bottom: 96/1423
  32757. }
  32758. },
  32759. backNsfw: {
  32760. height: math.unit(3 + 10/12, "feet"),
  32761. weight: math.unit(90, "lb"),
  32762. name: "Back (NSFW)",
  32763. image: {
  32764. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32765. extra: 1355/1247,
  32766. bottom: 11/1366
  32767. }
  32768. },
  32769. },
  32770. [
  32771. {
  32772. name: "Normal",
  32773. height: math.unit(3 + 10/12, "feet"),
  32774. default: true
  32775. },
  32776. ]
  32777. ))
  32778. characterMakers.push(() => makeCharacter(
  32779. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32780. {
  32781. front: {
  32782. height: math.unit(9 + 6/12, "feet"),
  32783. weight: math.unit(940, "lb"),
  32784. name: "Front",
  32785. image: {
  32786. source: "./media/characters/byliss/front.svg",
  32787. extra: 1327/1290,
  32788. bottom: 82/1409
  32789. }
  32790. },
  32791. back: {
  32792. height: math.unit(9 + 6/12, "feet"),
  32793. weight: math.unit(940, "lb"),
  32794. name: "Back",
  32795. image: {
  32796. source: "./media/characters/byliss/back.svg",
  32797. extra: 1376/1349,
  32798. bottom: 9/1385
  32799. }
  32800. },
  32801. frontNsfw: {
  32802. height: math.unit(9 + 6/12, "feet"),
  32803. weight: math.unit(940, "lb"),
  32804. name: "Front (NSFW)",
  32805. image: {
  32806. source: "./media/characters/byliss/front-nsfw.svg",
  32807. extra: 1327/1290,
  32808. bottom: 82/1409
  32809. }
  32810. },
  32811. backNsfw: {
  32812. height: math.unit(9 + 6/12, "feet"),
  32813. weight: math.unit(940, "lb"),
  32814. name: "Back (NSFW)",
  32815. image: {
  32816. source: "./media/characters/byliss/back-nsfw.svg",
  32817. extra: 1376/1349,
  32818. bottom: 9/1385
  32819. }
  32820. },
  32821. },
  32822. [
  32823. {
  32824. name: "Normal",
  32825. height: math.unit(9 + 6/12, "feet"),
  32826. default: true
  32827. },
  32828. ]
  32829. ))
  32830. characterMakers.push(() => makeCharacter(
  32831. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32832. {
  32833. front: {
  32834. height: math.unit(5 + 2/12, "feet"),
  32835. weight: math.unit(200, "lb"),
  32836. name: "Front",
  32837. image: {
  32838. source: "./media/characters/noraly/front.svg",
  32839. extra: 4985/4773,
  32840. bottom: 150/5135
  32841. }
  32842. },
  32843. full: {
  32844. height: math.unit(5 + 2/12, "feet"),
  32845. weight: math.unit(164, "lb"),
  32846. name: "Full",
  32847. image: {
  32848. source: "./media/characters/noraly/full.svg",
  32849. extra: 1114/1059,
  32850. bottom: 35/1149
  32851. }
  32852. },
  32853. fuller: {
  32854. height: math.unit(5 + 2/12, "feet"),
  32855. weight: math.unit(230, "lb"),
  32856. name: "Fuller",
  32857. image: {
  32858. source: "./media/characters/noraly/fuller.svg",
  32859. extra: 1114/1059,
  32860. bottom: 35/1149
  32861. }
  32862. },
  32863. fullest: {
  32864. height: math.unit(5 + 2/12, "feet"),
  32865. weight: math.unit(300, "lb"),
  32866. name: "Fullest",
  32867. image: {
  32868. source: "./media/characters/noraly/fullest.svg",
  32869. extra: 1114/1059,
  32870. bottom: 35/1149
  32871. }
  32872. },
  32873. },
  32874. [
  32875. {
  32876. name: "Normal",
  32877. height: math.unit(5 + 2/12, "feet"),
  32878. default: true
  32879. },
  32880. ]
  32881. ))
  32882. characterMakers.push(() => makeCharacter(
  32883. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32884. {
  32885. front: {
  32886. height: math.unit(5 + 2/12, "feet"),
  32887. weight: math.unit(210, "lb"),
  32888. name: "Front",
  32889. image: {
  32890. source: "./media/characters/pera/front.svg",
  32891. extra: 1560/1531,
  32892. bottom: 165/1725
  32893. }
  32894. },
  32895. back: {
  32896. height: math.unit(5 + 2/12, "feet"),
  32897. weight: math.unit(210, "lb"),
  32898. name: "Back",
  32899. image: {
  32900. source: "./media/characters/pera/back.svg",
  32901. extra: 1523/1493,
  32902. bottom: 152/1675
  32903. }
  32904. },
  32905. dick: {
  32906. height: math.unit(2.4, "feet"),
  32907. name: "Dick",
  32908. image: {
  32909. source: "./media/characters/pera/dick.svg"
  32910. }
  32911. },
  32912. },
  32913. [
  32914. {
  32915. name: "Normal",
  32916. height: math.unit(5 + 2/12, "feet"),
  32917. default: true
  32918. },
  32919. ]
  32920. ))
  32921. characterMakers.push(() => makeCharacter(
  32922. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32923. {
  32924. front: {
  32925. height: math.unit(12, "feet"),
  32926. weight: math.unit(3200, "lb"),
  32927. name: "Front",
  32928. image: {
  32929. source: "./media/characters/julian/front.svg",
  32930. extra: 2962/2701,
  32931. bottom: 184/3146
  32932. }
  32933. },
  32934. maw: {
  32935. height: math.unit(5.35, "feet"),
  32936. name: "Maw",
  32937. image: {
  32938. source: "./media/characters/julian/maw.svg"
  32939. }
  32940. },
  32941. paw: {
  32942. height: math.unit(3.07, "feet"),
  32943. name: "Paw",
  32944. image: {
  32945. source: "./media/characters/julian/paw.svg"
  32946. }
  32947. },
  32948. },
  32949. [
  32950. {
  32951. name: "Default",
  32952. height: math.unit(12, "feet"),
  32953. default: true
  32954. },
  32955. {
  32956. name: "Big",
  32957. height: math.unit(50, "feet")
  32958. },
  32959. {
  32960. name: "Really Big",
  32961. height: math.unit(1, "mile")
  32962. },
  32963. {
  32964. name: "Extremely Big",
  32965. height: math.unit(100, "miles")
  32966. },
  32967. {
  32968. name: "Planet Hugger",
  32969. height: math.unit(200, "megameters")
  32970. },
  32971. {
  32972. name: "Unreasonably Big",
  32973. height: math.unit(1e300, "meters")
  32974. },
  32975. ]
  32976. ))
  32977. characterMakers.push(() => makeCharacter(
  32978. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32979. {
  32980. solgooleo: {
  32981. height: math.unit(4, "meters"),
  32982. weight: math.unit(6000*1.5, "kg"),
  32983. volume: math.unit(6000, "liters"),
  32984. name: "Solgooleo",
  32985. image: {
  32986. source: "./media/characters/pi/solgooleo.svg",
  32987. extra: 388/331,
  32988. bottom: 29/417
  32989. }
  32990. },
  32991. },
  32992. [
  32993. {
  32994. name: "Normal",
  32995. height: math.unit(4, "meters"),
  32996. default: true
  32997. },
  32998. ]
  32999. ))
  33000. characterMakers.push(() => makeCharacter(
  33001. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33002. {
  33003. front: {
  33004. height: math.unit(8, "feet"),
  33005. weight: math.unit(4, "tons"),
  33006. name: "Front",
  33007. image: {
  33008. source: "./media/characters/shaun/front.svg",
  33009. extra: 503/495,
  33010. bottom: 20/523
  33011. }
  33012. },
  33013. back: {
  33014. height: math.unit(8, "feet"),
  33015. weight: math.unit(4, "tons"),
  33016. name: "Back",
  33017. image: {
  33018. source: "./media/characters/shaun/back.svg",
  33019. extra: 487/480,
  33020. bottom: 20/507
  33021. }
  33022. },
  33023. },
  33024. [
  33025. {
  33026. name: "Lorg",
  33027. height: math.unit(8, "feet"),
  33028. default: true
  33029. },
  33030. ]
  33031. ))
  33032. characterMakers.push(() => makeCharacter(
  33033. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33034. {
  33035. frontAnthro: {
  33036. height: math.unit(7, "feet"),
  33037. name: "Front",
  33038. image: {
  33039. source: "./media/characters/sini/front-anthro.svg",
  33040. extra: 726/678,
  33041. bottom: 35/761
  33042. },
  33043. form: "anthro",
  33044. default: true
  33045. },
  33046. backAnthro: {
  33047. height: math.unit(7, "feet"),
  33048. name: "Back",
  33049. image: {
  33050. source: "./media/characters/sini/back-anthro.svg",
  33051. extra: 743/701,
  33052. bottom: 12/755
  33053. },
  33054. form: "anthro",
  33055. },
  33056. frontAnthroNsfw: {
  33057. height: math.unit(7, "feet"),
  33058. name: "Front (NSFW)",
  33059. image: {
  33060. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33061. extra: 726/678,
  33062. bottom: 35/761
  33063. },
  33064. form: "anthro"
  33065. },
  33066. backAnthroNsfw: {
  33067. height: math.unit(7, "feet"),
  33068. name: "Back (NSFW)",
  33069. image: {
  33070. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33071. extra: 743/701,
  33072. bottom: 12/755
  33073. },
  33074. form: "anthro",
  33075. },
  33076. mawAnthro: {
  33077. height: math.unit(2.14, "feet"),
  33078. name: "Maw",
  33079. image: {
  33080. source: "./media/characters/sini/maw-anthro.svg"
  33081. },
  33082. form: "anthro"
  33083. },
  33084. dick: {
  33085. height: math.unit(1.45, "feet"),
  33086. name: "Dick",
  33087. image: {
  33088. source: "./media/characters/sini/dick-anthro.svg"
  33089. },
  33090. form: "anthro"
  33091. },
  33092. feral: {
  33093. height: math.unit(16, "feet"),
  33094. name: "Feral",
  33095. image: {
  33096. source: "./media/characters/sini/feral.svg",
  33097. extra: 814/605,
  33098. bottom: 11/825
  33099. },
  33100. form: "feral",
  33101. default: true
  33102. },
  33103. feralNsfw: {
  33104. height: math.unit(16, "feet"),
  33105. name: "Feral (NSFW)",
  33106. image: {
  33107. source: "./media/characters/sini/feral-nsfw.svg",
  33108. extra: 814/605,
  33109. bottom: 11/825
  33110. },
  33111. form: "feral"
  33112. },
  33113. mawFeral: {
  33114. height: math.unit(5.66, "feet"),
  33115. name: "Maw",
  33116. image: {
  33117. source: "./media/characters/sini/maw-feral.svg"
  33118. },
  33119. form: "feral",
  33120. },
  33121. pawFeral: {
  33122. height: math.unit(5.17, "feet"),
  33123. name: "Paw",
  33124. image: {
  33125. source: "./media/characters/sini/paw-feral.svg"
  33126. },
  33127. form: "feral",
  33128. },
  33129. rumpFeral: {
  33130. height: math.unit(13.11, "feet"),
  33131. name: "Rump",
  33132. image: {
  33133. source: "./media/characters/sini/rump-feral.svg"
  33134. },
  33135. form: "feral",
  33136. },
  33137. dickFeral: {
  33138. height: math.unit(1, "feet"),
  33139. name: "Dick",
  33140. image: {
  33141. source: "./media/characters/sini/dick-feral.svg"
  33142. },
  33143. form: "feral",
  33144. },
  33145. eyeFeral: {
  33146. height: math.unit(1.23, "feet"),
  33147. name: "Eye",
  33148. image: {
  33149. source: "./media/characters/sini/eye-feral.svg"
  33150. },
  33151. form: "feral",
  33152. },
  33153. },
  33154. [
  33155. {
  33156. name: "Normal",
  33157. height: math.unit(7, "feet"),
  33158. default: true,
  33159. form: "anthro"
  33160. },
  33161. {
  33162. name: "Normal",
  33163. height: math.unit(16, "feet"),
  33164. default: true,
  33165. form: "feral"
  33166. },
  33167. ],
  33168. {
  33169. "anthro": {
  33170. name: "Anthro",
  33171. default: true
  33172. },
  33173. "feral": {
  33174. name: "Feral",
  33175. }
  33176. }
  33177. ))
  33178. characterMakers.push(() => makeCharacter(
  33179. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33180. {
  33181. side: {
  33182. height: math.unit(13, "meters"),
  33183. weight: math.unit(9072, "kg"),
  33184. name: "Side",
  33185. image: {
  33186. source: "./media/characters/raylldo/side.svg",
  33187. extra: 403/344,
  33188. bottom: 42/445
  33189. }
  33190. },
  33191. leaping: {
  33192. height: math.unit(12.3, "meters"),
  33193. weight: math.unit(9072, "kg"),
  33194. name: "Leaping",
  33195. image: {
  33196. source: "./media/characters/raylldo/leaping.svg",
  33197. extra: 470/249,
  33198. bottom: 13/483
  33199. }
  33200. },
  33201. flying: {
  33202. height: math.unit(18, "meters"),
  33203. weight: math.unit(9072, "kg"),
  33204. name: "Flying",
  33205. image: {
  33206. source: "./media/characters/raylldo/flying.svg"
  33207. }
  33208. },
  33209. head: {
  33210. height: math.unit(5.85, "meters"),
  33211. name: "Head",
  33212. image: {
  33213. source: "./media/characters/raylldo/head.svg"
  33214. }
  33215. },
  33216. maw: {
  33217. height: math.unit(5.32, "meters"),
  33218. name: "Maw",
  33219. image: {
  33220. source: "./media/characters/raylldo/maw.svg"
  33221. }
  33222. },
  33223. eye: {
  33224. height: math.unit(0.54, "meters"),
  33225. name: "Eye",
  33226. image: {
  33227. source: "./media/characters/raylldo/eye.svg"
  33228. }
  33229. },
  33230. },
  33231. [
  33232. {
  33233. name: "Normal",
  33234. height: math.unit(13, "meters"),
  33235. default: true
  33236. },
  33237. ]
  33238. ))
  33239. characterMakers.push(() => makeCharacter(
  33240. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33241. {
  33242. anthroFront: {
  33243. height: math.unit(9, "feet"),
  33244. weight: math.unit(600, "lb"),
  33245. name: "Anthro (Front)",
  33246. image: {
  33247. source: "./media/characters/glint/anthro-front.svg",
  33248. extra: 1097/1018,
  33249. bottom: 28/1125
  33250. }
  33251. },
  33252. anthroBack: {
  33253. height: math.unit(9, "feet"),
  33254. weight: math.unit(600, "lb"),
  33255. name: "Anthro (Back)",
  33256. image: {
  33257. source: "./media/characters/glint/anthro-back.svg",
  33258. extra: 1154/997,
  33259. bottom: 36/1190
  33260. }
  33261. },
  33262. feral: {
  33263. height: math.unit(11, "feet"),
  33264. weight: math.unit(50000, "lb"),
  33265. name: "Feral",
  33266. image: {
  33267. source: "./media/characters/glint/feral.svg",
  33268. extra: 3035/1585,
  33269. bottom: 1169/4204
  33270. }
  33271. },
  33272. dickAnthro: {
  33273. height: math.unit(0.7, "meters"),
  33274. name: "Dick (Anthro)",
  33275. image: {
  33276. source: "./media/characters/glint/dick-anthro.svg"
  33277. }
  33278. },
  33279. dickFeral: {
  33280. height: math.unit(2.65, "meters"),
  33281. name: "Dick (Feral)",
  33282. image: {
  33283. source: "./media/characters/glint/dick-feral.svg"
  33284. }
  33285. },
  33286. slitHidden: {
  33287. height: math.unit(5.85, "meters"),
  33288. name: "Slit (Hidden)",
  33289. image: {
  33290. source: "./media/characters/glint/slit-hidden.svg"
  33291. }
  33292. },
  33293. slitErect: {
  33294. height: math.unit(5.85, "meters"),
  33295. name: "Slit (Erect)",
  33296. image: {
  33297. source: "./media/characters/glint/slit-erect.svg"
  33298. }
  33299. },
  33300. mawAnthro: {
  33301. height: math.unit(0.63, "meters"),
  33302. name: "Maw (Anthro)",
  33303. image: {
  33304. source: "./media/characters/glint/maw.svg"
  33305. }
  33306. },
  33307. mawFeral: {
  33308. height: math.unit(2.89, "meters"),
  33309. name: "Maw (Feral)",
  33310. image: {
  33311. source: "./media/characters/glint/maw.svg"
  33312. }
  33313. },
  33314. },
  33315. [
  33316. {
  33317. name: "Normal",
  33318. height: math.unit(9, "feet"),
  33319. default: true
  33320. },
  33321. ]
  33322. ))
  33323. characterMakers.push(() => makeCharacter(
  33324. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33325. {
  33326. side: {
  33327. height: math.unit(15, "feet"),
  33328. weight: math.unit(5000, "kg"),
  33329. name: "Side",
  33330. image: {
  33331. source: "./media/characters/kairne/side.svg",
  33332. extra: 979/811,
  33333. bottom: 13/992
  33334. }
  33335. },
  33336. front: {
  33337. height: math.unit(15, "feet"),
  33338. weight: math.unit(5000, "kg"),
  33339. name: "Front",
  33340. image: {
  33341. source: "./media/characters/kairne/front.svg",
  33342. extra: 908/814,
  33343. bottom: 26/934
  33344. }
  33345. },
  33346. sideNsfw: {
  33347. height: math.unit(15, "feet"),
  33348. weight: math.unit(5000, "kg"),
  33349. name: "Side (NSFW)",
  33350. image: {
  33351. source: "./media/characters/kairne/side-nsfw.svg",
  33352. extra: 979/811,
  33353. bottom: 13/992
  33354. }
  33355. },
  33356. frontNsfw: {
  33357. height: math.unit(15, "feet"),
  33358. weight: math.unit(5000, "kg"),
  33359. name: "Front (NSFW)",
  33360. image: {
  33361. source: "./media/characters/kairne/front-nsfw.svg",
  33362. extra: 908/814,
  33363. bottom: 26/934
  33364. }
  33365. },
  33366. dickCaged: {
  33367. height: math.unit(0.65, "meters"),
  33368. name: "Dick-caged",
  33369. image: {
  33370. source: "./media/characters/kairne/dick-caged.svg"
  33371. }
  33372. },
  33373. dick: {
  33374. height: math.unit(0.79, "meters"),
  33375. name: "Dick",
  33376. image: {
  33377. source: "./media/characters/kairne/dick.svg"
  33378. }
  33379. },
  33380. genitals: {
  33381. height: math.unit(1.29, "meters"),
  33382. name: "Genitals",
  33383. image: {
  33384. source: "./media/characters/kairne/genitals.svg"
  33385. }
  33386. },
  33387. maw: {
  33388. height: math.unit(1.73, "meters"),
  33389. name: "Maw",
  33390. image: {
  33391. source: "./media/characters/kairne/maw.svg"
  33392. }
  33393. },
  33394. },
  33395. [
  33396. {
  33397. name: "Normal",
  33398. height: math.unit(15, "feet"),
  33399. default: true
  33400. },
  33401. ]
  33402. ))
  33403. characterMakers.push(() => makeCharacter(
  33404. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33405. {
  33406. front: {
  33407. height: math.unit(5 + 8/12, "feet"),
  33408. weight: math.unit(139, "lb"),
  33409. name: "Front",
  33410. image: {
  33411. source: "./media/characters/biscuit-jackal/front.svg",
  33412. extra: 2106/1961,
  33413. bottom: 58/2164
  33414. }
  33415. },
  33416. back: {
  33417. height: math.unit(5 + 8/12, "feet"),
  33418. weight: math.unit(139, "lb"),
  33419. name: "Back",
  33420. image: {
  33421. source: "./media/characters/biscuit-jackal/back.svg",
  33422. extra: 2132/1976,
  33423. bottom: 57/2189
  33424. }
  33425. },
  33426. werejackal: {
  33427. height: math.unit(6 + 3/12, "feet"),
  33428. weight: math.unit(188, "lb"),
  33429. name: "Werejackal",
  33430. image: {
  33431. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33432. extra: 2373/2178,
  33433. bottom: 53/2426
  33434. }
  33435. },
  33436. },
  33437. [
  33438. {
  33439. name: "Normal",
  33440. height: math.unit(5 + 8/12, "feet"),
  33441. default: true
  33442. },
  33443. ]
  33444. ))
  33445. characterMakers.push(() => makeCharacter(
  33446. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33447. {
  33448. front: {
  33449. height: math.unit(140, "cm"),
  33450. weight: math.unit(45, "kg"),
  33451. name: "Front",
  33452. image: {
  33453. source: "./media/characters/tayra-white/front.svg",
  33454. extra: 2229/2192,
  33455. bottom: 75/2304
  33456. }
  33457. },
  33458. },
  33459. [
  33460. {
  33461. name: "Normal",
  33462. height: math.unit(140, "cm"),
  33463. default: true
  33464. },
  33465. ]
  33466. ))
  33467. characterMakers.push(() => makeCharacter(
  33468. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33469. {
  33470. front: {
  33471. height: math.unit(4 + 5/12, "feet"),
  33472. name: "Front",
  33473. image: {
  33474. source: "./media/characters/scoop/front.svg",
  33475. extra: 1257/1136,
  33476. bottom: 69/1326
  33477. }
  33478. },
  33479. back: {
  33480. height: math.unit(4 + 5/12, "feet"),
  33481. name: "Back",
  33482. image: {
  33483. source: "./media/characters/scoop/back.svg",
  33484. extra: 1321/1152,
  33485. bottom: 32/1353
  33486. }
  33487. },
  33488. maw: {
  33489. height: math.unit(0.68, "feet"),
  33490. name: "Maw",
  33491. image: {
  33492. source: "./media/characters/scoop/maw.svg"
  33493. }
  33494. },
  33495. },
  33496. [
  33497. {
  33498. name: "Really Small",
  33499. height: math.unit(1, "mm")
  33500. },
  33501. {
  33502. name: "Micro",
  33503. height: math.unit(1, "inch")
  33504. },
  33505. {
  33506. name: "Normal",
  33507. height: math.unit(4 + 5/12, "feet"),
  33508. default: true
  33509. },
  33510. {
  33511. name: "Macro",
  33512. height: math.unit(200, "feet")
  33513. },
  33514. {
  33515. name: "Megamacro",
  33516. height: math.unit(3240, "feet")
  33517. },
  33518. {
  33519. name: "Teramacro",
  33520. height: math.unit(2500, "miles")
  33521. },
  33522. ]
  33523. ))
  33524. characterMakers.push(() => makeCharacter(
  33525. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33526. {
  33527. front: {
  33528. height: math.unit(15 + 7/12, "feet"),
  33529. name: "Front",
  33530. image: {
  33531. source: "./media/characters/saphinara/front.svg",
  33532. extra: 604/546,
  33533. bottom: 19/623
  33534. }
  33535. },
  33536. side: {
  33537. height: math.unit(15 + 7/12, "feet"),
  33538. name: "Side",
  33539. image: {
  33540. source: "./media/characters/saphinara/side.svg",
  33541. extra: 605/547,
  33542. bottom: 6/611
  33543. }
  33544. },
  33545. back: {
  33546. height: math.unit(15 + 7/12, "feet"),
  33547. name: "Back",
  33548. image: {
  33549. source: "./media/characters/saphinara/back.svg",
  33550. extra: 591/531,
  33551. bottom: 13/604
  33552. }
  33553. },
  33554. frontTail: {
  33555. height: math.unit(15 + 7/12, "feet"),
  33556. name: "Front (Full Tail)",
  33557. image: {
  33558. source: "./media/characters/saphinara/front-tail.svg",
  33559. extra: 748/547,
  33560. bottom: 66/814
  33561. }
  33562. },
  33563. },
  33564. [
  33565. {
  33566. name: "Normal",
  33567. height: math.unit(15 + 7/12, "feet"),
  33568. default: true
  33569. },
  33570. {
  33571. name: "Angry",
  33572. height: math.unit(30 + 6/12, "feet")
  33573. },
  33574. {
  33575. name: "Enraged",
  33576. height: math.unit(102 + 1/12, "feet")
  33577. },
  33578. ]
  33579. ))
  33580. characterMakers.push(() => makeCharacter(
  33581. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33582. {
  33583. front: {
  33584. height: math.unit(6 + 8/12, "feet"),
  33585. weight: math.unit(300, "lb"),
  33586. name: "Front",
  33587. image: {
  33588. source: "./media/characters/jrain/front.svg",
  33589. extra: 3039/2865,
  33590. bottom: 399/3438
  33591. }
  33592. },
  33593. back: {
  33594. height: math.unit(6 + 8/12, "feet"),
  33595. weight: math.unit(300, "lb"),
  33596. name: "Back",
  33597. image: {
  33598. source: "./media/characters/jrain/back.svg",
  33599. extra: 3089/2938,
  33600. bottom: 172/3261
  33601. }
  33602. },
  33603. head: {
  33604. height: math.unit(2.14, "feet"),
  33605. name: "Head",
  33606. image: {
  33607. source: "./media/characters/jrain/head.svg"
  33608. }
  33609. },
  33610. maw: {
  33611. height: math.unit(1.77, "feet"),
  33612. name: "Maw",
  33613. image: {
  33614. source: "./media/characters/jrain/maw.svg"
  33615. }
  33616. },
  33617. leftHand: {
  33618. height: math.unit(1.1, "feet"),
  33619. name: "Left Hand",
  33620. image: {
  33621. source: "./media/characters/jrain/left-hand.svg"
  33622. }
  33623. },
  33624. rightHand: {
  33625. height: math.unit(1.1, "feet"),
  33626. name: "Right Hand",
  33627. image: {
  33628. source: "./media/characters/jrain/right-hand.svg"
  33629. }
  33630. },
  33631. eye: {
  33632. height: math.unit(0.35, "feet"),
  33633. name: "Eye",
  33634. image: {
  33635. source: "./media/characters/jrain/eye.svg"
  33636. }
  33637. },
  33638. },
  33639. [
  33640. {
  33641. name: "Normal",
  33642. height: math.unit(6 + 8/12, "feet"),
  33643. default: true
  33644. },
  33645. {
  33646. name: "Casually Large",
  33647. height: math.unit(25, "feet")
  33648. },
  33649. {
  33650. name: "Giant",
  33651. height: math.unit(100, "feet")
  33652. },
  33653. {
  33654. name: "Kaiju",
  33655. height: math.unit(300, "feet")
  33656. },
  33657. ]
  33658. ))
  33659. characterMakers.push(() => makeCharacter(
  33660. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33661. {
  33662. dragon: {
  33663. height: math.unit(5, "meters"),
  33664. name: "Dragon",
  33665. image: {
  33666. source: "./media/characters/sabrina/dragon.svg",
  33667. extra: 3670 / 2365,
  33668. bottom: 333 / 4003
  33669. }
  33670. },
  33671. gryphon: {
  33672. height: math.unit(3, "meters"),
  33673. name: "Gryphon",
  33674. image: {
  33675. source: "./media/characters/sabrina/gryphon.svg",
  33676. extra: 1576 / 945,
  33677. bottom: 71 / 1647
  33678. }
  33679. },
  33680. snake: {
  33681. height: math.unit(12, "meters"),
  33682. name: "Snake",
  33683. image: {
  33684. source: "./media/characters/sabrina/snake.svg",
  33685. extra: 1758 / 1320,
  33686. bottom: 186 / 1944
  33687. }
  33688. },
  33689. collar: {
  33690. height: math.unit(1.86, "meters"),
  33691. name: "Collar",
  33692. image: {
  33693. source: "./media/characters/sabrina/collar.svg"
  33694. }
  33695. },
  33696. eye: {
  33697. height: math.unit(0.53, "meters"),
  33698. name: "Eye",
  33699. image: {
  33700. source: "./media/characters/sabrina/eye.svg"
  33701. }
  33702. },
  33703. foot: {
  33704. height: math.unit(1.86, "meters"),
  33705. name: "Foot",
  33706. image: {
  33707. source: "./media/characters/sabrina/foot.svg"
  33708. }
  33709. },
  33710. hand: {
  33711. height: math.unit(1.32, "meters"),
  33712. name: "Hand",
  33713. image: {
  33714. source: "./media/characters/sabrina/hand.svg"
  33715. }
  33716. },
  33717. head: {
  33718. height: math.unit(2.44, "meters"),
  33719. name: "Head",
  33720. image: {
  33721. source: "./media/characters/sabrina/head.svg"
  33722. }
  33723. },
  33724. headAngry: {
  33725. height: math.unit(2.44, "meters"),
  33726. name: "Head (Angry))",
  33727. image: {
  33728. source: "./media/characters/sabrina/head-angry.svg"
  33729. }
  33730. },
  33731. maw: {
  33732. height: math.unit(1.65, "meters"),
  33733. name: "Maw",
  33734. image: {
  33735. source: "./media/characters/sabrina/maw.svg"
  33736. }
  33737. },
  33738. spikes: {
  33739. height: math.unit(1.69, "meters"),
  33740. name: "Spikes",
  33741. image: {
  33742. source: "./media/characters/sabrina/spikes.svg"
  33743. }
  33744. },
  33745. stomach: {
  33746. height: math.unit(1.15, "meters"),
  33747. name: "Stomach",
  33748. image: {
  33749. source: "./media/characters/sabrina/stomach.svg"
  33750. }
  33751. },
  33752. tongue: {
  33753. height: math.unit(1.27, "meters"),
  33754. name: "Tongue",
  33755. image: {
  33756. source: "./media/characters/sabrina/tongue.svg"
  33757. }
  33758. },
  33759. wingDorsal: {
  33760. height: math.unit(4.85, "meters"),
  33761. name: "Wing (Dorsal)",
  33762. image: {
  33763. source: "./media/characters/sabrina/wing-dorsal.svg"
  33764. }
  33765. },
  33766. wingVentral: {
  33767. height: math.unit(4.85, "meters"),
  33768. name: "Wing (Ventral)",
  33769. image: {
  33770. source: "./media/characters/sabrina/wing-ventral.svg"
  33771. }
  33772. },
  33773. },
  33774. [
  33775. {
  33776. name: "Normal",
  33777. height: math.unit(5, "meters"),
  33778. default: true
  33779. },
  33780. ]
  33781. ))
  33782. characterMakers.push(() => makeCharacter(
  33783. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33784. {
  33785. frontMaid: {
  33786. height: math.unit(5 + 5/12, "feet"),
  33787. weight: math.unit(130, "lb"),
  33788. name: "Front (Maid)",
  33789. image: {
  33790. source: "./media/characters/midnight-tales/front-maid.svg",
  33791. extra: 489/454,
  33792. bottom: 61/550
  33793. }
  33794. },
  33795. frontFormal: {
  33796. height: math.unit(5 + 5/12, "feet"),
  33797. weight: math.unit(130, "lb"),
  33798. name: "Front (Formal)",
  33799. image: {
  33800. source: "./media/characters/midnight-tales/front-formal.svg",
  33801. extra: 489/454,
  33802. bottom: 61/550
  33803. }
  33804. },
  33805. back: {
  33806. height: math.unit(5 + 5/12, "feet"),
  33807. weight: math.unit(130, "lb"),
  33808. name: "Back",
  33809. image: {
  33810. source: "./media/characters/midnight-tales/back.svg",
  33811. extra: 498/456,
  33812. bottom: 33/531
  33813. }
  33814. },
  33815. frontBeast: {
  33816. height: math.unit(40, "feet"),
  33817. weight: math.unit(64000, "lb"),
  33818. name: "Front (Beast)",
  33819. image: {
  33820. source: "./media/characters/midnight-tales/front-beast.svg",
  33821. extra: 927/860,
  33822. bottom: 53/980
  33823. }
  33824. },
  33825. backBeast: {
  33826. height: math.unit(40, "feet"),
  33827. weight: math.unit(64000, "lb"),
  33828. name: "Back (Beast)",
  33829. image: {
  33830. source: "./media/characters/midnight-tales/back-beast.svg",
  33831. extra: 929/855,
  33832. bottom: 16/945
  33833. }
  33834. },
  33835. footBeast: {
  33836. height: math.unit(6.7, "feet"),
  33837. name: "Foot (Beast)",
  33838. image: {
  33839. source: "./media/characters/midnight-tales/foot-beast.svg"
  33840. }
  33841. },
  33842. headBeast: {
  33843. height: math.unit(8, "feet"),
  33844. name: "Head (Beast)",
  33845. image: {
  33846. source: "./media/characters/midnight-tales/head-beast.svg"
  33847. }
  33848. },
  33849. },
  33850. [
  33851. {
  33852. name: "Normal",
  33853. height: math.unit(5 + 5 / 12, "feet"),
  33854. default: true
  33855. },
  33856. {
  33857. name: "Macro",
  33858. height: math.unit(25, "feet")
  33859. },
  33860. ]
  33861. ))
  33862. characterMakers.push(() => makeCharacter(
  33863. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33864. {
  33865. front: {
  33866. height: math.unit(5 + 10/12, "feet"),
  33867. name: "Front",
  33868. image: {
  33869. source: "./media/characters/argon/front.svg",
  33870. extra: 2009/1935,
  33871. bottom: 118/2127
  33872. }
  33873. },
  33874. back: {
  33875. height: math.unit(5 + 10/12, "feet"),
  33876. name: "Back",
  33877. image: {
  33878. source: "./media/characters/argon/back.svg",
  33879. extra: 2047/1992,
  33880. bottom: 20/2067
  33881. }
  33882. },
  33883. frontDressed: {
  33884. height: math.unit(5 + 10/12, "feet"),
  33885. name: "Front (Dressed)",
  33886. image: {
  33887. source: "./media/characters/argon/front-dressed.svg",
  33888. extra: 2009/1935,
  33889. bottom: 118/2127
  33890. }
  33891. },
  33892. },
  33893. [
  33894. {
  33895. name: "Normal",
  33896. height: math.unit(5 + 10/12, "feet"),
  33897. default: true
  33898. },
  33899. ]
  33900. ))
  33901. characterMakers.push(() => makeCharacter(
  33902. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33903. {
  33904. front: {
  33905. height: math.unit(8 + 6/12, "feet"),
  33906. weight: math.unit(1150, "lb"),
  33907. name: "Front",
  33908. image: {
  33909. source: "./media/characters/kichi/front.svg",
  33910. extra: 1267/1164,
  33911. bottom: 61/1328
  33912. }
  33913. },
  33914. back: {
  33915. height: math.unit(8 + 6/12, "feet"),
  33916. weight: math.unit(1150, "lb"),
  33917. name: "Back",
  33918. image: {
  33919. source: "./media/characters/kichi/back.svg",
  33920. extra: 1273/1166,
  33921. bottom: 33/1306
  33922. }
  33923. },
  33924. },
  33925. [
  33926. {
  33927. name: "Normal",
  33928. height: math.unit(8 + 6/12, "feet"),
  33929. default: true
  33930. },
  33931. ]
  33932. ))
  33933. characterMakers.push(() => makeCharacter(
  33934. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33935. {
  33936. front: {
  33937. height: math.unit(6, "feet"),
  33938. weight: math.unit(210, "lb"),
  33939. name: "Front",
  33940. image: {
  33941. source: "./media/characters/manetel-greyscale/front.svg",
  33942. extra: 350/312,
  33943. bottom: 8/358
  33944. }
  33945. },
  33946. },
  33947. [
  33948. {
  33949. name: "Micro",
  33950. height: math.unit(2, "inches")
  33951. },
  33952. {
  33953. name: "Normal",
  33954. height: math.unit(6, "feet"),
  33955. default: true
  33956. },
  33957. {
  33958. name: "Minimacro",
  33959. height: math.unit(17, "feet")
  33960. },
  33961. {
  33962. name: "Macro",
  33963. height: math.unit(117, "feet")
  33964. },
  33965. ]
  33966. ))
  33967. characterMakers.push(() => makeCharacter(
  33968. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33969. {
  33970. side: {
  33971. height: math.unit(5 + 1/12, "feet"),
  33972. weight: math.unit(418, "lb"),
  33973. name: "Side",
  33974. image: {
  33975. source: "./media/characters/softpurr/side.svg",
  33976. extra: 1993/1945,
  33977. bottom: 134/2127
  33978. }
  33979. },
  33980. front: {
  33981. height: math.unit(5 + 1/12, "feet"),
  33982. weight: math.unit(418, "lb"),
  33983. name: "Front",
  33984. image: {
  33985. source: "./media/characters/softpurr/front.svg",
  33986. extra: 1950/1856,
  33987. bottom: 174/2124
  33988. }
  33989. },
  33990. paw: {
  33991. height: math.unit(1, "feet"),
  33992. name: "Paw",
  33993. image: {
  33994. source: "./media/characters/softpurr/paw.svg"
  33995. }
  33996. },
  33997. },
  33998. [
  33999. {
  34000. name: "Normal",
  34001. height: math.unit(5 + 1/12, "feet"),
  34002. default: true
  34003. },
  34004. ]
  34005. ))
  34006. characterMakers.push(() => makeCharacter(
  34007. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34008. {
  34009. front: {
  34010. height: math.unit(260, "meters"),
  34011. name: "Front",
  34012. image: {
  34013. source: "./media/characters/anahita/front.svg",
  34014. extra: 665/635,
  34015. bottom: 89/754
  34016. }
  34017. },
  34018. },
  34019. [
  34020. {
  34021. name: "Macro",
  34022. height: math.unit(260, "meters"),
  34023. default: true
  34024. },
  34025. ]
  34026. ))
  34027. characterMakers.push(() => makeCharacter(
  34028. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34029. {
  34030. front: {
  34031. height: math.unit(4 + 10/12, "feet"),
  34032. weight: math.unit(160, "lb"),
  34033. name: "Front",
  34034. image: {
  34035. source: "./media/characters/chip-mouse/front.svg",
  34036. extra: 3528/3408,
  34037. bottom: 0/3528
  34038. }
  34039. },
  34040. frontNsfw: {
  34041. height: math.unit(4 + 10/12, "feet"),
  34042. weight: math.unit(160, "lb"),
  34043. name: "Front (NSFW)",
  34044. image: {
  34045. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34046. extra: 3528/3408,
  34047. bottom: 0/3528
  34048. }
  34049. },
  34050. },
  34051. [
  34052. {
  34053. name: "Normal",
  34054. height: math.unit(4 + 10/12, "feet"),
  34055. default: true
  34056. },
  34057. ]
  34058. ))
  34059. characterMakers.push(() => makeCharacter(
  34060. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34061. {
  34062. side: {
  34063. height: math.unit(10, "feet"),
  34064. weight: math.unit(14000, "lb"),
  34065. name: "Side",
  34066. image: {
  34067. source: "./media/characters/kremm/side.svg",
  34068. extra: 1390/1053,
  34069. bottom: 90/1480
  34070. }
  34071. },
  34072. gut: {
  34073. height: math.unit(5.8, "feet"),
  34074. name: "Gut",
  34075. image: {
  34076. source: "./media/characters/kremm/gut.svg"
  34077. }
  34078. },
  34079. ass: {
  34080. height: math.unit(6.1, "feet"),
  34081. name: "Ass",
  34082. image: {
  34083. source: "./media/characters/kremm/ass.svg"
  34084. }
  34085. },
  34086. jaws: {
  34087. height: math.unit(2.2, "feet"),
  34088. name: "Jaws",
  34089. image: {
  34090. source: "./media/characters/kremm/jaws.svg"
  34091. }
  34092. },
  34093. dick: {
  34094. height: math.unit(4.26, "feet"),
  34095. name: "Dick",
  34096. image: {
  34097. source: "./media/characters/kremm/dick.svg"
  34098. }
  34099. },
  34100. },
  34101. [
  34102. {
  34103. name: "Normal",
  34104. height: math.unit(10, "feet"),
  34105. default: true
  34106. },
  34107. ]
  34108. ))
  34109. characterMakers.push(() => makeCharacter(
  34110. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34111. {
  34112. front: {
  34113. height: math.unit(30, "stories"),
  34114. name: "Front",
  34115. image: {
  34116. source: "./media/characters/kai/front.svg",
  34117. extra: 1892/1718,
  34118. bottom: 162/2054
  34119. }
  34120. },
  34121. },
  34122. [
  34123. {
  34124. name: "Macro",
  34125. height: math.unit(30, "stories"),
  34126. default: true
  34127. },
  34128. ]
  34129. ))
  34130. characterMakers.push(() => makeCharacter(
  34131. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34132. {
  34133. front: {
  34134. height: math.unit(6 + 4/12, "feet"),
  34135. weight: math.unit(145, "lb"),
  34136. name: "Front",
  34137. image: {
  34138. source: "./media/characters/sykes/front.svg",
  34139. extra: 1321 / 1187,
  34140. bottom: 66 / 1387
  34141. }
  34142. },
  34143. back: {
  34144. height: math.unit(6 + 4/12, "feet"),
  34145. weight: math.unit(145, "lb"),
  34146. name: "Back",
  34147. image: {
  34148. source: "./media/characters/sykes/back.svg",
  34149. extra: 1326/1181,
  34150. bottom: 31/1357
  34151. }
  34152. },
  34153. handBack: {
  34154. height: math.unit(0.9, "feet"),
  34155. name: "Hand (Back)",
  34156. image: {
  34157. source: "./media/characters/sykes/hand-back.svg"
  34158. }
  34159. },
  34160. handFront: {
  34161. height: math.unit(0.839, "feet"),
  34162. name: "Hand (Front)",
  34163. image: {
  34164. source: "./media/characters/sykes/hand-front.svg"
  34165. }
  34166. },
  34167. leftFoot: {
  34168. height: math.unit(1.2, "feet"),
  34169. name: "Foot (Left)",
  34170. image: {
  34171. source: "./media/characters/sykes/foot-left.svg"
  34172. }
  34173. },
  34174. rightFoot: {
  34175. height: math.unit(1.2, "feet"),
  34176. name: "Foot (Right)",
  34177. image: {
  34178. source: "./media/characters/sykes/foot-right.svg"
  34179. }
  34180. },
  34181. maw: {
  34182. height: math.unit(1.93, "feet"),
  34183. name: "Maw",
  34184. image: {
  34185. source: "./media/characters/sykes/maw.svg"
  34186. }
  34187. },
  34188. teeth: {
  34189. height: math.unit(0.51, "feet"),
  34190. name: "Teeth",
  34191. image: {
  34192. source: "./media/characters/sykes/teeth.svg"
  34193. }
  34194. },
  34195. tongue: {
  34196. height: math.unit(2.13, "feet"),
  34197. name: "Tongue",
  34198. image: {
  34199. source: "./media/characters/sykes/tongue.svg"
  34200. }
  34201. },
  34202. uvula: {
  34203. height: math.unit(0.16, "feet"),
  34204. name: "Uvula",
  34205. image: {
  34206. source: "./media/characters/sykes/uvula.svg"
  34207. }
  34208. },
  34209. collar: {
  34210. height: math.unit(0.287, "feet"),
  34211. name: "Collar",
  34212. image: {
  34213. source: "./media/characters/sykes/collar.svg"
  34214. }
  34215. },
  34216. },
  34217. [
  34218. {
  34219. name: "Shrunken",
  34220. height: math.unit(5, "inches")
  34221. },
  34222. {
  34223. name: "Normal",
  34224. height: math.unit(6 + 4 / 12, "feet"),
  34225. default: true
  34226. },
  34227. {
  34228. name: "Big",
  34229. height: math.unit(15, "feet")
  34230. },
  34231. ]
  34232. ))
  34233. characterMakers.push(() => makeCharacter(
  34234. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34235. {
  34236. front: {
  34237. height: math.unit(5 + 8/12, "feet"),
  34238. weight: math.unit(190, "lb"),
  34239. name: "Front",
  34240. image: {
  34241. source: "./media/characters/oven-otter/front.svg",
  34242. extra: 1809/1740,
  34243. bottom: 181/1990
  34244. }
  34245. },
  34246. back: {
  34247. height: math.unit(5 + 8/12, "feet"),
  34248. weight: math.unit(190, "lb"),
  34249. name: "Back",
  34250. image: {
  34251. source: "./media/characters/oven-otter/back.svg",
  34252. extra: 1709/1635,
  34253. bottom: 118/1827
  34254. }
  34255. },
  34256. hand: {
  34257. height: math.unit(1.07, "feet"),
  34258. name: "Hand",
  34259. image: {
  34260. source: "./media/characters/oven-otter/hand.svg"
  34261. }
  34262. },
  34263. beans: {
  34264. height: math.unit(1.74, "feet"),
  34265. name: "Beans",
  34266. image: {
  34267. source: "./media/characters/oven-otter/beans.svg"
  34268. }
  34269. },
  34270. },
  34271. [
  34272. {
  34273. name: "Micro",
  34274. height: math.unit(0.5, "inches")
  34275. },
  34276. {
  34277. name: "Normal",
  34278. height: math.unit(5 + 8/12, "feet"),
  34279. default: true
  34280. },
  34281. {
  34282. name: "Macro",
  34283. height: math.unit(250, "feet")
  34284. },
  34285. {
  34286. name: "Really High",
  34287. height: math.unit(420, "feet")
  34288. },
  34289. ]
  34290. ))
  34291. characterMakers.push(() => makeCharacter(
  34292. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34293. {
  34294. front: {
  34295. height: math.unit(5, "meters"),
  34296. weight: math.unit(292000000000000, "kg"),
  34297. name: "Front",
  34298. image: {
  34299. source: "./media/characters/devourer/front.svg",
  34300. extra: 1800/1733,
  34301. bottom: 211/2011
  34302. }
  34303. },
  34304. maw: {
  34305. height: math.unit(1.1, "meter"),
  34306. name: "Maw",
  34307. image: {
  34308. source: "./media/characters/devourer/maw.svg"
  34309. }
  34310. },
  34311. },
  34312. [
  34313. {
  34314. name: "Small",
  34315. height: math.unit(3, "meters")
  34316. },
  34317. {
  34318. name: "Large",
  34319. height: math.unit(5, "meters"),
  34320. default: true
  34321. },
  34322. ]
  34323. ))
  34324. characterMakers.push(() => makeCharacter(
  34325. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34326. {
  34327. front: {
  34328. height: math.unit(6, "feet"),
  34329. weight: math.unit(400, "lb"),
  34330. name: "Front",
  34331. image: {
  34332. source: "./media/characters/ellarby/front.svg",
  34333. extra: 1909/1763,
  34334. bottom: 80/1989
  34335. }
  34336. },
  34337. back: {
  34338. height: math.unit(6, "feet"),
  34339. weight: math.unit(400, "lb"),
  34340. name: "Back",
  34341. image: {
  34342. source: "./media/characters/ellarby/back.svg",
  34343. extra: 1914/1784,
  34344. bottom: 172/2086
  34345. }
  34346. },
  34347. },
  34348. [
  34349. {
  34350. name: "Mischief",
  34351. height: math.unit(18, "inches")
  34352. },
  34353. {
  34354. name: "Trouble",
  34355. height: math.unit(12, "feet")
  34356. },
  34357. {
  34358. name: "Havoc",
  34359. height: math.unit(200, "feet"),
  34360. default: true
  34361. },
  34362. {
  34363. name: "Pandemonium",
  34364. height: math.unit(1, "mile")
  34365. },
  34366. {
  34367. name: "Catastrophe",
  34368. height: math.unit(100, "miles")
  34369. },
  34370. ]
  34371. ))
  34372. characterMakers.push(() => makeCharacter(
  34373. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34374. {
  34375. front: {
  34376. height: math.unit(4.7, "meters"),
  34377. weight: math.unit(6500, "kg"),
  34378. name: "Front",
  34379. image: {
  34380. source: "./media/characters/vex/front.svg",
  34381. extra: 1288/1140,
  34382. bottom: 100/1388
  34383. }
  34384. },
  34385. },
  34386. [
  34387. {
  34388. name: "Normal",
  34389. height: math.unit(4.7, "meters"),
  34390. default: true
  34391. },
  34392. ]
  34393. ))
  34394. characterMakers.push(() => makeCharacter(
  34395. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34396. {
  34397. normal: {
  34398. height: math.unit(6, "feet"),
  34399. weight: math.unit(350, "lb"),
  34400. name: "Normal",
  34401. image: {
  34402. source: "./media/characters/teshy/normal.svg",
  34403. extra: 1795/1735,
  34404. bottom: 16/1811
  34405. }
  34406. },
  34407. monsterFront: {
  34408. height: math.unit(12, "feet"),
  34409. weight: math.unit(4700, "lb"),
  34410. name: "Monster (Front)",
  34411. image: {
  34412. source: "./media/characters/teshy/monster-front.svg",
  34413. extra: 2042/2034,
  34414. bottom: 128/2170
  34415. }
  34416. },
  34417. monsterSide: {
  34418. height: math.unit(12, "feet"),
  34419. weight: math.unit(4700, "lb"),
  34420. name: "Monster (Side)",
  34421. image: {
  34422. source: "./media/characters/teshy/monster-side.svg",
  34423. extra: 2067/2056,
  34424. bottom: 70/2137
  34425. }
  34426. },
  34427. monsterBack: {
  34428. height: math.unit(12, "feet"),
  34429. weight: math.unit(4700, "lb"),
  34430. name: "Monster (Back)",
  34431. image: {
  34432. source: "./media/characters/teshy/monster-back.svg",
  34433. extra: 1921/1914,
  34434. bottom: 171/2092
  34435. }
  34436. },
  34437. },
  34438. [
  34439. {
  34440. name: "Normal",
  34441. height: math.unit(6, "feet"),
  34442. default: true
  34443. },
  34444. ]
  34445. ))
  34446. characterMakers.push(() => makeCharacter(
  34447. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34448. {
  34449. front: {
  34450. height: math.unit(6, "feet"),
  34451. name: "Front",
  34452. image: {
  34453. source: "./media/characters/ramey/front.svg",
  34454. extra: 790/787,
  34455. bottom: 27/817
  34456. }
  34457. },
  34458. },
  34459. [
  34460. {
  34461. name: "Normal",
  34462. height: math.unit(6, "feet"),
  34463. default: true
  34464. },
  34465. ]
  34466. ))
  34467. characterMakers.push(() => makeCharacter(
  34468. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34469. {
  34470. front: {
  34471. height: math.unit(5 + 5/12, "feet"),
  34472. weight: math.unit(120, "lb"),
  34473. name: "Front",
  34474. image: {
  34475. source: "./media/characters/phirae/front.svg",
  34476. extra: 2491/2436,
  34477. bottom: 38/2529
  34478. }
  34479. },
  34480. },
  34481. [
  34482. {
  34483. name: "Normal",
  34484. height: math.unit(5 + 5/12, "feet"),
  34485. default: true
  34486. },
  34487. ]
  34488. ))
  34489. characterMakers.push(() => makeCharacter(
  34490. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34491. {
  34492. front: {
  34493. height: math.unit(5 + 3/12, "feet"),
  34494. name: "Front",
  34495. image: {
  34496. source: "./media/characters/stagglas/front.svg",
  34497. extra: 962/882,
  34498. bottom: 53/1015
  34499. }
  34500. },
  34501. feral: {
  34502. height: math.unit(335, "cm"),
  34503. name: "Feral",
  34504. image: {
  34505. source: "./media/characters/stagglas/feral.svg",
  34506. extra: 1732/1090,
  34507. bottom: 48/1780
  34508. }
  34509. },
  34510. },
  34511. [
  34512. {
  34513. name: "Normal",
  34514. height: math.unit(5 + 3/12, "feet"),
  34515. default: true
  34516. },
  34517. ]
  34518. ))
  34519. characterMakers.push(() => makeCharacter(
  34520. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34521. {
  34522. front: {
  34523. height: math.unit(5 + 4/12, "feet"),
  34524. weight: math.unit(145, "lb"),
  34525. name: "Front",
  34526. image: {
  34527. source: "./media/characters/starra/front.svg",
  34528. extra: 1790/1691,
  34529. bottom: 91/1881
  34530. }
  34531. },
  34532. },
  34533. [
  34534. {
  34535. name: "Normal",
  34536. height: math.unit(5 + 4/12, "feet"),
  34537. default: true
  34538. },
  34539. ]
  34540. ))
  34541. characterMakers.push(() => makeCharacter(
  34542. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34543. {
  34544. front: {
  34545. height: math.unit(2.2, "meters"),
  34546. name: "Front",
  34547. image: {
  34548. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34549. extra: 1194/1005,
  34550. bottom: 25/1219
  34551. }
  34552. },
  34553. },
  34554. [
  34555. {
  34556. name: "Normal",
  34557. height: math.unit(2.2, "meters"),
  34558. default: true
  34559. },
  34560. ]
  34561. ))
  34562. characterMakers.push(() => makeCharacter(
  34563. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34564. {
  34565. side: {
  34566. height: math.unit(8 + 2/12, "feet"),
  34567. weight: math.unit(1240, "lb"),
  34568. name: "Side",
  34569. image: {
  34570. source: "./media/characters/mika-valentine/side.svg",
  34571. extra: 2670/2501,
  34572. bottom: 250/2920
  34573. }
  34574. },
  34575. },
  34576. [
  34577. {
  34578. name: "Normal",
  34579. height: math.unit(8 + 2/12, "feet"),
  34580. default: true
  34581. },
  34582. ]
  34583. ))
  34584. characterMakers.push(() => makeCharacter(
  34585. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34586. {
  34587. front: {
  34588. height: math.unit(7 + 2/12, "feet"),
  34589. name: "Front",
  34590. image: {
  34591. source: "./media/characters/xoltol/front.svg",
  34592. extra: 2212/2124,
  34593. bottom: 84/2296
  34594. }
  34595. },
  34596. side: {
  34597. height: math.unit(7 + 2/12, "feet"),
  34598. name: "Side",
  34599. image: {
  34600. source: "./media/characters/xoltol/side.svg",
  34601. extra: 2273/2197,
  34602. bottom: 26/2299
  34603. }
  34604. },
  34605. hand: {
  34606. height: math.unit(2.5, "feet"),
  34607. name: "Hand",
  34608. image: {
  34609. source: "./media/characters/xoltol/hand.svg"
  34610. }
  34611. },
  34612. },
  34613. [
  34614. {
  34615. name: "Small-ish",
  34616. height: math.unit(5 + 11/12, "feet")
  34617. },
  34618. {
  34619. name: "Normal",
  34620. height: math.unit(7 + 2/12, "feet")
  34621. },
  34622. {
  34623. name: "\"Macro\"",
  34624. height: math.unit(14 + 9/12, "feet"),
  34625. default: true
  34626. },
  34627. {
  34628. name: "Alternate Height",
  34629. height: math.unit(20, "feet")
  34630. },
  34631. {
  34632. name: "Actually Macro",
  34633. height: math.unit(100, "feet")
  34634. },
  34635. ]
  34636. ))
  34637. characterMakers.push(() => makeCharacter(
  34638. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34639. {
  34640. front: {
  34641. height: math.unit(5 + 2/12, "feet"),
  34642. name: "Front",
  34643. image: {
  34644. source: "./media/characters/kotetsu-redwood/front.svg",
  34645. extra: 1053/942,
  34646. bottom: 60/1113
  34647. }
  34648. },
  34649. },
  34650. [
  34651. {
  34652. name: "Normal",
  34653. height: math.unit(5 + 2/12, "feet"),
  34654. default: true
  34655. },
  34656. ]
  34657. ))
  34658. characterMakers.push(() => makeCharacter(
  34659. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34660. {
  34661. front: {
  34662. height: math.unit(2.4, "meters"),
  34663. weight: math.unit(125, "kg"),
  34664. name: "Front",
  34665. image: {
  34666. source: "./media/characters/lilith/front.svg",
  34667. extra: 1590/1513,
  34668. bottom: 203/1793
  34669. }
  34670. },
  34671. },
  34672. [
  34673. {
  34674. name: "Humanoid",
  34675. height: math.unit(2.4, "meters")
  34676. },
  34677. {
  34678. name: "Normal",
  34679. height: math.unit(6, "meters"),
  34680. default: true
  34681. },
  34682. {
  34683. name: "Largest",
  34684. height: math.unit(55, "meters")
  34685. },
  34686. ]
  34687. ))
  34688. characterMakers.push(() => makeCharacter(
  34689. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34690. {
  34691. front: {
  34692. height: math.unit(8 + 4/12, "feet"),
  34693. weight: math.unit(535, "lb"),
  34694. name: "Front",
  34695. image: {
  34696. source: "./media/characters/beh'kah-bolger/front.svg",
  34697. extra: 1660/1603,
  34698. bottom: 37/1697
  34699. }
  34700. },
  34701. },
  34702. [
  34703. {
  34704. name: "Normal",
  34705. height: math.unit(8 + 4/12, "feet"),
  34706. default: true
  34707. },
  34708. {
  34709. name: "Kaiju",
  34710. height: math.unit(250, "feet")
  34711. },
  34712. {
  34713. name: "Still Growing",
  34714. height: math.unit(10, "miles")
  34715. },
  34716. {
  34717. name: "Continental",
  34718. height: math.unit(5000, "miles")
  34719. },
  34720. {
  34721. name: "Final Form",
  34722. height: math.unit(2500000, "miles")
  34723. },
  34724. ]
  34725. ))
  34726. characterMakers.push(() => makeCharacter(
  34727. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34728. {
  34729. front: {
  34730. height: math.unit(7 + 2/12, "feet"),
  34731. weight: math.unit(230, "kg"),
  34732. name: "Front",
  34733. image: {
  34734. source: "./media/characters/tatyana-milewska/front.svg",
  34735. extra: 1199/1150,
  34736. bottom: 86/1285
  34737. }
  34738. },
  34739. },
  34740. [
  34741. {
  34742. name: "Normal",
  34743. height: math.unit(7 + 2/12, "feet"),
  34744. default: true
  34745. },
  34746. {
  34747. name: "Big",
  34748. height: math.unit(12, "feet")
  34749. },
  34750. {
  34751. name: "Minimacro",
  34752. height: math.unit(20, "feet")
  34753. },
  34754. {
  34755. name: "Macro",
  34756. height: math.unit(120, "feet")
  34757. },
  34758. ]
  34759. ))
  34760. characterMakers.push(() => makeCharacter(
  34761. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34762. {
  34763. front: {
  34764. height: math.unit(7 + 8/12, "feet"),
  34765. weight: math.unit(152, "kg"),
  34766. name: "Front",
  34767. image: {
  34768. source: "./media/characters/helen-arri/front.svg",
  34769. extra: 440/423,
  34770. bottom: 14/454
  34771. }
  34772. },
  34773. back: {
  34774. height: math.unit(7 + 8/12, "feet"),
  34775. weight: math.unit(152, "kg"),
  34776. name: "Back",
  34777. image: {
  34778. source: "./media/characters/helen-arri/back.svg",
  34779. extra: 443/426,
  34780. bottom: 8/451
  34781. }
  34782. },
  34783. },
  34784. [
  34785. {
  34786. name: "Normal",
  34787. height: math.unit(7 + 8/12, "feet"),
  34788. default: true
  34789. },
  34790. {
  34791. name: "Big",
  34792. height: math.unit(14, "feet")
  34793. },
  34794. {
  34795. name: "Minimacro",
  34796. height: math.unit(24, "feet")
  34797. },
  34798. {
  34799. name: "Macro",
  34800. height: math.unit(140, "feet")
  34801. },
  34802. ]
  34803. ))
  34804. characterMakers.push(() => makeCharacter(
  34805. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34806. {
  34807. front: {
  34808. height: math.unit(6, "meters"),
  34809. name: "Front",
  34810. image: {
  34811. source: "./media/characters/ehanu-rehu/front.svg",
  34812. extra: 1800/1800,
  34813. bottom: 59/1859
  34814. }
  34815. },
  34816. },
  34817. [
  34818. {
  34819. name: "Normal",
  34820. height: math.unit(6, "meters"),
  34821. default: true
  34822. },
  34823. ]
  34824. ))
  34825. characterMakers.push(() => makeCharacter(
  34826. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34827. {
  34828. front: {
  34829. height: math.unit(7 + 3/12, "feet"),
  34830. name: "Front",
  34831. image: {
  34832. source: "./media/characters/renholder/front.svg",
  34833. extra: 3096/2960,
  34834. bottom: 250/3346
  34835. }
  34836. },
  34837. },
  34838. [
  34839. {
  34840. name: "Normal Bat",
  34841. height: math.unit(7 + 3/12, "feet"),
  34842. default: true
  34843. },
  34844. {
  34845. name: "Slightly Tall Bat",
  34846. height: math.unit(100, "feet")
  34847. },
  34848. {
  34849. name: "Big Bat",
  34850. height: math.unit(1000, "feet")
  34851. },
  34852. {
  34853. name: "City-Sized Bat",
  34854. height: math.unit(200000, "feet")
  34855. },
  34856. {
  34857. name: "Bigger Bat",
  34858. height: math.unit(10000, "miles")
  34859. },
  34860. {
  34861. name: "Solar Sized Bat",
  34862. height: math.unit(100, "AU")
  34863. },
  34864. {
  34865. name: "Galactic Bat",
  34866. height: math.unit(200000, "lightyears")
  34867. },
  34868. {
  34869. name: "Universally Known Bat",
  34870. height: math.unit(1, "universe")
  34871. },
  34872. ]
  34873. ))
  34874. characterMakers.push(() => makeCharacter(
  34875. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34876. {
  34877. front: {
  34878. height: math.unit(6 + 11/12, "feet"),
  34879. weight: math.unit(250, "lb"),
  34880. name: "Front",
  34881. image: {
  34882. source: "./media/characters/cookiecat/front.svg",
  34883. extra: 893/827,
  34884. bottom: 14/907
  34885. }
  34886. },
  34887. },
  34888. [
  34889. {
  34890. name: "Micro",
  34891. height: math.unit(3, "inches")
  34892. },
  34893. {
  34894. name: "Normal",
  34895. height: math.unit(6 + 11/12, "feet"),
  34896. default: true
  34897. },
  34898. {
  34899. name: "Macro",
  34900. height: math.unit(100, "feet")
  34901. },
  34902. {
  34903. name: "Macro+",
  34904. height: math.unit(404, "feet")
  34905. },
  34906. {
  34907. name: "Megamacro",
  34908. height: math.unit(165, "miles")
  34909. },
  34910. {
  34911. name: "Planetary",
  34912. height: math.unit(4600, "miles")
  34913. },
  34914. ]
  34915. ))
  34916. characterMakers.push(() => makeCharacter(
  34917. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34918. {
  34919. front: {
  34920. height: math.unit(10 + 3/12, "feet"),
  34921. weight: math.unit(1500, "lb"),
  34922. name: "Front",
  34923. image: {
  34924. source: "./media/characters/tux-kusanagi/front.svg",
  34925. extra: 944/840,
  34926. bottom: 39/983
  34927. }
  34928. },
  34929. back: {
  34930. height: math.unit(10 + 3/12, "feet"),
  34931. weight: math.unit(1500, "lb"),
  34932. name: "Back",
  34933. image: {
  34934. source: "./media/characters/tux-kusanagi/back.svg",
  34935. extra: 941/842,
  34936. bottom: 28/969
  34937. }
  34938. },
  34939. rump: {
  34940. height: math.unit(5.25, "feet"),
  34941. name: "Rump",
  34942. image: {
  34943. source: "./media/characters/tux-kusanagi/rump.svg"
  34944. }
  34945. },
  34946. beak: {
  34947. height: math.unit(1.54, "feet"),
  34948. name: "Beak",
  34949. image: {
  34950. source: "./media/characters/tux-kusanagi/beak.svg"
  34951. }
  34952. },
  34953. },
  34954. [
  34955. {
  34956. name: "Normal",
  34957. height: math.unit(10 + 3/12, "feet"),
  34958. default: true
  34959. },
  34960. ]
  34961. ))
  34962. characterMakers.push(() => makeCharacter(
  34963. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34964. {
  34965. front: {
  34966. height: math.unit(58, "feet"),
  34967. weight: math.unit(200, "tons"),
  34968. name: "Front",
  34969. image: {
  34970. source: "./media/characters/uzarmazari/front.svg",
  34971. extra: 1575/1455,
  34972. bottom: 152/1727
  34973. }
  34974. },
  34975. back: {
  34976. height: math.unit(58, "feet"),
  34977. weight: math.unit(200, "tons"),
  34978. name: "Back",
  34979. image: {
  34980. source: "./media/characters/uzarmazari/back.svg",
  34981. extra: 1585/1510,
  34982. bottom: 157/1742
  34983. }
  34984. },
  34985. head: {
  34986. height: math.unit(26, "feet"),
  34987. name: "Head",
  34988. image: {
  34989. source: "./media/characters/uzarmazari/head.svg"
  34990. }
  34991. },
  34992. },
  34993. [
  34994. {
  34995. name: "Normal",
  34996. height: math.unit(58, "feet"),
  34997. default: true
  34998. },
  34999. ]
  35000. ))
  35001. characterMakers.push(() => makeCharacter(
  35002. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35003. {
  35004. side: {
  35005. height: math.unit(15, "feet"),
  35006. name: "Side",
  35007. image: {
  35008. source: "./media/characters/akitu/side.svg",
  35009. extra: 1421/1321,
  35010. bottom: 157/1578
  35011. }
  35012. },
  35013. front: {
  35014. height: math.unit(15, "feet"),
  35015. name: "Front",
  35016. image: {
  35017. source: "./media/characters/akitu/front.svg",
  35018. extra: 1435/1326,
  35019. bottom: 232/1667
  35020. }
  35021. },
  35022. },
  35023. [
  35024. {
  35025. name: "Normal",
  35026. height: math.unit(15, "feet"),
  35027. default: true
  35028. },
  35029. ]
  35030. ))
  35031. characterMakers.push(() => makeCharacter(
  35032. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35033. {
  35034. front: {
  35035. height: math.unit(10 + 8/12, "feet"),
  35036. name: "Front",
  35037. image: {
  35038. source: "./media/characters/azalie-croixland/front.svg",
  35039. extra: 1972/1856,
  35040. bottom: 31/2003
  35041. }
  35042. },
  35043. },
  35044. [
  35045. {
  35046. name: "Original Height",
  35047. height: math.unit(5 + 4/12, "feet")
  35048. },
  35049. {
  35050. name: "Normal Height",
  35051. height: math.unit(10 + 8/12, "feet"),
  35052. default: true
  35053. },
  35054. ]
  35055. ))
  35056. characterMakers.push(() => makeCharacter(
  35057. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35058. {
  35059. side: {
  35060. height: math.unit(7 + 1/12, "feet"),
  35061. weight: math.unit(245, "lb"),
  35062. name: "Side",
  35063. image: {
  35064. source: "./media/characters/kavus-kazian/side.svg",
  35065. extra: 349/342,
  35066. bottom: 15/364
  35067. }
  35068. },
  35069. },
  35070. [
  35071. {
  35072. name: "Normal",
  35073. height: math.unit(7 + 1/12, "feet"),
  35074. default: true
  35075. },
  35076. ]
  35077. ))
  35078. characterMakers.push(() => makeCharacter(
  35079. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35080. {
  35081. normalFront: {
  35082. height: math.unit(5 + 11/12, "feet"),
  35083. name: "Front",
  35084. image: {
  35085. source: "./media/characters/moonlight-rose/normal-front.svg",
  35086. extra: 1980/1825,
  35087. bottom: 18/1998
  35088. },
  35089. form: "normal",
  35090. default: true
  35091. },
  35092. normalBack: {
  35093. height: math.unit(5 + 11/12, "feet"),
  35094. name: "Back",
  35095. image: {
  35096. source: "./media/characters/moonlight-rose/normal-back.svg",
  35097. extra: 2010/1839,
  35098. bottom: 10/2020
  35099. },
  35100. form: "normal"
  35101. },
  35102. demonFront: {
  35103. height: math.unit(1.5, "earths"),
  35104. name: "Front",
  35105. image: {
  35106. source: "./media/characters/moonlight-rose/demon.svg",
  35107. extra: 1400/1294,
  35108. bottom: 45/1445
  35109. },
  35110. form: "demon",
  35111. default: true
  35112. },
  35113. terraFront: {
  35114. height: math.unit(1.5, "earths"),
  35115. name: "Front",
  35116. image: {
  35117. source: "./media/characters/moonlight-rose/terra.svg"
  35118. },
  35119. form: "terra",
  35120. default: true
  35121. },
  35122. jupiterFront: {
  35123. height: math.unit(69911*2, "km"),
  35124. name: "Front",
  35125. image: {
  35126. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35127. extra: 1367/1286,
  35128. bottom: 55/1422
  35129. },
  35130. form: "jupiter",
  35131. default: true
  35132. },
  35133. neptuneFront: {
  35134. height: math.unit(24622*2, "feet"),
  35135. name: "Front",
  35136. image: {
  35137. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35138. extra: 1851/1712,
  35139. bottom: 0/1851
  35140. },
  35141. form: "neptune",
  35142. default: true
  35143. },
  35144. },
  35145. [
  35146. {
  35147. name: "\"Natural\" Height",
  35148. height: math.unit(5 + 11/12, "feet"),
  35149. form: "normal"
  35150. },
  35151. {
  35152. name: "Smallest comfortable size",
  35153. height: math.unit(40, "meters"),
  35154. form: "normal"
  35155. },
  35156. {
  35157. name: "Common size",
  35158. height: math.unit(50, "km"),
  35159. form: "normal",
  35160. default: true
  35161. },
  35162. {
  35163. name: "Normal",
  35164. height: math.unit(1.5, "earths"),
  35165. form: "demon",
  35166. default: true
  35167. },
  35168. {
  35169. name: "Universal",
  35170. height: math.unit(15, "universes"),
  35171. form: "demon"
  35172. },
  35173. {
  35174. name: "Earth",
  35175. height: math.unit(1.5, "earths"),
  35176. form: "terra",
  35177. default: true
  35178. },
  35179. {
  35180. name: "Super Earth",
  35181. height: math.unit(67.5, "earths"),
  35182. form: "terra"
  35183. },
  35184. {
  35185. name: "Doesn't fit in a solar system...",
  35186. height: math.unit(1, "galaxy"),
  35187. form: "terra"
  35188. },
  35189. {
  35190. name: "Saturn",
  35191. height: math.unit(58232*2, "km"),
  35192. form: "jupiter"
  35193. },
  35194. {
  35195. name: "Jupiter",
  35196. height: math.unit(69911*2, "km"),
  35197. form: "jupiter",
  35198. default: true
  35199. },
  35200. {
  35201. name: "HD 100546 b",
  35202. height: math.unit(482938, "km"),
  35203. form: "jupiter"
  35204. },
  35205. {
  35206. name: "Enceladus",
  35207. height: math.unit(513*2, "km"),
  35208. form: "neptune"
  35209. },
  35210. {
  35211. name: "Europe",
  35212. height: math.unit(1560*2, "km"),
  35213. form: "neptune"
  35214. },
  35215. {
  35216. name: "Neptune",
  35217. height: math.unit(24622*2, "km"),
  35218. form: "neptune",
  35219. default: true
  35220. },
  35221. {
  35222. name: "CoRoT-9b",
  35223. height: math.unit(75067*2, "km"),
  35224. form: "neptune"
  35225. },
  35226. ],
  35227. {
  35228. "normal": {
  35229. name: "Normal",
  35230. default: true
  35231. },
  35232. "demon": {
  35233. name: "Demon"
  35234. },
  35235. "terra": {
  35236. name: "Terra"
  35237. },
  35238. "jupiter": {
  35239. name: "Jupiter"
  35240. },
  35241. "neptune": {
  35242. name: "Neptune"
  35243. }
  35244. }
  35245. ))
  35246. characterMakers.push(() => makeCharacter(
  35247. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35248. {
  35249. front: {
  35250. height: math.unit(16, "feet"),
  35251. weight: math.unit(610, "kg"),
  35252. name: "Front",
  35253. image: {
  35254. source: "./media/characters/huckle/front.svg",
  35255. extra: 1731/1625,
  35256. bottom: 33/1764
  35257. }
  35258. },
  35259. back: {
  35260. height: math.unit(16, "feet"),
  35261. weight: math.unit(610, "kg"),
  35262. name: "Back",
  35263. image: {
  35264. source: "./media/characters/huckle/back.svg",
  35265. extra: 1738/1651,
  35266. bottom: 37/1775
  35267. }
  35268. },
  35269. laughing: {
  35270. height: math.unit(3.75, "feet"),
  35271. name: "Laughing",
  35272. image: {
  35273. source: "./media/characters/huckle/laughing.svg"
  35274. }
  35275. },
  35276. angry: {
  35277. height: math.unit(4.15, "feet"),
  35278. name: "Angry",
  35279. image: {
  35280. source: "./media/characters/huckle/angry.svg"
  35281. }
  35282. },
  35283. },
  35284. [
  35285. {
  35286. name: "Normal",
  35287. height: math.unit(16, "feet"),
  35288. default: true
  35289. },
  35290. {
  35291. name: "Mini Macro",
  35292. height: math.unit(463, "feet")
  35293. },
  35294. {
  35295. name: "Macro",
  35296. height: math.unit(1680, "meters")
  35297. },
  35298. {
  35299. name: "Mega Macro",
  35300. height: math.unit(175, "km")
  35301. },
  35302. {
  35303. name: "Terra Macro",
  35304. height: math.unit(32, "gigameters")
  35305. },
  35306. {
  35307. name: "Multiverse+",
  35308. height: math.unit(2.56e23, "yottameters")
  35309. },
  35310. ]
  35311. ))
  35312. characterMakers.push(() => makeCharacter(
  35313. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35314. {
  35315. front: {
  35316. height: math.unit(6 + 9/12, "feet"),
  35317. weight: math.unit(280, "lb"),
  35318. name: "Front",
  35319. image: {
  35320. source: "./media/characters/candy/front.svg",
  35321. extra: 234/217,
  35322. bottom: 11/245
  35323. }
  35324. },
  35325. },
  35326. [
  35327. {
  35328. name: "Really Small",
  35329. height: math.unit(0.1, "nm")
  35330. },
  35331. {
  35332. name: "Micro",
  35333. height: math.unit(2, "inches")
  35334. },
  35335. {
  35336. name: "Normal",
  35337. height: math.unit(6 + 9/12, "feet"),
  35338. default: true
  35339. },
  35340. {
  35341. name: "Small Macro",
  35342. height: math.unit(69, "feet")
  35343. },
  35344. {
  35345. name: "Macro",
  35346. height: math.unit(160, "feet")
  35347. },
  35348. {
  35349. name: "Megamacro",
  35350. height: math.unit(22000, "miles")
  35351. },
  35352. {
  35353. name: "Gigamacro",
  35354. height: math.unit(50000, "miles")
  35355. },
  35356. ]
  35357. ))
  35358. characterMakers.push(() => makeCharacter(
  35359. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35360. {
  35361. front: {
  35362. height: math.unit(4, "feet"),
  35363. weight: math.unit(90, "lb"),
  35364. name: "Front",
  35365. image: {
  35366. source: "./media/characters/joey-mcdonald/front.svg",
  35367. extra: 1059/852,
  35368. bottom: 33/1092
  35369. }
  35370. },
  35371. back: {
  35372. height: math.unit(4, "feet"),
  35373. weight: math.unit(90, "lb"),
  35374. name: "Back",
  35375. image: {
  35376. source: "./media/characters/joey-mcdonald/back.svg",
  35377. extra: 1077/879,
  35378. bottom: 5/1082
  35379. }
  35380. },
  35381. frontKobold: {
  35382. height: math.unit(4, "feet"),
  35383. weight: math.unit(100, "lb"),
  35384. name: "Front-kobold",
  35385. image: {
  35386. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35387. extra: 1480/1367,
  35388. bottom: 0/1480
  35389. }
  35390. },
  35391. backKobold: {
  35392. height: math.unit(4, "feet"),
  35393. weight: math.unit(100, "lb"),
  35394. name: "Back-kobold",
  35395. image: {
  35396. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35397. extra: 1449/1361,
  35398. bottom: 0/1449
  35399. }
  35400. },
  35401. },
  35402. [
  35403. {
  35404. name: "Normal",
  35405. height: math.unit(4, "feet"),
  35406. default: true
  35407. },
  35408. ]
  35409. ))
  35410. characterMakers.push(() => makeCharacter(
  35411. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35412. {
  35413. front: {
  35414. height: math.unit(12 + 6/12, "feet"),
  35415. name: "Front",
  35416. image: {
  35417. source: "./media/characters/kass-lockheed/front.svg",
  35418. extra: 354/343,
  35419. bottom: 9/363
  35420. }
  35421. },
  35422. back: {
  35423. height: math.unit(12 + 6/12, "feet"),
  35424. name: "Back",
  35425. image: {
  35426. source: "./media/characters/kass-lockheed/back.svg",
  35427. extra: 364/352,
  35428. bottom: 3/367
  35429. }
  35430. },
  35431. dick: {
  35432. height: math.unit(3.12, "feet"),
  35433. name: "Dick",
  35434. image: {
  35435. source: "./media/characters/kass-lockheed/dick.svg"
  35436. }
  35437. },
  35438. head: {
  35439. height: math.unit(2.6, "feet"),
  35440. name: "Head",
  35441. image: {
  35442. source: "./media/characters/kass-lockheed/head.svg"
  35443. }
  35444. },
  35445. bleh: {
  35446. height: math.unit(2.85, "feet"),
  35447. name: "Bleh",
  35448. image: {
  35449. source: "./media/characters/kass-lockheed/bleh.svg"
  35450. }
  35451. },
  35452. smug: {
  35453. height: math.unit(2.85, "feet"),
  35454. name: "Smug",
  35455. image: {
  35456. source: "./media/characters/kass-lockheed/smug.svg"
  35457. }
  35458. },
  35459. },
  35460. [
  35461. {
  35462. name: "Normal",
  35463. height: math.unit(12 + 6/12, "feet"),
  35464. default: true
  35465. },
  35466. ]
  35467. ))
  35468. characterMakers.push(() => makeCharacter(
  35469. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35470. {
  35471. front: {
  35472. height: math.unit(6 + 2/12, "feet"),
  35473. name: "Front",
  35474. image: {
  35475. source: "./media/characters/taylor/front.svg",
  35476. extra: 639/495,
  35477. bottom: 12/651
  35478. }
  35479. },
  35480. },
  35481. [
  35482. {
  35483. name: "Normal",
  35484. height: math.unit(6 + 2/12, "feet"),
  35485. default: true
  35486. },
  35487. {
  35488. name: "Big",
  35489. height: math.unit(15, "feet")
  35490. },
  35491. {
  35492. name: "Lorg",
  35493. height: math.unit(80, "feet")
  35494. },
  35495. {
  35496. name: "Too Lorg",
  35497. height: math.unit(120, "feet")
  35498. },
  35499. ]
  35500. ))
  35501. characterMakers.push(() => makeCharacter(
  35502. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35503. {
  35504. front: {
  35505. height: math.unit(15, "feet"),
  35506. name: "Front",
  35507. image: {
  35508. source: "./media/characters/kaizer/front.svg",
  35509. extra: 1612/1436,
  35510. bottom: 43/1655
  35511. }
  35512. },
  35513. },
  35514. [
  35515. {
  35516. name: "Normal",
  35517. height: math.unit(15, "feet"),
  35518. default: true
  35519. },
  35520. ]
  35521. ))
  35522. characterMakers.push(() => makeCharacter(
  35523. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35524. {
  35525. front: {
  35526. height: math.unit(2, "feet"),
  35527. weight: math.unit(30, "lb"),
  35528. name: "Front",
  35529. image: {
  35530. source: "./media/characters/sandy/front.svg",
  35531. extra: 1439/1307,
  35532. bottom: 194/1633
  35533. }
  35534. },
  35535. },
  35536. [
  35537. {
  35538. name: "Normal",
  35539. height: math.unit(2, "feet"),
  35540. default: true
  35541. },
  35542. ]
  35543. ))
  35544. characterMakers.push(() => makeCharacter(
  35545. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35546. {
  35547. front: {
  35548. height: math.unit(3, "feet"),
  35549. name: "Front",
  35550. image: {
  35551. source: "./media/characters/mellvi/front.svg",
  35552. extra: 1831/1630,
  35553. bottom: 58/1889
  35554. }
  35555. },
  35556. },
  35557. [
  35558. {
  35559. name: "Normal",
  35560. height: math.unit(3, "feet"),
  35561. default: true
  35562. },
  35563. ]
  35564. ))
  35565. characterMakers.push(() => makeCharacter(
  35566. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35567. {
  35568. front: {
  35569. height: math.unit(5 + 11/12, "feet"),
  35570. weight: math.unit(200, "lb"),
  35571. name: "Front",
  35572. image: {
  35573. source: "./media/characters/shirou/front.svg",
  35574. extra: 2491/2383,
  35575. bottom: 189/2680
  35576. }
  35577. },
  35578. back: {
  35579. height: math.unit(5 + 11/12, "feet"),
  35580. weight: math.unit(200, "lb"),
  35581. name: "Back",
  35582. image: {
  35583. source: "./media/characters/shirou/back.svg",
  35584. extra: 2554/2450,
  35585. bottom: 76/2630
  35586. }
  35587. },
  35588. },
  35589. [
  35590. {
  35591. name: "Normal",
  35592. height: math.unit(5 + 11/12, "feet"),
  35593. default: true
  35594. },
  35595. ]
  35596. ))
  35597. characterMakers.push(() => makeCharacter(
  35598. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35599. {
  35600. front: {
  35601. height: math.unit(6 + 3/12, "feet"),
  35602. weight: math.unit(177, "lb"),
  35603. name: "Front",
  35604. image: {
  35605. source: "./media/characters/noryu/front.svg",
  35606. extra: 973/885,
  35607. bottom: 10/983
  35608. }
  35609. },
  35610. },
  35611. [
  35612. {
  35613. name: "Normal",
  35614. height: math.unit(6 + 3/12, "feet"),
  35615. default: true
  35616. },
  35617. ]
  35618. ))
  35619. characterMakers.push(() => makeCharacter(
  35620. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35621. {
  35622. front: {
  35623. height: math.unit(5 + 6/12, "feet"),
  35624. weight: math.unit(170, "lb"),
  35625. name: "Front",
  35626. image: {
  35627. source: "./media/characters/mevolas-rubenido/front.svg",
  35628. extra: 2109/1901,
  35629. bottom: 96/2205
  35630. }
  35631. },
  35632. },
  35633. [
  35634. {
  35635. name: "Normal",
  35636. height: math.unit(5 + 6/12, "feet"),
  35637. default: true
  35638. },
  35639. ]
  35640. ))
  35641. characterMakers.push(() => makeCharacter(
  35642. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35643. {
  35644. front: {
  35645. height: math.unit(100, "feet"),
  35646. name: "Front",
  35647. image: {
  35648. source: "./media/characters/dee/front.svg",
  35649. extra: 2153/2036,
  35650. bottom: 59/2212
  35651. }
  35652. },
  35653. back: {
  35654. height: math.unit(100, "feet"),
  35655. name: "Back",
  35656. image: {
  35657. source: "./media/characters/dee/back.svg",
  35658. extra: 2183/2058,
  35659. bottom: 75/2258
  35660. }
  35661. },
  35662. foot: {
  35663. height: math.unit(19.43, "feet"),
  35664. name: "Foot",
  35665. image: {
  35666. source: "./media/characters/dee/foot.svg"
  35667. }
  35668. },
  35669. hoof: {
  35670. height: math.unit(20.6, "feet"),
  35671. name: "Hoof",
  35672. image: {
  35673. source: "./media/characters/dee/hoof.svg"
  35674. }
  35675. },
  35676. },
  35677. [
  35678. {
  35679. name: "Macro",
  35680. height: math.unit(100, "feet"),
  35681. default: true
  35682. },
  35683. ]
  35684. ))
  35685. characterMakers.push(() => makeCharacter(
  35686. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35687. {
  35688. front: {
  35689. height: math.unit(5 + 6/12, "feet"),
  35690. name: "Front",
  35691. image: {
  35692. source: "./media/characters/teh/front.svg",
  35693. extra: 1002/847,
  35694. bottom: 62/1064
  35695. }
  35696. },
  35697. },
  35698. [
  35699. {
  35700. name: "Normal",
  35701. height: math.unit(5 + 6/12, "feet"),
  35702. default: true
  35703. },
  35704. ]
  35705. ))
  35706. characterMakers.push(() => makeCharacter(
  35707. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35708. {
  35709. side: {
  35710. height: math.unit(6 + 1/12, "feet"),
  35711. weight: math.unit(204, "lb"),
  35712. name: "Side",
  35713. image: {
  35714. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35715. extra: 974/775,
  35716. bottom: 169/1143
  35717. }
  35718. },
  35719. sitting: {
  35720. height: math.unit(6 + 2/12, "feet"),
  35721. weight: math.unit(204, "lb"),
  35722. name: "Sitting",
  35723. image: {
  35724. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35725. extra: 1175/964,
  35726. bottom: 378/1553
  35727. }
  35728. },
  35729. },
  35730. [
  35731. {
  35732. name: "Normal",
  35733. height: math.unit(6 + 1/12, "feet"),
  35734. default: true
  35735. },
  35736. ]
  35737. ))
  35738. characterMakers.push(() => makeCharacter(
  35739. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35740. {
  35741. front: {
  35742. height: math.unit(6, "inches"),
  35743. name: "Front",
  35744. image: {
  35745. source: "./media/characters/tululi/front.svg",
  35746. extra: 1997/1876,
  35747. bottom: 20/2017
  35748. }
  35749. },
  35750. },
  35751. [
  35752. {
  35753. name: "Normal",
  35754. height: math.unit(6, "inches"),
  35755. default: true
  35756. },
  35757. ]
  35758. ))
  35759. characterMakers.push(() => makeCharacter(
  35760. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35761. {
  35762. front: {
  35763. height: math.unit(4 + 1/12, "feet"),
  35764. name: "Front",
  35765. image: {
  35766. source: "./media/characters/star/front.svg",
  35767. extra: 1493/1189,
  35768. bottom: 48/1541
  35769. }
  35770. },
  35771. },
  35772. [
  35773. {
  35774. name: "Normal",
  35775. height: math.unit(4 + 1/12, "feet"),
  35776. default: true
  35777. },
  35778. ]
  35779. ))
  35780. characterMakers.push(() => makeCharacter(
  35781. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35782. {
  35783. front: {
  35784. height: math.unit(6 + 3/12, "feet"),
  35785. name: "Front",
  35786. image: {
  35787. source: "./media/characters/comet/front.svg",
  35788. extra: 1681/1462,
  35789. bottom: 26/1707
  35790. }
  35791. },
  35792. },
  35793. [
  35794. {
  35795. name: "Normal",
  35796. height: math.unit(6 + 3/12, "feet"),
  35797. default: true
  35798. },
  35799. ]
  35800. ))
  35801. characterMakers.push(() => makeCharacter(
  35802. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35803. {
  35804. front: {
  35805. height: math.unit(950, "feet"),
  35806. name: "Front",
  35807. image: {
  35808. source: "./media/characters/vortex/front.svg",
  35809. extra: 1497/1434,
  35810. bottom: 56/1553
  35811. }
  35812. },
  35813. maw: {
  35814. height: math.unit(285, "feet"),
  35815. name: "Maw",
  35816. image: {
  35817. source: "./media/characters/vortex/maw.svg"
  35818. }
  35819. },
  35820. },
  35821. [
  35822. {
  35823. name: "Macro",
  35824. height: math.unit(950, "feet"),
  35825. default: true
  35826. },
  35827. ]
  35828. ))
  35829. characterMakers.push(() => makeCharacter(
  35830. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35831. {
  35832. front: {
  35833. height: math.unit(600, "feet"),
  35834. weight: math.unit(0.02, "grams"),
  35835. name: "Front",
  35836. image: {
  35837. source: "./media/characters/doodle/front.svg",
  35838. extra: 1578/1413,
  35839. bottom: 37/1615
  35840. }
  35841. },
  35842. },
  35843. [
  35844. {
  35845. name: "Macro",
  35846. height: math.unit(600, "feet"),
  35847. default: true
  35848. },
  35849. ]
  35850. ))
  35851. characterMakers.push(() => makeCharacter(
  35852. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35853. {
  35854. front: {
  35855. height: math.unit(6 + 6/12, "feet"),
  35856. name: "Front",
  35857. image: {
  35858. source: "./media/characters/jai/front.svg",
  35859. extra: 1645/1534,
  35860. bottom: 115/1760
  35861. }
  35862. },
  35863. },
  35864. [
  35865. {
  35866. name: "Normal",
  35867. height: math.unit(6 + 6/12, "feet"),
  35868. default: true
  35869. },
  35870. ]
  35871. ))
  35872. characterMakers.push(() => makeCharacter(
  35873. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35874. {
  35875. front: {
  35876. height: math.unit(6 + 8/12, "feet"),
  35877. name: "Front",
  35878. image: {
  35879. source: "./media/characters/pixel/front.svg",
  35880. extra: 1900/1735,
  35881. bottom: 63/1963
  35882. }
  35883. },
  35884. },
  35885. [
  35886. {
  35887. name: "Normal",
  35888. height: math.unit(6 + 8/12, "feet"),
  35889. default: true
  35890. },
  35891. ]
  35892. ))
  35893. characterMakers.push(() => makeCharacter(
  35894. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35895. {
  35896. back: {
  35897. height: math.unit(4 + 1/12, "feet"),
  35898. weight: math.unit(75, "lb"),
  35899. name: "Back",
  35900. image: {
  35901. source: "./media/characters/rhett/back.svg",
  35902. extra: 930/878,
  35903. bottom: 25/955
  35904. }
  35905. },
  35906. front: {
  35907. height: math.unit(4 + 1/12, "feet"),
  35908. weight: math.unit(75, "lb"),
  35909. name: "Front",
  35910. image: {
  35911. source: "./media/characters/rhett/front.svg",
  35912. extra: 1682/1586,
  35913. bottom: 92/1774
  35914. }
  35915. },
  35916. },
  35917. [
  35918. {
  35919. name: "Micro",
  35920. height: math.unit(8, "inches")
  35921. },
  35922. {
  35923. name: "Tiny",
  35924. height: math.unit(2, "feet")
  35925. },
  35926. {
  35927. name: "Normal",
  35928. height: math.unit(4 + 1/12, "feet"),
  35929. default: true
  35930. },
  35931. ]
  35932. ))
  35933. characterMakers.push(() => makeCharacter(
  35934. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35935. {
  35936. front: {
  35937. height: math.unit(3 + 3/12, "feet"),
  35938. name: "Front",
  35939. image: {
  35940. source: "./media/characters/penny/front.svg",
  35941. extra: 1406/1311,
  35942. bottom: 26/1432
  35943. }
  35944. },
  35945. },
  35946. [
  35947. {
  35948. name: "Normal",
  35949. height: math.unit(3 + 3/12, "feet"),
  35950. default: true
  35951. },
  35952. ]
  35953. ))
  35954. characterMakers.push(() => makeCharacter(
  35955. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35956. {
  35957. front: {
  35958. height: math.unit(4 + 11/12, "feet"),
  35959. name: "Front",
  35960. image: {
  35961. source: "./media/characters/monty/front.svg",
  35962. extra: 1479/1209,
  35963. bottom: 0/1479
  35964. }
  35965. },
  35966. },
  35967. [
  35968. {
  35969. name: "Normal",
  35970. height: math.unit(4 + 11/12, "feet"),
  35971. default: true
  35972. },
  35973. ]
  35974. ))
  35975. characterMakers.push(() => makeCharacter(
  35976. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35977. {
  35978. front: {
  35979. height: math.unit(8 + 4/12, "feet"),
  35980. name: "Front",
  35981. image: {
  35982. source: "./media/characters/sterling/front.svg",
  35983. extra: 1420/1236,
  35984. bottom: 27/1447
  35985. }
  35986. },
  35987. },
  35988. [
  35989. {
  35990. name: "Normal",
  35991. height: math.unit(8 + 4/12, "feet"),
  35992. default: true
  35993. },
  35994. ]
  35995. ))
  35996. characterMakers.push(() => makeCharacter(
  35997. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35998. {
  35999. front: {
  36000. height: math.unit(15, "feet"),
  36001. name: "Front",
  36002. image: {
  36003. source: "./media/characters/marble/front.svg",
  36004. extra: 973/937,
  36005. bottom: 32/1005
  36006. }
  36007. },
  36008. },
  36009. [
  36010. {
  36011. name: "Normal",
  36012. height: math.unit(15, "feet"),
  36013. default: true
  36014. },
  36015. ]
  36016. ))
  36017. characterMakers.push(() => makeCharacter(
  36018. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36019. {
  36020. front: {
  36021. height: math.unit(3, "inches"),
  36022. name: "Front",
  36023. image: {
  36024. source: "./media/characters/powder/front.svg",
  36025. extra: 1504/1334,
  36026. bottom: 518/2022
  36027. }
  36028. },
  36029. },
  36030. [
  36031. {
  36032. name: "Normal",
  36033. height: math.unit(3, "inches"),
  36034. default: true
  36035. },
  36036. ]
  36037. ))
  36038. characterMakers.push(() => makeCharacter(
  36039. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36040. {
  36041. front: {
  36042. height: math.unit(4 + 5/12, "feet"),
  36043. name: "Front",
  36044. image: {
  36045. source: "./media/characters/joey-raccoon/front.svg",
  36046. extra: 1273/1197,
  36047. bottom: 0/1273
  36048. }
  36049. },
  36050. },
  36051. [
  36052. {
  36053. name: "Normal",
  36054. height: math.unit(4 + 5/12, "feet"),
  36055. default: true
  36056. },
  36057. ]
  36058. ))
  36059. characterMakers.push(() => makeCharacter(
  36060. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36061. {
  36062. front: {
  36063. height: math.unit(8 + 4/12, "feet"),
  36064. name: "Front",
  36065. image: {
  36066. source: "./media/characters/vick/front.svg",
  36067. extra: 2187/2118,
  36068. bottom: 47/2234
  36069. }
  36070. },
  36071. },
  36072. [
  36073. {
  36074. name: "Normal",
  36075. height: math.unit(8 + 4/12, "feet"),
  36076. default: true
  36077. },
  36078. ]
  36079. ))
  36080. characterMakers.push(() => makeCharacter(
  36081. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36082. {
  36083. front: {
  36084. height: math.unit(5 + 5/12, "feet"),
  36085. name: "Front",
  36086. image: {
  36087. source: "./media/characters/mitsy/front.svg",
  36088. extra: 1842/1695,
  36089. bottom: 0/1842
  36090. }
  36091. },
  36092. },
  36093. [
  36094. {
  36095. name: "Normal",
  36096. height: math.unit(5 + 5/12, "feet"),
  36097. default: true
  36098. },
  36099. ]
  36100. ))
  36101. characterMakers.push(() => makeCharacter(
  36102. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36103. {
  36104. front: {
  36105. height: math.unit(6 + 3/12, "feet"),
  36106. name: "Front",
  36107. image: {
  36108. source: "./media/characters/silvy/front.svg",
  36109. extra: 1995/1836,
  36110. bottom: 225/2220
  36111. }
  36112. },
  36113. },
  36114. [
  36115. {
  36116. name: "Normal",
  36117. height: math.unit(6 + 3/12, "feet"),
  36118. default: true
  36119. },
  36120. ]
  36121. ))
  36122. characterMakers.push(() => makeCharacter(
  36123. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36124. {
  36125. front: {
  36126. height: math.unit(3 + 8/12, "feet"),
  36127. name: "Front",
  36128. image: {
  36129. source: "./media/characters/rodney/front.svg",
  36130. extra: 1956/1747,
  36131. bottom: 31/1987
  36132. }
  36133. },
  36134. frontDressed: {
  36135. height: math.unit(2.9, "feet"),
  36136. name: "Front (Dressed)",
  36137. image: {
  36138. source: "./media/characters/rodney/front-dressed.svg",
  36139. extra: 1382/1241,
  36140. bottom: 385/1767
  36141. }
  36142. },
  36143. },
  36144. [
  36145. {
  36146. name: "Normal",
  36147. height: math.unit(3 + 8/12, "feet"),
  36148. default: true
  36149. },
  36150. ]
  36151. ))
  36152. characterMakers.push(() => makeCharacter(
  36153. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36154. {
  36155. front: {
  36156. height: math.unit(5 + 9/12, "feet"),
  36157. weight: math.unit(194, "lbs"),
  36158. name: "Front",
  36159. image: {
  36160. source: "./media/characters/zakail-sudekai/front.svg",
  36161. extra: 2696/2533,
  36162. bottom: 248/2944
  36163. }
  36164. },
  36165. maw: {
  36166. height: math.unit(1.35, "feet"),
  36167. name: "Maw",
  36168. image: {
  36169. source: "./media/characters/zakail-sudekai/maw.svg"
  36170. }
  36171. },
  36172. },
  36173. [
  36174. {
  36175. name: "Normal",
  36176. height: math.unit(5 + 9/12, "feet"),
  36177. default: true
  36178. },
  36179. ]
  36180. ))
  36181. characterMakers.push(() => makeCharacter(
  36182. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36183. {
  36184. front: {
  36185. height: math.unit(8 + 4/12, "feet"),
  36186. weight: math.unit(1200, "lb"),
  36187. name: "Front",
  36188. image: {
  36189. source: "./media/characters/eleanor/front.svg",
  36190. extra: 1226/1192,
  36191. bottom: 52/1278
  36192. }
  36193. },
  36194. back: {
  36195. height: math.unit(8 + 4/12, "feet"),
  36196. weight: math.unit(1200, "lb"),
  36197. name: "Back",
  36198. image: {
  36199. source: "./media/characters/eleanor/back.svg",
  36200. extra: 1242/1184,
  36201. bottom: 60/1302
  36202. }
  36203. },
  36204. head: {
  36205. height: math.unit(2.62, "feet"),
  36206. name: "Head",
  36207. image: {
  36208. source: "./media/characters/eleanor/head.svg"
  36209. }
  36210. },
  36211. },
  36212. [
  36213. {
  36214. name: "Normal",
  36215. height: math.unit(8 + 4/12, "feet"),
  36216. default: true
  36217. },
  36218. ]
  36219. ))
  36220. characterMakers.push(() => makeCharacter(
  36221. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36222. {
  36223. front: {
  36224. height: math.unit(8 + 4/12, "feet"),
  36225. weight: math.unit(750, "lb"),
  36226. name: "Front",
  36227. image: {
  36228. source: "./media/characters/tanya/front.svg",
  36229. extra: 1749/1615,
  36230. bottom: 33/1782
  36231. }
  36232. },
  36233. },
  36234. [
  36235. {
  36236. name: "Normal",
  36237. height: math.unit(8 + 4/12, "feet"),
  36238. default: true
  36239. },
  36240. ]
  36241. ))
  36242. characterMakers.push(() => makeCharacter(
  36243. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36244. {
  36245. front: {
  36246. height: math.unit(5, "feet"),
  36247. weight: math.unit(225, "lb"),
  36248. name: "Front",
  36249. image: {
  36250. source: "./media/characters/cindy/front.svg",
  36251. extra: 1320/1250,
  36252. bottom: 42/1362
  36253. }
  36254. },
  36255. frontDressed: {
  36256. height: math.unit(5, "feet"),
  36257. weight: math.unit(225, "lb"),
  36258. name: "Front (Dressed)",
  36259. image: {
  36260. source: "./media/characters/cindy/front-dressed.svg",
  36261. extra: 1320/1250,
  36262. bottom: 42/1362
  36263. }
  36264. },
  36265. back: {
  36266. height: math.unit(5, "feet"),
  36267. weight: math.unit(225, "lb"),
  36268. name: "Back",
  36269. image: {
  36270. source: "./media/characters/cindy/back.svg",
  36271. extra: 1384/1346,
  36272. bottom: 14/1398
  36273. }
  36274. },
  36275. },
  36276. [
  36277. {
  36278. name: "Normal",
  36279. height: math.unit(5, "feet"),
  36280. default: true
  36281. },
  36282. ]
  36283. ))
  36284. characterMakers.push(() => makeCharacter(
  36285. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36286. {
  36287. front: {
  36288. height: math.unit(6 + 9/12, "feet"),
  36289. weight: math.unit(440, "lb"),
  36290. name: "Front",
  36291. image: {
  36292. source: "./media/characters/wilbur-owen/front.svg",
  36293. extra: 1575/1448,
  36294. bottom: 72/1647
  36295. }
  36296. },
  36297. back: {
  36298. height: math.unit(6 + 9/12, "feet"),
  36299. weight: math.unit(440, "lb"),
  36300. name: "Back",
  36301. image: {
  36302. source: "./media/characters/wilbur-owen/back.svg",
  36303. extra: 1578/1445,
  36304. bottom: 36/1614
  36305. }
  36306. },
  36307. },
  36308. [
  36309. {
  36310. name: "Normal",
  36311. height: math.unit(6 + 9/12, "feet"),
  36312. default: true
  36313. },
  36314. ]
  36315. ))
  36316. characterMakers.push(() => makeCharacter(
  36317. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36318. {
  36319. front: {
  36320. height: math.unit(6 + 5/12, "feet"),
  36321. weight: math.unit(650, "lb"),
  36322. name: "Front",
  36323. image: {
  36324. source: "./media/characters/keegan/front.svg",
  36325. extra: 2387/2198,
  36326. bottom: 33/2420
  36327. }
  36328. },
  36329. side: {
  36330. height: math.unit(6 + 5/12, "feet"),
  36331. weight: math.unit(650, "lb"),
  36332. name: "Side",
  36333. image: {
  36334. source: "./media/characters/keegan/side.svg",
  36335. extra: 2390/2202,
  36336. bottom: 47/2437
  36337. }
  36338. },
  36339. back: {
  36340. height: math.unit(6 + 5/12, "feet"),
  36341. weight: math.unit(650, "lb"),
  36342. name: "Back",
  36343. image: {
  36344. source: "./media/characters/keegan/back.svg",
  36345. extra: 2418/2268,
  36346. bottom: 15/2433
  36347. }
  36348. },
  36349. frontSfw: {
  36350. height: math.unit(6 + 5/12, "feet"),
  36351. weight: math.unit(650, "lb"),
  36352. name: "Front (SFW)",
  36353. image: {
  36354. source: "./media/characters/keegan/front-sfw.svg",
  36355. extra: 2387/2198,
  36356. bottom: 33/2420
  36357. }
  36358. },
  36359. beans: {
  36360. height: math.unit(1.85, "feet"),
  36361. name: "Beans",
  36362. image: {
  36363. source: "./media/characters/keegan/beans.svg"
  36364. }
  36365. },
  36366. },
  36367. [
  36368. {
  36369. name: "Normal",
  36370. height: math.unit(6 + 5/12, "feet"),
  36371. default: true
  36372. },
  36373. ]
  36374. ))
  36375. characterMakers.push(() => makeCharacter(
  36376. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36377. {
  36378. front: {
  36379. height: math.unit(9, "feet"),
  36380. name: "Front",
  36381. image: {
  36382. source: "./media/characters/colton/front.svg",
  36383. extra: 1589/1326,
  36384. bottom: 139/1728
  36385. }
  36386. },
  36387. },
  36388. [
  36389. {
  36390. name: "Normal",
  36391. height: math.unit(9, "feet"),
  36392. default: true
  36393. },
  36394. ]
  36395. ))
  36396. characterMakers.push(() => makeCharacter(
  36397. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36398. {
  36399. front: {
  36400. height: math.unit(2 + 9/12, "feet"),
  36401. name: "Front",
  36402. image: {
  36403. source: "./media/characters/bora/front.svg",
  36404. extra: 1265/1250,
  36405. bottom: 24/1289
  36406. }
  36407. },
  36408. },
  36409. [
  36410. {
  36411. name: "Normal",
  36412. height: math.unit(2 + 9/12, "feet"),
  36413. default: true
  36414. },
  36415. ]
  36416. ))
  36417. characterMakers.push(() => makeCharacter(
  36418. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36419. {
  36420. front: {
  36421. height: math.unit(8, "feet"),
  36422. name: "Front",
  36423. image: {
  36424. source: "./media/characters/myu-myu/front.svg",
  36425. extra: 1949/1857,
  36426. bottom: 90/2039
  36427. }
  36428. },
  36429. },
  36430. [
  36431. {
  36432. name: "Normal",
  36433. height: math.unit(8, "feet"),
  36434. default: true
  36435. },
  36436. {
  36437. name: "Big",
  36438. height: math.unit(15, "feet")
  36439. },
  36440. {
  36441. name: "BIG",
  36442. height: math.unit(25, "feet")
  36443. },
  36444. ]
  36445. ))
  36446. characterMakers.push(() => makeCharacter(
  36447. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36448. {
  36449. side: {
  36450. height: math.unit(7 + 5/12, "feet"),
  36451. weight: math.unit(2800, "lb"),
  36452. name: "Side",
  36453. image: {
  36454. source: "./media/characters/haloren/side.svg",
  36455. extra: 1793/409,
  36456. bottom: 59/1852
  36457. }
  36458. },
  36459. frontPaw: {
  36460. height: math.unit(2.36, "feet"),
  36461. name: "Front paw",
  36462. image: {
  36463. source: "./media/characters/haloren/front-paw.svg"
  36464. }
  36465. },
  36466. hindPaw: {
  36467. height: math.unit(3.18, "feet"),
  36468. name: "Hind paw",
  36469. image: {
  36470. source: "./media/characters/haloren/hind-paw.svg"
  36471. }
  36472. },
  36473. maw: {
  36474. height: math.unit(5.05, "feet"),
  36475. name: "Maw",
  36476. image: {
  36477. source: "./media/characters/haloren/maw.svg"
  36478. }
  36479. },
  36480. dick: {
  36481. height: math.unit(2.90, "feet"),
  36482. name: "Dick",
  36483. image: {
  36484. source: "./media/characters/haloren/dick.svg"
  36485. }
  36486. },
  36487. },
  36488. [
  36489. {
  36490. name: "Normal",
  36491. height: math.unit(7 + 5/12, "feet"),
  36492. default: true
  36493. },
  36494. {
  36495. name: "Enhanced",
  36496. height: math.unit(14 + 3/12, "feet")
  36497. },
  36498. ]
  36499. ))
  36500. characterMakers.push(() => makeCharacter(
  36501. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36502. {
  36503. front: {
  36504. height: math.unit(171, "cm"),
  36505. name: "Front",
  36506. image: {
  36507. source: "./media/characters/kimmy/front.svg",
  36508. extra: 1491/1435,
  36509. bottom: 53/1544
  36510. }
  36511. },
  36512. },
  36513. [
  36514. {
  36515. name: "Small",
  36516. height: math.unit(9, "cm")
  36517. },
  36518. {
  36519. name: "Normal",
  36520. height: math.unit(171, "cm"),
  36521. default: true
  36522. },
  36523. ]
  36524. ))
  36525. characterMakers.push(() => makeCharacter(
  36526. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36527. {
  36528. front: {
  36529. height: math.unit(8, "feet"),
  36530. weight: math.unit(300, "lb"),
  36531. name: "Front",
  36532. image: {
  36533. source: "./media/characters/galeboomer/front.svg",
  36534. extra: 4651/4415,
  36535. bottom: 162/4813
  36536. }
  36537. },
  36538. back: {
  36539. height: math.unit(8, "feet"),
  36540. weight: math.unit(300, "lb"),
  36541. name: "Back",
  36542. image: {
  36543. source: "./media/characters/galeboomer/back.svg",
  36544. extra: 4544/4314,
  36545. bottom: 16/4560
  36546. }
  36547. },
  36548. frontAlt: {
  36549. height: math.unit(8, "feet"),
  36550. weight: math.unit(300, "lb"),
  36551. name: "Front (Alt)",
  36552. image: {
  36553. source: "./media/characters/galeboomer/front-alt.svg",
  36554. extra: 4458/4228,
  36555. bottom: 68/4526
  36556. }
  36557. },
  36558. maw: {
  36559. height: math.unit(1.2, "feet"),
  36560. name: "Maw",
  36561. image: {
  36562. source: "./media/characters/galeboomer/maw.svg"
  36563. }
  36564. },
  36565. },
  36566. [
  36567. {
  36568. name: "Normal",
  36569. height: math.unit(8, "feet"),
  36570. default: true
  36571. },
  36572. ]
  36573. ))
  36574. characterMakers.push(() => makeCharacter(
  36575. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36576. {
  36577. front: {
  36578. height: math.unit(5 + 9/12, "feet"),
  36579. weight: math.unit(120, "lb"),
  36580. name: "Front",
  36581. image: {
  36582. source: "./media/characters/chyr/front.svg",
  36583. extra: 1323/1254,
  36584. bottom: 63/1386
  36585. }
  36586. },
  36587. back: {
  36588. height: math.unit(5 + 9/12, "feet"),
  36589. weight: math.unit(120, "lb"),
  36590. name: "Back",
  36591. image: {
  36592. source: "./media/characters/chyr/back.svg",
  36593. extra: 1323/1252,
  36594. bottom: 48/1371
  36595. }
  36596. },
  36597. },
  36598. [
  36599. {
  36600. name: "Normal",
  36601. height: math.unit(5 + 9/12, "feet"),
  36602. default: true
  36603. },
  36604. ]
  36605. ))
  36606. characterMakers.push(() => makeCharacter(
  36607. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36608. {
  36609. front: {
  36610. height: math.unit(7, "feet"),
  36611. weight: math.unit(310, "lb"),
  36612. name: "Front",
  36613. image: {
  36614. source: "./media/characters/solarus/front.svg",
  36615. extra: 2415/2021,
  36616. bottom: 103/2518
  36617. }
  36618. },
  36619. back: {
  36620. height: math.unit(7, "feet"),
  36621. weight: math.unit(310, "lb"),
  36622. name: "Back",
  36623. image: {
  36624. source: "./media/characters/solarus/back.svg",
  36625. extra: 2463/2089,
  36626. bottom: 79/2542
  36627. }
  36628. },
  36629. },
  36630. [
  36631. {
  36632. name: "Normal",
  36633. height: math.unit(7, "feet"),
  36634. default: true
  36635. },
  36636. ]
  36637. ))
  36638. characterMakers.push(() => makeCharacter(
  36639. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36640. {
  36641. front: {
  36642. height: math.unit(16, "feet"),
  36643. name: "Front",
  36644. image: {
  36645. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36646. extra: 1844/1780,
  36647. bottom: 58/1902
  36648. }
  36649. },
  36650. winterCoat: {
  36651. height: math.unit(16, "feet"),
  36652. name: "Winter Coat",
  36653. image: {
  36654. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36655. extra: 1807/1775,
  36656. bottom: 69/1876
  36657. }
  36658. },
  36659. },
  36660. [
  36661. {
  36662. name: "Normal",
  36663. height: math.unit(16, "feet"),
  36664. default: true
  36665. },
  36666. {
  36667. name: "Chicago Size",
  36668. height: math.unit(560, "feet")
  36669. },
  36670. ]
  36671. ))
  36672. characterMakers.push(() => makeCharacter(
  36673. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36674. {
  36675. front: {
  36676. height: math.unit(11 + 6/12, "feet"),
  36677. weight: math.unit(1366, "lb"),
  36678. name: "Front",
  36679. image: {
  36680. source: "./media/characters/lexor/front.svg",
  36681. extra: 1560/1481,
  36682. bottom: 211/1771
  36683. }
  36684. },
  36685. back: {
  36686. height: math.unit(11 + 6/12, "feet"),
  36687. weight: math.unit(1366, "lb"),
  36688. name: "Back",
  36689. image: {
  36690. source: "./media/characters/lexor/back.svg",
  36691. extra: 1614/1533,
  36692. bottom: 76/1690
  36693. }
  36694. },
  36695. maw: {
  36696. height: math.unit(3, "feet"),
  36697. name: "Maw",
  36698. image: {
  36699. source: "./media/characters/lexor/maw.svg"
  36700. }
  36701. },
  36702. dick: {
  36703. height: math.unit(2.59, "feet"),
  36704. name: "Dick",
  36705. image: {
  36706. source: "./media/characters/lexor/dick.svg"
  36707. }
  36708. },
  36709. },
  36710. [
  36711. {
  36712. name: "Normal",
  36713. height: math.unit(11 + 6/12, "feet"),
  36714. default: true
  36715. },
  36716. ]
  36717. ))
  36718. characterMakers.push(() => makeCharacter(
  36719. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36720. {
  36721. front: {
  36722. height: math.unit(5 + 8/12, "feet"),
  36723. name: "Front",
  36724. image: {
  36725. source: "./media/characters/magnum/front.svg",
  36726. extra: 942/855,
  36727. bottom: 26/968
  36728. }
  36729. },
  36730. },
  36731. [
  36732. {
  36733. name: "Normal",
  36734. height: math.unit(5 + 8/12, "feet"),
  36735. default: true
  36736. },
  36737. ]
  36738. ))
  36739. characterMakers.push(() => makeCharacter(
  36740. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36741. {
  36742. front: {
  36743. height: math.unit(18 + 4/12, "feet"),
  36744. weight: math.unit(1500, "kg"),
  36745. name: "Front",
  36746. image: {
  36747. source: "./media/characters/solas-sharpsman/front.svg",
  36748. extra: 1698/1589,
  36749. bottom: 0/1698
  36750. }
  36751. },
  36752. },
  36753. [
  36754. {
  36755. name: "Normal",
  36756. height: math.unit(18 + 4/12, "feet"),
  36757. default: true
  36758. },
  36759. ]
  36760. ))
  36761. characterMakers.push(() => makeCharacter(
  36762. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36763. {
  36764. front: {
  36765. height: math.unit(5 + 5/12, "feet"),
  36766. weight: math.unit(180, "lb"),
  36767. name: "Front",
  36768. image: {
  36769. source: "./media/characters/october/front.svg",
  36770. extra: 1800/1650,
  36771. bottom: 0/1800
  36772. }
  36773. },
  36774. frontNsfw: {
  36775. height: math.unit(5 + 5/12, "feet"),
  36776. weight: math.unit(180, "lb"),
  36777. name: "Front (NSFW)",
  36778. image: {
  36779. source: "./media/characters/october/front-nsfw.svg",
  36780. extra: 1392/1307,
  36781. bottom: 42/1434
  36782. }
  36783. },
  36784. },
  36785. [
  36786. {
  36787. name: "Normal",
  36788. height: math.unit(5 + 5/12, "feet"),
  36789. default: true
  36790. },
  36791. ]
  36792. ))
  36793. characterMakers.push(() => makeCharacter(
  36794. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36795. {
  36796. front: {
  36797. height: math.unit(8 + 6/12, "feet"),
  36798. name: "Front",
  36799. image: {
  36800. source: "./media/characters/essynkardi/front.svg",
  36801. extra: 1914/1846,
  36802. bottom: 22/1936
  36803. }
  36804. },
  36805. },
  36806. [
  36807. {
  36808. name: "Normal",
  36809. height: math.unit(8 + 6/12, "feet"),
  36810. default: true
  36811. },
  36812. ]
  36813. ))
  36814. characterMakers.push(() => makeCharacter(
  36815. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36816. {
  36817. front: {
  36818. height: math.unit(6 + 6/12, "feet"),
  36819. weight: math.unit(7, "lb"),
  36820. name: "Front",
  36821. image: {
  36822. source: "./media/characters/icky/front.svg",
  36823. extra: 813/782,
  36824. bottom: 66/879
  36825. }
  36826. },
  36827. back: {
  36828. height: math.unit(6 + 6/12, "feet"),
  36829. weight: math.unit(7, "lb"),
  36830. name: "Back",
  36831. image: {
  36832. source: "./media/characters/icky/back.svg",
  36833. extra: 754/735,
  36834. bottom: 56/810
  36835. }
  36836. },
  36837. },
  36838. [
  36839. {
  36840. name: "Normal",
  36841. height: math.unit(6 + 6/12, "feet"),
  36842. default: true
  36843. },
  36844. ]
  36845. ))
  36846. characterMakers.push(() => makeCharacter(
  36847. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36848. {
  36849. front: {
  36850. height: math.unit(15, "feet"),
  36851. name: "Front",
  36852. image: {
  36853. source: "./media/characters/rojas/front.svg",
  36854. extra: 1462/1408,
  36855. bottom: 95/1557
  36856. }
  36857. },
  36858. back: {
  36859. height: math.unit(15, "feet"),
  36860. name: "Back",
  36861. image: {
  36862. source: "./media/characters/rojas/back.svg",
  36863. extra: 1023/954,
  36864. bottom: 28/1051
  36865. }
  36866. },
  36867. },
  36868. [
  36869. {
  36870. name: "Normal",
  36871. height: math.unit(15, "feet"),
  36872. default: true
  36873. },
  36874. ]
  36875. ))
  36876. characterMakers.push(() => makeCharacter(
  36877. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36878. {
  36879. frontHuman: {
  36880. height: math.unit(5 + 7/12, "feet"),
  36881. name: "Front (Human)",
  36882. image: {
  36883. source: "./media/characters/alek-dryagan/front-human.svg",
  36884. extra: 1687/1667,
  36885. bottom: 69/1756
  36886. }
  36887. },
  36888. backHuman: {
  36889. height: math.unit(5 + 7/12, "feet"),
  36890. name: "Back (Human)",
  36891. image: {
  36892. source: "./media/characters/alek-dryagan/back-human.svg",
  36893. extra: 1670/1649,
  36894. bottom: 65/1735
  36895. }
  36896. },
  36897. frontDemi: {
  36898. height: math.unit(65, "feet"),
  36899. name: "Front (Demi)",
  36900. image: {
  36901. source: "./media/characters/alek-dryagan/front-demi.svg",
  36902. extra: 1669/1642,
  36903. bottom: 49/1718
  36904. }
  36905. },
  36906. backDemi: {
  36907. height: math.unit(65, "feet"),
  36908. name: "Back (Demi)",
  36909. image: {
  36910. source: "./media/characters/alek-dryagan/back-demi.svg",
  36911. extra: 1658/1637,
  36912. bottom: 40/1698
  36913. }
  36914. },
  36915. mawHuman: {
  36916. height: math.unit(0.3, "feet"),
  36917. name: "Maw (Human)",
  36918. image: {
  36919. source: "./media/characters/alek-dryagan/maw-human.svg"
  36920. }
  36921. },
  36922. mawDemi: {
  36923. height: math.unit(3.8, "feet"),
  36924. name: "Maw (Demi)",
  36925. image: {
  36926. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36927. }
  36928. },
  36929. },
  36930. [
  36931. {
  36932. name: "Normal",
  36933. height: math.unit(5 + 7/12, "feet"),
  36934. default: true
  36935. },
  36936. ]
  36937. ))
  36938. characterMakers.push(() => makeCharacter(
  36939. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36940. {
  36941. frontHuman: {
  36942. height: math.unit(5 + 2/12, "feet"),
  36943. name: "Front (Human)",
  36944. image: {
  36945. source: "./media/characters/gen/front-human.svg",
  36946. extra: 1627/1538,
  36947. bottom: 71/1698
  36948. }
  36949. },
  36950. backHuman: {
  36951. height: math.unit(5 + 2/12, "feet"),
  36952. name: "Back (Human)",
  36953. image: {
  36954. source: "./media/characters/gen/back-human.svg",
  36955. extra: 1638/1548,
  36956. bottom: 69/1707
  36957. }
  36958. },
  36959. frontDemi: {
  36960. height: math.unit(5 + 2/12, "feet"),
  36961. name: "Front (Demi)",
  36962. image: {
  36963. source: "./media/characters/gen/front-demi.svg",
  36964. extra: 1627/1538,
  36965. bottom: 71/1698
  36966. }
  36967. },
  36968. backDemi: {
  36969. height: math.unit(5 + 2/12, "feet"),
  36970. name: "Back (Demi)",
  36971. image: {
  36972. source: "./media/characters/gen/back-demi.svg",
  36973. extra: 1638/1548,
  36974. bottom: 69/1707
  36975. }
  36976. },
  36977. },
  36978. [
  36979. {
  36980. name: "Normal",
  36981. height: math.unit(5 + 2/12, "feet"),
  36982. default: true
  36983. },
  36984. ]
  36985. ))
  36986. characterMakers.push(() => makeCharacter(
  36987. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36988. {
  36989. frontImp: {
  36990. height: math.unit(1 + 11/12, "feet"),
  36991. name: "Front (Imp)",
  36992. image: {
  36993. source: "./media/characters/max-kobold/front-imp.svg",
  36994. extra: 1238/1134,
  36995. bottom: 81/1319
  36996. }
  36997. },
  36998. backImp: {
  36999. height: math.unit(1 + 11/12, "feet"),
  37000. name: "Back (Imp)",
  37001. image: {
  37002. source: "./media/characters/max-kobold/back-imp.svg",
  37003. extra: 1334/1175,
  37004. bottom: 34/1368
  37005. }
  37006. },
  37007. frontDemi: {
  37008. height: math.unit(5 + 9/12, "feet"),
  37009. name: "Front (Demi)",
  37010. image: {
  37011. source: "./media/characters/max-kobold/front-demi.svg",
  37012. extra: 1715/1685,
  37013. bottom: 54/1769
  37014. }
  37015. },
  37016. backDemi: {
  37017. height: math.unit(5 + 9/12, "feet"),
  37018. name: "Back (Demi)",
  37019. image: {
  37020. source: "./media/characters/max-kobold/back-demi.svg",
  37021. extra: 1752/1729,
  37022. bottom: 41/1793
  37023. }
  37024. },
  37025. handImp: {
  37026. height: math.unit(0.45, "feet"),
  37027. name: "Hand (Imp)",
  37028. image: {
  37029. source: "./media/characters/max-kobold/hand.svg"
  37030. }
  37031. },
  37032. pawImp: {
  37033. height: math.unit(0.46, "feet"),
  37034. name: "Paw (Imp)",
  37035. image: {
  37036. source: "./media/characters/max-kobold/paw.svg"
  37037. }
  37038. },
  37039. handDemi: {
  37040. height: math.unit(0.80, "feet"),
  37041. name: "Hand (Demi)",
  37042. image: {
  37043. source: "./media/characters/max-kobold/hand.svg"
  37044. }
  37045. },
  37046. pawDemi: {
  37047. height: math.unit(1.1, "feet"),
  37048. name: "Paw (Demi)",
  37049. image: {
  37050. source: "./media/characters/max-kobold/paw.svg"
  37051. }
  37052. },
  37053. headImp: {
  37054. height: math.unit(1.33, "feet"),
  37055. name: "Head (Imp)",
  37056. image: {
  37057. source: "./media/characters/max-kobold/head-imp.svg"
  37058. }
  37059. },
  37060. mawImp: {
  37061. height: math.unit(0.75, "feet"),
  37062. name: "Maw (Imp)",
  37063. image: {
  37064. source: "./media/characters/max-kobold/maw-imp.svg"
  37065. }
  37066. },
  37067. mawDemi: {
  37068. height: math.unit(0.42, "feet"),
  37069. name: "Maw (Demi)",
  37070. image: {
  37071. source: "./media/characters/max-kobold/maw-demi.svg"
  37072. }
  37073. },
  37074. },
  37075. [
  37076. {
  37077. name: "Normal",
  37078. height: math.unit(1 + 11/12, "feet"),
  37079. default: true
  37080. },
  37081. ]
  37082. ))
  37083. characterMakers.push(() => makeCharacter(
  37084. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37085. {
  37086. front: {
  37087. height: math.unit(7 + 5/12, "feet"),
  37088. name: "Front",
  37089. image: {
  37090. source: "./media/characters/carbon/front.svg",
  37091. extra: 1754/1689,
  37092. bottom: 65/1819
  37093. }
  37094. },
  37095. back: {
  37096. height: math.unit(7 + 5/12, "feet"),
  37097. name: "Back",
  37098. image: {
  37099. source: "./media/characters/carbon/back.svg",
  37100. extra: 1762/1695,
  37101. bottom: 24/1786
  37102. }
  37103. },
  37104. frontGigantamax: {
  37105. height: math.unit(150, "feet"),
  37106. name: "Front (Gigantamax)",
  37107. image: {
  37108. source: "./media/characters/carbon/front-gigantamax.svg",
  37109. extra: 1826/1669,
  37110. bottom: 59/1885
  37111. }
  37112. },
  37113. backGigantamax: {
  37114. height: math.unit(150, "feet"),
  37115. name: "Back (Gigantamax)",
  37116. image: {
  37117. source: "./media/characters/carbon/back-gigantamax.svg",
  37118. extra: 1796/1653,
  37119. bottom: 53/1849
  37120. }
  37121. },
  37122. maw: {
  37123. height: math.unit(0.48, "feet"),
  37124. name: "Maw",
  37125. image: {
  37126. source: "./media/characters/carbon/maw.svg"
  37127. }
  37128. },
  37129. mawGigantamax: {
  37130. height: math.unit(7.5, "feet"),
  37131. name: "Maw (Gigantamax)",
  37132. image: {
  37133. source: "./media/characters/carbon/maw-gigantamax.svg"
  37134. }
  37135. },
  37136. },
  37137. [
  37138. {
  37139. name: "Normal",
  37140. height: math.unit(7 + 5/12, "feet"),
  37141. default: true
  37142. },
  37143. ]
  37144. ))
  37145. characterMakers.push(() => makeCharacter(
  37146. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37147. {
  37148. front: {
  37149. height: math.unit(6, "feet"),
  37150. name: "Front",
  37151. image: {
  37152. source: "./media/characters/maverick/front.svg",
  37153. extra: 1672/1661,
  37154. bottom: 85/1757
  37155. }
  37156. },
  37157. back: {
  37158. height: math.unit(6, "feet"),
  37159. name: "Back",
  37160. image: {
  37161. source: "./media/characters/maverick/back.svg",
  37162. extra: 1642/1631,
  37163. bottom: 38/1680
  37164. }
  37165. },
  37166. },
  37167. [
  37168. {
  37169. name: "Normal",
  37170. height: math.unit(6, "feet"),
  37171. default: true
  37172. },
  37173. ]
  37174. ))
  37175. characterMakers.push(() => makeCharacter(
  37176. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37177. {
  37178. front: {
  37179. height: math.unit(15, "feet"),
  37180. weight: math.unit(615, "lb"),
  37181. name: "Front",
  37182. image: {
  37183. source: "./media/characters/grockle/front.svg",
  37184. extra: 1535/1427,
  37185. bottom: 56/1591
  37186. }
  37187. },
  37188. },
  37189. [
  37190. {
  37191. name: "Normal",
  37192. height: math.unit(15, "feet"),
  37193. default: true
  37194. },
  37195. {
  37196. name: "Large",
  37197. height: math.unit(150, "feet")
  37198. },
  37199. {
  37200. name: "Macro",
  37201. height: math.unit(1876, "feet")
  37202. },
  37203. {
  37204. name: "Mega Macro",
  37205. height: math.unit(121940, "feet")
  37206. },
  37207. {
  37208. name: "Giga Macro",
  37209. height: math.unit(750, "km")
  37210. },
  37211. {
  37212. name: "Tera Macro",
  37213. height: math.unit(750000, "km")
  37214. },
  37215. {
  37216. name: "Galactic",
  37217. height: math.unit(1.4e5, "km")
  37218. },
  37219. {
  37220. name: "Godlike",
  37221. height: math.unit(9.8e280, "galaxies")
  37222. },
  37223. ]
  37224. ))
  37225. characterMakers.push(() => makeCharacter(
  37226. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37227. {
  37228. front: {
  37229. height: math.unit(11, "meters"),
  37230. weight: math.unit(20, "tonnes"),
  37231. name: "Front",
  37232. image: {
  37233. source: "./media/characters/alistair/front.svg",
  37234. extra: 1265/1009,
  37235. bottom: 93/1358
  37236. }
  37237. },
  37238. },
  37239. [
  37240. {
  37241. name: "Normal",
  37242. height: math.unit(11, "meters"),
  37243. default: true
  37244. },
  37245. ]
  37246. ))
  37247. characterMakers.push(() => makeCharacter(
  37248. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37249. {
  37250. front: {
  37251. height: math.unit(5 + 8/12, "feet"),
  37252. name: "Front",
  37253. image: {
  37254. source: "./media/characters/haruka/front.svg",
  37255. extra: 2012/1952,
  37256. bottom: 0/2012
  37257. }
  37258. },
  37259. },
  37260. [
  37261. {
  37262. name: "Normal",
  37263. height: math.unit(5 + 8/12, "feet"),
  37264. default: true
  37265. },
  37266. ]
  37267. ))
  37268. characterMakers.push(() => makeCharacter(
  37269. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37270. {
  37271. back: {
  37272. height: math.unit(9, "feet"),
  37273. name: "Back",
  37274. image: {
  37275. source: "./media/characters/vivian-sylveon/back.svg",
  37276. extra: 1853/1714,
  37277. bottom: 0/1853
  37278. }
  37279. },
  37280. },
  37281. [
  37282. {
  37283. name: "Normal",
  37284. height: math.unit(9, "feet"),
  37285. default: true
  37286. },
  37287. {
  37288. name: "Macro",
  37289. height: math.unit(500, "feet")
  37290. },
  37291. {
  37292. name: "Megamacro",
  37293. height: math.unit(600, "miles")
  37294. },
  37295. {
  37296. name: "Gigamacro",
  37297. height: math.unit(30000, "miles")
  37298. },
  37299. ]
  37300. ))
  37301. characterMakers.push(() => makeCharacter(
  37302. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37303. {
  37304. anthro: {
  37305. height: math.unit(5 + 10/12, "feet"),
  37306. weight: math.unit(100, "lb"),
  37307. name: "Anthro",
  37308. image: {
  37309. source: "./media/characters/daiki/anthro.svg",
  37310. extra: 1115/1027,
  37311. bottom: 69/1184
  37312. }
  37313. },
  37314. feral: {
  37315. height: math.unit(200, "feet"),
  37316. name: "Feral",
  37317. image: {
  37318. source: "./media/characters/daiki/feral.svg",
  37319. extra: 1256/313,
  37320. bottom: 39/1295
  37321. }
  37322. },
  37323. feralHead: {
  37324. height: math.unit(171, "feet"),
  37325. name: "Feral Head",
  37326. image: {
  37327. source: "./media/characters/daiki/feral-head.svg"
  37328. }
  37329. },
  37330. manaDragon: {
  37331. height: math.unit(170, "meters"),
  37332. name: "Mana-dragon",
  37333. image: {
  37334. source: "./media/characters/daiki/mana-dragon.svg",
  37335. extra: 763/420,
  37336. bottom: 97/860
  37337. }
  37338. },
  37339. },
  37340. [
  37341. {
  37342. name: "Normal",
  37343. height: math.unit(5 + 10/12, "feet"),
  37344. default: true
  37345. },
  37346. ]
  37347. ))
  37348. characterMakers.push(() => makeCharacter(
  37349. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37350. {
  37351. fullyEquippedFront: {
  37352. height: math.unit(3 + 1/12, "feet"),
  37353. weight: math.unit(24, "lb"),
  37354. name: "Fully Equipped (Front)",
  37355. image: {
  37356. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37357. extra: 687/605,
  37358. bottom: 18/705
  37359. }
  37360. },
  37361. fullyEquippedBack: {
  37362. height: math.unit(3 + 1/12, "feet"),
  37363. weight: math.unit(24, "lb"),
  37364. name: "Fully Equipped (Back)",
  37365. image: {
  37366. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37367. extra: 689/590,
  37368. bottom: 18/707
  37369. }
  37370. },
  37371. dailyWear: {
  37372. height: math.unit(3 + 1/12, "feet"),
  37373. weight: math.unit(24, "lb"),
  37374. name: "Daily Wear",
  37375. image: {
  37376. source: "./media/characters/tea-spot/daily-wear.svg",
  37377. extra: 701/620,
  37378. bottom: 21/722
  37379. }
  37380. },
  37381. maidWork: {
  37382. height: math.unit(3 + 1/12, "feet"),
  37383. weight: math.unit(24, "lb"),
  37384. name: "Maid Work",
  37385. image: {
  37386. source: "./media/characters/tea-spot/maid-work.svg",
  37387. extra: 693/609,
  37388. bottom: 15/708
  37389. }
  37390. },
  37391. },
  37392. [
  37393. {
  37394. name: "Normal",
  37395. height: math.unit(3 + 1/12, "feet"),
  37396. default: true
  37397. },
  37398. ]
  37399. ))
  37400. characterMakers.push(() => makeCharacter(
  37401. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37402. {
  37403. front: {
  37404. height: math.unit(175, "cm"),
  37405. weight: math.unit(75, "kg"),
  37406. name: "Front",
  37407. image: {
  37408. source: "./media/characters/chee/front.svg",
  37409. extra: 1796/1740,
  37410. bottom: 40/1836
  37411. }
  37412. },
  37413. },
  37414. [
  37415. {
  37416. name: "Micro-Micro",
  37417. height: math.unit(1, "nm")
  37418. },
  37419. {
  37420. name: "Micro-erst",
  37421. height: math.unit(1, "micrometer")
  37422. },
  37423. {
  37424. name: "Micro-er",
  37425. height: math.unit(1, "cm")
  37426. },
  37427. {
  37428. name: "Normal",
  37429. height: math.unit(175, "cm"),
  37430. default: true
  37431. },
  37432. {
  37433. name: "Macro",
  37434. height: math.unit(100, "m")
  37435. },
  37436. {
  37437. name: "Macro-er",
  37438. height: math.unit(1, "km")
  37439. },
  37440. {
  37441. name: "Macro-erst",
  37442. height: math.unit(10, "km")
  37443. },
  37444. {
  37445. name: "Macro-Macro",
  37446. height: math.unit(100, "km")
  37447. },
  37448. ]
  37449. ))
  37450. characterMakers.push(() => makeCharacter(
  37451. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37452. {
  37453. front: {
  37454. height: math.unit(11 + 9/12, "feet"),
  37455. weight: math.unit(935, "lb"),
  37456. name: "Front",
  37457. image: {
  37458. source: "./media/characters/kingsley/front.svg",
  37459. extra: 1803/1674,
  37460. bottom: 127/1930
  37461. }
  37462. },
  37463. frontNude: {
  37464. height: math.unit(11 + 9/12, "feet"),
  37465. weight: math.unit(935, "lb"),
  37466. name: "Front (Nude)",
  37467. image: {
  37468. source: "./media/characters/kingsley/front-nude.svg",
  37469. extra: 1803/1674,
  37470. bottom: 127/1930
  37471. }
  37472. },
  37473. },
  37474. [
  37475. {
  37476. name: "Normal",
  37477. height: math.unit(11 + 9/12, "feet"),
  37478. default: true
  37479. },
  37480. ]
  37481. ))
  37482. characterMakers.push(() => makeCharacter(
  37483. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37484. {
  37485. side: {
  37486. height: math.unit(9, "feet"),
  37487. name: "Side",
  37488. image: {
  37489. source: "./media/characters/rymel/side.svg",
  37490. extra: 792/469,
  37491. bottom: 121/913
  37492. }
  37493. },
  37494. maw: {
  37495. height: math.unit(2.4, "meters"),
  37496. name: "Maw",
  37497. image: {
  37498. source: "./media/characters/rymel/maw.svg"
  37499. }
  37500. },
  37501. },
  37502. [
  37503. {
  37504. name: "House Drake",
  37505. height: math.unit(2, "feet")
  37506. },
  37507. {
  37508. name: "Reduced",
  37509. height: math.unit(4.5, "feet")
  37510. },
  37511. {
  37512. name: "Normal",
  37513. height: math.unit(9, "feet"),
  37514. default: true
  37515. },
  37516. ]
  37517. ))
  37518. characterMakers.push(() => makeCharacter(
  37519. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37520. {
  37521. front: {
  37522. height: math.unit(1.74, "meters"),
  37523. weight: math.unit(55, "kg"),
  37524. name: "Front",
  37525. image: {
  37526. source: "./media/characters/rubus/front.svg",
  37527. extra: 1894/1742,
  37528. bottom: 44/1938
  37529. }
  37530. },
  37531. },
  37532. [
  37533. {
  37534. name: "Normal",
  37535. height: math.unit(1.74, "meters"),
  37536. default: true
  37537. },
  37538. ]
  37539. ))
  37540. characterMakers.push(() => makeCharacter(
  37541. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37542. {
  37543. front: {
  37544. height: math.unit(5 + 2/12, "feet"),
  37545. weight: math.unit(112, "lb"),
  37546. name: "Front",
  37547. image: {
  37548. source: "./media/characters/cassie-kingston/front.svg",
  37549. extra: 1438/1390,
  37550. bottom: 47/1485
  37551. }
  37552. },
  37553. },
  37554. [
  37555. {
  37556. name: "Normal",
  37557. height: math.unit(5 + 2/12, "feet"),
  37558. default: true
  37559. },
  37560. {
  37561. name: "Macro",
  37562. height: math.unit(128, "feet")
  37563. },
  37564. {
  37565. name: "Megamacro",
  37566. height: math.unit(2.56, "miles")
  37567. },
  37568. ]
  37569. ))
  37570. characterMakers.push(() => makeCharacter(
  37571. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37572. {
  37573. front: {
  37574. height: math.unit(7, "feet"),
  37575. name: "Front",
  37576. image: {
  37577. source: "./media/characters/fox/front.svg",
  37578. extra: 1798/1703,
  37579. bottom: 55/1853
  37580. }
  37581. },
  37582. back: {
  37583. height: math.unit(7, "feet"),
  37584. name: "Back",
  37585. image: {
  37586. source: "./media/characters/fox/back.svg",
  37587. extra: 1748/1649,
  37588. bottom: 32/1780
  37589. }
  37590. },
  37591. head: {
  37592. height: math.unit(1.95, "feet"),
  37593. name: "Head",
  37594. image: {
  37595. source: "./media/characters/fox/head.svg"
  37596. }
  37597. },
  37598. dick: {
  37599. height: math.unit(1.33, "feet"),
  37600. name: "Dick",
  37601. image: {
  37602. source: "./media/characters/fox/dick.svg"
  37603. }
  37604. },
  37605. foot: {
  37606. height: math.unit(1, "feet"),
  37607. name: "Foot",
  37608. image: {
  37609. source: "./media/characters/fox/foot.svg"
  37610. }
  37611. },
  37612. paw: {
  37613. height: math.unit(0.92, "feet"),
  37614. name: "Paw",
  37615. image: {
  37616. source: "./media/characters/fox/paw.svg"
  37617. }
  37618. },
  37619. },
  37620. [
  37621. {
  37622. name: "Small",
  37623. height: math.unit(3, "inches")
  37624. },
  37625. {
  37626. name: "\"Realistic\"",
  37627. height: math.unit(7, "feet")
  37628. },
  37629. {
  37630. name: "Normal",
  37631. height: math.unit(150, "feet"),
  37632. default: true
  37633. },
  37634. {
  37635. name: "BIG",
  37636. height: math.unit(1200, "feet")
  37637. },
  37638. {
  37639. name: "👀",
  37640. height: math.unit(5, "miles")
  37641. },
  37642. {
  37643. name: "👀👀👀",
  37644. height: math.unit(64, "miles")
  37645. },
  37646. ]
  37647. ))
  37648. characterMakers.push(() => makeCharacter(
  37649. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37650. {
  37651. front: {
  37652. height: math.unit(625, "feet"),
  37653. name: "Front",
  37654. image: {
  37655. source: "./media/characters/asonja-rossa/front.svg",
  37656. extra: 1833/1686,
  37657. bottom: 24/1857
  37658. }
  37659. },
  37660. back: {
  37661. height: math.unit(625, "feet"),
  37662. name: "Back",
  37663. image: {
  37664. source: "./media/characters/asonja-rossa/back.svg",
  37665. extra: 1852/1753,
  37666. bottom: 26/1878
  37667. }
  37668. },
  37669. },
  37670. [
  37671. {
  37672. name: "Macro",
  37673. height: math.unit(625, "feet"),
  37674. default: true
  37675. },
  37676. ]
  37677. ))
  37678. characterMakers.push(() => makeCharacter(
  37679. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37680. {
  37681. side: {
  37682. height: math.unit(8, "feet"),
  37683. name: "Side",
  37684. image: {
  37685. source: "./media/characters/rezukii/side.svg",
  37686. extra: 979/542,
  37687. bottom: 87/1066
  37688. }
  37689. },
  37690. sitting: {
  37691. height: math.unit(14.6, "feet"),
  37692. name: "Sitting",
  37693. image: {
  37694. source: "./media/characters/rezukii/sitting.svg",
  37695. extra: 1023/813,
  37696. bottom: 45/1068
  37697. }
  37698. },
  37699. },
  37700. [
  37701. {
  37702. name: "Tiny",
  37703. height: math.unit(2, "feet")
  37704. },
  37705. {
  37706. name: "Smol",
  37707. height: math.unit(4, "feet")
  37708. },
  37709. {
  37710. name: "Normal",
  37711. height: math.unit(8, "feet"),
  37712. default: true
  37713. },
  37714. {
  37715. name: "Big",
  37716. height: math.unit(12, "feet")
  37717. },
  37718. {
  37719. name: "Macro",
  37720. height: math.unit(30, "feet")
  37721. },
  37722. ]
  37723. ))
  37724. characterMakers.push(() => makeCharacter(
  37725. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37726. {
  37727. front: {
  37728. height: math.unit(14, "feet"),
  37729. weight: math.unit(9.5, "tonnes"),
  37730. name: "Front",
  37731. image: {
  37732. source: "./media/characters/dawnheart/front.svg",
  37733. extra: 2792/2675,
  37734. bottom: 64/2856
  37735. }
  37736. },
  37737. },
  37738. [
  37739. {
  37740. name: "Normal",
  37741. height: math.unit(14, "feet"),
  37742. default: true
  37743. },
  37744. ]
  37745. ))
  37746. characterMakers.push(() => makeCharacter(
  37747. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37748. {
  37749. front: {
  37750. height: math.unit(1.7, "m"),
  37751. name: "Front",
  37752. image: {
  37753. source: "./media/characters/gladi/front.svg",
  37754. extra: 1460/1362,
  37755. bottom: 19/1479
  37756. }
  37757. },
  37758. back: {
  37759. height: math.unit(1.7, "m"),
  37760. name: "Back",
  37761. image: {
  37762. source: "./media/characters/gladi/back.svg",
  37763. extra: 1459/1357,
  37764. bottom: 12/1471
  37765. }
  37766. },
  37767. feral: {
  37768. height: math.unit(2.05, "m"),
  37769. name: "Feral",
  37770. image: {
  37771. source: "./media/characters/gladi/feral.svg",
  37772. extra: 821/557,
  37773. bottom: 91/912
  37774. }
  37775. },
  37776. },
  37777. [
  37778. {
  37779. name: "Shortest",
  37780. height: math.unit(70, "cm")
  37781. },
  37782. {
  37783. name: "Normal",
  37784. height: math.unit(1.7, "m")
  37785. },
  37786. {
  37787. name: "Macro",
  37788. height: math.unit(10, "m"),
  37789. default: true
  37790. },
  37791. {
  37792. name: "Tallest",
  37793. height: math.unit(200, "m")
  37794. },
  37795. ]
  37796. ))
  37797. characterMakers.push(() => makeCharacter(
  37798. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37799. {
  37800. front: {
  37801. height: math.unit(5 + 7/12, "feet"),
  37802. weight: math.unit(2, "tons"),
  37803. name: "Front",
  37804. image: {
  37805. source: "./media/characters/erdno/front.svg",
  37806. extra: 1234/1129,
  37807. bottom: 35/1269
  37808. }
  37809. },
  37810. angled: {
  37811. height: math.unit(5 + 7/12, "feet"),
  37812. weight: math.unit(2, "tons"),
  37813. name: "Angled",
  37814. image: {
  37815. source: "./media/characters/erdno/angled.svg",
  37816. extra: 1185/1139,
  37817. bottom: 36/1221
  37818. }
  37819. },
  37820. side: {
  37821. height: math.unit(5 + 7/12, "feet"),
  37822. weight: math.unit(2, "tons"),
  37823. name: "Side",
  37824. image: {
  37825. source: "./media/characters/erdno/side.svg",
  37826. extra: 1191/1144,
  37827. bottom: 40/1231
  37828. }
  37829. },
  37830. back: {
  37831. height: math.unit(5 + 7/12, "feet"),
  37832. weight: math.unit(2, "tons"),
  37833. name: "Back",
  37834. image: {
  37835. source: "./media/characters/erdno/back.svg",
  37836. extra: 1202/1146,
  37837. bottom: 17/1219
  37838. }
  37839. },
  37840. frontNsfw: {
  37841. height: math.unit(5 + 7/12, "feet"),
  37842. weight: math.unit(2, "tons"),
  37843. name: "Front (NSFW)",
  37844. image: {
  37845. source: "./media/characters/erdno/front-nsfw.svg",
  37846. extra: 1234/1129,
  37847. bottom: 35/1269
  37848. }
  37849. },
  37850. angledNsfw: {
  37851. height: math.unit(5 + 7/12, "feet"),
  37852. weight: math.unit(2, "tons"),
  37853. name: "Angled (NSFW)",
  37854. image: {
  37855. source: "./media/characters/erdno/angled-nsfw.svg",
  37856. extra: 1185/1139,
  37857. bottom: 36/1221
  37858. }
  37859. },
  37860. sideNsfw: {
  37861. height: math.unit(5 + 7/12, "feet"),
  37862. weight: math.unit(2, "tons"),
  37863. name: "Side (NSFW)",
  37864. image: {
  37865. source: "./media/characters/erdno/side-nsfw.svg",
  37866. extra: 1191/1144,
  37867. bottom: 40/1231
  37868. }
  37869. },
  37870. backNsfw: {
  37871. height: math.unit(5 + 7/12, "feet"),
  37872. weight: math.unit(2, "tons"),
  37873. name: "Back (NSFW)",
  37874. image: {
  37875. source: "./media/characters/erdno/back-nsfw.svg",
  37876. extra: 1202/1146,
  37877. bottom: 17/1219
  37878. }
  37879. },
  37880. frontHyper: {
  37881. height: math.unit(5 + 7/12, "feet"),
  37882. weight: math.unit(2, "tons"),
  37883. name: "Front (Hyper)",
  37884. image: {
  37885. source: "./media/characters/erdno/front-hyper.svg",
  37886. extra: 1298/1136,
  37887. bottom: 35/1333
  37888. }
  37889. },
  37890. },
  37891. [
  37892. {
  37893. name: "Normal",
  37894. height: math.unit(5 + 7/12, "feet"),
  37895. default: true
  37896. },
  37897. {
  37898. name: "Big",
  37899. height: math.unit(5.7, "meters")
  37900. },
  37901. {
  37902. name: "Macro",
  37903. height: math.unit(5.7, "kilometers")
  37904. },
  37905. {
  37906. name: "Megamacro",
  37907. height: math.unit(5.7, "earths")
  37908. },
  37909. ]
  37910. ))
  37911. characterMakers.push(() => makeCharacter(
  37912. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37913. {
  37914. front: {
  37915. height: math.unit(5 + 10/12, "feet"),
  37916. weight: math.unit(150, "lb"),
  37917. name: "Front",
  37918. image: {
  37919. source: "./media/characters/jamie/front.svg",
  37920. extra: 1908/1768,
  37921. bottom: 19/1927
  37922. }
  37923. },
  37924. },
  37925. [
  37926. {
  37927. name: "Minimum",
  37928. height: math.unit(2, "cm")
  37929. },
  37930. {
  37931. name: "Micro",
  37932. height: math.unit(3, "inches")
  37933. },
  37934. {
  37935. name: "Normal",
  37936. height: math.unit(5 + 10/12, "feet"),
  37937. default: true
  37938. },
  37939. {
  37940. name: "Macro",
  37941. height: math.unit(150, "feet")
  37942. },
  37943. {
  37944. name: "Megamacro",
  37945. height: math.unit(10000, "m")
  37946. },
  37947. ]
  37948. ))
  37949. characterMakers.push(() => makeCharacter(
  37950. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37951. {
  37952. front: {
  37953. height: math.unit(2, "meters"),
  37954. weight: math.unit(100, "kg"),
  37955. name: "Front",
  37956. image: {
  37957. source: "./media/characters/shiron/front.svg",
  37958. extra: 2103/1985,
  37959. bottom: 98/2201
  37960. }
  37961. },
  37962. back: {
  37963. height: math.unit(2, "meters"),
  37964. weight: math.unit(100, "kg"),
  37965. name: "Back",
  37966. image: {
  37967. source: "./media/characters/shiron/back.svg",
  37968. extra: 2110/2015,
  37969. bottom: 89/2199
  37970. }
  37971. },
  37972. hand: {
  37973. height: math.unit(0.96, "feet"),
  37974. name: "Hand",
  37975. image: {
  37976. source: "./media/characters/shiron/hand.svg"
  37977. }
  37978. },
  37979. foot: {
  37980. height: math.unit(1.464, "feet"),
  37981. name: "Foot",
  37982. image: {
  37983. source: "./media/characters/shiron/foot.svg"
  37984. }
  37985. },
  37986. },
  37987. [
  37988. {
  37989. name: "Normal",
  37990. height: math.unit(2, "meters")
  37991. },
  37992. {
  37993. name: "Macro",
  37994. height: math.unit(500, "meters"),
  37995. default: true
  37996. },
  37997. {
  37998. name: "Megamacro",
  37999. height: math.unit(20, "km")
  38000. },
  38001. ]
  38002. ))
  38003. characterMakers.push(() => makeCharacter(
  38004. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38005. {
  38006. front: {
  38007. height: math.unit(6, "feet"),
  38008. name: "Front",
  38009. image: {
  38010. source: "./media/characters/sam/front.svg",
  38011. extra: 849/826,
  38012. bottom: 19/868
  38013. }
  38014. },
  38015. },
  38016. [
  38017. {
  38018. name: "Normal",
  38019. height: math.unit(6, "feet"),
  38020. default: true
  38021. },
  38022. ]
  38023. ))
  38024. characterMakers.push(() => makeCharacter(
  38025. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38026. {
  38027. front: {
  38028. height: math.unit(8 + 4/12, "feet"),
  38029. weight: math.unit(122, "kg"),
  38030. name: "Front",
  38031. image: {
  38032. source: "./media/characters/namori-kurogawa/front.svg",
  38033. extra: 1894/1576,
  38034. bottom: 34/1928
  38035. }
  38036. },
  38037. },
  38038. [
  38039. {
  38040. name: "Normal",
  38041. height: math.unit(8 + 4/12, "feet"),
  38042. default: true
  38043. },
  38044. ]
  38045. ))
  38046. characterMakers.push(() => makeCharacter(
  38047. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38048. {
  38049. front: {
  38050. height: math.unit(9, "feet"),
  38051. weight: math.unit(621, "lb"),
  38052. name: "Front",
  38053. image: {
  38054. source: "./media/characters/unmru/front.svg",
  38055. extra: 1853/1747,
  38056. bottom: 73/1926
  38057. }
  38058. },
  38059. side: {
  38060. height: math.unit(9, "feet"),
  38061. weight: math.unit(621, "lb"),
  38062. name: "Side",
  38063. image: {
  38064. source: "./media/characters/unmru/side.svg",
  38065. extra: 1781/1671,
  38066. bottom: 127/1908
  38067. }
  38068. },
  38069. back: {
  38070. height: math.unit(9, "feet"),
  38071. weight: math.unit(621, "lb"),
  38072. name: "Back",
  38073. image: {
  38074. source: "./media/characters/unmru/back.svg",
  38075. extra: 1894/1765,
  38076. bottom: 75/1969
  38077. }
  38078. },
  38079. dick: {
  38080. height: math.unit(3, "feet"),
  38081. weight: math.unit(35, "lb"),
  38082. name: "Dick",
  38083. image: {
  38084. source: "./media/characters/unmru/dick.svg"
  38085. }
  38086. },
  38087. },
  38088. [
  38089. {
  38090. name: "Normal",
  38091. height: math.unit(9, "feet")
  38092. },
  38093. {
  38094. name: "Natural",
  38095. height: math.unit(27, "feet"),
  38096. default: true
  38097. },
  38098. {
  38099. name: "Giant",
  38100. height: math.unit(90, "feet")
  38101. },
  38102. {
  38103. name: "Kaiju",
  38104. height: math.unit(270, "feet")
  38105. },
  38106. {
  38107. name: "Macro",
  38108. height: math.unit(900, "feet")
  38109. },
  38110. {
  38111. name: "Macro+",
  38112. height: math.unit(2700, "feet")
  38113. },
  38114. {
  38115. name: "Megamacro",
  38116. height: math.unit(9000, "feet")
  38117. },
  38118. {
  38119. name: "City-Crushing",
  38120. height: math.unit(27000, "feet")
  38121. },
  38122. {
  38123. name: "Mountain-Mashing",
  38124. height: math.unit(90000, "feet")
  38125. },
  38126. {
  38127. name: "Earth-Eclipsing",
  38128. height: math.unit(2.7e8, "feet")
  38129. },
  38130. {
  38131. name: "Sol-Swallowing",
  38132. height: math.unit(9e10, "feet")
  38133. },
  38134. {
  38135. name: "Majoris-Munching",
  38136. height: math.unit(2.7e13, "feet")
  38137. },
  38138. ]
  38139. ))
  38140. characterMakers.push(() => makeCharacter(
  38141. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38142. {
  38143. front: {
  38144. height: math.unit(1, "inch"),
  38145. name: "Front",
  38146. image: {
  38147. source: "./media/characters/squeaks-mouse/front.svg",
  38148. extra: 352/308,
  38149. bottom: 25/377
  38150. }
  38151. },
  38152. },
  38153. [
  38154. {
  38155. name: "Micro",
  38156. height: math.unit(1, "inch"),
  38157. default: true
  38158. },
  38159. ]
  38160. ))
  38161. characterMakers.push(() => makeCharacter(
  38162. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38163. {
  38164. side: {
  38165. height: math.unit(35, "feet"),
  38166. name: "Side",
  38167. image: {
  38168. source: "./media/characters/sayko/side.svg",
  38169. extra: 1697/1021,
  38170. bottom: 82/1779
  38171. }
  38172. },
  38173. head: {
  38174. height: math.unit(16, "feet"),
  38175. name: "Head",
  38176. image: {
  38177. source: "./media/characters/sayko/head.svg"
  38178. }
  38179. },
  38180. forepaw: {
  38181. height: math.unit(7.85, "feet"),
  38182. name: "Forepaw",
  38183. image: {
  38184. source: "./media/characters/sayko/forepaw.svg"
  38185. }
  38186. },
  38187. hindpaw: {
  38188. height: math.unit(8.8, "feet"),
  38189. name: "Hindpaw",
  38190. image: {
  38191. source: "./media/characters/sayko/hindpaw.svg"
  38192. }
  38193. },
  38194. },
  38195. [
  38196. {
  38197. name: "Normal",
  38198. height: math.unit(35, "feet"),
  38199. default: true
  38200. },
  38201. {
  38202. name: "Colossus",
  38203. height: math.unit(100, "meters")
  38204. },
  38205. {
  38206. name: "\"Small\" Deity",
  38207. height: math.unit(1, "km")
  38208. },
  38209. {
  38210. name: "\"Large\" Deity",
  38211. height: math.unit(15, "km")
  38212. },
  38213. ]
  38214. ))
  38215. characterMakers.push(() => makeCharacter(
  38216. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38217. {
  38218. front: {
  38219. height: math.unit(6, "feet"),
  38220. weight: math.unit(250, "lb"),
  38221. name: "Front",
  38222. image: {
  38223. source: "./media/characters/mukiro/front.svg",
  38224. extra: 1368/1310,
  38225. bottom: 34/1402
  38226. }
  38227. },
  38228. },
  38229. [
  38230. {
  38231. name: "Normal",
  38232. height: math.unit(6, "feet"),
  38233. default: true
  38234. },
  38235. ]
  38236. ))
  38237. characterMakers.push(() => makeCharacter(
  38238. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38239. {
  38240. front: {
  38241. height: math.unit(12 + 4/12, "feet"),
  38242. name: "Front",
  38243. image: {
  38244. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38245. extra: 1346/1311,
  38246. bottom: 65/1411
  38247. }
  38248. },
  38249. },
  38250. [
  38251. {
  38252. name: "Base",
  38253. height: math.unit(12 + 4/12, "feet"),
  38254. default: true
  38255. },
  38256. {
  38257. name: "Macro",
  38258. height: math.unit(150, "feet")
  38259. },
  38260. {
  38261. name: "Mega",
  38262. height: math.unit(2, "miles")
  38263. },
  38264. {
  38265. name: "Demi God",
  38266. height: math.unit(4, "AU")
  38267. },
  38268. {
  38269. name: "God Size",
  38270. height: math.unit(1, "universe")
  38271. },
  38272. ]
  38273. ))
  38274. characterMakers.push(() => makeCharacter(
  38275. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38276. {
  38277. front: {
  38278. height: math.unit(3 + 3/12, "feet"),
  38279. weight: math.unit(88, "lb"),
  38280. name: "Front",
  38281. image: {
  38282. source: "./media/characters/trey/front.svg",
  38283. extra: 1815/1509,
  38284. bottom: 60/1875
  38285. }
  38286. },
  38287. },
  38288. [
  38289. {
  38290. name: "Normal",
  38291. height: math.unit(3 + 3/12, "feet"),
  38292. default: true
  38293. },
  38294. ]
  38295. ))
  38296. characterMakers.push(() => makeCharacter(
  38297. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38298. {
  38299. front: {
  38300. height: math.unit(4, "meters"),
  38301. name: "Front",
  38302. image: {
  38303. source: "./media/characters/adelonda/front.svg",
  38304. extra: 1077/982,
  38305. bottom: 39/1116
  38306. }
  38307. },
  38308. back: {
  38309. height: math.unit(4, "meters"),
  38310. name: "Back",
  38311. image: {
  38312. source: "./media/characters/adelonda/back.svg",
  38313. extra: 1105/1003,
  38314. bottom: 25/1130
  38315. }
  38316. },
  38317. feral: {
  38318. height: math.unit(40/1.5, "meters"),
  38319. name: "Feral",
  38320. image: {
  38321. source: "./media/characters/adelonda/feral.svg",
  38322. extra: 597/271,
  38323. bottom: 387/984
  38324. }
  38325. },
  38326. },
  38327. [
  38328. {
  38329. name: "Normal",
  38330. height: math.unit(4, "meters"),
  38331. default: true
  38332. },
  38333. ]
  38334. ))
  38335. characterMakers.push(() => makeCharacter(
  38336. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38337. {
  38338. front: {
  38339. height: math.unit(8 + 4/12, "feet"),
  38340. weight: math.unit(670, "lb"),
  38341. name: "Front",
  38342. image: {
  38343. source: "./media/characters/acadiel/front.svg",
  38344. extra: 1901/1595,
  38345. bottom: 142/2043
  38346. }
  38347. },
  38348. },
  38349. [
  38350. {
  38351. name: "Normal",
  38352. height: math.unit(8 + 4/12, "feet"),
  38353. default: true
  38354. },
  38355. {
  38356. name: "Macro",
  38357. height: math.unit(200, "feet")
  38358. },
  38359. ]
  38360. ))
  38361. characterMakers.push(() => makeCharacter(
  38362. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38363. {
  38364. front: {
  38365. height: math.unit(6 + 2/12, "feet"),
  38366. weight: math.unit(185, "lb"),
  38367. name: "Front",
  38368. image: {
  38369. source: "./media/characters/kayne-ein/front.svg",
  38370. extra: 1780/1560,
  38371. bottom: 81/1861
  38372. }
  38373. },
  38374. },
  38375. [
  38376. {
  38377. name: "Normal",
  38378. height: math.unit(6 + 2/12, "feet"),
  38379. default: true
  38380. },
  38381. {
  38382. name: "Transformation Stage",
  38383. height: math.unit(15, "feet")
  38384. },
  38385. {
  38386. name: "Macro",
  38387. height: math.unit(150, "feet")
  38388. },
  38389. {
  38390. name: "Earth's Shadow",
  38391. height: math.unit(6200, "miles")
  38392. },
  38393. {
  38394. name: "Universal Demon",
  38395. height: math.unit(28e9, "parsecs")
  38396. },
  38397. {
  38398. name: "Multiverse God",
  38399. height: math.unit(3, "multiverses")
  38400. },
  38401. ]
  38402. ))
  38403. characterMakers.push(() => makeCharacter(
  38404. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38405. {
  38406. front: {
  38407. height: math.unit(5 + 5/12, "feet"),
  38408. name: "Front",
  38409. image: {
  38410. source: "./media/characters/fawn/front.svg",
  38411. extra: 1873/1731,
  38412. bottom: 95/1968
  38413. }
  38414. },
  38415. back: {
  38416. height: math.unit(5 + 5/12, "feet"),
  38417. name: "Back",
  38418. image: {
  38419. source: "./media/characters/fawn/back.svg",
  38420. extra: 1813/1700,
  38421. bottom: 14/1827
  38422. }
  38423. },
  38424. hoof: {
  38425. height: math.unit(1.45, "feet"),
  38426. name: "Hoof",
  38427. image: {
  38428. source: "./media/characters/fawn/hoof.svg"
  38429. }
  38430. },
  38431. },
  38432. [
  38433. {
  38434. name: "Normal",
  38435. height: math.unit(5 + 5/12, "feet"),
  38436. default: true
  38437. },
  38438. ]
  38439. ))
  38440. characterMakers.push(() => makeCharacter(
  38441. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38442. {
  38443. front: {
  38444. height: math.unit(2 + 5/12, "feet"),
  38445. name: "Front",
  38446. image: {
  38447. source: "./media/characters/orion/front.svg",
  38448. extra: 1366/1304,
  38449. bottom: 43/1409
  38450. }
  38451. },
  38452. paw: {
  38453. height: math.unit(0.52, "feet"),
  38454. name: "Paw",
  38455. image: {
  38456. source: "./media/characters/orion/paw.svg"
  38457. }
  38458. },
  38459. },
  38460. [
  38461. {
  38462. name: "Normal",
  38463. height: math.unit(2 + 5/12, "feet"),
  38464. default: true
  38465. },
  38466. ]
  38467. ))
  38468. characterMakers.push(() => makeCharacter(
  38469. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38470. {
  38471. front: {
  38472. height: math.unit(5 + 10/12, "feet"),
  38473. name: "Front",
  38474. image: {
  38475. source: "./media/characters/vera/front.svg",
  38476. extra: 1680/1575,
  38477. bottom: 49/1729
  38478. }
  38479. },
  38480. back: {
  38481. height: math.unit(5 + 10/12, "feet"),
  38482. name: "Back",
  38483. image: {
  38484. source: "./media/characters/vera/back.svg",
  38485. extra: 1700/1588,
  38486. bottom: 18/1718
  38487. }
  38488. },
  38489. arcanine: {
  38490. height: math.unit(6 + 8/12, "feet"),
  38491. name: "Arcanine",
  38492. image: {
  38493. source: "./media/characters/vera/arcanine.svg",
  38494. extra: 1590/1511,
  38495. bottom: 71/1661
  38496. }
  38497. },
  38498. maw: {
  38499. height: math.unit(0.82, "feet"),
  38500. name: "Maw",
  38501. image: {
  38502. source: "./media/characters/vera/maw.svg"
  38503. }
  38504. },
  38505. mawArcanine: {
  38506. height: math.unit(0.97, "feet"),
  38507. name: "Maw (Arcanine)",
  38508. image: {
  38509. source: "./media/characters/vera/maw-arcanine.svg"
  38510. }
  38511. },
  38512. paw: {
  38513. height: math.unit(0.75, "feet"),
  38514. name: "Paw",
  38515. image: {
  38516. source: "./media/characters/vera/paw.svg"
  38517. }
  38518. },
  38519. pawprint: {
  38520. height: math.unit(0.52, "feet"),
  38521. name: "Pawprint",
  38522. image: {
  38523. source: "./media/characters/vera/pawprint.svg"
  38524. }
  38525. },
  38526. },
  38527. [
  38528. {
  38529. name: "Normal",
  38530. height: math.unit(5 + 10/12, "feet"),
  38531. default: true
  38532. },
  38533. {
  38534. name: "Macro",
  38535. height: math.unit(75, "feet")
  38536. },
  38537. ]
  38538. ))
  38539. characterMakers.push(() => makeCharacter(
  38540. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38541. {
  38542. front: {
  38543. height: math.unit(4, "feet"),
  38544. weight: math.unit(40, "lb"),
  38545. name: "Front",
  38546. image: {
  38547. source: "./media/characters/orvan-rabbit/front.svg",
  38548. extra: 1896/1642,
  38549. bottom: 29/1925
  38550. }
  38551. },
  38552. },
  38553. [
  38554. {
  38555. name: "Normal",
  38556. height: math.unit(4, "feet"),
  38557. default: true
  38558. },
  38559. ]
  38560. ))
  38561. characterMakers.push(() => makeCharacter(
  38562. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38563. {
  38564. front: {
  38565. height: math.unit(6, "feet"),
  38566. weight: math.unit(168, "lb"),
  38567. name: "Front",
  38568. image: {
  38569. source: "./media/characters/lisa/front.svg",
  38570. extra: 2065/1867,
  38571. bottom: 46/2111
  38572. }
  38573. },
  38574. back: {
  38575. height: math.unit(6, "feet"),
  38576. weight: math.unit(168, "lb"),
  38577. name: "Back",
  38578. image: {
  38579. source: "./media/characters/lisa/back.svg",
  38580. extra: 1982/1838,
  38581. bottom: 29/2011
  38582. }
  38583. },
  38584. maw: {
  38585. height: math.unit(0.81, "feet"),
  38586. name: "Maw",
  38587. image: {
  38588. source: "./media/characters/lisa/maw.svg"
  38589. }
  38590. },
  38591. paw: {
  38592. height: math.unit(0.9, "feet"),
  38593. name: "Paw",
  38594. image: {
  38595. source: "./media/characters/lisa/paw.svg"
  38596. }
  38597. },
  38598. caribousune: {
  38599. height: math.unit(7 + 2/12, "feet"),
  38600. weight: math.unit(268, "lb"),
  38601. name: "Caribousune",
  38602. image: {
  38603. source: "./media/characters/lisa/caribousune.svg",
  38604. extra: 1843/1633,
  38605. bottom: 29/1872
  38606. }
  38607. },
  38608. frontCaribousune: {
  38609. height: math.unit(7 + 2/12, "feet"),
  38610. weight: math.unit(268, "lb"),
  38611. name: "Front (Caribousune)",
  38612. image: {
  38613. source: "./media/characters/lisa/front-caribousune.svg",
  38614. extra: 1818/1638,
  38615. bottom: 52/1870
  38616. }
  38617. },
  38618. sideCaribousune: {
  38619. height: math.unit(7 + 2/12, "feet"),
  38620. weight: math.unit(268, "lb"),
  38621. name: "Side (Caribousune)",
  38622. image: {
  38623. source: "./media/characters/lisa/side-caribousune.svg",
  38624. extra: 1851/1635,
  38625. bottom: 16/1867
  38626. }
  38627. },
  38628. backCaribousune: {
  38629. height: math.unit(7 + 2/12, "feet"),
  38630. weight: math.unit(268, "lb"),
  38631. name: "Back (Caribousune)",
  38632. image: {
  38633. source: "./media/characters/lisa/back-caribousune.svg",
  38634. extra: 1801/1604,
  38635. bottom: 44/1845
  38636. }
  38637. },
  38638. caribou: {
  38639. height: math.unit(7 + 2/12, "feet"),
  38640. weight: math.unit(268, "lb"),
  38641. name: "Caribou",
  38642. image: {
  38643. source: "./media/characters/lisa/caribou.svg",
  38644. extra: 1843/1633,
  38645. bottom: 29/1872
  38646. }
  38647. },
  38648. frontCaribou: {
  38649. height: math.unit(7 + 2/12, "feet"),
  38650. weight: math.unit(268, "lb"),
  38651. name: "Front (Caribou)",
  38652. image: {
  38653. source: "./media/characters/lisa/front-caribou.svg",
  38654. extra: 1818/1638,
  38655. bottom: 52/1870
  38656. }
  38657. },
  38658. sideCaribou: {
  38659. height: math.unit(7 + 2/12, "feet"),
  38660. weight: math.unit(268, "lb"),
  38661. name: "Side (Caribou)",
  38662. image: {
  38663. source: "./media/characters/lisa/side-caribou.svg",
  38664. extra: 1851/1635,
  38665. bottom: 16/1867
  38666. }
  38667. },
  38668. backCaribou: {
  38669. height: math.unit(7 + 2/12, "feet"),
  38670. weight: math.unit(268, "lb"),
  38671. name: "Back (Caribou)",
  38672. image: {
  38673. source: "./media/characters/lisa/back-caribou.svg",
  38674. extra: 1801/1604,
  38675. bottom: 44/1845
  38676. }
  38677. },
  38678. mawCaribou: {
  38679. height: math.unit(1.45, "feet"),
  38680. name: "Maw (Caribou)",
  38681. image: {
  38682. source: "./media/characters/lisa/maw-caribou.svg"
  38683. }
  38684. },
  38685. mawCaribousune: {
  38686. height: math.unit(1.45, "feet"),
  38687. name: "Maw (Caribousune)",
  38688. image: {
  38689. source: "./media/characters/lisa/maw-caribousune.svg"
  38690. }
  38691. },
  38692. pawCaribousune: {
  38693. height: math.unit(1.61, "feet"),
  38694. name: "Paw (Caribou)",
  38695. image: {
  38696. source: "./media/characters/lisa/paw-caribousune.svg"
  38697. }
  38698. },
  38699. },
  38700. [
  38701. {
  38702. name: "Normal",
  38703. height: math.unit(6, "feet")
  38704. },
  38705. {
  38706. name: "God Size",
  38707. height: math.unit(72, "feet"),
  38708. default: true
  38709. },
  38710. {
  38711. name: "Towering",
  38712. height: math.unit(288, "feet")
  38713. },
  38714. {
  38715. name: "City Size",
  38716. height: math.unit(48384, "feet")
  38717. },
  38718. {
  38719. name: "Continental",
  38720. height: math.unit(4200, "miles")
  38721. },
  38722. {
  38723. name: "Planet Eater",
  38724. height: math.unit(42, "earths")
  38725. },
  38726. {
  38727. name: "Star Swallower",
  38728. height: math.unit(42, "solarradii")
  38729. },
  38730. {
  38731. name: "System Swallower",
  38732. height: math.unit(84000, "AU")
  38733. },
  38734. {
  38735. name: "Galaxy Gobbler",
  38736. height: math.unit(42, "galaxies")
  38737. },
  38738. {
  38739. name: "Universe Devourer",
  38740. height: math.unit(42, "universes")
  38741. },
  38742. {
  38743. name: "Multiverse Muncher",
  38744. height: math.unit(42, "multiverses")
  38745. },
  38746. ]
  38747. ))
  38748. characterMakers.push(() => makeCharacter(
  38749. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38750. {
  38751. front: {
  38752. height: math.unit(36, "feet"),
  38753. name: "Front",
  38754. image: {
  38755. source: "./media/characters/shadow-rat/front.svg",
  38756. extra: 1845/1758,
  38757. bottom: 83/1928
  38758. }
  38759. },
  38760. },
  38761. [
  38762. {
  38763. name: "Macro",
  38764. height: math.unit(36, "feet"),
  38765. default: true
  38766. },
  38767. ]
  38768. ))
  38769. characterMakers.push(() => makeCharacter(
  38770. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38771. {
  38772. side: {
  38773. height: math.unit(8, "feet"),
  38774. weight: math.unit(2630, "lb"),
  38775. name: "Side",
  38776. image: {
  38777. source: "./media/characters/torallia/side.svg",
  38778. extra: 2164/2021,
  38779. bottom: 371/2535
  38780. }
  38781. },
  38782. },
  38783. [
  38784. {
  38785. name: "Mortal Interaction",
  38786. height: math.unit(8, "feet")
  38787. },
  38788. {
  38789. name: "Natural",
  38790. height: math.unit(24, "feet"),
  38791. default: true
  38792. },
  38793. {
  38794. name: "Giant",
  38795. height: math.unit(80, "feet")
  38796. },
  38797. {
  38798. name: "Kaiju",
  38799. height: math.unit(240, "feet")
  38800. },
  38801. {
  38802. name: "Macro",
  38803. height: math.unit(800, "feet")
  38804. },
  38805. {
  38806. name: "Macro+",
  38807. height: math.unit(2400, "feet")
  38808. },
  38809. {
  38810. name: "Macro++",
  38811. height: math.unit(8000, "feet")
  38812. },
  38813. {
  38814. name: "City-Crushing",
  38815. height: math.unit(24000, "feet")
  38816. },
  38817. {
  38818. name: "Mountain-Mashing",
  38819. height: math.unit(80000, "feet")
  38820. },
  38821. {
  38822. name: "District Demolisher",
  38823. height: math.unit(240000, "feet")
  38824. },
  38825. {
  38826. name: "Tri-County Terror",
  38827. height: math.unit(800000, "feet")
  38828. },
  38829. {
  38830. name: "State Smasher",
  38831. height: math.unit(2.4e6, "feet")
  38832. },
  38833. {
  38834. name: "Nation Nemesis",
  38835. height: math.unit(8e6, "feet")
  38836. },
  38837. {
  38838. name: "Continent Cracker",
  38839. height: math.unit(2.4e7, "feet")
  38840. },
  38841. {
  38842. name: "Planet-Pillaging",
  38843. height: math.unit(8e7, "feet")
  38844. },
  38845. {
  38846. name: "Earth-Eclipsing",
  38847. height: math.unit(2.4e8, "feet")
  38848. },
  38849. {
  38850. name: "Jovian-Jostling",
  38851. height: math.unit(8e8, "feet")
  38852. },
  38853. {
  38854. name: "Gas Giant Gulper",
  38855. height: math.unit(2.4e9, "feet")
  38856. },
  38857. {
  38858. name: "Astral Annihilator",
  38859. height: math.unit(8e9, "feet")
  38860. },
  38861. {
  38862. name: "Celestial Conqueror",
  38863. height: math.unit(2.4e10, "feet")
  38864. },
  38865. {
  38866. name: "Sol-Swallowing",
  38867. height: math.unit(8e10, "feet")
  38868. },
  38869. {
  38870. name: "Hunter of the Heavens",
  38871. height: math.unit(2.4e13, "feet")
  38872. },
  38873. ]
  38874. ))
  38875. characterMakers.push(() => makeCharacter(
  38876. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38877. {
  38878. front: {
  38879. height: math.unit(6 + 8/12, "feet"),
  38880. name: "Front",
  38881. image: {
  38882. source: "./media/characters/rebecca-pawlson/front.svg",
  38883. extra: 1737/1596,
  38884. bottom: 107/1844
  38885. }
  38886. },
  38887. back: {
  38888. height: math.unit(6 + 8/12, "feet"),
  38889. name: "Back",
  38890. image: {
  38891. source: "./media/characters/rebecca-pawlson/back.svg",
  38892. extra: 1702/1523,
  38893. bottom: 86/1788
  38894. }
  38895. },
  38896. },
  38897. [
  38898. {
  38899. name: "Normal",
  38900. height: math.unit(6 + 8/12, "feet")
  38901. },
  38902. {
  38903. name: "Mini Macro",
  38904. height: math.unit(10, "feet"),
  38905. default: true
  38906. },
  38907. {
  38908. name: "Macro",
  38909. height: math.unit(100, "feet")
  38910. },
  38911. {
  38912. name: "Mega Macro",
  38913. height: math.unit(2500, "feet")
  38914. },
  38915. {
  38916. name: "Giga Macro",
  38917. height: math.unit(50, "miles")
  38918. },
  38919. ]
  38920. ))
  38921. characterMakers.push(() => makeCharacter(
  38922. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38923. {
  38924. front: {
  38925. height: math.unit(7 + 6/12, "feet"),
  38926. weight: math.unit(600, "lb"),
  38927. name: "Front",
  38928. image: {
  38929. source: "./media/characters/moxie-nova/front.svg",
  38930. extra: 1734/1652,
  38931. bottom: 41/1775
  38932. }
  38933. },
  38934. },
  38935. [
  38936. {
  38937. name: "Normal",
  38938. height: math.unit(7 + 6/12, "feet"),
  38939. default: true
  38940. },
  38941. ]
  38942. ))
  38943. characterMakers.push(() => makeCharacter(
  38944. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38945. {
  38946. goat: {
  38947. height: math.unit(4, "feet"),
  38948. weight: math.unit(180, "lb"),
  38949. name: "Goat",
  38950. image: {
  38951. source: "./media/characters/tiffany/goat.svg",
  38952. extra: 1845/1595,
  38953. bottom: 106/1951
  38954. }
  38955. },
  38956. front: {
  38957. height: math.unit(5, "feet"),
  38958. weight: math.unit(150, "lb"),
  38959. name: "Foxcoon",
  38960. image: {
  38961. source: "./media/characters/tiffany/foxcoon.svg",
  38962. extra: 1941/1845,
  38963. bottom: 58/1999
  38964. }
  38965. },
  38966. },
  38967. [
  38968. {
  38969. name: "Normal",
  38970. height: math.unit(5, "feet"),
  38971. default: true
  38972. },
  38973. ]
  38974. ))
  38975. characterMakers.push(() => makeCharacter(
  38976. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38977. {
  38978. front: {
  38979. height: math.unit(8, "feet"),
  38980. weight: math.unit(300, "lb"),
  38981. name: "Front",
  38982. image: {
  38983. source: "./media/characters/raxinath/front.svg",
  38984. extra: 1407/1309,
  38985. bottom: 39/1446
  38986. }
  38987. },
  38988. back: {
  38989. height: math.unit(8, "feet"),
  38990. weight: math.unit(300, "lb"),
  38991. name: "Back",
  38992. image: {
  38993. source: "./media/characters/raxinath/back.svg",
  38994. extra: 1405/1315,
  38995. bottom: 9/1414
  38996. }
  38997. },
  38998. },
  38999. [
  39000. {
  39001. name: "Speck",
  39002. height: math.unit(0.5, "nm")
  39003. },
  39004. {
  39005. name: "Micro",
  39006. height: math.unit(3, "inches")
  39007. },
  39008. {
  39009. name: "Kobold",
  39010. height: math.unit(3, "feet")
  39011. },
  39012. {
  39013. name: "Normal",
  39014. height: math.unit(8, "feet"),
  39015. default: true
  39016. },
  39017. {
  39018. name: "Giant",
  39019. height: math.unit(50, "feet")
  39020. },
  39021. {
  39022. name: "Macro",
  39023. height: math.unit(1000, "feet")
  39024. },
  39025. {
  39026. name: "Megamacro",
  39027. height: math.unit(1, "mile")
  39028. },
  39029. ]
  39030. ))
  39031. characterMakers.push(() => makeCharacter(
  39032. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39033. {
  39034. front: {
  39035. height: math.unit(10, "feet"),
  39036. weight: math.unit(1442, "lb"),
  39037. name: "Front",
  39038. image: {
  39039. source: "./media/characters/mal-dragon/front.svg",
  39040. extra: 1515/1444,
  39041. bottom: 113/1628
  39042. }
  39043. },
  39044. back: {
  39045. height: math.unit(10, "feet"),
  39046. weight: math.unit(1442, "lb"),
  39047. name: "Back",
  39048. image: {
  39049. source: "./media/characters/mal-dragon/back.svg",
  39050. extra: 1527/1434,
  39051. bottom: 25/1552
  39052. }
  39053. },
  39054. },
  39055. [
  39056. {
  39057. name: "Mortal Interaction",
  39058. height: math.unit(10, "feet"),
  39059. default: true
  39060. },
  39061. {
  39062. name: "Large",
  39063. height: math.unit(30, "feet")
  39064. },
  39065. {
  39066. name: "Kaiju",
  39067. height: math.unit(300, "feet")
  39068. },
  39069. {
  39070. name: "Megamacro",
  39071. height: math.unit(10000, "feet")
  39072. },
  39073. {
  39074. name: "Continent Cracker",
  39075. height: math.unit(30000000, "feet")
  39076. },
  39077. {
  39078. name: "Sol-Swallowing",
  39079. height: math.unit(1e11, "feet")
  39080. },
  39081. {
  39082. name: "Light Universal",
  39083. height: math.unit(5, "universes")
  39084. },
  39085. {
  39086. name: "Universe Atoms",
  39087. height: math.unit(1.829e9, "universes")
  39088. },
  39089. {
  39090. name: "Light Multiversal",
  39091. height: math.unit(5, "multiverses")
  39092. },
  39093. {
  39094. name: "Multiverse Atoms",
  39095. height: math.unit(1.829e9, "multiverses")
  39096. },
  39097. {
  39098. name: "Fabric of Time",
  39099. height: math.unit(1e262, "multiverses")
  39100. },
  39101. ]
  39102. ))
  39103. characterMakers.push(() => makeCharacter(
  39104. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39105. {
  39106. front: {
  39107. height: math.unit(9, "feet"),
  39108. weight: math.unit(1050, "lb"),
  39109. name: "Front",
  39110. image: {
  39111. source: "./media/characters/tabitha/front.svg",
  39112. extra: 2083/1994,
  39113. bottom: 68/2151
  39114. }
  39115. },
  39116. },
  39117. [
  39118. {
  39119. name: "Baseline",
  39120. height: math.unit(9, "feet"),
  39121. default: true
  39122. },
  39123. {
  39124. name: "Giant",
  39125. height: math.unit(90, "feet")
  39126. },
  39127. {
  39128. name: "Macro",
  39129. height: math.unit(900, "feet")
  39130. },
  39131. {
  39132. name: "Megamacro",
  39133. height: math.unit(9000, "feet")
  39134. },
  39135. {
  39136. name: "City-Crushing",
  39137. height: math.unit(27000, "feet")
  39138. },
  39139. {
  39140. name: "Mountain-Mashing",
  39141. height: math.unit(90000, "feet")
  39142. },
  39143. {
  39144. name: "Nation Nemesis",
  39145. height: math.unit(9e6, "feet")
  39146. },
  39147. {
  39148. name: "Continent Cracker",
  39149. height: math.unit(27e6, "feet")
  39150. },
  39151. {
  39152. name: "Earth-Eclipsing",
  39153. height: math.unit(2.7e8, "feet")
  39154. },
  39155. {
  39156. name: "Gas Giant Gulper",
  39157. height: math.unit(2.7e9, "feet")
  39158. },
  39159. {
  39160. name: "Sol-Swallowing",
  39161. height: math.unit(9e10, "feet")
  39162. },
  39163. {
  39164. name: "Galaxy Gulper",
  39165. height: math.unit(9, "galaxies")
  39166. },
  39167. {
  39168. name: "Cosmos Churner",
  39169. height: math.unit(9, "universes")
  39170. },
  39171. ]
  39172. ))
  39173. characterMakers.push(() => makeCharacter(
  39174. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39175. {
  39176. front: {
  39177. height: math.unit(160, "cm"),
  39178. weight: math.unit(55, "kg"),
  39179. name: "Front",
  39180. image: {
  39181. source: "./media/characters/tow/front.svg",
  39182. extra: 1751/1722,
  39183. bottom: 74/1825
  39184. }
  39185. },
  39186. },
  39187. [
  39188. {
  39189. name: "Norm",
  39190. height: math.unit(160, "cm")
  39191. },
  39192. {
  39193. name: "Casual",
  39194. height: math.unit(3200, "m"),
  39195. default: true
  39196. },
  39197. {
  39198. name: "Show-Off",
  39199. height: math.unit(160, "km")
  39200. },
  39201. ]
  39202. ))
  39203. characterMakers.push(() => makeCharacter(
  39204. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39205. {
  39206. front: {
  39207. height: math.unit(7 + 11/12, "feet"),
  39208. weight: math.unit(342.8, "lb"),
  39209. name: "Front",
  39210. image: {
  39211. source: "./media/characters/vivian-orca-dragon/front.svg",
  39212. extra: 1890/1865,
  39213. bottom: 28/1918
  39214. }
  39215. },
  39216. },
  39217. [
  39218. {
  39219. name: "Micro",
  39220. height: math.unit(5, "inches")
  39221. },
  39222. {
  39223. name: "Normal",
  39224. height: math.unit(7 + 11/12, "feet"),
  39225. default: true
  39226. },
  39227. {
  39228. name: "Macro",
  39229. height: math.unit(395 + 7/12, "feet")
  39230. },
  39231. ]
  39232. ))
  39233. characterMakers.push(() => makeCharacter(
  39234. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39235. {
  39236. side: {
  39237. height: math.unit(10, "feet"),
  39238. weight: math.unit(1442, "lb"),
  39239. name: "Side",
  39240. image: {
  39241. source: "./media/characters/lotherakon/side.svg",
  39242. extra: 1604/1497,
  39243. bottom: 89/1693
  39244. }
  39245. },
  39246. },
  39247. [
  39248. {
  39249. name: "Mortal Interaction",
  39250. height: math.unit(10, "feet")
  39251. },
  39252. {
  39253. name: "Large",
  39254. height: math.unit(30, "feet"),
  39255. default: true
  39256. },
  39257. {
  39258. name: "Giant",
  39259. height: math.unit(100, "feet")
  39260. },
  39261. {
  39262. name: "Kaiju",
  39263. height: math.unit(300, "feet")
  39264. },
  39265. {
  39266. name: "Macro",
  39267. height: math.unit(1000, "feet")
  39268. },
  39269. {
  39270. name: "Macro+",
  39271. height: math.unit(3000, "feet")
  39272. },
  39273. {
  39274. name: "Megamacro",
  39275. height: math.unit(10000, "feet")
  39276. },
  39277. {
  39278. name: "City-Crushing",
  39279. height: math.unit(30000, "feet")
  39280. },
  39281. {
  39282. name: "Continent Cracker",
  39283. height: math.unit(30e6, "feet")
  39284. },
  39285. {
  39286. name: "Earth Eclipsing",
  39287. height: math.unit(3e8, "feet")
  39288. },
  39289. {
  39290. name: "Gas Giant Gulper",
  39291. height: math.unit(3e9, "feet")
  39292. },
  39293. {
  39294. name: "Sol-Swallowing",
  39295. height: math.unit(1e11, "feet")
  39296. },
  39297. {
  39298. name: "System Swallower",
  39299. height: math.unit(3e14, "feet")
  39300. },
  39301. {
  39302. name: "Galaxy Gulper",
  39303. height: math.unit(10, "galaxies")
  39304. },
  39305. {
  39306. name: "Light Universal",
  39307. height: math.unit(5, "universes")
  39308. },
  39309. {
  39310. name: "Universe Palm",
  39311. height: math.unit(20, "universes")
  39312. },
  39313. {
  39314. name: "Light Multiversal",
  39315. height: math.unit(5, "multiverses")
  39316. },
  39317. {
  39318. name: "Multiverse Palm",
  39319. height: math.unit(20, "multiverses")
  39320. },
  39321. {
  39322. name: "Inferno Incarnate",
  39323. height: math.unit(1e7, "multiverses")
  39324. },
  39325. ]
  39326. ))
  39327. characterMakers.push(() => makeCharacter(
  39328. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39329. {
  39330. front: {
  39331. height: math.unit(8, "feet"),
  39332. weight: math.unit(1200, "lb"),
  39333. name: "Front",
  39334. image: {
  39335. source: "./media/characters/malithee/front.svg",
  39336. extra: 1675/1640,
  39337. bottom: 162/1837
  39338. }
  39339. },
  39340. },
  39341. [
  39342. {
  39343. name: "Mortal Interaction",
  39344. height: math.unit(8, "feet"),
  39345. default: true
  39346. },
  39347. {
  39348. name: "Large",
  39349. height: math.unit(24, "feet")
  39350. },
  39351. {
  39352. name: "Kaiju",
  39353. height: math.unit(240, "feet")
  39354. },
  39355. {
  39356. name: "Megamacro",
  39357. height: math.unit(8000, "feet")
  39358. },
  39359. {
  39360. name: "Continent Cracker",
  39361. height: math.unit(24e6, "feet")
  39362. },
  39363. {
  39364. name: "Earth-Eclipsing",
  39365. height: math.unit(2.4e8, "feet")
  39366. },
  39367. {
  39368. name: "Sol-Swallowing",
  39369. height: math.unit(8e10, "feet")
  39370. },
  39371. {
  39372. name: "Galaxy Gulper",
  39373. height: math.unit(8, "galaxies")
  39374. },
  39375. {
  39376. name: "Light Universal",
  39377. height: math.unit(4, "universes")
  39378. },
  39379. {
  39380. name: "Universe Atoms",
  39381. height: math.unit(1.829e9, "universes")
  39382. },
  39383. {
  39384. name: "Light Multiversal",
  39385. height: math.unit(4, "multiverses")
  39386. },
  39387. {
  39388. name: "Multiverse Atoms",
  39389. height: math.unit(1.829e9, "multiverses")
  39390. },
  39391. {
  39392. name: "Nigh-Omnipresence",
  39393. height: math.unit(8e261, "multiverses")
  39394. },
  39395. ]
  39396. ))
  39397. characterMakers.push(() => makeCharacter(
  39398. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39399. {
  39400. front: {
  39401. height: math.unit(10, "feet"),
  39402. weight: math.unit(1500, "lb"),
  39403. name: "Front",
  39404. image: {
  39405. source: "./media/characters/miles-thestia/front.svg",
  39406. extra: 1812/1727,
  39407. bottom: 86/1898
  39408. }
  39409. },
  39410. back: {
  39411. height: math.unit(10, "feet"),
  39412. weight: math.unit(1500, "lb"),
  39413. name: "Back",
  39414. image: {
  39415. source: "./media/characters/miles-thestia/back.svg",
  39416. extra: 1799/1690,
  39417. bottom: 47/1846
  39418. }
  39419. },
  39420. frontNsfw: {
  39421. height: math.unit(10, "feet"),
  39422. weight: math.unit(1500, "lb"),
  39423. name: "Front (NSFW)",
  39424. image: {
  39425. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39426. extra: 1812/1727,
  39427. bottom: 86/1898
  39428. }
  39429. },
  39430. },
  39431. [
  39432. {
  39433. name: "Mini-Macro",
  39434. height: math.unit(10, "feet"),
  39435. default: true
  39436. },
  39437. ]
  39438. ))
  39439. characterMakers.push(() => makeCharacter(
  39440. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39441. {
  39442. front: {
  39443. height: math.unit(25, "feet"),
  39444. name: "Front",
  39445. image: {
  39446. source: "./media/characters/titan-s-wulf/front.svg",
  39447. extra: 1560/1484,
  39448. bottom: 76/1636
  39449. }
  39450. },
  39451. },
  39452. [
  39453. {
  39454. name: "Smallest",
  39455. height: math.unit(25, "feet"),
  39456. default: true
  39457. },
  39458. {
  39459. name: "Normal",
  39460. height: math.unit(200, "feet")
  39461. },
  39462. {
  39463. name: "Macro",
  39464. height: math.unit(200000, "feet")
  39465. },
  39466. {
  39467. name: "Multiversal Original",
  39468. height: math.unit(10000, "multiverses")
  39469. },
  39470. ]
  39471. ))
  39472. characterMakers.push(() => makeCharacter(
  39473. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39474. {
  39475. front: {
  39476. height: math.unit(8, "feet"),
  39477. weight: math.unit(553, "lb"),
  39478. name: "Front",
  39479. image: {
  39480. source: "./media/characters/tawendeh/front.svg",
  39481. extra: 2365/2268,
  39482. bottom: 83/2448
  39483. }
  39484. },
  39485. frontClothed: {
  39486. height: math.unit(8, "feet"),
  39487. weight: math.unit(553, "lb"),
  39488. name: "Front (Clothed)",
  39489. image: {
  39490. source: "./media/characters/tawendeh/front-clothed.svg",
  39491. extra: 2365/2268,
  39492. bottom: 83/2448
  39493. }
  39494. },
  39495. back: {
  39496. height: math.unit(8, "feet"),
  39497. weight: math.unit(553, "lb"),
  39498. name: "Back",
  39499. image: {
  39500. source: "./media/characters/tawendeh/back.svg",
  39501. extra: 2397/2294,
  39502. bottom: 42/2439
  39503. }
  39504. },
  39505. },
  39506. [
  39507. {
  39508. name: "Mortal Interaction",
  39509. height: math.unit(8, "feet"),
  39510. default: true
  39511. },
  39512. {
  39513. name: "Giant",
  39514. height: math.unit(80, "feet")
  39515. },
  39516. {
  39517. name: "Macro",
  39518. height: math.unit(800, "feet")
  39519. },
  39520. {
  39521. name: "Megamacro",
  39522. height: math.unit(8000, "feet")
  39523. },
  39524. {
  39525. name: "City-Crushing",
  39526. height: math.unit(24000, "feet")
  39527. },
  39528. {
  39529. name: "Mountain-Mashing",
  39530. height: math.unit(80000, "feet")
  39531. },
  39532. {
  39533. name: "Nation Nemesis",
  39534. height: math.unit(8e6, "feet")
  39535. },
  39536. {
  39537. name: "Continent Cracker",
  39538. height: math.unit(24e6, "feet")
  39539. },
  39540. {
  39541. name: "Earth-Eclipsing",
  39542. height: math.unit(2.4e8, "feet")
  39543. },
  39544. {
  39545. name: "Gas Giant Gulper",
  39546. height: math.unit(2.4e9, "feet")
  39547. },
  39548. {
  39549. name: "Sol-Swallowing",
  39550. height: math.unit(8e10, "feet")
  39551. },
  39552. {
  39553. name: "Galaxy Gulper",
  39554. height: math.unit(8, "galaxies")
  39555. },
  39556. {
  39557. name: "Cosmos Churner",
  39558. height: math.unit(8, "universes")
  39559. },
  39560. {
  39561. name: "Omnipotent Otter",
  39562. height: math.unit(80, "universes")
  39563. },
  39564. ]
  39565. ))
  39566. characterMakers.push(() => makeCharacter(
  39567. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39568. {
  39569. front: {
  39570. height: math.unit(2.6, "meters"),
  39571. weight: math.unit(900, "kg"),
  39572. name: "Front",
  39573. image: {
  39574. source: "./media/characters/neesha/front.svg",
  39575. extra: 1803/1653,
  39576. bottom: 128/1931
  39577. }
  39578. },
  39579. },
  39580. [
  39581. {
  39582. name: "Normal",
  39583. height: math.unit(2.6, "meters"),
  39584. default: true
  39585. },
  39586. {
  39587. name: "Macro",
  39588. height: math.unit(50, "meters")
  39589. },
  39590. ]
  39591. ))
  39592. characterMakers.push(() => makeCharacter(
  39593. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39594. {
  39595. front: {
  39596. height: math.unit(5, "feet"),
  39597. weight: math.unit(185, "lb"),
  39598. name: "Front",
  39599. image: {
  39600. source: "./media/characters/kyera/front.svg",
  39601. extra: 1875/1790,
  39602. bottom: 96/1971
  39603. }
  39604. },
  39605. },
  39606. [
  39607. {
  39608. name: "Normal",
  39609. height: math.unit(5, "feet"),
  39610. default: true
  39611. },
  39612. ]
  39613. ))
  39614. characterMakers.push(() => makeCharacter(
  39615. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39616. {
  39617. front: {
  39618. height: math.unit(7 + 6/12, "feet"),
  39619. weight: math.unit(540, "lb"),
  39620. name: "Front",
  39621. image: {
  39622. source: "./media/characters/yuko/front.svg",
  39623. extra: 1282/1222,
  39624. bottom: 101/1383
  39625. }
  39626. },
  39627. frontClothed: {
  39628. height: math.unit(7 + 6/12, "feet"),
  39629. weight: math.unit(540, "lb"),
  39630. name: "Front (Clothed)",
  39631. image: {
  39632. source: "./media/characters/yuko/front-clothed.svg",
  39633. extra: 1282/1222,
  39634. bottom: 101/1383
  39635. }
  39636. },
  39637. },
  39638. [
  39639. {
  39640. name: "Normal",
  39641. height: math.unit(7 + 6/12, "feet"),
  39642. default: true
  39643. },
  39644. {
  39645. name: "Macro",
  39646. height: math.unit(26 + 9/12, "feet")
  39647. },
  39648. {
  39649. name: "Megamacro",
  39650. height: math.unit(300, "feet")
  39651. },
  39652. {
  39653. name: "Gigamacro",
  39654. height: math.unit(5000, "feet")
  39655. },
  39656. {
  39657. name: "Planetary",
  39658. height: math.unit(10000, "miles")
  39659. },
  39660. ]
  39661. ))
  39662. characterMakers.push(() => makeCharacter(
  39663. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39664. {
  39665. front: {
  39666. height: math.unit(8 + 2/12, "feet"),
  39667. weight: math.unit(600, "lb"),
  39668. name: "Front",
  39669. image: {
  39670. source: "./media/characters/deam-nitrel/front.svg",
  39671. extra: 1308/1234,
  39672. bottom: 125/1433
  39673. }
  39674. },
  39675. },
  39676. [
  39677. {
  39678. name: "Normal",
  39679. height: math.unit(8 + 2/12, "feet"),
  39680. default: true
  39681. },
  39682. ]
  39683. ))
  39684. characterMakers.push(() => makeCharacter(
  39685. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39686. {
  39687. front: {
  39688. height: math.unit(6.1, "feet"),
  39689. weight: math.unit(180, "lb"),
  39690. name: "Front",
  39691. image: {
  39692. source: "./media/characters/skyress/front.svg",
  39693. extra: 1045/915,
  39694. bottom: 28/1073
  39695. }
  39696. },
  39697. maw: {
  39698. height: math.unit(1, "feet"),
  39699. name: "Maw",
  39700. image: {
  39701. source: "./media/characters/skyress/maw.svg"
  39702. }
  39703. },
  39704. },
  39705. [
  39706. {
  39707. name: "Normal",
  39708. height: math.unit(6.1, "feet"),
  39709. default: true
  39710. },
  39711. {
  39712. name: "Macro",
  39713. height: math.unit(200, "feet")
  39714. },
  39715. ]
  39716. ))
  39717. characterMakers.push(() => makeCharacter(
  39718. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39719. {
  39720. front: {
  39721. height: math.unit(4 + 2/12, "feet"),
  39722. weight: math.unit(40, "kg"),
  39723. name: "Front",
  39724. image: {
  39725. source: "./media/characters/amethyst-jones/front.svg",
  39726. extra: 1220/1150,
  39727. bottom: 101/1321
  39728. }
  39729. },
  39730. },
  39731. [
  39732. {
  39733. name: "Normal",
  39734. height: math.unit(4 + 2/12, "feet"),
  39735. default: true
  39736. },
  39737. ]
  39738. ))
  39739. characterMakers.push(() => makeCharacter(
  39740. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39741. {
  39742. front: {
  39743. height: math.unit(1.7, "m"),
  39744. weight: math.unit(135, "lb"),
  39745. name: "Front",
  39746. image: {
  39747. source: "./media/characters/jade/front.svg",
  39748. extra: 1818/1767,
  39749. bottom: 32/1850
  39750. }
  39751. },
  39752. back: {
  39753. height: math.unit(1.7, "m"),
  39754. weight: math.unit(135, "lb"),
  39755. name: "Back",
  39756. image: {
  39757. source: "./media/characters/jade/back.svg",
  39758. extra: 1869/1809,
  39759. bottom: 35/1904
  39760. }
  39761. },
  39762. hand: {
  39763. height: math.unit(0.24, "m"),
  39764. name: "Hand",
  39765. image: {
  39766. source: "./media/characters/jade/hand.svg"
  39767. }
  39768. },
  39769. foot: {
  39770. height: math.unit(0.263, "m"),
  39771. name: "Foot",
  39772. image: {
  39773. source: "./media/characters/jade/foot.svg"
  39774. }
  39775. },
  39776. dick: {
  39777. height: math.unit(0.47, "m"),
  39778. name: "Dick",
  39779. image: {
  39780. source: "./media/characters/jade/dick.svg"
  39781. }
  39782. },
  39783. },
  39784. [
  39785. {
  39786. name: "Micro",
  39787. height: math.unit(22, "cm")
  39788. },
  39789. {
  39790. name: "Normal",
  39791. height: math.unit(1.7, "m"),
  39792. default: true
  39793. },
  39794. {
  39795. name: "Macro",
  39796. height: math.unit(152, "m")
  39797. },
  39798. ]
  39799. ))
  39800. characterMakers.push(() => makeCharacter(
  39801. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39802. {
  39803. front: {
  39804. height: math.unit(100, "miles"),
  39805. weight: math.unit(20000, "tons"),
  39806. name: "Front",
  39807. image: {
  39808. source: "./media/characters/cookie/front.svg",
  39809. extra: 1125/1070,
  39810. bottom: 30/1155
  39811. }
  39812. },
  39813. },
  39814. [
  39815. {
  39816. name: "Big",
  39817. height: math.unit(50, "feet")
  39818. },
  39819. {
  39820. name: "Macro",
  39821. height: math.unit(100, "miles"),
  39822. default: true
  39823. },
  39824. {
  39825. name: "Megamacro",
  39826. height: math.unit(90000, "miles")
  39827. },
  39828. ]
  39829. ))
  39830. characterMakers.push(() => makeCharacter(
  39831. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39832. {
  39833. front: {
  39834. height: math.unit(6, "feet"),
  39835. weight: math.unit(145, "lb"),
  39836. name: "Front",
  39837. image: {
  39838. source: "./media/characters/farzian/front.svg",
  39839. extra: 1902/1693,
  39840. bottom: 108/2010
  39841. }
  39842. },
  39843. },
  39844. [
  39845. {
  39846. name: "Macro",
  39847. height: math.unit(500, "feet"),
  39848. default: true
  39849. },
  39850. ]
  39851. ))
  39852. characterMakers.push(() => makeCharacter(
  39853. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39854. {
  39855. front: {
  39856. height: math.unit(3 + 6/12, "feet"),
  39857. weight: math.unit(50, "lb"),
  39858. name: "Front",
  39859. image: {
  39860. source: "./media/characters/kimberly-tilson/front.svg",
  39861. extra: 1400/1322,
  39862. bottom: 36/1436
  39863. }
  39864. },
  39865. back: {
  39866. height: math.unit(3 + 6/12, "feet"),
  39867. weight: math.unit(50, "lb"),
  39868. name: "Back",
  39869. image: {
  39870. source: "./media/characters/kimberly-tilson/back.svg",
  39871. extra: 1370/1307,
  39872. bottom: 20/1390
  39873. }
  39874. },
  39875. },
  39876. [
  39877. {
  39878. name: "Normal",
  39879. height: math.unit(3 + 6/12, "feet"),
  39880. default: true
  39881. },
  39882. ]
  39883. ))
  39884. characterMakers.push(() => makeCharacter(
  39885. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39886. {
  39887. front: {
  39888. height: math.unit(1148, "feet"),
  39889. weight: math.unit(34057, "lb"),
  39890. name: "Front",
  39891. image: {
  39892. source: "./media/characters/harthos/front.svg",
  39893. extra: 1391/1339,
  39894. bottom: 13/1404
  39895. }
  39896. },
  39897. },
  39898. [
  39899. {
  39900. name: "Macro",
  39901. height: math.unit(1148, "feet"),
  39902. default: true
  39903. },
  39904. ]
  39905. ))
  39906. characterMakers.push(() => makeCharacter(
  39907. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39908. {
  39909. front: {
  39910. height: math.unit(15, "feet"),
  39911. name: "Front",
  39912. image: {
  39913. source: "./media/characters/hypatia/front.svg",
  39914. extra: 1653/1591,
  39915. bottom: 79/1732
  39916. }
  39917. },
  39918. },
  39919. [
  39920. {
  39921. name: "Normal",
  39922. height: math.unit(15, "feet")
  39923. },
  39924. {
  39925. name: "Small",
  39926. height: math.unit(300, "feet")
  39927. },
  39928. {
  39929. name: "Macro",
  39930. height: math.unit(2500, "feet"),
  39931. default: true
  39932. },
  39933. {
  39934. name: "Mega Macro",
  39935. height: math.unit(1500, "miles")
  39936. },
  39937. {
  39938. name: "Giga Macro",
  39939. height: math.unit(1.5e6, "miles")
  39940. },
  39941. ]
  39942. ))
  39943. characterMakers.push(() => makeCharacter(
  39944. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39945. {
  39946. front: {
  39947. height: math.unit(6, "feet"),
  39948. weight: math.unit(200, "lb"),
  39949. name: "Front",
  39950. image: {
  39951. source: "./media/characters/wulver/front.svg",
  39952. extra: 1724/1632,
  39953. bottom: 130/1854
  39954. }
  39955. },
  39956. frontNsfw: {
  39957. height: math.unit(6, "feet"),
  39958. weight: math.unit(200, "lb"),
  39959. name: "Front (NSFW)",
  39960. image: {
  39961. source: "./media/characters/wulver/front-nsfw.svg",
  39962. extra: 1724/1632,
  39963. bottom: 130/1854
  39964. }
  39965. },
  39966. },
  39967. [
  39968. {
  39969. name: "Human-Sized",
  39970. height: math.unit(6, "feet")
  39971. },
  39972. {
  39973. name: "Normal",
  39974. height: math.unit(4, "meters"),
  39975. default: true
  39976. },
  39977. {
  39978. name: "Large",
  39979. height: math.unit(6, "m")
  39980. },
  39981. ]
  39982. ))
  39983. characterMakers.push(() => makeCharacter(
  39984. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39985. {
  39986. front: {
  39987. height: math.unit(7, "feet"),
  39988. name: "Front",
  39989. image: {
  39990. source: "./media/characters/maru/front.svg",
  39991. extra: 1595/1570,
  39992. bottom: 0/1595
  39993. }
  39994. },
  39995. },
  39996. [
  39997. {
  39998. name: "Normal",
  39999. height: math.unit(7, "feet"),
  40000. default: true
  40001. },
  40002. {
  40003. name: "Macro",
  40004. height: math.unit(700, "feet")
  40005. },
  40006. {
  40007. name: "Mega Macro",
  40008. height: math.unit(25, "miles")
  40009. },
  40010. ]
  40011. ))
  40012. characterMakers.push(() => makeCharacter(
  40013. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40014. {
  40015. front: {
  40016. height: math.unit(6, "feet"),
  40017. weight: math.unit(170, "lb"),
  40018. name: "Front",
  40019. image: {
  40020. source: "./media/characters/xenon/front.svg",
  40021. extra: 1376/1305,
  40022. bottom: 56/1432
  40023. }
  40024. },
  40025. back: {
  40026. height: math.unit(6, "feet"),
  40027. weight: math.unit(170, "lb"),
  40028. name: "Back",
  40029. image: {
  40030. source: "./media/characters/xenon/back.svg",
  40031. extra: 1328/1259,
  40032. bottom: 95/1423
  40033. }
  40034. },
  40035. maw: {
  40036. height: math.unit(0.52, "feet"),
  40037. name: "Maw",
  40038. image: {
  40039. source: "./media/characters/xenon/maw.svg"
  40040. }
  40041. },
  40042. hand: {
  40043. height: math.unit(0.82, "feet"),
  40044. name: "Hand",
  40045. image: {
  40046. source: "./media/characters/xenon/hand.svg"
  40047. }
  40048. },
  40049. foot: {
  40050. height: math.unit(1.13, "feet"),
  40051. name: "Foot",
  40052. image: {
  40053. source: "./media/characters/xenon/foot.svg"
  40054. }
  40055. },
  40056. },
  40057. [
  40058. {
  40059. name: "Micro",
  40060. height: math.unit(0.8, "inches")
  40061. },
  40062. {
  40063. name: "Normal",
  40064. height: math.unit(6, "feet")
  40065. },
  40066. {
  40067. name: "Macro",
  40068. height: math.unit(50, "feet"),
  40069. default: true
  40070. },
  40071. {
  40072. name: "Macro+",
  40073. height: math.unit(250, "feet")
  40074. },
  40075. {
  40076. name: "Megamacro",
  40077. height: math.unit(1500, "feet")
  40078. },
  40079. ]
  40080. ))
  40081. characterMakers.push(() => makeCharacter(
  40082. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40083. {
  40084. front: {
  40085. height: math.unit(7 + 5/12, "feet"),
  40086. name: "Front",
  40087. image: {
  40088. source: "./media/characters/zane/front.svg",
  40089. extra: 1260/1203,
  40090. bottom: 94/1354
  40091. }
  40092. },
  40093. back: {
  40094. height: math.unit(5.05, "feet"),
  40095. name: "Back",
  40096. image: {
  40097. source: "./media/characters/zane/back.svg",
  40098. extra: 893/829,
  40099. bottom: 30/923
  40100. }
  40101. },
  40102. werewolf: {
  40103. height: math.unit(11, "feet"),
  40104. name: "Werewolf",
  40105. image: {
  40106. source: "./media/characters/zane/werewolf.svg",
  40107. extra: 1383/1323,
  40108. bottom: 89/1472
  40109. }
  40110. },
  40111. foot: {
  40112. height: math.unit(1.46, "feet"),
  40113. name: "Foot",
  40114. image: {
  40115. source: "./media/characters/zane/foot.svg"
  40116. }
  40117. },
  40118. footFront: {
  40119. height: math.unit(0.784, "feet"),
  40120. name: "Foot (Front)",
  40121. image: {
  40122. source: "./media/characters/zane/foot-front.svg"
  40123. }
  40124. },
  40125. dick: {
  40126. height: math.unit(1.95, "feet"),
  40127. name: "Dick",
  40128. image: {
  40129. source: "./media/characters/zane/dick.svg"
  40130. }
  40131. },
  40132. dickWerewolf: {
  40133. height: math.unit(3.77, "feet"),
  40134. name: "Dick (Werewolf)",
  40135. image: {
  40136. source: "./media/characters/zane/dick.svg"
  40137. }
  40138. },
  40139. },
  40140. [
  40141. {
  40142. name: "Normal",
  40143. height: math.unit(7 + 5/12, "feet"),
  40144. default: true
  40145. },
  40146. ]
  40147. ))
  40148. characterMakers.push(() => makeCharacter(
  40149. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40150. {
  40151. front: {
  40152. height: math.unit(6 + 2/12, "feet"),
  40153. weight: math.unit(284, "lb"),
  40154. name: "Front",
  40155. image: {
  40156. source: "./media/characters/benni-desparque/front.svg",
  40157. extra: 1353/1126,
  40158. bottom: 69/1422
  40159. }
  40160. },
  40161. },
  40162. [
  40163. {
  40164. name: "Civilian",
  40165. height: math.unit(6 + 2/12, "feet")
  40166. },
  40167. {
  40168. name: "Normal",
  40169. height: math.unit(98, "feet"),
  40170. default: true
  40171. },
  40172. {
  40173. name: "Kaiju Fighter",
  40174. height: math.unit(268, "feet")
  40175. },
  40176. ]
  40177. ))
  40178. characterMakers.push(() => makeCharacter(
  40179. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40180. {
  40181. front: {
  40182. height: math.unit(5, "feet"),
  40183. weight: math.unit(105, "lb"),
  40184. name: "Front",
  40185. image: {
  40186. source: "./media/characters/maxine/front.svg",
  40187. extra: 1386/1250,
  40188. bottom: 71/1457
  40189. }
  40190. },
  40191. },
  40192. [
  40193. {
  40194. name: "Normal",
  40195. height: math.unit(5, "feet"),
  40196. default: true
  40197. },
  40198. ]
  40199. ))
  40200. characterMakers.push(() => makeCharacter(
  40201. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40202. {
  40203. front: {
  40204. height: math.unit(11 + 7/12, "feet"),
  40205. weight: math.unit(9576, "lb"),
  40206. name: "Front",
  40207. image: {
  40208. source: "./media/characters/scaly/front.svg",
  40209. extra: 888/867,
  40210. bottom: 36/924
  40211. }
  40212. },
  40213. },
  40214. [
  40215. {
  40216. name: "Normal",
  40217. height: math.unit(11 + 7/12, "feet"),
  40218. default: true
  40219. },
  40220. ]
  40221. ))
  40222. characterMakers.push(() => makeCharacter(
  40223. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40224. {
  40225. front: {
  40226. height: math.unit(6 + 3/12, "feet"),
  40227. name: "Front",
  40228. image: {
  40229. source: "./media/characters/saelria/front.svg",
  40230. extra: 1243/1138,
  40231. bottom: 46/1289
  40232. }
  40233. },
  40234. },
  40235. [
  40236. {
  40237. name: "Micro",
  40238. height: math.unit(6, "inches"),
  40239. },
  40240. {
  40241. name: "Normal",
  40242. height: math.unit(6 + 3/12, "feet"),
  40243. default: true
  40244. },
  40245. {
  40246. name: "Macro",
  40247. height: math.unit(25, "feet")
  40248. },
  40249. ]
  40250. ))
  40251. characterMakers.push(() => makeCharacter(
  40252. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40253. {
  40254. front: {
  40255. height: math.unit(80, "meters"),
  40256. weight: math.unit(7000, "tonnes"),
  40257. name: "Front",
  40258. image: {
  40259. source: "./media/characters/tef/front.svg",
  40260. extra: 2036/1991,
  40261. bottom: 54/2090
  40262. }
  40263. },
  40264. back: {
  40265. height: math.unit(80, "meters"),
  40266. weight: math.unit(7000, "tonnes"),
  40267. name: "Back",
  40268. image: {
  40269. source: "./media/characters/tef/back.svg",
  40270. extra: 2036/1991,
  40271. bottom: 54/2090
  40272. }
  40273. },
  40274. },
  40275. [
  40276. {
  40277. name: "Macro",
  40278. height: math.unit(80, "meters"),
  40279. default: true
  40280. },
  40281. ]
  40282. ))
  40283. characterMakers.push(() => makeCharacter(
  40284. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40285. {
  40286. front: {
  40287. height: math.unit(13, "feet"),
  40288. weight: math.unit(6, "tons"),
  40289. name: "Front",
  40290. image: {
  40291. source: "./media/characters/rover/front.svg",
  40292. extra: 1233/1156,
  40293. bottom: 50/1283
  40294. }
  40295. },
  40296. back: {
  40297. height: math.unit(13, "feet"),
  40298. weight: math.unit(6, "tons"),
  40299. name: "Back",
  40300. image: {
  40301. source: "./media/characters/rover/back.svg",
  40302. extra: 1327/1258,
  40303. bottom: 39/1366
  40304. }
  40305. },
  40306. },
  40307. [
  40308. {
  40309. name: "Normal",
  40310. height: math.unit(13, "feet"),
  40311. default: true
  40312. },
  40313. {
  40314. name: "Macro",
  40315. height: math.unit(1300, "feet")
  40316. },
  40317. {
  40318. name: "Megamacro",
  40319. height: math.unit(1300, "miles")
  40320. },
  40321. {
  40322. name: "Gigamacro",
  40323. height: math.unit(1300000, "miles")
  40324. },
  40325. ]
  40326. ))
  40327. characterMakers.push(() => makeCharacter(
  40328. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40329. {
  40330. front: {
  40331. height: math.unit(6, "feet"),
  40332. weight: math.unit(150, "lb"),
  40333. name: "Front",
  40334. image: {
  40335. source: "./media/characters/ariz/front.svg",
  40336. extra: 1401/1346,
  40337. bottom: 5/1406
  40338. }
  40339. },
  40340. },
  40341. [
  40342. {
  40343. name: "Normal",
  40344. height: math.unit(10, "feet"),
  40345. default: true
  40346. },
  40347. ]
  40348. ))
  40349. characterMakers.push(() => makeCharacter(
  40350. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40351. {
  40352. front: {
  40353. height: math.unit(6, "feet"),
  40354. weight: math.unit(140, "lb"),
  40355. name: "Front",
  40356. image: {
  40357. source: "./media/characters/sigrun/front.svg",
  40358. extra: 1418/1359,
  40359. bottom: 27/1445
  40360. }
  40361. },
  40362. },
  40363. [
  40364. {
  40365. name: "Macro",
  40366. height: math.unit(35, "feet"),
  40367. default: true
  40368. },
  40369. ]
  40370. ))
  40371. characterMakers.push(() => makeCharacter(
  40372. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40373. {
  40374. front: {
  40375. height: math.unit(6, "feet"),
  40376. weight: math.unit(150, "lb"),
  40377. name: "Front",
  40378. image: {
  40379. source: "./media/characters/numin/front.svg",
  40380. extra: 1433/1388,
  40381. bottom: 12/1445
  40382. }
  40383. },
  40384. },
  40385. [
  40386. {
  40387. name: "Macro",
  40388. height: math.unit(21.5, "km"),
  40389. default: true
  40390. },
  40391. ]
  40392. ))
  40393. characterMakers.push(() => makeCharacter(
  40394. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40395. {
  40396. front: {
  40397. height: math.unit(6, "feet"),
  40398. weight: math.unit(463, "lb"),
  40399. name: "Front",
  40400. image: {
  40401. source: "./media/characters/melwa/front.svg",
  40402. extra: 1307/1248,
  40403. bottom: 93/1400
  40404. }
  40405. },
  40406. },
  40407. [
  40408. {
  40409. name: "Macro",
  40410. height: math.unit(50, "meters"),
  40411. default: true
  40412. },
  40413. ]
  40414. ))
  40415. characterMakers.push(() => makeCharacter(
  40416. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40417. {
  40418. front: {
  40419. height: math.unit(325, "feet"),
  40420. name: "Front",
  40421. image: {
  40422. source: "./media/characters/zorkaiju/front.svg",
  40423. extra: 1955/1814,
  40424. bottom: 40/1995
  40425. }
  40426. },
  40427. frontExtended: {
  40428. height: math.unit(325, "feet"),
  40429. name: "Front (Extended)",
  40430. image: {
  40431. source: "./media/characters/zorkaiju/front-extended.svg",
  40432. extra: 1955/1814,
  40433. bottom: 40/1995
  40434. }
  40435. },
  40436. side: {
  40437. height: math.unit(325, "feet"),
  40438. name: "Side",
  40439. image: {
  40440. source: "./media/characters/zorkaiju/side.svg",
  40441. extra: 1495/1396,
  40442. bottom: 17/1512
  40443. }
  40444. },
  40445. sideExtended: {
  40446. height: math.unit(325, "feet"),
  40447. name: "Side (Extended)",
  40448. image: {
  40449. source: "./media/characters/zorkaiju/side-extended.svg",
  40450. extra: 1495/1396,
  40451. bottom: 17/1512
  40452. }
  40453. },
  40454. back: {
  40455. height: math.unit(325, "feet"),
  40456. name: "Back",
  40457. image: {
  40458. source: "./media/characters/zorkaiju/back.svg",
  40459. extra: 1959/1821,
  40460. bottom: 31/1990
  40461. }
  40462. },
  40463. backExtended: {
  40464. height: math.unit(325, "feet"),
  40465. name: "Back (Extended)",
  40466. image: {
  40467. source: "./media/characters/zorkaiju/back-extended.svg",
  40468. extra: 1959/1821,
  40469. bottom: 31/1990
  40470. }
  40471. },
  40472. hand: {
  40473. height: math.unit(58.4, "feet"),
  40474. name: "Hand",
  40475. image: {
  40476. source: "./media/characters/zorkaiju/hand.svg"
  40477. }
  40478. },
  40479. handExtended: {
  40480. height: math.unit(61.4, "feet"),
  40481. name: "Hand (Extended)",
  40482. image: {
  40483. source: "./media/characters/zorkaiju/hand-extended.svg"
  40484. }
  40485. },
  40486. foot: {
  40487. height: math.unit(95, "feet"),
  40488. name: "Foot",
  40489. image: {
  40490. source: "./media/characters/zorkaiju/foot.svg"
  40491. }
  40492. },
  40493. leftArm: {
  40494. height: math.unit(59, "feet"),
  40495. name: "Left Arm",
  40496. image: {
  40497. source: "./media/characters/zorkaiju/left-arm.svg"
  40498. }
  40499. },
  40500. rightArm: {
  40501. height: math.unit(59, "feet"),
  40502. name: "Right Arm",
  40503. image: {
  40504. source: "./media/characters/zorkaiju/right-arm.svg"
  40505. }
  40506. },
  40507. tail: {
  40508. height: math.unit(104, "feet"),
  40509. name: "Tail",
  40510. image: {
  40511. source: "./media/characters/zorkaiju/tail.svg"
  40512. }
  40513. },
  40514. tailExtended: {
  40515. height: math.unit(104, "feet"),
  40516. name: "Tail (Extended)",
  40517. image: {
  40518. source: "./media/characters/zorkaiju/tail-extended.svg"
  40519. }
  40520. },
  40521. tailBottom: {
  40522. height: math.unit(104, "feet"),
  40523. name: "Tail Bottom",
  40524. image: {
  40525. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40526. }
  40527. },
  40528. crystal: {
  40529. height: math.unit(27.54, "feet"),
  40530. name: "Crystal",
  40531. image: {
  40532. source: "./media/characters/zorkaiju/crystal.svg"
  40533. }
  40534. },
  40535. },
  40536. [
  40537. {
  40538. name: "Kaiju",
  40539. height: math.unit(325, "feet"),
  40540. default: true
  40541. },
  40542. ]
  40543. ))
  40544. characterMakers.push(() => makeCharacter(
  40545. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40546. {
  40547. front: {
  40548. height: math.unit(6 + 1/12, "feet"),
  40549. weight: math.unit(115, "lb"),
  40550. name: "Front",
  40551. image: {
  40552. source: "./media/characters/bailey-belfry/front.svg",
  40553. extra: 1240/1121,
  40554. bottom: 101/1341
  40555. }
  40556. },
  40557. },
  40558. [
  40559. {
  40560. name: "Normal",
  40561. height: math.unit(6 + 1/12, "feet"),
  40562. default: true
  40563. },
  40564. ]
  40565. ))
  40566. characterMakers.push(() => makeCharacter(
  40567. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40568. {
  40569. side: {
  40570. height: math.unit(4, "meters"),
  40571. weight: math.unit(250, "kg"),
  40572. name: "Side",
  40573. image: {
  40574. source: "./media/characters/blacky/side.svg",
  40575. extra: 1027/919,
  40576. bottom: 43/1070
  40577. }
  40578. },
  40579. maw: {
  40580. height: math.unit(1, "meters"),
  40581. name: "Maw",
  40582. image: {
  40583. source: "./media/characters/blacky/maw.svg"
  40584. }
  40585. },
  40586. paw: {
  40587. height: math.unit(1, "meters"),
  40588. name: "Paw",
  40589. image: {
  40590. source: "./media/characters/blacky/paw.svg"
  40591. }
  40592. },
  40593. },
  40594. [
  40595. {
  40596. name: "Normal",
  40597. height: math.unit(4, "meters"),
  40598. default: true
  40599. },
  40600. ]
  40601. ))
  40602. characterMakers.push(() => makeCharacter(
  40603. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40604. {
  40605. front: {
  40606. height: math.unit(170, "cm"),
  40607. weight: math.unit(66, "kg"),
  40608. name: "Front",
  40609. image: {
  40610. source: "./media/characters/thux-ei/front.svg",
  40611. extra: 1109/1011,
  40612. bottom: 8/1117
  40613. }
  40614. },
  40615. },
  40616. [
  40617. {
  40618. name: "Normal",
  40619. height: math.unit(170, "cm"),
  40620. default: true
  40621. },
  40622. ]
  40623. ))
  40624. characterMakers.push(() => makeCharacter(
  40625. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40626. {
  40627. front: {
  40628. height: math.unit(5, "feet"),
  40629. weight: math.unit(120, "lb"),
  40630. name: "Front",
  40631. image: {
  40632. source: "./media/characters/roxanne-voltaire/front.svg",
  40633. extra: 1901/1779,
  40634. bottom: 53/1954
  40635. }
  40636. },
  40637. },
  40638. [
  40639. {
  40640. name: "Normal",
  40641. height: math.unit(5, "feet"),
  40642. default: true
  40643. },
  40644. {
  40645. name: "Giant",
  40646. height: math.unit(50, "feet")
  40647. },
  40648. {
  40649. name: "Titan",
  40650. height: math.unit(500, "feet")
  40651. },
  40652. {
  40653. name: "Macro",
  40654. height: math.unit(5000, "feet")
  40655. },
  40656. {
  40657. name: "Megamacro",
  40658. height: math.unit(50000, "feet")
  40659. },
  40660. {
  40661. name: "Gigamacro",
  40662. height: math.unit(500000, "feet")
  40663. },
  40664. {
  40665. name: "Teramacro",
  40666. height: math.unit(5e6, "feet")
  40667. },
  40668. ]
  40669. ))
  40670. characterMakers.push(() => makeCharacter(
  40671. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40672. {
  40673. front: {
  40674. height: math.unit(6 + 2/12, "feet"),
  40675. name: "Front",
  40676. image: {
  40677. source: "./media/characters/squeaks/front.svg",
  40678. extra: 1823/1768,
  40679. bottom: 138/1961
  40680. }
  40681. },
  40682. },
  40683. [
  40684. {
  40685. name: "Micro",
  40686. height: math.unit(0.5, "inches")
  40687. },
  40688. {
  40689. name: "Normal",
  40690. height: math.unit(6 + 2/12, "feet"),
  40691. default: true
  40692. },
  40693. {
  40694. name: "Macro",
  40695. height: math.unit(600, "feet")
  40696. },
  40697. ]
  40698. ))
  40699. characterMakers.push(() => makeCharacter(
  40700. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40701. {
  40702. front: {
  40703. height: math.unit(1.72, "meters"),
  40704. name: "Front",
  40705. image: {
  40706. source: "./media/characters/archinger/front.svg",
  40707. extra: 1861/1675,
  40708. bottom: 125/1986
  40709. }
  40710. },
  40711. back: {
  40712. height: math.unit(1.72, "meters"),
  40713. name: "Back",
  40714. image: {
  40715. source: "./media/characters/archinger/back.svg",
  40716. extra: 1844/1701,
  40717. bottom: 104/1948
  40718. }
  40719. },
  40720. cock: {
  40721. height: math.unit(0.59, "feet"),
  40722. name: "Cock",
  40723. image: {
  40724. source: "./media/characters/archinger/cock.svg"
  40725. }
  40726. },
  40727. },
  40728. [
  40729. {
  40730. name: "Normal",
  40731. height: math.unit(1.72, "meters"),
  40732. default: true
  40733. },
  40734. {
  40735. name: "Macro",
  40736. height: math.unit(84, "meters")
  40737. },
  40738. {
  40739. name: "Macro+",
  40740. height: math.unit(112, "meters")
  40741. },
  40742. {
  40743. name: "Macro++",
  40744. height: math.unit(960, "meters")
  40745. },
  40746. {
  40747. name: "Macro+++",
  40748. height: math.unit(4, "km")
  40749. },
  40750. {
  40751. name: "Macro++++",
  40752. height: math.unit(48, "km")
  40753. },
  40754. {
  40755. name: "Macro+++++",
  40756. height: math.unit(4500, "km")
  40757. },
  40758. ]
  40759. ))
  40760. characterMakers.push(() => makeCharacter(
  40761. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40762. {
  40763. front: {
  40764. height: math.unit(5 + 5/12, "feet"),
  40765. name: "Front",
  40766. image: {
  40767. source: "./media/characters/alsnapz/front.svg",
  40768. extra: 1157/1065,
  40769. bottom: 42/1199
  40770. }
  40771. },
  40772. },
  40773. [
  40774. {
  40775. name: "Normal",
  40776. height: math.unit(5 + 5/12, "feet"),
  40777. default: true
  40778. },
  40779. ]
  40780. ))
  40781. characterMakers.push(() => makeCharacter(
  40782. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40783. {
  40784. side: {
  40785. height: math.unit(3.2, "earths"),
  40786. name: "Side",
  40787. image: {
  40788. source: "./media/characters/mag/side.svg",
  40789. extra: 1331/1008,
  40790. bottom: 52/1383
  40791. }
  40792. },
  40793. wing: {
  40794. height: math.unit(1.94, "earths"),
  40795. name: "Wing",
  40796. image: {
  40797. source: "./media/characters/mag/wing.svg"
  40798. }
  40799. },
  40800. dick: {
  40801. height: math.unit(1.8, "earths"),
  40802. name: "Dick",
  40803. image: {
  40804. source: "./media/characters/mag/dick.svg"
  40805. }
  40806. },
  40807. ass: {
  40808. height: math.unit(1.33, "earths"),
  40809. name: "Ass",
  40810. image: {
  40811. source: "./media/characters/mag/ass.svg"
  40812. }
  40813. },
  40814. head: {
  40815. height: math.unit(1.1, "earths"),
  40816. name: "Head",
  40817. image: {
  40818. source: "./media/characters/mag/head.svg"
  40819. }
  40820. },
  40821. maw: {
  40822. height: math.unit(1.62, "earths"),
  40823. name: "Maw",
  40824. image: {
  40825. source: "./media/characters/mag/maw.svg"
  40826. }
  40827. },
  40828. },
  40829. [
  40830. {
  40831. name: "Small",
  40832. height: math.unit(162, "feet")
  40833. },
  40834. {
  40835. name: "Normal",
  40836. height: math.unit(3.2, "earths"),
  40837. default: true
  40838. },
  40839. ]
  40840. ))
  40841. characterMakers.push(() => makeCharacter(
  40842. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40843. {
  40844. front: {
  40845. height: math.unit(512, "feet"),
  40846. weight: math.unit(63509, "tonnes"),
  40847. name: "Front",
  40848. image: {
  40849. source: "./media/characters/vorrel-harroc/front.svg",
  40850. extra: 1075/1063,
  40851. bottom: 62/1137
  40852. }
  40853. },
  40854. },
  40855. [
  40856. {
  40857. name: "Normal",
  40858. height: math.unit(10, "feet")
  40859. },
  40860. {
  40861. name: "Macro",
  40862. height: math.unit(512, "feet"),
  40863. default: true
  40864. },
  40865. {
  40866. name: "Megamacro",
  40867. height: math.unit(256, "miles")
  40868. },
  40869. {
  40870. name: "Gigamacro",
  40871. height: math.unit(4096, "miles")
  40872. },
  40873. ]
  40874. ))
  40875. characterMakers.push(() => makeCharacter(
  40876. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40877. {
  40878. side: {
  40879. height: math.unit(50, "feet"),
  40880. name: "Side",
  40881. image: {
  40882. source: "./media/characters/froimar/side.svg",
  40883. extra: 855/638,
  40884. bottom: 99/954
  40885. }
  40886. },
  40887. },
  40888. [
  40889. {
  40890. name: "Macro",
  40891. height: math.unit(50, "feet"),
  40892. default: true
  40893. },
  40894. ]
  40895. ))
  40896. characterMakers.push(() => makeCharacter(
  40897. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40898. {
  40899. front: {
  40900. height: math.unit(210, "miles"),
  40901. name: "Front",
  40902. image: {
  40903. source: "./media/characters/timothy/front.svg",
  40904. extra: 1007/943,
  40905. bottom: 62/1069
  40906. }
  40907. },
  40908. frontSkirt: {
  40909. height: math.unit(210, "miles"),
  40910. name: "Front (Skirt)",
  40911. image: {
  40912. source: "./media/characters/timothy/front-skirt.svg",
  40913. extra: 1007/943,
  40914. bottom: 62/1069
  40915. }
  40916. },
  40917. frontCoat: {
  40918. height: math.unit(210, "miles"),
  40919. name: "Front (Coat)",
  40920. image: {
  40921. source: "./media/characters/timothy/front-coat.svg",
  40922. extra: 1007/943,
  40923. bottom: 62/1069
  40924. }
  40925. },
  40926. },
  40927. [
  40928. {
  40929. name: "Macro",
  40930. height: math.unit(210, "miles"),
  40931. default: true
  40932. },
  40933. {
  40934. name: "Megamacro",
  40935. height: math.unit(210000, "miles")
  40936. },
  40937. ]
  40938. ))
  40939. characterMakers.push(() => makeCharacter(
  40940. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40941. {
  40942. front: {
  40943. height: math.unit(188, "feet"),
  40944. name: "Front",
  40945. image: {
  40946. source: "./media/characters/pyotr/front.svg",
  40947. extra: 1912/1826,
  40948. bottom: 18/1930
  40949. }
  40950. },
  40951. },
  40952. [
  40953. {
  40954. name: "Macro",
  40955. height: math.unit(188, "feet"),
  40956. default: true
  40957. },
  40958. {
  40959. name: "Megamacro",
  40960. height: math.unit(8, "miles")
  40961. },
  40962. ]
  40963. ))
  40964. characterMakers.push(() => makeCharacter(
  40965. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40966. {
  40967. side: {
  40968. height: math.unit(10, "feet"),
  40969. weight: math.unit(4500, "lb"),
  40970. name: "Side",
  40971. image: {
  40972. source: "./media/characters/ackart/side.svg",
  40973. extra: 1776/1668,
  40974. bottom: 116/1892
  40975. }
  40976. },
  40977. },
  40978. [
  40979. {
  40980. name: "Normal",
  40981. height: math.unit(10, "feet"),
  40982. default: true
  40983. },
  40984. ]
  40985. ))
  40986. characterMakers.push(() => makeCharacter(
  40987. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40988. {
  40989. side: {
  40990. height: math.unit(21, "feet"),
  40991. name: "Side",
  40992. image: {
  40993. source: "./media/characters/nolow/side.svg",
  40994. extra: 1484/1434,
  40995. bottom: 85/1569
  40996. }
  40997. },
  40998. sideErect: {
  40999. height: math.unit(21, "feet"),
  41000. name: "Side-erect",
  41001. image: {
  41002. source: "./media/characters/nolow/side-erect.svg",
  41003. extra: 1484/1434,
  41004. bottom: 85/1569
  41005. }
  41006. },
  41007. },
  41008. [
  41009. {
  41010. name: "Regular",
  41011. height: math.unit(12, "feet")
  41012. },
  41013. {
  41014. name: "Big Chee",
  41015. height: math.unit(21, "feet"),
  41016. default: true
  41017. },
  41018. ]
  41019. ))
  41020. characterMakers.push(() => makeCharacter(
  41021. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41022. {
  41023. front: {
  41024. height: math.unit(7, "feet"),
  41025. weight: math.unit(250, "lb"),
  41026. name: "Front",
  41027. image: {
  41028. source: "./media/characters/nines/front.svg",
  41029. extra: 1741/1607,
  41030. bottom: 41/1782
  41031. }
  41032. },
  41033. side: {
  41034. height: math.unit(7, "feet"),
  41035. weight: math.unit(250, "lb"),
  41036. name: "Side",
  41037. image: {
  41038. source: "./media/characters/nines/side.svg",
  41039. extra: 1854/1735,
  41040. bottom: 93/1947
  41041. }
  41042. },
  41043. back: {
  41044. height: math.unit(7, "feet"),
  41045. weight: math.unit(250, "lb"),
  41046. name: "Back",
  41047. image: {
  41048. source: "./media/characters/nines/back.svg",
  41049. extra: 1748/1615,
  41050. bottom: 20/1768
  41051. }
  41052. },
  41053. },
  41054. [
  41055. {
  41056. name: "Megamacro",
  41057. height: math.unit(99, "km"),
  41058. default: true
  41059. },
  41060. ]
  41061. ))
  41062. characterMakers.push(() => makeCharacter(
  41063. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41064. {
  41065. front: {
  41066. height: math.unit(5 + 10/12, "feet"),
  41067. weight: math.unit(210, "lb"),
  41068. name: "Front",
  41069. image: {
  41070. source: "./media/characters/zenith/front.svg",
  41071. extra: 1531/1452,
  41072. bottom: 198/1729
  41073. }
  41074. },
  41075. back: {
  41076. height: math.unit(5 + 10/12, "feet"),
  41077. weight: math.unit(210, "lb"),
  41078. name: "Back",
  41079. image: {
  41080. source: "./media/characters/zenith/back.svg",
  41081. extra: 1571/1487,
  41082. bottom: 75/1646
  41083. }
  41084. },
  41085. },
  41086. [
  41087. {
  41088. name: "Normal",
  41089. height: math.unit(5 + 10/12, "feet"),
  41090. default: true
  41091. }
  41092. ]
  41093. ))
  41094. characterMakers.push(() => makeCharacter(
  41095. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41096. {
  41097. front: {
  41098. height: math.unit(4, "feet"),
  41099. weight: math.unit(60, "lb"),
  41100. name: "Front",
  41101. image: {
  41102. source: "./media/characters/jasper/front.svg",
  41103. extra: 1450/1379,
  41104. bottom: 19/1469
  41105. }
  41106. },
  41107. },
  41108. [
  41109. {
  41110. name: "Normal",
  41111. height: math.unit(4, "feet"),
  41112. default: true
  41113. },
  41114. ]
  41115. ))
  41116. characterMakers.push(() => makeCharacter(
  41117. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41118. {
  41119. front: {
  41120. height: math.unit(6 + 5/12, "feet"),
  41121. weight: math.unit(290, "lb"),
  41122. name: "Front",
  41123. image: {
  41124. source: "./media/characters/tiberius-thyben/front.svg",
  41125. extra: 757/739,
  41126. bottom: 39/796
  41127. }
  41128. },
  41129. },
  41130. [
  41131. {
  41132. name: "Micro",
  41133. height: math.unit(1.5, "inches")
  41134. },
  41135. {
  41136. name: "Normal",
  41137. height: math.unit(6 + 5/12, "feet"),
  41138. default: true
  41139. },
  41140. {
  41141. name: "Macro",
  41142. height: math.unit(300, "feet")
  41143. },
  41144. ]
  41145. ))
  41146. characterMakers.push(() => makeCharacter(
  41147. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41148. {
  41149. front: {
  41150. height: math.unit(5 + 6/12, "feet"),
  41151. weight: math.unit(60, "kg"),
  41152. name: "Front",
  41153. image: {
  41154. source: "./media/characters/sabre/front.svg",
  41155. extra: 738/671,
  41156. bottom: 27/765
  41157. }
  41158. },
  41159. },
  41160. [
  41161. {
  41162. name: "Teeny",
  41163. height: math.unit(2, "inches")
  41164. },
  41165. {
  41166. name: "Smol",
  41167. height: math.unit(8, "inches")
  41168. },
  41169. {
  41170. name: "Normal",
  41171. height: math.unit(5 + 6/12, "feet"),
  41172. default: true
  41173. },
  41174. {
  41175. name: "Mini-Macro",
  41176. height: math.unit(15, "feet")
  41177. },
  41178. {
  41179. name: "Macro",
  41180. height: math.unit(50, "feet")
  41181. },
  41182. ]
  41183. ))
  41184. characterMakers.push(() => makeCharacter(
  41185. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41186. {
  41187. front: {
  41188. height: math.unit(6 + 4/12, "feet"),
  41189. weight: math.unit(170, "lb"),
  41190. name: "Front",
  41191. image: {
  41192. source: "./media/characters/charlie/front.svg",
  41193. extra: 1348/1228,
  41194. bottom: 15/1363
  41195. }
  41196. },
  41197. },
  41198. [
  41199. {
  41200. name: "Macro",
  41201. height: math.unit(1700, "meters"),
  41202. default: true
  41203. },
  41204. {
  41205. name: "MegaMacro",
  41206. height: math.unit(20400, "meters")
  41207. },
  41208. ]
  41209. ))
  41210. characterMakers.push(() => makeCharacter(
  41211. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41212. {
  41213. front: {
  41214. height: math.unit(6 + 3/12, "feet"),
  41215. weight: math.unit(185, "lb"),
  41216. name: "Front",
  41217. image: {
  41218. source: "./media/characters/susan-grant/front.svg",
  41219. extra: 1351/1327,
  41220. bottom: 26/1377
  41221. }
  41222. },
  41223. },
  41224. [
  41225. {
  41226. name: "Normal",
  41227. height: math.unit(6 + 3/12, "feet"),
  41228. default: true
  41229. },
  41230. {
  41231. name: "Macro",
  41232. height: math.unit(225, "feet")
  41233. },
  41234. {
  41235. name: "Macro+",
  41236. height: math.unit(900, "feet")
  41237. },
  41238. {
  41239. name: "MegaMacro",
  41240. height: math.unit(14400, "feet")
  41241. },
  41242. ]
  41243. ))
  41244. characterMakers.push(() => makeCharacter(
  41245. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41246. {
  41247. front: {
  41248. height: math.unit(5 + 4/12, "feet"),
  41249. weight: math.unit(110, "lb"),
  41250. name: "Front",
  41251. image: {
  41252. source: "./media/characters/axel-isanov/front.svg",
  41253. extra: 1096/1065,
  41254. bottom: 13/1109
  41255. }
  41256. },
  41257. },
  41258. [
  41259. {
  41260. name: "Normal",
  41261. height: math.unit(5 + 4/12, "feet"),
  41262. default: true
  41263. },
  41264. ]
  41265. ))
  41266. characterMakers.push(() => makeCharacter(
  41267. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41268. {
  41269. front: {
  41270. height: math.unit(9, "feet"),
  41271. weight: math.unit(467, "lb"),
  41272. name: "Front",
  41273. image: {
  41274. source: "./media/characters/necahual/front.svg",
  41275. extra: 920/873,
  41276. bottom: 26/946
  41277. }
  41278. },
  41279. back: {
  41280. height: math.unit(9, "feet"),
  41281. weight: math.unit(467, "lb"),
  41282. name: "Back",
  41283. image: {
  41284. source: "./media/characters/necahual/back.svg",
  41285. extra: 930/884,
  41286. bottom: 16/946
  41287. }
  41288. },
  41289. frontUnderwear: {
  41290. height: math.unit(9, "feet"),
  41291. weight: math.unit(467, "lb"),
  41292. name: "Front (Underwear)",
  41293. image: {
  41294. source: "./media/characters/necahual/front-underwear.svg",
  41295. extra: 920/873,
  41296. bottom: 26/946
  41297. }
  41298. },
  41299. frontDressed: {
  41300. height: math.unit(9, "feet"),
  41301. weight: math.unit(467, "lb"),
  41302. name: "Front (Dressed)",
  41303. image: {
  41304. source: "./media/characters/necahual/front-dressed.svg",
  41305. extra: 920/873,
  41306. bottom: 26/946
  41307. }
  41308. },
  41309. },
  41310. [
  41311. {
  41312. name: "Comprsesed",
  41313. height: math.unit(9, "feet")
  41314. },
  41315. {
  41316. name: "Natural",
  41317. height: math.unit(15, "feet"),
  41318. default: true
  41319. },
  41320. {
  41321. name: "Boosted",
  41322. height: math.unit(50, "feet")
  41323. },
  41324. {
  41325. name: "Boosted+",
  41326. height: math.unit(150, "feet")
  41327. },
  41328. {
  41329. name: "Max",
  41330. height: math.unit(500, "feet")
  41331. },
  41332. ]
  41333. ))
  41334. characterMakers.push(() => makeCharacter(
  41335. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41336. {
  41337. front: {
  41338. height: math.unit(22 + 1/12, "feet"),
  41339. weight: math.unit(3200, "lb"),
  41340. name: "Front",
  41341. image: {
  41342. source: "./media/characters/theo-acacia/front.svg",
  41343. extra: 1796/1741,
  41344. bottom: 83/1879
  41345. }
  41346. },
  41347. frontUnderwear: {
  41348. height: math.unit(22 + 1/12, "feet"),
  41349. weight: math.unit(3200, "lb"),
  41350. name: "Front (Underwear)",
  41351. image: {
  41352. source: "./media/characters/theo-acacia/front-underwear.svg",
  41353. extra: 1796/1741,
  41354. bottom: 83/1879
  41355. }
  41356. },
  41357. frontNude: {
  41358. height: math.unit(22 + 1/12, "feet"),
  41359. weight: math.unit(3200, "lb"),
  41360. name: "Front (Nude)",
  41361. image: {
  41362. source: "./media/characters/theo-acacia/front-nude.svg",
  41363. extra: 1796/1741,
  41364. bottom: 83/1879
  41365. }
  41366. },
  41367. },
  41368. [
  41369. {
  41370. name: "Normal",
  41371. height: math.unit(22 + 1/12, "feet"),
  41372. default: true
  41373. },
  41374. ]
  41375. ))
  41376. characterMakers.push(() => makeCharacter(
  41377. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41378. {
  41379. front: {
  41380. height: math.unit(20, "feet"),
  41381. name: "Front",
  41382. image: {
  41383. source: "./media/characters/astra/front.svg",
  41384. extra: 1850/1714,
  41385. bottom: 106/1956
  41386. }
  41387. },
  41388. frontUndressed: {
  41389. height: math.unit(20, "feet"),
  41390. name: "Front (Undressed)",
  41391. image: {
  41392. source: "./media/characters/astra/front-undressed.svg",
  41393. extra: 1926/1749,
  41394. bottom: 0/1926
  41395. }
  41396. },
  41397. hand: {
  41398. height: math.unit(1.53, "feet"),
  41399. name: "Hand",
  41400. image: {
  41401. source: "./media/characters/astra/hand.svg"
  41402. }
  41403. },
  41404. paw: {
  41405. height: math.unit(1.53, "feet"),
  41406. name: "Paw",
  41407. image: {
  41408. source: "./media/characters/astra/paw.svg"
  41409. }
  41410. },
  41411. },
  41412. [
  41413. {
  41414. name: "Smallest",
  41415. height: math.unit(20, "feet")
  41416. },
  41417. {
  41418. name: "Normal",
  41419. height: math.unit(1e9, "miles"),
  41420. default: true
  41421. },
  41422. {
  41423. name: "Larger",
  41424. height: math.unit(5, "multiverses")
  41425. },
  41426. {
  41427. name: "Largest",
  41428. height: math.unit(1e9, "multiverses")
  41429. },
  41430. ]
  41431. ))
  41432. characterMakers.push(() => makeCharacter(
  41433. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41434. {
  41435. front: {
  41436. height: math.unit(8, "feet"),
  41437. name: "Front",
  41438. image: {
  41439. source: "./media/characters/breanna/front.svg",
  41440. extra: 1912/1632,
  41441. bottom: 33/1945
  41442. }
  41443. },
  41444. },
  41445. [
  41446. {
  41447. name: "Smallest",
  41448. height: math.unit(8, "feet")
  41449. },
  41450. {
  41451. name: "Normal",
  41452. height: math.unit(1, "mile"),
  41453. default: true
  41454. },
  41455. {
  41456. name: "Maximum",
  41457. height: math.unit(1500000000000, "lightyears")
  41458. },
  41459. ]
  41460. ))
  41461. characterMakers.push(() => makeCharacter(
  41462. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41463. {
  41464. front: {
  41465. height: math.unit(5 + 11/12, "feet"),
  41466. weight: math.unit(155, "lb"),
  41467. name: "Front",
  41468. image: {
  41469. source: "./media/characters/cai/front.svg",
  41470. extra: 1823/1702,
  41471. bottom: 32/1855
  41472. }
  41473. },
  41474. back: {
  41475. height: math.unit(5 + 11/12, "feet"),
  41476. weight: math.unit(155, "lb"),
  41477. name: "Back",
  41478. image: {
  41479. source: "./media/characters/cai/back.svg",
  41480. extra: 1809/1708,
  41481. bottom: 31/1840
  41482. }
  41483. },
  41484. },
  41485. [
  41486. {
  41487. name: "Normal",
  41488. height: math.unit(5 + 11/12, "feet"),
  41489. default: true
  41490. },
  41491. {
  41492. name: "Big",
  41493. height: math.unit(15, "feet")
  41494. },
  41495. {
  41496. name: "Macro",
  41497. height: math.unit(200, "feet")
  41498. },
  41499. ]
  41500. ))
  41501. characterMakers.push(() => makeCharacter(
  41502. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41503. {
  41504. front: {
  41505. height: math.unit(5 + 6/12, "feet"),
  41506. weight: math.unit(160, "lb"),
  41507. name: "Front",
  41508. image: {
  41509. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41510. extra: 1227/1174,
  41511. bottom: 37/1264
  41512. }
  41513. },
  41514. },
  41515. [
  41516. {
  41517. name: "Macro",
  41518. height: math.unit(444, "meters"),
  41519. default: true
  41520. },
  41521. ]
  41522. ))
  41523. characterMakers.push(() => makeCharacter(
  41524. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41525. {
  41526. front: {
  41527. height: math.unit(18 + 7/12, "feet"),
  41528. name: "Front",
  41529. image: {
  41530. source: "./media/characters/rex/front.svg",
  41531. extra: 1941/1807,
  41532. bottom: 66/2007
  41533. }
  41534. },
  41535. back: {
  41536. height: math.unit(18 + 7/12, "feet"),
  41537. name: "Back",
  41538. image: {
  41539. source: "./media/characters/rex/back.svg",
  41540. extra: 1937/1822,
  41541. bottom: 42/1979
  41542. }
  41543. },
  41544. boot: {
  41545. height: math.unit(3.45, "feet"),
  41546. name: "Boot",
  41547. image: {
  41548. source: "./media/characters/rex/boot.svg"
  41549. }
  41550. },
  41551. paw: {
  41552. height: math.unit(4.17, "feet"),
  41553. name: "Paw",
  41554. image: {
  41555. source: "./media/characters/rex/paw.svg"
  41556. }
  41557. },
  41558. head: {
  41559. height: math.unit(6.728, "feet"),
  41560. name: "Head",
  41561. image: {
  41562. source: "./media/characters/rex/head.svg"
  41563. }
  41564. },
  41565. },
  41566. [
  41567. {
  41568. name: "Nano",
  41569. height: math.unit(18 + 7/12, "feet")
  41570. },
  41571. {
  41572. name: "Micro",
  41573. height: math.unit(1.5, "megameters")
  41574. },
  41575. {
  41576. name: "Normal",
  41577. height: math.unit(440, "megameters"),
  41578. default: true
  41579. },
  41580. {
  41581. name: "Macro",
  41582. height: math.unit(2.5, "gigameters")
  41583. },
  41584. {
  41585. name: "Gigamacro",
  41586. height: math.unit(2, "galaxies")
  41587. },
  41588. ]
  41589. ))
  41590. characterMakers.push(() => makeCharacter(
  41591. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41592. {
  41593. side: {
  41594. height: math.unit(32, "feet"),
  41595. weight: math.unit(250000, "lb"),
  41596. name: "Side",
  41597. image: {
  41598. source: "./media/characters/silverwing/side.svg",
  41599. extra: 1100/1019,
  41600. bottom: 204/1304
  41601. }
  41602. },
  41603. },
  41604. [
  41605. {
  41606. name: "Normal",
  41607. height: math.unit(32, "feet"),
  41608. default: true
  41609. },
  41610. ]
  41611. ))
  41612. characterMakers.push(() => makeCharacter(
  41613. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41614. {
  41615. front: {
  41616. height: math.unit(6 + 6/12, "feet"),
  41617. weight: math.unit(350, "lb"),
  41618. name: "Front",
  41619. image: {
  41620. source: "./media/characters/tristan-hawthorne/front.svg",
  41621. extra: 1159/1124,
  41622. bottom: 37/1196
  41623. }
  41624. },
  41625. },
  41626. [
  41627. {
  41628. name: "Normal",
  41629. height: math.unit(6 + 6/12, "feet"),
  41630. default: true
  41631. },
  41632. ]
  41633. ))
  41634. characterMakers.push(() => makeCharacter(
  41635. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41636. {
  41637. front: {
  41638. height: math.unit(5 + 11/12, "feet"),
  41639. weight: math.unit(190, "lb"),
  41640. name: "Front",
  41641. image: {
  41642. source: "./media/characters/mizu/front.svg",
  41643. extra: 1988/1788,
  41644. bottom: 14/2002
  41645. }
  41646. },
  41647. },
  41648. [
  41649. {
  41650. name: "Normal",
  41651. height: math.unit(5 + 11/12, "feet"),
  41652. default: true
  41653. },
  41654. ]
  41655. ))
  41656. characterMakers.push(() => makeCharacter(
  41657. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41658. {
  41659. front: {
  41660. height: math.unit(1.7, "feet"),
  41661. weight: math.unit(50, "lb"),
  41662. name: "Front",
  41663. image: {
  41664. source: "./media/characters/dechroma/front.svg",
  41665. extra: 1095/859,
  41666. bottom: 64/1159
  41667. }
  41668. },
  41669. },
  41670. [
  41671. {
  41672. name: "Normal",
  41673. height: math.unit(1.7, "feet"),
  41674. default: true
  41675. },
  41676. ]
  41677. ))
  41678. characterMakers.push(() => makeCharacter(
  41679. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41680. {
  41681. side: {
  41682. height: math.unit(30, "feet"),
  41683. name: "Side",
  41684. image: {
  41685. source: "./media/characters/veluren-thanazel/side.svg",
  41686. extra: 1611/633,
  41687. bottom: 118/1729
  41688. }
  41689. },
  41690. front: {
  41691. height: math.unit(30, "feet"),
  41692. name: "Front",
  41693. image: {
  41694. source: "./media/characters/veluren-thanazel/front.svg",
  41695. extra: 1486/636,
  41696. bottom: 238/1724
  41697. }
  41698. },
  41699. head: {
  41700. height: math.unit(21.4, "feet"),
  41701. name: "Head",
  41702. image: {
  41703. source: "./media/characters/veluren-thanazel/head.svg"
  41704. }
  41705. },
  41706. genitals: {
  41707. height: math.unit(19.4, "feet"),
  41708. name: "Genitals",
  41709. image: {
  41710. source: "./media/characters/veluren-thanazel/genitals.svg"
  41711. }
  41712. },
  41713. },
  41714. [
  41715. {
  41716. name: "Social",
  41717. height: math.unit(6, "feet")
  41718. },
  41719. {
  41720. name: "Play",
  41721. height: math.unit(12, "feet")
  41722. },
  41723. {
  41724. name: "True",
  41725. height: math.unit(30, "feet"),
  41726. default: true
  41727. },
  41728. ]
  41729. ))
  41730. characterMakers.push(() => makeCharacter(
  41731. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41732. {
  41733. front: {
  41734. height: math.unit(7 + 6/12, "feet"),
  41735. weight: math.unit(500, "kg"),
  41736. name: "Front",
  41737. image: {
  41738. source: "./media/characters/arcturas/front.svg",
  41739. extra: 1700/1500,
  41740. bottom: 145/1845
  41741. }
  41742. },
  41743. },
  41744. [
  41745. {
  41746. name: "Normal",
  41747. height: math.unit(7 + 6/12, "feet"),
  41748. default: true
  41749. },
  41750. ]
  41751. ))
  41752. characterMakers.push(() => makeCharacter(
  41753. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41754. {
  41755. side: {
  41756. height: math.unit(6, "feet"),
  41757. weight: math.unit(2, "tons"),
  41758. name: "Side",
  41759. image: {
  41760. source: "./media/characters/vitaen/side.svg",
  41761. extra: 1157/617,
  41762. bottom: 122/1279
  41763. }
  41764. },
  41765. },
  41766. [
  41767. {
  41768. name: "Normal",
  41769. height: math.unit(6, "feet"),
  41770. default: true
  41771. },
  41772. ]
  41773. ))
  41774. characterMakers.push(() => makeCharacter(
  41775. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41776. {
  41777. front: {
  41778. height: math.unit(19, "feet"),
  41779. name: "Front",
  41780. image: {
  41781. source: "./media/characters/fia-dreamweaver/front.svg",
  41782. extra: 1630/1504,
  41783. bottom: 25/1655
  41784. }
  41785. },
  41786. },
  41787. [
  41788. {
  41789. name: "Normal",
  41790. height: math.unit(19, "feet"),
  41791. default: true
  41792. },
  41793. ]
  41794. ))
  41795. characterMakers.push(() => makeCharacter(
  41796. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41797. {
  41798. front: {
  41799. height: math.unit(5 + 4/12, "feet"),
  41800. name: "Front",
  41801. image: {
  41802. source: "./media/characters/artan/front.svg",
  41803. extra: 1618/1535,
  41804. bottom: 46/1664
  41805. }
  41806. },
  41807. back: {
  41808. height: math.unit(5 + 4/12, "feet"),
  41809. name: "Back",
  41810. image: {
  41811. source: "./media/characters/artan/back.svg",
  41812. extra: 1618/1543,
  41813. bottom: 31/1649
  41814. }
  41815. },
  41816. },
  41817. [
  41818. {
  41819. name: "Normal",
  41820. height: math.unit(5 + 4/12, "feet"),
  41821. default: true
  41822. },
  41823. ]
  41824. ))
  41825. characterMakers.push(() => makeCharacter(
  41826. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41827. {
  41828. side: {
  41829. height: math.unit(182, "cm"),
  41830. weight: math.unit(1000, "lb"),
  41831. name: "Side",
  41832. image: {
  41833. source: "./media/characters/silver-dragon/side.svg",
  41834. extra: 710/287,
  41835. bottom: 88/798
  41836. }
  41837. },
  41838. },
  41839. [
  41840. {
  41841. name: "Normal",
  41842. height: math.unit(182, "cm"),
  41843. default: true
  41844. },
  41845. ]
  41846. ))
  41847. characterMakers.push(() => makeCharacter(
  41848. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41849. {
  41850. side: {
  41851. height: math.unit(6 + 6/12, "feet"),
  41852. weight: math.unit(1.5, "tons"),
  41853. name: "Side",
  41854. image: {
  41855. source: "./media/characters/zephyr/side.svg",
  41856. extra: 1433/586,
  41857. bottom: 109/1542
  41858. }
  41859. },
  41860. },
  41861. [
  41862. {
  41863. name: "Normal",
  41864. height: math.unit(6 + 6/12, "feet"),
  41865. default: true
  41866. },
  41867. ]
  41868. ))
  41869. characterMakers.push(() => makeCharacter(
  41870. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41871. {
  41872. side: {
  41873. height: math.unit(1, "feet"),
  41874. name: "Side",
  41875. image: {
  41876. source: "./media/characters/vixye/side.svg",
  41877. extra: 632/541,
  41878. bottom: 0/632
  41879. }
  41880. },
  41881. },
  41882. [
  41883. {
  41884. name: "Normal",
  41885. height: math.unit(1, "feet"),
  41886. default: true
  41887. },
  41888. {
  41889. name: "True",
  41890. height: math.unit(1e15, "multiverses")
  41891. },
  41892. ]
  41893. ))
  41894. characterMakers.push(() => makeCharacter(
  41895. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41896. {
  41897. front: {
  41898. height: math.unit(8 + 2/12, "feet"),
  41899. weight: math.unit(650, "lb"),
  41900. name: "Front",
  41901. image: {
  41902. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41903. extra: 1174/1137,
  41904. bottom: 82/1256
  41905. }
  41906. },
  41907. back: {
  41908. height: math.unit(8 + 2/12, "feet"),
  41909. weight: math.unit(650, "lb"),
  41910. name: "Back",
  41911. image: {
  41912. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41913. extra: 1204/1157,
  41914. bottom: 46/1250
  41915. }
  41916. },
  41917. },
  41918. [
  41919. {
  41920. name: "Wildform",
  41921. height: math.unit(8 + 2/12, "feet"),
  41922. default: true
  41923. },
  41924. ]
  41925. ))
  41926. characterMakers.push(() => makeCharacter(
  41927. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41928. {
  41929. front: {
  41930. height: math.unit(18, "feet"),
  41931. name: "Front",
  41932. image: {
  41933. source: "./media/characters/cyphin/front.svg",
  41934. extra: 970/886,
  41935. bottom: 42/1012
  41936. }
  41937. },
  41938. back: {
  41939. height: math.unit(18, "feet"),
  41940. name: "Back",
  41941. image: {
  41942. source: "./media/characters/cyphin/back.svg",
  41943. extra: 1009/894,
  41944. bottom: 24/1033
  41945. }
  41946. },
  41947. head: {
  41948. height: math.unit(5.05, "feet"),
  41949. name: "Head",
  41950. image: {
  41951. source: "./media/characters/cyphin/head.svg"
  41952. }
  41953. },
  41954. tailbud: {
  41955. height: math.unit(5, "feet"),
  41956. name: "Tailbud",
  41957. image: {
  41958. source: "./media/characters/cyphin/tailbud.svg"
  41959. }
  41960. },
  41961. },
  41962. [
  41963. ]
  41964. ))
  41965. characterMakers.push(() => makeCharacter(
  41966. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41967. {
  41968. side: {
  41969. height: math.unit(10, "feet"),
  41970. weight: math.unit(6, "tons"),
  41971. name: "Side",
  41972. image: {
  41973. source: "./media/characters/raijin/side.svg",
  41974. extra: 1529/613,
  41975. bottom: 337/1866
  41976. }
  41977. },
  41978. },
  41979. [
  41980. {
  41981. name: "Normal",
  41982. height: math.unit(10, "feet"),
  41983. default: true
  41984. },
  41985. ]
  41986. ))
  41987. characterMakers.push(() => makeCharacter(
  41988. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41989. {
  41990. side: {
  41991. height: math.unit(9, "feet"),
  41992. name: "Side",
  41993. image: {
  41994. source: "./media/characters/nilghais/side.svg",
  41995. extra: 1047/744,
  41996. bottom: 91/1138
  41997. }
  41998. },
  41999. head: {
  42000. height: math.unit(3.14, "feet"),
  42001. name: "Head",
  42002. image: {
  42003. source: "./media/characters/nilghais/head.svg"
  42004. }
  42005. },
  42006. mouth: {
  42007. height: math.unit(4.6, "feet"),
  42008. name: "Mouth",
  42009. image: {
  42010. source: "./media/characters/nilghais/mouth.svg"
  42011. }
  42012. },
  42013. wings: {
  42014. height: math.unit(24, "feet"),
  42015. name: "Wings",
  42016. image: {
  42017. source: "./media/characters/nilghais/wings.svg"
  42018. }
  42019. },
  42020. ass: {
  42021. height: math.unit(6.12, "feet"),
  42022. name: "Ass",
  42023. image: {
  42024. source: "./media/characters/nilghais/ass.svg"
  42025. }
  42026. },
  42027. },
  42028. [
  42029. {
  42030. name: "Normal",
  42031. height: math.unit(9, "feet"),
  42032. default: true
  42033. },
  42034. ]
  42035. ))
  42036. characterMakers.push(() => makeCharacter(
  42037. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42038. {
  42039. regular: {
  42040. height: math.unit(16 + 2/12, "feet"),
  42041. weight: math.unit(2300, "lb"),
  42042. name: "Regular",
  42043. image: {
  42044. source: "./media/characters/zolgar/regular.svg",
  42045. extra: 1246/1004,
  42046. bottom: 124/1370
  42047. }
  42048. },
  42049. boxers: {
  42050. height: math.unit(16 + 2/12, "feet"),
  42051. weight: math.unit(2300, "lb"),
  42052. name: "Boxers",
  42053. image: {
  42054. source: "./media/characters/zolgar/boxers.svg",
  42055. extra: 1246/1004,
  42056. bottom: 124/1370
  42057. }
  42058. },
  42059. armored: {
  42060. height: math.unit(16 + 2/12, "feet"),
  42061. weight: math.unit(2300, "lb"),
  42062. name: "Armored",
  42063. image: {
  42064. source: "./media/characters/zolgar/armored.svg",
  42065. extra: 1246/1004,
  42066. bottom: 124/1370
  42067. }
  42068. },
  42069. goth: {
  42070. height: math.unit(16 + 2/12, "feet"),
  42071. weight: math.unit(2300, "lb"),
  42072. name: "Goth",
  42073. image: {
  42074. source: "./media/characters/zolgar/goth.svg",
  42075. extra: 1246/1004,
  42076. bottom: 124/1370
  42077. }
  42078. },
  42079. },
  42080. [
  42081. {
  42082. name: "Shrunken Down",
  42083. height: math.unit(9 + 2/12, "feet")
  42084. },
  42085. {
  42086. name: "Normal",
  42087. height: math.unit(16 + 2/12, "feet"),
  42088. default: true
  42089. },
  42090. ]
  42091. ))
  42092. characterMakers.push(() => makeCharacter(
  42093. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42094. {
  42095. front: {
  42096. height: math.unit(6, "feet"),
  42097. weight: math.unit(168, "lb"),
  42098. name: "Front",
  42099. image: {
  42100. source: "./media/characters/luca/front.svg",
  42101. extra: 841/667,
  42102. bottom: 102/943
  42103. }
  42104. },
  42105. },
  42106. [
  42107. {
  42108. name: "Normal",
  42109. height: math.unit(6, "feet"),
  42110. default: true
  42111. },
  42112. ]
  42113. ))
  42114. characterMakers.push(() => makeCharacter(
  42115. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42116. {
  42117. side: {
  42118. height: math.unit(7 + 3/12, "feet"),
  42119. weight: math.unit(312, "lb"),
  42120. name: "Side",
  42121. image: {
  42122. source: "./media/characters/zezo/side.svg",
  42123. extra: 1192/1067,
  42124. bottom: 63/1255
  42125. }
  42126. },
  42127. },
  42128. [
  42129. {
  42130. name: "Normal",
  42131. height: math.unit(7 + 3/12, "feet"),
  42132. default: true
  42133. },
  42134. ]
  42135. ))
  42136. characterMakers.push(() => makeCharacter(
  42137. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42138. {
  42139. front: {
  42140. height: math.unit(5 + 5/12, "feet"),
  42141. weight: math.unit(170, "lb"),
  42142. name: "Front",
  42143. image: {
  42144. source: "./media/characters/mayso/front.svg",
  42145. extra: 1215/1108,
  42146. bottom: 16/1231
  42147. }
  42148. },
  42149. },
  42150. [
  42151. {
  42152. name: "Normal",
  42153. height: math.unit(5 + 5/12, "feet"),
  42154. default: true
  42155. },
  42156. ]
  42157. ))
  42158. characterMakers.push(() => makeCharacter(
  42159. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42160. {
  42161. front: {
  42162. height: math.unit(4 + 3/12, "feet"),
  42163. weight: math.unit(80, "lb"),
  42164. name: "Front",
  42165. image: {
  42166. source: "./media/characters/hess/front.svg",
  42167. extra: 1200/1123,
  42168. bottom: 16/1216
  42169. }
  42170. },
  42171. },
  42172. [
  42173. {
  42174. name: "Normal",
  42175. height: math.unit(4 + 3/12, "feet"),
  42176. default: true
  42177. },
  42178. ]
  42179. ))
  42180. characterMakers.push(() => makeCharacter(
  42181. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42182. {
  42183. front: {
  42184. height: math.unit(1.9, "meters"),
  42185. name: "Front",
  42186. image: {
  42187. source: "./media/characters/ashgar/front.svg",
  42188. extra: 1177/1146,
  42189. bottom: 99/1276
  42190. }
  42191. },
  42192. back: {
  42193. height: math.unit(1.9, "meters"),
  42194. name: "Back",
  42195. image: {
  42196. source: "./media/characters/ashgar/back.svg",
  42197. extra: 1201/1183,
  42198. bottom: 53/1254
  42199. }
  42200. },
  42201. feral: {
  42202. height: math.unit(1.4, "meters"),
  42203. name: "Feral",
  42204. image: {
  42205. source: "./media/characters/ashgar/feral.svg",
  42206. extra: 370/345,
  42207. bottom: 45/415
  42208. }
  42209. },
  42210. },
  42211. [
  42212. {
  42213. name: "Normal",
  42214. height: math.unit(1.9, "meters"),
  42215. default: true
  42216. },
  42217. ]
  42218. ))
  42219. characterMakers.push(() => makeCharacter(
  42220. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42221. {
  42222. regular: {
  42223. height: math.unit(6, "feet"),
  42224. weight: math.unit(220, "lb"),
  42225. name: "Regular",
  42226. image: {
  42227. source: "./media/characters/phillip/regular.svg",
  42228. extra: 1373/1277,
  42229. bottom: 75/1448
  42230. }
  42231. },
  42232. dressed: {
  42233. height: math.unit(6, "feet"),
  42234. weight: math.unit(220, "lb"),
  42235. name: "Dressed",
  42236. image: {
  42237. source: "./media/characters/phillip/dressed.svg",
  42238. extra: 1373/1277,
  42239. bottom: 75/1448
  42240. }
  42241. },
  42242. paw: {
  42243. height: math.unit(1.44, "feet"),
  42244. name: "Paw",
  42245. image: {
  42246. source: "./media/characters/phillip/paw.svg"
  42247. }
  42248. },
  42249. },
  42250. [
  42251. {
  42252. name: "Normal",
  42253. height: math.unit(6, "feet"),
  42254. default: true
  42255. },
  42256. ]
  42257. ))
  42258. characterMakers.push(() => makeCharacter(
  42259. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42260. {
  42261. side: {
  42262. height: math.unit(42, "feet"),
  42263. name: "Side",
  42264. image: {
  42265. source: "./media/characters/uvula/side.svg",
  42266. extra: 683/586,
  42267. bottom: 60/743
  42268. }
  42269. },
  42270. front: {
  42271. height: math.unit(42, "feet"),
  42272. name: "Front",
  42273. image: {
  42274. source: "./media/characters/uvula/front.svg",
  42275. extra: 705/613,
  42276. bottom: 54/759
  42277. }
  42278. },
  42279. maw: {
  42280. height: math.unit(23.5, "feet"),
  42281. name: "Maw",
  42282. image: {
  42283. source: "./media/characters/uvula/maw.svg"
  42284. }
  42285. },
  42286. },
  42287. [
  42288. {
  42289. name: "Original Size",
  42290. height: math.unit(14, "inches")
  42291. },
  42292. {
  42293. name: "Human Size",
  42294. height: math.unit(6, "feet")
  42295. },
  42296. {
  42297. name: "Big",
  42298. height: math.unit(42, "feet"),
  42299. default: true
  42300. },
  42301. {
  42302. name: "Bigger",
  42303. height: math.unit(100, "feet")
  42304. },
  42305. ]
  42306. ))
  42307. characterMakers.push(() => makeCharacter(
  42308. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42309. {
  42310. front: {
  42311. height: math.unit(5 + 11/12, "feet"),
  42312. name: "Front",
  42313. image: {
  42314. source: "./media/characters/lannah/front.svg",
  42315. extra: 1208/1113,
  42316. bottom: 97/1305
  42317. }
  42318. },
  42319. },
  42320. [
  42321. {
  42322. name: "Normal",
  42323. height: math.unit(5 + 11/12, "feet"),
  42324. default: true
  42325. },
  42326. ]
  42327. ))
  42328. characterMakers.push(() => makeCharacter(
  42329. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42330. {
  42331. front: {
  42332. height: math.unit(6 + 3/12, "feet"),
  42333. weight: math.unit(3.5, "tons"),
  42334. name: "Front",
  42335. image: {
  42336. source: "./media/characters/emberflame/front.svg",
  42337. extra: 1198/672,
  42338. bottom: 82/1280
  42339. }
  42340. },
  42341. side: {
  42342. height: math.unit(6 + 3/12, "feet"),
  42343. weight: math.unit(3.5, "tons"),
  42344. name: "Side",
  42345. image: {
  42346. source: "./media/characters/emberflame/side.svg",
  42347. extra: 938/527,
  42348. bottom: 56/994
  42349. }
  42350. },
  42351. },
  42352. [
  42353. {
  42354. name: "Normal",
  42355. height: math.unit(6 + 3/12, "feet"),
  42356. default: true
  42357. },
  42358. ]
  42359. ))
  42360. characterMakers.push(() => makeCharacter(
  42361. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42362. {
  42363. side: {
  42364. height: math.unit(17.5, "feet"),
  42365. weight: math.unit(35, "tons"),
  42366. name: "Side",
  42367. image: {
  42368. source: "./media/characters/sophie-ambrose/side.svg",
  42369. extra: 1573/1242,
  42370. bottom: 71/1644
  42371. }
  42372. },
  42373. maw: {
  42374. height: math.unit(7.4, "feet"),
  42375. name: "Maw",
  42376. image: {
  42377. source: "./media/characters/sophie-ambrose/maw.svg"
  42378. }
  42379. },
  42380. },
  42381. [
  42382. {
  42383. name: "Normal",
  42384. height: math.unit(17.5, "feet"),
  42385. default: true
  42386. },
  42387. ]
  42388. ))
  42389. characterMakers.push(() => makeCharacter(
  42390. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42391. {
  42392. front: {
  42393. height: math.unit(280, "feet"),
  42394. weight: math.unit(550, "tons"),
  42395. name: "Front",
  42396. image: {
  42397. source: "./media/characters/king-mugi/front.svg",
  42398. extra: 1102/947,
  42399. bottom: 104/1206
  42400. }
  42401. },
  42402. },
  42403. [
  42404. {
  42405. name: "King Mugi",
  42406. height: math.unit(280, "feet"),
  42407. default: true
  42408. },
  42409. ]
  42410. ))
  42411. characterMakers.push(() => makeCharacter(
  42412. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42413. {
  42414. front: {
  42415. height: math.unit(64, "meters"),
  42416. name: "Front",
  42417. image: {
  42418. source: "./media/characters/nova-fox/front.svg",
  42419. extra: 1310/1246,
  42420. bottom: 65/1375
  42421. }
  42422. },
  42423. },
  42424. [
  42425. {
  42426. name: "Macro",
  42427. height: math.unit(64, "meters"),
  42428. default: true
  42429. },
  42430. ]
  42431. ))
  42432. characterMakers.push(() => makeCharacter(
  42433. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42434. {
  42435. front: {
  42436. height: math.unit(6 + 3/12, "feet"),
  42437. weight: math.unit(170, "lb"),
  42438. name: "Front",
  42439. image: {
  42440. source: "./media/characters/sam-bat/front.svg",
  42441. extra: 1601/1411,
  42442. bottom: 125/1726
  42443. }
  42444. },
  42445. back: {
  42446. height: math.unit(6 + 3/12, "feet"),
  42447. weight: math.unit(170, "lb"),
  42448. name: "Back",
  42449. image: {
  42450. source: "./media/characters/sam-bat/back.svg",
  42451. extra: 1577/1405,
  42452. bottom: 58/1635
  42453. }
  42454. },
  42455. },
  42456. [
  42457. {
  42458. name: "Normal",
  42459. height: math.unit(6 + 3/12, "feet"),
  42460. default: true
  42461. },
  42462. ]
  42463. ))
  42464. characterMakers.push(() => makeCharacter(
  42465. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42466. {
  42467. front: {
  42468. height: math.unit(59, "feet"),
  42469. weight: math.unit(40000, "lb"),
  42470. name: "Front",
  42471. image: {
  42472. source: "./media/characters/inari/front.svg",
  42473. extra: 1884/1350,
  42474. bottom: 95/1979
  42475. }
  42476. },
  42477. },
  42478. [
  42479. {
  42480. name: "Gigantamax",
  42481. height: math.unit(59, "feet"),
  42482. default: true
  42483. },
  42484. ]
  42485. ))
  42486. characterMakers.push(() => makeCharacter(
  42487. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42488. {
  42489. front: {
  42490. height: math.unit(5 + 8/12, "feet"),
  42491. name: "Front",
  42492. image: {
  42493. source: "./media/characters/elizabeth/front.svg",
  42494. extra: 1395/1298,
  42495. bottom: 54/1449
  42496. }
  42497. },
  42498. mouth: {
  42499. height: math.unit(1.97, "feet"),
  42500. name: "Mouth",
  42501. image: {
  42502. source: "./media/characters/elizabeth/mouth.svg"
  42503. }
  42504. },
  42505. foot: {
  42506. height: math.unit(1.17, "feet"),
  42507. name: "Foot",
  42508. image: {
  42509. source: "./media/characters/elizabeth/foot.svg"
  42510. }
  42511. },
  42512. },
  42513. [
  42514. {
  42515. name: "Normal",
  42516. height: math.unit(5 + 8/12, "feet"),
  42517. default: true
  42518. },
  42519. {
  42520. name: "Minimacro",
  42521. height: math.unit(18, "feet")
  42522. },
  42523. {
  42524. name: "Macro",
  42525. height: math.unit(180, "feet")
  42526. },
  42527. ]
  42528. ))
  42529. characterMakers.push(() => makeCharacter(
  42530. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42531. {
  42532. front: {
  42533. height: math.unit(5 + 2/12, "feet"),
  42534. name: "Front",
  42535. image: {
  42536. source: "./media/characters/october-gossamer/front.svg",
  42537. extra: 505/454,
  42538. bottom: 7/512
  42539. }
  42540. },
  42541. back: {
  42542. height: math.unit(5 + 2/12, "feet"),
  42543. name: "Back",
  42544. image: {
  42545. source: "./media/characters/october-gossamer/back.svg",
  42546. extra: 501/454,
  42547. bottom: 11/512
  42548. }
  42549. },
  42550. },
  42551. [
  42552. {
  42553. name: "Normal",
  42554. height: math.unit(5 + 2/12, "feet"),
  42555. default: true
  42556. },
  42557. ]
  42558. ))
  42559. characterMakers.push(() => makeCharacter(
  42560. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42561. {
  42562. front: {
  42563. height: math.unit(5, "feet"),
  42564. name: "Front",
  42565. image: {
  42566. source: "./media/characters/epiglottis/front.svg",
  42567. extra: 923/849,
  42568. bottom: 17/940
  42569. }
  42570. },
  42571. },
  42572. [
  42573. {
  42574. name: "Original Size",
  42575. height: math.unit(10, "inches")
  42576. },
  42577. {
  42578. name: "Human Size",
  42579. height: math.unit(5, "feet"),
  42580. default: true
  42581. },
  42582. {
  42583. name: "Big",
  42584. height: math.unit(25, "feet")
  42585. },
  42586. {
  42587. name: "Bigger",
  42588. height: math.unit(50, "feet")
  42589. },
  42590. {
  42591. name: "oh lawd",
  42592. height: math.unit(75, "feet")
  42593. },
  42594. ]
  42595. ))
  42596. characterMakers.push(() => makeCharacter(
  42597. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42598. {
  42599. front: {
  42600. height: math.unit(2 + 4/12, "feet"),
  42601. weight: math.unit(60, "lb"),
  42602. name: "Front",
  42603. image: {
  42604. source: "./media/characters/lerm/front.svg",
  42605. extra: 796/790,
  42606. bottom: 79/875
  42607. }
  42608. },
  42609. },
  42610. [
  42611. {
  42612. name: "Normal",
  42613. height: math.unit(2 + 4/12, "feet"),
  42614. default: true
  42615. },
  42616. ]
  42617. ))
  42618. characterMakers.push(() => makeCharacter(
  42619. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42620. {
  42621. front: {
  42622. height: math.unit(5.5, "feet"),
  42623. weight: math.unit(130, "lb"),
  42624. name: "Front",
  42625. image: {
  42626. source: "./media/characters/xena-nebadon/front.svg",
  42627. extra: 1828/1730,
  42628. bottom: 79/1907
  42629. }
  42630. },
  42631. },
  42632. [
  42633. {
  42634. name: "Tiny Puppy",
  42635. height: math.unit(3, "inches")
  42636. },
  42637. {
  42638. name: "Normal",
  42639. height: math.unit(5.5, "feet"),
  42640. default: true
  42641. },
  42642. {
  42643. name: "Lotta Lady",
  42644. height: math.unit(12, "feet")
  42645. },
  42646. {
  42647. name: "Pretty Big",
  42648. height: math.unit(100, "feet")
  42649. },
  42650. {
  42651. name: "Big",
  42652. height: math.unit(500, "feet")
  42653. },
  42654. {
  42655. name: "Skyscraper Toys",
  42656. height: math.unit(2500, "feet")
  42657. },
  42658. {
  42659. name: "Plane Catcher",
  42660. height: math.unit(8, "miles")
  42661. },
  42662. {
  42663. name: "Planet Toys",
  42664. height: math.unit(15, "earths")
  42665. },
  42666. {
  42667. name: "Stardust",
  42668. height: math.unit(0.25, "galaxies")
  42669. },
  42670. {
  42671. name: "Snacks",
  42672. height: math.unit(70, "universes")
  42673. },
  42674. ]
  42675. ))
  42676. characterMakers.push(() => makeCharacter(
  42677. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42678. {
  42679. front: {
  42680. height: math.unit(1.6, "meters"),
  42681. weight: math.unit(60, "kg"),
  42682. name: "Front",
  42683. image: {
  42684. source: "./media/characters/bounty/front.svg",
  42685. extra: 1426/1308,
  42686. bottom: 15/1441
  42687. }
  42688. },
  42689. back: {
  42690. height: math.unit(1.6, "meters"),
  42691. weight: math.unit(60, "kg"),
  42692. name: "Back",
  42693. image: {
  42694. source: "./media/characters/bounty/back.svg",
  42695. extra: 1417/1307,
  42696. bottom: 8/1425
  42697. }
  42698. },
  42699. },
  42700. [
  42701. {
  42702. name: "Normal",
  42703. height: math.unit(1.6, "meters"),
  42704. default: true
  42705. },
  42706. {
  42707. name: "Macro",
  42708. height: math.unit(300, "meters")
  42709. },
  42710. ]
  42711. ))
  42712. characterMakers.push(() => makeCharacter(
  42713. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42714. {
  42715. front: {
  42716. height: math.unit(2 + 8/12, "feet"),
  42717. weight: math.unit(15, "lb"),
  42718. name: "Front",
  42719. image: {
  42720. source: "./media/characters/mochi/front.svg",
  42721. extra: 1022/852,
  42722. bottom: 435/1457
  42723. }
  42724. },
  42725. back: {
  42726. height: math.unit(2 + 8/12, "feet"),
  42727. weight: math.unit(15, "lb"),
  42728. name: "Back",
  42729. image: {
  42730. source: "./media/characters/mochi/back.svg",
  42731. extra: 1335/1119,
  42732. bottom: 39/1374
  42733. }
  42734. },
  42735. bird: {
  42736. height: math.unit(2 + 8/12, "feet"),
  42737. weight: math.unit(15, "lb"),
  42738. name: "Bird",
  42739. image: {
  42740. source: "./media/characters/mochi/bird.svg",
  42741. extra: 1251/1113,
  42742. bottom: 178/1429
  42743. }
  42744. },
  42745. kaiju: {
  42746. height: math.unit(154, "feet"),
  42747. weight: math.unit(1e7, "lb"),
  42748. name: "Kaiju",
  42749. image: {
  42750. source: "./media/characters/mochi/kaiju.svg",
  42751. extra: 460/324,
  42752. bottom: 40/500
  42753. }
  42754. },
  42755. head: {
  42756. height: math.unit(1.21, "feet"),
  42757. name: "Head",
  42758. image: {
  42759. source: "./media/characters/mochi/head.svg"
  42760. }
  42761. },
  42762. alternateTail: {
  42763. height: math.unit(2 + 8/12, "feet"),
  42764. weight: math.unit(45, "lb"),
  42765. name: "Alternate Tail",
  42766. image: {
  42767. source: "./media/characters/mochi/alternate-tail.svg",
  42768. extra: 139/76,
  42769. bottom: 45/184
  42770. }
  42771. },
  42772. },
  42773. [
  42774. {
  42775. name: "Micro",
  42776. height: math.unit(2, "inches")
  42777. },
  42778. {
  42779. name: "Normal",
  42780. height: math.unit(2 + 8/12, "feet"),
  42781. default: true
  42782. },
  42783. {
  42784. name: "Macro",
  42785. height: math.unit(106, "feet")
  42786. },
  42787. ]
  42788. ))
  42789. characterMakers.push(() => makeCharacter(
  42790. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42791. {
  42792. front: {
  42793. height: math.unit(5.67, "feet"),
  42794. weight: math.unit(135, "lb"),
  42795. name: "Front",
  42796. image: {
  42797. source: "./media/characters/sarel/front.svg",
  42798. extra: 865/788,
  42799. bottom: 97/962
  42800. }
  42801. },
  42802. back: {
  42803. height: math.unit(5.67, "feet"),
  42804. weight: math.unit(135, "lb"),
  42805. name: "Back",
  42806. image: {
  42807. source: "./media/characters/sarel/back.svg",
  42808. extra: 857/777,
  42809. bottom: 32/889
  42810. }
  42811. },
  42812. chozoan: {
  42813. height: math.unit(5.67, "feet"),
  42814. weight: math.unit(135, "lb"),
  42815. name: "Chozoan",
  42816. image: {
  42817. source: "./media/characters/sarel/chozoan.svg",
  42818. extra: 865/788,
  42819. bottom: 97/962
  42820. }
  42821. },
  42822. current: {
  42823. height: math.unit(5.67, "feet"),
  42824. weight: math.unit(135, "lb"),
  42825. name: "Current",
  42826. image: {
  42827. source: "./media/characters/sarel/current.svg",
  42828. extra: 865/788,
  42829. bottom: 97/962
  42830. }
  42831. },
  42832. head: {
  42833. height: math.unit(1.77, "feet"),
  42834. name: "Head",
  42835. image: {
  42836. source: "./media/characters/sarel/head.svg"
  42837. }
  42838. },
  42839. claws: {
  42840. height: math.unit(1.8, "feet"),
  42841. name: "Claws",
  42842. image: {
  42843. source: "./media/characters/sarel/claws.svg"
  42844. }
  42845. },
  42846. clawsAlt: {
  42847. height: math.unit(1.8, "feet"),
  42848. name: "Claws-alt",
  42849. image: {
  42850. source: "./media/characters/sarel/claws-alt.svg"
  42851. }
  42852. },
  42853. },
  42854. [
  42855. {
  42856. name: "Normal",
  42857. height: math.unit(5.67, "feet"),
  42858. default: true
  42859. },
  42860. ]
  42861. ))
  42862. characterMakers.push(() => makeCharacter(
  42863. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42864. {
  42865. front: {
  42866. height: math.unit(5500, "feet"),
  42867. name: "Front",
  42868. image: {
  42869. source: "./media/characters/alyonia/front.svg",
  42870. extra: 1200/1135,
  42871. bottom: 29/1229
  42872. }
  42873. },
  42874. back: {
  42875. height: math.unit(5500, "feet"),
  42876. name: "Back",
  42877. image: {
  42878. source: "./media/characters/alyonia/back.svg",
  42879. extra: 1205/1138,
  42880. bottom: 10/1215
  42881. }
  42882. },
  42883. },
  42884. [
  42885. {
  42886. name: "Small",
  42887. height: math.unit(10, "feet")
  42888. },
  42889. {
  42890. name: "Macro",
  42891. height: math.unit(500, "feet")
  42892. },
  42893. {
  42894. name: "Mega Macro",
  42895. height: math.unit(5500, "feet"),
  42896. default: true
  42897. },
  42898. {
  42899. name: "Mega Macro+",
  42900. height: math.unit(500000, "feet")
  42901. },
  42902. {
  42903. name: "Giga Macro",
  42904. height: math.unit(3000, "miles")
  42905. },
  42906. {
  42907. name: "Tera Macro",
  42908. height: math.unit(2.8e6, "miles")
  42909. },
  42910. {
  42911. name: "Galactic",
  42912. height: math.unit(120000, "lightyears")
  42913. },
  42914. ]
  42915. ))
  42916. characterMakers.push(() => makeCharacter(
  42917. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42918. {
  42919. werewolf: {
  42920. height: math.unit(8, "feet"),
  42921. weight: math.unit(425, "lb"),
  42922. name: "Werewolf",
  42923. image: {
  42924. source: "./media/characters/autumn/werewolf.svg",
  42925. extra: 2154/2031,
  42926. bottom: 160/2314
  42927. }
  42928. },
  42929. human: {
  42930. height: math.unit(5 + 8/12, "feet"),
  42931. weight: math.unit(150, "lb"),
  42932. name: "Human",
  42933. image: {
  42934. source: "./media/characters/autumn/human.svg",
  42935. extra: 1200/1149,
  42936. bottom: 30/1230
  42937. }
  42938. },
  42939. },
  42940. [
  42941. {
  42942. name: "Normal",
  42943. height: math.unit(8, "feet"),
  42944. default: true
  42945. },
  42946. ]
  42947. ))
  42948. characterMakers.push(() => makeCharacter(
  42949. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42950. {
  42951. front: {
  42952. height: math.unit(8 + 5/12, "feet"),
  42953. weight: math.unit(825, "lb"),
  42954. name: "Front",
  42955. image: {
  42956. source: "./media/characters/cobalt-charizard/front.svg",
  42957. extra: 1268/1155,
  42958. bottom: 122/1390
  42959. }
  42960. },
  42961. side: {
  42962. height: math.unit(8 + 5/12, "feet"),
  42963. weight: math.unit(825, "lb"),
  42964. name: "Side",
  42965. image: {
  42966. source: "./media/characters/cobalt-charizard/side.svg",
  42967. extra: 1348/1257,
  42968. bottom: 58/1406
  42969. }
  42970. },
  42971. gMax: {
  42972. height: math.unit(134 + 11/12, "feet"),
  42973. name: "G-Max",
  42974. image: {
  42975. source: "./media/characters/cobalt-charizard/g-max.svg",
  42976. extra: 1835/1541,
  42977. bottom: 151/1986
  42978. }
  42979. },
  42980. },
  42981. [
  42982. {
  42983. name: "Normal",
  42984. height: math.unit(8 + 5/12, "feet"),
  42985. default: true
  42986. },
  42987. ]
  42988. ))
  42989. characterMakers.push(() => makeCharacter(
  42990. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42991. {
  42992. front: {
  42993. height: math.unit(6 + 3/12, "feet"),
  42994. weight: math.unit(210, "lb"),
  42995. name: "Front",
  42996. image: {
  42997. source: "./media/characters/stella/front.svg",
  42998. extra: 3549/3335,
  42999. bottom: 51/3600
  43000. }
  43001. },
  43002. },
  43003. [
  43004. {
  43005. name: "Normal",
  43006. height: math.unit(6 + 3/12, "feet"),
  43007. default: true
  43008. },
  43009. ]
  43010. ))
  43011. characterMakers.push(() => makeCharacter(
  43012. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43013. {
  43014. front: {
  43015. height: math.unit(5, "feet"),
  43016. weight: math.unit(90, "lb"),
  43017. name: "Front",
  43018. image: {
  43019. source: "./media/characters/riley-bishop/front.svg",
  43020. extra: 1450/1428,
  43021. bottom: 152/1602
  43022. }
  43023. },
  43024. },
  43025. [
  43026. {
  43027. name: "Normal",
  43028. height: math.unit(5, "feet"),
  43029. default: true
  43030. },
  43031. ]
  43032. ))
  43033. characterMakers.push(() => makeCharacter(
  43034. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43035. {
  43036. side: {
  43037. height: math.unit(8 + 2/12, "feet"),
  43038. weight: math.unit(500, "kg"),
  43039. name: "Side",
  43040. image: {
  43041. source: "./media/characters/theo-arcanine/side.svg",
  43042. extra: 1342/1074,
  43043. bottom: 111/1453
  43044. }
  43045. },
  43046. },
  43047. [
  43048. {
  43049. name: "Normal",
  43050. height: math.unit(8 + 2/12, "feet"),
  43051. default: true
  43052. },
  43053. ]
  43054. ))
  43055. characterMakers.push(() => makeCharacter(
  43056. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43057. {
  43058. front: {
  43059. height: math.unit(4, "feet"),
  43060. name: "Front",
  43061. image: {
  43062. source: "./media/characters/kali/front.svg",
  43063. extra: 1921/1357,
  43064. bottom: 70/1991
  43065. }
  43066. },
  43067. },
  43068. [
  43069. {
  43070. name: "Normal",
  43071. height: math.unit(4, "feet"),
  43072. default: true
  43073. },
  43074. {
  43075. name: "Macro",
  43076. height: math.unit(32, "meters")
  43077. },
  43078. {
  43079. name: "Macro+",
  43080. height: math.unit(150, "meters")
  43081. },
  43082. {
  43083. name: "Megamacro",
  43084. height: math.unit(7500, "meters")
  43085. },
  43086. {
  43087. name: "Megamacro+",
  43088. height: math.unit(80, "kilometers")
  43089. },
  43090. ]
  43091. ))
  43092. characterMakers.push(() => makeCharacter(
  43093. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43094. {
  43095. side: {
  43096. height: math.unit(5 + 11/12, "feet"),
  43097. weight: math.unit(236, "lb"),
  43098. name: "Side",
  43099. image: {
  43100. source: "./media/characters/gapp/side.svg",
  43101. extra: 775/340,
  43102. bottom: 58/833
  43103. }
  43104. },
  43105. mouth: {
  43106. height: math.unit(2.98, "feet"),
  43107. name: "Mouth",
  43108. image: {
  43109. source: "./media/characters/gapp/mouth.svg"
  43110. }
  43111. },
  43112. },
  43113. [
  43114. {
  43115. name: "Normal",
  43116. height: math.unit(5 + 1/12, "feet"),
  43117. default: true
  43118. },
  43119. ]
  43120. ))
  43121. characterMakers.push(() => makeCharacter(
  43122. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43123. {
  43124. front: {
  43125. height: math.unit(6, "feet"),
  43126. name: "Front",
  43127. image: {
  43128. source: "./media/characters/persephone/front.svg",
  43129. extra: 1895/1717,
  43130. bottom: 96/1991
  43131. }
  43132. },
  43133. back: {
  43134. height: math.unit(6, "feet"),
  43135. name: "Back",
  43136. image: {
  43137. source: "./media/characters/persephone/back.svg",
  43138. extra: 1868/1679,
  43139. bottom: 26/1894
  43140. }
  43141. },
  43142. casual: {
  43143. height: math.unit(6, "feet"),
  43144. name: "Casual",
  43145. image: {
  43146. source: "./media/characters/persephone/casual.svg",
  43147. extra: 1713/1541,
  43148. bottom: 76/1789
  43149. }
  43150. },
  43151. },
  43152. [
  43153. {
  43154. name: "Human Size",
  43155. height: math.unit(6, "feet")
  43156. },
  43157. {
  43158. name: "Big Steppy",
  43159. height: math.unit(600, "meters"),
  43160. default: true
  43161. },
  43162. {
  43163. name: "Galaxy Brain",
  43164. height: math.unit(1, "zettameter")
  43165. },
  43166. ]
  43167. ))
  43168. characterMakers.push(() => makeCharacter(
  43169. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43170. {
  43171. front: {
  43172. height: math.unit(1.85, "meters"),
  43173. name: "Front",
  43174. image: {
  43175. source: "./media/characters/riley-foxthing/front.svg",
  43176. extra: 1495/1354,
  43177. bottom: 122/1617
  43178. }
  43179. },
  43180. frontAlt: {
  43181. height: math.unit(1.85, "meters"),
  43182. name: "Front (Alt)",
  43183. image: {
  43184. source: "./media/characters/riley-foxthing/front-alt.svg",
  43185. extra: 1572/1389,
  43186. bottom: 116/1688
  43187. }
  43188. },
  43189. },
  43190. [
  43191. {
  43192. name: "Normal Sized",
  43193. height: math.unit(1.85, "meters"),
  43194. default: true
  43195. },
  43196. {
  43197. name: "Quite Sizable",
  43198. height: math.unit(5, "meters")
  43199. },
  43200. {
  43201. name: "Rather Large",
  43202. height: math.unit(20, "meters")
  43203. },
  43204. {
  43205. name: "Macro",
  43206. height: math.unit(450, "meters")
  43207. },
  43208. {
  43209. name: "Giga",
  43210. height: math.unit(5, "km")
  43211. },
  43212. ]
  43213. ))
  43214. characterMakers.push(() => makeCharacter(
  43215. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43216. {
  43217. front: {
  43218. height: math.unit(6, "feet"),
  43219. weight: math.unit(200, "lb"),
  43220. name: "Front",
  43221. image: {
  43222. source: "./media/characters/blizzard/front.svg",
  43223. extra: 1136/990,
  43224. bottom: 136/1272
  43225. }
  43226. },
  43227. back: {
  43228. height: math.unit(6, "feet"),
  43229. weight: math.unit(200, "lb"),
  43230. name: "Back",
  43231. image: {
  43232. source: "./media/characters/blizzard/back.svg",
  43233. extra: 1175/1034,
  43234. bottom: 97/1272
  43235. }
  43236. },
  43237. sitting: {
  43238. height: math.unit(3.725, "feet"),
  43239. weight: math.unit(200, "lb"),
  43240. name: "Sitting",
  43241. image: {
  43242. source: "./media/characters/blizzard/sitting.svg",
  43243. extra: 581/485,
  43244. bottom: 90/671
  43245. }
  43246. },
  43247. frontWizard: {
  43248. height: math.unit(7.9, "feet"),
  43249. weight: math.unit(200, "lb"),
  43250. name: "Front (Wizard)",
  43251. image: {
  43252. source: "./media/characters/blizzard/front-wizard.svg"
  43253. }
  43254. },
  43255. backWizard: {
  43256. height: math.unit(7.9, "feet"),
  43257. weight: math.unit(200, "lb"),
  43258. name: "Back (Wizard)",
  43259. image: {
  43260. source: "./media/characters/blizzard/back-wizard.svg"
  43261. }
  43262. },
  43263. frontNsfw: {
  43264. height: math.unit(6, "feet"),
  43265. weight: math.unit(200, "lb"),
  43266. name: "Front (NSFW)",
  43267. image: {
  43268. source: "./media/characters/blizzard/front-nsfw.svg",
  43269. extra: 1136/990,
  43270. bottom: 136/1272
  43271. }
  43272. },
  43273. backNsfw: {
  43274. height: math.unit(6, "feet"),
  43275. weight: math.unit(200, "lb"),
  43276. name: "Back (NSFW)",
  43277. image: {
  43278. source: "./media/characters/blizzard/back-nsfw.svg",
  43279. extra: 1175/1034,
  43280. bottom: 97/1272
  43281. }
  43282. },
  43283. sittingNsfw: {
  43284. height: math.unit(3.725, "feet"),
  43285. weight: math.unit(200, "lb"),
  43286. name: "Sitting (NSFW)",
  43287. image: {
  43288. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43289. extra: 581/485,
  43290. bottom: 90/671
  43291. }
  43292. },
  43293. wizardFrontNsfw: {
  43294. height: math.unit(7.9, "feet"),
  43295. weight: math.unit(200, "lb"),
  43296. name: "Wizard (Front, NSFW)",
  43297. image: {
  43298. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43299. }
  43300. },
  43301. },
  43302. [
  43303. {
  43304. name: "Normal",
  43305. height: math.unit(6, "feet"),
  43306. default: true
  43307. },
  43308. ]
  43309. ))
  43310. characterMakers.push(() => makeCharacter(
  43311. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43312. {
  43313. front: {
  43314. height: math.unit(5 + 2/12, "feet"),
  43315. name: "Front",
  43316. image: {
  43317. source: "./media/characters/lumi/front.svg",
  43318. extra: 1328/1268,
  43319. bottom: 103/1431
  43320. }
  43321. },
  43322. back: {
  43323. height: math.unit(5 + 2/12, "feet"),
  43324. name: "Back",
  43325. image: {
  43326. source: "./media/characters/lumi/back.svg",
  43327. extra: 1381/1327,
  43328. bottom: 43/1424
  43329. }
  43330. },
  43331. },
  43332. [
  43333. {
  43334. name: "Normal",
  43335. height: math.unit(5 + 2/12, "feet"),
  43336. default: true
  43337. },
  43338. ]
  43339. ))
  43340. characterMakers.push(() => makeCharacter(
  43341. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43342. {
  43343. front: {
  43344. height: math.unit(5 + 9/12, "feet"),
  43345. name: "Front",
  43346. image: {
  43347. source: "./media/characters/aliya-cotton/front.svg",
  43348. extra: 577/564,
  43349. bottom: 29/606
  43350. }
  43351. },
  43352. },
  43353. [
  43354. {
  43355. name: "Normal",
  43356. height: math.unit(5 + 9/12, "feet"),
  43357. default: true
  43358. },
  43359. ]
  43360. ))
  43361. characterMakers.push(() => makeCharacter(
  43362. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43363. {
  43364. front: {
  43365. height: math.unit(2.7, "meters"),
  43366. weight: math.unit(25000, "lb"),
  43367. name: "Front",
  43368. image: {
  43369. source: "./media/characters/noah-luxray/front.svg",
  43370. extra: 1644/825,
  43371. bottom: 339/1983
  43372. }
  43373. },
  43374. side: {
  43375. height: math.unit(2.97, "meters"),
  43376. weight: math.unit(25000, "lb"),
  43377. name: "Side",
  43378. image: {
  43379. source: "./media/characters/noah-luxray/side.svg",
  43380. extra: 1319/650,
  43381. bottom: 163/1482
  43382. }
  43383. },
  43384. dick: {
  43385. height: math.unit(7.4, "feet"),
  43386. weight: math.unit(2500, "lb"),
  43387. name: "Dick",
  43388. image: {
  43389. source: "./media/characters/noah-luxray/dick.svg"
  43390. }
  43391. },
  43392. dickAlt: {
  43393. height: math.unit(10.83, "feet"),
  43394. weight: math.unit(2500, "lb"),
  43395. name: "Dick-alt",
  43396. image: {
  43397. source: "./media/characters/noah-luxray/dick-alt.svg"
  43398. }
  43399. },
  43400. },
  43401. [
  43402. {
  43403. name: "BIG",
  43404. height: math.unit(2.7, "meters"),
  43405. default: true
  43406. },
  43407. ]
  43408. ))
  43409. characterMakers.push(() => makeCharacter(
  43410. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43411. {
  43412. standing: {
  43413. height: math.unit(183, "cm"),
  43414. weight: math.unit(68, "kg"),
  43415. name: "Standing",
  43416. image: {
  43417. source: "./media/characters/arion/standing.svg",
  43418. extra: 1869/1807,
  43419. bottom: 93/1962
  43420. }
  43421. },
  43422. reclining: {
  43423. height: math.unit(70.5, "cm"),
  43424. weight: math.unit(68, "lb"),
  43425. name: "Reclining",
  43426. image: {
  43427. source: "./media/characters/arion/reclining.svg",
  43428. extra: 937/870,
  43429. bottom: 63/1000
  43430. }
  43431. },
  43432. },
  43433. [
  43434. {
  43435. name: "Colossus Size, Low",
  43436. height: math.unit(33, "meters"),
  43437. default: true
  43438. },
  43439. {
  43440. name: "Colossus Size, Mid",
  43441. height: math.unit(52, "meters")
  43442. },
  43443. {
  43444. name: "Colossus Size, High",
  43445. height: math.unit(60, "meters")
  43446. },
  43447. {
  43448. name: "Titan Size, Low",
  43449. height: math.unit(91, "meters"),
  43450. },
  43451. {
  43452. name: "Titan Size, Mid",
  43453. height: math.unit(122, "meters")
  43454. },
  43455. {
  43456. name: "Titan Size, High",
  43457. height: math.unit(162, "meters")
  43458. },
  43459. ]
  43460. ))
  43461. characterMakers.push(() => makeCharacter(
  43462. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43463. {
  43464. front: {
  43465. height: math.unit(53, "meters"),
  43466. name: "Front",
  43467. image: {
  43468. source: "./media/characters/stellar-marbey/front.svg",
  43469. extra: 1913/1805,
  43470. bottom: 92/2005
  43471. }
  43472. },
  43473. back: {
  43474. height: math.unit(53, "meters"),
  43475. name: "Back",
  43476. image: {
  43477. source: "./media/characters/stellar-marbey/back.svg",
  43478. extra: 1960/1851,
  43479. bottom: 28/1988
  43480. }
  43481. },
  43482. mouth: {
  43483. height: math.unit(3.5, "meters"),
  43484. name: "Mouth",
  43485. image: {
  43486. source: "./media/characters/stellar-marbey/mouth.svg"
  43487. }
  43488. },
  43489. },
  43490. [
  43491. {
  43492. name: "Macro",
  43493. height: math.unit(53, "meters"),
  43494. default: true
  43495. },
  43496. ]
  43497. ))
  43498. characterMakers.push(() => makeCharacter(
  43499. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43500. {
  43501. front: {
  43502. height: math.unit(8 + 1/12, "feet"),
  43503. weight: math.unit(233, "lb"),
  43504. name: "Front",
  43505. image: {
  43506. source: "./media/characters/matsu/front.svg",
  43507. extra: 832/772,
  43508. bottom: 40/872
  43509. }
  43510. },
  43511. back: {
  43512. height: math.unit(8 + 1/12, "feet"),
  43513. weight: math.unit(233, "lb"),
  43514. name: "Back",
  43515. image: {
  43516. source: "./media/characters/matsu/back.svg",
  43517. extra: 839/780,
  43518. bottom: 47/886
  43519. }
  43520. },
  43521. },
  43522. [
  43523. {
  43524. name: "Normal",
  43525. height: math.unit(8 + 1/12, "feet"),
  43526. default: true
  43527. },
  43528. ]
  43529. ))
  43530. characterMakers.push(() => makeCharacter(
  43531. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43532. {
  43533. front: {
  43534. height: math.unit(4, "feet"),
  43535. weight: math.unit(148, "lb"),
  43536. name: "Front",
  43537. image: {
  43538. source: "./media/characters/thiz/front.svg",
  43539. extra: 1913/1748,
  43540. bottom: 62/1975
  43541. }
  43542. },
  43543. },
  43544. [
  43545. {
  43546. name: "Normal",
  43547. height: math.unit(4, "feet"),
  43548. default: true
  43549. },
  43550. ]
  43551. ))
  43552. characterMakers.push(() => makeCharacter(
  43553. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43554. {
  43555. front: {
  43556. height: math.unit(7 + 6/12, "feet"),
  43557. weight: math.unit(267, "lb"),
  43558. name: "Front",
  43559. image: {
  43560. source: "./media/characters/marcel/front.svg",
  43561. extra: 1221/1096,
  43562. bottom: 76/1297
  43563. }
  43564. },
  43565. },
  43566. [
  43567. {
  43568. name: "Normal",
  43569. height: math.unit(7 + 6/12, "feet"),
  43570. default: true
  43571. },
  43572. ]
  43573. ))
  43574. characterMakers.push(() => makeCharacter(
  43575. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43576. {
  43577. side: {
  43578. height: math.unit(42, "meters"),
  43579. name: "Side",
  43580. image: {
  43581. source: "./media/characters/flake/side.svg",
  43582. extra: 1525/1306,
  43583. bottom: 209/1734
  43584. }
  43585. },
  43586. },
  43587. [
  43588. {
  43589. name: "Normal",
  43590. height: math.unit(42, "meters"),
  43591. default: true
  43592. },
  43593. ]
  43594. ))
  43595. characterMakers.push(() => makeCharacter(
  43596. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43597. {
  43598. dressed: {
  43599. height: math.unit(6 + 4/12, "feet"),
  43600. weight: math.unit(520, "lb"),
  43601. name: "Dressed",
  43602. image: {
  43603. source: "./media/characters/someonne/dressed.svg",
  43604. extra: 1020/1010,
  43605. bottom: 178/1198
  43606. }
  43607. },
  43608. undressed: {
  43609. height: math.unit(6 + 4/12, "feet"),
  43610. weight: math.unit(520, "lb"),
  43611. name: "Undressed",
  43612. image: {
  43613. source: "./media/characters/someonne/undressed.svg",
  43614. extra: 1019/1014,
  43615. bottom: 169/1188
  43616. }
  43617. },
  43618. },
  43619. [
  43620. {
  43621. name: "Normal",
  43622. height: math.unit(6 + 4/12, "feet"),
  43623. default: true
  43624. },
  43625. ]
  43626. ))
  43627. characterMakers.push(() => makeCharacter(
  43628. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43629. {
  43630. front: {
  43631. height: math.unit(3, "feet"),
  43632. weight: math.unit(30, "lb"),
  43633. name: "Front",
  43634. image: {
  43635. source: "./media/characters/till/front.svg",
  43636. extra: 892/823,
  43637. bottom: 55/947
  43638. }
  43639. },
  43640. },
  43641. [
  43642. {
  43643. name: "Normal",
  43644. height: math.unit(3, "feet"),
  43645. default: true
  43646. },
  43647. ]
  43648. ))
  43649. characterMakers.push(() => makeCharacter(
  43650. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43651. {
  43652. front: {
  43653. height: math.unit(9 + 8/12, "feet"),
  43654. weight: math.unit(800, "lb"),
  43655. name: "Front",
  43656. image: {
  43657. source: "./media/characters/sydney-heki/front.svg",
  43658. extra: 1360/1300,
  43659. bottom: 22/1382
  43660. }
  43661. },
  43662. back: {
  43663. height: math.unit(9 + 8/12, "feet"),
  43664. weight: math.unit(800, "lb"),
  43665. name: "Back",
  43666. image: {
  43667. source: "./media/characters/sydney-heki/back.svg",
  43668. extra: 1356/1293,
  43669. bottom: 12/1368
  43670. }
  43671. },
  43672. frontDressed: {
  43673. height: math.unit(9 + 8/12, "feet"),
  43674. weight: math.unit(800, "lb"),
  43675. name: "Front-dressed",
  43676. image: {
  43677. source: "./media/characters/sydney-heki/front-dressed.svg",
  43678. extra: 1360/1300,
  43679. bottom: 22/1382
  43680. }
  43681. },
  43682. },
  43683. [
  43684. {
  43685. name: "Normal",
  43686. height: math.unit(9 + 8/12, "feet"),
  43687. default: true
  43688. },
  43689. {
  43690. name: "Macro",
  43691. height: math.unit(500, "feet")
  43692. },
  43693. {
  43694. name: "Megamacro",
  43695. height: math.unit(3.6, "miles")
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43701. {
  43702. front: {
  43703. height: math.unit(200, "cm"),
  43704. weight: math.unit(250, "lb"),
  43705. name: "Front",
  43706. image: {
  43707. source: "./media/characters/fowler-karlsson/front.svg",
  43708. extra: 897/845,
  43709. bottom: 123/1020
  43710. }
  43711. },
  43712. back: {
  43713. height: math.unit(200, "cm"),
  43714. weight: math.unit(250, "lb"),
  43715. name: "Back",
  43716. image: {
  43717. source: "./media/characters/fowler-karlsson/back.svg",
  43718. extra: 999/944,
  43719. bottom: 26/1025
  43720. }
  43721. },
  43722. dick: {
  43723. height: math.unit(1.92, "feet"),
  43724. weight: math.unit(150, "lb"),
  43725. name: "Dick",
  43726. image: {
  43727. source: "./media/characters/fowler-karlsson/dick.svg"
  43728. }
  43729. },
  43730. },
  43731. [
  43732. {
  43733. name: "Normal",
  43734. height: math.unit(200, "cm"),
  43735. default: true
  43736. },
  43737. {
  43738. name: "Smaller Macro",
  43739. height: math.unit(90, "m")
  43740. },
  43741. {
  43742. name: "Macro",
  43743. height: math.unit(150, "m")
  43744. },
  43745. {
  43746. name: "Bigger Macro",
  43747. height: math.unit(300, "m")
  43748. },
  43749. ]
  43750. ))
  43751. characterMakers.push(() => makeCharacter(
  43752. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43753. {
  43754. side: {
  43755. height: math.unit(8 + 2/12, "feet"),
  43756. weight: math.unit(1, "tonne"),
  43757. name: "Side",
  43758. image: {
  43759. source: "./media/characters/rylide/side.svg",
  43760. extra: 1318/1034,
  43761. bottom: 106/1424
  43762. }
  43763. },
  43764. sitting: {
  43765. height: math.unit(303, "cm"),
  43766. weight: math.unit(1, "tonne"),
  43767. name: "Sitting",
  43768. image: {
  43769. source: "./media/characters/rylide/sitting.svg",
  43770. extra: 1303/1103,
  43771. bottom: 36/1339
  43772. }
  43773. },
  43774. },
  43775. [
  43776. {
  43777. name: "Normal",
  43778. height: math.unit(8 + 2/12, "feet"),
  43779. default: true
  43780. },
  43781. ]
  43782. ))
  43783. characterMakers.push(() => makeCharacter(
  43784. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43785. {
  43786. front: {
  43787. height: math.unit(5 + 10/12, "feet"),
  43788. weight: math.unit(160, "lb"),
  43789. name: "Front",
  43790. image: {
  43791. source: "./media/characters/pudask/front.svg",
  43792. extra: 1616/1590,
  43793. bottom: 161/1777
  43794. }
  43795. },
  43796. },
  43797. [
  43798. {
  43799. name: "Ferret Height",
  43800. height: math.unit(2 + 5/12, "feet")
  43801. },
  43802. {
  43803. name: "Canon Height",
  43804. height: math.unit(5 + 10/12, "feet"),
  43805. default: true
  43806. },
  43807. ]
  43808. ))
  43809. characterMakers.push(() => makeCharacter(
  43810. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43811. {
  43812. front: {
  43813. height: math.unit(3 + 6/12, "feet"),
  43814. weight: math.unit(60, "lb"),
  43815. name: "Front",
  43816. image: {
  43817. source: "./media/characters/ramita/front.svg",
  43818. extra: 1402/1232,
  43819. bottom: 62/1464
  43820. }
  43821. },
  43822. dressed: {
  43823. height: math.unit(3 + 6/12, "feet"),
  43824. weight: math.unit(60, "lb"),
  43825. name: "Dressed",
  43826. image: {
  43827. source: "./media/characters/ramita/dressed.svg",
  43828. extra: 1534/1249,
  43829. bottom: 50/1584
  43830. }
  43831. },
  43832. },
  43833. [
  43834. {
  43835. name: "Normal",
  43836. height: math.unit(3 + 6/12, "feet"),
  43837. default: true
  43838. },
  43839. ]
  43840. ))
  43841. characterMakers.push(() => makeCharacter(
  43842. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43843. {
  43844. front: {
  43845. height: math.unit(8, "feet"),
  43846. name: "Front",
  43847. image: {
  43848. source: "./media/characters/ark/front.svg",
  43849. extra: 772/693,
  43850. bottom: 45/817
  43851. }
  43852. },
  43853. },
  43854. [
  43855. {
  43856. name: "Normal",
  43857. height: math.unit(8, "feet"),
  43858. default: true
  43859. },
  43860. ]
  43861. ))
  43862. characterMakers.push(() => makeCharacter(
  43863. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43864. {
  43865. front: {
  43866. height: math.unit(6, "feet"),
  43867. weight: math.unit(250, "lb"),
  43868. volume: math.unit(5/8, "gallons"),
  43869. name: "Front",
  43870. image: {
  43871. source: "./media/characters/ludwig-horn/front.svg",
  43872. extra: 1782/1635,
  43873. bottom: 96/1878
  43874. }
  43875. },
  43876. back: {
  43877. height: math.unit(6, "feet"),
  43878. weight: math.unit(250, "lb"),
  43879. volume: math.unit(5/8, "gallons"),
  43880. name: "Back",
  43881. image: {
  43882. source: "./media/characters/ludwig-horn/back.svg",
  43883. extra: 1874/1729,
  43884. bottom: 27/1901
  43885. }
  43886. },
  43887. dick: {
  43888. height: math.unit(1.05, "feet"),
  43889. weight: math.unit(15, "lb"),
  43890. volume: math.unit(5/8, "gallons"),
  43891. name: "Dick",
  43892. image: {
  43893. source: "./media/characters/ludwig-horn/dick.svg"
  43894. }
  43895. },
  43896. },
  43897. [
  43898. {
  43899. name: "Small",
  43900. height: math.unit(6, "feet")
  43901. },
  43902. {
  43903. name: "Typical",
  43904. height: math.unit(12, "feet"),
  43905. default: true
  43906. },
  43907. {
  43908. name: "Building",
  43909. height: math.unit(80, "feet")
  43910. },
  43911. {
  43912. name: "Town",
  43913. height: math.unit(800, "feet")
  43914. },
  43915. {
  43916. name: "Kingdom",
  43917. height: math.unit(80000, "feet")
  43918. },
  43919. {
  43920. name: "Planet",
  43921. height: math.unit(8000000, "feet")
  43922. },
  43923. {
  43924. name: "Universe",
  43925. height: math.unit(8000000000, "feet")
  43926. },
  43927. {
  43928. name: "Transcended",
  43929. height: math.unit(8e27, "feet")
  43930. },
  43931. ]
  43932. ))
  43933. characterMakers.push(() => makeCharacter(
  43934. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43935. {
  43936. front: {
  43937. height: math.unit(5, "feet"),
  43938. weight: math.unit(50, "kg"),
  43939. name: "Front",
  43940. image: {
  43941. source: "./media/characters/biot-avery/front.svg",
  43942. extra: 1295/1232,
  43943. bottom: 86/1381
  43944. }
  43945. },
  43946. },
  43947. [
  43948. {
  43949. name: "Normal",
  43950. height: math.unit(5, "feet"),
  43951. default: true
  43952. },
  43953. ]
  43954. ))
  43955. characterMakers.push(() => makeCharacter(
  43956. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43957. {
  43958. front: {
  43959. height: math.unit(6, "feet"),
  43960. name: "Front",
  43961. image: {
  43962. source: "./media/characters/kitsune-kiro/front.svg",
  43963. extra: 1270/1158,
  43964. bottom: 42/1312
  43965. }
  43966. },
  43967. frontAlt: {
  43968. height: math.unit(6, "feet"),
  43969. name: "Front-alt",
  43970. image: {
  43971. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43972. extra: 1130/1081,
  43973. bottom: 36/1166
  43974. }
  43975. },
  43976. },
  43977. [
  43978. {
  43979. name: "Smol",
  43980. height: math.unit(3, "feet")
  43981. },
  43982. {
  43983. name: "Normal",
  43984. height: math.unit(6, "feet"),
  43985. default: true
  43986. },
  43987. ]
  43988. ))
  43989. characterMakers.push(() => makeCharacter(
  43990. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43991. {
  43992. front: {
  43993. height: math.unit(6, "feet"),
  43994. weight: math.unit(125, "lb"),
  43995. name: "Front",
  43996. image: {
  43997. source: "./media/characters/jack-thatcher/front.svg",
  43998. extra: 1474/1370,
  43999. bottom: 26/1500
  44000. }
  44001. },
  44002. back: {
  44003. height: math.unit(6, "feet"),
  44004. weight: math.unit(125, "lb"),
  44005. name: "Back",
  44006. image: {
  44007. source: "./media/characters/jack-thatcher/back.svg",
  44008. extra: 1489/1384,
  44009. bottom: 18/1507
  44010. }
  44011. },
  44012. },
  44013. [
  44014. {
  44015. name: "Normal",
  44016. height: math.unit(6, "feet"),
  44017. default: true
  44018. },
  44019. {
  44020. name: "Macro",
  44021. height: math.unit(75, "feet")
  44022. },
  44023. {
  44024. name: "Macro-er",
  44025. height: math.unit(250, "feet")
  44026. },
  44027. ]
  44028. ))
  44029. characterMakers.push(() => makeCharacter(
  44030. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44031. {
  44032. front: {
  44033. height: math.unit(7, "feet"),
  44034. weight: math.unit(110, "kg"),
  44035. name: "Front",
  44036. image: {
  44037. source: "./media/characters/max-hyper/front.svg",
  44038. extra: 1969/1881,
  44039. bottom: 49/2018
  44040. }
  44041. },
  44042. },
  44043. [
  44044. {
  44045. name: "Normal",
  44046. height: math.unit(7, "feet"),
  44047. default: true
  44048. },
  44049. ]
  44050. ))
  44051. characterMakers.push(() => makeCharacter(
  44052. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44053. {
  44054. front: {
  44055. height: math.unit(5 + 5/12, "feet"),
  44056. weight: math.unit(160, "lb"),
  44057. name: "Front",
  44058. image: {
  44059. source: "./media/characters/spook/front.svg",
  44060. extra: 794/791,
  44061. bottom: 54/848
  44062. }
  44063. },
  44064. back: {
  44065. height: math.unit(5 + 5/12, "feet"),
  44066. weight: math.unit(160, "lb"),
  44067. name: "Back",
  44068. image: {
  44069. source: "./media/characters/spook/back.svg",
  44070. extra: 812/798,
  44071. bottom: 32/844
  44072. }
  44073. },
  44074. },
  44075. [
  44076. {
  44077. name: "Normal",
  44078. height: math.unit(5 + 5/12, "feet"),
  44079. default: true
  44080. },
  44081. ]
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44085. {
  44086. front: {
  44087. height: math.unit(18, "feet"),
  44088. name: "Front",
  44089. image: {
  44090. source: "./media/characters/xeaduulix/front.svg",
  44091. extra: 1380/1166,
  44092. bottom: 110/1490
  44093. }
  44094. },
  44095. back: {
  44096. height: math.unit(18, "feet"),
  44097. name: "Back",
  44098. image: {
  44099. source: "./media/characters/xeaduulix/back.svg",
  44100. extra: 1592/1170,
  44101. bottom: 128/1720
  44102. }
  44103. },
  44104. frontNsfw: {
  44105. height: math.unit(18, "feet"),
  44106. name: "Front (NSFW)",
  44107. image: {
  44108. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44109. extra: 1380/1166,
  44110. bottom: 110/1490
  44111. }
  44112. },
  44113. backNsfw: {
  44114. height: math.unit(18, "feet"),
  44115. name: "Back (NSFW)",
  44116. image: {
  44117. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44118. extra: 1592/1170,
  44119. bottom: 128/1720
  44120. }
  44121. },
  44122. },
  44123. [
  44124. {
  44125. name: "Normal",
  44126. height: math.unit(18, "feet"),
  44127. default: true
  44128. },
  44129. ]
  44130. ))
  44131. characterMakers.push(() => makeCharacter(
  44132. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44133. {
  44134. spreadWings: {
  44135. height: math.unit(20, "feet"),
  44136. name: "Spread Wings",
  44137. image: {
  44138. source: "./media/characters/fledge/spread-wings.svg",
  44139. extra: 693/635,
  44140. bottom: 26/719
  44141. }
  44142. },
  44143. front: {
  44144. height: math.unit(20, "feet"),
  44145. name: "Front",
  44146. image: {
  44147. source: "./media/characters/fledge/front.svg",
  44148. extra: 684/637,
  44149. bottom: 18/702
  44150. }
  44151. },
  44152. frontAlt: {
  44153. height: math.unit(20, "feet"),
  44154. name: "Front (Alt)",
  44155. image: {
  44156. source: "./media/characters/fledge/front-alt.svg",
  44157. extra: 708/664,
  44158. bottom: 13/721
  44159. }
  44160. },
  44161. back: {
  44162. height: math.unit(20, "feet"),
  44163. name: "Back",
  44164. image: {
  44165. source: "./media/characters/fledge/back.svg",
  44166. extra: 718/634,
  44167. bottom: 22/740
  44168. }
  44169. },
  44170. head: {
  44171. height: math.unit(5.55, "feet"),
  44172. name: "Head",
  44173. image: {
  44174. source: "./media/characters/fledge/head.svg"
  44175. }
  44176. },
  44177. headAlt: {
  44178. height: math.unit(5.1, "feet"),
  44179. name: "Head (Alt)",
  44180. image: {
  44181. source: "./media/characters/fledge/head-alt.svg"
  44182. }
  44183. },
  44184. },
  44185. [
  44186. {
  44187. name: "Small",
  44188. height: math.unit(6 + 2/12, "feet")
  44189. },
  44190. {
  44191. name: "Big",
  44192. height: math.unit(20, "feet"),
  44193. default: true
  44194. },
  44195. {
  44196. name: "Giant",
  44197. height: math.unit(100, "feet")
  44198. },
  44199. {
  44200. name: "Macro",
  44201. height: math.unit(200, "feet")
  44202. },
  44203. ]
  44204. ))
  44205. characterMakers.push(() => makeCharacter(
  44206. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44207. {
  44208. front: {
  44209. height: math.unit(1, "meter"),
  44210. name: "Front",
  44211. image: {
  44212. source: "./media/characters/atlas-morenai/front.svg",
  44213. extra: 1275/1043,
  44214. bottom: 19/1294
  44215. }
  44216. },
  44217. back: {
  44218. height: math.unit(1, "meter"),
  44219. name: "Back",
  44220. image: {
  44221. source: "./media/characters/atlas-morenai/back.svg",
  44222. extra: 1141/1001,
  44223. bottom: 25/1166
  44224. }
  44225. },
  44226. },
  44227. [
  44228. {
  44229. name: "Normal",
  44230. height: math.unit(1, "meter"),
  44231. default: true
  44232. },
  44233. {
  44234. name: "Magic-Infused",
  44235. height: math.unit(5, "meters")
  44236. },
  44237. ]
  44238. ))
  44239. characterMakers.push(() => makeCharacter(
  44240. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44241. {
  44242. front: {
  44243. height: math.unit(5, "meters"),
  44244. name: "Front",
  44245. image: {
  44246. source: "./media/characters/cintia/front.svg",
  44247. extra: 1312/1228,
  44248. bottom: 38/1350
  44249. }
  44250. },
  44251. back: {
  44252. height: math.unit(5, "meters"),
  44253. name: "Back",
  44254. image: {
  44255. source: "./media/characters/cintia/back.svg",
  44256. extra: 1260/1166,
  44257. bottom: 98/1358
  44258. }
  44259. },
  44260. frontDick: {
  44261. height: math.unit(5, "meters"),
  44262. name: "Front (Dick)",
  44263. image: {
  44264. source: "./media/characters/cintia/front-dick.svg",
  44265. extra: 1312/1228,
  44266. bottom: 38/1350
  44267. }
  44268. },
  44269. backDick: {
  44270. height: math.unit(5, "meters"),
  44271. name: "Back (Dick)",
  44272. image: {
  44273. source: "./media/characters/cintia/back-dick.svg",
  44274. extra: 1260/1166,
  44275. bottom: 98/1358
  44276. }
  44277. },
  44278. bust: {
  44279. height: math.unit(1.97, "meters"),
  44280. name: "Bust",
  44281. image: {
  44282. source: "./media/characters/cintia/bust.svg",
  44283. extra: 617/565,
  44284. bottom: 0/617
  44285. }
  44286. },
  44287. },
  44288. [
  44289. {
  44290. name: "Normal",
  44291. height: math.unit(5, "meters"),
  44292. default: true
  44293. },
  44294. ]
  44295. ))
  44296. characterMakers.push(() => makeCharacter(
  44297. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44298. {
  44299. side: {
  44300. height: math.unit(100, "feet"),
  44301. name: "Side",
  44302. image: {
  44303. source: "./media/characters/denora/side.svg",
  44304. extra: 875/803,
  44305. bottom: 9/884
  44306. }
  44307. },
  44308. },
  44309. [
  44310. {
  44311. name: "Standard",
  44312. height: math.unit(100, "feet"),
  44313. default: true
  44314. },
  44315. {
  44316. name: "Grand",
  44317. height: math.unit(1000, "feet")
  44318. },
  44319. {
  44320. name: "Conquering",
  44321. height: math.unit(10000, "feet")
  44322. },
  44323. ]
  44324. ))
  44325. characterMakers.push(() => makeCharacter(
  44326. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44327. {
  44328. dressed: {
  44329. height: math.unit(8 + 5/12, "feet"),
  44330. weight: math.unit(700, "lb"),
  44331. name: "Dressed",
  44332. image: {
  44333. source: "./media/characters/kiva/dressed.svg",
  44334. extra: 1102/1055,
  44335. bottom: 60/1162
  44336. }
  44337. },
  44338. nude: {
  44339. height: math.unit(8 + 5/12, "feet"),
  44340. weight: math.unit(700, "lb"),
  44341. name: "Nude",
  44342. image: {
  44343. source: "./media/characters/kiva/nude.svg",
  44344. extra: 1102/1055,
  44345. bottom: 60/1162
  44346. }
  44347. },
  44348. },
  44349. [
  44350. {
  44351. name: "Base Height",
  44352. height: math.unit(8 + 5/12, "feet"),
  44353. default: true
  44354. },
  44355. {
  44356. name: "Macro",
  44357. height: math.unit(100, "feet")
  44358. },
  44359. {
  44360. name: "Max",
  44361. height: math.unit(3280, "feet")
  44362. },
  44363. ]
  44364. ))
  44365. characterMakers.push(() => makeCharacter(
  44366. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44367. {
  44368. front: {
  44369. height: math.unit(6 + 8/12, "feet"),
  44370. weight: math.unit(250, "lb"),
  44371. name: "Front",
  44372. image: {
  44373. source: "./media/characters/ztragon/front.svg",
  44374. extra: 1825/1684,
  44375. bottom: 98/1923
  44376. }
  44377. },
  44378. },
  44379. [
  44380. {
  44381. name: "Normal",
  44382. height: math.unit(6 + 8/12, "feet"),
  44383. default: true
  44384. },
  44385. {
  44386. name: "Macro",
  44387. height: math.unit(80, "feet")
  44388. },
  44389. ]
  44390. ))
  44391. characterMakers.push(() => makeCharacter(
  44392. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44393. {
  44394. front: {
  44395. height: math.unit(10.4, "feet"),
  44396. weight: math.unit(2, "tons"),
  44397. name: "Front",
  44398. image: {
  44399. source: "./media/characters/yesenia/front.svg",
  44400. extra: 1479/1474,
  44401. bottom: 233/1712
  44402. }
  44403. },
  44404. },
  44405. [
  44406. {
  44407. name: "Normal",
  44408. height: math.unit(10.4, "feet"),
  44409. default: true
  44410. },
  44411. ]
  44412. ))
  44413. characterMakers.push(() => makeCharacter(
  44414. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44415. {
  44416. normal: {
  44417. height: math.unit(6 + 1/12, "feet"),
  44418. weight: math.unit(180, "lb"),
  44419. name: "Normal",
  44420. image: {
  44421. source: "./media/characters/leanne-lycheborne/normal.svg",
  44422. extra: 1748/1660,
  44423. bottom: 98/1846
  44424. }
  44425. },
  44426. were: {
  44427. height: math.unit(12, "feet"),
  44428. weight: math.unit(1600, "lb"),
  44429. name: "Were",
  44430. image: {
  44431. source: "./media/characters/leanne-lycheborne/were.svg",
  44432. extra: 1485/1432,
  44433. bottom: 66/1551
  44434. }
  44435. },
  44436. },
  44437. [
  44438. {
  44439. name: "Normal",
  44440. height: math.unit(6 + 1/12, "feet"),
  44441. default: true
  44442. },
  44443. ]
  44444. ))
  44445. characterMakers.push(() => makeCharacter(
  44446. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44447. {
  44448. side: {
  44449. height: math.unit(13, "feet"),
  44450. name: "Side",
  44451. image: {
  44452. source: "./media/characters/kira-tyler/side.svg",
  44453. extra: 693/393,
  44454. bottom: 58/751
  44455. }
  44456. },
  44457. },
  44458. [
  44459. {
  44460. name: "Normal",
  44461. height: math.unit(13, "feet"),
  44462. default: true
  44463. },
  44464. ]
  44465. ))
  44466. characterMakers.push(() => makeCharacter(
  44467. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44468. {
  44469. front: {
  44470. height: math.unit(10.3, "feet"),
  44471. weight: math.unit(150, "lb"),
  44472. name: "Front",
  44473. image: {
  44474. source: "./media/characters/blaze/front.svg",
  44475. extra: 1378/1286,
  44476. bottom: 172/1550
  44477. }
  44478. },
  44479. },
  44480. [
  44481. {
  44482. name: "Normal",
  44483. height: math.unit(10.3, "feet"),
  44484. default: true
  44485. },
  44486. ]
  44487. ))
  44488. characterMakers.push(() => makeCharacter(
  44489. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44490. {
  44491. side: {
  44492. height: math.unit(2, "meters"),
  44493. weight: math.unit(400, "kg"),
  44494. name: "Side",
  44495. image: {
  44496. source: "./media/characters/anu/side.svg",
  44497. extra: 506/394,
  44498. bottom: 18/524
  44499. }
  44500. },
  44501. },
  44502. [
  44503. {
  44504. name: "Humanoid",
  44505. height: math.unit(2, "meters")
  44506. },
  44507. {
  44508. name: "Normal",
  44509. height: math.unit(5, "meters"),
  44510. default: true
  44511. },
  44512. ]
  44513. ))
  44514. characterMakers.push(() => makeCharacter(
  44515. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44516. {
  44517. front: {
  44518. height: math.unit(5 + 5/12, "feet"),
  44519. weight: math.unit(170, "lb"),
  44520. name: "Front",
  44521. image: {
  44522. source: "./media/characters/synx-the-lynx/front.svg",
  44523. extra: 1893/1745,
  44524. bottom: 17/1910
  44525. }
  44526. },
  44527. side: {
  44528. height: math.unit(5 + 5/12, "feet"),
  44529. weight: math.unit(170, "lb"),
  44530. name: "Side",
  44531. image: {
  44532. source: "./media/characters/synx-the-lynx/side.svg",
  44533. extra: 1884/1740,
  44534. bottom: 39/1923
  44535. }
  44536. },
  44537. back: {
  44538. height: math.unit(5 + 5/12, "feet"),
  44539. weight: math.unit(170, "lb"),
  44540. name: "Back",
  44541. image: {
  44542. source: "./media/characters/synx-the-lynx/back.svg",
  44543. extra: 1903/1755,
  44544. bottom: 14/1917
  44545. }
  44546. },
  44547. },
  44548. [
  44549. {
  44550. name: "Normal",
  44551. height: math.unit(5 + 5/12, "feet"),
  44552. default: true
  44553. },
  44554. ]
  44555. ))
  44556. characterMakers.push(() => makeCharacter(
  44557. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44558. {
  44559. back: {
  44560. height: math.unit(15, "feet"),
  44561. name: "Back",
  44562. image: {
  44563. source: "./media/characters/nadezda-fex/back.svg",
  44564. extra: 1695/1481,
  44565. bottom: 25/1720
  44566. }
  44567. },
  44568. },
  44569. [
  44570. {
  44571. name: "Normal",
  44572. height: math.unit(15, "feet"),
  44573. default: true
  44574. },
  44575. {
  44576. name: "Macro",
  44577. height: math.unit(2.5, "miles")
  44578. },
  44579. {
  44580. name: "Goddess",
  44581. height: math.unit(2, "multiverses")
  44582. },
  44583. ]
  44584. ))
  44585. characterMakers.push(() => makeCharacter(
  44586. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44587. {
  44588. front: {
  44589. height: math.unit(216, "cm"),
  44590. name: "Front",
  44591. image: {
  44592. source: "./media/characters/lev/front.svg",
  44593. extra: 1728/1670,
  44594. bottom: 82/1810
  44595. }
  44596. },
  44597. back: {
  44598. height: math.unit(216, "cm"),
  44599. name: "Back",
  44600. image: {
  44601. source: "./media/characters/lev/back.svg",
  44602. extra: 1738/1675,
  44603. bottom: 24/1762
  44604. }
  44605. },
  44606. dressed: {
  44607. height: math.unit(216, "cm"),
  44608. name: "Dressed",
  44609. image: {
  44610. source: "./media/characters/lev/dressed.svg",
  44611. extra: 1397/1351,
  44612. bottom: 73/1470
  44613. }
  44614. },
  44615. head: {
  44616. height: math.unit(0.51, "meter"),
  44617. name: "Head",
  44618. image: {
  44619. source: "./media/characters/lev/head.svg"
  44620. }
  44621. },
  44622. },
  44623. [
  44624. {
  44625. name: "Normal",
  44626. height: math.unit(216, "cm"),
  44627. default: true
  44628. },
  44629. {
  44630. name: "Relatively Macro",
  44631. height: math.unit(80, "meters")
  44632. },
  44633. {
  44634. name: "Megamacro",
  44635. height: math.unit(21600, "meters")
  44636. },
  44637. {
  44638. name: "Megamacro+",
  44639. height: math.unit(64800, "meters")
  44640. },
  44641. ]
  44642. ))
  44643. characterMakers.push(() => makeCharacter(
  44644. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44645. {
  44646. front: {
  44647. height: math.unit(2, "meters"),
  44648. weight: math.unit(80, "kg"),
  44649. name: "Front",
  44650. image: {
  44651. source: "./media/characters/moka/front.svg",
  44652. extra: 1337/1255,
  44653. bottom: 58/1395
  44654. }
  44655. },
  44656. },
  44657. [
  44658. {
  44659. name: "Micro",
  44660. height: math.unit(15, "cm")
  44661. },
  44662. {
  44663. name: "Normal",
  44664. height: math.unit(2, "meters"),
  44665. default: true
  44666. },
  44667. {
  44668. name: "Macro",
  44669. height: math.unit(20, "meters"),
  44670. },
  44671. ]
  44672. ))
  44673. characterMakers.push(() => makeCharacter(
  44674. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44675. {
  44676. front: {
  44677. height: math.unit(9, "feet"),
  44678. weight: math.unit(240, "lb"),
  44679. name: "Front",
  44680. image: {
  44681. source: "./media/characters/kuzco/front.svg",
  44682. extra: 1593/1487,
  44683. bottom: 32/1625
  44684. }
  44685. },
  44686. side: {
  44687. height: math.unit(9, "feet"),
  44688. weight: math.unit(240, "lb"),
  44689. name: "Side",
  44690. image: {
  44691. source: "./media/characters/kuzco/side.svg",
  44692. extra: 1575/1485,
  44693. bottom: 30/1605
  44694. }
  44695. },
  44696. back: {
  44697. height: math.unit(9, "feet"),
  44698. weight: math.unit(240, "lb"),
  44699. name: "Back",
  44700. image: {
  44701. source: "./media/characters/kuzco/back.svg",
  44702. extra: 1603/1514,
  44703. bottom: 14/1617
  44704. }
  44705. },
  44706. },
  44707. [
  44708. {
  44709. name: "Normal",
  44710. height: math.unit(9, "feet"),
  44711. default: true
  44712. },
  44713. ]
  44714. ))
  44715. characterMakers.push(() => makeCharacter(
  44716. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44717. {
  44718. side: {
  44719. height: math.unit(2, "meters"),
  44720. weight: math.unit(300, "kg"),
  44721. name: "Side",
  44722. image: {
  44723. source: "./media/characters/ceruleus/side.svg",
  44724. extra: 1068/974,
  44725. bottom: 126/1194
  44726. }
  44727. },
  44728. },
  44729. [
  44730. {
  44731. name: "Normal",
  44732. height: math.unit(16, "meters"),
  44733. default: true
  44734. },
  44735. ]
  44736. ))
  44737. characterMakers.push(() => makeCharacter(
  44738. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44739. {
  44740. front: {
  44741. height: math.unit(9, "feet"),
  44742. weight: math.unit(500, "kg"),
  44743. name: "Front",
  44744. image: {
  44745. source: "./media/characters/acouya/front.svg",
  44746. extra: 1660/1473,
  44747. bottom: 28/1688
  44748. }
  44749. },
  44750. },
  44751. [
  44752. {
  44753. name: "Normal",
  44754. height: math.unit(9, "feet"),
  44755. default: true
  44756. },
  44757. ]
  44758. ))
  44759. characterMakers.push(() => makeCharacter(
  44760. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44761. {
  44762. front: {
  44763. height: math.unit(5 + 6/12, "feet"),
  44764. weight: math.unit(195, "lb"),
  44765. name: "Front",
  44766. image: {
  44767. source: "./media/characters/vant/front.svg",
  44768. extra: 1396/1320,
  44769. bottom: 20/1416
  44770. }
  44771. },
  44772. back: {
  44773. height: math.unit(5 + 6/12, "feet"),
  44774. weight: math.unit(195, "lb"),
  44775. name: "Back",
  44776. image: {
  44777. source: "./media/characters/vant/back.svg",
  44778. extra: 1396/1320,
  44779. bottom: 20/1416
  44780. }
  44781. },
  44782. maw: {
  44783. height: math.unit(0.75, "feet"),
  44784. name: "Maw",
  44785. image: {
  44786. source: "./media/characters/vant/maw.svg"
  44787. }
  44788. },
  44789. paw: {
  44790. height: math.unit(1.07, "feet"),
  44791. name: "Paw",
  44792. image: {
  44793. source: "./media/characters/vant/paw.svg"
  44794. }
  44795. },
  44796. },
  44797. [
  44798. {
  44799. name: "Micro",
  44800. height: math.unit(0.25, "inches")
  44801. },
  44802. {
  44803. name: "Normal",
  44804. height: math.unit(5 + 6/12, "feet"),
  44805. default: true
  44806. },
  44807. {
  44808. name: "Macro",
  44809. height: math.unit(75, "feet")
  44810. },
  44811. ]
  44812. ))
  44813. characterMakers.push(() => makeCharacter(
  44814. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44815. {
  44816. front: {
  44817. height: math.unit(30, "meters"),
  44818. weight: math.unit(363, "tons"),
  44819. name: "Front",
  44820. image: {
  44821. source: "./media/characters/ahra/front.svg",
  44822. extra: 1914/1814,
  44823. bottom: 46/1960
  44824. }
  44825. },
  44826. },
  44827. [
  44828. {
  44829. name: "Macro",
  44830. height: math.unit(30, "meters"),
  44831. default: true
  44832. },
  44833. ]
  44834. ))
  44835. characterMakers.push(() => makeCharacter(
  44836. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44837. {
  44838. undressed: {
  44839. height: math.unit(2, "m"),
  44840. weight: math.unit(250, "kg"),
  44841. name: "Undressed",
  44842. image: {
  44843. source: "./media/characters/coriander/undressed.svg",
  44844. extra: 1757/1606,
  44845. bottom: 107/1864
  44846. }
  44847. },
  44848. dressed: {
  44849. height: math.unit(2, "m"),
  44850. weight: math.unit(250, "kg"),
  44851. name: "Dressed",
  44852. image: {
  44853. source: "./media/characters/coriander/dressed.svg",
  44854. extra: 1757/1606,
  44855. bottom: 107/1864
  44856. }
  44857. },
  44858. },
  44859. [
  44860. {
  44861. name: "Normal",
  44862. height: math.unit(4, "meters"),
  44863. default: true
  44864. },
  44865. {
  44866. name: "XL",
  44867. height: math.unit(6, "meters")
  44868. },
  44869. {
  44870. name: "XXL",
  44871. height: math.unit(8, "meters")
  44872. },
  44873. ]
  44874. ))
  44875. characterMakers.push(() => makeCharacter(
  44876. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44877. {
  44878. front: {
  44879. height: math.unit(6, "feet"),
  44880. name: "Front",
  44881. image: {
  44882. source: "./media/characters/syrinx/front.svg",
  44883. extra: 1557/1259,
  44884. bottom: 171/1728
  44885. }
  44886. },
  44887. },
  44888. [
  44889. {
  44890. name: "Normal",
  44891. height: math.unit(6 + 3/12, "feet"),
  44892. default: true
  44893. },
  44894. ]
  44895. ))
  44896. characterMakers.push(() => makeCharacter(
  44897. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44898. {
  44899. front: {
  44900. height: math.unit(11 + 6/12, "feet"),
  44901. weight: math.unit(1.5, "tons"),
  44902. name: "Front",
  44903. image: {
  44904. source: "./media/characters/bor/front.svg",
  44905. extra: 1189/1109,
  44906. bottom: 170/1359
  44907. }
  44908. },
  44909. },
  44910. [
  44911. {
  44912. name: "Normal",
  44913. height: math.unit(11 + 6/12, "feet"),
  44914. default: true
  44915. },
  44916. {
  44917. name: "Macro",
  44918. height: math.unit(32 + 9/12, "feet")
  44919. },
  44920. ]
  44921. ))
  44922. characterMakers.push(() => makeCharacter(
  44923. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44924. {
  44925. anthro: {
  44926. height: math.unit(9, "feet"),
  44927. weight: math.unit(2076, "lb"),
  44928. name: "Anthro",
  44929. image: {
  44930. source: "./media/characters/abacus/anthro.svg",
  44931. extra: 1540/1494,
  44932. bottom: 233/1773
  44933. }
  44934. },
  44935. pigeon: {
  44936. height: math.unit(1, "feet"),
  44937. name: "Pigeon",
  44938. image: {
  44939. source: "./media/characters/abacus/pigeon.svg",
  44940. extra: 528/525,
  44941. bottom: 46/574
  44942. }
  44943. },
  44944. },
  44945. [
  44946. {
  44947. name: "Normal",
  44948. height: math.unit(9, "feet"),
  44949. default: true
  44950. },
  44951. ]
  44952. ))
  44953. characterMakers.push(() => makeCharacter(
  44954. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44955. {
  44956. side: {
  44957. height: math.unit(6, "feet"),
  44958. name: "Side",
  44959. image: {
  44960. source: "./media/characters/delkhan/side.svg",
  44961. extra: 1884/1786,
  44962. bottom: 308/2192
  44963. }
  44964. },
  44965. head: {
  44966. height: math.unit(3.38, "feet"),
  44967. name: "Head",
  44968. image: {
  44969. source: "./media/characters/delkhan/head.svg"
  44970. }
  44971. },
  44972. },
  44973. [
  44974. {
  44975. name: "Normal",
  44976. height: math.unit(72, "feet"),
  44977. default: true
  44978. },
  44979. {
  44980. name: "Giant",
  44981. height: math.unit(172, "feet")
  44982. },
  44983. ]
  44984. ))
  44985. characterMakers.push(() => makeCharacter(
  44986. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44987. {
  44988. standing: {
  44989. height: math.unit(6, "feet"),
  44990. name: "Standing",
  44991. image: {
  44992. source: "./media/characters/euchidat/standing.svg",
  44993. extra: 1612/1553,
  44994. bottom: 116/1728
  44995. }
  44996. },
  44997. leaning: {
  44998. height: math.unit(6, "feet"),
  44999. name: "Leaning",
  45000. image: {
  45001. source: "./media/characters/euchidat/leaning.svg",
  45002. extra: 1719/1674,
  45003. bottom: 27/1746
  45004. }
  45005. },
  45006. },
  45007. [
  45008. {
  45009. name: "Normal",
  45010. height: math.unit(175, "feet"),
  45011. default: true
  45012. },
  45013. {
  45014. name: "Megamacro",
  45015. height: math.unit(190, "miles")
  45016. },
  45017. {
  45018. name: "Gigamacro",
  45019. height: math.unit(190000, "miles")
  45020. },
  45021. ]
  45022. ))
  45023. characterMakers.push(() => makeCharacter(
  45024. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45025. {
  45026. front: {
  45027. height: math.unit(6, "feet"),
  45028. weight: math.unit(150, "lb"),
  45029. name: "Front",
  45030. image: {
  45031. source: "./media/characters/rebecca-stack/front.svg",
  45032. extra: 1256/1201,
  45033. bottom: 18/1274
  45034. }
  45035. },
  45036. },
  45037. [
  45038. {
  45039. name: "Normal",
  45040. height: math.unit(5 + 8/12, "feet"),
  45041. default: true
  45042. },
  45043. {
  45044. name: "Demolitionist",
  45045. height: math.unit(200, "feet")
  45046. },
  45047. {
  45048. name: "Out of Control",
  45049. height: math.unit(2, "miles")
  45050. },
  45051. {
  45052. name: "Giga",
  45053. height: math.unit(7200, "miles")
  45054. },
  45055. ]
  45056. ))
  45057. characterMakers.push(() => makeCharacter(
  45058. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45059. {
  45060. front: {
  45061. height: math.unit(6, "feet"),
  45062. weight: math.unit(150, "lb"),
  45063. name: "Front",
  45064. image: {
  45065. source: "./media/characters/jenny-cartwright/front.svg",
  45066. extra: 1384/1376,
  45067. bottom: 58/1442
  45068. }
  45069. },
  45070. },
  45071. [
  45072. {
  45073. name: "Normal",
  45074. height: math.unit(6 + 7/12, "feet"),
  45075. default: true
  45076. },
  45077. {
  45078. name: "Librarian",
  45079. height: math.unit(55, "feet")
  45080. },
  45081. {
  45082. name: "Sightseer",
  45083. height: math.unit(50, "miles")
  45084. },
  45085. {
  45086. name: "Giga",
  45087. height: math.unit(30000, "miles")
  45088. },
  45089. ]
  45090. ))
  45091. characterMakers.push(() => makeCharacter(
  45092. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45093. {
  45094. nude: {
  45095. height: math.unit(8, "feet"),
  45096. weight: math.unit(225, "lb"),
  45097. name: "Nude",
  45098. image: {
  45099. source: "./media/characters/marvy/nude.svg",
  45100. extra: 1900/1683,
  45101. bottom: 89/1989
  45102. }
  45103. },
  45104. dressed: {
  45105. height: math.unit(8, "feet"),
  45106. weight: math.unit(225, "lb"),
  45107. name: "Dressed",
  45108. image: {
  45109. source: "./media/characters/marvy/dressed.svg",
  45110. extra: 1900/1683,
  45111. bottom: 89/1989
  45112. }
  45113. },
  45114. head: {
  45115. height: math.unit(2.85, "feet"),
  45116. name: "Head",
  45117. image: {
  45118. source: "./media/characters/marvy/head.svg"
  45119. }
  45120. },
  45121. },
  45122. [
  45123. {
  45124. name: "Normal",
  45125. height: math.unit(8, "feet"),
  45126. default: true
  45127. },
  45128. ]
  45129. ))
  45130. characterMakers.push(() => makeCharacter(
  45131. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45132. {
  45133. front: {
  45134. height: math.unit(8, "feet"),
  45135. weight: math.unit(250, "lb"),
  45136. name: "Front",
  45137. image: {
  45138. source: "./media/characters/leah/front.svg",
  45139. extra: 1257/1149,
  45140. bottom: 109/1366
  45141. }
  45142. },
  45143. },
  45144. [
  45145. {
  45146. name: "Normal",
  45147. height: math.unit(8, "feet"),
  45148. default: true
  45149. },
  45150. {
  45151. name: "Minimacro",
  45152. height: math.unit(40, "feet")
  45153. },
  45154. {
  45155. name: "Macro",
  45156. height: math.unit(124, "feet")
  45157. },
  45158. {
  45159. name: "Megamacro",
  45160. height: math.unit(850, "feet")
  45161. },
  45162. ]
  45163. ))
  45164. characterMakers.push(() => makeCharacter(
  45165. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45166. {
  45167. side: {
  45168. height: math.unit(13 + 6/12, "feet"),
  45169. weight: math.unit(3200, "lb"),
  45170. name: "Side",
  45171. image: {
  45172. source: "./media/characters/alvir/side.svg",
  45173. extra: 896/589,
  45174. bottom: 26/922
  45175. }
  45176. },
  45177. },
  45178. [
  45179. {
  45180. name: "Normal",
  45181. height: math.unit(13 + 6/12, "feet"),
  45182. default: true
  45183. },
  45184. ]
  45185. ))
  45186. characterMakers.push(() => makeCharacter(
  45187. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45188. {
  45189. front: {
  45190. height: math.unit(5 + 4/12, "feet"),
  45191. weight: math.unit(236, "lb"),
  45192. name: "Front",
  45193. image: {
  45194. source: "./media/characters/zaina-khalil/front.svg",
  45195. extra: 1533/1485,
  45196. bottom: 94/1627
  45197. }
  45198. },
  45199. side: {
  45200. height: math.unit(5 + 4/12, "feet"),
  45201. weight: math.unit(236, "lb"),
  45202. name: "Side",
  45203. image: {
  45204. source: "./media/characters/zaina-khalil/side.svg",
  45205. extra: 1537/1498,
  45206. bottom: 66/1603
  45207. }
  45208. },
  45209. back: {
  45210. height: math.unit(5 + 4/12, "feet"),
  45211. weight: math.unit(236, "lb"),
  45212. name: "Back",
  45213. image: {
  45214. source: "./media/characters/zaina-khalil/back.svg",
  45215. extra: 1546/1494,
  45216. bottom: 89/1635
  45217. }
  45218. },
  45219. },
  45220. [
  45221. {
  45222. name: "Normal",
  45223. height: math.unit(5 + 4/12, "feet"),
  45224. default: true
  45225. },
  45226. ]
  45227. ))
  45228. characterMakers.push(() => makeCharacter(
  45229. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45230. {
  45231. side: {
  45232. height: math.unit(12, "feet"),
  45233. weight: math.unit(4000, "lb"),
  45234. name: "Side",
  45235. image: {
  45236. source: "./media/characters/terry/side.svg",
  45237. extra: 1518/1439,
  45238. bottom: 149/1667
  45239. }
  45240. },
  45241. },
  45242. [
  45243. {
  45244. name: "Normal",
  45245. height: math.unit(12, "feet"),
  45246. default: true
  45247. },
  45248. ]
  45249. ))
  45250. characterMakers.push(() => makeCharacter(
  45251. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45252. {
  45253. front: {
  45254. height: math.unit(12, "feet"),
  45255. weight: math.unit(1500, "lb"),
  45256. name: "Front",
  45257. image: {
  45258. source: "./media/characters/kahea/front.svg",
  45259. extra: 1722/1617,
  45260. bottom: 179/1901
  45261. }
  45262. },
  45263. },
  45264. [
  45265. {
  45266. name: "Normal",
  45267. height: math.unit(12, "feet"),
  45268. default: true
  45269. },
  45270. ]
  45271. ))
  45272. characterMakers.push(() => makeCharacter(
  45273. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45274. {
  45275. demonFront: {
  45276. height: math.unit(36, "feet"),
  45277. name: "Front",
  45278. image: {
  45279. source: "./media/characters/alex-xuria/demon-front.svg",
  45280. extra: 1705/1673,
  45281. bottom: 198/1903
  45282. },
  45283. form: "demon",
  45284. default: true
  45285. },
  45286. demonBack: {
  45287. height: math.unit(36, "feet"),
  45288. name: "Back",
  45289. image: {
  45290. source: "./media/characters/alex-xuria/demon-back.svg",
  45291. extra: 1725/1693,
  45292. bottom: 70/1795
  45293. },
  45294. form: "demon"
  45295. },
  45296. demonHead: {
  45297. height: math.unit(2.14, "meters"),
  45298. name: "Head",
  45299. image: {
  45300. source: "./media/characters/alex-xuria/demon-head.svg"
  45301. },
  45302. form: "demon"
  45303. },
  45304. demonHand: {
  45305. height: math.unit(1.61, "meters"),
  45306. name: "Hand",
  45307. image: {
  45308. source: "./media/characters/alex-xuria/demon-hand.svg"
  45309. },
  45310. form: "demon"
  45311. },
  45312. demonPaw: {
  45313. height: math.unit(1.35, "meters"),
  45314. name: "Paw",
  45315. image: {
  45316. source: "./media/characters/alex-xuria/demon-paw.svg"
  45317. },
  45318. form: "demon"
  45319. },
  45320. demonFoot: {
  45321. height: math.unit(2.2, "meters"),
  45322. name: "Foot",
  45323. image: {
  45324. source: "./media/characters/alex-xuria/demon-foot.svg"
  45325. },
  45326. form: "demon"
  45327. },
  45328. demonCock: {
  45329. height: math.unit(1.74, "meters"),
  45330. name: "Cock",
  45331. image: {
  45332. source: "./media/characters/alex-xuria/demon-cock.svg"
  45333. },
  45334. form: "demon"
  45335. },
  45336. demonTailClosed: {
  45337. height: math.unit(1.47, "meters"),
  45338. name: "Tail (Closed)",
  45339. image: {
  45340. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45341. },
  45342. form: "demon"
  45343. },
  45344. demonTailOpen: {
  45345. height: math.unit(2.85, "meters"),
  45346. name: "Tail (Open)",
  45347. image: {
  45348. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45349. },
  45350. form: "demon"
  45351. },
  45352. incubusFront: {
  45353. height: math.unit(12, "feet"),
  45354. name: "Front",
  45355. image: {
  45356. source: "./media/characters/alex-xuria/incubus-front.svg",
  45357. extra: 1754/1677,
  45358. bottom: 125/1879
  45359. },
  45360. form: "incubus",
  45361. default: true
  45362. },
  45363. incubusBack: {
  45364. height: math.unit(12, "feet"),
  45365. name: "Back",
  45366. image: {
  45367. source: "./media/characters/alex-xuria/incubus-back.svg",
  45368. extra: 1702/1647,
  45369. bottom: 30/1732
  45370. },
  45371. form: "incubus"
  45372. },
  45373. incubusHead: {
  45374. height: math.unit(3.45, "feet"),
  45375. name: "Head",
  45376. image: {
  45377. source: "./media/characters/alex-xuria/incubus-head.svg"
  45378. },
  45379. form: "incubus"
  45380. },
  45381. rabbitFront: {
  45382. height: math.unit(6, "feet"),
  45383. name: "Front",
  45384. image: {
  45385. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45386. extra: 1369/1349,
  45387. bottom: 45/1414
  45388. },
  45389. form: "rabbit",
  45390. default: true
  45391. },
  45392. rabbitSide: {
  45393. height: math.unit(6, "feet"),
  45394. name: "Side",
  45395. image: {
  45396. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45397. extra: 1370/1356,
  45398. bottom: 37/1407
  45399. },
  45400. form: "rabbit"
  45401. },
  45402. rabbitBack: {
  45403. height: math.unit(6, "feet"),
  45404. name: "Back",
  45405. image: {
  45406. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45407. extra: 1375/1358,
  45408. bottom: 43/1418
  45409. },
  45410. form: "rabbit"
  45411. },
  45412. },
  45413. [
  45414. {
  45415. name: "Normal",
  45416. height: math.unit(6, "feet"),
  45417. default: true,
  45418. form: "rabbit"
  45419. },
  45420. {
  45421. name: "Incubus",
  45422. height: math.unit(12, "feet"),
  45423. default: true,
  45424. form: "incubus"
  45425. },
  45426. {
  45427. name: "Demon",
  45428. height: math.unit(36, "feet"),
  45429. default: true,
  45430. form: "demon"
  45431. }
  45432. ],
  45433. {
  45434. "demon": {
  45435. name: "Demon",
  45436. default: true
  45437. },
  45438. "incubus": {
  45439. name: "Incubus",
  45440. },
  45441. "rabbit": {
  45442. name: "Rabbit"
  45443. }
  45444. }
  45445. ))
  45446. characterMakers.push(() => makeCharacter(
  45447. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45448. {
  45449. front: {
  45450. height: math.unit(7 + 5/12, "feet"),
  45451. weight: math.unit(510, "lb"),
  45452. name: "Front",
  45453. image: {
  45454. source: "./media/characters/syrup/front.svg",
  45455. extra: 932/916,
  45456. bottom: 26/958
  45457. }
  45458. },
  45459. },
  45460. [
  45461. {
  45462. name: "Normal",
  45463. height: math.unit(7 + 5/12, "feet"),
  45464. default: true
  45465. },
  45466. {
  45467. name: "Big",
  45468. height: math.unit(50, "feet")
  45469. },
  45470. {
  45471. name: "Macro",
  45472. height: math.unit(300, "feet")
  45473. },
  45474. {
  45475. name: "Megamacro",
  45476. height: math.unit(1, "mile")
  45477. },
  45478. ]
  45479. ))
  45480. characterMakers.push(() => makeCharacter(
  45481. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45482. {
  45483. front: {
  45484. height: math.unit(6 + 9/12, "feet"),
  45485. name: "Front",
  45486. image: {
  45487. source: "./media/characters/zeimne/front.svg",
  45488. extra: 1969/1806,
  45489. bottom: 53/2022
  45490. }
  45491. },
  45492. },
  45493. [
  45494. {
  45495. name: "Normal",
  45496. height: math.unit(6 + 9/12, "feet"),
  45497. default: true
  45498. },
  45499. {
  45500. name: "Giant",
  45501. height: math.unit(550, "feet")
  45502. },
  45503. {
  45504. name: "Mega",
  45505. height: math.unit(3, "miles")
  45506. },
  45507. {
  45508. name: "Giga",
  45509. height: math.unit(250, "miles")
  45510. },
  45511. {
  45512. name: "Tera",
  45513. height: math.unit(1, "AU")
  45514. },
  45515. ]
  45516. ))
  45517. characterMakers.push(() => makeCharacter(
  45518. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45519. {
  45520. front: {
  45521. height: math.unit(5 + 2/12, "feet"),
  45522. name: "Front",
  45523. image: {
  45524. source: "./media/characters/grar/front.svg",
  45525. extra: 1331/1119,
  45526. bottom: 60/1391
  45527. }
  45528. },
  45529. back: {
  45530. height: math.unit(5 + 2/12, "feet"),
  45531. name: "Back",
  45532. image: {
  45533. source: "./media/characters/grar/back.svg",
  45534. extra: 1385/1169,
  45535. bottom: 23/1408
  45536. }
  45537. },
  45538. },
  45539. [
  45540. {
  45541. name: "Normal",
  45542. height: math.unit(5 + 2/12, "feet"),
  45543. default: true
  45544. },
  45545. ]
  45546. ))
  45547. characterMakers.push(() => makeCharacter(
  45548. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45549. {
  45550. front: {
  45551. height: math.unit(13 + 7/12, "feet"),
  45552. weight: math.unit(2200, "lb"),
  45553. name: "Front",
  45554. image: {
  45555. source: "./media/characters/endraya/front.svg",
  45556. extra: 1289/1215,
  45557. bottom: 50/1339
  45558. }
  45559. },
  45560. nude: {
  45561. height: math.unit(13 + 7/12, "feet"),
  45562. weight: math.unit(2200, "lb"),
  45563. name: "Nude",
  45564. image: {
  45565. source: "./media/characters/endraya/nude.svg",
  45566. extra: 1247/1171,
  45567. bottom: 40/1287
  45568. }
  45569. },
  45570. head: {
  45571. height: math.unit(2.6, "feet"),
  45572. name: "Head",
  45573. image: {
  45574. source: "./media/characters/endraya/head.svg"
  45575. }
  45576. },
  45577. slit: {
  45578. height: math.unit(3.4, "feet"),
  45579. name: "Slit",
  45580. image: {
  45581. source: "./media/characters/endraya/slit.svg"
  45582. }
  45583. },
  45584. },
  45585. [
  45586. {
  45587. name: "Normal",
  45588. height: math.unit(13 + 7/12, "feet"),
  45589. default: true
  45590. },
  45591. {
  45592. name: "Macro",
  45593. height: math.unit(200, "feet")
  45594. },
  45595. ]
  45596. ))
  45597. characterMakers.push(() => makeCharacter(
  45598. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45599. {
  45600. front: {
  45601. height: math.unit(412, "meters"),
  45602. name: "Front",
  45603. image: {
  45604. source: "./media/characters/rodryana/front.svg",
  45605. extra: 2002/1921,
  45606. bottom: 53/2055
  45607. }
  45608. },
  45609. back: {
  45610. height: math.unit(412, "meters"),
  45611. name: "Back",
  45612. image: {
  45613. source: "./media/characters/rodryana/back.svg",
  45614. extra: 1993/1926,
  45615. bottom: 48/2041
  45616. }
  45617. },
  45618. maw: {
  45619. height: math.unit(45, "meters"),
  45620. name: "Maw",
  45621. image: {
  45622. source: "./media/characters/rodryana/maw.svg"
  45623. }
  45624. },
  45625. slit: {
  45626. height: math.unit(72, "meters"),
  45627. name: "Slit",
  45628. image: {
  45629. source: "./media/characters/rodryana/slit.svg"
  45630. }
  45631. },
  45632. },
  45633. [
  45634. {
  45635. name: "Macro",
  45636. height: math.unit(412, "meters"),
  45637. default: true
  45638. },
  45639. ]
  45640. ))
  45641. characterMakers.push(() => makeCharacter(
  45642. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45643. {
  45644. front: {
  45645. height: math.unit(6, "feet"),
  45646. weight: math.unit(1000, "lb"),
  45647. name: "Front",
  45648. image: {
  45649. source: "./media/characters/asaya/front.svg",
  45650. extra: 1460/1200,
  45651. bottom: 71/1531
  45652. }
  45653. },
  45654. },
  45655. [
  45656. {
  45657. name: "Normal",
  45658. height: math.unit(8, "km"),
  45659. default: true
  45660. },
  45661. ]
  45662. ))
  45663. characterMakers.push(() => makeCharacter(
  45664. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45665. {
  45666. front: {
  45667. height: math.unit(3.5, "meters"),
  45668. name: "Front",
  45669. image: {
  45670. source: "./media/characters/sarzu-and-israz/front.svg",
  45671. extra: 1570/1558,
  45672. bottom: 150/1720
  45673. },
  45674. },
  45675. back: {
  45676. height: math.unit(3.5, "meters"),
  45677. name: "Back",
  45678. image: {
  45679. source: "./media/characters/sarzu-and-israz/back.svg",
  45680. extra: 1523/1509,
  45681. bottom: 132/1655
  45682. },
  45683. },
  45684. frontFemale: {
  45685. height: math.unit(3.5, "meters"),
  45686. name: "Front (Female)",
  45687. image: {
  45688. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45689. extra: 1570/1558,
  45690. bottom: 150/1720
  45691. },
  45692. },
  45693. frontHerm: {
  45694. height: math.unit(3.5, "meters"),
  45695. name: "Front (Herm)",
  45696. image: {
  45697. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45698. extra: 1570/1558,
  45699. bottom: 150/1720
  45700. },
  45701. },
  45702. },
  45703. [
  45704. {
  45705. name: "Normal",
  45706. height: math.unit(3.5, "meters"),
  45707. default: true,
  45708. },
  45709. {
  45710. name: "Macro",
  45711. height: math.unit(65.5, "meters"),
  45712. },
  45713. ],
  45714. ))
  45715. characterMakers.push(() => makeCharacter(
  45716. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45717. {
  45718. front: {
  45719. height: math.unit(6, "feet"),
  45720. weight: math.unit(250, "lb"),
  45721. name: "Front",
  45722. image: {
  45723. source: "./media/characters/zenimma/front.svg",
  45724. extra: 1346/1320,
  45725. bottom: 58/1404
  45726. }
  45727. },
  45728. back: {
  45729. height: math.unit(6, "feet"),
  45730. weight: math.unit(250, "lb"),
  45731. name: "Back",
  45732. image: {
  45733. source: "./media/characters/zenimma/back.svg",
  45734. extra: 1324/1308,
  45735. bottom: 44/1368
  45736. }
  45737. },
  45738. dick: {
  45739. height: math.unit(1.44, "feet"),
  45740. name: "Dick",
  45741. image: {
  45742. source: "./media/characters/zenimma/dick.svg"
  45743. }
  45744. },
  45745. },
  45746. [
  45747. {
  45748. name: "Canon Height",
  45749. height: math.unit(66, "miles"),
  45750. default: true
  45751. },
  45752. ]
  45753. ))
  45754. characterMakers.push(() => makeCharacter(
  45755. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45756. {
  45757. nude: {
  45758. height: math.unit(6, "feet"),
  45759. weight: math.unit(150, "lb"),
  45760. name: "Nude",
  45761. image: {
  45762. source: "./media/characters/shavon/nude.svg",
  45763. extra: 1242/1096,
  45764. bottom: 98/1340
  45765. }
  45766. },
  45767. dressed: {
  45768. height: math.unit(6, "feet"),
  45769. weight: math.unit(150, "lb"),
  45770. name: "Dressed",
  45771. image: {
  45772. source: "./media/characters/shavon/dressed.svg",
  45773. extra: 1242/1096,
  45774. bottom: 98/1340
  45775. }
  45776. },
  45777. },
  45778. [
  45779. {
  45780. name: "Macro",
  45781. height: math.unit(255, "feet"),
  45782. default: true
  45783. },
  45784. ]
  45785. ))
  45786. characterMakers.push(() => makeCharacter(
  45787. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45788. {
  45789. front: {
  45790. height: math.unit(6, "feet"),
  45791. name: "Front",
  45792. image: {
  45793. source: "./media/characters/steph/front.svg",
  45794. extra: 1430/1330,
  45795. bottom: 54/1484
  45796. }
  45797. },
  45798. },
  45799. [
  45800. {
  45801. name: "Normal",
  45802. height: math.unit(6, "feet"),
  45803. default: true
  45804. },
  45805. ]
  45806. ))
  45807. characterMakers.push(() => makeCharacter(
  45808. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45809. {
  45810. front: {
  45811. height: math.unit(9, "feet"),
  45812. weight: math.unit(400, "lb"),
  45813. name: "Front",
  45814. image: {
  45815. source: "./media/characters/kil'aman/front.svg",
  45816. extra: 1210/1159,
  45817. bottom: 109/1319
  45818. }
  45819. },
  45820. head: {
  45821. height: math.unit(2.14, "feet"),
  45822. name: "Head",
  45823. image: {
  45824. source: "./media/characters/kil'aman/head.svg"
  45825. }
  45826. },
  45827. maw: {
  45828. height: math.unit(1.21, "feet"),
  45829. name: "Maw",
  45830. image: {
  45831. source: "./media/characters/kil'aman/maw.svg"
  45832. }
  45833. },
  45834. foot: {
  45835. height: math.unit(1.7, "feet"),
  45836. name: "Foot",
  45837. image: {
  45838. source: "./media/characters/kil'aman/foot.svg"
  45839. }
  45840. },
  45841. dick: {
  45842. height: math.unit(2.1, "feet"),
  45843. name: "Dick",
  45844. image: {
  45845. source: "./media/characters/kil'aman/dick.svg"
  45846. }
  45847. },
  45848. },
  45849. [
  45850. {
  45851. name: "Normal",
  45852. height: math.unit(9, "feet")
  45853. },
  45854. {
  45855. name: "Canon Height",
  45856. height: math.unit(10, "miles"),
  45857. default: true
  45858. },
  45859. {
  45860. name: "Maximum",
  45861. height: math.unit(6e9, "miles")
  45862. },
  45863. ]
  45864. ))
  45865. characterMakers.push(() => makeCharacter(
  45866. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45867. {
  45868. front: {
  45869. height: math.unit(90, "feet"),
  45870. weight: math.unit(675000, "lb"),
  45871. name: "Front",
  45872. image: {
  45873. source: "./media/characters/qadan/front.svg",
  45874. extra: 1012/1004,
  45875. bottom: 78/1090
  45876. }
  45877. },
  45878. back: {
  45879. height: math.unit(90, "feet"),
  45880. weight: math.unit(675000, "lb"),
  45881. name: "Back",
  45882. image: {
  45883. source: "./media/characters/qadan/back.svg",
  45884. extra: 1042/1031,
  45885. bottom: 55/1097
  45886. }
  45887. },
  45888. armored: {
  45889. height: math.unit(90, "feet"),
  45890. weight: math.unit(675000, "lb"),
  45891. name: "Armored",
  45892. image: {
  45893. source: "./media/characters/qadan/armored.svg",
  45894. extra: 1047/1037,
  45895. bottom: 48/1095
  45896. }
  45897. },
  45898. },
  45899. [
  45900. {
  45901. name: "Normal",
  45902. height: math.unit(90, "feet"),
  45903. default: true
  45904. },
  45905. ]
  45906. ))
  45907. characterMakers.push(() => makeCharacter(
  45908. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  45909. {
  45910. front: {
  45911. height: math.unit(6, "feet"),
  45912. weight: math.unit(225, "lb"),
  45913. name: "Front",
  45914. image: {
  45915. source: "./media/characters/brooke/front.svg",
  45916. extra: 1050/1010,
  45917. bottom: 66/1116
  45918. }
  45919. },
  45920. back: {
  45921. height: math.unit(6, "feet"),
  45922. weight: math.unit(225, "lb"),
  45923. name: "Back",
  45924. image: {
  45925. source: "./media/characters/brooke/back.svg",
  45926. extra: 1053/1013,
  45927. bottom: 41/1094
  45928. }
  45929. },
  45930. dressed: {
  45931. height: math.unit(6, "feet"),
  45932. weight: math.unit(225, "lb"),
  45933. name: "Dressed",
  45934. image: {
  45935. source: "./media/characters/brooke/dressed.svg",
  45936. extra: 1050/1010,
  45937. bottom: 66/1116
  45938. }
  45939. },
  45940. },
  45941. [
  45942. {
  45943. name: "Canon Height",
  45944. height: math.unit(500, "miles"),
  45945. default: true
  45946. },
  45947. ]
  45948. ))
  45949. characterMakers.push(() => makeCharacter(
  45950. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  45951. {
  45952. front: {
  45953. height: math.unit(6 + 2/12, "feet"),
  45954. weight: math.unit(210, "lb"),
  45955. name: "Front",
  45956. image: {
  45957. source: "./media/characters/wubs/front.svg",
  45958. extra: 1345/1325,
  45959. bottom: 70/1415
  45960. }
  45961. },
  45962. back: {
  45963. height: math.unit(6 + 2/12, "feet"),
  45964. weight: math.unit(210, "lb"),
  45965. name: "Back",
  45966. image: {
  45967. source: "./media/characters/wubs/back.svg",
  45968. extra: 1296/1275,
  45969. bottom: 58/1354
  45970. }
  45971. },
  45972. },
  45973. [
  45974. {
  45975. name: "Normal",
  45976. height: math.unit(6 + 2/12, "feet"),
  45977. default: true
  45978. },
  45979. {
  45980. name: "Macro",
  45981. height: math.unit(1000, "feet")
  45982. },
  45983. {
  45984. name: "Megamacro",
  45985. height: math.unit(1, "mile")
  45986. },
  45987. ]
  45988. ))
  45989. characterMakers.push(() => makeCharacter(
  45990. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  45991. {
  45992. front: {
  45993. height: math.unit(4, "feet"),
  45994. weight: math.unit(120, "lb"),
  45995. name: "Front",
  45996. image: {
  45997. source: "./media/characters/blue/front.svg",
  45998. extra: 1636/1525,
  45999. bottom: 43/1679
  46000. }
  46001. },
  46002. back: {
  46003. height: math.unit(4, "feet"),
  46004. weight: math.unit(120, "lb"),
  46005. name: "Back",
  46006. image: {
  46007. source: "./media/characters/blue/back.svg",
  46008. extra: 1660/1560,
  46009. bottom: 57/1717
  46010. }
  46011. },
  46012. paws: {
  46013. height: math.unit(0.826, "feet"),
  46014. name: "Paws",
  46015. image: {
  46016. source: "./media/characters/blue/paws.svg"
  46017. }
  46018. },
  46019. },
  46020. [
  46021. {
  46022. name: "Micro",
  46023. height: math.unit(3, "inches")
  46024. },
  46025. {
  46026. name: "Normal",
  46027. height: math.unit(4, "feet"),
  46028. default: true
  46029. },
  46030. {
  46031. name: "Femenine Form",
  46032. height: math.unit(14, "feet")
  46033. },
  46034. {
  46035. name: "Werebat Form",
  46036. height: math.unit(18, "feet")
  46037. },
  46038. ]
  46039. ))
  46040. characterMakers.push(() => makeCharacter(
  46041. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46042. {
  46043. female: {
  46044. height: math.unit(7 + 4/12, "feet"),
  46045. weight: math.unit(243, "lb"),
  46046. name: "Female",
  46047. image: {
  46048. source: "./media/characters/kaya/female.svg",
  46049. extra: 975/898,
  46050. bottom: 34/1009
  46051. }
  46052. },
  46053. herm: {
  46054. height: math.unit(7 + 4/12, "feet"),
  46055. weight: math.unit(243, "lb"),
  46056. name: "Herm",
  46057. image: {
  46058. source: "./media/characters/kaya/herm.svg",
  46059. extra: 975/898,
  46060. bottom: 34/1009
  46061. }
  46062. },
  46063. },
  46064. [
  46065. {
  46066. name: "Normal",
  46067. height: math.unit(7 + 4/12, "feet"),
  46068. default: true
  46069. },
  46070. ]
  46071. ))
  46072. characterMakers.push(() => makeCharacter(
  46073. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46074. {
  46075. female: {
  46076. height: math.unit(9 + 4/12, "feet"),
  46077. weight: math.unit(398, "lb"),
  46078. name: "Female",
  46079. image: {
  46080. source: "./media/characters/kassandra/female.svg",
  46081. extra: 908/839,
  46082. bottom: 61/969
  46083. }
  46084. },
  46085. intersex: {
  46086. height: math.unit(9 + 4/12, "feet"),
  46087. weight: math.unit(398, "lb"),
  46088. name: "Intersex",
  46089. image: {
  46090. source: "./media/characters/kassandra/intersex.svg",
  46091. extra: 908/839,
  46092. bottom: 61/969
  46093. }
  46094. },
  46095. },
  46096. [
  46097. {
  46098. name: "Normal",
  46099. height: math.unit(9 + 4/12, "feet"),
  46100. default: true
  46101. },
  46102. ]
  46103. ))
  46104. characterMakers.push(() => makeCharacter(
  46105. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46106. {
  46107. front: {
  46108. height: math.unit(3, "meters"),
  46109. name: "Front",
  46110. image: {
  46111. source: "./media/characters/amy/front.svg",
  46112. extra: 1380/1343,
  46113. bottom: 70/1450
  46114. }
  46115. },
  46116. back: {
  46117. height: math.unit(3, "meters"),
  46118. name: "Back",
  46119. image: {
  46120. source: "./media/characters/amy/back.svg",
  46121. extra: 1380/1347,
  46122. bottom: 66/1446
  46123. }
  46124. },
  46125. },
  46126. [
  46127. {
  46128. name: "Normal",
  46129. height: math.unit(3, "meters"),
  46130. default: true
  46131. },
  46132. ]
  46133. ))
  46134. characterMakers.push(() => makeCharacter(
  46135. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46136. {
  46137. side: {
  46138. height: math.unit(47, "cm"),
  46139. weight: math.unit(10.8, "kg"),
  46140. name: "Side",
  46141. image: {
  46142. source: "./media/characters/alphaschakal/side.svg",
  46143. extra: 1058/568,
  46144. bottom: 62/1120
  46145. }
  46146. },
  46147. back: {
  46148. height: math.unit(78, "cm"),
  46149. weight: math.unit(10.8, "kg"),
  46150. name: "Back",
  46151. image: {
  46152. source: "./media/characters/alphaschakal/back.svg",
  46153. extra: 1102/942,
  46154. bottom: 185/1287
  46155. }
  46156. },
  46157. head: {
  46158. height: math.unit(28, "cm"),
  46159. name: "Head",
  46160. image: {
  46161. source: "./media/characters/alphaschakal/head.svg",
  46162. extra: 696/508,
  46163. bottom: 0/696
  46164. }
  46165. },
  46166. paw: {
  46167. height: math.unit(16, "cm"),
  46168. name: "Paw",
  46169. image: {
  46170. source: "./media/characters/alphaschakal/paw.svg"
  46171. }
  46172. },
  46173. },
  46174. [
  46175. {
  46176. name: "Normal",
  46177. height: math.unit(47, "cm"),
  46178. default: true
  46179. },
  46180. {
  46181. name: "Macro",
  46182. height: math.unit(340, "cm")
  46183. },
  46184. ]
  46185. ))
  46186. characterMakers.push(() => makeCharacter(
  46187. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46188. {
  46189. front: {
  46190. height: math.unit(36, "earths"),
  46191. name: "Front",
  46192. image: {
  46193. source: "./media/characters/ecobyss/front.svg",
  46194. extra: 1282/1215,
  46195. bottom: 11/1293
  46196. }
  46197. },
  46198. back: {
  46199. height: math.unit(36, "earths"),
  46200. name: "Back",
  46201. image: {
  46202. source: "./media/characters/ecobyss/back.svg",
  46203. extra: 1291/1222,
  46204. bottom: 8/1299
  46205. }
  46206. },
  46207. },
  46208. [
  46209. {
  46210. name: "Normal",
  46211. height: math.unit(36, "earths"),
  46212. default: true
  46213. },
  46214. ]
  46215. ))
  46216. characterMakers.push(() => makeCharacter(
  46217. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46218. {
  46219. front: {
  46220. height: math.unit(12, "feet"),
  46221. name: "Front",
  46222. image: {
  46223. source: "./media/characters/vasuk/front.svg",
  46224. extra: 1326/1207,
  46225. bottom: 64/1390
  46226. }
  46227. },
  46228. },
  46229. [
  46230. {
  46231. name: "Normal",
  46232. height: math.unit(12, "feet"),
  46233. default: true
  46234. },
  46235. ]
  46236. ))
  46237. characterMakers.push(() => makeCharacter(
  46238. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46239. {
  46240. side: {
  46241. height: math.unit(100, "feet"),
  46242. name: "Side",
  46243. image: {
  46244. source: "./media/characters/linneaus/side.svg",
  46245. extra: 987/807,
  46246. bottom: 47/1034
  46247. }
  46248. },
  46249. },
  46250. [
  46251. {
  46252. name: "Macro",
  46253. height: math.unit(100, "feet"),
  46254. default: true
  46255. },
  46256. ]
  46257. ))
  46258. characterMakers.push(() => makeCharacter(
  46259. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46260. {
  46261. front: {
  46262. height: math.unit(8, "feet"),
  46263. weight: math.unit(1200, "lb"),
  46264. name: "Front",
  46265. image: {
  46266. source: "./media/characters/nyterious-daligdig/front.svg",
  46267. extra: 1284/1094,
  46268. bottom: 84/1368
  46269. }
  46270. },
  46271. back: {
  46272. height: math.unit(8, "feet"),
  46273. weight: math.unit(1200, "lb"),
  46274. name: "Back",
  46275. image: {
  46276. source: "./media/characters/nyterious-daligdig/back.svg",
  46277. extra: 1301/1121,
  46278. bottom: 129/1430
  46279. }
  46280. },
  46281. mouth: {
  46282. height: math.unit(1.464, "feet"),
  46283. name: "Mouth",
  46284. image: {
  46285. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46286. }
  46287. },
  46288. },
  46289. [
  46290. {
  46291. name: "Small",
  46292. height: math.unit(8, "feet"),
  46293. default: true
  46294. },
  46295. {
  46296. name: "Normal",
  46297. height: math.unit(15, "feet")
  46298. },
  46299. {
  46300. name: "Macro",
  46301. height: math.unit(90, "feet")
  46302. },
  46303. ]
  46304. ))
  46305. characterMakers.push(() => makeCharacter(
  46306. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46307. {
  46308. front: {
  46309. height: math.unit(7 + 4/12, "feet"),
  46310. weight: math.unit(252, "lb"),
  46311. name: "Front",
  46312. image: {
  46313. source: "./media/characters/bandel/front.svg",
  46314. extra: 1946/1775,
  46315. bottom: 26/1972
  46316. }
  46317. },
  46318. back: {
  46319. height: math.unit(7 + 4/12, "feet"),
  46320. weight: math.unit(252, "lb"),
  46321. name: "Back",
  46322. image: {
  46323. source: "./media/characters/bandel/back.svg",
  46324. extra: 1940/1770,
  46325. bottom: 25/1965
  46326. }
  46327. },
  46328. maw: {
  46329. height: math.unit(2.15, "feet"),
  46330. name: "Maw",
  46331. image: {
  46332. source: "./media/characters/bandel/maw.svg"
  46333. }
  46334. },
  46335. stomach: {
  46336. height: math.unit(1.95, "feet"),
  46337. name: "Stomach",
  46338. image: {
  46339. source: "./media/characters/bandel/stomach.svg"
  46340. }
  46341. },
  46342. },
  46343. [
  46344. {
  46345. name: "Normal",
  46346. height: math.unit(7 + 4/12, "feet"),
  46347. default: true
  46348. },
  46349. ]
  46350. ))
  46351. characterMakers.push(() => makeCharacter(
  46352. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46353. {
  46354. front: {
  46355. height: math.unit(10 + 5/12, "feet"),
  46356. weight: math.unit(773.5, "kg"),
  46357. name: "Front",
  46358. image: {
  46359. source: "./media/characters/zed/front.svg",
  46360. extra: 987/941,
  46361. bottom: 52/1039
  46362. }
  46363. },
  46364. },
  46365. [
  46366. {
  46367. name: "Short",
  46368. height: math.unit(5 + 4/12, "feet")
  46369. },
  46370. {
  46371. name: "Average",
  46372. height: math.unit(10 + 5/12, "feet"),
  46373. default: true
  46374. },
  46375. {
  46376. name: "Mini-Macro",
  46377. height: math.unit(24 + 9/12, "feet")
  46378. },
  46379. {
  46380. name: "Macro",
  46381. height: math.unit(249, "feet")
  46382. },
  46383. {
  46384. name: "Mega-Macro",
  46385. height: math.unit(12490, "feet")
  46386. },
  46387. {
  46388. name: "Giga-Macro",
  46389. height: math.unit(24.9, "miles")
  46390. },
  46391. {
  46392. name: "Tera-Macro",
  46393. height: math.unit(24900, "miles")
  46394. },
  46395. {
  46396. name: "Cosmic Scale",
  46397. height: math.unit(38.9, "lightyears")
  46398. },
  46399. {
  46400. name: "Universal Scale",
  46401. height: math.unit(138e12, "lightyears")
  46402. },
  46403. ]
  46404. ))
  46405. characterMakers.push(() => makeCharacter(
  46406. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46407. {
  46408. front: {
  46409. height: math.unit(1561, "inches"),
  46410. name: "Front",
  46411. image: {
  46412. source: "./media/characters/ivan/front.svg",
  46413. extra: 1126/1071,
  46414. bottom: 26/1152
  46415. }
  46416. },
  46417. back: {
  46418. height: math.unit(1561, "inches"),
  46419. name: "Back",
  46420. image: {
  46421. source: "./media/characters/ivan/back.svg",
  46422. extra: 1134/1079,
  46423. bottom: 30/1164
  46424. }
  46425. },
  46426. },
  46427. [
  46428. {
  46429. name: "Normal",
  46430. height: math.unit(1561, "inches"),
  46431. default: true
  46432. },
  46433. ]
  46434. ))
  46435. characterMakers.push(() => makeCharacter(
  46436. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46437. {
  46438. front: {
  46439. height: math.unit(5 + 7/12, "feet"),
  46440. weight: math.unit(150, "lb"),
  46441. name: "Front",
  46442. image: {
  46443. source: "./media/characters/robin-arctic-hare/front.svg",
  46444. extra: 1148/974,
  46445. bottom: 20/1168
  46446. }
  46447. },
  46448. },
  46449. [
  46450. {
  46451. name: "Normal",
  46452. height: math.unit(5 + 7/12, "feet"),
  46453. default: true
  46454. },
  46455. ]
  46456. ))
  46457. characterMakers.push(() => makeCharacter(
  46458. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46459. {
  46460. side: {
  46461. height: math.unit(5, "feet"),
  46462. name: "Side",
  46463. image: {
  46464. source: "./media/characters/birch/side.svg",
  46465. extra: 985/796,
  46466. bottom: 111/1096
  46467. }
  46468. },
  46469. },
  46470. [
  46471. {
  46472. name: "Normal",
  46473. height: math.unit(5, "feet"),
  46474. default: true
  46475. },
  46476. ]
  46477. ))
  46478. characterMakers.push(() => makeCharacter(
  46479. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46480. {
  46481. front: {
  46482. height: math.unit(4, "feet"),
  46483. name: "Front",
  46484. image: {
  46485. source: "./media/characters/rasp/front.svg",
  46486. extra: 561/478,
  46487. bottom: 74/635
  46488. }
  46489. },
  46490. },
  46491. [
  46492. {
  46493. name: "Normal",
  46494. height: math.unit(4, "feet"),
  46495. default: true
  46496. },
  46497. ]
  46498. ))
  46499. //characters
  46500. function makeCharacters() {
  46501. const results = [];
  46502. characterMakers.forEach(character => {
  46503. results.push(character());
  46504. });
  46505. return results;
  46506. }