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

47752 строки
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. }
  1868. //species
  1869. function getSpeciesInfo(speciesList) {
  1870. let result = new Set();
  1871. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1872. result.add(entry)
  1873. });
  1874. return Array.from(result);
  1875. };
  1876. function getSpeciesInfoHelper(species) {
  1877. if (!speciesData[species]) {
  1878. console.warn(species + " doesn't exist");
  1879. return [];
  1880. }
  1881. if (speciesData[species].parents) {
  1882. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1883. } else {
  1884. return [species];
  1885. }
  1886. }
  1887. characterMakers.push(() => makeCharacter(
  1888. {
  1889. name: "Fen",
  1890. species: ["crux"],
  1891. description: {
  1892. title: "Bio",
  1893. text: "Very furry. Sheds on everything."
  1894. },
  1895. tags: [
  1896. "anthro",
  1897. "goo"
  1898. ]
  1899. },
  1900. {
  1901. front: {
  1902. height: math.unit(12, "feet"),
  1903. weight: math.unit(2400, "lb"),
  1904. name: "Front",
  1905. image: {
  1906. source: "./media/characters/fen/front.svg",
  1907. extra: 1804/1562,
  1908. bottom: 205/2009
  1909. }
  1910. },
  1911. diving: {
  1912. height: math.unit(4.9, "meters"),
  1913. weight: math.unit(2400, "lb"),
  1914. name: "Diving",
  1915. image: {
  1916. source: "./media/characters/fen/diving.svg"
  1917. }
  1918. },
  1919. goo: {
  1920. height: math.unit(12, "feet"),
  1921. weight: math.unit(3000, "lb"),
  1922. capacity: math.unit(6, "people"),
  1923. name: "Goo",
  1924. image: {
  1925. source: "./media/characters/fen/goo.svg",
  1926. extra: 1307/1071,
  1927. bottom: 134/1441
  1928. }
  1929. },
  1930. maw: {
  1931. height: math.unit(5.03, "feet"),
  1932. name: "Maw",
  1933. image: {
  1934. source: "./media/characters/fen/maw.svg"
  1935. }
  1936. },
  1937. gooCeiling: {
  1938. height: math.unit(6.6, "feet"),
  1939. weight: math.unit(3000, "lb"),
  1940. capacity: math.unit(6, "people"),
  1941. name: "Goo (Ceiling)",
  1942. image: {
  1943. source: "./media/characters/fen/goo-ceiling.svg"
  1944. }
  1945. },
  1946. back: {
  1947. height: math.unit(12, "feet"),
  1948. weight: math.unit(2400, "lb"),
  1949. name: "Back",
  1950. image: {
  1951. source: "./media/characters/fen/back.svg",
  1952. },
  1953. info: {
  1954. description: {
  1955. mode: "append",
  1956. text: "\n\nHe is not currently looking at you."
  1957. }
  1958. }
  1959. },
  1960. full: {
  1961. height: math.unit(1.6, "meter"),
  1962. weight: math.unit(3200, "lb"),
  1963. name: "Full",
  1964. image: {
  1965. source: "./media/characters/fen/full.svg",
  1966. extra: 1133/859,
  1967. bottom: 145/1278
  1968. },
  1969. info: {
  1970. description: {
  1971. mode: "append",
  1972. text: "\n\nMunch."
  1973. }
  1974. }
  1975. },
  1976. gooLounging: {
  1977. height: math.unit(4.53, "feet"),
  1978. weight: math.unit(3000, "lb"),
  1979. capacity: math.unit(6, "people"),
  1980. name: "Goo (Lounging)",
  1981. image: {
  1982. source: "./media/characters/fen/goo.svg",
  1983. bottom: 116 / 613
  1984. }
  1985. },
  1986. lounging: {
  1987. height: math.unit(10.52, "feet"),
  1988. weight: math.unit(2400, "lb"),
  1989. name: "Lounging",
  1990. image: {
  1991. source: "./media/characters/fen/lounging.svg"
  1992. }
  1993. },
  1994. },
  1995. [
  1996. {
  1997. name: "Small",
  1998. height: math.unit(2.2428, "meter")
  1999. },
  2000. {
  2001. name: "Normal",
  2002. height: math.unit(12, "feet"),
  2003. default: true,
  2004. },
  2005. {
  2006. name: "Big",
  2007. height: math.unit(20, "feet")
  2008. },
  2009. {
  2010. name: "Minimacro",
  2011. height: math.unit(40, "feet"),
  2012. info: {
  2013. description: {
  2014. mode: "append",
  2015. text: "\n\nTOO DAMN BIG"
  2016. }
  2017. }
  2018. },
  2019. {
  2020. name: "Macro",
  2021. height: math.unit(100, "feet"),
  2022. info: {
  2023. description: {
  2024. mode: "append",
  2025. text: "\n\nTOO DAMN BIG"
  2026. }
  2027. }
  2028. },
  2029. {
  2030. name: "Megamacro",
  2031. height: math.unit(2, "miles")
  2032. },
  2033. {
  2034. name: "Gigamacro",
  2035. height: math.unit(10, "earths")
  2036. },
  2037. ]
  2038. ))
  2039. characterMakers.push(() => makeCharacter(
  2040. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2041. {
  2042. front: {
  2043. height: math.unit(183, "cm"),
  2044. weight: math.unit(80, "kg"),
  2045. name: "Front",
  2046. image: {
  2047. source: "./media/characters/sofia-fluttertail/front.svg",
  2048. bottom: 0.01,
  2049. extra: 2154 / 2081
  2050. }
  2051. },
  2052. frontAlt: {
  2053. height: math.unit(183, "cm"),
  2054. weight: math.unit(80, "kg"),
  2055. name: "Front (alt)",
  2056. image: {
  2057. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2058. }
  2059. },
  2060. back: {
  2061. height: math.unit(183, "cm"),
  2062. weight: math.unit(80, "kg"),
  2063. name: "Back",
  2064. image: {
  2065. source: "./media/characters/sofia-fluttertail/back.svg"
  2066. }
  2067. },
  2068. kneeling: {
  2069. height: math.unit(125, "cm"),
  2070. weight: math.unit(80, "kg"),
  2071. name: "Kneeling",
  2072. image: {
  2073. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2074. extra: 1033 / 977,
  2075. bottom: 23.7 / 1057
  2076. }
  2077. },
  2078. maw: {
  2079. height: math.unit(183 / 5, "cm"),
  2080. name: "Maw",
  2081. image: {
  2082. source: "./media/characters/sofia-fluttertail/maw.svg"
  2083. }
  2084. },
  2085. mawcloseup: {
  2086. height: math.unit(183 / 5 * 0.41, "cm"),
  2087. name: "Maw (Closeup)",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2090. }
  2091. },
  2092. paws: {
  2093. height: math.unit(1.17, "feet"),
  2094. name: "Paws",
  2095. image: {
  2096. source: "./media/characters/sofia-fluttertail/paws.svg",
  2097. extra: 851 / 851,
  2098. bottom: 17 / 868
  2099. }
  2100. },
  2101. },
  2102. [
  2103. {
  2104. name: "Normal",
  2105. height: math.unit(1.83, "meter")
  2106. },
  2107. {
  2108. name: "Size Thief",
  2109. height: math.unit(18, "feet")
  2110. },
  2111. {
  2112. name: "50 Foot Collie",
  2113. height: math.unit(50, "feet")
  2114. },
  2115. {
  2116. name: "Macro",
  2117. height: math.unit(96, "feet"),
  2118. default: true
  2119. },
  2120. {
  2121. name: "Megamerger",
  2122. height: math.unit(650, "feet")
  2123. },
  2124. ]
  2125. ))
  2126. characterMakers.push(() => makeCharacter(
  2127. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2128. {
  2129. front: {
  2130. height: math.unit(7, "feet"),
  2131. weight: math.unit(100, "kg"),
  2132. name: "Front",
  2133. image: {
  2134. source: "./media/characters/march/front.svg",
  2135. extra: 1992/1851,
  2136. bottom: 39/2031
  2137. }
  2138. },
  2139. foot: {
  2140. height: math.unit(0.9, "feet"),
  2141. name: "Foot",
  2142. image: {
  2143. source: "./media/characters/march/foot.svg"
  2144. }
  2145. },
  2146. },
  2147. [
  2148. {
  2149. name: "Normal",
  2150. height: math.unit(7.9, "feet")
  2151. },
  2152. {
  2153. name: "Macro",
  2154. height: math.unit(220, "meters")
  2155. },
  2156. {
  2157. name: "Megamacro",
  2158. height: math.unit(2.98, "km"),
  2159. default: true
  2160. },
  2161. {
  2162. name: "Gigamacro",
  2163. height: math.unit(15963, "km")
  2164. },
  2165. {
  2166. name: "Teramacro",
  2167. height: math.unit(2980000000, "km")
  2168. },
  2169. {
  2170. name: "Examacro",
  2171. height: math.unit(250, "parsecs")
  2172. },
  2173. ]
  2174. ))
  2175. characterMakers.push(() => makeCharacter(
  2176. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2177. {
  2178. front: {
  2179. height: math.unit(6, "feet"),
  2180. weight: math.unit(60, "kg"),
  2181. name: "Front",
  2182. image: {
  2183. source: "./media/characters/noir/front.svg",
  2184. extra: 1,
  2185. bottom: 0.032
  2186. }
  2187. },
  2188. },
  2189. [
  2190. {
  2191. name: "Normal",
  2192. height: math.unit(6.6, "feet")
  2193. },
  2194. {
  2195. name: "Macro",
  2196. height: math.unit(500, "feet")
  2197. },
  2198. {
  2199. name: "Megamacro",
  2200. height: math.unit(2.5, "km"),
  2201. default: true
  2202. },
  2203. {
  2204. name: "Gigamacro",
  2205. height: math.unit(22500, "km")
  2206. },
  2207. {
  2208. name: "Teramacro",
  2209. height: math.unit(2500000000, "km")
  2210. },
  2211. {
  2212. name: "Examacro",
  2213. height: math.unit(200, "parsecs")
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(7, "feet"),
  2222. weight: math.unit(100, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/okuri/front.svg",
  2226. extra: 1,
  2227. bottom: 0.037
  2228. }
  2229. },
  2230. back: {
  2231. height: math.unit(7, "feet"),
  2232. weight: math.unit(100, "kg"),
  2233. name: "Back",
  2234. image: {
  2235. source: "./media/characters/okuri/back.svg",
  2236. extra: 1,
  2237. bottom: 0.007
  2238. }
  2239. },
  2240. },
  2241. [
  2242. {
  2243. name: "Megamacro",
  2244. height: math.unit(100, "miles"),
  2245. default: true
  2246. },
  2247. ]
  2248. ))
  2249. characterMakers.push(() => makeCharacter(
  2250. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2251. {
  2252. front: {
  2253. height: math.unit(7, "feet"),
  2254. weight: math.unit(100, "kg"),
  2255. name: "Front",
  2256. image: {
  2257. source: "./media/characters/manny/front.svg",
  2258. extra: 1,
  2259. bottom: 0.06
  2260. }
  2261. },
  2262. back: {
  2263. height: math.unit(7, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Back",
  2266. image: {
  2267. source: "./media/characters/manny/back.svg",
  2268. extra: 1,
  2269. bottom: 0.014
  2270. }
  2271. },
  2272. },
  2273. [
  2274. {
  2275. name: "Normal",
  2276. height: math.unit(7, "feet"),
  2277. },
  2278. {
  2279. name: "Macro",
  2280. height: math.unit(78, "feet"),
  2281. default: true
  2282. },
  2283. {
  2284. name: "Macro+",
  2285. height: math.unit(300, "meters")
  2286. },
  2287. {
  2288. name: "Macro++",
  2289. height: math.unit(2400, "meters")
  2290. },
  2291. {
  2292. name: "Megamacro",
  2293. height: math.unit(5167, "meters")
  2294. },
  2295. {
  2296. name: "Gigamacro",
  2297. height: math.unit(41769, "miles")
  2298. },
  2299. ]
  2300. ))
  2301. characterMakers.push(() => makeCharacter(
  2302. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2303. {
  2304. front: {
  2305. height: math.unit(7, "feet"),
  2306. weight: math.unit(100, "kg"),
  2307. name: "Front",
  2308. image: {
  2309. source: "./media/characters/adake/front-1.svg"
  2310. }
  2311. },
  2312. frontAlt: {
  2313. height: math.unit(7, "feet"),
  2314. weight: math.unit(100, "kg"),
  2315. name: "Front (Alt)",
  2316. image: {
  2317. source: "./media/characters/adake/front-2.svg",
  2318. extra: 1,
  2319. bottom: 0.01
  2320. }
  2321. },
  2322. back: {
  2323. height: math.unit(7, "feet"),
  2324. weight: math.unit(100, "kg"),
  2325. name: "Back",
  2326. image: {
  2327. source: "./media/characters/adake/back.svg",
  2328. }
  2329. },
  2330. kneel: {
  2331. height: math.unit(5.385, "feet"),
  2332. weight: math.unit(100, "kg"),
  2333. name: "Kneeling",
  2334. image: {
  2335. source: "./media/characters/adake/kneel.svg",
  2336. bottom: 0.052
  2337. }
  2338. },
  2339. },
  2340. [
  2341. {
  2342. name: "Normal",
  2343. height: math.unit(7, "feet"),
  2344. },
  2345. {
  2346. name: "Macro",
  2347. height: math.unit(78, "feet"),
  2348. default: true
  2349. },
  2350. {
  2351. name: "Macro+",
  2352. height: math.unit(300, "meters")
  2353. },
  2354. {
  2355. name: "Macro++",
  2356. height: math.unit(2400, "meters")
  2357. },
  2358. {
  2359. name: "Megamacro",
  2360. height: math.unit(5167, "meters")
  2361. },
  2362. {
  2363. name: "Gigamacro",
  2364. height: math.unit(41769, "miles")
  2365. },
  2366. ]
  2367. ))
  2368. characterMakers.push(() => makeCharacter(
  2369. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2370. {
  2371. front: {
  2372. height: math.unit(1.65, "meters"),
  2373. weight: math.unit(50, "kg"),
  2374. name: "Front",
  2375. image: {
  2376. source: "./media/characters/elijah/front.svg",
  2377. extra: 858 / 830,
  2378. bottom: 95.5 / 953.8559
  2379. }
  2380. },
  2381. back: {
  2382. height: math.unit(1.65, "meters"),
  2383. weight: math.unit(50, "kg"),
  2384. name: "Back",
  2385. image: {
  2386. source: "./media/characters/elijah/back.svg",
  2387. extra: 895 / 850,
  2388. bottom: 5.3 / 897.956
  2389. }
  2390. },
  2391. frontNsfw: {
  2392. height: math.unit(1.65, "meters"),
  2393. weight: math.unit(50, "kg"),
  2394. name: "Front (NSFW)",
  2395. image: {
  2396. source: "./media/characters/elijah/front-nsfw.svg",
  2397. extra: 858 / 830,
  2398. bottom: 95.5 / 953.8559
  2399. }
  2400. },
  2401. backNsfw: {
  2402. height: math.unit(1.65, "meters"),
  2403. weight: math.unit(50, "kg"),
  2404. name: "Back (NSFW)",
  2405. image: {
  2406. source: "./media/characters/elijah/back-nsfw.svg",
  2407. extra: 895 / 850,
  2408. bottom: 5.3 / 897.956
  2409. }
  2410. },
  2411. dick: {
  2412. height: math.unit(1, "feet"),
  2413. name: "Dick",
  2414. image: {
  2415. source: "./media/characters/elijah/dick.svg"
  2416. }
  2417. },
  2418. beakOpen: {
  2419. height: math.unit(1.25, "feet"),
  2420. name: "Beak (Open)",
  2421. image: {
  2422. source: "./media/characters/elijah/beak-open.svg"
  2423. }
  2424. },
  2425. beakShut: {
  2426. height: math.unit(1.25, "feet"),
  2427. name: "Beak (Shut)",
  2428. image: {
  2429. source: "./media/characters/elijah/beak-shut.svg"
  2430. }
  2431. },
  2432. footFlexing: {
  2433. height: math.unit(1.61, "feet"),
  2434. name: "Foot (Flexing)",
  2435. image: {
  2436. source: "./media/characters/elijah/foot-flexing.svg"
  2437. }
  2438. },
  2439. footStepping: {
  2440. height: math.unit(1.44, "feet"),
  2441. name: "Foot (Stepping)",
  2442. image: {
  2443. source: "./media/characters/elijah/foot-stepping.svg"
  2444. }
  2445. },
  2446. plantigradeLeg: {
  2447. height: math.unit(2.34, "feet"),
  2448. name: "Plantigrade Leg",
  2449. image: {
  2450. source: "./media/characters/elijah/plantigrade-leg.svg"
  2451. }
  2452. },
  2453. plantigradeFootLeft: {
  2454. height: math.unit(0.9, "feet"),
  2455. name: "Plantigrade Foot (Left)",
  2456. image: {
  2457. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2458. }
  2459. },
  2460. plantigradeFootRight: {
  2461. height: math.unit(0.9, "feet"),
  2462. name: "Plantigrade Foot (Right)",
  2463. image: {
  2464. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2465. }
  2466. },
  2467. },
  2468. [
  2469. {
  2470. name: "Normal",
  2471. height: math.unit(1.65, "meters")
  2472. },
  2473. {
  2474. name: "Macro",
  2475. height: math.unit(55, "meters"),
  2476. default: true
  2477. },
  2478. {
  2479. name: "Macro+",
  2480. height: math.unit(105, "meters")
  2481. },
  2482. ]
  2483. ))
  2484. characterMakers.push(() => makeCharacter(
  2485. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2486. {
  2487. front: {
  2488. height: math.unit(7 + 2/12, "feet"),
  2489. weight: math.unit(320, "kg"),
  2490. name: "Front",
  2491. image: {
  2492. source: "./media/characters/rai/front.svg",
  2493. extra: 1802/1696,
  2494. bottom: 68/1870
  2495. }
  2496. },
  2497. frontDressed: {
  2498. height: math.unit(7 + 2/12, "feet"),
  2499. weight: math.unit(320, "kg"),
  2500. name: "Front (Dressed)",
  2501. image: {
  2502. source: "./media/characters/rai/front-dressed.svg",
  2503. extra: 1802/1696,
  2504. bottom: 68/1870
  2505. }
  2506. },
  2507. side: {
  2508. height: math.unit(7 + 2/12, "feet"),
  2509. weight: math.unit(320, "kg"),
  2510. name: "Side",
  2511. image: {
  2512. source: "./media/characters/rai/side.svg",
  2513. extra: 1789/1710,
  2514. bottom: 115/1904
  2515. }
  2516. },
  2517. back: {
  2518. height: math.unit(7 + 2/12, "feet"),
  2519. weight: math.unit(320, "kg"),
  2520. name: "Back",
  2521. image: {
  2522. source: "./media/characters/rai/back.svg",
  2523. extra: 1770/1707,
  2524. bottom: 28/1798
  2525. }
  2526. },
  2527. feral: {
  2528. height: math.unit(9.5, "feet"),
  2529. weight: math.unit(640, "kg"),
  2530. name: "Feral",
  2531. image: {
  2532. source: "./media/characters/rai/feral.svg",
  2533. extra: 945/553,
  2534. bottom: 176/1121
  2535. }
  2536. },
  2537. dragon: {
  2538. height: math.unit(23, "feet"),
  2539. weight: math.unit(50000, "lb"),
  2540. name: "Dragon",
  2541. image: {
  2542. source: "./media/characters/rai/dragon.svg",
  2543. extra: 2498 / 2030,
  2544. bottom: 85.2 / 2584
  2545. }
  2546. },
  2547. maw: {
  2548. height: math.unit(1.69, "feet"),
  2549. name: "Maw",
  2550. image: {
  2551. source: "./media/characters/rai/maw.svg"
  2552. }
  2553. },
  2554. },
  2555. [
  2556. {
  2557. name: "Normal",
  2558. height: math.unit(7 + 2/12, "feet")
  2559. },
  2560. {
  2561. name: "Big",
  2562. height: math.unit(11, "feet")
  2563. },
  2564. {
  2565. name: "Macro",
  2566. height: math.unit(302, "feet"),
  2567. default: true
  2568. },
  2569. ]
  2570. ))
  2571. characterMakers.push(() => makeCharacter(
  2572. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2573. {
  2574. frontDressed: {
  2575. height: math.unit(216, "feet"),
  2576. weight: math.unit(7000000, "lb"),
  2577. name: "Front (Dressed)",
  2578. image: {
  2579. source: "./media/characters/jazzy/front-dressed.svg",
  2580. extra: 2738 / 2651,
  2581. bottom: 41.8 / 2786
  2582. }
  2583. },
  2584. backDressed: {
  2585. height: math.unit(216, "feet"),
  2586. weight: math.unit(7000000, "lb"),
  2587. name: "Back (Dressed)",
  2588. image: {
  2589. source: "./media/characters/jazzy/back-dressed.svg",
  2590. extra: 2775 / 2673,
  2591. bottom: 36.8 / 2817
  2592. }
  2593. },
  2594. front: {
  2595. height: math.unit(216, "feet"),
  2596. weight: math.unit(7000000, "lb"),
  2597. name: "Front",
  2598. image: {
  2599. source: "./media/characters/jazzy/front.svg",
  2600. extra: 2738 / 2651,
  2601. bottom: 41.8 / 2786
  2602. }
  2603. },
  2604. back: {
  2605. height: math.unit(216, "feet"),
  2606. weight: math.unit(7000000, "lb"),
  2607. name: "Back",
  2608. image: {
  2609. source: "./media/characters/jazzy/back.svg",
  2610. extra: 2775 / 2673,
  2611. bottom: 36.8 / 2817
  2612. }
  2613. },
  2614. maw: {
  2615. height: math.unit(20, "feet"),
  2616. name: "Maw",
  2617. image: {
  2618. source: "./media/characters/jazzy/maw.svg"
  2619. }
  2620. },
  2621. paws: {
  2622. height: math.unit(27.5, "feet"),
  2623. name: "Paws",
  2624. image: {
  2625. source: "./media/characters/jazzy/paws.svg"
  2626. }
  2627. },
  2628. eye: {
  2629. height: math.unit(4.4, "feet"),
  2630. name: "Eye",
  2631. image: {
  2632. source: "./media/characters/jazzy/eye.svg"
  2633. }
  2634. },
  2635. droneOffense: {
  2636. height: math.unit(9.5, "inches"),
  2637. name: "Drone (Offense)",
  2638. image: {
  2639. source: "./media/characters/jazzy/drone-offense.svg"
  2640. }
  2641. },
  2642. droneRecon: {
  2643. height: math.unit(9.5, "inches"),
  2644. name: "Drone (Recon)",
  2645. image: {
  2646. source: "./media/characters/jazzy/drone-recon.svg"
  2647. }
  2648. },
  2649. droneDefense: {
  2650. height: math.unit(9.5, "inches"),
  2651. name: "Drone (Defense)",
  2652. image: {
  2653. source: "./media/characters/jazzy/drone-defense.svg"
  2654. }
  2655. },
  2656. },
  2657. [
  2658. {
  2659. name: "Macro",
  2660. height: math.unit(216, "feet"),
  2661. default: true
  2662. },
  2663. ]
  2664. ))
  2665. characterMakers.push(() => makeCharacter(
  2666. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2667. {
  2668. front: {
  2669. height: math.unit(9 + 6/12, "feet"),
  2670. weight: math.unit(700, "lb"),
  2671. name: "Front",
  2672. image: {
  2673. source: "./media/characters/flamm/front.svg",
  2674. extra: 1751/1632,
  2675. bottom: 46/1797
  2676. }
  2677. },
  2678. buff: {
  2679. height: math.unit(9 + 6/12, "feet"),
  2680. weight: math.unit(950, "lb"),
  2681. name: "Buff",
  2682. image: {
  2683. source: "./media/characters/flamm/buff.svg",
  2684. extra: 3018/2874,
  2685. bottom: 221/3239
  2686. }
  2687. },
  2688. },
  2689. [
  2690. {
  2691. name: "Normal",
  2692. height: math.unit(9.5, "feet")
  2693. },
  2694. {
  2695. name: "Macro",
  2696. height: math.unit(200, "feet"),
  2697. default: true
  2698. },
  2699. ]
  2700. ))
  2701. characterMakers.push(() => makeCharacter(
  2702. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2703. {
  2704. front: {
  2705. height: math.unit(5 + 3/12, "feet"),
  2706. weight: math.unit(60, "kg"),
  2707. name: "Front",
  2708. image: {
  2709. source: "./media/characters/zephiro/front.svg",
  2710. extra: 2309 / 2162,
  2711. bottom: 0.069
  2712. }
  2713. },
  2714. side: {
  2715. height: math.unit(5 + 3/12, "feet"),
  2716. weight: math.unit(60, "kg"),
  2717. name: "Side",
  2718. image: {
  2719. source: "./media/characters/zephiro/side.svg",
  2720. extra: 2403 / 2279,
  2721. bottom: 0.015
  2722. }
  2723. },
  2724. back: {
  2725. height: math.unit(5 + 3/12, "feet"),
  2726. weight: math.unit(60, "kg"),
  2727. name: "Back",
  2728. image: {
  2729. source: "./media/characters/zephiro/back.svg",
  2730. extra: 2373 / 2244,
  2731. bottom: 0.013
  2732. }
  2733. },
  2734. hand: {
  2735. height: math.unit(0.68, "feet"),
  2736. name: "Hand",
  2737. image: {
  2738. source: "./media/characters/zephiro/hand.svg"
  2739. }
  2740. },
  2741. paw: {
  2742. height: math.unit(1, "feet"),
  2743. name: "Paw",
  2744. image: {
  2745. source: "./media/characters/zephiro/paw.svg"
  2746. }
  2747. },
  2748. beans: {
  2749. height: math.unit(0.93, "feet"),
  2750. name: "Beans",
  2751. image: {
  2752. source: "./media/characters/zephiro/beans.svg"
  2753. }
  2754. },
  2755. },
  2756. [
  2757. {
  2758. name: "Micro",
  2759. height: math.unit(3, "inches")
  2760. },
  2761. {
  2762. name: "Normal",
  2763. height: math.unit(5 + 3 / 12, "feet"),
  2764. default: true
  2765. },
  2766. {
  2767. name: "Macro",
  2768. height: math.unit(118, "feet")
  2769. },
  2770. ]
  2771. ))
  2772. characterMakers.push(() => makeCharacter(
  2773. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2774. {
  2775. front: {
  2776. height: math.unit(5, "feet"),
  2777. weight: math.unit(90, "kg"),
  2778. name: "Front",
  2779. image: {
  2780. source: "./media/characters/fory/front.svg",
  2781. extra: 2862 / 2674,
  2782. bottom: 180 / 3043.8
  2783. }
  2784. },
  2785. back: {
  2786. height: math.unit(5, "feet"),
  2787. weight: math.unit(90, "kg"),
  2788. name: "Back",
  2789. image: {
  2790. source: "./media/characters/fory/back.svg",
  2791. extra: 2962 / 2791,
  2792. bottom: 106 / 3071.8
  2793. }
  2794. },
  2795. foot: {
  2796. height: math.unit(2.14, "feet"),
  2797. name: "Foot",
  2798. image: {
  2799. source: "./media/characters/fory/foot.svg"
  2800. }
  2801. },
  2802. },
  2803. [
  2804. {
  2805. name: "Normal",
  2806. height: math.unit(5, "feet")
  2807. },
  2808. {
  2809. name: "Macro",
  2810. height: math.unit(50, "feet"),
  2811. default: true
  2812. },
  2813. {
  2814. name: "Megamacro",
  2815. height: math.unit(10, "miles")
  2816. },
  2817. {
  2818. name: "Gigamacro",
  2819. height: math.unit(5, "earths")
  2820. },
  2821. ]
  2822. ))
  2823. characterMakers.push(() => makeCharacter(
  2824. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2825. {
  2826. front: {
  2827. height: math.unit(7, "feet"),
  2828. weight: math.unit(90, "kg"),
  2829. name: "Front",
  2830. image: {
  2831. source: "./media/characters/kurrikage/front.svg",
  2832. extra: 1845/1733,
  2833. bottom: 119/1964
  2834. }
  2835. },
  2836. back: {
  2837. height: math.unit(7, "feet"),
  2838. weight: math.unit(90, "kg"),
  2839. name: "Back",
  2840. image: {
  2841. source: "./media/characters/kurrikage/back.svg",
  2842. extra: 1790/1677,
  2843. bottom: 61/1851
  2844. }
  2845. },
  2846. dressed: {
  2847. height: math.unit(7, "feet"),
  2848. weight: math.unit(90, "kg"),
  2849. name: "Dressed",
  2850. image: {
  2851. source: "./media/characters/kurrikage/dressed.svg",
  2852. extra: 1845/1733,
  2853. bottom: 119/1964
  2854. }
  2855. },
  2856. foot: {
  2857. height: math.unit(1.5, "feet"),
  2858. name: "Foot",
  2859. image: {
  2860. source: "./media/characters/kurrikage/foot.svg"
  2861. }
  2862. },
  2863. staff: {
  2864. height: math.unit(6.7, "feet"),
  2865. name: "Staff",
  2866. image: {
  2867. source: "./media/characters/kurrikage/staff.svg"
  2868. }
  2869. },
  2870. peek: {
  2871. height: math.unit(1.05, "feet"),
  2872. name: "Peeking",
  2873. image: {
  2874. source: "./media/characters/kurrikage/peek.svg",
  2875. bottom: 0.08
  2876. }
  2877. },
  2878. },
  2879. [
  2880. {
  2881. name: "Normal",
  2882. height: math.unit(12, "feet"),
  2883. default: true
  2884. },
  2885. {
  2886. name: "Big",
  2887. height: math.unit(20, "feet")
  2888. },
  2889. {
  2890. name: "Macro",
  2891. height: math.unit(500, "feet")
  2892. },
  2893. {
  2894. name: "Megamacro",
  2895. height: math.unit(20, "miles")
  2896. },
  2897. ]
  2898. ))
  2899. characterMakers.push(() => makeCharacter(
  2900. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2901. {
  2902. front: {
  2903. height: math.unit(6, "feet"),
  2904. weight: math.unit(75, "kg"),
  2905. name: "Front",
  2906. image: {
  2907. source: "./media/characters/shingo/front.svg",
  2908. extra: 1900/1825,
  2909. bottom: 82/1982
  2910. }
  2911. },
  2912. side: {
  2913. height: math.unit(6, "feet"),
  2914. weight: math.unit(75, "kg"),
  2915. name: "Side",
  2916. image: {
  2917. source: "./media/characters/shingo/side.svg",
  2918. extra: 1930/1865,
  2919. bottom: 16/1946
  2920. }
  2921. },
  2922. back: {
  2923. height: math.unit(6, "feet"),
  2924. weight: math.unit(75, "kg"),
  2925. name: "Back",
  2926. image: {
  2927. source: "./media/characters/shingo/back.svg",
  2928. extra: 1922/1852,
  2929. bottom: 16/1938
  2930. }
  2931. },
  2932. frontDressed: {
  2933. height: math.unit(6, "feet"),
  2934. weight: math.unit(150, "lb"),
  2935. name: "Front-dressed",
  2936. image: {
  2937. source: "./media/characters/shingo/front-dressed.svg",
  2938. extra: 1900/1825,
  2939. bottom: 82/1982
  2940. }
  2941. },
  2942. paw: {
  2943. height: math.unit(1.29, "feet"),
  2944. name: "Paw",
  2945. image: {
  2946. source: "./media/characters/shingo/paw.svg"
  2947. }
  2948. },
  2949. hand: {
  2950. height: math.unit(1.07, "feet"),
  2951. name: "Hand",
  2952. image: {
  2953. source: "./media/characters/shingo/hand.svg"
  2954. }
  2955. },
  2956. frontAlt: {
  2957. height: math.unit(6, "feet"),
  2958. weight: math.unit(75, "kg"),
  2959. name: "Front (Alt)",
  2960. image: {
  2961. source: "./media/characters/shingo/front-alt.svg",
  2962. extra: 3511 / 3338,
  2963. bottom: 0.005
  2964. }
  2965. },
  2966. frontAlt2: {
  2967. height: math.unit(6, "feet"),
  2968. weight: math.unit(75, "kg"),
  2969. name: "Front (Alt 2)",
  2970. image: {
  2971. source: "./media/characters/shingo/front-alt-2.svg",
  2972. extra: 706/681,
  2973. bottom: 11/717
  2974. }
  2975. },
  2976. pawAlt: {
  2977. height: math.unit(1, "feet"),
  2978. name: "Paw (Alt)",
  2979. image: {
  2980. source: "./media/characters/shingo/paw-alt.svg"
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Micro",
  2987. height: math.unit(4, "inches")
  2988. },
  2989. {
  2990. name: "Normal",
  2991. height: math.unit(6, "feet"),
  2992. default: true
  2993. },
  2994. {
  2995. name: "Macro",
  2996. height: math.unit(108, "feet")
  2997. },
  2998. {
  2999. name: "Macro+",
  3000. height: math.unit(1500, "feet")
  3001. },
  3002. ]
  3003. ))
  3004. characterMakers.push(() => makeCharacter(
  3005. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3006. {
  3007. side: {
  3008. height: math.unit(6, "feet"),
  3009. weight: math.unit(75, "kg"),
  3010. name: "Side",
  3011. image: {
  3012. source: "./media/characters/aigey/side.svg"
  3013. }
  3014. },
  3015. },
  3016. [
  3017. {
  3018. name: "Macro",
  3019. height: math.unit(200, "feet"),
  3020. default: true
  3021. },
  3022. {
  3023. name: "Megamacro",
  3024. height: math.unit(100, "miles")
  3025. },
  3026. ]
  3027. )
  3028. )
  3029. characterMakers.push(() => makeCharacter(
  3030. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3031. {
  3032. front: {
  3033. height: math.unit(5 + 5 / 12, "feet"),
  3034. weight: math.unit(75, "kg"),
  3035. name: "Front",
  3036. image: {
  3037. source: "./media/characters/natasha/front.svg",
  3038. extra: 859 / 824,
  3039. bottom: 23 / 879.6
  3040. }
  3041. },
  3042. frontNsfw: {
  3043. height: math.unit(5 + 5 / 12, "feet"),
  3044. weight: math.unit(75, "kg"),
  3045. name: "Front (NSFW)",
  3046. image: {
  3047. source: "./media/characters/natasha/front-nsfw.svg",
  3048. extra: 859 / 824,
  3049. bottom: 23 / 879.6
  3050. }
  3051. },
  3052. frontErect: {
  3053. height: math.unit(5 + 5 / 12, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Front (Erect)",
  3056. image: {
  3057. source: "./media/characters/natasha/front-erect.svg",
  3058. extra: 859 / 824,
  3059. bottom: 23 / 879.6
  3060. }
  3061. },
  3062. back: {
  3063. height: math.unit(5 + 5 / 12, "feet"),
  3064. weight: math.unit(75, "kg"),
  3065. name: "Back",
  3066. image: {
  3067. source: "./media/characters/natasha/back.svg",
  3068. extra: 887.9 / 852.6,
  3069. bottom: 9.7 / 896.4
  3070. }
  3071. },
  3072. backAlt: {
  3073. height: math.unit(5 + 5 / 12, "feet"),
  3074. weight: math.unit(75, "kg"),
  3075. name: "Back (Alt)",
  3076. image: {
  3077. source: "./media/characters/natasha/back-alt.svg",
  3078. extra: 1236.7 / 1192,
  3079. bottom: 22.3 / 1258.2
  3080. }
  3081. },
  3082. dick: {
  3083. height: math.unit(1.772, "feet"),
  3084. name: "Dick",
  3085. image: {
  3086. source: "./media/characters/natasha/dick.svg"
  3087. }
  3088. },
  3089. paw: {
  3090. height: math.unit(0.250, "meters"),
  3091. name: "Paw",
  3092. image: {
  3093. source: "./media/characters/natasha/paw.svg"
  3094. }
  3095. },
  3096. },
  3097. [
  3098. {
  3099. name: "Normal",
  3100. height: math.unit(5 + 5 / 12, "feet")
  3101. },
  3102. {
  3103. name: "Large",
  3104. height: math.unit(12, "feet")
  3105. },
  3106. {
  3107. name: "Macro",
  3108. height: math.unit(100, "feet"),
  3109. default: true
  3110. },
  3111. {
  3112. name: "Macro+",
  3113. height: math.unit(260, "feet")
  3114. },
  3115. {
  3116. name: "Macro++",
  3117. height: math.unit(1, "mile")
  3118. },
  3119. ]
  3120. ))
  3121. characterMakers.push(() => makeCharacter(
  3122. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3123. {
  3124. front: {
  3125. height: math.unit(6, "feet"),
  3126. weight: math.unit(75, "kg"),
  3127. name: "Front",
  3128. image: {
  3129. source: "./media/characters/malik/front.svg"
  3130. }
  3131. },
  3132. side: {
  3133. height: math.unit(6, "feet"),
  3134. weight: math.unit(75, "kg"),
  3135. name: "Side",
  3136. image: {
  3137. source: "./media/characters/malik/side.svg",
  3138. extra: 1.1539
  3139. }
  3140. },
  3141. back: {
  3142. height: math.unit(6, "feet"),
  3143. weight: math.unit(75, "kg"),
  3144. name: "Back",
  3145. image: {
  3146. source: "./media/characters/malik/back.svg"
  3147. }
  3148. },
  3149. },
  3150. [
  3151. {
  3152. name: "Macro",
  3153. height: math.unit(156, "feet"),
  3154. default: true
  3155. },
  3156. {
  3157. name: "Macro+",
  3158. height: math.unit(1188, "feet")
  3159. },
  3160. ]
  3161. ))
  3162. characterMakers.push(() => makeCharacter(
  3163. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3164. {
  3165. front: {
  3166. height: math.unit(6, "feet"),
  3167. weight: math.unit(75, "kg"),
  3168. name: "Front",
  3169. image: {
  3170. source: "./media/characters/sefer/front.svg",
  3171. extra: 848 / 659,
  3172. bottom: 28.3 / 876.442
  3173. }
  3174. },
  3175. back: {
  3176. height: math.unit(6, "feet"),
  3177. weight: math.unit(75, "kg"),
  3178. name: "Back",
  3179. image: {
  3180. source: "./media/characters/sefer/back.svg",
  3181. extra: 864 / 695,
  3182. bottom: 10 / 871
  3183. }
  3184. },
  3185. frontDressed: {
  3186. height: math.unit(6, "feet"),
  3187. weight: math.unit(75, "kg"),
  3188. name: "Front (Dressed)",
  3189. image: {
  3190. source: "./media/characters/sefer/front-dressed.svg",
  3191. extra: 839 / 653,
  3192. bottom: 37.6 / 878
  3193. }
  3194. },
  3195. },
  3196. [
  3197. {
  3198. name: "Normal",
  3199. height: math.unit(6, "feet"),
  3200. default: true
  3201. },
  3202. ]
  3203. ))
  3204. characterMakers.push(() => makeCharacter(
  3205. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3206. {
  3207. body: {
  3208. height: math.unit(2.2428, "meter"),
  3209. weight: math.unit(124.738, "kg"),
  3210. name: "Body",
  3211. image: {
  3212. extra: 1225 / 1050,
  3213. source: "./media/characters/north/front.svg"
  3214. }
  3215. }
  3216. },
  3217. [
  3218. {
  3219. name: "Micro",
  3220. height: math.unit(4, "inches")
  3221. },
  3222. {
  3223. name: "Macro",
  3224. height: math.unit(63, "meters")
  3225. },
  3226. {
  3227. name: "Megamacro",
  3228. height: math.unit(101, "miles"),
  3229. default: true
  3230. }
  3231. ]
  3232. ))
  3233. characterMakers.push(() => makeCharacter(
  3234. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3235. {
  3236. angled: {
  3237. height: math.unit(4, "meter"),
  3238. weight: math.unit(150, "kg"),
  3239. name: "Angled",
  3240. image: {
  3241. source: "./media/characters/talan/angled-sfw.svg",
  3242. bottom: 29 / 3734
  3243. }
  3244. },
  3245. angledNsfw: {
  3246. height: math.unit(4, "meter"),
  3247. weight: math.unit(150, "kg"),
  3248. name: "Angled (NSFW)",
  3249. image: {
  3250. source: "./media/characters/talan/angled-nsfw.svg",
  3251. bottom: 29 / 3734
  3252. }
  3253. },
  3254. frontNsfw: {
  3255. height: math.unit(4, "meter"),
  3256. weight: math.unit(150, "kg"),
  3257. name: "Front (NSFW)",
  3258. image: {
  3259. source: "./media/characters/talan/front-nsfw.svg",
  3260. bottom: 29 / 3734
  3261. }
  3262. },
  3263. sideNsfw: {
  3264. height: math.unit(4, "meter"),
  3265. weight: math.unit(150, "kg"),
  3266. name: "Side (NSFW)",
  3267. image: {
  3268. source: "./media/characters/talan/side-nsfw.svg",
  3269. bottom: 29 / 3734
  3270. }
  3271. },
  3272. back: {
  3273. height: math.unit(4, "meter"),
  3274. weight: math.unit(150, "kg"),
  3275. name: "Back",
  3276. image: {
  3277. source: "./media/characters/talan/back.svg"
  3278. }
  3279. },
  3280. dickBottom: {
  3281. height: math.unit(0.621, "meter"),
  3282. name: "Dick (Bottom)",
  3283. image: {
  3284. source: "./media/characters/talan/dick-bottom.svg"
  3285. }
  3286. },
  3287. dickTop: {
  3288. height: math.unit(0.621, "meter"),
  3289. name: "Dick (Top)",
  3290. image: {
  3291. source: "./media/characters/talan/dick-top.svg"
  3292. }
  3293. },
  3294. dickSide: {
  3295. height: math.unit(0.305, "meter"),
  3296. name: "Dick (Side)",
  3297. image: {
  3298. source: "./media/characters/talan/dick-side.svg"
  3299. }
  3300. },
  3301. dickFront: {
  3302. height: math.unit(0.305, "meter"),
  3303. name: "Dick (Front)",
  3304. image: {
  3305. source: "./media/characters/talan/dick-front.svg"
  3306. }
  3307. },
  3308. },
  3309. [
  3310. {
  3311. name: "Normal",
  3312. height: math.unit(4, "meters")
  3313. },
  3314. {
  3315. name: "Macro",
  3316. height: math.unit(100, "meters")
  3317. },
  3318. {
  3319. name: "Megamacro",
  3320. height: math.unit(2, "miles"),
  3321. default: true
  3322. },
  3323. {
  3324. name: "Gigamacro",
  3325. height: math.unit(5000, "miles")
  3326. },
  3327. {
  3328. name: "Teramacro",
  3329. height: math.unit(100, "parsecs")
  3330. }
  3331. ]
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3335. {
  3336. front: {
  3337. height: math.unit(2, "meter"),
  3338. weight: math.unit(90, "kg"),
  3339. name: "Front",
  3340. image: {
  3341. source: "./media/characters/gael'rathus/front.svg"
  3342. }
  3343. },
  3344. frontAlt: {
  3345. height: math.unit(2, "meter"),
  3346. weight: math.unit(90, "kg"),
  3347. name: "Front (alt)",
  3348. image: {
  3349. source: "./media/characters/gael'rathus/front-alt.svg"
  3350. }
  3351. },
  3352. frontAlt2: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(90, "kg"),
  3355. name: "Front (alt 2)",
  3356. image: {
  3357. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3358. }
  3359. }
  3360. },
  3361. [
  3362. {
  3363. name: "Normal",
  3364. height: math.unit(9, "feet"),
  3365. default: true
  3366. },
  3367. {
  3368. name: "Large",
  3369. height: math.unit(25, "feet")
  3370. },
  3371. {
  3372. name: "Macro",
  3373. height: math.unit(0.25, "miles")
  3374. },
  3375. {
  3376. name: "Megamacro",
  3377. height: math.unit(10, "miles")
  3378. }
  3379. ]
  3380. ))
  3381. characterMakers.push(() => makeCharacter(
  3382. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3383. {
  3384. side: {
  3385. height: math.unit(2, "meter"),
  3386. weight: math.unit(140, "kg"),
  3387. name: "Side",
  3388. image: {
  3389. source: "./media/characters/sosha/side.svg",
  3390. bottom: 0.042
  3391. }
  3392. },
  3393. },
  3394. [
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(12, "feet"),
  3398. default: true
  3399. }
  3400. ]
  3401. ))
  3402. characterMakers.push(() => makeCharacter(
  3403. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3404. {
  3405. side: {
  3406. height: math.unit(5 + 5 / 12, "feet"),
  3407. weight: math.unit(170, "kg"),
  3408. name: "Side",
  3409. image: {
  3410. source: "./media/characters/runnola/side.svg",
  3411. extra: 741 / 448,
  3412. bottom: 0.05
  3413. }
  3414. },
  3415. },
  3416. [
  3417. {
  3418. name: "Small",
  3419. height: math.unit(3, "feet")
  3420. },
  3421. {
  3422. name: "Normal",
  3423. height: math.unit(5 + 5 / 12, "feet"),
  3424. default: true
  3425. },
  3426. {
  3427. name: "Big",
  3428. height: math.unit(10, "feet")
  3429. },
  3430. ]
  3431. ))
  3432. characterMakers.push(() => makeCharacter(
  3433. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3434. {
  3435. front: {
  3436. height: math.unit(2, "meter"),
  3437. weight: math.unit(50, "kg"),
  3438. name: "Front",
  3439. image: {
  3440. source: "./media/characters/kurribird/front.svg",
  3441. bottom: 0.015
  3442. }
  3443. },
  3444. frontAlt: {
  3445. height: math.unit(1.5, "meter"),
  3446. weight: math.unit(50, "kg"),
  3447. name: "Front (Alt)",
  3448. image: {
  3449. source: "./media/characters/kurribird/front-alt.svg",
  3450. extra: 1.45
  3451. }
  3452. },
  3453. },
  3454. [
  3455. {
  3456. name: "Normal",
  3457. height: math.unit(7, "feet")
  3458. },
  3459. {
  3460. name: "Big",
  3461. height: math.unit(12, "feet"),
  3462. default: true
  3463. },
  3464. {
  3465. name: "Macro",
  3466. height: math.unit(1500, "feet")
  3467. },
  3468. {
  3469. name: "Megamacro",
  3470. height: math.unit(2, "miles")
  3471. }
  3472. ]
  3473. ))
  3474. characterMakers.push(() => makeCharacter(
  3475. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3476. {
  3477. front: {
  3478. height: math.unit(2, "meter"),
  3479. weight: math.unit(80, "kg"),
  3480. name: "Front",
  3481. image: {
  3482. source: "./media/characters/elbial/front.svg",
  3483. extra: 1643 / 1556,
  3484. bottom: 60.2 / 1696
  3485. }
  3486. },
  3487. side: {
  3488. height: math.unit(2, "meter"),
  3489. weight: math.unit(80, "kg"),
  3490. name: "Side",
  3491. image: {
  3492. source: "./media/characters/elbial/side.svg",
  3493. extra: 1601/1528,
  3494. bottom: 97/1698
  3495. }
  3496. },
  3497. back: {
  3498. height: math.unit(2, "meter"),
  3499. weight: math.unit(80, "kg"),
  3500. name: "Back",
  3501. image: {
  3502. source: "./media/characters/elbial/back.svg",
  3503. extra: 1653/1569,
  3504. bottom: 20/1673
  3505. }
  3506. },
  3507. frontDressed: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(80, "kg"),
  3510. name: "Front (Dressed)",
  3511. image: {
  3512. source: "./media/characters/elbial/front-dressed.svg",
  3513. extra: 1638/1569,
  3514. bottom: 70/1708
  3515. }
  3516. },
  3517. genitals: {
  3518. height: math.unit(2 / 3.367, "meter"),
  3519. name: "Genitals",
  3520. image: {
  3521. source: "./media/characters/elbial/genitals.svg"
  3522. }
  3523. },
  3524. },
  3525. [
  3526. {
  3527. name: "Large",
  3528. height: math.unit(100, "feet")
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(500, "feet"),
  3533. default: true
  3534. },
  3535. {
  3536. name: "Megamacro",
  3537. height: math.unit(10, "miles")
  3538. },
  3539. {
  3540. name: "Gigamacro",
  3541. height: math.unit(25000, "miles")
  3542. },
  3543. {
  3544. name: "Full-Size",
  3545. height: math.unit(8000000, "gigaparsecs")
  3546. }
  3547. ]
  3548. ))
  3549. characterMakers.push(() => makeCharacter(
  3550. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3551. {
  3552. front: {
  3553. height: math.unit(2, "meter"),
  3554. weight: math.unit(60, "kg"),
  3555. name: "Front",
  3556. image: {
  3557. source: "./media/characters/noah/front.svg"
  3558. }
  3559. },
  3560. talons: {
  3561. height: math.unit(0.315, "meter"),
  3562. name: "Talons",
  3563. image: {
  3564. source: "./media/characters/noah/talons.svg"
  3565. }
  3566. }
  3567. },
  3568. [
  3569. {
  3570. name: "Large",
  3571. height: math.unit(50, "feet")
  3572. },
  3573. {
  3574. name: "Macro",
  3575. height: math.unit(750, "feet"),
  3576. default: true
  3577. },
  3578. {
  3579. name: "Megamacro",
  3580. height: math.unit(50, "miles")
  3581. },
  3582. {
  3583. name: "Gigamacro",
  3584. height: math.unit(100000, "miles")
  3585. },
  3586. {
  3587. name: "Full-Size",
  3588. height: math.unit(3000000000, "miles")
  3589. }
  3590. ]
  3591. ))
  3592. characterMakers.push(() => makeCharacter(
  3593. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3594. {
  3595. front: {
  3596. height: math.unit(2, "meter"),
  3597. weight: math.unit(80, "kg"),
  3598. name: "Front",
  3599. image: {
  3600. source: "./media/characters/natalya/front.svg"
  3601. }
  3602. },
  3603. back: {
  3604. height: math.unit(2, "meter"),
  3605. weight: math.unit(80, "kg"),
  3606. name: "Back",
  3607. image: {
  3608. source: "./media/characters/natalya/back.svg"
  3609. }
  3610. }
  3611. },
  3612. [
  3613. {
  3614. name: "Normal",
  3615. height: math.unit(150, "feet"),
  3616. default: true
  3617. },
  3618. {
  3619. name: "Megamacro",
  3620. height: math.unit(5, "miles")
  3621. },
  3622. {
  3623. name: "Full-Size",
  3624. height: math.unit(600, "kiloparsecs")
  3625. }
  3626. ]
  3627. ))
  3628. characterMakers.push(() => makeCharacter(
  3629. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3630. {
  3631. front: {
  3632. height: math.unit(2, "meter"),
  3633. weight: math.unit(50, "kg"),
  3634. name: "Front",
  3635. image: {
  3636. source: "./media/characters/erestrebah/front.svg",
  3637. extra: 1262/1162,
  3638. bottom: 96/1358
  3639. }
  3640. },
  3641. back: {
  3642. height: math.unit(2, "meter"),
  3643. weight: math.unit(50, "kg"),
  3644. name: "Back",
  3645. image: {
  3646. source: "./media/characters/erestrebah/back.svg",
  3647. extra: 1257/1139,
  3648. bottom: 13/1270
  3649. }
  3650. },
  3651. wing: {
  3652. height: math.unit(2, "meter"),
  3653. weight: math.unit(50, "kg"),
  3654. name: "Wing",
  3655. image: {
  3656. source: "./media/characters/erestrebah/wing.svg",
  3657. extra: 1262/1162,
  3658. bottom: 96/1358
  3659. }
  3660. },
  3661. mouth: {
  3662. height: math.unit(0.39, "feet"),
  3663. name: "Mouth",
  3664. image: {
  3665. source: "./media/characters/erestrebah/mouth.svg"
  3666. }
  3667. }
  3668. },
  3669. [
  3670. {
  3671. name: "Normal",
  3672. height: math.unit(10, "feet")
  3673. },
  3674. {
  3675. name: "Large",
  3676. height: math.unit(50, "feet"),
  3677. default: true
  3678. },
  3679. {
  3680. name: "Macro",
  3681. height: math.unit(300, "feet")
  3682. },
  3683. {
  3684. name: "Macro+",
  3685. height: math.unit(750, "feet")
  3686. },
  3687. {
  3688. name: "Megamacro",
  3689. height: math.unit(3, "miles")
  3690. }
  3691. ]
  3692. ))
  3693. characterMakers.push(() => makeCharacter(
  3694. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3695. {
  3696. front: {
  3697. height: math.unit(2, "meter"),
  3698. weight: math.unit(80, "kg"),
  3699. name: "Front",
  3700. image: {
  3701. source: "./media/characters/jennifer/front.svg",
  3702. bottom: 0.11,
  3703. extra: 1.16
  3704. }
  3705. },
  3706. frontAlt: {
  3707. height: math.unit(2, "meter"),
  3708. weight: math.unit(80, "kg"),
  3709. name: "Front (Alt)",
  3710. image: {
  3711. source: "./media/characters/jennifer/front-alt.svg"
  3712. }
  3713. }
  3714. },
  3715. [
  3716. {
  3717. name: "Canon Height",
  3718. height: math.unit(120, "feet"),
  3719. default: true
  3720. },
  3721. {
  3722. name: "Macro+",
  3723. height: math.unit(300, "feet")
  3724. },
  3725. {
  3726. name: "Megamacro",
  3727. height: math.unit(20000, "feet")
  3728. }
  3729. ]
  3730. ))
  3731. characterMakers.push(() => makeCharacter(
  3732. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3733. {
  3734. front: {
  3735. height: math.unit(2, "meter"),
  3736. weight: math.unit(50, "kg"),
  3737. name: "Front",
  3738. image: {
  3739. source: "./media/characters/kalista/front.svg",
  3740. extra: 1314/1145,
  3741. bottom: 101/1415
  3742. }
  3743. },
  3744. back: {
  3745. height: math.unit(2, "meter"),
  3746. weight: math.unit(50, "kg"),
  3747. name: "Back",
  3748. image: {
  3749. source: "./media/characters/kalista/back.svg",
  3750. extra: 1366 / 1156,
  3751. bottom: 33.9 / 1362.78
  3752. }
  3753. }
  3754. },
  3755. [
  3756. {
  3757. name: "Uncomfortably Small",
  3758. height: math.unit(10, "feet")
  3759. },
  3760. {
  3761. name: "Small",
  3762. height: math.unit(30, "feet")
  3763. },
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(100, "feet"),
  3767. default: true
  3768. },
  3769. {
  3770. name: "Macro+",
  3771. height: math.unit(2000, "feet")
  3772. },
  3773. {
  3774. name: "True Form",
  3775. height: math.unit(8924, "miles")
  3776. }
  3777. ]
  3778. ))
  3779. characterMakers.push(() => makeCharacter(
  3780. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3781. {
  3782. front: {
  3783. height: math.unit(2, "meter"),
  3784. weight: math.unit(120, "kg"),
  3785. name: "Front",
  3786. image: {
  3787. source: "./media/characters/ggv/front.svg"
  3788. }
  3789. },
  3790. side: {
  3791. height: math.unit(2, "meter"),
  3792. weight: math.unit(120, "kg"),
  3793. name: "Side",
  3794. image: {
  3795. source: "./media/characters/ggv/side.svg"
  3796. }
  3797. }
  3798. },
  3799. [
  3800. {
  3801. name: "Extremely Puny",
  3802. height: math.unit(9 + 5 / 12, "feet")
  3803. },
  3804. {
  3805. name: "Horribly Small",
  3806. height: math.unit(47.7, "miles"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Reasonably Sized",
  3811. height: math.unit(25000, "parsecs")
  3812. },
  3813. {
  3814. name: "Slightly Uncompressed",
  3815. height: math.unit(7.77e31, "parsecs")
  3816. },
  3817. {
  3818. name: "Omniversal",
  3819. height: math.unit(1e300, "meters")
  3820. },
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3825. {
  3826. front: {
  3827. height: math.unit(2, "meter"),
  3828. weight: math.unit(75, "lb"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/napalm/front.svg"
  3832. }
  3833. },
  3834. back: {
  3835. height: math.unit(2, "meter"),
  3836. weight: math.unit(75, "lb"),
  3837. name: "Back",
  3838. image: {
  3839. source: "./media/characters/napalm/back.svg"
  3840. }
  3841. }
  3842. },
  3843. [
  3844. {
  3845. name: "Standard",
  3846. height: math.unit(55, "feet"),
  3847. default: true
  3848. }
  3849. ]
  3850. ))
  3851. characterMakers.push(() => makeCharacter(
  3852. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3853. {
  3854. front: {
  3855. height: math.unit(7 + 5 / 6, "feet"),
  3856. weight: math.unit(325, "lb"),
  3857. name: "Front",
  3858. image: {
  3859. source: "./media/characters/asana/front.svg",
  3860. extra: 1133 / 1060,
  3861. bottom: 15.2 / 1148.6
  3862. }
  3863. },
  3864. back: {
  3865. height: math.unit(7 + 5 / 6, "feet"),
  3866. weight: math.unit(325, "lb"),
  3867. name: "Back",
  3868. image: {
  3869. source: "./media/characters/asana/back.svg",
  3870. extra: 1114 / 1043,
  3871. bottom: 5 / 1120
  3872. }
  3873. },
  3874. dressedDark: {
  3875. height: math.unit(7 + 5 / 6, "feet"),
  3876. weight: math.unit(325, "lb"),
  3877. name: "Dressed (Dark)",
  3878. image: {
  3879. source: "./media/characters/asana/dressed-dark.svg",
  3880. extra: 1133 / 1060,
  3881. bottom: 15.2 / 1148.6
  3882. }
  3883. },
  3884. dressedLight: {
  3885. height: math.unit(7 + 5 / 6, "feet"),
  3886. weight: math.unit(325, "lb"),
  3887. name: "Dressed (Light)",
  3888. image: {
  3889. source: "./media/characters/asana/dressed-light.svg",
  3890. extra: 1133 / 1060,
  3891. bottom: 15.2 / 1148.6
  3892. }
  3893. },
  3894. },
  3895. [
  3896. {
  3897. name: "Standard",
  3898. height: math.unit(7 + 5 / 6, "feet"),
  3899. default: true
  3900. },
  3901. {
  3902. name: "Large",
  3903. height: math.unit(10, "meters")
  3904. },
  3905. {
  3906. name: "Macro",
  3907. height: math.unit(2500, "meters")
  3908. },
  3909. {
  3910. name: "Megamacro",
  3911. height: math.unit(5e6, "meters")
  3912. },
  3913. {
  3914. name: "Examacro",
  3915. height: math.unit(5e12, "lightyears")
  3916. },
  3917. {
  3918. name: "Max Size",
  3919. height: math.unit(1e31, "lightyears")
  3920. }
  3921. ]
  3922. ))
  3923. characterMakers.push(() => makeCharacter(
  3924. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3925. {
  3926. front: {
  3927. height: math.unit(2, "meter"),
  3928. weight: math.unit(60, "kg"),
  3929. name: "Front",
  3930. image: {
  3931. source: "./media/characters/ebony/front.svg",
  3932. bottom: 0.03,
  3933. extra: 1045 / 810 + 0.03
  3934. }
  3935. },
  3936. side: {
  3937. height: math.unit(2, "meter"),
  3938. weight: math.unit(60, "kg"),
  3939. name: "Side",
  3940. image: {
  3941. source: "./media/characters/ebony/side.svg",
  3942. bottom: 0.03,
  3943. extra: 1045 / 810 + 0.03
  3944. }
  3945. },
  3946. back: {
  3947. height: math.unit(2, "meter"),
  3948. weight: math.unit(60, "kg"),
  3949. name: "Back",
  3950. image: {
  3951. source: "./media/characters/ebony/back.svg",
  3952. bottom: 0.01,
  3953. extra: 1045 / 810 + 0.01
  3954. }
  3955. },
  3956. },
  3957. [
  3958. // TODO check why I did this lol
  3959. {
  3960. name: "Standard",
  3961. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(200, "feet")
  3967. },
  3968. {
  3969. name: "Gigamacro",
  3970. height: math.unit(13000, "km")
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(6, "feet"),
  3979. weight: math.unit(175, "lb"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/mountain/front.svg",
  3983. extra: 972 / 955,
  3984. bottom: 64 / 1036.6
  3985. }
  3986. },
  3987. back: {
  3988. height: math.unit(6, "feet"),
  3989. weight: math.unit(175, "lb"),
  3990. name: "Back",
  3991. image: {
  3992. source: "./media/characters/mountain/back.svg",
  3993. extra: 970 / 950,
  3994. bottom: 28.25 / 999
  3995. }
  3996. },
  3997. },
  3998. [
  3999. {
  4000. name: "Large",
  4001. height: math.unit(20, "meters")
  4002. },
  4003. {
  4004. name: "Macro",
  4005. height: math.unit(300, "meters")
  4006. },
  4007. {
  4008. name: "Gigamacro",
  4009. height: math.unit(10000, "km"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Examacro",
  4014. height: math.unit(10e9, "lightyears")
  4015. }
  4016. ]
  4017. ))
  4018. characterMakers.push(() => makeCharacter(
  4019. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4020. {
  4021. front: {
  4022. height: math.unit(8, "feet"),
  4023. weight: math.unit(500, "lb"),
  4024. name: "Front",
  4025. image: {
  4026. source: "./media/characters/rick/front.svg"
  4027. }
  4028. }
  4029. },
  4030. [
  4031. {
  4032. name: "Normal",
  4033. height: math.unit(8, "feet"),
  4034. default: true
  4035. },
  4036. {
  4037. name: "Macro",
  4038. height: math.unit(5, "km")
  4039. }
  4040. ]
  4041. ))
  4042. characterMakers.push(() => makeCharacter(
  4043. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4044. {
  4045. front: {
  4046. height: math.unit(8, "feet"),
  4047. weight: math.unit(120, "lb"),
  4048. name: "Front",
  4049. image: {
  4050. source: "./media/characters/ona/front.svg"
  4051. }
  4052. },
  4053. frontAlt: {
  4054. height: math.unit(8, "feet"),
  4055. weight: math.unit(120, "lb"),
  4056. name: "Front (Alt)",
  4057. image: {
  4058. source: "./media/characters/ona/front-alt.svg"
  4059. }
  4060. },
  4061. back: {
  4062. height: math.unit(8, "feet"),
  4063. weight: math.unit(120, "lb"),
  4064. name: "Back",
  4065. image: {
  4066. source: "./media/characters/ona/back.svg"
  4067. }
  4068. },
  4069. foot: {
  4070. height: math.unit(1.1, "feet"),
  4071. name: "Foot",
  4072. image: {
  4073. source: "./media/characters/ona/foot.svg"
  4074. }
  4075. }
  4076. },
  4077. [
  4078. {
  4079. name: "Megamacro",
  4080. height: math.unit(70, "km"),
  4081. default: true
  4082. },
  4083. {
  4084. name: "Gigamacro",
  4085. height: math.unit(681818, "miles")
  4086. },
  4087. {
  4088. name: "Examacro",
  4089. height: math.unit(3800000, "lightyears")
  4090. },
  4091. ]
  4092. ))
  4093. characterMakers.push(() => makeCharacter(
  4094. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4095. {
  4096. front: {
  4097. height: math.unit(12, "feet"),
  4098. weight: math.unit(3000, "lb"),
  4099. name: "Front",
  4100. image: {
  4101. source: "./media/characters/mech/front.svg",
  4102. extra: 2900 / 2770,
  4103. bottom: 110 / 3010
  4104. }
  4105. },
  4106. back: {
  4107. height: math.unit(12, "feet"),
  4108. weight: math.unit(3000, "lb"),
  4109. name: "Back",
  4110. image: {
  4111. source: "./media/characters/mech/back.svg",
  4112. extra: 3011 / 2890,
  4113. bottom: 94 / 3105
  4114. }
  4115. },
  4116. maw: {
  4117. height: math.unit(3.07, "feet"),
  4118. name: "Maw",
  4119. image: {
  4120. source: "./media/characters/mech/maw.svg"
  4121. }
  4122. },
  4123. head: {
  4124. height: math.unit(2.82, "feet"),
  4125. name: "Head",
  4126. image: {
  4127. source: "./media/characters/mech/head.svg"
  4128. }
  4129. },
  4130. dick: {
  4131. height: math.unit(1.43, "feet"),
  4132. name: "Dick",
  4133. image: {
  4134. source: "./media/characters/mech/dick.svg"
  4135. }
  4136. },
  4137. },
  4138. [
  4139. {
  4140. name: "Normal",
  4141. height: math.unit(12, "feet")
  4142. },
  4143. {
  4144. name: "Macro",
  4145. height: math.unit(300, "feet"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Macro+",
  4150. height: math.unit(1500, "feet")
  4151. },
  4152. ]
  4153. ))
  4154. characterMakers.push(() => makeCharacter(
  4155. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4156. {
  4157. front: {
  4158. height: math.unit(1.3, "meter"),
  4159. weight: math.unit(30, "kg"),
  4160. name: "Front",
  4161. image: {
  4162. source: "./media/characters/gregory/front.svg",
  4163. }
  4164. }
  4165. },
  4166. [
  4167. {
  4168. name: "Normal",
  4169. height: math.unit(1.3, "meter"),
  4170. default: true
  4171. },
  4172. {
  4173. name: "Macro",
  4174. height: math.unit(20, "meter")
  4175. }
  4176. ]
  4177. ))
  4178. characterMakers.push(() => makeCharacter(
  4179. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4180. {
  4181. front: {
  4182. height: math.unit(2.8, "meter"),
  4183. weight: math.unit(200, "kg"),
  4184. name: "Front",
  4185. image: {
  4186. source: "./media/characters/elory/front.svg",
  4187. }
  4188. }
  4189. },
  4190. [
  4191. {
  4192. name: "Normal",
  4193. height: math.unit(2.8, "meter"),
  4194. default: true
  4195. },
  4196. {
  4197. name: "Macro",
  4198. height: math.unit(38, "meter")
  4199. }
  4200. ]
  4201. ))
  4202. characterMakers.push(() => makeCharacter(
  4203. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4204. {
  4205. front: {
  4206. height: math.unit(470, "feet"),
  4207. weight: math.unit(924, "tons"),
  4208. name: "Front",
  4209. image: {
  4210. source: "./media/characters/angelpatamon/front.svg",
  4211. }
  4212. }
  4213. },
  4214. [
  4215. {
  4216. name: "Normal",
  4217. height: math.unit(470, "feet"),
  4218. default: true
  4219. },
  4220. {
  4221. name: "Deity Size I",
  4222. height: math.unit(28651.2, "km")
  4223. },
  4224. {
  4225. name: "Deity Size II",
  4226. height: math.unit(171907.2, "km")
  4227. }
  4228. ]
  4229. ))
  4230. characterMakers.push(() => makeCharacter(
  4231. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4232. {
  4233. side: {
  4234. height: math.unit(7.2, "meter"),
  4235. weight: math.unit(8.2, "tons"),
  4236. name: "Side",
  4237. image: {
  4238. source: "./media/characters/cryae/side.svg",
  4239. extra: 3500 / 1500
  4240. }
  4241. }
  4242. },
  4243. [
  4244. {
  4245. name: "Normal",
  4246. height: math.unit(7.2, "meter"),
  4247. default: true
  4248. }
  4249. ]
  4250. ))
  4251. characterMakers.push(() => makeCharacter(
  4252. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4253. {
  4254. front: {
  4255. height: math.unit(6, "feet"),
  4256. weight: math.unit(175, "lb"),
  4257. name: "Front",
  4258. image: {
  4259. source: "./media/characters/xera/front.svg",
  4260. extra: 2377 / 1972,
  4261. bottom: 75.5 / 2452
  4262. }
  4263. },
  4264. side: {
  4265. height: math.unit(6, "feet"),
  4266. weight: math.unit(175, "lb"),
  4267. name: "Side",
  4268. image: {
  4269. source: "./media/characters/xera/side.svg",
  4270. extra: 2345 / 2019,
  4271. bottom: 39.7 / 2384
  4272. }
  4273. },
  4274. back: {
  4275. height: math.unit(6, "feet"),
  4276. weight: math.unit(175, "lb"),
  4277. name: "Back",
  4278. image: {
  4279. source: "./media/characters/xera/back.svg",
  4280. extra: 2095 / 1984,
  4281. bottom: 67 / 2166
  4282. }
  4283. },
  4284. },
  4285. [
  4286. {
  4287. name: "Small",
  4288. height: math.unit(10, "feet")
  4289. },
  4290. {
  4291. name: "Macro",
  4292. height: math.unit(500, "meters"),
  4293. default: true
  4294. },
  4295. {
  4296. name: "Macro+",
  4297. height: math.unit(10, "km")
  4298. },
  4299. {
  4300. name: "Gigamacro",
  4301. height: math.unit(25000, "km")
  4302. },
  4303. {
  4304. name: "Teramacro",
  4305. height: math.unit(3e6, "km")
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(6, "feet"),
  4314. weight: math.unit(175, "lb"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/nebula/front.svg",
  4318. extra: 2566 / 2362,
  4319. bottom: 81 / 2644
  4320. }
  4321. }
  4322. },
  4323. [
  4324. {
  4325. name: "Small",
  4326. height: math.unit(4.5, "meters")
  4327. },
  4328. {
  4329. name: "Macro",
  4330. height: math.unit(1500, "meters"),
  4331. default: true
  4332. },
  4333. {
  4334. name: "Megamacro",
  4335. height: math.unit(150, "km")
  4336. },
  4337. {
  4338. name: "Gigamacro",
  4339. height: math.unit(27000, "km")
  4340. }
  4341. ]
  4342. ))
  4343. characterMakers.push(() => makeCharacter(
  4344. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4345. {
  4346. front: {
  4347. height: math.unit(6, "feet"),
  4348. weight: math.unit(225, "lb"),
  4349. name: "Front",
  4350. image: {
  4351. source: "./media/characters/abysgar/front.svg"
  4352. }
  4353. }
  4354. },
  4355. [
  4356. {
  4357. name: "Small",
  4358. height: math.unit(4.5, "meters")
  4359. },
  4360. {
  4361. name: "Macro",
  4362. height: math.unit(1250, "meters"),
  4363. default: true
  4364. },
  4365. {
  4366. name: "Megamacro",
  4367. height: math.unit(125, "km")
  4368. },
  4369. {
  4370. name: "Gigamacro",
  4371. height: math.unit(26000, "km")
  4372. }
  4373. ]
  4374. ))
  4375. characterMakers.push(() => makeCharacter(
  4376. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4377. {
  4378. front: {
  4379. height: math.unit(6, "feet"),
  4380. weight: math.unit(180, "lb"),
  4381. name: "Front",
  4382. image: {
  4383. source: "./media/characters/yakuz/front.svg"
  4384. }
  4385. }
  4386. },
  4387. [
  4388. {
  4389. name: "Small",
  4390. height: math.unit(5, "meters")
  4391. },
  4392. {
  4393. name: "Macro",
  4394. height: math.unit(1500, "meters"),
  4395. default: true
  4396. },
  4397. {
  4398. name: "Megamacro",
  4399. height: math.unit(200, "km")
  4400. },
  4401. {
  4402. name: "Gigamacro",
  4403. height: math.unit(100000, "km")
  4404. }
  4405. ]
  4406. ))
  4407. characterMakers.push(() => makeCharacter(
  4408. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4409. {
  4410. front: {
  4411. height: math.unit(6, "feet"),
  4412. weight: math.unit(175, "lb"),
  4413. name: "Front",
  4414. image: {
  4415. source: "./media/characters/mirova/front.svg",
  4416. extra: 3334 / 3071,
  4417. bottom: 42 / 3375.6
  4418. }
  4419. }
  4420. },
  4421. [
  4422. {
  4423. name: "Small",
  4424. height: math.unit(5, "meters")
  4425. },
  4426. {
  4427. name: "Macro",
  4428. height: math.unit(900, "meters"),
  4429. default: true
  4430. },
  4431. {
  4432. name: "Megamacro",
  4433. height: math.unit(135, "km")
  4434. },
  4435. {
  4436. name: "Gigamacro",
  4437. height: math.unit(20000, "km")
  4438. }
  4439. ]
  4440. ))
  4441. characterMakers.push(() => makeCharacter(
  4442. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4443. {
  4444. side: {
  4445. height: math.unit(28.35, "feet"),
  4446. weight: math.unit(99.75, "tons"),
  4447. name: "Side",
  4448. image: {
  4449. source: "./media/characters/asana-mech/side.svg",
  4450. extra: 923 / 699,
  4451. bottom: 50 / 975
  4452. }
  4453. },
  4454. chaingun: {
  4455. height: math.unit(7, "feet"),
  4456. weight: math.unit(2400, "lb"),
  4457. name: "Chaingun",
  4458. image: {
  4459. source: "./media/characters/asana-mech/chaingun.svg"
  4460. }
  4461. },
  4462. laser: {
  4463. height: math.unit(7.12, "feet"),
  4464. weight: math.unit(2000, "lb"),
  4465. name: "Laser",
  4466. image: {
  4467. source: "./media/characters/asana-mech/laser.svg"
  4468. }
  4469. },
  4470. },
  4471. [
  4472. {
  4473. name: "Normal",
  4474. height: math.unit(28.35, "feet"),
  4475. default: true
  4476. },
  4477. {
  4478. name: "Macro",
  4479. height: math.unit(2500, "feet")
  4480. },
  4481. {
  4482. name: "Megamacro",
  4483. height: math.unit(25, "miles")
  4484. },
  4485. {
  4486. name: "Examacro",
  4487. height: math.unit(6e8, "lightyears")
  4488. },
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(5, "meters"),
  4496. weight: math.unit(1000, "kg"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/asche/front.svg",
  4500. extra: 1258 / 1190,
  4501. bottom: 47 / 1305
  4502. }
  4503. },
  4504. frontUnderwear: {
  4505. height: math.unit(5, "meters"),
  4506. weight: math.unit(1000, "kg"),
  4507. name: "Front (Underwear)",
  4508. image: {
  4509. source: "./media/characters/asche/front-underwear.svg",
  4510. extra: 1258 / 1190,
  4511. bottom: 47 / 1305
  4512. }
  4513. },
  4514. frontDressed: {
  4515. height: math.unit(5, "meters"),
  4516. weight: math.unit(1000, "kg"),
  4517. name: "Front (Dressed)",
  4518. image: {
  4519. source: "./media/characters/asche/front-dressed.svg",
  4520. extra: 1258 / 1190,
  4521. bottom: 47 / 1305
  4522. }
  4523. },
  4524. frontArmor: {
  4525. height: math.unit(5, "meters"),
  4526. weight: math.unit(1000, "kg"),
  4527. name: "Front (Armored)",
  4528. image: {
  4529. source: "./media/characters/asche/front-armored.svg",
  4530. extra: 1374 / 1308,
  4531. bottom: 23 / 1397
  4532. }
  4533. },
  4534. mp724: {
  4535. height: math.unit(0.96, "meters"),
  4536. weight: math.unit(38, "kg"),
  4537. name: "H&K MP724",
  4538. image: {
  4539. source: "./media/characters/asche/h&k-mp724.svg"
  4540. }
  4541. },
  4542. side: {
  4543. height: math.unit(5, "meters"),
  4544. weight: math.unit(1000, "kg"),
  4545. name: "Side",
  4546. image: {
  4547. source: "./media/characters/asche/side.svg",
  4548. extra: 1717 / 1609,
  4549. bottom: 0.005
  4550. }
  4551. },
  4552. back: {
  4553. height: math.unit(5, "meters"),
  4554. weight: math.unit(1000, "kg"),
  4555. name: "Back",
  4556. image: {
  4557. source: "./media/characters/asche/back.svg",
  4558. extra: 1570 / 1501
  4559. }
  4560. },
  4561. },
  4562. [
  4563. {
  4564. name: "DEFCON 5",
  4565. height: math.unit(5, "meters")
  4566. },
  4567. {
  4568. name: "DEFCON 4",
  4569. height: math.unit(500, "meters"),
  4570. default: true
  4571. },
  4572. {
  4573. name: "DEFCON 3",
  4574. height: math.unit(5, "km")
  4575. },
  4576. {
  4577. name: "DEFCON 2",
  4578. height: math.unit(500, "km")
  4579. },
  4580. {
  4581. name: "DEFCON 1",
  4582. height: math.unit(500000, "km")
  4583. },
  4584. {
  4585. name: "DEFCON 0",
  4586. height: math.unit(3, "gigaparsecs")
  4587. },
  4588. ]
  4589. ))
  4590. characterMakers.push(() => makeCharacter(
  4591. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4592. {
  4593. front: {
  4594. height: math.unit(2, "meters"),
  4595. weight: math.unit(76, "kg"),
  4596. name: "Front",
  4597. image: {
  4598. source: "./media/characters/gale/front.svg"
  4599. }
  4600. },
  4601. frontAlt1: {
  4602. height: math.unit(2, "meters"),
  4603. weight: math.unit(76, "kg"),
  4604. name: "Front (Alt 1)",
  4605. image: {
  4606. source: "./media/characters/gale/front-alt-1.svg"
  4607. }
  4608. },
  4609. frontAlt2: {
  4610. height: math.unit(2, "meters"),
  4611. weight: math.unit(76, "kg"),
  4612. name: "Front (Alt 2)",
  4613. image: {
  4614. source: "./media/characters/gale/front-alt-2.svg"
  4615. }
  4616. },
  4617. },
  4618. [
  4619. {
  4620. name: "Normal",
  4621. height: math.unit(7, "feet")
  4622. },
  4623. {
  4624. name: "Macro",
  4625. height: math.unit(150, "feet"),
  4626. default: true
  4627. },
  4628. {
  4629. name: "Macro+",
  4630. height: math.unit(300, "feet")
  4631. },
  4632. ]
  4633. ))
  4634. characterMakers.push(() => makeCharacter(
  4635. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4636. {
  4637. front: {
  4638. height: math.unit(5 + 10/12, "feet"),
  4639. weight: math.unit(67, "kg"),
  4640. name: "Front",
  4641. image: {
  4642. source: "./media/characters/draylen/front.svg",
  4643. extra: 832/777,
  4644. bottom: 85/917
  4645. }
  4646. }
  4647. },
  4648. [
  4649. {
  4650. name: "Normal",
  4651. height: math.unit(5 + 10/12, "feet")
  4652. },
  4653. {
  4654. name: "Macro",
  4655. height: math.unit(150, "feet"),
  4656. default: true
  4657. }
  4658. ]
  4659. ))
  4660. characterMakers.push(() => makeCharacter(
  4661. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4662. {
  4663. front: {
  4664. height: math.unit(7 + 9 / 12, "feet"),
  4665. weight: math.unit(379, "lbs"),
  4666. name: "Front",
  4667. image: {
  4668. source: "./media/characters/chez/front.svg"
  4669. }
  4670. },
  4671. side: {
  4672. height: math.unit(7 + 9 / 12, "feet"),
  4673. weight: math.unit(379, "lbs"),
  4674. name: "Side",
  4675. image: {
  4676. source: "./media/characters/chez/side.svg"
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Normal",
  4683. height: math.unit(7 + 9 / 12, "feet"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "God King",
  4688. height: math.unit(9750000, "meters")
  4689. }
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4694. {
  4695. front: {
  4696. height: math.unit(6, "feet"),
  4697. weight: math.unit(275, "lbs"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/kaylum/front.svg",
  4701. bottom: 0.01,
  4702. extra: 1166 / 1031
  4703. }
  4704. },
  4705. frontWingless: {
  4706. height: math.unit(6, "feet"),
  4707. weight: math.unit(275, "lbs"),
  4708. name: "Front (Wingless)",
  4709. image: {
  4710. source: "./media/characters/kaylum/front-wingless.svg",
  4711. bottom: 0.01,
  4712. extra: 1117 / 1031
  4713. }
  4714. }
  4715. },
  4716. [
  4717. {
  4718. name: "Normal",
  4719. height: math.unit(3.05, "meters")
  4720. },
  4721. {
  4722. name: "Master",
  4723. height: math.unit(5.5, "meters")
  4724. },
  4725. {
  4726. name: "Rampage",
  4727. height: math.unit(19, "meters")
  4728. },
  4729. {
  4730. name: "Macro Lite",
  4731. height: math.unit(37, "meters")
  4732. },
  4733. {
  4734. name: "Hyper Predator",
  4735. height: math.unit(61, "meters")
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(138, "meters"),
  4740. default: true
  4741. }
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(6, "feet"),
  4749. weight: math.unit(150, "lbs"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/geta/front.svg"
  4753. }
  4754. }
  4755. },
  4756. [
  4757. {
  4758. name: "Micro",
  4759. height: math.unit(3, "inches"),
  4760. default: true
  4761. },
  4762. {
  4763. name: "Normal",
  4764. height: math.unit(5 + 5 / 12, "feet")
  4765. }
  4766. ]
  4767. ))
  4768. characterMakers.push(() => makeCharacter(
  4769. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4770. {
  4771. front: {
  4772. height: math.unit(6, "feet"),
  4773. weight: math.unit(300, "lbs"),
  4774. name: "Front",
  4775. image: {
  4776. source: "./media/characters/tyrnn/front.svg"
  4777. }
  4778. }
  4779. },
  4780. [
  4781. {
  4782. name: "Main Height",
  4783. height: math.unit(355, "feet"),
  4784. default: true
  4785. },
  4786. {
  4787. name: "Fave. Height",
  4788. height: math.unit(2400, "feet")
  4789. }
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4794. {
  4795. front: {
  4796. height: math.unit(6, "feet"),
  4797. weight: math.unit(300, "lbs"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/appledectomy/front.svg"
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Macro",
  4807. height: math.unit(2500, "feet")
  4808. },
  4809. {
  4810. name: "Megamacro",
  4811. height: math.unit(50, "miles"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Gigamacro",
  4816. height: math.unit(5000, "miles")
  4817. },
  4818. {
  4819. name: "Teramacro",
  4820. height: math.unit(250000, "miles")
  4821. },
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(200, "lbs"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/vulpes/front.svg",
  4833. extra: 573 / 543,
  4834. bottom: 0.033
  4835. }
  4836. },
  4837. side: {
  4838. height: math.unit(6, "feet"),
  4839. weight: math.unit(200, "lbs"),
  4840. name: "Side",
  4841. image: {
  4842. source: "./media/characters/vulpes/side.svg",
  4843. extra: 577 / 549,
  4844. bottom: 11 / 588
  4845. }
  4846. },
  4847. back: {
  4848. height: math.unit(6, "feet"),
  4849. weight: math.unit(200, "lbs"),
  4850. name: "Back",
  4851. image: {
  4852. source: "./media/characters/vulpes/back.svg",
  4853. extra: 573 / 549,
  4854. bottom: 20 / 593
  4855. }
  4856. },
  4857. feet: {
  4858. height: math.unit(1.276, "feet"),
  4859. name: "Feet",
  4860. image: {
  4861. source: "./media/characters/vulpes/feet.svg"
  4862. }
  4863. },
  4864. maw: {
  4865. height: math.unit(1.18, "feet"),
  4866. name: "Maw",
  4867. image: {
  4868. source: "./media/characters/vulpes/maw.svg"
  4869. }
  4870. },
  4871. },
  4872. [
  4873. {
  4874. name: "Micro",
  4875. height: math.unit(2, "inches")
  4876. },
  4877. {
  4878. name: "Normal",
  4879. height: math.unit(6.3, "feet")
  4880. },
  4881. {
  4882. name: "Macro",
  4883. height: math.unit(850, "feet")
  4884. },
  4885. {
  4886. name: "Megamacro",
  4887. height: math.unit(7500, "feet"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Gigamacro",
  4892. height: math.unit(570000, "miles")
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4898. {
  4899. front: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(210, "lbs"),
  4902. name: "Front",
  4903. image: {
  4904. source: "./media/characters/rain-fallen/front.svg"
  4905. }
  4906. },
  4907. side: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(210, "lbs"),
  4910. name: "Side",
  4911. image: {
  4912. source: "./media/characters/rain-fallen/side.svg"
  4913. }
  4914. },
  4915. back: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(210, "lbs"),
  4918. name: "Back",
  4919. image: {
  4920. source: "./media/characters/rain-fallen/back.svg"
  4921. }
  4922. },
  4923. feral: {
  4924. height: math.unit(9, "feet"),
  4925. weight: math.unit(700, "lbs"),
  4926. name: "Feral",
  4927. image: {
  4928. source: "./media/characters/rain-fallen/feral.svg"
  4929. }
  4930. },
  4931. },
  4932. [
  4933. {
  4934. name: "Meddling with Mortals",
  4935. height: math.unit(8 + 8/12, "feet")
  4936. },
  4937. {
  4938. name: "Normal",
  4939. height: math.unit(5, "meter")
  4940. },
  4941. {
  4942. name: "Macro",
  4943. height: math.unit(150, "meter"),
  4944. default: true
  4945. },
  4946. {
  4947. name: "Megamacro",
  4948. height: math.unit(278e6, "meter")
  4949. },
  4950. {
  4951. name: "Gigamacro",
  4952. height: math.unit(2e9, "meter")
  4953. },
  4954. {
  4955. name: "Teramacro",
  4956. height: math.unit(8e12, "meter")
  4957. },
  4958. {
  4959. name: "Devourer",
  4960. height: math.unit(14, "zettameters")
  4961. },
  4962. {
  4963. name: "Scarlet King",
  4964. height: math.unit(18, "yottameters")
  4965. },
  4966. {
  4967. name: "Void",
  4968. height: math.unit(1e88, "yottameters")
  4969. }
  4970. ]
  4971. ))
  4972. characterMakers.push(() => makeCharacter(
  4973. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4974. {
  4975. standing: {
  4976. height: math.unit(6, "feet"),
  4977. weight: math.unit(180, "lbs"),
  4978. name: "Standing",
  4979. image: {
  4980. source: "./media/characters/zaakira/standing.svg",
  4981. extra: 1599/1504,
  4982. bottom: 39/1638
  4983. }
  4984. },
  4985. laying: {
  4986. height: math.unit(3, "feet"),
  4987. weight: math.unit(180, "lbs"),
  4988. name: "Laying",
  4989. image: {
  4990. source: "./media/characters/zaakira/laying.svg"
  4991. }
  4992. },
  4993. },
  4994. [
  4995. {
  4996. name: "Normal",
  4997. height: math.unit(12, "feet")
  4998. },
  4999. {
  5000. name: "Macro",
  5001. height: math.unit(279, "feet"),
  5002. default: true
  5003. }
  5004. ]
  5005. ))
  5006. characterMakers.push(() => makeCharacter(
  5007. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5008. {
  5009. femSfw: {
  5010. height: math.unit(8, "feet"),
  5011. weight: math.unit(350, "lb"),
  5012. name: "Fem",
  5013. image: {
  5014. source: "./media/characters/sigvald/fem-sfw.svg",
  5015. extra: 182 / 164,
  5016. bottom: 8.7 / 190.5
  5017. }
  5018. },
  5019. femNsfw: {
  5020. height: math.unit(8, "feet"),
  5021. weight: math.unit(350, "lb"),
  5022. name: "Fem (NSFW)",
  5023. image: {
  5024. source: "./media/characters/sigvald/fem-nsfw.svg",
  5025. extra: 182 / 164,
  5026. bottom: 8.7 / 190.5
  5027. }
  5028. },
  5029. maleNsfw: {
  5030. height: math.unit(8, "feet"),
  5031. weight: math.unit(350, "lb"),
  5032. name: "Male (NSFW)",
  5033. image: {
  5034. source: "./media/characters/sigvald/male-nsfw.svg",
  5035. extra: 182 / 164,
  5036. bottom: 8.7 / 190.5
  5037. }
  5038. },
  5039. hermNsfw: {
  5040. height: math.unit(8, "feet"),
  5041. weight: math.unit(350, "lb"),
  5042. name: "Herm (NSFW)",
  5043. image: {
  5044. source: "./media/characters/sigvald/herm-nsfw.svg",
  5045. extra: 182 / 164,
  5046. bottom: 8.7 / 190.5
  5047. }
  5048. },
  5049. dick: {
  5050. height: math.unit(2.36, "feet"),
  5051. name: "Dick",
  5052. image: {
  5053. source: "./media/characters/sigvald/dick.svg"
  5054. }
  5055. },
  5056. eye: {
  5057. height: math.unit(0.31, "feet"),
  5058. name: "Eye",
  5059. image: {
  5060. source: "./media/characters/sigvald/eye.svg"
  5061. }
  5062. },
  5063. mouth: {
  5064. height: math.unit(0.92, "feet"),
  5065. name: "Mouth",
  5066. image: {
  5067. source: "./media/characters/sigvald/mouth.svg"
  5068. }
  5069. },
  5070. paws: {
  5071. height: math.unit(2.2, "feet"),
  5072. name: "Paws",
  5073. image: {
  5074. source: "./media/characters/sigvald/paws.svg"
  5075. }
  5076. }
  5077. },
  5078. [
  5079. {
  5080. name: "Normal",
  5081. height: math.unit(8, "feet")
  5082. },
  5083. {
  5084. name: "Large",
  5085. height: math.unit(12, "feet")
  5086. },
  5087. {
  5088. name: "Larger",
  5089. height: math.unit(20, "feet")
  5090. },
  5091. {
  5092. name: "Macro",
  5093. height: math.unit(150, "feet")
  5094. },
  5095. {
  5096. name: "Macro+",
  5097. height: math.unit(200, "feet"),
  5098. default: true
  5099. },
  5100. ]
  5101. ))
  5102. characterMakers.push(() => makeCharacter(
  5103. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5104. {
  5105. side: {
  5106. height: math.unit(12, "feet"),
  5107. weight: math.unit(2000, "kg"),
  5108. name: "Side",
  5109. image: {
  5110. source: "./media/characters/scott/side.svg",
  5111. extra: 754 / 724,
  5112. bottom: 0.069
  5113. }
  5114. },
  5115. upright: {
  5116. height: math.unit(12, "feet"),
  5117. weight: math.unit(2000, "kg"),
  5118. name: "Upright",
  5119. image: {
  5120. source: "./media/characters/scott/upright.svg",
  5121. extra: 3881 / 3722,
  5122. bottom: 0.05
  5123. }
  5124. },
  5125. },
  5126. [
  5127. {
  5128. name: "Normal",
  5129. height: math.unit(12, "feet"),
  5130. default: true
  5131. },
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5136. {
  5137. side: {
  5138. height: math.unit(8, "meters"),
  5139. weight: math.unit(84755, "lbs"),
  5140. name: "Side",
  5141. image: {
  5142. source: "./media/characters/tobias/side.svg",
  5143. extra: 1474 / 1096,
  5144. bottom: 38.9 / 1513.1235
  5145. }
  5146. },
  5147. },
  5148. [
  5149. {
  5150. name: "Normal",
  5151. height: math.unit(8, "meters"),
  5152. default: true
  5153. },
  5154. ]
  5155. ))
  5156. characterMakers.push(() => makeCharacter(
  5157. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5158. {
  5159. front: {
  5160. height: math.unit(5.5, "feet"),
  5161. weight: math.unit(400, "lbs"),
  5162. name: "Front",
  5163. image: {
  5164. source: "./media/characters/kieran/front.svg",
  5165. extra: 2694 / 2364,
  5166. bottom: 217 / 2908
  5167. }
  5168. },
  5169. side: {
  5170. height: math.unit(5.5, "feet"),
  5171. weight: math.unit(400, "lbs"),
  5172. name: "Side",
  5173. image: {
  5174. source: "./media/characters/kieran/side.svg",
  5175. extra: 875 / 777,
  5176. bottom: 84.6 / 959
  5177. }
  5178. },
  5179. },
  5180. [
  5181. {
  5182. name: "Normal",
  5183. height: math.unit(5.5, "feet"),
  5184. default: true
  5185. },
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5190. {
  5191. side: {
  5192. height: math.unit(2, "meters"),
  5193. weight: math.unit(70, "kg"),
  5194. name: "Side",
  5195. image: {
  5196. source: "./media/characters/sanya/side.svg",
  5197. bottom: 0.02,
  5198. extra: 1.02
  5199. }
  5200. },
  5201. },
  5202. [
  5203. {
  5204. name: "Small",
  5205. height: math.unit(2, "meters")
  5206. },
  5207. {
  5208. name: "Normal",
  5209. height: math.unit(3, "meters")
  5210. },
  5211. {
  5212. name: "Macro",
  5213. height: math.unit(16, "meters"),
  5214. default: true
  5215. },
  5216. ]
  5217. ))
  5218. characterMakers.push(() => makeCharacter(
  5219. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5220. {
  5221. front: {
  5222. height: math.unit(2, "meters"),
  5223. weight: math.unit(120, "kg"),
  5224. name: "Front",
  5225. image: {
  5226. source: "./media/characters/miranda/front.svg",
  5227. extra: 195 / 185,
  5228. bottom: 10.9 / 206.5
  5229. }
  5230. },
  5231. back: {
  5232. height: math.unit(2, "meters"),
  5233. weight: math.unit(120, "kg"),
  5234. name: "Back",
  5235. image: {
  5236. source: "./media/characters/miranda/back.svg",
  5237. extra: 201 / 193,
  5238. bottom: 2.3 / 203.7
  5239. }
  5240. },
  5241. },
  5242. [
  5243. {
  5244. name: "Normal",
  5245. height: math.unit(10, "feet"),
  5246. default: true
  5247. }
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "James", species: ["deer"], tags: ["anthro"] },
  5252. {
  5253. side: {
  5254. height: math.unit(2, "meters"),
  5255. weight: math.unit(100, "kg"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/james/front.svg",
  5259. extra: 10 / 8.5
  5260. }
  5261. },
  5262. },
  5263. [
  5264. {
  5265. name: "Normal",
  5266. height: math.unit(8.5, "feet"),
  5267. default: true
  5268. }
  5269. ]
  5270. ))
  5271. characterMakers.push(() => makeCharacter(
  5272. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5273. {
  5274. side: {
  5275. height: math.unit(9.5, "feet"),
  5276. weight: math.unit(2500, "lbs"),
  5277. name: "Side",
  5278. image: {
  5279. source: "./media/characters/heather/side.svg"
  5280. }
  5281. },
  5282. },
  5283. [
  5284. {
  5285. name: "Normal",
  5286. height: math.unit(9.5, "feet"),
  5287. default: true
  5288. }
  5289. ]
  5290. ))
  5291. characterMakers.push(() => makeCharacter(
  5292. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5293. {
  5294. side: {
  5295. height: math.unit(6.5, "feet"),
  5296. weight: math.unit(400, "lbs"),
  5297. name: "Side",
  5298. image: {
  5299. source: "./media/characters/lukas/side.svg",
  5300. extra: 7.25 / 6.5
  5301. }
  5302. },
  5303. },
  5304. [
  5305. {
  5306. name: "Normal",
  5307. height: math.unit(6.5, "feet"),
  5308. default: true
  5309. }
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5314. {
  5315. side: {
  5316. height: math.unit(5, "feet"),
  5317. weight: math.unit(3000, "lbs"),
  5318. name: "Side",
  5319. image: {
  5320. source: "./media/characters/louise/side.svg"
  5321. }
  5322. },
  5323. },
  5324. [
  5325. {
  5326. name: "Normal",
  5327. height: math.unit(5, "feet"),
  5328. default: true
  5329. }
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5334. {
  5335. side: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(150, "lbs"),
  5338. name: "Side",
  5339. image: {
  5340. source: "./media/characters/ramona/side.svg",
  5341. extra: 871/854,
  5342. bottom: 41/912
  5343. }
  5344. },
  5345. },
  5346. [
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(5.3, "meters"),
  5350. default: true
  5351. },
  5352. {
  5353. name: "Macro",
  5354. height: math.unit(20, "stories")
  5355. },
  5356. {
  5357. name: "Macro+",
  5358. height: math.unit(50, "stories")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5364. {
  5365. standing: {
  5366. height: math.unit(5.75, "feet"),
  5367. weight: math.unit(160, "lbs"),
  5368. name: "Standing",
  5369. image: {
  5370. source: "./media/characters/deerpuff/standing.svg",
  5371. extra: 682 / 624
  5372. }
  5373. },
  5374. sitting: {
  5375. height: math.unit(5.75 / 1.79, "feet"),
  5376. weight: math.unit(160, "lbs"),
  5377. name: "Sitting",
  5378. image: {
  5379. source: "./media/characters/deerpuff/sitting.svg",
  5380. bottom: 44 / 400,
  5381. extra: 1
  5382. }
  5383. },
  5384. taurLaying: {
  5385. height: math.unit(6, "feet"),
  5386. weight: math.unit(400, "lbs"),
  5387. name: "Taur (Laying)",
  5388. image: {
  5389. source: "./media/characters/deerpuff/taur-laying.svg"
  5390. }
  5391. },
  5392. },
  5393. [
  5394. {
  5395. name: "Puffball",
  5396. height: math.unit(6, "inches")
  5397. },
  5398. {
  5399. name: "Normalpuff",
  5400. height: math.unit(5.75, "feet")
  5401. },
  5402. {
  5403. name: "Macropuff",
  5404. height: math.unit(1500, "feet"),
  5405. default: true
  5406. },
  5407. {
  5408. name: "Megapuff",
  5409. height: math.unit(500, "miles")
  5410. },
  5411. {
  5412. name: "Gigapuff",
  5413. height: math.unit(250000, "miles")
  5414. },
  5415. {
  5416. name: "Omegapuff",
  5417. height: math.unit(1000, "lightyears")
  5418. },
  5419. ]
  5420. ))
  5421. characterMakers.push(() => makeCharacter(
  5422. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5423. {
  5424. stomping: {
  5425. height: math.unit(6, "feet"),
  5426. weight: math.unit(170, "lbs"),
  5427. name: "Stomping",
  5428. image: {
  5429. source: "./media/characters/vivian/stomping.svg"
  5430. }
  5431. },
  5432. sitting: {
  5433. height: math.unit(6 / 1.75, "feet"),
  5434. weight: math.unit(170, "lbs"),
  5435. name: "Sitting",
  5436. image: {
  5437. source: "./media/characters/vivian/sitting.svg",
  5438. bottom: 1 / 6.4,
  5439. extra: 1,
  5440. }
  5441. },
  5442. },
  5443. [
  5444. {
  5445. name: "Normal",
  5446. height: math.unit(7, "feet"),
  5447. default: true
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(10, "stories")
  5452. },
  5453. {
  5454. name: "Macro+",
  5455. height: math.unit(30, "stories")
  5456. },
  5457. {
  5458. name: "Megamacro",
  5459. height: math.unit(10, "miles")
  5460. },
  5461. {
  5462. name: "Megamacro+",
  5463. height: math.unit(2750000, "meters")
  5464. },
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5469. {
  5470. front: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(160, "lbs"),
  5473. name: "Front",
  5474. image: {
  5475. source: "./media/characters/prince/front.svg",
  5476. extra: 3400 / 3000
  5477. }
  5478. },
  5479. jumping: {
  5480. height: math.unit(6, "feet"),
  5481. weight: math.unit(160, "lbs"),
  5482. name: "Jumping",
  5483. image: {
  5484. source: "./media/characters/prince/jump.svg",
  5485. extra: 2555 / 2134
  5486. }
  5487. },
  5488. },
  5489. [
  5490. {
  5491. name: "Normal",
  5492. height: math.unit(7.75, "feet"),
  5493. default: true
  5494. },
  5495. {
  5496. name: "Not cute",
  5497. height: math.unit(17, "feet")
  5498. },
  5499. {
  5500. name: "I said NOT",
  5501. height: math.unit(91, "feet")
  5502. },
  5503. {
  5504. name: "Please stop",
  5505. height: math.unit(560, "feet")
  5506. },
  5507. {
  5508. name: "What have you done",
  5509. height: math.unit(2200, "feet")
  5510. },
  5511. {
  5512. name: "Deer God",
  5513. height: math.unit(3.6, "miles")
  5514. },
  5515. ]
  5516. ))
  5517. characterMakers.push(() => makeCharacter(
  5518. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5519. {
  5520. standing: {
  5521. height: math.unit(6, "feet"),
  5522. weight: math.unit(300, "lbs"),
  5523. name: "Standing",
  5524. image: {
  5525. source: "./media/characters/psymon/standing.svg",
  5526. extra: 1888 / 1810,
  5527. bottom: 0.05
  5528. }
  5529. },
  5530. slithering: {
  5531. height: math.unit(6, "feet"),
  5532. weight: math.unit(300, "lbs"),
  5533. name: "Slithering",
  5534. image: {
  5535. source: "./media/characters/psymon/slithering.svg",
  5536. extra: 1330 / 1224
  5537. }
  5538. },
  5539. slitheringAlt: {
  5540. height: math.unit(6, "feet"),
  5541. weight: math.unit(300, "lbs"),
  5542. name: "Slithering (Alt)",
  5543. image: {
  5544. source: "./media/characters/psymon/slithering-alt.svg",
  5545. extra: 1330 / 1224
  5546. }
  5547. },
  5548. },
  5549. [
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(11.25, "feet"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Large",
  5557. height: math.unit(27, "feet")
  5558. },
  5559. {
  5560. name: "Giant",
  5561. height: math.unit(87, "feet")
  5562. },
  5563. {
  5564. name: "Macro",
  5565. height: math.unit(365, "feet")
  5566. },
  5567. {
  5568. name: "Megamacro",
  5569. height: math.unit(3, "miles")
  5570. },
  5571. {
  5572. name: "World Serpent",
  5573. height: math.unit(8000, "miles")
  5574. },
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5579. {
  5580. front: {
  5581. height: math.unit(6, "feet"),
  5582. weight: math.unit(180, "lbs"),
  5583. name: "Front",
  5584. image: {
  5585. source: "./media/characters/daimos/front.svg",
  5586. extra: 4160 / 3897,
  5587. bottom: 0.021
  5588. }
  5589. }
  5590. },
  5591. [
  5592. {
  5593. name: "Normal",
  5594. height: math.unit(8, "feet"),
  5595. default: true
  5596. },
  5597. {
  5598. name: "Big Dog",
  5599. height: math.unit(22, "feet")
  5600. },
  5601. {
  5602. name: "Macro",
  5603. height: math.unit(127, "feet")
  5604. },
  5605. {
  5606. name: "Megamacro",
  5607. height: math.unit(3600, "feet")
  5608. },
  5609. ]
  5610. ))
  5611. characterMakers.push(() => makeCharacter(
  5612. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5613. {
  5614. side: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(180, "lbs"),
  5617. name: "Side",
  5618. image: {
  5619. source: "./media/characters/blake/side.svg",
  5620. extra: 1212 / 1120,
  5621. bottom: 0.05
  5622. }
  5623. },
  5624. crouched: {
  5625. height: math.unit(6 * 0.57, "feet"),
  5626. weight: math.unit(180, "lbs"),
  5627. name: "Crouched",
  5628. image: {
  5629. source: "./media/characters/blake/crouched.svg",
  5630. extra: 840 / 587,
  5631. bottom: 0.04
  5632. }
  5633. },
  5634. bent: {
  5635. height: math.unit(6 * 0.75, "feet"),
  5636. weight: math.unit(180, "lbs"),
  5637. name: "Bent",
  5638. image: {
  5639. source: "./media/characters/blake/bent.svg",
  5640. extra: 592 / 544,
  5641. bottom: 0.035
  5642. }
  5643. },
  5644. },
  5645. [
  5646. {
  5647. name: "Normal",
  5648. height: math.unit(8 + 1 / 6, "feet"),
  5649. default: true
  5650. },
  5651. {
  5652. name: "Big Backside",
  5653. height: math.unit(37, "feet")
  5654. },
  5655. {
  5656. name: "Subway Shredder",
  5657. height: math.unit(72, "feet")
  5658. },
  5659. {
  5660. name: "City Carver",
  5661. height: math.unit(1675, "feet")
  5662. },
  5663. {
  5664. name: "Tectonic Tweaker",
  5665. height: math.unit(2300, "miles")
  5666. },
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5671. {
  5672. front: {
  5673. height: math.unit(6, "feet"),
  5674. weight: math.unit(180, "lbs"),
  5675. name: "Front",
  5676. image: {
  5677. source: "./media/characters/guisetto/front.svg",
  5678. extra: 856 / 817,
  5679. bottom: 0.06
  5680. }
  5681. },
  5682. airborne: {
  5683. height: math.unit(6, "feet"),
  5684. weight: math.unit(180, "lbs"),
  5685. name: "Airborne",
  5686. image: {
  5687. source: "./media/characters/guisetto/airborne.svg",
  5688. extra: 584 / 525
  5689. }
  5690. },
  5691. },
  5692. [
  5693. {
  5694. name: "Normal",
  5695. height: math.unit(10 + 11 / 12, "feet"),
  5696. default: true
  5697. },
  5698. {
  5699. name: "Large",
  5700. height: math.unit(35, "feet")
  5701. },
  5702. {
  5703. name: "Macro",
  5704. height: math.unit(475, "feet")
  5705. },
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5710. {
  5711. front: {
  5712. height: math.unit(6, "feet"),
  5713. weight: math.unit(180, "lbs"),
  5714. name: "Front",
  5715. image: {
  5716. source: "./media/characters/luxor/front.svg",
  5717. extra: 2940 / 2152
  5718. }
  5719. },
  5720. back: {
  5721. height: math.unit(6, "feet"),
  5722. weight: math.unit(180, "lbs"),
  5723. name: "Back",
  5724. image: {
  5725. source: "./media/characters/luxor/back.svg",
  5726. extra: 1083 / 960
  5727. }
  5728. },
  5729. },
  5730. [
  5731. {
  5732. name: "Normal",
  5733. height: math.unit(5 + 5 / 6, "feet"),
  5734. default: true
  5735. },
  5736. {
  5737. name: "Lamp",
  5738. height: math.unit(50, "feet")
  5739. },
  5740. {
  5741. name: "Lämp",
  5742. height: math.unit(300, "feet")
  5743. },
  5744. {
  5745. name: "The sun is a lamp",
  5746. height: math.unit(250000, "miles")
  5747. },
  5748. ]
  5749. ))
  5750. characterMakers.push(() => makeCharacter(
  5751. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5752. {
  5753. front: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(50, "lbs"),
  5756. name: "Front",
  5757. image: {
  5758. source: "./media/characters/huoyan/front.svg"
  5759. }
  5760. },
  5761. side: {
  5762. height: math.unit(6, "feet"),
  5763. weight: math.unit(180, "lbs"),
  5764. name: "Side",
  5765. image: {
  5766. source: "./media/characters/huoyan/side.svg"
  5767. }
  5768. },
  5769. },
  5770. [
  5771. {
  5772. name: "Chef",
  5773. height: math.unit(9, "feet")
  5774. },
  5775. {
  5776. name: "Normal",
  5777. height: math.unit(65, "feet"),
  5778. default: true
  5779. },
  5780. {
  5781. name: "Macro",
  5782. height: math.unit(780, "feet")
  5783. },
  5784. {
  5785. name: "Flaming Mountain",
  5786. height: math.unit(4.8, "miles")
  5787. },
  5788. {
  5789. name: "Celestial",
  5790. height: math.unit(765000, "miles")
  5791. },
  5792. ]
  5793. ))
  5794. characterMakers.push(() => makeCharacter(
  5795. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5796. {
  5797. front: {
  5798. height: math.unit(5 + 3 / 4, "feet"),
  5799. weight: math.unit(120, "lbs"),
  5800. name: "Front",
  5801. image: {
  5802. source: "./media/characters/tails/front.svg"
  5803. }
  5804. }
  5805. },
  5806. [
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(5 + 3 / 4, "feet"),
  5810. default: true
  5811. }
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5816. {
  5817. front: {
  5818. height: math.unit(4, "feet"),
  5819. weight: math.unit(50, "lbs"),
  5820. name: "Front",
  5821. image: {
  5822. source: "./media/characters/rainy/front.svg"
  5823. }
  5824. }
  5825. },
  5826. [
  5827. {
  5828. name: "Macro",
  5829. height: math.unit(800, "feet"),
  5830. default: true
  5831. }
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5836. {
  5837. front: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(150, "lbs"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/rainier/front.svg"
  5843. }
  5844. }
  5845. },
  5846. [
  5847. {
  5848. name: "Micro",
  5849. height: math.unit(2, "mm"),
  5850. default: true
  5851. }
  5852. ]
  5853. ))
  5854. characterMakers.push(() => makeCharacter(
  5855. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5856. {
  5857. front: {
  5858. height: math.unit(8 + 4/12, "feet"),
  5859. name: "Front",
  5860. image: {
  5861. source: "./media/characters/andy-renard/front.svg",
  5862. extra: 1839/1726,
  5863. bottom: 134/1973
  5864. }
  5865. },
  5866. back: {
  5867. height: math.unit(8 + 4/12, "feet"),
  5868. name: "Back",
  5869. image: {
  5870. source: "./media/characters/andy-renard/back.svg",
  5871. extra: 1838/1710,
  5872. bottom: 105/1943
  5873. }
  5874. },
  5875. },
  5876. [
  5877. {
  5878. name: "Tall",
  5879. height: math.unit(8 + 4/12, "feet")
  5880. },
  5881. {
  5882. name: "Mini Macro",
  5883. height: math.unit(15, "feet"),
  5884. default: true
  5885. },
  5886. {
  5887. name: "Macro",
  5888. height: math.unit(100, "feet")
  5889. },
  5890. {
  5891. name: "Mega Macro",
  5892. height: math.unit(1000, "feet")
  5893. },
  5894. {
  5895. name: "Giga Macro",
  5896. height: math.unit(10, "miles")
  5897. },
  5898. {
  5899. name: "God Macro",
  5900. height: math.unit(1, "multiverse")
  5901. },
  5902. ]
  5903. ))
  5904. characterMakers.push(() => makeCharacter(
  5905. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5906. {
  5907. front: {
  5908. height: math.unit(6, "feet"),
  5909. weight: math.unit(210, "lbs"),
  5910. name: "Front",
  5911. image: {
  5912. source: "./media/characters/cimmaron/front-sfw.svg",
  5913. extra: 701 / 676,
  5914. bottom: 0.046
  5915. }
  5916. },
  5917. back: {
  5918. height: math.unit(6, "feet"),
  5919. weight: math.unit(210, "lbs"),
  5920. name: "Back",
  5921. image: {
  5922. source: "./media/characters/cimmaron/back-sfw.svg",
  5923. extra: 701 / 676,
  5924. bottom: 0.046
  5925. }
  5926. },
  5927. frontNsfw: {
  5928. height: math.unit(6, "feet"),
  5929. weight: math.unit(210, "lbs"),
  5930. name: "Front (NSFW)",
  5931. image: {
  5932. source: "./media/characters/cimmaron/front-nsfw.svg",
  5933. extra: 701 / 676,
  5934. bottom: 0.046
  5935. }
  5936. },
  5937. backNsfw: {
  5938. height: math.unit(6, "feet"),
  5939. weight: math.unit(210, "lbs"),
  5940. name: "Back (NSFW)",
  5941. image: {
  5942. source: "./media/characters/cimmaron/back-nsfw.svg",
  5943. extra: 701 / 676,
  5944. bottom: 0.046
  5945. }
  5946. },
  5947. dick: {
  5948. height: math.unit(1.714, "feet"),
  5949. name: "Dick",
  5950. image: {
  5951. source: "./media/characters/cimmaron/dick.svg"
  5952. }
  5953. },
  5954. },
  5955. [
  5956. {
  5957. name: "Normal",
  5958. height: math.unit(6, "feet"),
  5959. default: true
  5960. },
  5961. {
  5962. name: "Macro Mayor",
  5963. height: math.unit(350, "meters")
  5964. },
  5965. ]
  5966. ))
  5967. characterMakers.push(() => makeCharacter(
  5968. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5969. {
  5970. front: {
  5971. height: math.unit(6, "feet"),
  5972. weight: math.unit(200, "lbs"),
  5973. name: "Front",
  5974. image: {
  5975. source: "./media/characters/akari/front.svg",
  5976. extra: 962 / 901,
  5977. bottom: 0.04
  5978. }
  5979. }
  5980. },
  5981. [
  5982. {
  5983. name: "Micro",
  5984. height: math.unit(5, "inches"),
  5985. default: true
  5986. },
  5987. {
  5988. name: "Normal",
  5989. height: math.unit(7, "feet")
  5990. },
  5991. ]
  5992. ))
  5993. characterMakers.push(() => makeCharacter(
  5994. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5995. {
  5996. front: {
  5997. height: math.unit(6, "feet"),
  5998. weight: math.unit(140, "lbs"),
  5999. name: "Front",
  6000. image: {
  6001. source: "./media/characters/cynosura/front.svg",
  6002. extra: 896 / 847
  6003. }
  6004. },
  6005. back: {
  6006. height: math.unit(6, "feet"),
  6007. weight: math.unit(140, "lbs"),
  6008. name: "Back",
  6009. image: {
  6010. source: "./media/characters/cynosura/back.svg",
  6011. extra: 1365 / 1250
  6012. }
  6013. },
  6014. },
  6015. [
  6016. {
  6017. name: "Micro",
  6018. height: math.unit(4, "inches")
  6019. },
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(5.75, "feet"),
  6023. default: true
  6024. },
  6025. {
  6026. name: "Tall",
  6027. height: math.unit(10, "feet")
  6028. },
  6029. {
  6030. name: "Big",
  6031. height: math.unit(20, "feet")
  6032. },
  6033. {
  6034. name: "Macro",
  6035. height: math.unit(50, "feet")
  6036. },
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6041. {
  6042. front: {
  6043. height: math.unit(13 + 2/12, "feet"),
  6044. weight: math.unit(800, "kg"),
  6045. name: "Front",
  6046. image: {
  6047. source: "./media/characters/gin/front.svg",
  6048. extra: 1312/1191,
  6049. bottom: 45/1357
  6050. }
  6051. },
  6052. mouth: {
  6053. height: math.unit(2.39 * 1.8, "feet"),
  6054. name: "Mouth",
  6055. image: {
  6056. source: "./media/characters/gin/mouth.svg"
  6057. }
  6058. },
  6059. hand: {
  6060. height: math.unit(1.57 * 2.19, "feet"),
  6061. name: "Hand",
  6062. image: {
  6063. source: "./media/characters/gin/hand.svg"
  6064. }
  6065. },
  6066. foot: {
  6067. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6068. name: "Foot",
  6069. image: {
  6070. source: "./media/characters/gin/foot.svg"
  6071. }
  6072. },
  6073. sole: {
  6074. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6075. name: "Sole",
  6076. image: {
  6077. source: "./media/characters/gin/sole.svg"
  6078. }
  6079. },
  6080. },
  6081. [
  6082. {
  6083. name: "Very Small",
  6084. height: math.unit(13 + 2 / 12, "feet")
  6085. },
  6086. {
  6087. name: "Micro",
  6088. height: math.unit(600, "miles")
  6089. },
  6090. {
  6091. name: "Regular",
  6092. height: math.unit(20, "earths"),
  6093. default: true
  6094. },
  6095. {
  6096. name: "Macro",
  6097. height: math.unit(2.2, "solarradii")
  6098. },
  6099. {
  6100. name: "Teramacro",
  6101. height: math.unit(1.2, "galaxies")
  6102. },
  6103. {
  6104. name: "Omegamacro",
  6105. height: math.unit(200, "universes")
  6106. },
  6107. ]
  6108. ))
  6109. characterMakers.push(() => makeCharacter(
  6110. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6111. {
  6112. front: {
  6113. height: math.unit(6 + 1 / 6, "feet"),
  6114. weight: math.unit(178, "lbs"),
  6115. name: "Front",
  6116. image: {
  6117. source: "./media/characters/guy/front.svg"
  6118. }
  6119. }
  6120. },
  6121. [
  6122. {
  6123. name: "Normal",
  6124. height: math.unit(6 + 1 / 6, "feet"),
  6125. default: true
  6126. },
  6127. {
  6128. name: "Large",
  6129. height: math.unit(25 + 7 / 12, "feet")
  6130. },
  6131. {
  6132. name: "Macro",
  6133. height: math.unit(60 + 9 / 12, "feet")
  6134. },
  6135. {
  6136. name: "Macro+",
  6137. height: math.unit(246, "feet")
  6138. },
  6139. {
  6140. name: "Macro++",
  6141. height: math.unit(878, "feet")
  6142. }
  6143. ]
  6144. ))
  6145. characterMakers.push(() => makeCharacter(
  6146. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6147. {
  6148. front: {
  6149. height: math.unit(9, "feet"),
  6150. weight: math.unit(800, "lbs"),
  6151. name: "Front",
  6152. image: {
  6153. source: "./media/characters/tiberius/front.svg",
  6154. extra: 2295 / 2071
  6155. }
  6156. },
  6157. back: {
  6158. height: math.unit(9, "feet"),
  6159. weight: math.unit(800, "lbs"),
  6160. name: "Back",
  6161. image: {
  6162. source: "./media/characters/tiberius/back.svg",
  6163. extra: 2373 / 2160
  6164. }
  6165. },
  6166. },
  6167. [
  6168. {
  6169. name: "Normal",
  6170. height: math.unit(9, "feet"),
  6171. default: true
  6172. }
  6173. ]
  6174. ))
  6175. characterMakers.push(() => makeCharacter(
  6176. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6177. {
  6178. front: {
  6179. height: math.unit(6, "feet"),
  6180. weight: math.unit(600, "lbs"),
  6181. name: "Front",
  6182. image: {
  6183. source: "./media/characters/surgo/front.svg",
  6184. extra: 3591 / 2227
  6185. }
  6186. },
  6187. back: {
  6188. height: math.unit(6, "feet"),
  6189. weight: math.unit(600, "lbs"),
  6190. name: "Back",
  6191. image: {
  6192. source: "./media/characters/surgo/back.svg",
  6193. extra: 3557 / 2228
  6194. }
  6195. },
  6196. laying: {
  6197. height: math.unit(6 * 0.85, "feet"),
  6198. weight: math.unit(600, "lbs"),
  6199. name: "Laying",
  6200. image: {
  6201. source: "./media/characters/surgo/laying.svg"
  6202. }
  6203. },
  6204. },
  6205. [
  6206. {
  6207. name: "Normal",
  6208. height: math.unit(6, "feet"),
  6209. default: true
  6210. }
  6211. ]
  6212. ))
  6213. characterMakers.push(() => makeCharacter(
  6214. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6215. {
  6216. side: {
  6217. height: math.unit(6, "feet"),
  6218. weight: math.unit(150, "lbs"),
  6219. name: "Side",
  6220. image: {
  6221. source: "./media/characters/cibus/side.svg",
  6222. extra: 800 / 400
  6223. }
  6224. },
  6225. },
  6226. [
  6227. {
  6228. name: "Normal",
  6229. height: math.unit(6, "feet"),
  6230. default: true
  6231. }
  6232. ]
  6233. ))
  6234. characterMakers.push(() => makeCharacter(
  6235. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6236. {
  6237. front: {
  6238. height: math.unit(6, "feet"),
  6239. weight: math.unit(240, "lbs"),
  6240. name: "Front",
  6241. image: {
  6242. source: "./media/characters/nibbles/front.svg"
  6243. }
  6244. },
  6245. side: {
  6246. height: math.unit(6, "feet"),
  6247. weight: math.unit(240, "lbs"),
  6248. name: "Side",
  6249. image: {
  6250. source: "./media/characters/nibbles/side.svg"
  6251. }
  6252. },
  6253. },
  6254. [
  6255. {
  6256. name: "Normal",
  6257. height: math.unit(9, "feet"),
  6258. default: true
  6259. }
  6260. ]
  6261. ))
  6262. characterMakers.push(() => makeCharacter(
  6263. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6264. {
  6265. side: {
  6266. height: math.unit(5 + 1 / 6, "feet"),
  6267. weight: math.unit(130, "lbs"),
  6268. name: "Side",
  6269. image: {
  6270. source: "./media/characters/rikky/side.svg",
  6271. extra: 851 / 801
  6272. }
  6273. },
  6274. },
  6275. [
  6276. {
  6277. name: "Normal",
  6278. height: math.unit(5 + 1 / 6, "feet")
  6279. },
  6280. {
  6281. name: "Macro",
  6282. height: math.unit(152, "feet"),
  6283. default: true
  6284. },
  6285. {
  6286. name: "Megamacro",
  6287. height: math.unit(7, "miles")
  6288. }
  6289. ]
  6290. ))
  6291. characterMakers.push(() => makeCharacter(
  6292. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6293. {
  6294. side: {
  6295. height: math.unit(370, "cm"),
  6296. weight: math.unit(350, "lbs"),
  6297. name: "Side",
  6298. image: {
  6299. source: "./media/characters/malfressa/side.svg"
  6300. }
  6301. },
  6302. walking: {
  6303. height: math.unit(370, "cm"),
  6304. weight: math.unit(350, "lbs"),
  6305. name: "Walking",
  6306. image: {
  6307. source: "./media/characters/malfressa/walking.svg"
  6308. }
  6309. },
  6310. feral: {
  6311. height: math.unit(2500, "cm"),
  6312. weight: math.unit(100000, "lbs"),
  6313. name: "Feral",
  6314. image: {
  6315. source: "./media/characters/malfressa/feral.svg",
  6316. extra: 2108 / 837,
  6317. bottom: 0.02
  6318. }
  6319. },
  6320. },
  6321. [
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(370, "cm")
  6325. },
  6326. {
  6327. name: "Macro",
  6328. height: math.unit(300, "meters"),
  6329. default: true
  6330. }
  6331. ]
  6332. ))
  6333. characterMakers.push(() => makeCharacter(
  6334. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6335. {
  6336. front: {
  6337. height: math.unit(6, "feet"),
  6338. weight: math.unit(60, "kg"),
  6339. name: "Front",
  6340. image: {
  6341. source: "./media/characters/jaro/front.svg"
  6342. }
  6343. },
  6344. back: {
  6345. height: math.unit(6, "feet"),
  6346. weight: math.unit(60, "kg"),
  6347. name: "Back",
  6348. image: {
  6349. source: "./media/characters/jaro/back.svg"
  6350. }
  6351. },
  6352. },
  6353. [
  6354. {
  6355. name: "Micro",
  6356. height: math.unit(7, "inches")
  6357. },
  6358. {
  6359. name: "Normal",
  6360. height: math.unit(5.5, "feet"),
  6361. default: true
  6362. },
  6363. {
  6364. name: "Minimacro",
  6365. height: math.unit(20, "feet")
  6366. },
  6367. {
  6368. name: "Macro",
  6369. height: math.unit(200, "meters")
  6370. }
  6371. ]
  6372. ))
  6373. characterMakers.push(() => makeCharacter(
  6374. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6375. {
  6376. front: {
  6377. height: math.unit(6, "feet"),
  6378. weight: math.unit(195, "lb"),
  6379. name: "Front",
  6380. image: {
  6381. source: "./media/characters/rogue/front.svg"
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Macro",
  6388. height: math.unit(90, "feet"),
  6389. default: true
  6390. },
  6391. ]
  6392. ))
  6393. characterMakers.push(() => makeCharacter(
  6394. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6395. {
  6396. front: {
  6397. height: math.unit(5 + 8 / 12, "feet"),
  6398. weight: math.unit(140, "lb"),
  6399. name: "Front",
  6400. image: {
  6401. source: "./media/characters/piper/front.svg",
  6402. extra: 3948/3655,
  6403. bottom: 0/3948
  6404. }
  6405. },
  6406. },
  6407. [
  6408. {
  6409. name: "Micro",
  6410. height: math.unit(2, "inches")
  6411. },
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(5 + 8 / 12, "feet")
  6415. },
  6416. {
  6417. name: "Macro",
  6418. height: math.unit(250, "feet"),
  6419. default: true
  6420. },
  6421. {
  6422. name: "Megamacro",
  6423. height: math.unit(7, "miles")
  6424. },
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6429. {
  6430. front: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(220, "lb"),
  6433. name: "Front",
  6434. image: {
  6435. source: "./media/characters/gemini/front.svg"
  6436. }
  6437. },
  6438. back: {
  6439. height: math.unit(6, "feet"),
  6440. weight: math.unit(220, "lb"),
  6441. name: "Back",
  6442. image: {
  6443. source: "./media/characters/gemini/back.svg"
  6444. }
  6445. },
  6446. kneeling: {
  6447. height: math.unit(6 / 1.5, "feet"),
  6448. weight: math.unit(220, "lb"),
  6449. name: "Kneeling",
  6450. image: {
  6451. source: "./media/characters/gemini/kneeling.svg",
  6452. bottom: 0.02
  6453. }
  6454. },
  6455. },
  6456. [
  6457. {
  6458. name: "Macro",
  6459. height: math.unit(300, "meters"),
  6460. default: true
  6461. },
  6462. {
  6463. name: "Megamacro",
  6464. height: math.unit(6900, "meters")
  6465. },
  6466. ]
  6467. ))
  6468. characterMakers.push(() => makeCharacter(
  6469. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6470. {
  6471. anthro: {
  6472. height: math.unit(2.35, "meters"),
  6473. weight: math.unit(73, "kg"),
  6474. name: "Anthro",
  6475. image: {
  6476. source: "./media/characters/alicia/anthro.svg",
  6477. extra: 2571 / 2385,
  6478. bottom: 75 / 2648
  6479. }
  6480. },
  6481. paw: {
  6482. height: math.unit(1.32, "feet"),
  6483. name: "Paw",
  6484. image: {
  6485. source: "./media/characters/alicia/paw.svg"
  6486. }
  6487. },
  6488. feral: {
  6489. height: math.unit(1.69, "meters"),
  6490. weight: math.unit(73, "kg"),
  6491. name: "Feral",
  6492. image: {
  6493. source: "./media/characters/alicia/feral.svg",
  6494. extra: 2123 / 1715,
  6495. bottom: 222 / 2349
  6496. }
  6497. },
  6498. },
  6499. [
  6500. {
  6501. name: "Normal",
  6502. height: math.unit(2.35, "meters")
  6503. },
  6504. {
  6505. name: "Macro",
  6506. height: math.unit(60, "meters"),
  6507. default: true
  6508. },
  6509. {
  6510. name: "Megamacro",
  6511. height: math.unit(10000, "kilometers")
  6512. },
  6513. ]
  6514. ))
  6515. characterMakers.push(() => makeCharacter(
  6516. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6517. {
  6518. front: {
  6519. height: math.unit(7, "feet"),
  6520. weight: math.unit(250, "lbs"),
  6521. name: "Front",
  6522. image: {
  6523. source: "./media/characters/archy/front.svg"
  6524. }
  6525. }
  6526. },
  6527. [
  6528. {
  6529. name: "Micro",
  6530. height: math.unit(1, "inch")
  6531. },
  6532. {
  6533. name: "Shorty",
  6534. height: math.unit(5, "feet")
  6535. },
  6536. {
  6537. name: "Normal",
  6538. height: math.unit(7, "feet")
  6539. },
  6540. {
  6541. name: "Macro",
  6542. height: math.unit(600, "meters"),
  6543. default: true
  6544. },
  6545. {
  6546. name: "Megamacro",
  6547. height: math.unit(1, "mile")
  6548. },
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6553. {
  6554. front: {
  6555. height: math.unit(1.65, "meters"),
  6556. weight: math.unit(74, "kg"),
  6557. name: "Front",
  6558. image: {
  6559. source: "./media/characters/berri/front.svg",
  6560. extra: 857 / 837,
  6561. bottom: 18 / 877
  6562. }
  6563. },
  6564. bum: {
  6565. height: math.unit(1.46, "feet"),
  6566. name: "Bum",
  6567. image: {
  6568. source: "./media/characters/berri/bum.svg"
  6569. }
  6570. },
  6571. mouth: {
  6572. height: math.unit(0.44, "feet"),
  6573. name: "Mouth",
  6574. image: {
  6575. source: "./media/characters/berri/mouth.svg"
  6576. }
  6577. },
  6578. paw: {
  6579. height: math.unit(0.826, "feet"),
  6580. name: "Paw",
  6581. image: {
  6582. source: "./media/characters/berri/paw.svg"
  6583. }
  6584. },
  6585. },
  6586. [
  6587. {
  6588. name: "Normal",
  6589. height: math.unit(1.65, "meters")
  6590. },
  6591. {
  6592. name: "Macro",
  6593. height: math.unit(60, "m"),
  6594. default: true
  6595. },
  6596. {
  6597. name: "Megamacro",
  6598. height: math.unit(9.213, "km")
  6599. },
  6600. {
  6601. name: "Planet Eater",
  6602. height: math.unit(489, "megameters")
  6603. },
  6604. {
  6605. name: "Teramacro",
  6606. height: math.unit(2471635000000, "meters")
  6607. },
  6608. {
  6609. name: "Examacro",
  6610. height: math.unit(8.0624e+26, "meters")
  6611. }
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6616. {
  6617. front: {
  6618. height: math.unit(1.72, "meters"),
  6619. weight: math.unit(68, "kg"),
  6620. name: "Front",
  6621. image: {
  6622. source: "./media/characters/lexi/front.svg"
  6623. }
  6624. }
  6625. },
  6626. [
  6627. {
  6628. name: "Very Smol",
  6629. height: math.unit(10, "mm")
  6630. },
  6631. {
  6632. name: "Micro",
  6633. height: math.unit(6.8, "cm"),
  6634. default: true
  6635. },
  6636. {
  6637. name: "Normal",
  6638. height: math.unit(1.72, "m")
  6639. }
  6640. ]
  6641. ))
  6642. characterMakers.push(() => makeCharacter(
  6643. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6644. {
  6645. front: {
  6646. height: math.unit(1.69, "meters"),
  6647. weight: math.unit(68, "kg"),
  6648. name: "Front",
  6649. image: {
  6650. source: "./media/characters/martin/front.svg",
  6651. extra: 596 / 581
  6652. }
  6653. }
  6654. },
  6655. [
  6656. {
  6657. name: "Micro",
  6658. height: math.unit(6.85, "cm"),
  6659. default: true
  6660. },
  6661. {
  6662. name: "Normal",
  6663. height: math.unit(1.69, "m")
  6664. }
  6665. ]
  6666. ))
  6667. characterMakers.push(() => makeCharacter(
  6668. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6669. {
  6670. front: {
  6671. height: math.unit(1.69, "meters"),
  6672. weight: math.unit(68, "kg"),
  6673. name: "Front",
  6674. image: {
  6675. source: "./media/characters/juno/front.svg"
  6676. }
  6677. }
  6678. },
  6679. [
  6680. {
  6681. name: "Micro",
  6682. height: math.unit(7, "cm")
  6683. },
  6684. {
  6685. name: "Normal",
  6686. height: math.unit(1.89, "m")
  6687. },
  6688. {
  6689. name: "Macro",
  6690. height: math.unit(353, "meters"),
  6691. default: true
  6692. }
  6693. ]
  6694. ))
  6695. characterMakers.push(() => makeCharacter(
  6696. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6697. {
  6698. front: {
  6699. height: math.unit(1.93, "meters"),
  6700. weight: math.unit(83, "kg"),
  6701. name: "Front",
  6702. image: {
  6703. source: "./media/characters/samantha/front.svg"
  6704. }
  6705. },
  6706. frontClothed: {
  6707. height: math.unit(1.93, "meters"),
  6708. weight: math.unit(83, "kg"),
  6709. name: "Front (Clothed)",
  6710. image: {
  6711. source: "./media/characters/samantha/front-clothed.svg"
  6712. }
  6713. },
  6714. back: {
  6715. height: math.unit(1.93, "meters"),
  6716. weight: math.unit(83, "kg"),
  6717. name: "Back",
  6718. image: {
  6719. source: "./media/characters/samantha/back.svg"
  6720. }
  6721. },
  6722. },
  6723. [
  6724. {
  6725. name: "Normal",
  6726. height: math.unit(1.93, "m")
  6727. },
  6728. {
  6729. name: "Macro",
  6730. height: math.unit(74, "meters"),
  6731. default: true
  6732. },
  6733. {
  6734. name: "Macro+",
  6735. height: math.unit(223, "meters"),
  6736. },
  6737. {
  6738. name: "Megamacro",
  6739. height: math.unit(8381, "meters"),
  6740. },
  6741. {
  6742. name: "Megamacro+",
  6743. height: math.unit(12000, "kilometers")
  6744. },
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(1.92, "meters"),
  6752. weight: math.unit(80, "kg"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/dr-clay/front.svg"
  6756. }
  6757. },
  6758. frontClothed: {
  6759. height: math.unit(1.92, "meters"),
  6760. weight: math.unit(80, "kg"),
  6761. name: "Front (Clothed)",
  6762. image: {
  6763. source: "./media/characters/dr-clay/front-clothed.svg"
  6764. }
  6765. }
  6766. },
  6767. [
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(1.92, "m")
  6771. },
  6772. {
  6773. name: "Macro",
  6774. height: math.unit(214, "meters"),
  6775. default: true
  6776. },
  6777. {
  6778. name: "Macro+",
  6779. height: math.unit(12.237, "meters"),
  6780. },
  6781. {
  6782. name: "Megamacro",
  6783. height: math.unit(557, "megameters"),
  6784. },
  6785. {
  6786. name: "Unimaginable",
  6787. height: math.unit(120e9, "lightyears")
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(2, "meters"),
  6796. weight: math.unit(80, "kg"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6800. }
  6801. }
  6802. },
  6803. [
  6804. {
  6805. name: "Teramacro",
  6806. height: math.unit(500000, "lightyears"),
  6807. default: true
  6808. },
  6809. ]
  6810. ))
  6811. characterMakers.push(() => makeCharacter(
  6812. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6813. {
  6814. crux: {
  6815. height: math.unit(2, "meters"),
  6816. weight: math.unit(150, "kg"),
  6817. name: "Crux",
  6818. image: {
  6819. source: "./media/characters/vemus/crux.svg",
  6820. extra: 1074/936,
  6821. bottom: 23/1097
  6822. }
  6823. },
  6824. skunkTanuki: {
  6825. height: math.unit(2, "meters"),
  6826. weight: math.unit(150, "kg"),
  6827. name: "Skunk-Tanuki",
  6828. image: {
  6829. source: "./media/characters/vemus/skunk-tanuki.svg",
  6830. extra: 926/893,
  6831. bottom: 20/946
  6832. }
  6833. },
  6834. },
  6835. [
  6836. {
  6837. name: "Normal",
  6838. height: math.unit(3.75, "meters"),
  6839. default: true
  6840. },
  6841. {
  6842. name: "Big",
  6843. height: math.unit(8, "meters")
  6844. },
  6845. {
  6846. name: "Macro",
  6847. height: math.unit(100, "meters")
  6848. },
  6849. {
  6850. name: "Macro+",
  6851. height: math.unit(1500, "meters")
  6852. },
  6853. {
  6854. name: "Stellar",
  6855. height: math.unit(14e8, "meters")
  6856. },
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6861. {
  6862. front: {
  6863. height: math.unit(2, "meters"),
  6864. weight: math.unit(70, "kg"),
  6865. name: "Front",
  6866. image: {
  6867. source: "./media/characters/beherit/front.svg",
  6868. extra: 1234/1109,
  6869. bottom: 55/1289
  6870. }
  6871. }
  6872. },
  6873. [
  6874. {
  6875. name: "Normal",
  6876. height: math.unit(6, "feet")
  6877. },
  6878. {
  6879. name: "Lorg",
  6880. height: math.unit(25, "feet"),
  6881. default: true
  6882. },
  6883. {
  6884. name: "Lorger",
  6885. height: math.unit(75, "feet")
  6886. },
  6887. {
  6888. name: "Macro",
  6889. height: math.unit(200, "meters")
  6890. },
  6891. ]
  6892. ))
  6893. characterMakers.push(() => makeCharacter(
  6894. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6895. {
  6896. front: {
  6897. height: math.unit(2, "meters"),
  6898. weight: math.unit(150, "kg"),
  6899. name: "Front",
  6900. image: {
  6901. source: "./media/characters/everett/front.svg",
  6902. extra: 1017/866,
  6903. bottom: 86/1103
  6904. }
  6905. },
  6906. paw: {
  6907. height: math.unit(2 / 3.6, "meters"),
  6908. name: "Paw",
  6909. image: {
  6910. source: "./media/characters/everett/paw.svg"
  6911. }
  6912. },
  6913. },
  6914. [
  6915. {
  6916. name: "Normal",
  6917. height: math.unit(15, "feet"),
  6918. default: true
  6919. },
  6920. {
  6921. name: "Lorg",
  6922. height: math.unit(70, "feet"),
  6923. default: true
  6924. },
  6925. {
  6926. name: "Lorger",
  6927. height: math.unit(250, "feet")
  6928. },
  6929. {
  6930. name: "Macro",
  6931. height: math.unit(500, "meters")
  6932. },
  6933. ]
  6934. ))
  6935. characterMakers.push(() => makeCharacter(
  6936. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6937. {
  6938. front: {
  6939. height: math.unit(2, "meters"),
  6940. weight: math.unit(86, "kg"),
  6941. name: "Front",
  6942. image: {
  6943. source: "./media/characters/rose/front.svg",
  6944. extra: 1785/1636,
  6945. bottom: 30/1815
  6946. }
  6947. },
  6948. frontSporty: {
  6949. height: math.unit(2, "meters"),
  6950. weight: math.unit(86, "kg"),
  6951. name: "Front (Sporty)",
  6952. image: {
  6953. source: "./media/characters/rose/front-sporty.svg",
  6954. extra: 350/335,
  6955. bottom: 10/360
  6956. }
  6957. },
  6958. frontAlt: {
  6959. height: math.unit(1.6, "meters"),
  6960. weight: math.unit(86, "kg"),
  6961. name: "Front (Alt)",
  6962. image: {
  6963. source: "./media/characters/rose/front-alt.svg",
  6964. extra: 299/283,
  6965. bottom: 3/302
  6966. }
  6967. },
  6968. plush: {
  6969. height: math.unit(2, "meters"),
  6970. weight: math.unit(86/3, "kg"),
  6971. name: "Plush",
  6972. image: {
  6973. source: "./media/characters/rose/plush.svg",
  6974. extra: 361/337,
  6975. bottom: 11/372
  6976. }
  6977. },
  6978. },
  6979. [
  6980. {
  6981. name: "True Micro",
  6982. height: math.unit(9, "cm")
  6983. },
  6984. {
  6985. name: "Micro",
  6986. height: math.unit(16, "cm")
  6987. },
  6988. {
  6989. name: "Normal",
  6990. height: math.unit(1.85, "meters"),
  6991. default: true
  6992. },
  6993. {
  6994. name: "Mini-Macro",
  6995. height: math.unit(5, "meters")
  6996. },
  6997. {
  6998. name: "Macro",
  6999. height: math.unit(15, "meters")
  7000. },
  7001. {
  7002. name: "True Macro",
  7003. height: math.unit(40, "meters")
  7004. },
  7005. {
  7006. name: "City Scale",
  7007. height: math.unit(1, "km")
  7008. },
  7009. ]
  7010. ))
  7011. characterMakers.push(() => makeCharacter(
  7012. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7013. {
  7014. front: {
  7015. height: math.unit(2, "meters"),
  7016. weight: math.unit(350, "lbs"),
  7017. name: "Front",
  7018. image: {
  7019. source: "./media/characters/regal/front.svg"
  7020. }
  7021. },
  7022. back: {
  7023. height: math.unit(2, "meters"),
  7024. weight: math.unit(350, "lbs"),
  7025. name: "Back",
  7026. image: {
  7027. source: "./media/characters/regal/back.svg"
  7028. }
  7029. },
  7030. },
  7031. [
  7032. {
  7033. name: "Macro",
  7034. height: math.unit(350, "feet"),
  7035. default: true
  7036. }
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7041. {
  7042. front: {
  7043. height: math.unit(4 + 11 / 12, "feet"),
  7044. weight: math.unit(100, "lbs"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/opal/front.svg"
  7048. }
  7049. },
  7050. frontAlt: {
  7051. height: math.unit(4 + 11 / 12, "feet"),
  7052. weight: math.unit(100, "lbs"),
  7053. name: "Front (Alt)",
  7054. image: {
  7055. source: "./media/characters/opal/front-alt.svg"
  7056. }
  7057. },
  7058. },
  7059. [
  7060. {
  7061. name: "Small",
  7062. height: math.unit(4 + 11 / 12, "feet")
  7063. },
  7064. {
  7065. name: "Normal",
  7066. height: math.unit(20, "feet"),
  7067. default: true
  7068. },
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(120, "feet")
  7072. },
  7073. {
  7074. name: "Megamacro",
  7075. height: math.unit(80, "miles")
  7076. },
  7077. {
  7078. name: "True Size",
  7079. height: math.unit(100000, "lightyears")
  7080. },
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7085. {
  7086. front: {
  7087. height: math.unit(6, "feet"),
  7088. weight: math.unit(200, "lbs"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/vector-wuff/front.svg"
  7092. }
  7093. }
  7094. },
  7095. [
  7096. {
  7097. name: "Normal",
  7098. height: math.unit(2.8, "meters")
  7099. },
  7100. {
  7101. name: "Macro",
  7102. height: math.unit(450, "meters"),
  7103. default: true
  7104. },
  7105. {
  7106. name: "Megamacro",
  7107. height: math.unit(15, "kilometers")
  7108. }
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7113. {
  7114. front: {
  7115. height: math.unit(6, "feet"),
  7116. weight: math.unit(256, "lbs"),
  7117. name: "Front",
  7118. image: {
  7119. source: "./media/characters/dannik/front.svg"
  7120. }
  7121. }
  7122. },
  7123. [
  7124. {
  7125. name: "Macro",
  7126. height: math.unit(69.57, "meters"),
  7127. default: true
  7128. },
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(120, "lbs"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/azura-saharah/front.svg"
  7140. }
  7141. },
  7142. back: {
  7143. height: math.unit(6, "feet"),
  7144. weight: math.unit(120, "lbs"),
  7145. name: "Back",
  7146. image: {
  7147. source: "./media/characters/azura-saharah/back.svg"
  7148. }
  7149. },
  7150. },
  7151. [
  7152. {
  7153. name: "Macro",
  7154. height: math.unit(100, "feet"),
  7155. default: true
  7156. },
  7157. ]
  7158. ))
  7159. characterMakers.push(() => makeCharacter(
  7160. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7161. {
  7162. side: {
  7163. height: math.unit(5 + 4 / 12, "feet"),
  7164. weight: math.unit(163, "lbs"),
  7165. name: "Side",
  7166. image: {
  7167. source: "./media/characters/kennedy/side.svg"
  7168. }
  7169. }
  7170. },
  7171. [
  7172. {
  7173. name: "Standard Doggo",
  7174. height: math.unit(5 + 4 / 12, "feet")
  7175. },
  7176. {
  7177. name: "Big Doggo",
  7178. height: math.unit(25 + 3 / 12, "feet"),
  7179. default: true
  7180. },
  7181. ]
  7182. ))
  7183. characterMakers.push(() => makeCharacter(
  7184. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7185. {
  7186. front: {
  7187. height: math.unit(5 + 5/12, "feet"),
  7188. weight: math.unit(100, "lbs"),
  7189. name: "Front",
  7190. image: {
  7191. source: "./media/characters/odios-de-lunar/front.svg",
  7192. extra: 1468/1323,
  7193. bottom: 22/1490
  7194. }
  7195. }
  7196. },
  7197. [
  7198. {
  7199. name: "Micro",
  7200. height: math.unit(3, "inches")
  7201. },
  7202. {
  7203. name: "Normal",
  7204. height: math.unit(5.5, "feet"),
  7205. default: true
  7206. },
  7207. {
  7208. name: "Macro",
  7209. height: math.unit(100, "feet")
  7210. },
  7211. ]
  7212. ))
  7213. characterMakers.push(() => makeCharacter(
  7214. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7215. {
  7216. back: {
  7217. height: math.unit(6, "feet"),
  7218. weight: math.unit(220, "lbs"),
  7219. name: "Back",
  7220. image: {
  7221. source: "./media/characters/mandake/back.svg"
  7222. }
  7223. }
  7224. },
  7225. [
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(7, "feet"),
  7229. default: true
  7230. },
  7231. {
  7232. name: "Macro",
  7233. height: math.unit(78, "feet")
  7234. },
  7235. {
  7236. name: "Macro+",
  7237. height: math.unit(300, "meters")
  7238. },
  7239. {
  7240. name: "Macro++",
  7241. height: math.unit(2400, "feet")
  7242. },
  7243. {
  7244. name: "Megamacro",
  7245. height: math.unit(5167, "meters")
  7246. },
  7247. {
  7248. name: "Gigamacro",
  7249. height: math.unit(41769, "miles")
  7250. },
  7251. ]
  7252. ))
  7253. characterMakers.push(() => makeCharacter(
  7254. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7255. {
  7256. front: {
  7257. height: math.unit(6, "feet"),
  7258. weight: math.unit(120, "lbs"),
  7259. name: "Front",
  7260. image: {
  7261. source: "./media/characters/yozey/front.svg"
  7262. }
  7263. },
  7264. frontAlt: {
  7265. height: math.unit(6, "feet"),
  7266. weight: math.unit(120, "lbs"),
  7267. name: "Front (Alt)",
  7268. image: {
  7269. source: "./media/characters/yozey/front-alt.svg"
  7270. }
  7271. },
  7272. side: {
  7273. height: math.unit(6, "feet"),
  7274. weight: math.unit(120, "lbs"),
  7275. name: "Side",
  7276. image: {
  7277. source: "./media/characters/yozey/side.svg"
  7278. }
  7279. },
  7280. },
  7281. [
  7282. {
  7283. name: "Micro",
  7284. height: math.unit(3, "inches"),
  7285. default: true
  7286. },
  7287. {
  7288. name: "Normal",
  7289. height: math.unit(6, "feet")
  7290. }
  7291. ]
  7292. ))
  7293. characterMakers.push(() => makeCharacter(
  7294. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7295. {
  7296. front: {
  7297. height: math.unit(6, "feet"),
  7298. weight: math.unit(103, "lbs"),
  7299. name: "Front",
  7300. image: {
  7301. source: "./media/characters/valeska-voss/front.svg"
  7302. }
  7303. }
  7304. },
  7305. [
  7306. {
  7307. name: "Mini-Sized Sub",
  7308. height: math.unit(3.1, "inches")
  7309. },
  7310. {
  7311. name: "Mid-Sized Sub",
  7312. height: math.unit(6.2, "inches")
  7313. },
  7314. {
  7315. name: "Full-Sized Sub",
  7316. height: math.unit(9.3, "inches")
  7317. },
  7318. {
  7319. name: "Normal",
  7320. height: math.unit(5 + 2 / 12, "foot"),
  7321. default: true
  7322. },
  7323. ]
  7324. ))
  7325. characterMakers.push(() => makeCharacter(
  7326. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7327. {
  7328. front: {
  7329. height: math.unit(6, "feet"),
  7330. weight: math.unit(160, "lbs"),
  7331. name: "Front",
  7332. image: {
  7333. source: "./media/characters/gene-zeta/front.svg",
  7334. extra: 3006 / 2826,
  7335. bottom: 182 / 3188
  7336. }
  7337. }
  7338. },
  7339. [
  7340. {
  7341. name: "Micro",
  7342. height: math.unit(6, "inches")
  7343. },
  7344. {
  7345. name: "Normal",
  7346. height: math.unit(5 + 11 / 12, "foot"),
  7347. default: true
  7348. },
  7349. {
  7350. name: "Macro",
  7351. height: math.unit(140, "feet")
  7352. },
  7353. {
  7354. name: "Supercharged",
  7355. height: math.unit(2500, "feet")
  7356. },
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7361. {
  7362. front: {
  7363. height: math.unit(6, "feet"),
  7364. weight: math.unit(350, "lbs"),
  7365. name: "Front",
  7366. image: {
  7367. source: "./media/characters/razinox/front.svg",
  7368. extra: 1686 / 1548,
  7369. bottom: 28.2 / 1868
  7370. }
  7371. },
  7372. back: {
  7373. height: math.unit(6, "feet"),
  7374. weight: math.unit(350, "lbs"),
  7375. name: "Back",
  7376. image: {
  7377. source: "./media/characters/razinox/back.svg",
  7378. extra: 1660 / 1590,
  7379. bottom: 15 / 1665
  7380. }
  7381. },
  7382. },
  7383. [
  7384. {
  7385. name: "Normal",
  7386. height: math.unit(10 + 8 / 12, "foot")
  7387. },
  7388. {
  7389. name: "Minimacro",
  7390. height: math.unit(15, "foot")
  7391. },
  7392. {
  7393. name: "Macro",
  7394. height: math.unit(60, "foot"),
  7395. default: true
  7396. },
  7397. {
  7398. name: "Megamacro",
  7399. height: math.unit(5, "miles")
  7400. },
  7401. {
  7402. name: "Gigamacro",
  7403. height: math.unit(6000, "miles")
  7404. },
  7405. ]
  7406. ))
  7407. characterMakers.push(() => makeCharacter(
  7408. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7409. {
  7410. front: {
  7411. height: math.unit(6, "feet"),
  7412. weight: math.unit(150, "lbs"),
  7413. name: "Front",
  7414. image: {
  7415. source: "./media/characters/cobalt/front.svg"
  7416. }
  7417. }
  7418. },
  7419. [
  7420. {
  7421. name: "Normal",
  7422. height: math.unit(8 + 1 / 12, "foot")
  7423. },
  7424. {
  7425. name: "Macro",
  7426. height: math.unit(111, "foot"),
  7427. default: true
  7428. },
  7429. {
  7430. name: "Supracosmic",
  7431. height: math.unit(1e42, "feet")
  7432. },
  7433. ]
  7434. ))
  7435. characterMakers.push(() => makeCharacter(
  7436. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7437. {
  7438. front: {
  7439. height: math.unit(6, "feet"),
  7440. weight: math.unit(140, "lbs"),
  7441. name: "Front",
  7442. image: {
  7443. source: "./media/characters/amanda/front.svg"
  7444. }
  7445. }
  7446. },
  7447. [
  7448. {
  7449. name: "Micro",
  7450. height: math.unit(5, "inches"),
  7451. default: true
  7452. },
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7457. {
  7458. front: {
  7459. height: math.unit(2.75, "meters"),
  7460. weight: math.unit(1200, "lb"),
  7461. name: "Front",
  7462. image: {
  7463. source: "./media/characters/teal/front.svg",
  7464. extra: 2463 / 2320,
  7465. bottom: 166 / 2629
  7466. }
  7467. },
  7468. back: {
  7469. height: math.unit(2.75, "meters"),
  7470. weight: math.unit(1200, "lb"),
  7471. name: "Back",
  7472. image: {
  7473. source: "./media/characters/teal/back.svg",
  7474. extra: 2580 / 2489,
  7475. bottom: 151 / 2731
  7476. }
  7477. },
  7478. sitting: {
  7479. height: math.unit(1.9, "meters"),
  7480. weight: math.unit(1200, "lb"),
  7481. name: "Sitting",
  7482. image: {
  7483. source: "./media/characters/teal/sitting.svg",
  7484. extra: 623 / 590,
  7485. bottom: 121 / 744
  7486. }
  7487. },
  7488. standing: {
  7489. height: math.unit(2.75, "meters"),
  7490. weight: math.unit(1200, "lb"),
  7491. name: "Standing",
  7492. image: {
  7493. source: "./media/characters/teal/standing.svg",
  7494. extra: 923 / 893,
  7495. bottom: 60 / 983
  7496. }
  7497. },
  7498. stretching: {
  7499. height: math.unit(3.65, "meters"),
  7500. weight: math.unit(1200, "lb"),
  7501. name: "Stretching",
  7502. image: {
  7503. source: "./media/characters/teal/stretching.svg",
  7504. extra: 1276 / 1244,
  7505. bottom: 0 / 1276
  7506. }
  7507. },
  7508. legged: {
  7509. height: math.unit(1.3, "meters"),
  7510. weight: math.unit(100, "lb"),
  7511. name: "Legged",
  7512. image: {
  7513. source: "./media/characters/teal/legged.svg",
  7514. extra: 462 / 437,
  7515. bottom: 24 / 486
  7516. }
  7517. },
  7518. naga: {
  7519. height: math.unit(5.4, "meters"),
  7520. weight: math.unit(4000, "lb"),
  7521. name: "Naga",
  7522. image: {
  7523. source: "./media/characters/teal/naga.svg",
  7524. extra: 1902 / 1858,
  7525. bottom: 0 / 1902
  7526. }
  7527. },
  7528. hand: {
  7529. height: math.unit(0.52, "meters"),
  7530. name: "Hand",
  7531. image: {
  7532. source: "./media/characters/teal/hand.svg"
  7533. }
  7534. },
  7535. maw: {
  7536. height: math.unit(0.43, "meters"),
  7537. name: "Maw",
  7538. image: {
  7539. source: "./media/characters/teal/maw.svg"
  7540. }
  7541. },
  7542. slit: {
  7543. height: math.unit(0.25, "meters"),
  7544. name: "Slit",
  7545. image: {
  7546. source: "./media/characters/teal/slit.svg"
  7547. }
  7548. },
  7549. },
  7550. [
  7551. {
  7552. name: "Normal",
  7553. height: math.unit(2.75, "meters"),
  7554. default: true
  7555. },
  7556. {
  7557. name: "Macro",
  7558. height: math.unit(300, "feet")
  7559. },
  7560. {
  7561. name: "Macro+",
  7562. height: math.unit(2000, "feet")
  7563. },
  7564. ]
  7565. ))
  7566. characterMakers.push(() => makeCharacter(
  7567. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7568. {
  7569. frontCat: {
  7570. height: math.unit(6, "feet"),
  7571. weight: math.unit(180, "lbs"),
  7572. name: "Front (Cat)",
  7573. image: {
  7574. source: "./media/characters/ravin-amulet/front-cat.svg"
  7575. }
  7576. },
  7577. frontCatAlt: {
  7578. height: math.unit(6, "feet"),
  7579. weight: math.unit(180, "lbs"),
  7580. name: "Front (Alt, Cat)",
  7581. image: {
  7582. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7583. }
  7584. },
  7585. frontWerewolf: {
  7586. height: math.unit(6 * 1.2, "feet"),
  7587. weight: math.unit(225, "lbs"),
  7588. name: "Front (Werewolf)",
  7589. image: {
  7590. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7591. }
  7592. },
  7593. backWerewolf: {
  7594. height: math.unit(6 * 1.2, "feet"),
  7595. weight: math.unit(225, "lbs"),
  7596. name: "Back (Werewolf)",
  7597. image: {
  7598. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7599. }
  7600. },
  7601. },
  7602. [
  7603. {
  7604. name: "Nano",
  7605. height: math.unit(1, "micrometer")
  7606. },
  7607. {
  7608. name: "Micro",
  7609. height: math.unit(1, "inch")
  7610. },
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(6, "feet"),
  7614. default: true
  7615. },
  7616. {
  7617. name: "Macro",
  7618. height: math.unit(60, "feet")
  7619. }
  7620. ]
  7621. ))
  7622. characterMakers.push(() => makeCharacter(
  7623. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7624. {
  7625. front: {
  7626. height: math.unit(6, "feet"),
  7627. weight: math.unit(165, "lbs"),
  7628. name: "Front",
  7629. image: {
  7630. source: "./media/characters/fluoresce/front.svg"
  7631. }
  7632. }
  7633. },
  7634. [
  7635. {
  7636. name: "Micro",
  7637. height: math.unit(6, "cm")
  7638. },
  7639. {
  7640. name: "Normal",
  7641. height: math.unit(5 + 7 / 12, "feet"),
  7642. default: true
  7643. },
  7644. {
  7645. name: "Macro",
  7646. height: math.unit(56, "feet")
  7647. },
  7648. {
  7649. name: "Megamacro",
  7650. height: math.unit(1.9, "miles")
  7651. },
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(9 + 6 / 12, "feet"),
  7659. weight: math.unit(523, "lbs"),
  7660. name: "Side",
  7661. image: {
  7662. source: "./media/characters/aurora/side.svg"
  7663. }
  7664. }
  7665. },
  7666. [
  7667. {
  7668. name: "Normal",
  7669. height: math.unit(9 + 6 / 12, "feet")
  7670. },
  7671. {
  7672. name: "Macro",
  7673. height: math.unit(96, "feet"),
  7674. default: true
  7675. },
  7676. {
  7677. name: "Macro+",
  7678. height: math.unit(243, "feet")
  7679. },
  7680. ]
  7681. ))
  7682. characterMakers.push(() => makeCharacter(
  7683. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7684. {
  7685. front: {
  7686. height: math.unit(194, "cm"),
  7687. weight: math.unit(90, "kg"),
  7688. name: "Front",
  7689. image: {
  7690. source: "./media/characters/ranek/front.svg"
  7691. }
  7692. },
  7693. side: {
  7694. height: math.unit(194, "cm"),
  7695. weight: math.unit(90, "kg"),
  7696. name: "Side",
  7697. image: {
  7698. source: "./media/characters/ranek/side.svg"
  7699. }
  7700. },
  7701. back: {
  7702. height: math.unit(194, "cm"),
  7703. weight: math.unit(90, "kg"),
  7704. name: "Back",
  7705. image: {
  7706. source: "./media/characters/ranek/back.svg"
  7707. }
  7708. },
  7709. feral: {
  7710. height: math.unit(30, "cm"),
  7711. weight: math.unit(1.6, "lbs"),
  7712. name: "Feral",
  7713. image: {
  7714. source: "./media/characters/ranek/feral.svg"
  7715. }
  7716. },
  7717. },
  7718. [
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(194, "cm"),
  7722. default: true
  7723. },
  7724. {
  7725. name: "Macro",
  7726. height: math.unit(100, "meters")
  7727. },
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7732. {
  7733. front: {
  7734. height: math.unit(5 + 6 / 12, "feet"),
  7735. weight: math.unit(153, "lbs"),
  7736. name: "Front",
  7737. image: {
  7738. source: "./media/characters/andrew-cooper/front.svg"
  7739. }
  7740. },
  7741. },
  7742. [
  7743. {
  7744. name: "Nano",
  7745. height: math.unit(1, "mm")
  7746. },
  7747. {
  7748. name: "Micro",
  7749. height: math.unit(2, "inches")
  7750. },
  7751. {
  7752. name: "Normal",
  7753. height: math.unit(5 + 6 / 12, "feet"),
  7754. default: true
  7755. }
  7756. ]
  7757. ))
  7758. characterMakers.push(() => makeCharacter(
  7759. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7760. {
  7761. front: {
  7762. height: math.unit(6, "feet"),
  7763. weight: math.unit(180, "lbs"),
  7764. name: "Front",
  7765. image: {
  7766. source: "./media/characters/akane-sato/front.svg",
  7767. extra: 1219 / 1140
  7768. }
  7769. },
  7770. back: {
  7771. height: math.unit(6, "feet"),
  7772. weight: math.unit(180, "lbs"),
  7773. name: "Back",
  7774. image: {
  7775. source: "./media/characters/akane-sato/back.svg",
  7776. extra: 1219 / 1170
  7777. }
  7778. },
  7779. },
  7780. [
  7781. {
  7782. name: "Normal",
  7783. height: math.unit(2.5, "meters")
  7784. },
  7785. {
  7786. name: "Macro",
  7787. height: math.unit(250, "meters"),
  7788. default: true
  7789. },
  7790. {
  7791. name: "Megamacro",
  7792. height: math.unit(25, "km")
  7793. },
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(65, "kg"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/rook/front.svg",
  7805. extra: 960 / 950
  7806. }
  7807. }
  7808. },
  7809. [
  7810. {
  7811. name: "Normal",
  7812. height: math.unit(8.8, "feet")
  7813. },
  7814. {
  7815. name: "Macro",
  7816. height: math.unit(88, "feet"),
  7817. default: true
  7818. },
  7819. {
  7820. name: "Megamacro",
  7821. height: math.unit(8, "miles")
  7822. },
  7823. ]
  7824. ))
  7825. characterMakers.push(() => makeCharacter(
  7826. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7827. {
  7828. front: {
  7829. height: math.unit(12 + 2 / 12, "feet"),
  7830. weight: math.unit(808, "lbs"),
  7831. name: "Front",
  7832. image: {
  7833. source: "./media/characters/prodigy/front.svg"
  7834. }
  7835. }
  7836. },
  7837. [
  7838. {
  7839. name: "Normal",
  7840. height: math.unit(12 + 2 / 12, "feet"),
  7841. default: true
  7842. },
  7843. {
  7844. name: "Macro",
  7845. height: math.unit(143, "feet")
  7846. },
  7847. {
  7848. name: "Macro+",
  7849. height: math.unit(400, "feet")
  7850. },
  7851. ]
  7852. ))
  7853. characterMakers.push(() => makeCharacter(
  7854. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7855. {
  7856. front: {
  7857. height: math.unit(6, "feet"),
  7858. weight: math.unit(225, "lbs"),
  7859. name: "Front",
  7860. image: {
  7861. source: "./media/characters/daniel/front.svg"
  7862. }
  7863. },
  7864. leaning: {
  7865. height: math.unit(6, "feet"),
  7866. weight: math.unit(225, "lbs"),
  7867. name: "Leaning",
  7868. image: {
  7869. source: "./media/characters/daniel/leaning.svg"
  7870. }
  7871. },
  7872. },
  7873. [
  7874. {
  7875. name: "Macro",
  7876. height: math.unit(1000, "feet"),
  7877. default: true
  7878. },
  7879. ]
  7880. ))
  7881. characterMakers.push(() => makeCharacter(
  7882. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7883. {
  7884. front: {
  7885. height: math.unit(6, "feet"),
  7886. weight: math.unit(88, "lbs"),
  7887. name: "Front",
  7888. image: {
  7889. source: "./media/characters/chiros/front.svg",
  7890. extra: 306 / 226
  7891. }
  7892. },
  7893. side: {
  7894. height: math.unit(6, "feet"),
  7895. weight: math.unit(88, "lbs"),
  7896. name: "Side",
  7897. image: {
  7898. source: "./media/characters/chiros/side.svg",
  7899. extra: 306 / 226
  7900. }
  7901. },
  7902. },
  7903. [
  7904. {
  7905. name: "Normal",
  7906. height: math.unit(6, "cm"),
  7907. default: true
  7908. },
  7909. ]
  7910. ))
  7911. characterMakers.push(() => makeCharacter(
  7912. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7913. {
  7914. front: {
  7915. height: math.unit(6, "feet"),
  7916. weight: math.unit(100, "lbs"),
  7917. name: "Front",
  7918. image: {
  7919. source: "./media/characters/selka/front.svg",
  7920. extra: 947 / 887
  7921. }
  7922. }
  7923. },
  7924. [
  7925. {
  7926. name: "Normal",
  7927. height: math.unit(5, "cm"),
  7928. default: true
  7929. },
  7930. ]
  7931. ))
  7932. characterMakers.push(() => makeCharacter(
  7933. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7934. {
  7935. front: {
  7936. height: math.unit(8 + 3 / 12, "feet"),
  7937. weight: math.unit(424, "lbs"),
  7938. name: "Front",
  7939. image: {
  7940. source: "./media/characters/verin/front.svg",
  7941. extra: 1845 / 1550
  7942. }
  7943. },
  7944. frontArmored: {
  7945. height: math.unit(8 + 3 / 12, "feet"),
  7946. weight: math.unit(424, "lbs"),
  7947. name: "Front (Armored)",
  7948. image: {
  7949. source: "./media/characters/verin/front-armor.svg",
  7950. extra: 1845 / 1550,
  7951. bottom: 0.01
  7952. }
  7953. },
  7954. back: {
  7955. height: math.unit(8 + 3 / 12, "feet"),
  7956. weight: math.unit(424, "lbs"),
  7957. name: "Back",
  7958. image: {
  7959. source: "./media/characters/verin/back.svg",
  7960. bottom: 0.1,
  7961. extra: 1
  7962. }
  7963. },
  7964. foot: {
  7965. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7966. name: "Foot",
  7967. image: {
  7968. source: "./media/characters/verin/foot.svg"
  7969. }
  7970. },
  7971. },
  7972. [
  7973. {
  7974. name: "Normal",
  7975. height: math.unit(8 + 3 / 12, "feet")
  7976. },
  7977. {
  7978. name: "Minimacro",
  7979. height: math.unit(21, "feet"),
  7980. default: true
  7981. },
  7982. {
  7983. name: "Macro",
  7984. height: math.unit(626, "feet")
  7985. },
  7986. ]
  7987. ))
  7988. characterMakers.push(() => makeCharacter(
  7989. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7990. {
  7991. front: {
  7992. height: math.unit(2.718, "meters"),
  7993. weight: math.unit(150, "lbs"),
  7994. name: "Front",
  7995. image: {
  7996. source: "./media/characters/sovrim-terraquian/front.svg"
  7997. }
  7998. },
  7999. back: {
  8000. height: math.unit(2.718, "meters"),
  8001. weight: math.unit(150, "lbs"),
  8002. name: "Back",
  8003. image: {
  8004. source: "./media/characters/sovrim-terraquian/back.svg"
  8005. }
  8006. }
  8007. },
  8008. [
  8009. {
  8010. name: "Micro",
  8011. height: math.unit(2, "inches")
  8012. },
  8013. {
  8014. name: "Small",
  8015. height: math.unit(1, "meter")
  8016. },
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(Math.E, "meters"),
  8020. default: true
  8021. },
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(20, "meters")
  8025. },
  8026. {
  8027. name: "Macro+",
  8028. height: math.unit(400, "meters")
  8029. },
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8034. {
  8035. front: {
  8036. height: math.unit(7, "feet"),
  8037. weight: math.unit(489, "lbs"),
  8038. name: "Front",
  8039. image: {
  8040. source: "./media/characters/reece-silvermane/front.svg",
  8041. bottom: 0.02,
  8042. extra: 1
  8043. }
  8044. },
  8045. },
  8046. [
  8047. {
  8048. name: "Macro",
  8049. height: math.unit(1.5, "miles"),
  8050. default: true
  8051. },
  8052. ]
  8053. ))
  8054. characterMakers.push(() => makeCharacter(
  8055. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8056. {
  8057. front: {
  8058. height: math.unit(6, "feet"),
  8059. weight: math.unit(78, "kg"),
  8060. name: "Front",
  8061. image: {
  8062. source: "./media/characters/kane/front.svg",
  8063. extra: 978 / 899
  8064. }
  8065. },
  8066. },
  8067. [
  8068. {
  8069. name: "Normal",
  8070. height: math.unit(2.1, "m"),
  8071. },
  8072. {
  8073. name: "Macro",
  8074. height: math.unit(1, "km"),
  8075. default: true
  8076. },
  8077. ]
  8078. ))
  8079. characterMakers.push(() => makeCharacter(
  8080. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8081. {
  8082. front: {
  8083. height: math.unit(6, "feet"),
  8084. weight: math.unit(200, "kg"),
  8085. name: "Front",
  8086. image: {
  8087. source: "./media/characters/tegon/front.svg",
  8088. bottom: 0.01,
  8089. extra: 1
  8090. }
  8091. },
  8092. },
  8093. [
  8094. {
  8095. name: "Micro",
  8096. height: math.unit(1, "inch")
  8097. },
  8098. {
  8099. name: "Normal",
  8100. height: math.unit(6 + 3 / 12, "feet"),
  8101. default: true
  8102. },
  8103. {
  8104. name: "Macro",
  8105. height: math.unit(300, "feet")
  8106. },
  8107. {
  8108. name: "Megamacro",
  8109. height: math.unit(69, "miles")
  8110. },
  8111. ]
  8112. ))
  8113. characterMakers.push(() => makeCharacter(
  8114. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8115. {
  8116. side: {
  8117. height: math.unit(6, "feet"),
  8118. weight: math.unit(2304, "lbs"),
  8119. name: "Side",
  8120. image: {
  8121. source: "./media/characters/arcturax/side.svg",
  8122. extra: 790 / 376,
  8123. bottom: 0.01
  8124. }
  8125. },
  8126. },
  8127. [
  8128. {
  8129. name: "Micro",
  8130. height: math.unit(2, "inch")
  8131. },
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(6, "feet")
  8135. },
  8136. {
  8137. name: "Macro",
  8138. height: math.unit(39, "feet"),
  8139. default: true
  8140. },
  8141. {
  8142. name: "Megamacro",
  8143. height: math.unit(7, "miles")
  8144. },
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8149. {
  8150. front: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(50, "lbs"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/sentri/front.svg",
  8156. extra: 1750 / 1570,
  8157. bottom: 0.025
  8158. }
  8159. },
  8160. frontAlt: {
  8161. height: math.unit(6, "feet"),
  8162. weight: math.unit(50, "lbs"),
  8163. name: "Front (Alt)",
  8164. image: {
  8165. source: "./media/characters/sentri/front-alt.svg",
  8166. extra: 1750 / 1570,
  8167. bottom: 0.025
  8168. }
  8169. },
  8170. },
  8171. [
  8172. {
  8173. name: "Normal",
  8174. height: math.unit(15, "feet"),
  8175. default: true
  8176. },
  8177. {
  8178. name: "Macro",
  8179. height: math.unit(2500, "feet")
  8180. }
  8181. ]
  8182. ))
  8183. characterMakers.push(() => makeCharacter(
  8184. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8185. {
  8186. front: {
  8187. height: math.unit(5 + 8 / 12, "feet"),
  8188. weight: math.unit(130, "lbs"),
  8189. name: "Front",
  8190. image: {
  8191. source: "./media/characters/corvin/front.svg",
  8192. extra: 1803 / 1629
  8193. }
  8194. },
  8195. frontShirt: {
  8196. height: math.unit(5 + 8 / 12, "feet"),
  8197. weight: math.unit(130, "lbs"),
  8198. name: "Front (Shirt)",
  8199. image: {
  8200. source: "./media/characters/corvin/front-shirt.svg",
  8201. extra: 1803 / 1629
  8202. }
  8203. },
  8204. frontPoncho: {
  8205. height: math.unit(5 + 8 / 12, "feet"),
  8206. weight: math.unit(130, "lbs"),
  8207. name: "Front (Poncho)",
  8208. image: {
  8209. source: "./media/characters/corvin/front-poncho.svg",
  8210. extra: 1803 / 1629
  8211. }
  8212. },
  8213. side: {
  8214. height: math.unit(5 + 8 / 12, "feet"),
  8215. weight: math.unit(130, "lbs"),
  8216. name: "Side",
  8217. image: {
  8218. source: "./media/characters/corvin/side.svg",
  8219. extra: 1012 / 945
  8220. }
  8221. },
  8222. back: {
  8223. height: math.unit(5 + 8 / 12, "feet"),
  8224. weight: math.unit(130, "lbs"),
  8225. name: "Back",
  8226. image: {
  8227. source: "./media/characters/corvin/back.svg",
  8228. extra: 1803 / 1629
  8229. }
  8230. },
  8231. },
  8232. [
  8233. {
  8234. name: "Micro",
  8235. height: math.unit(3, "inches")
  8236. },
  8237. {
  8238. name: "Normal",
  8239. height: math.unit(5 + 8 / 12, "feet")
  8240. },
  8241. {
  8242. name: "Macro",
  8243. height: math.unit(300, "feet"),
  8244. default: true
  8245. },
  8246. {
  8247. name: "Megamacro",
  8248. height: math.unit(500, "miles")
  8249. }
  8250. ]
  8251. ))
  8252. characterMakers.push(() => makeCharacter(
  8253. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8254. {
  8255. front: {
  8256. height: math.unit(6, "feet"),
  8257. weight: math.unit(135, "lbs"),
  8258. name: "Front",
  8259. image: {
  8260. source: "./media/characters/q/front.svg",
  8261. extra: 854 / 752,
  8262. bottom: 0.005
  8263. }
  8264. },
  8265. back: {
  8266. height: math.unit(6, "feet"),
  8267. weight: math.unit(130, "lbs"),
  8268. name: "Back",
  8269. image: {
  8270. source: "./media/characters/q/back.svg",
  8271. extra: 854 / 752
  8272. }
  8273. },
  8274. },
  8275. [
  8276. {
  8277. name: "Macro",
  8278. height: math.unit(90, "feet"),
  8279. default: true
  8280. },
  8281. {
  8282. name: "Extra Macro",
  8283. height: math.unit(300, "feet"),
  8284. },
  8285. {
  8286. name: "BIG WALF",
  8287. height: math.unit(750, "feet"),
  8288. },
  8289. ]
  8290. ))
  8291. characterMakers.push(() => makeCharacter(
  8292. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8293. {
  8294. front: {
  8295. height: math.unit(6, "feet"),
  8296. weight: math.unit(150, "lbs"),
  8297. name: "Front",
  8298. image: {
  8299. source: "./media/characters/carley/front.svg",
  8300. extra: 3927 / 3540,
  8301. bottom: 29.2 / 735
  8302. }
  8303. }
  8304. },
  8305. [
  8306. {
  8307. name: "Normal",
  8308. height: math.unit(6 + 3 / 12, "feet")
  8309. },
  8310. {
  8311. name: "Macro",
  8312. height: math.unit(185, "feet"),
  8313. default: true
  8314. },
  8315. {
  8316. name: "Megamacro",
  8317. height: math.unit(8, "miles"),
  8318. },
  8319. ]
  8320. ))
  8321. characterMakers.push(() => makeCharacter(
  8322. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8323. {
  8324. front: {
  8325. height: math.unit(3, "feet"),
  8326. weight: math.unit(28, "lbs"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/citrine/front.svg"
  8330. }
  8331. }
  8332. },
  8333. [
  8334. {
  8335. name: "Normal",
  8336. height: math.unit(3, "feet"),
  8337. default: true
  8338. }
  8339. ]
  8340. ))
  8341. characterMakers.push(() => makeCharacter(
  8342. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8343. {
  8344. front: {
  8345. height: math.unit(14, "feet"),
  8346. weight: math.unit(1450, "kg"),
  8347. capacity: math.unit(15, "people"),
  8348. name: "Front",
  8349. image: {
  8350. source: "./media/characters/aura-starwind/front.svg",
  8351. extra: 1440/1327,
  8352. bottom: 11/1451
  8353. }
  8354. },
  8355. side: {
  8356. height: math.unit(14, "feet"),
  8357. weight: math.unit(1450, "kg"),
  8358. capacity: math.unit(15, "people"),
  8359. name: "Side",
  8360. image: {
  8361. source: "./media/characters/aura-starwind/side.svg",
  8362. extra: 1654 / 1497
  8363. }
  8364. },
  8365. taur: {
  8366. height: math.unit(18, "feet"),
  8367. weight: math.unit(5500, "kg"),
  8368. capacity: math.unit(50, "people"),
  8369. name: "Taur",
  8370. image: {
  8371. source: "./media/characters/aura-starwind/taur.svg",
  8372. extra: 1760 / 1650
  8373. }
  8374. },
  8375. feral: {
  8376. height: math.unit(46, "feet"),
  8377. weight: math.unit(25000, "kg"),
  8378. capacity: math.unit(120, "people"),
  8379. name: "Feral",
  8380. image: {
  8381. source: "./media/characters/aura-starwind/feral.svg"
  8382. }
  8383. },
  8384. },
  8385. [
  8386. {
  8387. name: "Normal",
  8388. height: math.unit(14, "feet"),
  8389. default: true
  8390. },
  8391. {
  8392. name: "Macro",
  8393. height: math.unit(50, "meters")
  8394. },
  8395. {
  8396. name: "Megamacro",
  8397. height: math.unit(5000, "meters")
  8398. },
  8399. {
  8400. name: "Gigamacro",
  8401. height: math.unit(100000, "kilometers")
  8402. },
  8403. ]
  8404. ))
  8405. characterMakers.push(() => makeCharacter(
  8406. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8407. {
  8408. front: {
  8409. height: math.unit(2 + 7 / 12, "feet"),
  8410. weight: math.unit(32, "lbs"),
  8411. name: "Front",
  8412. image: {
  8413. source: "./media/characters/rivet/front.svg",
  8414. extra: 1716 / 1658,
  8415. bottom: 0.03
  8416. }
  8417. },
  8418. foot: {
  8419. height: math.unit(0.551, "feet"),
  8420. name: "Rivet's Foot",
  8421. image: {
  8422. source: "./media/characters/rivet/foot.svg"
  8423. },
  8424. rename: true
  8425. }
  8426. },
  8427. [
  8428. {
  8429. name: "Micro",
  8430. height: math.unit(1.5, "inches"),
  8431. },
  8432. {
  8433. name: "Normal",
  8434. height: math.unit(2 + 7 / 12, "feet"),
  8435. default: true
  8436. },
  8437. {
  8438. name: "Macro",
  8439. height: math.unit(85, "feet")
  8440. },
  8441. {
  8442. name: "Megamacro",
  8443. height: math.unit(2.2, "km")
  8444. }
  8445. ]
  8446. ))
  8447. characterMakers.push(() => makeCharacter(
  8448. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8449. {
  8450. front: {
  8451. height: math.unit(5 + 9 / 12, "feet"),
  8452. weight: math.unit(150, "lbs"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/coffee/front.svg",
  8456. extra: 3666 / 3032,
  8457. bottom: 0.04
  8458. }
  8459. },
  8460. foot: {
  8461. height: math.unit(1.29, "feet"),
  8462. name: "Foot",
  8463. image: {
  8464. source: "./media/characters/coffee/foot.svg"
  8465. }
  8466. },
  8467. },
  8468. [
  8469. {
  8470. name: "Micro",
  8471. height: math.unit(2, "inches"),
  8472. },
  8473. {
  8474. name: "Normal",
  8475. height: math.unit(5 + 9 / 12, "feet"),
  8476. default: true
  8477. },
  8478. {
  8479. name: "Macro",
  8480. height: math.unit(800, "feet")
  8481. },
  8482. {
  8483. name: "Megamacro",
  8484. height: math.unit(25, "miles")
  8485. }
  8486. ]
  8487. ))
  8488. characterMakers.push(() => makeCharacter(
  8489. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8490. {
  8491. front: {
  8492. height: math.unit(6, "feet"),
  8493. weight: math.unit(200, "lbs"),
  8494. name: "Front",
  8495. image: {
  8496. source: "./media/characters/chari-gal/front.svg",
  8497. extra: 1568 / 1385,
  8498. bottom: 0.047
  8499. }
  8500. },
  8501. gigantamax: {
  8502. height: math.unit(6 * 16, "feet"),
  8503. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8504. name: "Gigantamax",
  8505. image: {
  8506. source: "./media/characters/chari-gal/gigantamax.svg",
  8507. extra: 1124 / 888,
  8508. bottom: 0.03
  8509. }
  8510. },
  8511. },
  8512. [
  8513. {
  8514. name: "Normal",
  8515. height: math.unit(5 + 7 / 12, "feet")
  8516. },
  8517. {
  8518. name: "Macro",
  8519. height: math.unit(200, "feet"),
  8520. default: true
  8521. }
  8522. ]
  8523. ))
  8524. characterMakers.push(() => makeCharacter(
  8525. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8526. {
  8527. front: {
  8528. height: math.unit(6, "feet"),
  8529. weight: math.unit(150, "lbs"),
  8530. name: "Front",
  8531. image: {
  8532. source: "./media/characters/nova/front.svg",
  8533. extra: 5000 / 4722,
  8534. bottom: 0.02
  8535. }
  8536. }
  8537. },
  8538. [
  8539. {
  8540. name: "Micro-",
  8541. height: math.unit(0.8, "inches")
  8542. },
  8543. {
  8544. name: "Micro",
  8545. height: math.unit(2, "inches"),
  8546. default: true
  8547. },
  8548. ]
  8549. ))
  8550. characterMakers.push(() => makeCharacter(
  8551. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8552. {
  8553. front: {
  8554. height: math.unit(3 + 1 / 12, "feet"),
  8555. weight: math.unit(21.7, "lbs"),
  8556. name: "Front",
  8557. image: {
  8558. source: "./media/characters/argent/front.svg",
  8559. extra: 1471 / 1331,
  8560. bottom: 100.8 / 1575.5
  8561. }
  8562. }
  8563. },
  8564. [
  8565. {
  8566. name: "Micro",
  8567. height: math.unit(2, "inches")
  8568. },
  8569. {
  8570. name: "Normal",
  8571. height: math.unit(3 + 1 / 12, "feet"),
  8572. default: true
  8573. },
  8574. {
  8575. name: "Macro",
  8576. height: math.unit(120, "feet")
  8577. },
  8578. ]
  8579. ))
  8580. characterMakers.push(() => makeCharacter(
  8581. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8582. {
  8583. lamp: {
  8584. height: math.unit(7 * 1559 / 989, "feet"),
  8585. name: "Magic Lamp",
  8586. image: {
  8587. source: "./media/characters/mira-al-cul/lamp.svg",
  8588. extra: 1617 / 1559
  8589. }
  8590. },
  8591. front: {
  8592. height: math.unit(7, "feet"),
  8593. name: "Front",
  8594. image: {
  8595. source: "./media/characters/mira-al-cul/front.svg",
  8596. extra: 1044 / 990
  8597. }
  8598. },
  8599. },
  8600. [
  8601. {
  8602. name: "Heavily Restricted",
  8603. height: math.unit(7 * 1559 / 989, "feet")
  8604. },
  8605. {
  8606. name: "Freshly Freed",
  8607. height: math.unit(50 * 1559 / 989, "feet")
  8608. },
  8609. {
  8610. name: "World Encompassing",
  8611. height: math.unit(10000 * 1559 / 989, "miles")
  8612. },
  8613. {
  8614. name: "Galactic",
  8615. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8616. },
  8617. {
  8618. name: "Palmed Universe",
  8619. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8620. default: true
  8621. },
  8622. {
  8623. name: "Multiversal Matriarch",
  8624. height: math.unit(8.87e10, "yottameters")
  8625. },
  8626. {
  8627. name: "Void Mother",
  8628. height: math.unit(3.14e110, "yottaparsecs")
  8629. },
  8630. {
  8631. name: "Toying with Transcendence",
  8632. height: math.unit(1e307, "meters")
  8633. },
  8634. ]
  8635. ))
  8636. characterMakers.push(() => makeCharacter(
  8637. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8638. {
  8639. front: {
  8640. height: math.unit(17 + 1 / 12, "feet"),
  8641. weight: math.unit(476.2 * 5, "lbs"),
  8642. name: "Front",
  8643. image: {
  8644. source: "./media/characters/kuro-shi-uchū/front.svg",
  8645. extra: 2329 / 1835,
  8646. bottom: 0.02
  8647. }
  8648. },
  8649. },
  8650. [
  8651. {
  8652. name: "Micro",
  8653. height: math.unit(2, "inches")
  8654. },
  8655. {
  8656. name: "Normal",
  8657. height: math.unit(12, "meters")
  8658. },
  8659. {
  8660. name: "Planetary",
  8661. height: math.unit(0.00929, "AU"),
  8662. default: true
  8663. },
  8664. {
  8665. name: "Universal",
  8666. height: math.unit(20, "gigaparsecs")
  8667. },
  8668. ]
  8669. ))
  8670. characterMakers.push(() => makeCharacter(
  8671. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8672. {
  8673. front: {
  8674. height: math.unit(5 + 2 / 12, "feet"),
  8675. weight: math.unit(120, "lbs"),
  8676. name: "Front",
  8677. image: {
  8678. source: "./media/characters/katherine/front.svg",
  8679. extra: 2075 / 1969
  8680. }
  8681. },
  8682. dress: {
  8683. height: math.unit(5 + 2 / 12, "feet"),
  8684. weight: math.unit(120, "lbs"),
  8685. name: "Dress",
  8686. image: {
  8687. source: "./media/characters/katherine/dress.svg",
  8688. extra: 2258 / 2064
  8689. }
  8690. },
  8691. },
  8692. [
  8693. {
  8694. name: "Micro",
  8695. height: math.unit(1, "inches"),
  8696. default: true
  8697. },
  8698. {
  8699. name: "Normal",
  8700. height: math.unit(5 + 2 / 12, "feet")
  8701. },
  8702. {
  8703. name: "Macro",
  8704. height: math.unit(100, "meters")
  8705. },
  8706. {
  8707. name: "Megamacro",
  8708. height: math.unit(80, "miles")
  8709. },
  8710. ]
  8711. ))
  8712. characterMakers.push(() => makeCharacter(
  8713. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8714. {
  8715. front: {
  8716. height: math.unit(7 + 8 / 12, "feet"),
  8717. weight: math.unit(250, "lbs"),
  8718. name: "Front",
  8719. image: {
  8720. source: "./media/characters/yevis/front.svg",
  8721. extra: 1938 / 1755
  8722. }
  8723. }
  8724. },
  8725. [
  8726. {
  8727. name: "Mortal",
  8728. height: math.unit(7 + 8 / 12, "feet")
  8729. },
  8730. {
  8731. name: "Battle",
  8732. height: math.unit(25 + 11 / 12, "feet")
  8733. },
  8734. {
  8735. name: "Wrath",
  8736. height: math.unit(1654 + 11 / 12, "feet")
  8737. },
  8738. {
  8739. name: "Planet Destroyer",
  8740. height: math.unit(12000, "miles")
  8741. },
  8742. {
  8743. name: "Galaxy Conqueror",
  8744. height: math.unit(1.45, "zettameters"),
  8745. default: true
  8746. },
  8747. {
  8748. name: "Universal War",
  8749. height: math.unit(184, "gigaparsecs")
  8750. },
  8751. {
  8752. name: "Eternity War",
  8753. height: math.unit(1.98e55, "yottaparsecs")
  8754. },
  8755. ]
  8756. ))
  8757. characterMakers.push(() => makeCharacter(
  8758. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8759. {
  8760. front: {
  8761. height: math.unit(5 + 8 / 12, "feet"),
  8762. weight: math.unit(63, "kg"),
  8763. name: "Front",
  8764. image: {
  8765. source: "./media/characters/xavier/front.svg",
  8766. extra: 944 / 883
  8767. }
  8768. },
  8769. frontStretch: {
  8770. height: math.unit(5 + 8 / 12, "feet"),
  8771. weight: math.unit(63, "kg"),
  8772. name: "Stretching",
  8773. image: {
  8774. source: "./media/characters/xavier/front-stretch.svg",
  8775. extra: 962 / 820
  8776. }
  8777. },
  8778. },
  8779. [
  8780. {
  8781. name: "Normal",
  8782. height: math.unit(5 + 8 / 12, "feet")
  8783. },
  8784. {
  8785. name: "Macro",
  8786. height: math.unit(100, "meters"),
  8787. default: true
  8788. },
  8789. {
  8790. name: "McLargeHuge",
  8791. height: math.unit(10, "miles")
  8792. },
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8797. {
  8798. front: {
  8799. height: math.unit(5 + 5 / 12, "feet"),
  8800. weight: math.unit(150, "lb"),
  8801. name: "Front",
  8802. image: {
  8803. source: "./media/characters/joshii/front.svg",
  8804. extra: 765 / 653,
  8805. bottom: 51 / 816
  8806. }
  8807. },
  8808. foot: {
  8809. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8810. name: "Foot",
  8811. image: {
  8812. source: "./media/characters/joshii/foot.svg"
  8813. }
  8814. },
  8815. },
  8816. [
  8817. {
  8818. name: "Micro",
  8819. height: math.unit(2, "inches"),
  8820. default: true
  8821. },
  8822. {
  8823. name: "Normal",
  8824. height: math.unit(5 + 5 / 12, "feet")
  8825. },
  8826. {
  8827. name: "Macro",
  8828. height: math.unit(785, "feet")
  8829. },
  8830. {
  8831. name: "Megamacro",
  8832. height: math.unit(24.5, "miles")
  8833. },
  8834. ]
  8835. ))
  8836. characterMakers.push(() => makeCharacter(
  8837. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8838. {
  8839. front: {
  8840. height: math.unit(6, "feet"),
  8841. weight: math.unit(150, "lb"),
  8842. name: "Front",
  8843. image: {
  8844. source: "./media/characters/goddess-elizabeth/front.svg",
  8845. extra: 1800 / 1525,
  8846. bottom: 0.005
  8847. }
  8848. },
  8849. foot: {
  8850. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8851. name: "Foot",
  8852. image: {
  8853. source: "./media/characters/goddess-elizabeth/foot.svg"
  8854. }
  8855. },
  8856. mouth: {
  8857. height: math.unit(6, "feet"),
  8858. name: "Mouth",
  8859. image: {
  8860. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8861. }
  8862. },
  8863. },
  8864. [
  8865. {
  8866. name: "Micro",
  8867. height: math.unit(12, "feet")
  8868. },
  8869. {
  8870. name: "Normal",
  8871. height: math.unit(80, "miles"),
  8872. default: true
  8873. },
  8874. {
  8875. name: "Macro",
  8876. height: math.unit(15000, "parsecs")
  8877. },
  8878. ]
  8879. ))
  8880. characterMakers.push(() => makeCharacter(
  8881. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8882. {
  8883. front: {
  8884. height: math.unit(5 + 9 / 12, "feet"),
  8885. weight: math.unit(144, "lb"),
  8886. name: "Front",
  8887. image: {
  8888. source: "./media/characters/kara/front.svg"
  8889. }
  8890. },
  8891. feet: {
  8892. height: math.unit(6 / 6.765, "feet"),
  8893. name: "Kara's Feet",
  8894. rename: true,
  8895. image: {
  8896. source: "./media/characters/kara/feet.svg"
  8897. }
  8898. },
  8899. },
  8900. [
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(5 + 9 / 12, "feet")
  8904. },
  8905. {
  8906. name: "Macro",
  8907. height: math.unit(174, "feet"),
  8908. default: true
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8914. {
  8915. front: {
  8916. height: math.unit(18, "feet"),
  8917. weight: math.unit(4050, "lb"),
  8918. name: "Front",
  8919. image: {
  8920. source: "./media/characters/tyrone/front.svg",
  8921. extra: 2405 / 2270,
  8922. bottom: 182 / 2587
  8923. }
  8924. },
  8925. },
  8926. [
  8927. {
  8928. name: "Normal",
  8929. height: math.unit(18, "feet"),
  8930. default: true
  8931. },
  8932. {
  8933. name: "Macro",
  8934. height: math.unit(300, "feet")
  8935. },
  8936. {
  8937. name: "Megamacro",
  8938. height: math.unit(15, "km")
  8939. },
  8940. {
  8941. name: "Gigamacro",
  8942. height: math.unit(500, "km")
  8943. },
  8944. {
  8945. name: "Teramacro",
  8946. height: math.unit(0.5, "gigameters")
  8947. },
  8948. {
  8949. name: "Omnimacro",
  8950. height: math.unit(1e252, "yottauniverse")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(7 + 8 / 12, "feet"),
  8959. weight: math.unit(120, "lb"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/danny/front.svg",
  8963. extra: 1490 / 1350
  8964. }
  8965. },
  8966. back: {
  8967. height: math.unit(7 + 8 / 12, "feet"),
  8968. weight: math.unit(120, "lb"),
  8969. name: "Back",
  8970. image: {
  8971. source: "./media/characters/danny/back.svg",
  8972. extra: 1490 / 1350
  8973. }
  8974. },
  8975. },
  8976. [
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(7 + 8 / 12, "feet"),
  8980. default: true
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8986. {
  8987. front: {
  8988. height: math.unit(3.5, "inches"),
  8989. weight: math.unit(19, "grams"),
  8990. name: "Front",
  8991. image: {
  8992. source: "./media/characters/mallow/front.svg",
  8993. extra: 471 / 431
  8994. }
  8995. },
  8996. back: {
  8997. height: math.unit(3.5, "inches"),
  8998. weight: math.unit(19, "grams"),
  8999. name: "Back",
  9000. image: {
  9001. source: "./media/characters/mallow/back.svg",
  9002. extra: 471 / 431
  9003. }
  9004. },
  9005. },
  9006. [
  9007. {
  9008. name: "Normal",
  9009. height: math.unit(3.5, "inches"),
  9010. default: true
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9016. {
  9017. front: {
  9018. height: math.unit(9, "feet"),
  9019. weight: math.unit(230, "kg"),
  9020. name: "Front",
  9021. image: {
  9022. source: "./media/characters/starry-aqua/front.svg"
  9023. }
  9024. },
  9025. back: {
  9026. height: math.unit(9, "feet"),
  9027. weight: math.unit(230, "kg"),
  9028. name: "Back",
  9029. image: {
  9030. source: "./media/characters/starry-aqua/back.svg"
  9031. }
  9032. },
  9033. hand: {
  9034. height: math.unit(9 * 0.1168, "feet"),
  9035. name: "Hand",
  9036. image: {
  9037. source: "./media/characters/starry-aqua/hand.svg"
  9038. }
  9039. },
  9040. foot: {
  9041. height: math.unit(9 * 0.18, "feet"),
  9042. name: "Foot",
  9043. image: {
  9044. source: "./media/characters/starry-aqua/foot.svg"
  9045. }
  9046. }
  9047. },
  9048. [
  9049. {
  9050. name: "Micro",
  9051. height: math.unit(3, "inches")
  9052. },
  9053. {
  9054. name: "Normal",
  9055. height: math.unit(9, "feet")
  9056. },
  9057. {
  9058. name: "Macro",
  9059. height: math.unit(300, "feet"),
  9060. default: true
  9061. },
  9062. {
  9063. name: "Megamacro",
  9064. height: math.unit(3200, "feet")
  9065. }
  9066. ]
  9067. ))
  9068. characterMakers.push(() => makeCharacter(
  9069. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9070. {
  9071. front: {
  9072. height: math.unit(15, "feet"),
  9073. weight: math.unit(5026, "lb"),
  9074. name: "Front",
  9075. image: {
  9076. source: "./media/characters/luka-towers/front.svg",
  9077. extra: 1269/1133,
  9078. bottom: 51/1320
  9079. }
  9080. },
  9081. },
  9082. [
  9083. {
  9084. name: "Normal",
  9085. height: math.unit(15, "feet"),
  9086. default: true
  9087. },
  9088. {
  9089. name: "Minimacro",
  9090. height: math.unit(25, "feet")
  9091. },
  9092. {
  9093. name: "Macro",
  9094. height: math.unit(320, "feet")
  9095. },
  9096. {
  9097. name: "Megamacro",
  9098. height: math.unit(35000, "feet")
  9099. },
  9100. {
  9101. name: "Gigamacro",
  9102. height: math.unit(4000, "miles")
  9103. },
  9104. {
  9105. name: "Teramacro",
  9106. height: math.unit(15000, "miles")
  9107. },
  9108. ]
  9109. ))
  9110. characterMakers.push(() => makeCharacter(
  9111. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9112. {
  9113. front: {
  9114. height: math.unit(6, "feet"),
  9115. weight: math.unit(150, "lb"),
  9116. name: "Front",
  9117. image: {
  9118. source: "./media/characters/natalie-nightring/front.svg",
  9119. extra: 1,
  9120. bottom: 0.06
  9121. }
  9122. },
  9123. },
  9124. [
  9125. {
  9126. name: "Uh Oh",
  9127. height: math.unit(0.1, "mm")
  9128. },
  9129. {
  9130. name: "Small",
  9131. height: math.unit(3, "inches")
  9132. },
  9133. {
  9134. name: "Human Scale",
  9135. height: math.unit(6, "feet")
  9136. },
  9137. {
  9138. name: "Librarian",
  9139. height: math.unit(50, "feet"),
  9140. default: true
  9141. },
  9142. {
  9143. name: "Immense",
  9144. height: math.unit(200, "miles")
  9145. },
  9146. ]
  9147. ))
  9148. characterMakers.push(() => makeCharacter(
  9149. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9150. {
  9151. front: {
  9152. height: math.unit(6, "feet"),
  9153. weight: math.unit(180, "lbs"),
  9154. name: "Front",
  9155. image: {
  9156. source: "./media/characters/danni-rosie/front.svg",
  9157. extra: 1260 / 1128,
  9158. bottom: 0.022
  9159. }
  9160. },
  9161. },
  9162. [
  9163. {
  9164. name: "Micro",
  9165. height: math.unit(2, "inches"),
  9166. default: true
  9167. },
  9168. ]
  9169. ))
  9170. characterMakers.push(() => makeCharacter(
  9171. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9172. {
  9173. front: {
  9174. height: math.unit(5 + 9 / 12, "feet"),
  9175. weight: math.unit(220, "lb"),
  9176. name: "Front",
  9177. image: {
  9178. source: "./media/characters/samantha-kruse/front.svg",
  9179. extra: (985 / 935),
  9180. bottom: 0.03
  9181. }
  9182. },
  9183. frontUndressed: {
  9184. height: math.unit(5 + 9 / 12, "feet"),
  9185. weight: math.unit(220, "lb"),
  9186. name: "Front (Undressed)",
  9187. image: {
  9188. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9189. extra: (973 / 923),
  9190. bottom: 0.025
  9191. }
  9192. },
  9193. fat: {
  9194. height: math.unit(5 + 9 / 12, "feet"),
  9195. weight: math.unit(900, "lb"),
  9196. name: "Front (Fat)",
  9197. image: {
  9198. source: "./media/characters/samantha-kruse/fat.svg",
  9199. extra: 2688 / 2561
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Normal",
  9206. height: math.unit(5 + 9 / 12, "feet"),
  9207. default: true
  9208. }
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9213. {
  9214. back: {
  9215. height: math.unit(5 + 4 / 12, "feet"),
  9216. weight: math.unit(4963, "lb"),
  9217. name: "Back",
  9218. image: {
  9219. source: "./media/characters/amelia-rosie/back.svg",
  9220. extra: 1113 / 963,
  9221. bottom: 0.01
  9222. }
  9223. },
  9224. },
  9225. [
  9226. {
  9227. name: "Level 0",
  9228. height: math.unit(5 + 4 / 12, "feet")
  9229. },
  9230. {
  9231. name: "Level 1",
  9232. height: math.unit(164597, "feet"),
  9233. default: true
  9234. },
  9235. {
  9236. name: "Level 2",
  9237. height: math.unit(956243, "miles")
  9238. },
  9239. {
  9240. name: "Level 3",
  9241. height: math.unit(29421709423, "miles")
  9242. },
  9243. {
  9244. name: "Level 4",
  9245. height: math.unit(154, "lightyears")
  9246. },
  9247. {
  9248. name: "Level 5",
  9249. height: math.unit(4738272, "lightyears")
  9250. },
  9251. {
  9252. name: "Level 6",
  9253. height: math.unit(145787152896, "lightyears")
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9259. {
  9260. front: {
  9261. height: math.unit(5 + 11 / 12, "feet"),
  9262. weight: math.unit(65, "kg"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/rook-kitara/front.svg",
  9266. extra: 1347 / 1274,
  9267. bottom: 0.005
  9268. }
  9269. },
  9270. },
  9271. [
  9272. {
  9273. name: "Totally Unfair",
  9274. height: math.unit(1.8, "mm")
  9275. },
  9276. {
  9277. name: "Lap Rookie",
  9278. height: math.unit(1.4, "feet")
  9279. },
  9280. {
  9281. name: "Normal",
  9282. height: math.unit(5 + 11 / 12, "feet"),
  9283. default: true
  9284. },
  9285. {
  9286. name: "How Did This Happen",
  9287. height: math.unit(80, "miles")
  9288. }
  9289. ]
  9290. ))
  9291. characterMakers.push(() => makeCharacter(
  9292. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9293. {
  9294. front: {
  9295. height: math.unit(7, "feet"),
  9296. weight: math.unit(300, "lb"),
  9297. name: "Front",
  9298. image: {
  9299. source: "./media/characters/pisces/front.svg",
  9300. extra: 2255 / 2115,
  9301. bottom: 0.03
  9302. }
  9303. },
  9304. back: {
  9305. height: math.unit(7, "feet"),
  9306. weight: math.unit(300, "lb"),
  9307. name: "Back",
  9308. image: {
  9309. source: "./media/characters/pisces/back.svg",
  9310. extra: 2146 / 2055,
  9311. bottom: 0.04
  9312. }
  9313. },
  9314. },
  9315. [
  9316. {
  9317. name: "Normal",
  9318. height: math.unit(7, "feet"),
  9319. default: true
  9320. },
  9321. {
  9322. name: "Swimming Pool",
  9323. height: math.unit(12.2, "meters")
  9324. },
  9325. {
  9326. name: "Olympic Swimming Pool",
  9327. height: math.unit(56.3, "meters")
  9328. },
  9329. {
  9330. name: "Lake Superior",
  9331. height: math.unit(93900, "meters")
  9332. },
  9333. {
  9334. name: "Mediterranean Sea",
  9335. height: math.unit(644457, "meters")
  9336. },
  9337. {
  9338. name: "World's Oceans",
  9339. height: math.unit(4567491, "meters")
  9340. },
  9341. ]
  9342. ))
  9343. characterMakers.push(() => makeCharacter(
  9344. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9345. {
  9346. front: {
  9347. height: math.unit(2.3, "meters"),
  9348. weight: math.unit(120, "kg"),
  9349. name: "Front",
  9350. image: {
  9351. source: "./media/characters/zelas/front.svg"
  9352. }
  9353. },
  9354. side: {
  9355. height: math.unit(2.3, "meters"),
  9356. weight: math.unit(120, "kg"),
  9357. name: "Side",
  9358. image: {
  9359. source: "./media/characters/zelas/side.svg"
  9360. }
  9361. },
  9362. back: {
  9363. height: math.unit(2.3, "meters"),
  9364. weight: math.unit(120, "kg"),
  9365. name: "Back",
  9366. image: {
  9367. source: "./media/characters/zelas/back.svg"
  9368. }
  9369. },
  9370. foot: {
  9371. height: math.unit(1.116, "feet"),
  9372. name: "Foot",
  9373. image: {
  9374. source: "./media/characters/zelas/foot.svg"
  9375. }
  9376. },
  9377. },
  9378. [
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(2.3, "meters")
  9382. },
  9383. {
  9384. name: "Macro",
  9385. height: math.unit(30, "meters"),
  9386. default: true
  9387. },
  9388. ]
  9389. ))
  9390. characterMakers.push(() => makeCharacter(
  9391. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9392. {
  9393. front: {
  9394. height: math.unit(1, "inch"),
  9395. weight: math.unit(0.21, "grams"),
  9396. name: "Front",
  9397. image: {
  9398. source: "./media/characters/talbot/front.svg",
  9399. extra: 594 / 544
  9400. }
  9401. },
  9402. },
  9403. [
  9404. {
  9405. name: "Micro",
  9406. height: math.unit(1, "inch"),
  9407. default: true
  9408. },
  9409. ]
  9410. ))
  9411. characterMakers.push(() => makeCharacter(
  9412. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9413. {
  9414. front: {
  9415. height: math.unit(3 + 3 / 12, "feet"),
  9416. weight: math.unit(51.8, "lb"),
  9417. name: "Front",
  9418. image: {
  9419. source: "./media/characters/fliss/front.svg",
  9420. extra: 840 / 640
  9421. }
  9422. },
  9423. },
  9424. [
  9425. {
  9426. name: "Teeny Tiny",
  9427. height: math.unit(1, "mm")
  9428. },
  9429. {
  9430. name: "Small",
  9431. height: math.unit(1, "inch"),
  9432. default: true
  9433. },
  9434. {
  9435. name: "Standard Sylveon",
  9436. height: math.unit(3 + 3 / 12, "feet")
  9437. },
  9438. {
  9439. name: "Large Nuisance",
  9440. height: math.unit(33, "feet")
  9441. },
  9442. {
  9443. name: "City Filler",
  9444. height: math.unit(3000, "feet")
  9445. },
  9446. {
  9447. name: "New Horizon",
  9448. height: math.unit(6000, "miles")
  9449. },
  9450. ]
  9451. ))
  9452. characterMakers.push(() => makeCharacter(
  9453. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9454. {
  9455. front: {
  9456. height: math.unit(5, "cm"),
  9457. weight: math.unit(1.94, "g"),
  9458. name: "Front",
  9459. image: {
  9460. source: "./media/characters/fleta/front.svg",
  9461. extra: 835 / 803
  9462. }
  9463. },
  9464. back: {
  9465. height: math.unit(5, "cm"),
  9466. weight: math.unit(1.94, "g"),
  9467. name: "Back",
  9468. image: {
  9469. source: "./media/characters/fleta/back.svg",
  9470. extra: 835 / 803
  9471. }
  9472. },
  9473. },
  9474. [
  9475. {
  9476. name: "Micro",
  9477. height: math.unit(5, "cm"),
  9478. default: true
  9479. },
  9480. ]
  9481. ))
  9482. characterMakers.push(() => makeCharacter(
  9483. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9484. {
  9485. front: {
  9486. height: math.unit(6, "feet"),
  9487. weight: math.unit(225, "lb"),
  9488. name: "Front",
  9489. image: {
  9490. source: "./media/characters/dominic/front.svg",
  9491. extra: 1770 / 1620,
  9492. bottom: 0.025
  9493. }
  9494. },
  9495. back: {
  9496. height: math.unit(6, "feet"),
  9497. weight: math.unit(225, "lb"),
  9498. name: "Back",
  9499. image: {
  9500. source: "./media/characters/dominic/back.svg",
  9501. extra: 1745 / 1620,
  9502. bottom: 0.065
  9503. }
  9504. },
  9505. },
  9506. [
  9507. {
  9508. name: "Nano",
  9509. height: math.unit(0.1, "mm")
  9510. },
  9511. {
  9512. name: "Micro-",
  9513. height: math.unit(1, "mm")
  9514. },
  9515. {
  9516. name: "Micro",
  9517. height: math.unit(4, "inches")
  9518. },
  9519. {
  9520. name: "Normal",
  9521. height: math.unit(6 + 4 / 12, "feet"),
  9522. default: true
  9523. },
  9524. {
  9525. name: "Macro",
  9526. height: math.unit(115, "feet")
  9527. },
  9528. {
  9529. name: "Macro+",
  9530. height: math.unit(955, "feet")
  9531. },
  9532. {
  9533. name: "Megamacro",
  9534. height: math.unit(8990, "feet")
  9535. },
  9536. {
  9537. name: "Gigmacro",
  9538. height: math.unit(9310, "miles")
  9539. },
  9540. {
  9541. name: "Teramacro",
  9542. height: math.unit(1567005010, "miles")
  9543. },
  9544. {
  9545. name: "Examacro",
  9546. height: math.unit(1425, "parsecs")
  9547. },
  9548. ]
  9549. ))
  9550. characterMakers.push(() => makeCharacter(
  9551. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9552. {
  9553. front: {
  9554. height: math.unit(400, "feet"),
  9555. weight: math.unit(44444444, "lb"),
  9556. name: "Front",
  9557. image: {
  9558. source: "./media/characters/major-colonel/front.svg"
  9559. }
  9560. },
  9561. back: {
  9562. height: math.unit(400, "feet"),
  9563. weight: math.unit(44444444, "lb"),
  9564. name: "Back",
  9565. image: {
  9566. source: "./media/characters/major-colonel/back.svg"
  9567. }
  9568. },
  9569. },
  9570. [
  9571. {
  9572. name: "Macro",
  9573. height: math.unit(400, "feet"),
  9574. default: true
  9575. },
  9576. ]
  9577. ))
  9578. characterMakers.push(() => makeCharacter(
  9579. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9580. {
  9581. catFront: {
  9582. height: math.unit(6, "feet"),
  9583. weight: math.unit(120, "lb"),
  9584. name: "Front (Cat Side)",
  9585. image: {
  9586. source: "./media/characters/axel-lycan/cat-front.svg",
  9587. extra: 430 / 402,
  9588. bottom: 43 / 472.35
  9589. }
  9590. },
  9591. catBack: {
  9592. height: math.unit(6, "feet"),
  9593. weight: math.unit(120, "lb"),
  9594. name: "Back (Cat Side)",
  9595. image: {
  9596. source: "./media/characters/axel-lycan/cat-back.svg",
  9597. extra: 447 / 419,
  9598. bottom: 23.3 / 469
  9599. }
  9600. },
  9601. wolfFront: {
  9602. height: math.unit(6, "feet"),
  9603. weight: math.unit(120, "lb"),
  9604. name: "Front (Wolf Side)",
  9605. image: {
  9606. source: "./media/characters/axel-lycan/wolf-front.svg",
  9607. extra: 485 / 456,
  9608. bottom: 19 / 504
  9609. }
  9610. },
  9611. wolfBack: {
  9612. height: math.unit(6, "feet"),
  9613. weight: math.unit(120, "lb"),
  9614. name: "Back (Wolf Side)",
  9615. image: {
  9616. source: "./media/characters/axel-lycan/wolf-back.svg",
  9617. extra: 475 / 438,
  9618. bottom: 39.2 / 514
  9619. }
  9620. },
  9621. },
  9622. [
  9623. {
  9624. name: "Macro",
  9625. height: math.unit(1, "km"),
  9626. default: true
  9627. },
  9628. ]
  9629. ))
  9630. characterMakers.push(() => makeCharacter(
  9631. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9632. {
  9633. front: {
  9634. height: math.unit(5 + 9 / 12, "feet"),
  9635. weight: math.unit(175, "lb"),
  9636. name: "Front",
  9637. image: {
  9638. source: "./media/characters/vanrel-hyena/front.svg",
  9639. extra: 1086 / 1010,
  9640. bottom: 0.04
  9641. }
  9642. },
  9643. },
  9644. [
  9645. {
  9646. name: "Normal",
  9647. height: math.unit(5 + 9 / 12, "feet"),
  9648. default: true
  9649. },
  9650. ]
  9651. ))
  9652. characterMakers.push(() => makeCharacter(
  9653. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9654. {
  9655. front: {
  9656. height: math.unit(6, "feet"),
  9657. weight: math.unit(103, "lb"),
  9658. name: "Front",
  9659. image: {
  9660. source: "./media/characters/abbott-absol/front.svg",
  9661. extra: 2010 / 1842
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Megamicro",
  9668. height: math.unit(0.1, "mm")
  9669. },
  9670. {
  9671. name: "Micro",
  9672. height: math.unit(1, "inch")
  9673. },
  9674. {
  9675. name: "Normal",
  9676. height: math.unit(6, "feet"),
  9677. default: true
  9678. },
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9683. {
  9684. front: {
  9685. height: math.unit(6, "feet"),
  9686. weight: math.unit(264, "lb"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/hector/front.svg",
  9690. extra: 2280 / 2130,
  9691. bottom: 0.07
  9692. }
  9693. },
  9694. },
  9695. [
  9696. {
  9697. name: "Normal",
  9698. height: math.unit(12.25, "foot"),
  9699. default: true
  9700. },
  9701. {
  9702. name: "Macro",
  9703. height: math.unit(160, "feet")
  9704. },
  9705. ]
  9706. ))
  9707. characterMakers.push(() => makeCharacter(
  9708. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9709. {
  9710. front: {
  9711. height: math.unit(6, "feet"),
  9712. weight: math.unit(150, "lb"),
  9713. name: "Front",
  9714. image: {
  9715. source: "./media/characters/sal/front.svg",
  9716. extra: 1846 / 1699,
  9717. bottom: 0.04
  9718. }
  9719. },
  9720. },
  9721. [
  9722. {
  9723. name: "Megamacro",
  9724. height: math.unit(10, "miles"),
  9725. default: true
  9726. },
  9727. ]
  9728. ))
  9729. characterMakers.push(() => makeCharacter(
  9730. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9731. {
  9732. front: {
  9733. height: math.unit(3, "meters"),
  9734. weight: math.unit(450, "kg"),
  9735. name: "front",
  9736. image: {
  9737. source: "./media/characters/ranger/front.svg",
  9738. extra: 2401 / 2243,
  9739. bottom: 0.05
  9740. }
  9741. },
  9742. },
  9743. [
  9744. {
  9745. name: "Normal",
  9746. height: math.unit(3, "meters"),
  9747. default: true
  9748. },
  9749. ]
  9750. ))
  9751. characterMakers.push(() => makeCharacter(
  9752. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9753. {
  9754. front: {
  9755. height: math.unit(14, "feet"),
  9756. weight: math.unit(800, "kg"),
  9757. name: "Front",
  9758. image: {
  9759. source: "./media/characters/theresa/front.svg",
  9760. extra: 3575 / 3346,
  9761. bottom: 0.03
  9762. }
  9763. },
  9764. },
  9765. [
  9766. {
  9767. name: "Normal",
  9768. height: math.unit(14, "feet"),
  9769. default: true
  9770. },
  9771. ]
  9772. ))
  9773. characterMakers.push(() => makeCharacter(
  9774. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9775. {
  9776. front: {
  9777. height: math.unit(6, "feet"),
  9778. weight: math.unit(3, "kg"),
  9779. name: "Front",
  9780. image: {
  9781. source: "./media/characters/ine/front.svg",
  9782. extra: 678 / 539,
  9783. bottom: 0.023
  9784. }
  9785. },
  9786. },
  9787. [
  9788. {
  9789. name: "Normal",
  9790. height: math.unit(2.265, "feet"),
  9791. default: true
  9792. },
  9793. ]
  9794. ))
  9795. characterMakers.push(() => makeCharacter(
  9796. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9797. {
  9798. front: {
  9799. height: math.unit(5, "feet"),
  9800. weight: math.unit(30, "kg"),
  9801. name: "Front",
  9802. image: {
  9803. source: "./media/characters/vial/front.svg",
  9804. extra: 1365 / 1277,
  9805. bottom: 0.04
  9806. }
  9807. },
  9808. },
  9809. [
  9810. {
  9811. name: "Normal",
  9812. height: math.unit(5, "feet"),
  9813. default: true
  9814. },
  9815. ]
  9816. ))
  9817. characterMakers.push(() => makeCharacter(
  9818. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9819. {
  9820. side: {
  9821. height: math.unit(3.4, "meters"),
  9822. weight: math.unit(1000, "lb"),
  9823. name: "Side",
  9824. image: {
  9825. source: "./media/characters/rovoska/side.svg",
  9826. extra: 4403 / 1515
  9827. }
  9828. },
  9829. },
  9830. [
  9831. {
  9832. name: "Normal",
  9833. height: math.unit(3.4, "meters"),
  9834. default: true
  9835. },
  9836. ]
  9837. ))
  9838. characterMakers.push(() => makeCharacter(
  9839. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9840. {
  9841. front: {
  9842. height: math.unit(8, "feet"),
  9843. weight: math.unit(315, "lb"),
  9844. name: "Front",
  9845. image: {
  9846. source: "./media/characters/gunner-rotthbauer/front.svg"
  9847. }
  9848. },
  9849. back: {
  9850. height: math.unit(8, "feet"),
  9851. weight: math.unit(315, "lb"),
  9852. name: "Back",
  9853. image: {
  9854. source: "./media/characters/gunner-rotthbauer/back.svg"
  9855. }
  9856. },
  9857. },
  9858. [
  9859. {
  9860. name: "Micro",
  9861. height: math.unit(3.5, "inches")
  9862. },
  9863. {
  9864. name: "Normal",
  9865. height: math.unit(8, "feet"),
  9866. default: true
  9867. },
  9868. {
  9869. name: "Macro",
  9870. height: math.unit(250, "feet")
  9871. },
  9872. {
  9873. name: "Megamacro",
  9874. height: math.unit(1, "AU")
  9875. },
  9876. ]
  9877. ))
  9878. characterMakers.push(() => makeCharacter(
  9879. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9880. {
  9881. front: {
  9882. height: math.unit(5 + 5 / 12, "feet"),
  9883. weight: math.unit(140, "lb"),
  9884. name: "Front",
  9885. image: {
  9886. source: "./media/characters/allatia/front.svg",
  9887. extra: 1227 / 1180,
  9888. bottom: 0.027
  9889. }
  9890. },
  9891. },
  9892. [
  9893. {
  9894. name: "Normal",
  9895. height: math.unit(5 + 5 / 12, "feet")
  9896. },
  9897. {
  9898. name: "Macro",
  9899. height: math.unit(250, "feet"),
  9900. default: true
  9901. },
  9902. {
  9903. name: "Megamacro",
  9904. height: math.unit(8, "miles")
  9905. }
  9906. ]
  9907. ))
  9908. characterMakers.push(() => makeCharacter(
  9909. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9910. {
  9911. front: {
  9912. height: math.unit(6, "feet"),
  9913. weight: math.unit(120, "lb"),
  9914. name: "Front",
  9915. image: {
  9916. source: "./media/characters/tene/front.svg",
  9917. extra: 1728 / 1578,
  9918. bottom: 0.022
  9919. }
  9920. },
  9921. stomping: {
  9922. height: math.unit(2.025, "meters"),
  9923. weight: math.unit(120, "lb"),
  9924. name: "Stomping",
  9925. image: {
  9926. source: "./media/characters/tene/stomping.svg",
  9927. extra: 938 / 873,
  9928. bottom: 0.01
  9929. }
  9930. },
  9931. sitting: {
  9932. height: math.unit(1, "meter"),
  9933. weight: math.unit(120, "lb"),
  9934. name: "Sitting",
  9935. image: {
  9936. source: "./media/characters/tene/sitting.svg",
  9937. extra: 437 / 415,
  9938. bottom: 0.1
  9939. }
  9940. },
  9941. feral: {
  9942. height: math.unit(3.9, "feet"),
  9943. weight: math.unit(250, "lb"),
  9944. name: "Feral",
  9945. image: {
  9946. source: "./media/characters/tene/feral.svg",
  9947. extra: 717 / 458,
  9948. bottom: 0.179
  9949. }
  9950. },
  9951. },
  9952. [
  9953. {
  9954. name: "Normal",
  9955. height: math.unit(6, "feet")
  9956. },
  9957. {
  9958. name: "Macro",
  9959. height: math.unit(300, "feet"),
  9960. default: true
  9961. },
  9962. {
  9963. name: "Megamacro",
  9964. height: math.unit(5, "miles")
  9965. },
  9966. ]
  9967. ))
  9968. characterMakers.push(() => makeCharacter(
  9969. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9970. {
  9971. side: {
  9972. height: math.unit(6, "feet"),
  9973. name: "Side",
  9974. image: {
  9975. source: "./media/characters/evander/side.svg",
  9976. extra: 877 / 477
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Normal",
  9983. height: math.unit(0.83, "meters"),
  9984. default: true
  9985. },
  9986. ]
  9987. ))
  9988. characterMakers.push(() => makeCharacter(
  9989. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9990. {
  9991. front: {
  9992. height: math.unit(12, "feet"),
  9993. weight: math.unit(1000, "lb"),
  9994. name: "Front",
  9995. image: {
  9996. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9997. extra: 1762 / 1611
  9998. }
  9999. },
  10000. back: {
  10001. height: math.unit(12, "feet"),
  10002. weight: math.unit(1000, "lb"),
  10003. name: "Back",
  10004. image: {
  10005. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10006. extra: 1762 / 1611
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Normal",
  10013. height: math.unit(12, "feet"),
  10014. default: true
  10015. },
  10016. {
  10017. name: "Kaiju",
  10018. height: math.unit(150, "feet")
  10019. },
  10020. ]
  10021. ))
  10022. characterMakers.push(() => makeCharacter(
  10023. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10024. {
  10025. front: {
  10026. height: math.unit(6, "feet"),
  10027. weight: math.unit(150, "lb"),
  10028. name: "Front",
  10029. image: {
  10030. source: "./media/characters/zero-alurus/front.svg"
  10031. }
  10032. },
  10033. back: {
  10034. height: math.unit(6, "feet"),
  10035. weight: math.unit(150, "lb"),
  10036. name: "Back",
  10037. image: {
  10038. source: "./media/characters/zero-alurus/back.svg"
  10039. }
  10040. },
  10041. },
  10042. [
  10043. {
  10044. name: "Normal",
  10045. height: math.unit(5 + 10 / 12, "feet")
  10046. },
  10047. {
  10048. name: "Macro",
  10049. height: math.unit(60, "feet"),
  10050. default: true
  10051. },
  10052. {
  10053. name: "Macro+",
  10054. height: math.unit(450, "feet")
  10055. },
  10056. ]
  10057. ))
  10058. characterMakers.push(() => makeCharacter(
  10059. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10060. {
  10061. front: {
  10062. height: math.unit(6, "feet"),
  10063. weight: math.unit(200, "lb"),
  10064. name: "Front",
  10065. image: {
  10066. source: "./media/characters/mega-shi/front.svg",
  10067. extra: 1279 / 1250,
  10068. bottom: 0.02
  10069. }
  10070. },
  10071. back: {
  10072. height: math.unit(6, "feet"),
  10073. weight: math.unit(200, "lb"),
  10074. name: "Back",
  10075. image: {
  10076. source: "./media/characters/mega-shi/back.svg",
  10077. extra: 1279 / 1250,
  10078. bottom: 0.02
  10079. }
  10080. },
  10081. },
  10082. [
  10083. {
  10084. name: "Micro",
  10085. height: math.unit(16 + 6 / 12, "feet")
  10086. },
  10087. {
  10088. name: "Third Dimension",
  10089. height: math.unit(40, "meters")
  10090. },
  10091. {
  10092. name: "Normal",
  10093. height: math.unit(660, "feet"),
  10094. default: true
  10095. },
  10096. {
  10097. name: "Megamacro",
  10098. height: math.unit(10, "miles")
  10099. },
  10100. {
  10101. name: "Planetary Launch",
  10102. height: math.unit(500, "miles")
  10103. },
  10104. {
  10105. name: "Interstellar",
  10106. height: math.unit(1e9, "miles")
  10107. },
  10108. {
  10109. name: "Leaving the Universe",
  10110. height: math.unit(1, "gigaparsec")
  10111. },
  10112. {
  10113. name: "Travelling Universes",
  10114. height: math.unit(30e15, "parsecs")
  10115. },
  10116. ]
  10117. ))
  10118. characterMakers.push(() => makeCharacter(
  10119. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10120. {
  10121. front: {
  10122. height: math.unit(5 + 4/12, "feet"),
  10123. weight: math.unit(120, "lb"),
  10124. name: "Front",
  10125. image: {
  10126. source: "./media/characters/odyssey/front.svg",
  10127. extra: 1747/1571,
  10128. bottom: 47/1794
  10129. }
  10130. },
  10131. side: {
  10132. height: math.unit(5.1, "feet"),
  10133. weight: math.unit(120, "lb"),
  10134. name: "Side",
  10135. image: {
  10136. source: "./media/characters/odyssey/side.svg",
  10137. extra: 1847/1619,
  10138. bottom: 47/1894
  10139. }
  10140. },
  10141. lounging: {
  10142. height: math.unit(1.464, "feet"),
  10143. weight: math.unit(120, "lb"),
  10144. name: "Lounging",
  10145. image: {
  10146. source: "./media/characters/odyssey/lounging.svg",
  10147. extra: 1235/837,
  10148. bottom: 551/1786
  10149. }
  10150. },
  10151. },
  10152. [
  10153. {
  10154. name: "Normal",
  10155. height: math.unit(5 + 4 / 12, "feet")
  10156. },
  10157. {
  10158. name: "Macro",
  10159. height: math.unit(1, "km")
  10160. },
  10161. {
  10162. name: "Megamacro",
  10163. height: math.unit(3000, "km")
  10164. },
  10165. {
  10166. name: "Gigamacro",
  10167. height: math.unit(1, "AU"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "Omniversal",
  10172. height: math.unit(100e14, "lightyears")
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10178. {
  10179. front: {
  10180. height: math.unit(6, "feet"),
  10181. weight: math.unit(300, "lb"),
  10182. name: "Front",
  10183. image: {
  10184. source: "./media/characters/mekuto/front.svg",
  10185. extra: 921 / 832,
  10186. bottom: 0.03
  10187. }
  10188. },
  10189. hand: {
  10190. height: math.unit(6 / 10.24, "feet"),
  10191. name: "Hand",
  10192. image: {
  10193. source: "./media/characters/mekuto/hand.svg"
  10194. }
  10195. },
  10196. foot: {
  10197. height: math.unit(6 / 5.05, "feet"),
  10198. name: "Foot",
  10199. image: {
  10200. source: "./media/characters/mekuto/foot.svg"
  10201. }
  10202. },
  10203. },
  10204. [
  10205. {
  10206. name: "Minimicro",
  10207. height: math.unit(0.2, "inches")
  10208. },
  10209. {
  10210. name: "Micro",
  10211. height: math.unit(1.5, "inches")
  10212. },
  10213. {
  10214. name: "Normal",
  10215. height: math.unit(5 + 11 / 12, "feet"),
  10216. default: true
  10217. },
  10218. {
  10219. name: "Minimacro",
  10220. height: math.unit(17 + 9 / 12, "feet")
  10221. },
  10222. {
  10223. name: "Macro",
  10224. height: math.unit(177.5, "feet")
  10225. },
  10226. {
  10227. name: "Megamacro",
  10228. height: math.unit(152, "miles")
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10234. {
  10235. front: {
  10236. height: math.unit(6.5, "inches"),
  10237. weight: math.unit(13, "oz"),
  10238. name: "Front",
  10239. image: {
  10240. source: "./media/characters/dafydd-tomos/front.svg",
  10241. extra: 2990 / 2603,
  10242. bottom: 0.03
  10243. }
  10244. },
  10245. },
  10246. [
  10247. {
  10248. name: "Micro",
  10249. height: math.unit(6.5, "inches"),
  10250. default: true
  10251. },
  10252. ]
  10253. ))
  10254. characterMakers.push(() => makeCharacter(
  10255. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10256. {
  10257. front: {
  10258. height: math.unit(6, "feet"),
  10259. weight: math.unit(150, "lb"),
  10260. name: "Front",
  10261. image: {
  10262. source: "./media/characters/splinter/front.svg",
  10263. extra: 2990 / 2882,
  10264. bottom: 0.04
  10265. }
  10266. },
  10267. back: {
  10268. height: math.unit(6, "feet"),
  10269. weight: math.unit(150, "lb"),
  10270. name: "Back",
  10271. image: {
  10272. source: "./media/characters/splinter/back.svg",
  10273. extra: 2990 / 2882,
  10274. bottom: 0.04
  10275. }
  10276. },
  10277. },
  10278. [
  10279. {
  10280. name: "Normal",
  10281. height: math.unit(6, "feet")
  10282. },
  10283. {
  10284. name: "Macro",
  10285. height: math.unit(230, "meters"),
  10286. default: true
  10287. },
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10292. {
  10293. front: {
  10294. height: math.unit(4 + 10 / 12, "feet"),
  10295. weight: math.unit(480, "lb"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/snow-gabumon/front.svg",
  10299. extra: 1140 / 963,
  10300. bottom: 0.058
  10301. }
  10302. },
  10303. back: {
  10304. height: math.unit(4 + 10 / 12, "feet"),
  10305. weight: math.unit(480, "lb"),
  10306. name: "Back",
  10307. image: {
  10308. source: "./media/characters/snow-gabumon/back.svg",
  10309. extra: 1115 / 962,
  10310. bottom: 0.041
  10311. }
  10312. },
  10313. frontUndresed: {
  10314. height: math.unit(4 + 10 / 12, "feet"),
  10315. weight: math.unit(480, "lb"),
  10316. name: "Front (Undressed)",
  10317. image: {
  10318. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10319. extra: 1061 / 960,
  10320. bottom: 0.045
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Micro",
  10327. height: math.unit(1, "inch")
  10328. },
  10329. {
  10330. name: "Normal",
  10331. height: math.unit(4 + 10 / 12, "feet"),
  10332. default: true
  10333. },
  10334. {
  10335. name: "Macro",
  10336. height: math.unit(200, "feet")
  10337. },
  10338. {
  10339. name: "Megamacro",
  10340. height: math.unit(120, "miles")
  10341. },
  10342. {
  10343. name: "Gigamacro",
  10344. height: math.unit(9800, "miles")
  10345. },
  10346. ]
  10347. ))
  10348. characterMakers.push(() => makeCharacter(
  10349. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10350. {
  10351. front: {
  10352. height: math.unit(1.7, "meters"),
  10353. weight: math.unit(140, "lb"),
  10354. name: "Front",
  10355. image: {
  10356. source: "./media/characters/moody/front.svg",
  10357. extra: 3226 / 3007,
  10358. bottom: 0.087
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Micro",
  10365. height: math.unit(1, "mm")
  10366. },
  10367. {
  10368. name: "Normal",
  10369. height: math.unit(1.7, "meters"),
  10370. default: true
  10371. },
  10372. {
  10373. name: "Macro",
  10374. height: math.unit(80, "meters")
  10375. },
  10376. {
  10377. name: "Macro+",
  10378. height: math.unit(500, "meters")
  10379. },
  10380. ]
  10381. ))
  10382. characterMakers.push(() => makeCharacter(
  10383. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10384. {
  10385. front: {
  10386. height: math.unit(6, "feet"),
  10387. weight: math.unit(150, "lb"),
  10388. name: "Front",
  10389. image: {
  10390. source: "./media/characters/zyas/front.svg",
  10391. extra: 1180 / 1120,
  10392. bottom: 0.045
  10393. }
  10394. },
  10395. },
  10396. [
  10397. {
  10398. name: "Normal",
  10399. height: math.unit(10, "feet"),
  10400. default: true
  10401. },
  10402. {
  10403. name: "Macro",
  10404. height: math.unit(500, "feet")
  10405. },
  10406. {
  10407. name: "Megamacro",
  10408. height: math.unit(5, "miles")
  10409. },
  10410. {
  10411. name: "Teramacro",
  10412. height: math.unit(150000, "miles")
  10413. },
  10414. ]
  10415. ))
  10416. characterMakers.push(() => makeCharacter(
  10417. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10418. {
  10419. front: {
  10420. height: math.unit(6, "feet"),
  10421. weight: math.unit(150, "lb"),
  10422. name: "Front",
  10423. image: {
  10424. source: "./media/characters/cuon/front.svg",
  10425. extra: 1390 / 1320,
  10426. bottom: 0.008
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Micro",
  10433. height: math.unit(3, "inches")
  10434. },
  10435. {
  10436. name: "Normal",
  10437. height: math.unit(18 + 9 / 12, "feet"),
  10438. default: true
  10439. },
  10440. {
  10441. name: "Macro",
  10442. height: math.unit(360, "feet")
  10443. },
  10444. {
  10445. name: "Megamacro",
  10446. height: math.unit(360, "miles")
  10447. },
  10448. ]
  10449. ))
  10450. characterMakers.push(() => makeCharacter(
  10451. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10452. {
  10453. front: {
  10454. height: math.unit(2.4, "meters"),
  10455. weight: math.unit(70, "kg"),
  10456. name: "Front",
  10457. image: {
  10458. source: "./media/characters/nyanuxk/front.svg",
  10459. extra: 1172 / 1084,
  10460. bottom: 0.065
  10461. }
  10462. },
  10463. side: {
  10464. height: math.unit(2.4, "meters"),
  10465. weight: math.unit(70, "kg"),
  10466. name: "Side",
  10467. image: {
  10468. source: "./media/characters/nyanuxk/side.svg",
  10469. extra: 1190 / 1132,
  10470. bottom: 0.007
  10471. }
  10472. },
  10473. back: {
  10474. height: math.unit(2.4, "meters"),
  10475. weight: math.unit(70, "kg"),
  10476. name: "Back",
  10477. image: {
  10478. source: "./media/characters/nyanuxk/back.svg",
  10479. extra: 1200 / 1141,
  10480. bottom: 0.015
  10481. }
  10482. },
  10483. foot: {
  10484. height: math.unit(0.52, "meters"),
  10485. name: "Foot",
  10486. image: {
  10487. source: "./media/characters/nyanuxk/foot.svg"
  10488. }
  10489. },
  10490. },
  10491. [
  10492. {
  10493. name: "Micro",
  10494. height: math.unit(2, "cm")
  10495. },
  10496. {
  10497. name: "Normal",
  10498. height: math.unit(2.4, "meters"),
  10499. default: true
  10500. },
  10501. {
  10502. name: "Smaller Macro",
  10503. height: math.unit(120, "meters")
  10504. },
  10505. {
  10506. name: "Bigger Macro",
  10507. height: math.unit(1.2, "km")
  10508. },
  10509. {
  10510. name: "Megamacro",
  10511. height: math.unit(15, "kilometers")
  10512. },
  10513. {
  10514. name: "Gigamacro",
  10515. height: math.unit(2000, "km")
  10516. },
  10517. {
  10518. name: "Teramacro",
  10519. height: math.unit(500000, "km")
  10520. },
  10521. ]
  10522. ))
  10523. characterMakers.push(() => makeCharacter(
  10524. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10525. {
  10526. side: {
  10527. height: math.unit(6, "feet"),
  10528. name: "Side",
  10529. image: {
  10530. source: "./media/characters/ailbhe/side.svg",
  10531. extra: 757 / 464,
  10532. bottom: 0.041
  10533. }
  10534. },
  10535. },
  10536. [
  10537. {
  10538. name: "Normal",
  10539. height: math.unit(1.07, "meters"),
  10540. default: true
  10541. },
  10542. ]
  10543. ))
  10544. characterMakers.push(() => makeCharacter(
  10545. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10546. {
  10547. front: {
  10548. height: math.unit(6, "feet"),
  10549. weight: math.unit(120, "kg"),
  10550. name: "Front",
  10551. image: {
  10552. source: "./media/characters/zevulfius/front.svg",
  10553. extra: 965 / 903
  10554. }
  10555. },
  10556. side: {
  10557. height: math.unit(6, "feet"),
  10558. weight: math.unit(120, "kg"),
  10559. name: "Side",
  10560. image: {
  10561. source: "./media/characters/zevulfius/side.svg",
  10562. extra: 939 / 900
  10563. }
  10564. },
  10565. back: {
  10566. height: math.unit(6, "feet"),
  10567. weight: math.unit(120, "kg"),
  10568. name: "Back",
  10569. image: {
  10570. source: "./media/characters/zevulfius/back.svg",
  10571. extra: 918 / 854,
  10572. bottom: 0.005
  10573. }
  10574. },
  10575. foot: {
  10576. height: math.unit(6 / 3.72, "feet"),
  10577. name: "Foot",
  10578. image: {
  10579. source: "./media/characters/zevulfius/foot.svg"
  10580. }
  10581. },
  10582. },
  10583. [
  10584. {
  10585. name: "Macro",
  10586. height: math.unit(750, "meters")
  10587. },
  10588. {
  10589. name: "Megamacro",
  10590. height: math.unit(20, "km"),
  10591. default: true
  10592. },
  10593. {
  10594. name: "Gigamacro",
  10595. height: math.unit(2000, "km")
  10596. },
  10597. {
  10598. name: "Teramacro",
  10599. height: math.unit(250000, "km")
  10600. },
  10601. ]
  10602. ))
  10603. characterMakers.push(() => makeCharacter(
  10604. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10605. {
  10606. front: {
  10607. height: math.unit(100, "feet"),
  10608. weight: math.unit(350, "kg"),
  10609. name: "Front",
  10610. image: {
  10611. source: "./media/characters/rikes/front.svg",
  10612. extra: 1565 / 1483,
  10613. bottom: 0.017
  10614. }
  10615. },
  10616. },
  10617. [
  10618. {
  10619. name: "Macro",
  10620. height: math.unit(100, "feet"),
  10621. default: true
  10622. },
  10623. ]
  10624. ))
  10625. characterMakers.push(() => makeCharacter(
  10626. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10627. {
  10628. front: {
  10629. height: math.unit(8, "feet"),
  10630. weight: math.unit(356, "lb"),
  10631. name: "Front",
  10632. image: {
  10633. source: "./media/characters/adam-silver-mane/front.svg",
  10634. extra: 1036/937,
  10635. bottom: 63/1099
  10636. }
  10637. },
  10638. side: {
  10639. height: math.unit(8, "feet"),
  10640. weight: math.unit(356, "lb"),
  10641. name: "Side",
  10642. image: {
  10643. source: "./media/characters/adam-silver-mane/side.svg",
  10644. extra: 997/901,
  10645. bottom: 59/1056
  10646. }
  10647. },
  10648. frontNsfw: {
  10649. height: math.unit(8, "feet"),
  10650. weight: math.unit(356, "lb"),
  10651. name: "Front (NSFW)",
  10652. image: {
  10653. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10654. extra: 1036/937,
  10655. bottom: 63/1099
  10656. }
  10657. },
  10658. sideNsfw: {
  10659. height: math.unit(8, "feet"),
  10660. weight: math.unit(356, "lb"),
  10661. name: "Side (NSFW)",
  10662. image: {
  10663. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10664. extra: 997/901,
  10665. bottom: 59/1056
  10666. }
  10667. },
  10668. dick: {
  10669. height: math.unit(2.1, "feet"),
  10670. name: "Dick",
  10671. image: {
  10672. source: "./media/characters/adam-silver-mane/dick.svg"
  10673. }
  10674. },
  10675. taur: {
  10676. height: math.unit(16, "feet"),
  10677. weight: math.unit(1500, "kg"),
  10678. name: "Taur",
  10679. image: {
  10680. source: "./media/characters/adam-silver-mane/taur.svg",
  10681. extra: 1713 / 1571,
  10682. bottom: 0.01
  10683. }
  10684. },
  10685. },
  10686. [
  10687. {
  10688. name: "Normal",
  10689. height: math.unit(8, "feet")
  10690. },
  10691. {
  10692. name: "Minimacro",
  10693. height: math.unit(80, "feet")
  10694. },
  10695. {
  10696. name: "MDA",
  10697. height: math.unit(80, "meters")
  10698. },
  10699. {
  10700. name: "Macro",
  10701. height: math.unit(800, "feet"),
  10702. default: true
  10703. },
  10704. {
  10705. name: "Megamacro",
  10706. height: math.unit(8000, "feet")
  10707. },
  10708. {
  10709. name: "Gigamacro",
  10710. height: math.unit(800, "miles")
  10711. },
  10712. {
  10713. name: "Teramacro",
  10714. height: math.unit(80000, "miles")
  10715. },
  10716. {
  10717. name: "Celestial",
  10718. height: math.unit(8e6, "miles")
  10719. },
  10720. {
  10721. name: "Star Dragon",
  10722. height: math.unit(800000, "parsecs")
  10723. },
  10724. {
  10725. name: "Godly",
  10726. height: math.unit(800, "teraparsecs")
  10727. },
  10728. ]
  10729. ))
  10730. characterMakers.push(() => makeCharacter(
  10731. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10732. {
  10733. front: {
  10734. height: math.unit(6, "feet"),
  10735. weight: math.unit(150, "lb"),
  10736. name: "Front",
  10737. image: {
  10738. source: "./media/characters/ky'owin/front.svg",
  10739. extra: 3888 / 3068,
  10740. bottom: 0.015
  10741. }
  10742. },
  10743. },
  10744. [
  10745. {
  10746. name: "Normal",
  10747. height: math.unit(6 + 8 / 12, "feet")
  10748. },
  10749. {
  10750. name: "Large",
  10751. height: math.unit(68, "feet")
  10752. },
  10753. {
  10754. name: "Macro",
  10755. height: math.unit(132, "feet")
  10756. },
  10757. {
  10758. name: "Macro+",
  10759. height: math.unit(340, "feet")
  10760. },
  10761. {
  10762. name: "Macro++",
  10763. height: math.unit(680, "feet"),
  10764. default: true
  10765. },
  10766. {
  10767. name: "Megamacro",
  10768. height: math.unit(1, "mile")
  10769. },
  10770. {
  10771. name: "Megamacro+",
  10772. height: math.unit(10, "miles")
  10773. },
  10774. ]
  10775. ))
  10776. characterMakers.push(() => makeCharacter(
  10777. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10778. {
  10779. front: {
  10780. height: math.unit(4, "feet"),
  10781. weight: math.unit(50, "lb"),
  10782. name: "Front",
  10783. image: {
  10784. source: "./media/characters/mal/front.svg",
  10785. extra: 785 / 724,
  10786. bottom: 0.07
  10787. }
  10788. },
  10789. },
  10790. [
  10791. {
  10792. name: "Micro",
  10793. height: math.unit(4, "inches")
  10794. },
  10795. {
  10796. name: "Normal",
  10797. height: math.unit(4, "feet"),
  10798. default: true
  10799. },
  10800. {
  10801. name: "Macro",
  10802. height: math.unit(200, "feet")
  10803. },
  10804. ]
  10805. ))
  10806. characterMakers.push(() => makeCharacter(
  10807. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10808. {
  10809. front: {
  10810. height: math.unit(6, "feet"),
  10811. weight: math.unit(150, "lb"),
  10812. name: "Front",
  10813. image: {
  10814. source: "./media/characters/jordan-deware/front.svg",
  10815. extra: 1191 / 1012
  10816. }
  10817. },
  10818. },
  10819. [
  10820. {
  10821. name: "Nano",
  10822. height: math.unit(0.01, "mm")
  10823. },
  10824. {
  10825. name: "Minimicro",
  10826. height: math.unit(1, "mm")
  10827. },
  10828. {
  10829. name: "Micro",
  10830. height: math.unit(0.5, "inches")
  10831. },
  10832. {
  10833. name: "Normal",
  10834. height: math.unit(4, "feet"),
  10835. default: true
  10836. },
  10837. {
  10838. name: "Minimacro",
  10839. height: math.unit(40, "meters")
  10840. },
  10841. {
  10842. name: "Small Macro",
  10843. height: math.unit(400, "meters")
  10844. },
  10845. {
  10846. name: "Macro",
  10847. height: math.unit(4, "miles")
  10848. },
  10849. {
  10850. name: "Megamacro",
  10851. height: math.unit(40, "miles")
  10852. },
  10853. {
  10854. name: "Megamacro+",
  10855. height: math.unit(400, "miles")
  10856. },
  10857. {
  10858. name: "Gigamacro",
  10859. height: math.unit(400000, "miles")
  10860. },
  10861. ]
  10862. ))
  10863. characterMakers.push(() => makeCharacter(
  10864. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10865. {
  10866. side: {
  10867. height: math.unit(6, "feet"),
  10868. weight: math.unit(150, "lb"),
  10869. name: "Side",
  10870. image: {
  10871. source: "./media/characters/kimiko/side.svg",
  10872. extra: 600 / 358
  10873. }
  10874. },
  10875. },
  10876. [
  10877. {
  10878. name: "Normal",
  10879. height: math.unit(15, "feet"),
  10880. default: true
  10881. },
  10882. {
  10883. name: "Macro",
  10884. height: math.unit(220, "feet")
  10885. },
  10886. {
  10887. name: "Macro+",
  10888. height: math.unit(1450, "feet")
  10889. },
  10890. {
  10891. name: "Megamacro",
  10892. height: math.unit(11500, "feet")
  10893. },
  10894. {
  10895. name: "Gigamacro",
  10896. height: math.unit(9500, "miles")
  10897. },
  10898. {
  10899. name: "Teramacro",
  10900. height: math.unit(2208005005, "miles")
  10901. },
  10902. {
  10903. name: "Examacro",
  10904. height: math.unit(2750, "parsecs")
  10905. },
  10906. {
  10907. name: "Zettamacro",
  10908. height: math.unit(101500, "parsecs")
  10909. },
  10910. ]
  10911. ))
  10912. characterMakers.push(() => makeCharacter(
  10913. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10914. {
  10915. front: {
  10916. height: math.unit(6, "feet"),
  10917. weight: math.unit(70, "kg"),
  10918. name: "Front",
  10919. image: {
  10920. source: "./media/characters/andrew-sleepy/front.svg"
  10921. }
  10922. },
  10923. side: {
  10924. height: math.unit(6, "feet"),
  10925. weight: math.unit(70, "kg"),
  10926. name: "Side",
  10927. image: {
  10928. source: "./media/characters/andrew-sleepy/side.svg"
  10929. }
  10930. },
  10931. },
  10932. [
  10933. {
  10934. name: "Micro",
  10935. height: math.unit(1, "mm"),
  10936. default: true
  10937. },
  10938. ]
  10939. ))
  10940. characterMakers.push(() => makeCharacter(
  10941. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10942. {
  10943. front: {
  10944. height: math.unit(6, "feet"),
  10945. weight: math.unit(150, "lb"),
  10946. name: "Front",
  10947. image: {
  10948. source: "./media/characters/judio/front.svg",
  10949. extra: 1258 / 1110
  10950. }
  10951. },
  10952. },
  10953. [
  10954. {
  10955. name: "Normal",
  10956. height: math.unit(5 + 6 / 12, "feet")
  10957. },
  10958. {
  10959. name: "Macro",
  10960. height: math.unit(1000, "feet"),
  10961. default: true
  10962. },
  10963. {
  10964. name: "Megamacro",
  10965. height: math.unit(10, "miles")
  10966. },
  10967. ]
  10968. ))
  10969. characterMakers.push(() => makeCharacter(
  10970. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10971. {
  10972. front: {
  10973. height: math.unit(6, "feet"),
  10974. weight: math.unit(68, "kg"),
  10975. name: "Front",
  10976. image: {
  10977. source: "./media/characters/nomaxice/front.svg",
  10978. extra: 1498 / 1073,
  10979. bottom: 0.075
  10980. }
  10981. },
  10982. foot: {
  10983. height: math.unit(1.1, "feet"),
  10984. name: "Foot",
  10985. image: {
  10986. source: "./media/characters/nomaxice/foot.svg"
  10987. }
  10988. },
  10989. },
  10990. [
  10991. {
  10992. name: "Micro",
  10993. height: math.unit(8, "cm")
  10994. },
  10995. {
  10996. name: "Norm",
  10997. height: math.unit(1.82, "m")
  10998. },
  10999. {
  11000. name: "Norm+",
  11001. height: math.unit(8.8, "feet")
  11002. },
  11003. {
  11004. name: "Big",
  11005. height: math.unit(8, "meters"),
  11006. default: true
  11007. },
  11008. {
  11009. name: "Macro",
  11010. height: math.unit(18, "meters")
  11011. },
  11012. {
  11013. name: "Macro+",
  11014. height: math.unit(88, "meters")
  11015. },
  11016. ]
  11017. ))
  11018. characterMakers.push(() => makeCharacter(
  11019. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11020. {
  11021. front: {
  11022. height: math.unit(12, "feet"),
  11023. weight: math.unit(1.5, "tons"),
  11024. name: "Front",
  11025. image: {
  11026. source: "./media/characters/dydros/front.svg",
  11027. extra: 863 / 800,
  11028. bottom: 0.015
  11029. }
  11030. },
  11031. back: {
  11032. height: math.unit(12, "feet"),
  11033. weight: math.unit(1.5, "tons"),
  11034. name: "Back",
  11035. image: {
  11036. source: "./media/characters/dydros/back.svg",
  11037. extra: 900 / 843,
  11038. bottom: 0.005
  11039. }
  11040. },
  11041. },
  11042. [
  11043. {
  11044. name: "Normal",
  11045. height: math.unit(12, "feet"),
  11046. default: true
  11047. },
  11048. ]
  11049. ))
  11050. characterMakers.push(() => makeCharacter(
  11051. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11052. {
  11053. front: {
  11054. height: math.unit(6, "feet"),
  11055. weight: math.unit(100, "kg"),
  11056. name: "Front",
  11057. image: {
  11058. source: "./media/characters/riggi/front.svg",
  11059. extra: 5787 / 5303
  11060. }
  11061. },
  11062. hyper: {
  11063. height: math.unit(6 * 5 / 3, "feet"),
  11064. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11065. name: "Hyper",
  11066. image: {
  11067. source: "./media/characters/riggi/hyper.svg",
  11068. extra: 3595 / 3485
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Small Macro",
  11075. height: math.unit(50, "feet")
  11076. },
  11077. {
  11078. name: "Default",
  11079. height: math.unit(200, "feet"),
  11080. default: true
  11081. },
  11082. {
  11083. name: "Loom",
  11084. height: math.unit(10000, "feet")
  11085. },
  11086. {
  11087. name: "Cruising Altitude",
  11088. height: math.unit(30000, "feet")
  11089. },
  11090. {
  11091. name: "Megamacro",
  11092. height: math.unit(100, "miles")
  11093. },
  11094. {
  11095. name: "Continent Sized",
  11096. height: math.unit(2800, "miles")
  11097. },
  11098. {
  11099. name: "Earth Sized",
  11100. height: math.unit(8000, "miles")
  11101. },
  11102. ]
  11103. ))
  11104. characterMakers.push(() => makeCharacter(
  11105. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11106. {
  11107. front: {
  11108. height: math.unit(6, "feet"),
  11109. weight: math.unit(250, "lb"),
  11110. name: "Front",
  11111. image: {
  11112. source: "./media/characters/alexi/front.svg",
  11113. extra: 3483 / 3291,
  11114. bottom: 0.04
  11115. }
  11116. },
  11117. back: {
  11118. height: math.unit(6, "feet"),
  11119. weight: math.unit(250, "lb"),
  11120. name: "Back",
  11121. image: {
  11122. source: "./media/characters/alexi/back.svg",
  11123. extra: 3533 / 3356,
  11124. bottom: 0.021
  11125. }
  11126. },
  11127. frontTransforming: {
  11128. height: math.unit(8.58, "feet"),
  11129. weight: math.unit(1300, "lb"),
  11130. name: "Transforming",
  11131. image: {
  11132. source: "./media/characters/alexi/front-transforming.svg",
  11133. extra: 437 / 409,
  11134. bottom: 19 / 458.66
  11135. }
  11136. },
  11137. frontTransformed: {
  11138. height: math.unit(12.5, "feet"),
  11139. weight: math.unit(4000, "lb"),
  11140. name: "Transformed",
  11141. image: {
  11142. source: "./media/characters/alexi/front-transformed.svg",
  11143. extra: 639 / 614,
  11144. bottom: 30.55 / 671
  11145. }
  11146. },
  11147. },
  11148. [
  11149. {
  11150. name: "Normal",
  11151. height: math.unit(14, "feet"),
  11152. default: true
  11153. },
  11154. {
  11155. name: "Minimacro",
  11156. height: math.unit(30, "meters")
  11157. },
  11158. {
  11159. name: "Macro",
  11160. height: math.unit(500, "meters")
  11161. },
  11162. {
  11163. name: "Megamacro",
  11164. height: math.unit(9000, "km")
  11165. },
  11166. {
  11167. name: "Teramacro",
  11168. height: math.unit(384000, "km")
  11169. },
  11170. ]
  11171. ))
  11172. characterMakers.push(() => makeCharacter(
  11173. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11174. {
  11175. front: {
  11176. height: math.unit(6, "feet"),
  11177. weight: math.unit(150, "lb"),
  11178. name: "Front",
  11179. image: {
  11180. source: "./media/characters/kayroo/front.svg",
  11181. extra: 1153 / 1038,
  11182. bottom: 0.06
  11183. }
  11184. },
  11185. foot: {
  11186. height: math.unit(6, "feet"),
  11187. weight: math.unit(150, "lb"),
  11188. name: "Foot",
  11189. image: {
  11190. source: "./media/characters/kayroo/foot.svg"
  11191. }
  11192. },
  11193. },
  11194. [
  11195. {
  11196. name: "Normal",
  11197. height: math.unit(8, "feet"),
  11198. default: true
  11199. },
  11200. {
  11201. name: "Minimacro",
  11202. height: math.unit(250, "feet")
  11203. },
  11204. {
  11205. name: "Macro",
  11206. height: math.unit(2800, "feet")
  11207. },
  11208. {
  11209. name: "Megamacro",
  11210. height: math.unit(5200, "feet")
  11211. },
  11212. {
  11213. name: "Gigamacro",
  11214. height: math.unit(27000, "feet")
  11215. },
  11216. {
  11217. name: "Omega",
  11218. height: math.unit(45000, "feet")
  11219. },
  11220. ]
  11221. ))
  11222. characterMakers.push(() => makeCharacter(
  11223. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11224. {
  11225. front: {
  11226. height: math.unit(18, "feet"),
  11227. weight: math.unit(5800, "lb"),
  11228. name: "Front",
  11229. image: {
  11230. source: "./media/characters/rhys/front.svg",
  11231. extra: 3386 / 3090,
  11232. bottom: 0.07
  11233. }
  11234. },
  11235. },
  11236. [
  11237. {
  11238. name: "Normal",
  11239. height: math.unit(18, "feet"),
  11240. default: true
  11241. },
  11242. {
  11243. name: "Working Size",
  11244. height: math.unit(200, "feet")
  11245. },
  11246. {
  11247. name: "Demolition Size",
  11248. height: math.unit(2000, "feet")
  11249. },
  11250. {
  11251. name: "Maximum Licensed Size",
  11252. height: math.unit(5, "miles")
  11253. },
  11254. {
  11255. name: "Maximum Observed Size",
  11256. height: math.unit(10, "yottameters")
  11257. },
  11258. ]
  11259. ))
  11260. characterMakers.push(() => makeCharacter(
  11261. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11262. {
  11263. front: {
  11264. height: math.unit(6, "feet"),
  11265. weight: math.unit(250, "lb"),
  11266. name: "Front",
  11267. image: {
  11268. source: "./media/characters/toto/front.svg",
  11269. extra: 527 / 479,
  11270. bottom: 0.05
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Micro",
  11277. height: math.unit(3, "feet")
  11278. },
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(10, "feet")
  11282. },
  11283. {
  11284. name: "Macro",
  11285. height: math.unit(150, "feet"),
  11286. default: true
  11287. },
  11288. {
  11289. name: "Megamacro",
  11290. height: math.unit(1200, "feet")
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "King", species: ["lion"], tags: ["anthro"] },
  11296. {
  11297. back: {
  11298. height: math.unit(6, "feet"),
  11299. weight: math.unit(150, "lb"),
  11300. name: "Back",
  11301. image: {
  11302. source: "./media/characters/king/back.svg"
  11303. }
  11304. },
  11305. },
  11306. [
  11307. {
  11308. name: "Micro",
  11309. height: math.unit(2, "inches")
  11310. },
  11311. {
  11312. name: "Normal",
  11313. height: math.unit(8, "feet")
  11314. },
  11315. {
  11316. name: "Macro",
  11317. height: math.unit(200, "feet"),
  11318. default: true
  11319. },
  11320. {
  11321. name: "Megamacro",
  11322. height: math.unit(50, "miles")
  11323. },
  11324. ]
  11325. ))
  11326. characterMakers.push(() => makeCharacter(
  11327. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11328. {
  11329. front: {
  11330. height: math.unit(11, "feet"),
  11331. weight: math.unit(1400, "lb"),
  11332. name: "Front",
  11333. image: {
  11334. source: "./media/characters/cordite/front.svg",
  11335. extra: 1919/1827,
  11336. bottom: 40/1959
  11337. }
  11338. },
  11339. side: {
  11340. height: math.unit(11, "feet"),
  11341. weight: math.unit(1400, "lb"),
  11342. name: "Side",
  11343. image: {
  11344. source: "./media/characters/cordite/side.svg",
  11345. extra: 1908/1793,
  11346. bottom: 38/1946
  11347. }
  11348. },
  11349. back: {
  11350. height: math.unit(11, "feet"),
  11351. weight: math.unit(1400, "lb"),
  11352. name: "Back",
  11353. image: {
  11354. source: "./media/characters/cordite/back.svg",
  11355. extra: 1938/1837,
  11356. bottom: 10/1948
  11357. }
  11358. },
  11359. feral: {
  11360. height: math.unit(2, "feet"),
  11361. weight: math.unit(90, "lb"),
  11362. name: "Feral",
  11363. image: {
  11364. source: "./media/characters/cordite/feral.svg",
  11365. extra: 1260 / 755,
  11366. bottom: 0.05
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Normal",
  11373. height: math.unit(11, "feet"),
  11374. default: true
  11375. },
  11376. ]
  11377. ))
  11378. characterMakers.push(() => makeCharacter(
  11379. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11380. {
  11381. front: {
  11382. height: math.unit(6, "feet"),
  11383. weight: math.unit(150, "lb"),
  11384. name: "Front",
  11385. image: {
  11386. source: "./media/characters/pianostrong/front.svg",
  11387. extra: 6577 / 6254,
  11388. bottom: 0.02
  11389. }
  11390. },
  11391. side: {
  11392. height: math.unit(6, "feet"),
  11393. weight: math.unit(150, "lb"),
  11394. name: "Side",
  11395. image: {
  11396. source: "./media/characters/pianostrong/side.svg",
  11397. extra: 6106 / 5730
  11398. }
  11399. },
  11400. back: {
  11401. height: math.unit(6, "feet"),
  11402. weight: math.unit(150, "lb"),
  11403. name: "Back",
  11404. image: {
  11405. source: "./media/characters/pianostrong/back.svg",
  11406. extra: 6085 / 5733,
  11407. bottom: 0.01
  11408. }
  11409. },
  11410. },
  11411. [
  11412. {
  11413. name: "Macro",
  11414. height: math.unit(100, "feet")
  11415. },
  11416. {
  11417. name: "Macro+",
  11418. height: math.unit(300, "feet"),
  11419. default: true
  11420. },
  11421. {
  11422. name: "Macro++",
  11423. height: math.unit(1000, "feet")
  11424. },
  11425. ]
  11426. ))
  11427. characterMakers.push(() => makeCharacter(
  11428. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11429. {
  11430. front: {
  11431. height: math.unit(6, "feet"),
  11432. weight: math.unit(150, "lb"),
  11433. name: "Front",
  11434. image: {
  11435. source: "./media/characters/kona/front.svg",
  11436. extra: 2960 / 2629,
  11437. bottom: 0.005
  11438. }
  11439. },
  11440. },
  11441. [
  11442. {
  11443. name: "Normal",
  11444. height: math.unit(11 + 8 / 12, "feet")
  11445. },
  11446. {
  11447. name: "Macro",
  11448. height: math.unit(850, "feet"),
  11449. default: true
  11450. },
  11451. {
  11452. name: "Macro+",
  11453. height: math.unit(1.5, "km"),
  11454. default: true
  11455. },
  11456. {
  11457. name: "Megamacro",
  11458. height: math.unit(80, "miles")
  11459. },
  11460. {
  11461. name: "Gigamacro",
  11462. height: math.unit(3500, "miles")
  11463. },
  11464. ]
  11465. ))
  11466. characterMakers.push(() => makeCharacter(
  11467. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11468. {
  11469. side: {
  11470. height: math.unit(1.9, "meters"),
  11471. weight: math.unit(326, "kg"),
  11472. name: "Side",
  11473. image: {
  11474. source: "./media/characters/levi/side.svg",
  11475. extra: 1704 / 1334,
  11476. bottom: 0.02
  11477. }
  11478. },
  11479. },
  11480. [
  11481. {
  11482. name: "Normal",
  11483. height: math.unit(1.9, "meters"),
  11484. default: true
  11485. },
  11486. {
  11487. name: "Macro",
  11488. height: math.unit(20, "meters")
  11489. },
  11490. {
  11491. name: "Macro+",
  11492. height: math.unit(200, "meters")
  11493. },
  11494. {
  11495. name: "Megamacro",
  11496. height: math.unit(2, "km")
  11497. },
  11498. {
  11499. name: "Megamacro+",
  11500. height: math.unit(20, "km")
  11501. },
  11502. {
  11503. name: "Gigamacro",
  11504. height: math.unit(2500, "km")
  11505. },
  11506. {
  11507. name: "Gigamacro+",
  11508. height: math.unit(120000, "km")
  11509. },
  11510. {
  11511. name: "Teramacro",
  11512. height: math.unit(7.77e6, "km")
  11513. },
  11514. ]
  11515. ))
  11516. characterMakers.push(() => makeCharacter(
  11517. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11518. {
  11519. front: {
  11520. height: math.unit(6 + 4/12, "feet"),
  11521. weight: math.unit(190, "lb"),
  11522. name: "Front",
  11523. image: {
  11524. source: "./media/characters/bmc/front.svg",
  11525. extra: 1626/1472,
  11526. bottom: 79/1705
  11527. }
  11528. },
  11529. back: {
  11530. height: math.unit(6 + 4/12, "feet"),
  11531. weight: math.unit(190, "lb"),
  11532. name: "Back",
  11533. image: {
  11534. source: "./media/characters/bmc/back.svg",
  11535. extra: 1640/1479,
  11536. bottom: 45/1685
  11537. }
  11538. },
  11539. frontArmor: {
  11540. height: math.unit(6 + 4/12, "feet"),
  11541. weight: math.unit(190, "lb"),
  11542. name: "Front-armor",
  11543. image: {
  11544. source: "./media/characters/bmc/front-armor.svg",
  11545. extra: 1538/1468,
  11546. bottom: 79/1617
  11547. }
  11548. },
  11549. },
  11550. [
  11551. {
  11552. name: "Human-sized",
  11553. height: math.unit(6 + 4 / 12, "feet")
  11554. },
  11555. {
  11556. name: "Interactive Size",
  11557. height: math.unit(25, "feet")
  11558. },
  11559. {
  11560. name: "Small",
  11561. height: math.unit(250, "feet")
  11562. },
  11563. {
  11564. name: "Normal",
  11565. height: math.unit(1250, "feet"),
  11566. default: true
  11567. },
  11568. {
  11569. name: "Good Day",
  11570. height: math.unit(88, "miles")
  11571. },
  11572. {
  11573. name: "Largest Measured Size",
  11574. height: math.unit(105.960, "galaxies")
  11575. },
  11576. ]
  11577. ))
  11578. characterMakers.push(() => makeCharacter(
  11579. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11580. {
  11581. front: {
  11582. height: math.unit(20, "feet"),
  11583. weight: math.unit(2016, "kg"),
  11584. name: "Front",
  11585. image: {
  11586. source: "./media/characters/sven-the-kaiju/front.svg",
  11587. extra: 1277/1250,
  11588. bottom: 35/1312
  11589. }
  11590. },
  11591. mouth: {
  11592. height: math.unit(1.85, "feet"),
  11593. name: "Mouth",
  11594. image: {
  11595. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11596. }
  11597. },
  11598. },
  11599. [
  11600. {
  11601. name: "Fairy",
  11602. height: math.unit(6, "inches")
  11603. },
  11604. {
  11605. name: "Normal",
  11606. height: math.unit(20, "feet"),
  11607. default: true
  11608. },
  11609. {
  11610. name: "Rampage",
  11611. height: math.unit(200, "feet")
  11612. },
  11613. {
  11614. name: "Archfey Forest Guardian",
  11615. height: math.unit(1, "mile")
  11616. },
  11617. ]
  11618. ))
  11619. characterMakers.push(() => makeCharacter(
  11620. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11621. {
  11622. front: {
  11623. height: math.unit(4, "meters"),
  11624. weight: math.unit(2, "tons"),
  11625. name: "Front",
  11626. image: {
  11627. source: "./media/characters/marik/front.svg",
  11628. extra: 1057 / 1003,
  11629. bottom: 0.08
  11630. }
  11631. },
  11632. },
  11633. [
  11634. {
  11635. name: "Normal",
  11636. height: math.unit(4, "meters"),
  11637. default: true
  11638. },
  11639. {
  11640. name: "Macro",
  11641. height: math.unit(20, "meters")
  11642. },
  11643. {
  11644. name: "Megamacro",
  11645. height: math.unit(50, "km")
  11646. },
  11647. {
  11648. name: "Gigamacro",
  11649. height: math.unit(100, "km")
  11650. },
  11651. {
  11652. name: "Alpha Macro",
  11653. height: math.unit(7.88e7, "yottameters")
  11654. },
  11655. ]
  11656. ))
  11657. characterMakers.push(() => makeCharacter(
  11658. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11659. {
  11660. front: {
  11661. height: math.unit(6, "feet"),
  11662. weight: math.unit(110, "lb"),
  11663. name: "Front",
  11664. image: {
  11665. source: "./media/characters/mel/front.svg",
  11666. extra: 736 / 617,
  11667. bottom: 0.017
  11668. }
  11669. },
  11670. },
  11671. [
  11672. {
  11673. name: "Pico",
  11674. height: math.unit(3, "pm")
  11675. },
  11676. {
  11677. name: "Nano",
  11678. height: math.unit(3, "nm")
  11679. },
  11680. {
  11681. name: "Micro",
  11682. height: math.unit(0.3, "mm"),
  11683. default: true
  11684. },
  11685. {
  11686. name: "Micro+",
  11687. height: math.unit(3, "mm")
  11688. },
  11689. {
  11690. name: "Normal",
  11691. height: math.unit(5 + 10.5 / 12, "feet")
  11692. },
  11693. ]
  11694. ))
  11695. characterMakers.push(() => makeCharacter(
  11696. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11697. {
  11698. kaiju: {
  11699. height: math.unit(1.75, "meters"),
  11700. weight: math.unit(55, "kg"),
  11701. name: "Kaiju",
  11702. image: {
  11703. source: "./media/characters/lykonous/kaiju.svg",
  11704. extra: 1055 / 946,
  11705. bottom: 0.135
  11706. }
  11707. },
  11708. },
  11709. [
  11710. {
  11711. name: "Normal",
  11712. height: math.unit(2.5, "meters"),
  11713. default: true
  11714. },
  11715. {
  11716. name: "Kaiju Dragon",
  11717. height: math.unit(60, "meters")
  11718. },
  11719. {
  11720. name: "Mega Kaiju",
  11721. height: math.unit(120, "km")
  11722. },
  11723. {
  11724. name: "Giga Kaiju",
  11725. height: math.unit(200, "megameters")
  11726. },
  11727. {
  11728. name: "Terra Kaiju",
  11729. height: math.unit(400, "gigameters")
  11730. },
  11731. {
  11732. name: "Kaiju Dragon God",
  11733. height: math.unit(13000, "exaparsecs")
  11734. },
  11735. ]
  11736. ))
  11737. characterMakers.push(() => makeCharacter(
  11738. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11739. {
  11740. front: {
  11741. height: math.unit(6, "feet"),
  11742. weight: math.unit(150, "lb"),
  11743. name: "Front",
  11744. image: {
  11745. source: "./media/characters/blü/front.svg",
  11746. extra: 1883 / 1564,
  11747. bottom: 0.031
  11748. }
  11749. },
  11750. },
  11751. [
  11752. {
  11753. name: "Normal",
  11754. height: math.unit(13, "feet"),
  11755. default: true
  11756. },
  11757. {
  11758. name: "Big Boi",
  11759. height: math.unit(150, "meters")
  11760. },
  11761. {
  11762. name: "Mini Stomper",
  11763. height: math.unit(300, "meters")
  11764. },
  11765. {
  11766. name: "Macro",
  11767. height: math.unit(1000, "meters")
  11768. },
  11769. {
  11770. name: "Megamacro",
  11771. height: math.unit(11000, "meters")
  11772. },
  11773. {
  11774. name: "Gigamacro",
  11775. height: math.unit(11000, "km")
  11776. },
  11777. {
  11778. name: "Teramacro",
  11779. height: math.unit(420000, "km")
  11780. },
  11781. {
  11782. name: "Examacro",
  11783. height: math.unit(120, "parsecs")
  11784. },
  11785. {
  11786. name: "God Tho",
  11787. height: math.unit(98000000000, "parsecs")
  11788. },
  11789. ]
  11790. ))
  11791. characterMakers.push(() => makeCharacter(
  11792. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11793. {
  11794. taurFront: {
  11795. height: math.unit(6, "feet"),
  11796. weight: math.unit(200, "lb"),
  11797. name: "Taur (Front)",
  11798. image: {
  11799. source: "./media/characters/scales/taur-front.svg",
  11800. extra: 1,
  11801. bottom: 0.05
  11802. }
  11803. },
  11804. taurBack: {
  11805. height: math.unit(6, "feet"),
  11806. weight: math.unit(200, "lb"),
  11807. name: "Taur (Back)",
  11808. image: {
  11809. source: "./media/characters/scales/taur-back.svg",
  11810. extra: 1,
  11811. bottom: 0.08
  11812. }
  11813. },
  11814. anthro: {
  11815. height: math.unit(6 * 7 / 12, "feet"),
  11816. weight: math.unit(100, "lb"),
  11817. name: "Anthro",
  11818. image: {
  11819. source: "./media/characters/scales/anthro.svg",
  11820. extra: 1,
  11821. bottom: 0.06
  11822. }
  11823. },
  11824. },
  11825. [
  11826. {
  11827. name: "Normal",
  11828. height: math.unit(12, "feet"),
  11829. default: true
  11830. },
  11831. ]
  11832. ))
  11833. characterMakers.push(() => makeCharacter(
  11834. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11835. {
  11836. front: {
  11837. height: math.unit(6, "feet"),
  11838. weight: math.unit(150, "lb"),
  11839. name: "Front",
  11840. image: {
  11841. source: "./media/characters/koragos/front.svg",
  11842. extra: 841 / 794,
  11843. bottom: 0.035
  11844. }
  11845. },
  11846. back: {
  11847. height: math.unit(6, "feet"),
  11848. weight: math.unit(150, "lb"),
  11849. name: "Back",
  11850. image: {
  11851. source: "./media/characters/koragos/back.svg",
  11852. extra: 841 / 810,
  11853. bottom: 0.022
  11854. }
  11855. },
  11856. },
  11857. [
  11858. {
  11859. name: "Normal",
  11860. height: math.unit(6 + 11 / 12, "feet"),
  11861. default: true
  11862. },
  11863. {
  11864. name: "Macro",
  11865. height: math.unit(490, "feet")
  11866. },
  11867. {
  11868. name: "Megamacro",
  11869. height: math.unit(10, "miles")
  11870. },
  11871. {
  11872. name: "Gigamacro",
  11873. height: math.unit(50, "miles")
  11874. },
  11875. ]
  11876. ))
  11877. characterMakers.push(() => makeCharacter(
  11878. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11879. {
  11880. front: {
  11881. height: math.unit(6, "feet"),
  11882. weight: math.unit(250, "lb"),
  11883. name: "Front",
  11884. image: {
  11885. source: "./media/characters/xylrem/front.svg",
  11886. extra: 3323 / 3050,
  11887. bottom: 0.065
  11888. }
  11889. },
  11890. },
  11891. [
  11892. {
  11893. name: "Micro",
  11894. height: math.unit(4, "feet")
  11895. },
  11896. {
  11897. name: "Normal",
  11898. height: math.unit(16, "feet"),
  11899. default: true
  11900. },
  11901. {
  11902. name: "Macro",
  11903. height: math.unit(2720, "feet")
  11904. },
  11905. {
  11906. name: "Megamacro",
  11907. height: math.unit(25000, "miles")
  11908. },
  11909. ]
  11910. ))
  11911. characterMakers.push(() => makeCharacter(
  11912. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11913. {
  11914. front: {
  11915. height: math.unit(8, "feet"),
  11916. weight: math.unit(250, "kg"),
  11917. name: "Front",
  11918. image: {
  11919. source: "./media/characters/ikideru/front.svg",
  11920. extra: 930 / 870,
  11921. bottom: 0.087
  11922. }
  11923. },
  11924. back: {
  11925. height: math.unit(8, "feet"),
  11926. weight: math.unit(250, "kg"),
  11927. name: "Back",
  11928. image: {
  11929. source: "./media/characters/ikideru/back.svg",
  11930. extra: 919 / 852,
  11931. bottom: 0.055
  11932. }
  11933. },
  11934. },
  11935. [
  11936. {
  11937. name: "Rare",
  11938. height: math.unit(8, "feet"),
  11939. default: true
  11940. },
  11941. {
  11942. name: "Playful Loom",
  11943. height: math.unit(80, "feet")
  11944. },
  11945. {
  11946. name: "City Leaner",
  11947. height: math.unit(230, "feet")
  11948. },
  11949. {
  11950. name: "Megamacro",
  11951. height: math.unit(2500, "feet")
  11952. },
  11953. {
  11954. name: "Gigamacro",
  11955. height: math.unit(26400, "feet")
  11956. },
  11957. {
  11958. name: "Tectonic Shifter",
  11959. height: math.unit(1.7, "megameters")
  11960. },
  11961. {
  11962. name: "Planet Carer",
  11963. height: math.unit(21, "megameters")
  11964. },
  11965. {
  11966. name: "God",
  11967. height: math.unit(11157.22, "parsecs")
  11968. },
  11969. ]
  11970. ))
  11971. characterMakers.push(() => makeCharacter(
  11972. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11973. {
  11974. front: {
  11975. height: math.unit(6, "feet"),
  11976. weight: math.unit(120, "lb"),
  11977. name: "Front",
  11978. image: {
  11979. source: "./media/characters/neo/front.svg"
  11980. }
  11981. },
  11982. },
  11983. [
  11984. {
  11985. name: "Micro",
  11986. height: math.unit(2, "inches"),
  11987. default: true
  11988. },
  11989. {
  11990. name: "Human Size",
  11991. height: math.unit(5 + 8 / 12, "feet")
  11992. },
  11993. ]
  11994. ))
  11995. characterMakers.push(() => makeCharacter(
  11996. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11997. {
  11998. front: {
  11999. height: math.unit(13 + 10 / 12, "feet"),
  12000. weight: math.unit(5320, "lb"),
  12001. name: "Front",
  12002. image: {
  12003. source: "./media/characters/chauncey-chantz/front.svg",
  12004. extra: 1587 / 1435,
  12005. bottom: 0.02
  12006. }
  12007. },
  12008. },
  12009. [
  12010. {
  12011. name: "Normal",
  12012. height: math.unit(13 + 10 / 12, "feet"),
  12013. default: true
  12014. },
  12015. {
  12016. name: "Macro",
  12017. height: math.unit(45, "feet")
  12018. },
  12019. {
  12020. name: "Megamacro",
  12021. height: math.unit(250, "miles")
  12022. },
  12023. {
  12024. name: "Planetary",
  12025. height: math.unit(10000, "miles")
  12026. },
  12027. {
  12028. name: "Galactic",
  12029. height: math.unit(40000, "parsecs")
  12030. },
  12031. {
  12032. name: "Universal",
  12033. height: math.unit(1, "yottameter")
  12034. },
  12035. ]
  12036. ))
  12037. characterMakers.push(() => makeCharacter(
  12038. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12039. {
  12040. front: {
  12041. height: math.unit(6, "feet"),
  12042. weight: math.unit(150, "lb"),
  12043. name: "Front",
  12044. image: {
  12045. source: "./media/characters/epifox/front.svg",
  12046. extra: 1,
  12047. bottom: 0.075
  12048. }
  12049. },
  12050. },
  12051. [
  12052. {
  12053. name: "Micro",
  12054. height: math.unit(6, "inches")
  12055. },
  12056. {
  12057. name: "Normal",
  12058. height: math.unit(12, "feet"),
  12059. default: true
  12060. },
  12061. {
  12062. name: "Macro",
  12063. height: math.unit(3810, "feet")
  12064. },
  12065. {
  12066. name: "Megamacro",
  12067. height: math.unit(500, "miles")
  12068. },
  12069. ]
  12070. ))
  12071. characterMakers.push(() => makeCharacter(
  12072. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12073. {
  12074. front: {
  12075. height: math.unit(1.8796, "m"),
  12076. weight: math.unit(230, "lb"),
  12077. name: "Front",
  12078. image: {
  12079. source: "./media/characters/colin-t/front.svg",
  12080. extra: 1272 / 1193,
  12081. bottom: 0.07
  12082. }
  12083. },
  12084. },
  12085. [
  12086. {
  12087. name: "Micro",
  12088. height: math.unit(0.571, "meters")
  12089. },
  12090. {
  12091. name: "Normal",
  12092. height: math.unit(1.8796, "meters"),
  12093. default: true
  12094. },
  12095. {
  12096. name: "Tall",
  12097. height: math.unit(4, "meters")
  12098. },
  12099. {
  12100. name: "Macro",
  12101. height: math.unit(67.241, "meters")
  12102. },
  12103. {
  12104. name: "Megamacro",
  12105. height: math.unit(371.856, "meters")
  12106. },
  12107. {
  12108. name: "Planetary",
  12109. height: math.unit(12631.5689, "km")
  12110. },
  12111. ]
  12112. ))
  12113. characterMakers.push(() => makeCharacter(
  12114. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12115. {
  12116. front: {
  12117. height: math.unit(1.85, "meters"),
  12118. weight: math.unit(80, "kg"),
  12119. name: "Front",
  12120. image: {
  12121. source: "./media/characters/matvei/front.svg",
  12122. extra: 614 / 594,
  12123. bottom: 0.01
  12124. }
  12125. },
  12126. },
  12127. [
  12128. {
  12129. name: "Normal",
  12130. height: math.unit(1.85, "meters"),
  12131. default: true
  12132. },
  12133. ]
  12134. ))
  12135. characterMakers.push(() => makeCharacter(
  12136. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12137. {
  12138. front: {
  12139. height: math.unit(5 + 9 / 12, "feet"),
  12140. weight: math.unit(70, "lb"),
  12141. name: "Front",
  12142. image: {
  12143. source: "./media/characters/quincy/front.svg",
  12144. extra: 3041 / 2751
  12145. }
  12146. },
  12147. back: {
  12148. height: math.unit(5 + 9 / 12, "feet"),
  12149. weight: math.unit(70, "lb"),
  12150. name: "Back",
  12151. image: {
  12152. source: "./media/characters/quincy/back.svg",
  12153. extra: 3041 / 2751
  12154. }
  12155. },
  12156. flying: {
  12157. height: math.unit(5 + 4 / 12, "feet"),
  12158. weight: math.unit(70, "lb"),
  12159. name: "Flying",
  12160. image: {
  12161. source: "./media/characters/quincy/flying.svg",
  12162. extra: 1044 / 930
  12163. }
  12164. },
  12165. },
  12166. [
  12167. {
  12168. name: "Micro",
  12169. height: math.unit(3, "cm")
  12170. },
  12171. {
  12172. name: "Normal",
  12173. height: math.unit(5 + 9 / 12, "feet")
  12174. },
  12175. {
  12176. name: "Macro",
  12177. height: math.unit(200, "meters"),
  12178. default: true
  12179. },
  12180. {
  12181. name: "Megamacro",
  12182. height: math.unit(1000, "meters")
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12188. {
  12189. front: {
  12190. height: math.unit(3 + 11/12, "feet"),
  12191. weight: math.unit(50, "lb"),
  12192. name: "Front",
  12193. image: {
  12194. source: "./media/characters/vanrel/front.svg",
  12195. extra: 1104/949,
  12196. bottom: 52/1156
  12197. }
  12198. },
  12199. back: {
  12200. height: math.unit(3 + 11/12, "feet"),
  12201. weight: math.unit(50, "lb"),
  12202. name: "Back",
  12203. image: {
  12204. source: "./media/characters/vanrel/back.svg",
  12205. extra: 1119/976,
  12206. bottom: 37/1156
  12207. }
  12208. },
  12209. tome: {
  12210. height: math.unit(1.35, "feet"),
  12211. weight: math.unit(10, "lb"),
  12212. name: "Vanrel's Tome",
  12213. rename: true,
  12214. image: {
  12215. source: "./media/characters/vanrel/tome.svg"
  12216. }
  12217. },
  12218. beans: {
  12219. height: math.unit(0.89, "feet"),
  12220. name: "Beans",
  12221. image: {
  12222. source: "./media/characters/vanrel/beans.svg"
  12223. }
  12224. },
  12225. },
  12226. [
  12227. {
  12228. name: "Normal",
  12229. height: math.unit(3 + 11/12, "feet"),
  12230. default: true
  12231. },
  12232. ]
  12233. ))
  12234. characterMakers.push(() => makeCharacter(
  12235. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12236. {
  12237. front: {
  12238. height: math.unit(7 + 5 / 12, "feet"),
  12239. name: "Front",
  12240. image: {
  12241. source: "./media/characters/kuiper-vanrel/front.svg",
  12242. extra: 1219/1169,
  12243. bottom: 69/1288
  12244. }
  12245. },
  12246. back: {
  12247. height: math.unit(7 + 5 / 12, "feet"),
  12248. name: "Back",
  12249. image: {
  12250. source: "./media/characters/kuiper-vanrel/back.svg",
  12251. extra: 1236/1193,
  12252. bottom: 27/1263
  12253. }
  12254. },
  12255. foot: {
  12256. height: math.unit(0.55, "meters"),
  12257. name: "Foot",
  12258. image: {
  12259. source: "./media/characters/kuiper-vanrel/foot.svg",
  12260. }
  12261. },
  12262. battle: {
  12263. height: math.unit(6.824, "feet"),
  12264. name: "Battle",
  12265. image: {
  12266. source: "./media/characters/kuiper-vanrel/battle.svg",
  12267. extra: 1466 / 1327,
  12268. bottom: 29 / 1492.5
  12269. }
  12270. },
  12271. meerkui: {
  12272. height: math.unit(18, "inches"),
  12273. name: "Meerkui",
  12274. image: {
  12275. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12276. extra: 1354/1289,
  12277. bottom: 69/1423
  12278. }
  12279. },
  12280. },
  12281. [
  12282. {
  12283. name: "Normal",
  12284. height: math.unit(7 + 5 / 12, "feet"),
  12285. default: true
  12286. },
  12287. ]
  12288. ))
  12289. characterMakers.push(() => makeCharacter(
  12290. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12291. {
  12292. front: {
  12293. height: math.unit(8 + 5 / 12, "feet"),
  12294. name: "Front",
  12295. image: {
  12296. source: "./media/characters/keset-vanrel/front.svg",
  12297. extra: 1231/1148,
  12298. bottom: 82/1313
  12299. }
  12300. },
  12301. back: {
  12302. height: math.unit(8 + 5 / 12, "feet"),
  12303. name: "Back",
  12304. image: {
  12305. source: "./media/characters/keset-vanrel/back.svg",
  12306. extra: 1240/1174,
  12307. bottom: 33/1273
  12308. }
  12309. },
  12310. hand: {
  12311. height: math.unit(0.6, "meters"),
  12312. name: "Hand",
  12313. image: {
  12314. source: "./media/characters/keset-vanrel/hand.svg"
  12315. }
  12316. },
  12317. foot: {
  12318. height: math.unit(0.94978, "meters"),
  12319. name: "Foot",
  12320. image: {
  12321. source: "./media/characters/keset-vanrel/foot.svg"
  12322. }
  12323. },
  12324. battle: {
  12325. height: math.unit(7.408, "feet"),
  12326. name: "Battle",
  12327. image: {
  12328. source: "./media/characters/keset-vanrel/battle.svg",
  12329. extra: 1890 / 1386,
  12330. bottom: 73.28 / 1970
  12331. }
  12332. },
  12333. },
  12334. [
  12335. {
  12336. name: "Normal",
  12337. height: math.unit(8 + 5 / 12, "feet"),
  12338. default: true
  12339. },
  12340. ]
  12341. ))
  12342. characterMakers.push(() => makeCharacter(
  12343. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12344. {
  12345. front: {
  12346. height: math.unit(6, "feet"),
  12347. weight: math.unit(150, "lb"),
  12348. name: "Front",
  12349. image: {
  12350. source: "./media/characters/neos/front.svg",
  12351. extra: 1696 / 992,
  12352. bottom: 0.14
  12353. }
  12354. },
  12355. },
  12356. [
  12357. {
  12358. name: "Normal",
  12359. height: math.unit(54, "cm"),
  12360. default: true
  12361. },
  12362. {
  12363. name: "Macro",
  12364. height: math.unit(100, "m")
  12365. },
  12366. {
  12367. name: "Megamacro",
  12368. height: math.unit(10, "km")
  12369. },
  12370. {
  12371. name: "Megamacro+",
  12372. height: math.unit(100, "km")
  12373. },
  12374. {
  12375. name: "Gigamacro",
  12376. height: math.unit(100, "Mm")
  12377. },
  12378. {
  12379. name: "Teramacro",
  12380. height: math.unit(100, "Gm")
  12381. },
  12382. {
  12383. name: "Examacro",
  12384. height: math.unit(100, "Em")
  12385. },
  12386. {
  12387. name: "Godly",
  12388. height: math.unit(10000, "Ym")
  12389. },
  12390. {
  12391. name: "Beyond Godly",
  12392. height: math.unit(25, "multiverses")
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12398. {
  12399. feminine: {
  12400. height: math.unit(5, "feet"),
  12401. weight: math.unit(100, "lb"),
  12402. name: "Feminine",
  12403. image: {
  12404. source: "./media/characters/sammy-mouse/feminine.svg",
  12405. extra: 2526 / 2425,
  12406. bottom: 0.123
  12407. }
  12408. },
  12409. masculine: {
  12410. height: math.unit(5, "feet"),
  12411. weight: math.unit(100, "lb"),
  12412. name: "Masculine",
  12413. image: {
  12414. source: "./media/characters/sammy-mouse/masculine.svg",
  12415. extra: 2526 / 2425,
  12416. bottom: 0.123
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Micro",
  12423. height: math.unit(5, "inches")
  12424. },
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(5, "feet"),
  12428. default: true
  12429. },
  12430. {
  12431. name: "Macro",
  12432. height: math.unit(60, "feet")
  12433. },
  12434. ]
  12435. ))
  12436. characterMakers.push(() => makeCharacter(
  12437. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12438. {
  12439. front: {
  12440. height: math.unit(4, "feet"),
  12441. weight: math.unit(50, "lb"),
  12442. name: "Front",
  12443. image: {
  12444. source: "./media/characters/kole/front.svg",
  12445. extra: 1423 / 1303,
  12446. bottom: 0.025
  12447. }
  12448. },
  12449. back: {
  12450. height: math.unit(4, "feet"),
  12451. weight: math.unit(50, "lb"),
  12452. name: "Back",
  12453. image: {
  12454. source: "./media/characters/kole/back.svg",
  12455. extra: 1426 / 1280,
  12456. bottom: 0.02
  12457. }
  12458. },
  12459. },
  12460. [
  12461. {
  12462. name: "Normal",
  12463. height: math.unit(4, "feet"),
  12464. default: true
  12465. },
  12466. ]
  12467. ))
  12468. characterMakers.push(() => makeCharacter(
  12469. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12470. {
  12471. front: {
  12472. height: math.unit(2.5, "feet"),
  12473. weight: math.unit(32, "lb"),
  12474. name: "Front",
  12475. image: {
  12476. source: "./media/characters/rufran/front.svg",
  12477. extra: 1313/885,
  12478. bottom: 94/1407
  12479. }
  12480. },
  12481. side: {
  12482. height: math.unit(2.5, "feet"),
  12483. weight: math.unit(32, "lb"),
  12484. name: "Side",
  12485. image: {
  12486. source: "./media/characters/rufran/side.svg",
  12487. extra: 1109/852,
  12488. bottom: 118/1227
  12489. }
  12490. },
  12491. back: {
  12492. height: math.unit(2.5, "feet"),
  12493. weight: math.unit(32, "lb"),
  12494. name: "Back",
  12495. image: {
  12496. source: "./media/characters/rufran/back.svg",
  12497. extra: 1280/878,
  12498. bottom: 131/1411
  12499. }
  12500. },
  12501. mouth: {
  12502. height: math.unit(1.13, "feet"),
  12503. name: "Mouth",
  12504. image: {
  12505. source: "./media/characters/rufran/mouth.svg"
  12506. }
  12507. },
  12508. foot: {
  12509. height: math.unit(1.33, "feet"),
  12510. name: "Foot",
  12511. image: {
  12512. source: "./media/characters/rufran/foot.svg"
  12513. }
  12514. },
  12515. koboldFront: {
  12516. height: math.unit(2 + 6 / 12, "feet"),
  12517. weight: math.unit(20, "lb"),
  12518. name: "Front (Kobold)",
  12519. image: {
  12520. source: "./media/characters/rufran/kobold-front.svg",
  12521. extra: 2041 / 1839,
  12522. bottom: 0.055
  12523. }
  12524. },
  12525. koboldBack: {
  12526. height: math.unit(2 + 6 / 12, "feet"),
  12527. weight: math.unit(20, "lb"),
  12528. name: "Back (Kobold)",
  12529. image: {
  12530. source: "./media/characters/rufran/kobold-back.svg",
  12531. extra: 2054 / 1839,
  12532. bottom: 0.01
  12533. }
  12534. },
  12535. koboldHand: {
  12536. height: math.unit(0.2166, "meters"),
  12537. name: "Hand (Kobold)",
  12538. image: {
  12539. source: "./media/characters/rufran/kobold-hand.svg"
  12540. }
  12541. },
  12542. koboldFoot: {
  12543. height: math.unit(0.185, "meters"),
  12544. name: "Foot (Kobold)",
  12545. image: {
  12546. source: "./media/characters/rufran/kobold-foot.svg"
  12547. }
  12548. },
  12549. },
  12550. [
  12551. {
  12552. name: "Micro",
  12553. height: math.unit(1, "inch")
  12554. },
  12555. {
  12556. name: "Normal",
  12557. height: math.unit(2 + 6 / 12, "feet"),
  12558. default: true
  12559. },
  12560. {
  12561. name: "Big",
  12562. height: math.unit(60, "feet")
  12563. },
  12564. {
  12565. name: "Macro",
  12566. height: math.unit(325, "feet")
  12567. },
  12568. ]
  12569. ))
  12570. characterMakers.push(() => makeCharacter(
  12571. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12572. {
  12573. front: {
  12574. height: math.unit(0.3, "meters"),
  12575. weight: math.unit(3.5, "kg"),
  12576. name: "Front",
  12577. image: {
  12578. source: "./media/characters/chip/front.svg",
  12579. extra: 748 / 674
  12580. }
  12581. },
  12582. },
  12583. [
  12584. {
  12585. name: "Micro",
  12586. height: math.unit(1, "inch"),
  12587. default: true
  12588. },
  12589. ]
  12590. ))
  12591. characterMakers.push(() => makeCharacter(
  12592. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12593. {
  12594. side: {
  12595. height: math.unit(2.3, "meters"),
  12596. weight: math.unit(3500, "lb"),
  12597. name: "Side",
  12598. image: {
  12599. source: "./media/characters/torvid/side.svg",
  12600. extra: 1972 / 722,
  12601. bottom: 0.035
  12602. }
  12603. },
  12604. },
  12605. [
  12606. {
  12607. name: "Normal",
  12608. height: math.unit(2.3, "meters"),
  12609. default: true
  12610. },
  12611. ]
  12612. ))
  12613. characterMakers.push(() => makeCharacter(
  12614. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12615. {
  12616. front: {
  12617. height: math.unit(2, "meters"),
  12618. weight: math.unit(150.5, "kg"),
  12619. name: "Front",
  12620. image: {
  12621. source: "./media/characters/susan/front.svg",
  12622. extra: 693 / 635,
  12623. bottom: 0.05
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Megamacro",
  12630. height: math.unit(505, "miles"),
  12631. default: true
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12637. {
  12638. front: {
  12639. height: math.unit(6, "feet"),
  12640. weight: math.unit(150, "lb"),
  12641. name: "Front",
  12642. image: {
  12643. source: "./media/characters/raindrops/front.svg",
  12644. extra: 2655 / 2461,
  12645. bottom: 49 / 2705
  12646. }
  12647. },
  12648. back: {
  12649. height: math.unit(6, "feet"),
  12650. weight: math.unit(150, "lb"),
  12651. name: "Back",
  12652. image: {
  12653. source: "./media/characters/raindrops/back.svg",
  12654. extra: 2574 / 2400,
  12655. bottom: 65 / 2634
  12656. }
  12657. },
  12658. },
  12659. [
  12660. {
  12661. name: "Micro",
  12662. height: math.unit(6, "inches")
  12663. },
  12664. {
  12665. name: "Normal",
  12666. height: math.unit(6 + 2 / 12, "feet")
  12667. },
  12668. {
  12669. name: "Macro",
  12670. height: math.unit(131, "feet"),
  12671. default: true
  12672. },
  12673. {
  12674. name: "Megamacro",
  12675. height: math.unit(15, "miles")
  12676. },
  12677. {
  12678. name: "Gigamacro",
  12679. height: math.unit(4000, "miles")
  12680. },
  12681. {
  12682. name: "Teramacro",
  12683. height: math.unit(315000, "miles")
  12684. },
  12685. ]
  12686. ))
  12687. characterMakers.push(() => makeCharacter(
  12688. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12689. {
  12690. front: {
  12691. height: math.unit(2.794, "meters"),
  12692. weight: math.unit(325, "kg"),
  12693. name: "Front",
  12694. image: {
  12695. source: "./media/characters/tezwa/front.svg",
  12696. extra: 2083 / 1906,
  12697. bottom: 0.031
  12698. }
  12699. },
  12700. foot: {
  12701. height: math.unit(0.687, "meters"),
  12702. name: "Foot",
  12703. image: {
  12704. source: "./media/characters/tezwa/foot.svg"
  12705. }
  12706. },
  12707. },
  12708. [
  12709. {
  12710. name: "Normal",
  12711. height: math.unit(9 + 2 / 12, "feet"),
  12712. default: true
  12713. },
  12714. ]
  12715. ))
  12716. characterMakers.push(() => makeCharacter(
  12717. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12718. {
  12719. front: {
  12720. height: math.unit(58, "feet"),
  12721. weight: math.unit(89000, "lb"),
  12722. name: "Front",
  12723. image: {
  12724. source: "./media/characters/typhus/front.svg",
  12725. extra: 816 / 800,
  12726. bottom: 0.065
  12727. }
  12728. },
  12729. },
  12730. [
  12731. {
  12732. name: "Macro",
  12733. height: math.unit(58, "feet"),
  12734. default: true
  12735. },
  12736. ]
  12737. ))
  12738. characterMakers.push(() => makeCharacter(
  12739. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12740. {
  12741. front: {
  12742. height: math.unit(12, "feet"),
  12743. weight: math.unit(6, "tonnes"),
  12744. name: "Front",
  12745. image: {
  12746. source: "./media/characters/lyra-von-wulf/front.svg",
  12747. extra: 1,
  12748. bottom: 0.10
  12749. }
  12750. },
  12751. frontMecha: {
  12752. height: math.unit(12, "feet"),
  12753. weight: math.unit(12, "tonnes"),
  12754. name: "Front (Mecha)",
  12755. image: {
  12756. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12757. extra: 1,
  12758. bottom: 0.042
  12759. }
  12760. },
  12761. maw: {
  12762. height: math.unit(2.2, "feet"),
  12763. name: "Maw",
  12764. image: {
  12765. source: "./media/characters/lyra-von-wulf/maw.svg"
  12766. }
  12767. },
  12768. },
  12769. [
  12770. {
  12771. name: "Normal",
  12772. height: math.unit(12, "feet"),
  12773. default: true
  12774. },
  12775. {
  12776. name: "Classic",
  12777. height: math.unit(50, "feet")
  12778. },
  12779. {
  12780. name: "Macro",
  12781. height: math.unit(500, "feet")
  12782. },
  12783. {
  12784. name: "Megamacro",
  12785. height: math.unit(1, "mile")
  12786. },
  12787. {
  12788. name: "Gigamacro",
  12789. height: math.unit(400, "miles")
  12790. },
  12791. {
  12792. name: "Teramacro",
  12793. height: math.unit(22000, "miles")
  12794. },
  12795. {
  12796. name: "Solarmacro",
  12797. height: math.unit(8600000, "miles")
  12798. },
  12799. {
  12800. name: "Galactic",
  12801. height: math.unit(1057000, "lightyears")
  12802. },
  12803. ]
  12804. ))
  12805. characterMakers.push(() => makeCharacter(
  12806. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12807. {
  12808. front: {
  12809. height: math.unit(6 + 10 / 12, "feet"),
  12810. weight: math.unit(150, "lb"),
  12811. name: "Front",
  12812. image: {
  12813. source: "./media/characters/dixon/front.svg",
  12814. extra: 3361 / 3209,
  12815. bottom: 0.01
  12816. }
  12817. },
  12818. },
  12819. [
  12820. {
  12821. name: "Normal",
  12822. height: math.unit(6 + 10 / 12, "feet"),
  12823. default: true
  12824. },
  12825. {
  12826. name: "Big",
  12827. height: math.unit(12, "meters")
  12828. },
  12829. {
  12830. name: "Macro",
  12831. height: math.unit(500, "meters")
  12832. },
  12833. {
  12834. name: "Megamacro",
  12835. height: math.unit(2, "km")
  12836. },
  12837. ]
  12838. ))
  12839. characterMakers.push(() => makeCharacter(
  12840. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12841. {
  12842. front: {
  12843. height: math.unit(185, "cm"),
  12844. weight: math.unit(68, "kg"),
  12845. name: "Front",
  12846. image: {
  12847. source: "./media/characters/kauko/front.svg",
  12848. extra: 1455 / 1421,
  12849. bottom: 0.03
  12850. }
  12851. },
  12852. back: {
  12853. height: math.unit(185, "cm"),
  12854. weight: math.unit(68, "kg"),
  12855. name: "Back",
  12856. image: {
  12857. source: "./media/characters/kauko/back.svg",
  12858. extra: 1455 / 1421,
  12859. bottom: 0.004
  12860. }
  12861. },
  12862. },
  12863. [
  12864. {
  12865. name: "Normal",
  12866. height: math.unit(185, "cm"),
  12867. default: true
  12868. },
  12869. ]
  12870. ))
  12871. characterMakers.push(() => makeCharacter(
  12872. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12873. {
  12874. front: {
  12875. height: math.unit(6, "feet"),
  12876. weight: math.unit(150, "kg"),
  12877. name: "Front",
  12878. image: {
  12879. source: "./media/characters/varg/front.svg",
  12880. extra: 1108 / 1018,
  12881. bottom: 0.0375
  12882. }
  12883. },
  12884. },
  12885. [
  12886. {
  12887. name: "Normal",
  12888. height: math.unit(5, "meters")
  12889. },
  12890. {
  12891. name: "Macro",
  12892. height: math.unit(200, "meters")
  12893. },
  12894. {
  12895. name: "Megamacro",
  12896. height: math.unit(20, "kilometers")
  12897. },
  12898. {
  12899. name: "True Size",
  12900. height: math.unit(211, "km"),
  12901. default: true
  12902. },
  12903. {
  12904. name: "Gigamacro",
  12905. height: math.unit(1000, "km")
  12906. },
  12907. {
  12908. name: "Gigamacro+",
  12909. height: math.unit(8000, "km")
  12910. },
  12911. {
  12912. name: "Teramacro",
  12913. height: math.unit(1000000, "km")
  12914. },
  12915. ]
  12916. ))
  12917. characterMakers.push(() => makeCharacter(
  12918. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12919. {
  12920. front: {
  12921. height: math.unit(7 + 7 / 12, "feet"),
  12922. weight: math.unit(267, "lb"),
  12923. name: "Front",
  12924. image: {
  12925. source: "./media/characters/dayza/front.svg",
  12926. extra: 1262 / 1200,
  12927. bottom: 0.035
  12928. }
  12929. },
  12930. side: {
  12931. height: math.unit(7 + 7 / 12, "feet"),
  12932. weight: math.unit(267, "lb"),
  12933. name: "Side",
  12934. image: {
  12935. source: "./media/characters/dayza/side.svg",
  12936. extra: 1295 / 1245,
  12937. bottom: 0.05
  12938. }
  12939. },
  12940. back: {
  12941. height: math.unit(7 + 7 / 12, "feet"),
  12942. weight: math.unit(267, "lb"),
  12943. name: "Back",
  12944. image: {
  12945. source: "./media/characters/dayza/back.svg",
  12946. extra: 1241 / 1170
  12947. }
  12948. },
  12949. },
  12950. [
  12951. {
  12952. name: "Normal",
  12953. height: math.unit(7 + 7 / 12, "feet"),
  12954. default: true
  12955. },
  12956. {
  12957. name: "Macro",
  12958. height: math.unit(155, "feet")
  12959. },
  12960. ]
  12961. ))
  12962. characterMakers.push(() => makeCharacter(
  12963. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12964. {
  12965. front: {
  12966. height: math.unit(6 + 5 / 12, "feet"),
  12967. weight: math.unit(160, "lb"),
  12968. name: "Front",
  12969. image: {
  12970. source: "./media/characters/xanthos/front.svg",
  12971. extra: 1,
  12972. bottom: 0.04
  12973. }
  12974. },
  12975. back: {
  12976. height: math.unit(6 + 5 / 12, "feet"),
  12977. weight: math.unit(160, "lb"),
  12978. name: "Back",
  12979. image: {
  12980. source: "./media/characters/xanthos/back.svg",
  12981. extra: 1,
  12982. bottom: 0.03
  12983. }
  12984. },
  12985. hand: {
  12986. height: math.unit(0.928, "feet"),
  12987. name: "Hand",
  12988. image: {
  12989. source: "./media/characters/xanthos/hand.svg"
  12990. }
  12991. },
  12992. foot: {
  12993. height: math.unit(1.286, "feet"),
  12994. name: "Foot",
  12995. image: {
  12996. source: "./media/characters/xanthos/foot.svg"
  12997. }
  12998. },
  12999. },
  13000. [
  13001. {
  13002. name: "Normal",
  13003. height: math.unit(6 + 5 / 12, "feet"),
  13004. default: true
  13005. },
  13006. {
  13007. name: "Normal+",
  13008. height: math.unit(6, "meters")
  13009. },
  13010. {
  13011. name: "Macro",
  13012. height: math.unit(40, "feet")
  13013. },
  13014. {
  13015. name: "Macro+",
  13016. height: math.unit(200, "meters")
  13017. },
  13018. {
  13019. name: "Megamacro",
  13020. height: math.unit(20, "km")
  13021. },
  13022. {
  13023. name: "Megamacro+",
  13024. height: math.unit(100, "km")
  13025. },
  13026. {
  13027. name: "Gigamacro",
  13028. height: math.unit(200, "megameters")
  13029. },
  13030. {
  13031. name: "Gigamacro+",
  13032. height: math.unit(1.5, "gigameters")
  13033. },
  13034. ]
  13035. ))
  13036. characterMakers.push(() => makeCharacter(
  13037. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13038. {
  13039. front: {
  13040. height: math.unit(6 + 3 / 12, "feet"),
  13041. weight: math.unit(215, "lb"),
  13042. name: "Front",
  13043. image: {
  13044. source: "./media/characters/grynn/front.svg",
  13045. extra: 4627 / 4209,
  13046. bottom: 0.047
  13047. }
  13048. },
  13049. },
  13050. [
  13051. {
  13052. name: "Micro",
  13053. height: math.unit(6, "inches")
  13054. },
  13055. {
  13056. name: "Normal",
  13057. height: math.unit(6 + 3 / 12, "feet"),
  13058. default: true
  13059. },
  13060. {
  13061. name: "Big",
  13062. height: math.unit(104, "feet")
  13063. },
  13064. {
  13065. name: "Macro",
  13066. height: math.unit(944, "feet")
  13067. },
  13068. {
  13069. name: "Macro+",
  13070. height: math.unit(9480, "feet")
  13071. },
  13072. {
  13073. name: "Megamacro",
  13074. height: math.unit(78752, "feet")
  13075. },
  13076. {
  13077. name: "Megamacro+",
  13078. height: math.unit(630128, "feet")
  13079. },
  13080. {
  13081. name: "Megamacro++",
  13082. height: math.unit(3150695, "feet")
  13083. },
  13084. ]
  13085. ))
  13086. characterMakers.push(() => makeCharacter(
  13087. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13088. {
  13089. front: {
  13090. height: math.unit(7 + 5 / 12, "feet"),
  13091. weight: math.unit(450, "lb"),
  13092. name: "Front",
  13093. image: {
  13094. source: "./media/characters/mocha-aura/front.svg",
  13095. extra: 1907 / 1817,
  13096. bottom: 0.04
  13097. }
  13098. },
  13099. back: {
  13100. height: math.unit(7 + 5 / 12, "feet"),
  13101. weight: math.unit(450, "lb"),
  13102. name: "Back",
  13103. image: {
  13104. source: "./media/characters/mocha-aura/back.svg",
  13105. extra: 1900 / 1825,
  13106. bottom: 0.045
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Nano",
  13113. height: math.unit(1, "nm")
  13114. },
  13115. {
  13116. name: "Megamicro",
  13117. height: math.unit(1, "mm")
  13118. },
  13119. {
  13120. name: "Micro",
  13121. height: math.unit(3, "inches")
  13122. },
  13123. {
  13124. name: "Normal",
  13125. height: math.unit(7 + 5 / 12, "feet"),
  13126. default: true
  13127. },
  13128. {
  13129. name: "Macro",
  13130. height: math.unit(30, "feet")
  13131. },
  13132. {
  13133. name: "Megamacro",
  13134. height: math.unit(3500, "feet")
  13135. },
  13136. {
  13137. name: "Teramacro",
  13138. height: math.unit(500000, "miles")
  13139. },
  13140. {
  13141. name: "Petamacro",
  13142. height: math.unit(50000000000000000, "parsecs")
  13143. },
  13144. ]
  13145. ))
  13146. characterMakers.push(() => makeCharacter(
  13147. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13148. {
  13149. front: {
  13150. height: math.unit(6, "feet"),
  13151. weight: math.unit(150, "lb"),
  13152. name: "Front",
  13153. image: {
  13154. source: "./media/characters/ilisha-devya/front.svg",
  13155. extra: 1053/1049,
  13156. bottom: 270/1323
  13157. }
  13158. },
  13159. back: {
  13160. height: math.unit(6, "feet"),
  13161. weight: math.unit(150, "lb"),
  13162. name: "Back",
  13163. image: {
  13164. source: "./media/characters/ilisha-devya/back.svg",
  13165. extra: 1131/1128,
  13166. bottom: 39/1170
  13167. }
  13168. },
  13169. },
  13170. [
  13171. {
  13172. name: "Macro",
  13173. height: math.unit(500, "feet"),
  13174. default: true
  13175. },
  13176. {
  13177. name: "Megamacro",
  13178. height: math.unit(10, "miles")
  13179. },
  13180. {
  13181. name: "Gigamacro",
  13182. height: math.unit(100000, "miles")
  13183. },
  13184. {
  13185. name: "Examacro",
  13186. height: math.unit(1e9, "lightyears")
  13187. },
  13188. {
  13189. name: "Omniversal",
  13190. height: math.unit(1e33, "lightyears")
  13191. },
  13192. {
  13193. name: "Beyond Infinite",
  13194. height: math.unit(1e100, "lightyears")
  13195. },
  13196. ]
  13197. ))
  13198. characterMakers.push(() => makeCharacter(
  13199. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13200. {
  13201. Side: {
  13202. height: math.unit(6, "feet"),
  13203. weight: math.unit(150, "lb"),
  13204. name: "Side",
  13205. image: {
  13206. source: "./media/characters/mira/side.svg",
  13207. extra: 900 / 799,
  13208. bottom: 0.02
  13209. }
  13210. },
  13211. },
  13212. [
  13213. {
  13214. name: "Human Size",
  13215. height: math.unit(6, "feet")
  13216. },
  13217. {
  13218. name: "Macro",
  13219. height: math.unit(100, "feet"),
  13220. default: true
  13221. },
  13222. {
  13223. name: "Megamacro",
  13224. height: math.unit(10, "miles")
  13225. },
  13226. {
  13227. name: "Gigamacro",
  13228. height: math.unit(25000, "miles")
  13229. },
  13230. {
  13231. name: "Teramacro",
  13232. height: math.unit(300, "AU")
  13233. },
  13234. {
  13235. name: "Full Size",
  13236. height: math.unit(4.5e10, "lightyears")
  13237. },
  13238. ]
  13239. ))
  13240. characterMakers.push(() => makeCharacter(
  13241. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13242. {
  13243. front: {
  13244. height: math.unit(6, "feet"),
  13245. weight: math.unit(150, "lb"),
  13246. name: "Front",
  13247. image: {
  13248. source: "./media/characters/holly/front.svg",
  13249. extra: 639 / 606
  13250. }
  13251. },
  13252. back: {
  13253. height: math.unit(6, "feet"),
  13254. weight: math.unit(150, "lb"),
  13255. name: "Back",
  13256. image: {
  13257. source: "./media/characters/holly/back.svg",
  13258. extra: 623 / 598
  13259. }
  13260. },
  13261. frontWorking: {
  13262. height: math.unit(6, "feet"),
  13263. weight: math.unit(150, "lb"),
  13264. name: "Front (Working)",
  13265. image: {
  13266. source: "./media/characters/holly/front-working.svg",
  13267. extra: 607 / 577,
  13268. bottom: 0.048
  13269. }
  13270. },
  13271. },
  13272. [
  13273. {
  13274. name: "Normal",
  13275. height: math.unit(12 + 3 / 12, "feet"),
  13276. default: true
  13277. },
  13278. ]
  13279. ))
  13280. characterMakers.push(() => makeCharacter(
  13281. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13282. {
  13283. front: {
  13284. height: math.unit(6, "feet"),
  13285. weight: math.unit(150, "lb"),
  13286. name: "Front",
  13287. image: {
  13288. source: "./media/characters/porter/front.svg",
  13289. extra: 1,
  13290. bottom: 0.01
  13291. }
  13292. },
  13293. frontRobes: {
  13294. height: math.unit(6, "feet"),
  13295. weight: math.unit(150, "lb"),
  13296. name: "Front (Robes)",
  13297. image: {
  13298. source: "./media/characters/porter/front-robes.svg",
  13299. extra: 1.01,
  13300. bottom: 0.01
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Normal",
  13307. height: math.unit(11 + 9 / 12, "feet"),
  13308. default: true
  13309. },
  13310. ]
  13311. ))
  13312. characterMakers.push(() => makeCharacter(
  13313. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13314. {
  13315. legendary: {
  13316. height: math.unit(6, "feet"),
  13317. weight: math.unit(150, "lb"),
  13318. name: "Legendary",
  13319. image: {
  13320. source: "./media/characters/lucy/legendary.svg",
  13321. extra: 1355 / 1100,
  13322. bottom: 0.045
  13323. }
  13324. },
  13325. },
  13326. [
  13327. {
  13328. name: "Legendary",
  13329. height: math.unit(86882 * 2, "miles"),
  13330. default: true
  13331. },
  13332. ]
  13333. ))
  13334. characterMakers.push(() => makeCharacter(
  13335. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13336. {
  13337. front: {
  13338. height: math.unit(6, "feet"),
  13339. weight: math.unit(150, "lb"),
  13340. name: "Front",
  13341. image: {
  13342. source: "./media/characters/drusilla/front.svg",
  13343. extra: 678 / 635,
  13344. bottom: 0.03
  13345. }
  13346. },
  13347. back: {
  13348. height: math.unit(6, "feet"),
  13349. weight: math.unit(150, "lb"),
  13350. name: "Back",
  13351. image: {
  13352. source: "./media/characters/drusilla/back.svg",
  13353. extra: 678 / 635,
  13354. bottom: 0.005
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Macro",
  13361. height: math.unit(100, "feet")
  13362. },
  13363. {
  13364. name: "Canon Height",
  13365. height: math.unit(2000, "feet"),
  13366. default: true
  13367. },
  13368. ]
  13369. ))
  13370. characterMakers.push(() => makeCharacter(
  13371. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13372. {
  13373. front: {
  13374. height: math.unit(6, "feet"),
  13375. weight: math.unit(180, "lb"),
  13376. name: "Front",
  13377. image: {
  13378. source: "./media/characters/renard-thatch/front.svg",
  13379. extra: 2411 / 2275,
  13380. bottom: 0.01
  13381. }
  13382. },
  13383. frontPosing: {
  13384. height: math.unit(6, "feet"),
  13385. weight: math.unit(180, "lb"),
  13386. name: "Front (Posing)",
  13387. image: {
  13388. source: "./media/characters/renard-thatch/front-posing.svg",
  13389. extra: 2381 / 2261,
  13390. bottom: 0.01
  13391. }
  13392. },
  13393. back: {
  13394. height: math.unit(6, "feet"),
  13395. weight: math.unit(180, "lb"),
  13396. name: "Back",
  13397. image: {
  13398. source: "./media/characters/renard-thatch/back.svg",
  13399. extra: 2428 / 2288
  13400. }
  13401. },
  13402. },
  13403. [
  13404. {
  13405. name: "Micro",
  13406. height: math.unit(3, "inches")
  13407. },
  13408. {
  13409. name: "Default",
  13410. height: math.unit(6, "feet"),
  13411. default: true
  13412. },
  13413. {
  13414. name: "Macro",
  13415. height: math.unit(75, "feet")
  13416. },
  13417. ]
  13418. ))
  13419. characterMakers.push(() => makeCharacter(
  13420. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13421. {
  13422. front: {
  13423. height: math.unit(1450, "feet"),
  13424. weight: math.unit(1.21e6, "tons"),
  13425. name: "Front",
  13426. image: {
  13427. source: "./media/characters/sekvra/front.svg",
  13428. extra: 1193/1190,
  13429. bottom: 78/1271
  13430. }
  13431. },
  13432. side: {
  13433. height: math.unit(1450, "feet"),
  13434. weight: math.unit(1.21e6, "tons"),
  13435. name: "Side",
  13436. image: {
  13437. source: "./media/characters/sekvra/side.svg",
  13438. extra: 1193/1190,
  13439. bottom: 52/1245
  13440. }
  13441. },
  13442. back: {
  13443. height: math.unit(1450, "feet"),
  13444. weight: math.unit(1.21e6, "tons"),
  13445. name: "Back",
  13446. image: {
  13447. source: "./media/characters/sekvra/back.svg",
  13448. extra: 1219/1216,
  13449. bottom: 21/1240
  13450. }
  13451. },
  13452. frontClothed: {
  13453. height: math.unit(1450, "feet"),
  13454. weight: math.unit(1.21e6, "tons"),
  13455. name: "Front (Clothed)",
  13456. image: {
  13457. source: "./media/characters/sekvra/front-clothed.svg",
  13458. extra: 1192/1189,
  13459. bottom: 79/1271
  13460. }
  13461. },
  13462. },
  13463. [
  13464. {
  13465. name: "Macro",
  13466. height: math.unit(1450, "feet"),
  13467. default: true
  13468. },
  13469. {
  13470. name: "Megamacro",
  13471. height: math.unit(15000, "feet")
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13477. {
  13478. front: {
  13479. height: math.unit(6, "feet"),
  13480. weight: math.unit(150, "lb"),
  13481. name: "Front",
  13482. image: {
  13483. source: "./media/characters/carmine/front.svg",
  13484. extra: 1,
  13485. bottom: 0.035
  13486. }
  13487. },
  13488. frontArmor: {
  13489. height: math.unit(6, "feet"),
  13490. weight: math.unit(150, "lb"),
  13491. name: "Front (Armor)",
  13492. image: {
  13493. source: "./media/characters/carmine/front-armor.svg",
  13494. extra: 1,
  13495. bottom: 0.035
  13496. }
  13497. },
  13498. },
  13499. [
  13500. {
  13501. name: "Large",
  13502. height: math.unit(1, "mile")
  13503. },
  13504. {
  13505. name: "Huge",
  13506. height: math.unit(40, "miles"),
  13507. default: true
  13508. },
  13509. {
  13510. name: "Colossal",
  13511. height: math.unit(2500, "miles")
  13512. },
  13513. ]
  13514. ))
  13515. characterMakers.push(() => makeCharacter(
  13516. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13517. {
  13518. front: {
  13519. height: math.unit(6, "feet"),
  13520. weight: math.unit(150, "lb"),
  13521. name: "Front",
  13522. image: {
  13523. source: "./media/characters/elyssia/front.svg",
  13524. extra: 2201 / 2035,
  13525. bottom: 0.05
  13526. }
  13527. },
  13528. frontClothed: {
  13529. height: math.unit(6, "feet"),
  13530. weight: math.unit(150, "lb"),
  13531. name: "Front (Clothed)",
  13532. image: {
  13533. source: "./media/characters/elyssia/front-clothed.svg",
  13534. extra: 2201 / 2035,
  13535. bottom: 0.05
  13536. }
  13537. },
  13538. back: {
  13539. height: math.unit(6, "feet"),
  13540. weight: math.unit(150, "lb"),
  13541. name: "Back",
  13542. image: {
  13543. source: "./media/characters/elyssia/back.svg",
  13544. extra: 2201 / 2035,
  13545. bottom: 0.013
  13546. }
  13547. },
  13548. },
  13549. [
  13550. {
  13551. name: "Smaller",
  13552. height: math.unit(150, "feet")
  13553. },
  13554. {
  13555. name: "Standard",
  13556. height: math.unit(1400, "feet"),
  13557. default: true
  13558. },
  13559. {
  13560. name: "Distracted",
  13561. height: math.unit(15000, "feet")
  13562. },
  13563. ]
  13564. ))
  13565. characterMakers.push(() => makeCharacter(
  13566. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13567. {
  13568. front: {
  13569. height: math.unit(7 + 4/12, "feet"),
  13570. weight: math.unit(690, "lb"),
  13571. name: "Front",
  13572. image: {
  13573. source: "./media/characters/geno-maxwell/front.svg",
  13574. extra: 984/856,
  13575. bottom: 87/1071
  13576. }
  13577. },
  13578. back: {
  13579. height: math.unit(7 + 4/12, "feet"),
  13580. weight: math.unit(690, "lb"),
  13581. name: "Back",
  13582. image: {
  13583. source: "./media/characters/geno-maxwell/back.svg",
  13584. extra: 981/854,
  13585. bottom: 57/1038
  13586. }
  13587. },
  13588. frontCostume: {
  13589. height: math.unit(7 + 4/12, "feet"),
  13590. weight: math.unit(690, "lb"),
  13591. name: "Front (Costume)",
  13592. image: {
  13593. source: "./media/characters/geno-maxwell/front-costume.svg",
  13594. extra: 984/856,
  13595. bottom: 87/1071
  13596. }
  13597. },
  13598. backcostume: {
  13599. height: math.unit(7 + 4/12, "feet"),
  13600. weight: math.unit(690, "lb"),
  13601. name: "Back (Costume)",
  13602. image: {
  13603. source: "./media/characters/geno-maxwell/back-costume.svg",
  13604. extra: 981/854,
  13605. bottom: 57/1038
  13606. }
  13607. },
  13608. },
  13609. [
  13610. {
  13611. name: "Micro",
  13612. height: math.unit(3, "inches")
  13613. },
  13614. {
  13615. name: "Normal",
  13616. height: math.unit(7 + 4 / 12, "feet"),
  13617. default: true
  13618. },
  13619. {
  13620. name: "Macro",
  13621. height: math.unit(220, "feet")
  13622. },
  13623. {
  13624. name: "Megamacro",
  13625. height: math.unit(11, "miles")
  13626. },
  13627. ]
  13628. ))
  13629. characterMakers.push(() => makeCharacter(
  13630. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13631. {
  13632. front: {
  13633. height: math.unit(7 + 4/12, "feet"),
  13634. weight: math.unit(750, "lb"),
  13635. name: "Front",
  13636. image: {
  13637. source: "./media/characters/regena-maxwell/front.svg",
  13638. extra: 984/856,
  13639. bottom: 87/1071
  13640. }
  13641. },
  13642. back: {
  13643. height: math.unit(7 + 4/12, "feet"),
  13644. weight: math.unit(750, "lb"),
  13645. name: "Back",
  13646. image: {
  13647. source: "./media/characters/regena-maxwell/back.svg",
  13648. extra: 981/854,
  13649. bottom: 57/1038
  13650. }
  13651. },
  13652. frontCostume: {
  13653. height: math.unit(7 + 4/12, "feet"),
  13654. weight: math.unit(750, "lb"),
  13655. name: "Front (Costume)",
  13656. image: {
  13657. source: "./media/characters/regena-maxwell/front-costume.svg",
  13658. extra: 984/856,
  13659. bottom: 87/1071
  13660. }
  13661. },
  13662. backcostume: {
  13663. height: math.unit(7 + 4/12, "feet"),
  13664. weight: math.unit(750, "lb"),
  13665. name: "Back (Costume)",
  13666. image: {
  13667. source: "./media/characters/regena-maxwell/back-costume.svg",
  13668. extra: 981/854,
  13669. bottom: 57/1038
  13670. }
  13671. },
  13672. },
  13673. [
  13674. {
  13675. name: "Normal",
  13676. height: math.unit(7 + 4 / 12, "feet"),
  13677. default: true
  13678. },
  13679. {
  13680. name: "Macro",
  13681. height: math.unit(220, "feet")
  13682. },
  13683. {
  13684. name: "Megamacro",
  13685. height: math.unit(11, "miles")
  13686. },
  13687. ]
  13688. ))
  13689. characterMakers.push(() => makeCharacter(
  13690. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13691. {
  13692. front: {
  13693. height: math.unit(6, "feet"),
  13694. weight: math.unit(150, "lb"),
  13695. name: "Front",
  13696. image: {
  13697. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13698. extra: 860 / 690,
  13699. bottom: 0.03
  13700. }
  13701. },
  13702. },
  13703. [
  13704. {
  13705. name: "Normal",
  13706. height: math.unit(1.7, "meters"),
  13707. default: true
  13708. },
  13709. ]
  13710. ))
  13711. characterMakers.push(() => makeCharacter(
  13712. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13713. {
  13714. front: {
  13715. height: math.unit(6, "feet"),
  13716. weight: math.unit(150, "lb"),
  13717. name: "Front",
  13718. image: {
  13719. source: "./media/characters/quilly/front.svg",
  13720. extra: 890 / 776
  13721. }
  13722. },
  13723. },
  13724. [
  13725. {
  13726. name: "Gigamacro",
  13727. height: math.unit(404090, "miles"),
  13728. default: true
  13729. },
  13730. ]
  13731. ))
  13732. characterMakers.push(() => makeCharacter(
  13733. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13734. {
  13735. front: {
  13736. height: math.unit(7 + 8 / 12, "feet"),
  13737. weight: math.unit(350, "lb"),
  13738. name: "Front",
  13739. image: {
  13740. source: "./media/characters/tempest/front.svg",
  13741. extra: 1175 / 1086,
  13742. bottom: 0.02
  13743. }
  13744. },
  13745. },
  13746. [
  13747. {
  13748. name: "Normal",
  13749. height: math.unit(7 + 8 / 12, "feet"),
  13750. default: true
  13751. },
  13752. ]
  13753. ))
  13754. characterMakers.push(() => makeCharacter(
  13755. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13756. {
  13757. side: {
  13758. height: math.unit(4 + 5 / 12, "feet"),
  13759. weight: math.unit(80, "lb"),
  13760. name: "Side",
  13761. image: {
  13762. source: "./media/characters/rodger/side.svg",
  13763. extra: 1235 / 1118
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "Micro",
  13770. height: math.unit(1, "inch")
  13771. },
  13772. {
  13773. name: "Normal",
  13774. height: math.unit(4 + 5 / 12, "feet"),
  13775. default: true
  13776. },
  13777. {
  13778. name: "Macro",
  13779. height: math.unit(120, "feet")
  13780. },
  13781. ]
  13782. ))
  13783. characterMakers.push(() => makeCharacter(
  13784. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13785. {
  13786. front: {
  13787. height: math.unit(6, "feet"),
  13788. weight: math.unit(150, "lb"),
  13789. name: "Front",
  13790. image: {
  13791. source: "./media/characters/danyel/front.svg",
  13792. extra: 1185 / 1123,
  13793. bottom: 0.05
  13794. }
  13795. },
  13796. },
  13797. [
  13798. {
  13799. name: "Shrunken",
  13800. height: math.unit(0.5, "mm")
  13801. },
  13802. {
  13803. name: "Micro",
  13804. height: math.unit(1, "mm"),
  13805. default: true
  13806. },
  13807. {
  13808. name: "Upsized",
  13809. height: math.unit(5 + 5 / 12, "feet")
  13810. },
  13811. ]
  13812. ))
  13813. characterMakers.push(() => makeCharacter(
  13814. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13815. {
  13816. front: {
  13817. height: math.unit(5 + 6 / 12, "feet"),
  13818. weight: math.unit(200, "lb"),
  13819. name: "Front",
  13820. image: {
  13821. source: "./media/characters/vivian-bijoux/front.svg",
  13822. extra: 1217/1209,
  13823. bottom: 76/1293
  13824. }
  13825. },
  13826. back: {
  13827. height: math.unit(5 + 6 / 12, "feet"),
  13828. weight: math.unit(200, "lb"),
  13829. name: "Back",
  13830. image: {
  13831. source: "./media/characters/vivian-bijoux/back.svg",
  13832. extra: 1214/1208,
  13833. bottom: 51/1265
  13834. }
  13835. },
  13836. dressed: {
  13837. height: math.unit(5 + 6 / 12, "feet"),
  13838. weight: math.unit(200, "lb"),
  13839. name: "Dressed",
  13840. image: {
  13841. source: "./media/characters/vivian-bijoux/dressed.svg",
  13842. extra: 1217/1209,
  13843. bottom: 76/1293
  13844. }
  13845. },
  13846. },
  13847. [
  13848. {
  13849. name: "Normal",
  13850. height: math.unit(5 + 6 / 12, "feet"),
  13851. default: true
  13852. },
  13853. {
  13854. name: "Bad Dream",
  13855. height: math.unit(500, "feet")
  13856. },
  13857. {
  13858. name: "Nightmare",
  13859. height: math.unit(500, "miles")
  13860. },
  13861. ]
  13862. ))
  13863. characterMakers.push(() => makeCharacter(
  13864. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13865. {
  13866. front: {
  13867. height: math.unit(6 + 1 / 12, "feet"),
  13868. weight: math.unit(260, "lb"),
  13869. name: "Front",
  13870. image: {
  13871. source: "./media/characters/zeta/front.svg",
  13872. extra: 1968 / 1889,
  13873. bottom: 0.06
  13874. }
  13875. },
  13876. back: {
  13877. height: math.unit(6 + 1 / 12, "feet"),
  13878. weight: math.unit(260, "lb"),
  13879. name: "Back",
  13880. image: {
  13881. source: "./media/characters/zeta/back.svg",
  13882. extra: 1944 / 1858,
  13883. bottom: 0.03
  13884. }
  13885. },
  13886. hand: {
  13887. height: math.unit(1.112, "feet"),
  13888. name: "Hand",
  13889. image: {
  13890. source: "./media/characters/zeta/hand.svg"
  13891. }
  13892. },
  13893. foot: {
  13894. height: math.unit(1.48, "feet"),
  13895. name: "Foot",
  13896. image: {
  13897. source: "./media/characters/zeta/foot.svg"
  13898. }
  13899. },
  13900. },
  13901. [
  13902. {
  13903. name: "Micro",
  13904. height: math.unit(6, "inches")
  13905. },
  13906. {
  13907. name: "Normal",
  13908. height: math.unit(6 + 1 / 12, "feet"),
  13909. default: true
  13910. },
  13911. {
  13912. name: "Macro",
  13913. height: math.unit(20, "feet")
  13914. },
  13915. ]
  13916. ))
  13917. characterMakers.push(() => makeCharacter(
  13918. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13919. {
  13920. front: {
  13921. height: math.unit(6, "feet"),
  13922. weight: math.unit(150, "lb"),
  13923. name: "Front",
  13924. image: {
  13925. source: "./media/characters/jamie-larsen/front.svg",
  13926. extra: 962 / 933,
  13927. bottom: 0.02
  13928. }
  13929. },
  13930. back: {
  13931. height: math.unit(6, "feet"),
  13932. weight: math.unit(150, "lb"),
  13933. name: "Back",
  13934. image: {
  13935. source: "./media/characters/jamie-larsen/back.svg",
  13936. extra: 997 / 946
  13937. }
  13938. },
  13939. },
  13940. [
  13941. {
  13942. name: "Macro",
  13943. height: math.unit(28 + 7 / 12, "feet"),
  13944. default: true
  13945. },
  13946. {
  13947. name: "Macro+",
  13948. height: math.unit(180, "feet")
  13949. },
  13950. {
  13951. name: "Megamacro",
  13952. height: math.unit(10, "miles")
  13953. },
  13954. {
  13955. name: "Gigamacro",
  13956. height: math.unit(200000, "miles")
  13957. },
  13958. ]
  13959. ))
  13960. characterMakers.push(() => makeCharacter(
  13961. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13962. {
  13963. front: {
  13964. height: math.unit(6, "feet"),
  13965. weight: math.unit(120, "lb"),
  13966. name: "Front",
  13967. image: {
  13968. source: "./media/characters/vance/front.svg",
  13969. extra: 1980 / 1890,
  13970. bottom: 0.09
  13971. }
  13972. },
  13973. back: {
  13974. height: math.unit(6, "feet"),
  13975. weight: math.unit(120, "lb"),
  13976. name: "Back",
  13977. image: {
  13978. source: "./media/characters/vance/back.svg",
  13979. extra: 2081 / 1994,
  13980. bottom: 0.014
  13981. }
  13982. },
  13983. hand: {
  13984. height: math.unit(0.88, "feet"),
  13985. name: "Hand",
  13986. image: {
  13987. source: "./media/characters/vance/hand.svg"
  13988. }
  13989. },
  13990. foot: {
  13991. height: math.unit(0.64, "feet"),
  13992. name: "Foot",
  13993. image: {
  13994. source: "./media/characters/vance/foot.svg"
  13995. }
  13996. },
  13997. },
  13998. [
  13999. {
  14000. name: "Small",
  14001. height: math.unit(90, "feet"),
  14002. default: true
  14003. },
  14004. {
  14005. name: "Macro",
  14006. height: math.unit(100, "meters")
  14007. },
  14008. {
  14009. name: "Megamacro",
  14010. height: math.unit(15, "miles")
  14011. },
  14012. ]
  14013. ))
  14014. characterMakers.push(() => makeCharacter(
  14015. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14016. {
  14017. front: {
  14018. height: math.unit(6, "feet"),
  14019. weight: math.unit(180, "lb"),
  14020. name: "Front",
  14021. image: {
  14022. source: "./media/characters/xochitl/front.svg",
  14023. extra: 2297 / 2261,
  14024. bottom: 0.065
  14025. }
  14026. },
  14027. back: {
  14028. height: math.unit(6, "feet"),
  14029. weight: math.unit(180, "lb"),
  14030. name: "Back",
  14031. image: {
  14032. source: "./media/characters/xochitl/back.svg",
  14033. extra: 2386 / 2354,
  14034. bottom: 0.01
  14035. }
  14036. },
  14037. foot: {
  14038. height: math.unit(6 / 5 * 1.15, "feet"),
  14039. weight: math.unit(150, "lb"),
  14040. name: "Foot",
  14041. image: {
  14042. source: "./media/characters/xochitl/foot.svg"
  14043. }
  14044. },
  14045. },
  14046. [
  14047. {
  14048. name: "Macro",
  14049. height: math.unit(80, "feet")
  14050. },
  14051. {
  14052. name: "Macro+",
  14053. height: math.unit(400, "feet"),
  14054. default: true
  14055. },
  14056. {
  14057. name: "Gigamacro",
  14058. height: math.unit(80000, "miles")
  14059. },
  14060. {
  14061. name: "Gigamacro+",
  14062. height: math.unit(400000, "miles")
  14063. },
  14064. {
  14065. name: "Teramacro",
  14066. height: math.unit(300, "AU")
  14067. },
  14068. ]
  14069. ))
  14070. characterMakers.push(() => makeCharacter(
  14071. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14072. {
  14073. front: {
  14074. height: math.unit(6, "feet"),
  14075. weight: math.unit(150, "lb"),
  14076. name: "Front",
  14077. image: {
  14078. source: "./media/characters/vincent/front.svg",
  14079. extra: 1130 / 1080,
  14080. bottom: 0.055
  14081. }
  14082. },
  14083. beak: {
  14084. height: math.unit(6 * 0.1, "feet"),
  14085. name: "Beak",
  14086. image: {
  14087. source: "./media/characters/vincent/beak.svg"
  14088. }
  14089. },
  14090. hand: {
  14091. height: math.unit(6 * 0.85, "feet"),
  14092. weight: math.unit(150, "lb"),
  14093. name: "Hand",
  14094. image: {
  14095. source: "./media/characters/vincent/hand.svg"
  14096. }
  14097. },
  14098. foot: {
  14099. height: math.unit(6 * 0.19, "feet"),
  14100. weight: math.unit(150, "lb"),
  14101. name: "Foot",
  14102. image: {
  14103. source: "./media/characters/vincent/foot.svg"
  14104. }
  14105. },
  14106. },
  14107. [
  14108. {
  14109. name: "Base",
  14110. height: math.unit(6 + 5 / 12, "feet"),
  14111. default: true
  14112. },
  14113. {
  14114. name: "Macro",
  14115. height: math.unit(300, "feet")
  14116. },
  14117. {
  14118. name: "Megamacro",
  14119. height: math.unit(2, "miles")
  14120. },
  14121. {
  14122. name: "Gigamacro",
  14123. height: math.unit(1000, "miles")
  14124. },
  14125. ]
  14126. ))
  14127. characterMakers.push(() => makeCharacter(
  14128. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14129. {
  14130. front: {
  14131. height: math.unit(2, "meters"),
  14132. weight: math.unit(500, "kg"),
  14133. name: "Front",
  14134. image: {
  14135. source: "./media/characters/coatl/front.svg",
  14136. extra: 3948 / 3500,
  14137. bottom: 0.082
  14138. }
  14139. },
  14140. },
  14141. [
  14142. {
  14143. name: "Normal",
  14144. height: math.unit(4, "meters")
  14145. },
  14146. {
  14147. name: "Macro",
  14148. height: math.unit(100, "meters"),
  14149. default: true
  14150. },
  14151. {
  14152. name: "Macro+",
  14153. height: math.unit(300, "meters")
  14154. },
  14155. {
  14156. name: "Megamacro",
  14157. height: math.unit(3, "gigameters")
  14158. },
  14159. {
  14160. name: "Megamacro+",
  14161. height: math.unit(300, "terameters")
  14162. },
  14163. {
  14164. name: "Megamacro++",
  14165. height: math.unit(3, "lightyears")
  14166. },
  14167. ]
  14168. ))
  14169. characterMakers.push(() => makeCharacter(
  14170. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14171. {
  14172. front: {
  14173. height: math.unit(6, "feet"),
  14174. weight: math.unit(50, "kg"),
  14175. name: "front",
  14176. image: {
  14177. source: "./media/characters/shiroryu/front.svg",
  14178. extra: 1990 / 1935
  14179. }
  14180. },
  14181. },
  14182. [
  14183. {
  14184. name: "Mortal Mingling",
  14185. height: math.unit(3, "meters")
  14186. },
  14187. {
  14188. name: "Kaiju-ish",
  14189. height: math.unit(250, "meters")
  14190. },
  14191. {
  14192. name: "Somewhat Godly",
  14193. height: math.unit(400, "km"),
  14194. default: true
  14195. },
  14196. {
  14197. name: "Planetary",
  14198. height: math.unit(300, "megameters")
  14199. },
  14200. {
  14201. name: "Galaxy-dwarfing",
  14202. height: math.unit(450, "kiloparsecs")
  14203. },
  14204. {
  14205. name: "Universe Eater",
  14206. height: math.unit(150, "gigaparsecs")
  14207. },
  14208. {
  14209. name: "Almost Immeasurable",
  14210. height: math.unit(1.3e266, "yottaparsecs")
  14211. },
  14212. ]
  14213. ))
  14214. characterMakers.push(() => makeCharacter(
  14215. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14216. {
  14217. front: {
  14218. height: math.unit(6, "feet"),
  14219. weight: math.unit(150, "lb"),
  14220. name: "Front",
  14221. image: {
  14222. source: "./media/characters/umeko/front.svg",
  14223. extra: 1,
  14224. bottom: 0.019
  14225. }
  14226. },
  14227. frontArmored: {
  14228. height: math.unit(6, "feet"),
  14229. weight: math.unit(150, "lb"),
  14230. name: "Front (Armored)",
  14231. image: {
  14232. source: "./media/characters/umeko/front-armored.svg",
  14233. extra: 1,
  14234. bottom: 0.021
  14235. }
  14236. },
  14237. },
  14238. [
  14239. {
  14240. name: "Macro",
  14241. height: math.unit(220, "feet"),
  14242. default: true
  14243. },
  14244. {
  14245. name: "Guardian Dragon",
  14246. height: math.unit(50, "miles")
  14247. },
  14248. {
  14249. name: "Cosmic",
  14250. height: math.unit(800000, "miles")
  14251. },
  14252. ]
  14253. ))
  14254. characterMakers.push(() => makeCharacter(
  14255. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14256. {
  14257. front: {
  14258. height: math.unit(6, "feet"),
  14259. weight: math.unit(150, "lb"),
  14260. name: "Front",
  14261. image: {
  14262. source: "./media/characters/cassidy/front.svg",
  14263. extra: 810/808,
  14264. bottom: 41/851
  14265. }
  14266. },
  14267. },
  14268. [
  14269. {
  14270. name: "Canon Height",
  14271. height: math.unit(120, "feet"),
  14272. default: true
  14273. },
  14274. {
  14275. name: "Macro+",
  14276. height: math.unit(400, "feet")
  14277. },
  14278. {
  14279. name: "Macro++",
  14280. height: math.unit(4000, "feet")
  14281. },
  14282. {
  14283. name: "Megamacro",
  14284. height: math.unit(3, "miles")
  14285. },
  14286. ]
  14287. ))
  14288. characterMakers.push(() => makeCharacter(
  14289. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14290. {
  14291. front: {
  14292. height: math.unit(6, "feet"),
  14293. weight: math.unit(150, "lb"),
  14294. name: "Front",
  14295. image: {
  14296. source: "./media/characters/isaac/front.svg",
  14297. extra: 896 / 815,
  14298. bottom: 0.11
  14299. }
  14300. },
  14301. },
  14302. [
  14303. {
  14304. name: "Human Size",
  14305. height: math.unit(8, "feet"),
  14306. default: true
  14307. },
  14308. {
  14309. name: "Macro",
  14310. height: math.unit(400, "feet")
  14311. },
  14312. {
  14313. name: "Megamacro",
  14314. height: math.unit(50, "miles")
  14315. },
  14316. {
  14317. name: "Canon Height",
  14318. height: math.unit(200, "AU")
  14319. },
  14320. ]
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14324. {
  14325. front: {
  14326. height: math.unit(6, "feet"),
  14327. weight: math.unit(72, "kg"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/sleekit/front.svg",
  14331. extra: 4693 / 4487,
  14332. bottom: 0.012
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Minimum Height",
  14339. height: math.unit(10, "meters")
  14340. },
  14341. {
  14342. name: "Smaller",
  14343. height: math.unit(25, "meters")
  14344. },
  14345. {
  14346. name: "Larger",
  14347. height: math.unit(38, "meters"),
  14348. default: true
  14349. },
  14350. {
  14351. name: "Maximum height",
  14352. height: math.unit(100, "meters")
  14353. },
  14354. ]
  14355. ))
  14356. characterMakers.push(() => makeCharacter(
  14357. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14358. {
  14359. front: {
  14360. height: math.unit(6, "feet"),
  14361. weight: math.unit(150, "lb"),
  14362. name: "Front",
  14363. image: {
  14364. source: "./media/characters/nillia/front.svg",
  14365. extra: 2195 / 2037,
  14366. bottom: 0.005
  14367. }
  14368. },
  14369. back: {
  14370. height: math.unit(6, "feet"),
  14371. weight: math.unit(150, "lb"),
  14372. name: "Back",
  14373. image: {
  14374. source: "./media/characters/nillia/back.svg",
  14375. extra: 2195 / 2037,
  14376. bottom: 0.005
  14377. }
  14378. },
  14379. },
  14380. [
  14381. {
  14382. name: "Canon Height",
  14383. height: math.unit(489, "feet"),
  14384. default: true
  14385. }
  14386. ]
  14387. ))
  14388. characterMakers.push(() => makeCharacter(
  14389. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14390. {
  14391. front: {
  14392. height: math.unit(6, "feet"),
  14393. weight: math.unit(150, "lb"),
  14394. name: "Front",
  14395. image: {
  14396. source: "./media/characters/mesmyriza/front.svg",
  14397. extra: 2067 / 1784,
  14398. bottom: 0.035
  14399. }
  14400. },
  14401. foot: {
  14402. height: math.unit(6 / (250 / 35), "feet"),
  14403. name: "Foot",
  14404. image: {
  14405. source: "./media/characters/mesmyriza/foot.svg"
  14406. }
  14407. },
  14408. },
  14409. [
  14410. {
  14411. name: "Macro",
  14412. height: math.unit(457, "meters"),
  14413. default: true
  14414. },
  14415. {
  14416. name: "Megamacro",
  14417. height: math.unit(8, "megameters")
  14418. },
  14419. ]
  14420. ))
  14421. characterMakers.push(() => makeCharacter(
  14422. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14423. {
  14424. front: {
  14425. height: math.unit(6, "feet"),
  14426. weight: math.unit(250, "lb"),
  14427. name: "Front",
  14428. image: {
  14429. source: "./media/characters/saudade/front.svg",
  14430. extra: 1172 / 1139,
  14431. bottom: 0.035
  14432. }
  14433. },
  14434. },
  14435. [
  14436. {
  14437. name: "Micro",
  14438. height: math.unit(3, "inches")
  14439. },
  14440. {
  14441. name: "Normal",
  14442. height: math.unit(6, "feet"),
  14443. default: true
  14444. },
  14445. {
  14446. name: "Macro",
  14447. height: math.unit(50, "feet")
  14448. },
  14449. {
  14450. name: "Megamacro",
  14451. height: math.unit(2800, "feet")
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(5 + 4 / 12, "feet"),
  14460. weight: math.unit(100, "lb"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/keireer/front.svg",
  14464. extra: 716 / 666,
  14465. bottom: 0.05
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Normal",
  14472. height: math.unit(5 + 4 / 12, "feet"),
  14473. default: true
  14474. },
  14475. ]
  14476. ))
  14477. characterMakers.push(() => makeCharacter(
  14478. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14479. {
  14480. front: {
  14481. height: math.unit(6, "feet"),
  14482. weight: math.unit(90, "kg"),
  14483. name: "Front",
  14484. image: {
  14485. source: "./media/characters/mirja/front.svg",
  14486. extra: 1789 / 1683,
  14487. bottom: 0.05
  14488. }
  14489. },
  14490. frontDressed: {
  14491. height: math.unit(6, "feet"),
  14492. weight: math.unit(90, "lb"),
  14493. name: "Front (Dressed)",
  14494. image: {
  14495. source: "./media/characters/mirja/front-dressed.svg",
  14496. extra: 1789 / 1683,
  14497. bottom: 0.05
  14498. }
  14499. },
  14500. back: {
  14501. height: math.unit(6, "feet"),
  14502. weight: math.unit(90, "lb"),
  14503. name: "Back",
  14504. image: {
  14505. source: "./media/characters/mirja/back.svg",
  14506. extra: 953 / 917,
  14507. bottom: 0.017
  14508. }
  14509. },
  14510. },
  14511. [
  14512. {
  14513. name: "\"Incognito\"",
  14514. height: math.unit(3, "meters")
  14515. },
  14516. {
  14517. name: "Strolling Size",
  14518. height: math.unit(15, "km")
  14519. },
  14520. {
  14521. name: "Larger Strolling Size",
  14522. height: math.unit(400, "km")
  14523. },
  14524. {
  14525. name: "Preferred Size",
  14526. height: math.unit(5000, "km")
  14527. },
  14528. {
  14529. name: "True Size",
  14530. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14531. default: true
  14532. },
  14533. ]
  14534. ))
  14535. characterMakers.push(() => makeCharacter(
  14536. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14537. {
  14538. front: {
  14539. height: math.unit(15, "feet"),
  14540. weight: math.unit(880, "kg"),
  14541. name: "Front",
  14542. image: {
  14543. source: "./media/characters/nightraver/front.svg",
  14544. extra: 2444 / 2160,
  14545. bottom: 0.027
  14546. }
  14547. },
  14548. back: {
  14549. height: math.unit(15, "feet"),
  14550. weight: math.unit(880, "kg"),
  14551. name: "Back",
  14552. image: {
  14553. source: "./media/characters/nightraver/back.svg",
  14554. extra: 2309 / 2180,
  14555. bottom: 0.005
  14556. }
  14557. },
  14558. sole: {
  14559. height: math.unit(2.878, "feet"),
  14560. name: "Sole",
  14561. image: {
  14562. source: "./media/characters/nightraver/sole.svg"
  14563. }
  14564. },
  14565. foot: {
  14566. height: math.unit(2.285, "feet"),
  14567. name: "Foot",
  14568. image: {
  14569. source: "./media/characters/nightraver/foot.svg"
  14570. }
  14571. },
  14572. maw: {
  14573. height: math.unit(2.67, "feet"),
  14574. name: "Maw",
  14575. image: {
  14576. source: "./media/characters/nightraver/maw.svg"
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Micro",
  14583. height: math.unit(1, "cm")
  14584. },
  14585. {
  14586. name: "Normal",
  14587. height: math.unit(15, "feet"),
  14588. default: true
  14589. },
  14590. {
  14591. name: "Macro",
  14592. height: math.unit(300, "feet")
  14593. },
  14594. {
  14595. name: "Megamacro",
  14596. height: math.unit(300, "miles")
  14597. },
  14598. {
  14599. name: "Gigamacro",
  14600. height: math.unit(10000, "miles")
  14601. },
  14602. ]
  14603. ))
  14604. characterMakers.push(() => makeCharacter(
  14605. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14606. {
  14607. side: {
  14608. height: math.unit(2, "inches"),
  14609. weight: math.unit(5, "grams"),
  14610. name: "Side",
  14611. image: {
  14612. source: "./media/characters/arc/side.svg"
  14613. }
  14614. },
  14615. },
  14616. [
  14617. {
  14618. name: "Micro",
  14619. height: math.unit(2, "inches"),
  14620. default: true
  14621. },
  14622. ]
  14623. ))
  14624. characterMakers.push(() => makeCharacter(
  14625. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14626. {
  14627. front: {
  14628. height: math.unit(1.1938, "meters"),
  14629. weight: math.unit(54, "kg"),
  14630. name: "Front",
  14631. image: {
  14632. source: "./media/characters/nebula-shahar/front.svg",
  14633. extra: 1642 / 1436,
  14634. bottom: 0.06
  14635. }
  14636. },
  14637. },
  14638. [
  14639. {
  14640. name: "Megamicro",
  14641. height: math.unit(0.3, "mm")
  14642. },
  14643. {
  14644. name: "Micro",
  14645. height: math.unit(3, "cm")
  14646. },
  14647. {
  14648. name: "Normal",
  14649. height: math.unit(138, "cm"),
  14650. default: true
  14651. },
  14652. {
  14653. name: "Macro",
  14654. height: math.unit(30, "m")
  14655. },
  14656. ]
  14657. ))
  14658. characterMakers.push(() => makeCharacter(
  14659. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14660. {
  14661. front: {
  14662. height: math.unit(5.24, "feet"),
  14663. weight: math.unit(150, "lb"),
  14664. name: "Front",
  14665. image: {
  14666. source: "./media/characters/shayla/front.svg",
  14667. extra: 1512 / 1414,
  14668. bottom: 0.01
  14669. }
  14670. },
  14671. back: {
  14672. height: math.unit(5.24, "feet"),
  14673. weight: math.unit(150, "lb"),
  14674. name: "Back",
  14675. image: {
  14676. source: "./media/characters/shayla/back.svg",
  14677. extra: 1512 / 1414
  14678. }
  14679. },
  14680. hand: {
  14681. height: math.unit(0.7781496062992126, "feet"),
  14682. name: "Hand",
  14683. image: {
  14684. source: "./media/characters/shayla/hand.svg"
  14685. }
  14686. },
  14687. foot: {
  14688. height: math.unit(1.4206036745406823, "feet"),
  14689. name: "Foot",
  14690. image: {
  14691. source: "./media/characters/shayla/foot.svg"
  14692. }
  14693. },
  14694. },
  14695. [
  14696. {
  14697. name: "Micro",
  14698. height: math.unit(0.32, "feet")
  14699. },
  14700. {
  14701. name: "Normal",
  14702. height: math.unit(5.24, "feet"),
  14703. default: true
  14704. },
  14705. {
  14706. name: "Macro",
  14707. height: math.unit(492.12, "feet")
  14708. },
  14709. {
  14710. name: "Megamacro",
  14711. height: math.unit(186.41, "miles")
  14712. },
  14713. ]
  14714. ))
  14715. characterMakers.push(() => makeCharacter(
  14716. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14717. {
  14718. front: {
  14719. height: math.unit(2.2, "m"),
  14720. weight: math.unit(120, "kg"),
  14721. name: "Front",
  14722. image: {
  14723. source: "./media/characters/pia-jr/front.svg",
  14724. extra: 1000 / 970,
  14725. bottom: 0.035
  14726. }
  14727. },
  14728. hand: {
  14729. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14730. name: "Hand",
  14731. image: {
  14732. source: "./media/characters/pia-jr/hand.svg"
  14733. }
  14734. },
  14735. paw: {
  14736. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14737. name: "Paw",
  14738. image: {
  14739. source: "./media/characters/pia-jr/paw.svg"
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Micro",
  14746. height: math.unit(1.2, "cm")
  14747. },
  14748. {
  14749. name: "Normal",
  14750. height: math.unit(2.2, "m"),
  14751. default: true
  14752. },
  14753. {
  14754. name: "Macro",
  14755. height: math.unit(180, "m")
  14756. },
  14757. {
  14758. name: "Megamacro",
  14759. height: math.unit(420, "km")
  14760. },
  14761. ]
  14762. ))
  14763. characterMakers.push(() => makeCharacter(
  14764. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14765. {
  14766. front: {
  14767. height: math.unit(2, "m"),
  14768. weight: math.unit(115, "kg"),
  14769. name: "Front",
  14770. image: {
  14771. source: "./media/characters/pia-sr/front.svg",
  14772. extra: 760 / 730,
  14773. bottom: 0.015
  14774. }
  14775. },
  14776. back: {
  14777. height: math.unit(2, "m"),
  14778. weight: math.unit(115, "kg"),
  14779. name: "Back",
  14780. image: {
  14781. source: "./media/characters/pia-sr/back.svg",
  14782. extra: 760 / 730,
  14783. bottom: 0.01
  14784. }
  14785. },
  14786. hand: {
  14787. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14788. name: "Hand",
  14789. image: {
  14790. source: "./media/characters/pia-sr/hand.svg"
  14791. }
  14792. },
  14793. foot: {
  14794. height: math.unit(1.83, "feet"),
  14795. name: "Foot",
  14796. image: {
  14797. source: "./media/characters/pia-sr/foot.svg"
  14798. }
  14799. },
  14800. },
  14801. [
  14802. {
  14803. name: "Micro",
  14804. height: math.unit(88, "mm")
  14805. },
  14806. {
  14807. name: "Normal",
  14808. height: math.unit(2, "m"),
  14809. default: true
  14810. },
  14811. {
  14812. name: "Macro",
  14813. height: math.unit(200, "m")
  14814. },
  14815. {
  14816. name: "Megamacro",
  14817. height: math.unit(420, "km")
  14818. },
  14819. ]
  14820. ))
  14821. characterMakers.push(() => makeCharacter(
  14822. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14823. {
  14824. front: {
  14825. height: math.unit(8 + 2 / 12, "feet"),
  14826. weight: math.unit(300, "lb"),
  14827. name: "Front",
  14828. image: {
  14829. source: "./media/characters/kibibyte/front.svg",
  14830. extra: 2221 / 2098,
  14831. bottom: 0.04
  14832. }
  14833. },
  14834. },
  14835. [
  14836. {
  14837. name: "Normal",
  14838. height: math.unit(8 + 2 / 12, "feet"),
  14839. default: true
  14840. },
  14841. {
  14842. name: "Socialable Macro",
  14843. height: math.unit(50, "feet")
  14844. },
  14845. {
  14846. name: "Macro",
  14847. height: math.unit(300, "feet")
  14848. },
  14849. {
  14850. name: "Megamacro",
  14851. height: math.unit(500, "miles")
  14852. },
  14853. ]
  14854. ))
  14855. characterMakers.push(() => makeCharacter(
  14856. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14857. {
  14858. front: {
  14859. height: math.unit(6, "feet"),
  14860. weight: math.unit(150, "lb"),
  14861. name: "Front",
  14862. image: {
  14863. source: "./media/characters/felix/front.svg",
  14864. extra: 762 / 722,
  14865. bottom: 0.02
  14866. }
  14867. },
  14868. frontClothed: {
  14869. height: math.unit(6, "feet"),
  14870. weight: math.unit(150, "lb"),
  14871. name: "Front (Clothed)",
  14872. image: {
  14873. source: "./media/characters/felix/front-clothed.svg",
  14874. extra: 762 / 722,
  14875. bottom: 0.02
  14876. }
  14877. },
  14878. },
  14879. [
  14880. {
  14881. name: "Normal",
  14882. height: math.unit(6 + 8 / 12, "feet"),
  14883. default: true
  14884. },
  14885. {
  14886. name: "Macro",
  14887. height: math.unit(2600, "feet")
  14888. },
  14889. {
  14890. name: "Megamacro",
  14891. height: math.unit(450, "miles")
  14892. },
  14893. ]
  14894. ))
  14895. characterMakers.push(() => makeCharacter(
  14896. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14897. {
  14898. front: {
  14899. height: math.unit(6 + 1 / 12, "feet"),
  14900. weight: math.unit(250, "lb"),
  14901. name: "Front",
  14902. image: {
  14903. source: "./media/characters/tobo/front.svg",
  14904. extra: 608 / 586,
  14905. bottom: 0.023
  14906. }
  14907. },
  14908. back: {
  14909. height: math.unit(6 + 1 / 12, "feet"),
  14910. weight: math.unit(250, "lb"),
  14911. name: "Back",
  14912. image: {
  14913. source: "./media/characters/tobo/back.svg",
  14914. extra: 608 / 586
  14915. }
  14916. },
  14917. },
  14918. [
  14919. {
  14920. name: "Nano",
  14921. height: math.unit(2, "nm")
  14922. },
  14923. {
  14924. name: "Megamicro",
  14925. height: math.unit(0.1, "mm")
  14926. },
  14927. {
  14928. name: "Micro",
  14929. height: math.unit(1, "inch"),
  14930. default: true
  14931. },
  14932. {
  14933. name: "Human-sized",
  14934. height: math.unit(6 + 1 / 12, "feet")
  14935. },
  14936. {
  14937. name: "Macro",
  14938. height: math.unit(250, "feet")
  14939. },
  14940. {
  14941. name: "Megamacro",
  14942. height: math.unit(75, "miles")
  14943. },
  14944. {
  14945. name: "Texas-sized",
  14946. height: math.unit(750, "miles")
  14947. },
  14948. {
  14949. name: "Teramacro",
  14950. height: math.unit(50000, "miles")
  14951. },
  14952. ]
  14953. ))
  14954. characterMakers.push(() => makeCharacter(
  14955. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14956. {
  14957. front: {
  14958. height: math.unit(6, "feet"),
  14959. weight: math.unit(269, "lb"),
  14960. name: "Front",
  14961. image: {
  14962. source: "./media/characters/danny-kapowsky/front.svg",
  14963. extra: 766 / 736,
  14964. bottom: 0.044
  14965. }
  14966. },
  14967. back: {
  14968. height: math.unit(6, "feet"),
  14969. weight: math.unit(269, "lb"),
  14970. name: "Back",
  14971. image: {
  14972. source: "./media/characters/danny-kapowsky/back.svg",
  14973. extra: 797 / 760,
  14974. bottom: 0.025
  14975. }
  14976. },
  14977. },
  14978. [
  14979. {
  14980. name: "Macro",
  14981. height: math.unit(150, "feet"),
  14982. default: true
  14983. },
  14984. {
  14985. name: "Macro+",
  14986. height: math.unit(200, "feet")
  14987. },
  14988. {
  14989. name: "Macro++",
  14990. height: math.unit(300, "feet")
  14991. },
  14992. {
  14993. name: "Macro+++",
  14994. height: math.unit(400, "feet")
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15000. {
  15001. side: {
  15002. height: math.unit(6, "feet"),
  15003. weight: math.unit(170, "lb"),
  15004. name: "Side",
  15005. image: {
  15006. source: "./media/characters/finn/side.svg",
  15007. extra: 1953 / 1807,
  15008. bottom: 0.057
  15009. }
  15010. },
  15011. },
  15012. [
  15013. {
  15014. name: "Megamacro",
  15015. height: math.unit(14445, "feet"),
  15016. default: true
  15017. },
  15018. ]
  15019. ))
  15020. characterMakers.push(() => makeCharacter(
  15021. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15022. {
  15023. front: {
  15024. height: math.unit(5 + 6 / 12, "feet"),
  15025. weight: math.unit(125, "lb"),
  15026. name: "Front",
  15027. image: {
  15028. source: "./media/characters/roy/front.svg",
  15029. extra: 1,
  15030. bottom: 0.11
  15031. }
  15032. },
  15033. },
  15034. [
  15035. {
  15036. name: "Micro",
  15037. height: math.unit(3, "inches"),
  15038. default: true
  15039. },
  15040. {
  15041. name: "Normal",
  15042. height: math.unit(5 + 6 / 12, "feet")
  15043. },
  15044. {
  15045. name: "Lesser Macro",
  15046. height: math.unit(60, "feet")
  15047. },
  15048. {
  15049. name: "Greater Macro",
  15050. height: math.unit(120, "feet")
  15051. },
  15052. ]
  15053. ))
  15054. characterMakers.push(() => makeCharacter(
  15055. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15056. {
  15057. front: {
  15058. height: math.unit(6, "feet"),
  15059. weight: math.unit(100, "lb"),
  15060. name: "Front",
  15061. image: {
  15062. source: "./media/characters/aevsivs/front.svg",
  15063. extra: 1,
  15064. bottom: 0.03
  15065. }
  15066. },
  15067. back: {
  15068. height: math.unit(6, "feet"),
  15069. weight: math.unit(100, "lb"),
  15070. name: "Back",
  15071. image: {
  15072. source: "./media/characters/aevsivs/back.svg"
  15073. }
  15074. },
  15075. },
  15076. [
  15077. {
  15078. name: "Micro",
  15079. height: math.unit(2, "inches"),
  15080. default: true
  15081. },
  15082. {
  15083. name: "Normal",
  15084. height: math.unit(5, "feet")
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15090. {
  15091. front: {
  15092. height: math.unit(5 + 7 / 12, "feet"),
  15093. weight: math.unit(159, "lb"),
  15094. name: "Front",
  15095. image: {
  15096. source: "./media/characters/hildegard/front.svg",
  15097. extra: 289 / 269,
  15098. bottom: 7.63 / 297.8
  15099. }
  15100. },
  15101. back: {
  15102. height: math.unit(5 + 7 / 12, "feet"),
  15103. weight: math.unit(159, "lb"),
  15104. name: "Back",
  15105. image: {
  15106. source: "./media/characters/hildegard/back.svg",
  15107. extra: 280 / 260,
  15108. bottom: 2.3 / 282
  15109. }
  15110. },
  15111. },
  15112. [
  15113. {
  15114. name: "Normal",
  15115. height: math.unit(5 + 7 / 12, "feet"),
  15116. default: true
  15117. },
  15118. ]
  15119. ))
  15120. characterMakers.push(() => makeCharacter(
  15121. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15122. {
  15123. bernard: {
  15124. height: math.unit(2 + 7 / 12, "feet"),
  15125. weight: math.unit(66, "lb"),
  15126. name: "Bernard",
  15127. rename: true,
  15128. image: {
  15129. source: "./media/characters/bernard-wilder/bernard.svg",
  15130. extra: 192 / 128,
  15131. bottom: 0.05
  15132. }
  15133. },
  15134. wilder: {
  15135. height: math.unit(5 + 8 / 12, "feet"),
  15136. weight: math.unit(143, "lb"),
  15137. name: "Wilder",
  15138. rename: true,
  15139. image: {
  15140. source: "./media/characters/bernard-wilder/wilder.svg",
  15141. extra: 361 / 312,
  15142. bottom: 0.02
  15143. }
  15144. },
  15145. },
  15146. [
  15147. {
  15148. name: "Normal",
  15149. height: math.unit(2 + 7 / 12, "feet"),
  15150. default: true
  15151. },
  15152. ]
  15153. ))
  15154. characterMakers.push(() => makeCharacter(
  15155. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15156. {
  15157. anthro: {
  15158. height: math.unit(6 + 1 / 12, "feet"),
  15159. weight: math.unit(155, "lb"),
  15160. name: "Anthro",
  15161. image: {
  15162. source: "./media/characters/hearth/anthro.svg",
  15163. extra: 1178/1136,
  15164. bottom: 28/1206
  15165. }
  15166. },
  15167. feral: {
  15168. height: math.unit(3.78, "feet"),
  15169. weight: math.unit(35, "kg"),
  15170. name: "Feral",
  15171. image: {
  15172. source: "./media/characters/hearth/feral.svg",
  15173. extra: 153 / 135,
  15174. bottom: 0.03
  15175. }
  15176. },
  15177. },
  15178. [
  15179. {
  15180. name: "Normal",
  15181. height: math.unit(6 + 1 / 12, "feet"),
  15182. default: true
  15183. },
  15184. ]
  15185. ))
  15186. characterMakers.push(() => makeCharacter(
  15187. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15188. {
  15189. front: {
  15190. height: math.unit(6, "feet"),
  15191. weight: math.unit(182, "lb"),
  15192. name: "Front",
  15193. image: {
  15194. source: "./media/characters/ingrid/front.svg",
  15195. extra: 294 / 268,
  15196. bottom: 0.027
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Normal",
  15203. height: math.unit(6, "feet"),
  15204. default: true
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15210. {
  15211. eevee: {
  15212. height: math.unit(2 + 10 / 12, "feet"),
  15213. weight: math.unit(86, "lb"),
  15214. name: "Malgam",
  15215. image: {
  15216. source: "./media/characters/malgam/eevee.svg",
  15217. extra: 952/784,
  15218. bottom: 38/990
  15219. }
  15220. },
  15221. sylveon: {
  15222. height: math.unit(4, "feet"),
  15223. weight: math.unit(101, "lb"),
  15224. name: "Future Malgam",
  15225. rename: true,
  15226. image: {
  15227. source: "./media/characters/malgam/sylveon.svg",
  15228. extra: 371 / 325,
  15229. bottom: 0.015
  15230. }
  15231. },
  15232. gigantamax: {
  15233. height: math.unit(50, "feet"),
  15234. name: "Gigantamax Malgam",
  15235. rename: true,
  15236. image: {
  15237. source: "./media/characters/malgam/gigantamax.svg"
  15238. }
  15239. },
  15240. },
  15241. [
  15242. {
  15243. name: "Normal",
  15244. height: math.unit(2 + 10 / 12, "feet"),
  15245. default: true
  15246. },
  15247. ]
  15248. ))
  15249. characterMakers.push(() => makeCharacter(
  15250. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15251. {
  15252. front: {
  15253. height: math.unit(5 + 11 / 12, "feet"),
  15254. weight: math.unit(188, "lb"),
  15255. name: "Front",
  15256. image: {
  15257. source: "./media/characters/fleur/front.svg",
  15258. extra: 309 / 283,
  15259. bottom: 0.007
  15260. }
  15261. },
  15262. },
  15263. [
  15264. {
  15265. name: "Normal",
  15266. height: math.unit(5 + 11 / 12, "feet"),
  15267. default: true
  15268. },
  15269. ]
  15270. ))
  15271. characterMakers.push(() => makeCharacter(
  15272. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15273. {
  15274. front: {
  15275. height: math.unit(5 + 4 / 12, "feet"),
  15276. weight: math.unit(122, "lb"),
  15277. name: "Front",
  15278. image: {
  15279. source: "./media/characters/jude/front.svg",
  15280. extra: 288 / 273,
  15281. bottom: 0.03
  15282. }
  15283. },
  15284. },
  15285. [
  15286. {
  15287. name: "Normal",
  15288. height: math.unit(5 + 4 / 12, "feet"),
  15289. default: true
  15290. },
  15291. ]
  15292. ))
  15293. characterMakers.push(() => makeCharacter(
  15294. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15295. {
  15296. front: {
  15297. height: math.unit(5 + 11 / 12, "feet"),
  15298. weight: math.unit(190, "lb"),
  15299. name: "Front",
  15300. image: {
  15301. source: "./media/characters/seara/front.svg",
  15302. extra: 1,
  15303. bottom: 0.05
  15304. }
  15305. },
  15306. },
  15307. [
  15308. {
  15309. name: "Normal",
  15310. height: math.unit(5 + 11 / 12, "feet"),
  15311. default: true
  15312. },
  15313. ]
  15314. ))
  15315. characterMakers.push(() => makeCharacter(
  15316. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15317. {
  15318. front: {
  15319. height: math.unit(16 + 5 / 12, "feet"),
  15320. weight: math.unit(524, "lb"),
  15321. name: "Front",
  15322. image: {
  15323. source: "./media/characters/caspian/front.svg",
  15324. extra: 1,
  15325. bottom: 0.04
  15326. }
  15327. },
  15328. },
  15329. [
  15330. {
  15331. name: "Normal",
  15332. height: math.unit(16 + 5 / 12, "feet"),
  15333. default: true
  15334. },
  15335. ]
  15336. ))
  15337. characterMakers.push(() => makeCharacter(
  15338. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15339. {
  15340. front: {
  15341. height: math.unit(5 + 7 / 12, "feet"),
  15342. weight: math.unit(170, "lb"),
  15343. name: "Front",
  15344. image: {
  15345. source: "./media/characters/mika/front.svg",
  15346. extra: 1,
  15347. bottom: 0.016
  15348. }
  15349. },
  15350. },
  15351. [
  15352. {
  15353. name: "Normal",
  15354. height: math.unit(5 + 7 / 12, "feet"),
  15355. default: true
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15361. {
  15362. front: {
  15363. height: math.unit(6 + 2 / 12, "feet"),
  15364. weight: math.unit(268, "lb"),
  15365. name: "Front",
  15366. image: {
  15367. source: "./media/characters/sol/front.svg",
  15368. extra: 247 / 231,
  15369. bottom: 0.05
  15370. }
  15371. },
  15372. },
  15373. [
  15374. {
  15375. name: "Normal",
  15376. height: math.unit(6 + 2 / 12, "feet"),
  15377. default: true
  15378. },
  15379. ]
  15380. ))
  15381. characterMakers.push(() => makeCharacter(
  15382. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15383. {
  15384. buizel: {
  15385. height: math.unit(2 + 5 / 12, "feet"),
  15386. weight: math.unit(87, "lb"),
  15387. name: "Buizel",
  15388. image: {
  15389. source: "./media/characters/umiko/buizel.svg",
  15390. extra: 172 / 157,
  15391. bottom: 0.01
  15392. }
  15393. },
  15394. floatzel: {
  15395. height: math.unit(5 + 9 / 12, "feet"),
  15396. weight: math.unit(250, "lb"),
  15397. name: "Floatzel",
  15398. image: {
  15399. source: "./media/characters/umiko/floatzel.svg",
  15400. extra: 262 / 248
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Normal",
  15407. height: math.unit(2 + 5 / 12, "feet"),
  15408. default: true
  15409. },
  15410. ]
  15411. ))
  15412. characterMakers.push(() => makeCharacter(
  15413. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15414. {
  15415. front: {
  15416. height: math.unit(6 + 2 / 12, "feet"),
  15417. weight: math.unit(146, "lb"),
  15418. name: "Front",
  15419. image: {
  15420. source: "./media/characters/iliac/front.svg",
  15421. extra: 389 / 365,
  15422. bottom: 0.035
  15423. }
  15424. },
  15425. },
  15426. [
  15427. {
  15428. name: "Normal",
  15429. height: math.unit(6 + 2 / 12, "feet"),
  15430. default: true
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15436. {
  15437. front: {
  15438. height: math.unit(6, "feet"),
  15439. weight: math.unit(170, "lb"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/topaz/front.svg",
  15443. extra: 317 / 303,
  15444. bottom: 0.055
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Normal",
  15451. height: math.unit(6, "feet"),
  15452. default: true
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(5 + 11 / 12, "feet"),
  15461. weight: math.unit(144, "lb"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/gabriel/front.svg",
  15465. extra: 285 / 262,
  15466. bottom: 0.004
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Normal",
  15473. height: math.unit(5 + 11 / 12, "feet"),
  15474. default: true
  15475. },
  15476. ]
  15477. ))
  15478. characterMakers.push(() => makeCharacter(
  15479. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15480. {
  15481. side: {
  15482. height: math.unit(6 + 5 / 12, "feet"),
  15483. weight: math.unit(300, "lb"),
  15484. name: "Side",
  15485. image: {
  15486. source: "./media/characters/tempest-suicune/side.svg",
  15487. extra: 195 / 154,
  15488. bottom: 0.04
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Normal",
  15495. height: math.unit(6 + 5 / 12, "feet"),
  15496. default: true
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(7 + 2 / 12, "feet"),
  15505. weight: math.unit(322, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/vulcan/front.svg",
  15509. extra: 154 / 147,
  15510. bottom: 0.04
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Normal",
  15517. height: math.unit(7 + 2 / 12, "feet"),
  15518. default: true
  15519. },
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15524. {
  15525. front: {
  15526. height: math.unit(5 + 10 / 12, "feet"),
  15527. weight: math.unit(264, "lb"),
  15528. name: "Front",
  15529. image: {
  15530. source: "./media/characters/gault/front.svg",
  15531. extra: 161 / 140,
  15532. bottom: 0.028
  15533. }
  15534. },
  15535. },
  15536. [
  15537. {
  15538. name: "Normal",
  15539. height: math.unit(5 + 10 / 12, "feet"),
  15540. default: true
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15546. {
  15547. front: {
  15548. height: math.unit(6, "feet"),
  15549. weight: math.unit(150, "lb"),
  15550. name: "Front",
  15551. image: {
  15552. source: "./media/characters/shard/front.svg",
  15553. extra: 273 / 238,
  15554. bottom: 0.02
  15555. }
  15556. },
  15557. },
  15558. [
  15559. {
  15560. name: "Normal",
  15561. height: math.unit(3 + 6 / 12, "feet"),
  15562. default: true
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15568. {
  15569. front: {
  15570. height: math.unit(5 + 11 / 12, "feet"),
  15571. weight: math.unit(146, "lb"),
  15572. name: "Front",
  15573. image: {
  15574. source: "./media/characters/ashe/front.svg",
  15575. extra: 400 / 373,
  15576. bottom: 0.01
  15577. }
  15578. },
  15579. },
  15580. [
  15581. {
  15582. name: "Normal",
  15583. height: math.unit(5 + 11 / 12, "feet"),
  15584. default: true
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15590. {
  15591. front: {
  15592. height: math.unit(5 + 5 / 12, "feet"),
  15593. weight: math.unit(135, "lb"),
  15594. name: "Front",
  15595. image: {
  15596. source: "./media/characters/beatrix/front.svg",
  15597. extra: 392 / 379,
  15598. bottom: 0.01
  15599. }
  15600. },
  15601. },
  15602. [
  15603. {
  15604. name: "Normal",
  15605. height: math.unit(6, "feet"),
  15606. default: true
  15607. },
  15608. ]
  15609. ))
  15610. characterMakers.push(() => makeCharacter(
  15611. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15612. {
  15613. front: {
  15614. height: math.unit(6 + 2/12, "feet"),
  15615. weight: math.unit(135, "lb"),
  15616. name: "Front",
  15617. image: {
  15618. source: "./media/characters/ignatius/front.svg",
  15619. extra: 1380/1259,
  15620. bottom: 27/1407
  15621. }
  15622. },
  15623. },
  15624. [
  15625. {
  15626. name: "Normal",
  15627. height: math.unit(6 + 2/12, "feet"),
  15628. default: true
  15629. },
  15630. ]
  15631. ))
  15632. characterMakers.push(() => makeCharacter(
  15633. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15634. {
  15635. front: {
  15636. height: math.unit(6 + 2 / 12, "feet"),
  15637. weight: math.unit(138, "lb"),
  15638. name: "Front",
  15639. image: {
  15640. source: "./media/characters/mei-li/front.svg",
  15641. extra: 237 / 229,
  15642. bottom: 0.03
  15643. }
  15644. },
  15645. },
  15646. [
  15647. {
  15648. name: "Normal",
  15649. height: math.unit(6 + 2 / 12, "feet"),
  15650. default: true
  15651. },
  15652. ]
  15653. ))
  15654. characterMakers.push(() => makeCharacter(
  15655. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15656. {
  15657. front: {
  15658. height: math.unit(2 + 4 / 12, "feet"),
  15659. weight: math.unit(62, "lb"),
  15660. name: "Front",
  15661. image: {
  15662. source: "./media/characters/puru/front.svg",
  15663. extra: 206 / 149,
  15664. bottom: 0.06
  15665. }
  15666. },
  15667. },
  15668. [
  15669. {
  15670. name: "Normal",
  15671. height: math.unit(2 + 4 / 12, "feet"),
  15672. default: true
  15673. },
  15674. ]
  15675. ))
  15676. characterMakers.push(() => makeCharacter(
  15677. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15678. {
  15679. anthro: {
  15680. height: math.unit(5 + 8/12, "feet"),
  15681. weight: math.unit(200, "lb"),
  15682. energyNeed: math.unit(2000, "kcal"),
  15683. name: "Anthro",
  15684. image: {
  15685. source: "./media/characters/kee/anthro.svg",
  15686. extra: 3251/3184,
  15687. bottom: 250/3501
  15688. }
  15689. },
  15690. taur: {
  15691. height: math.unit(11, "feet"),
  15692. weight: math.unit(500, "lb"),
  15693. energyNeed: math.unit(5000, "kcal"),
  15694. name: "Taur",
  15695. image: {
  15696. source: "./media/characters/kee/taur.svg",
  15697. extra: 1362/1320,
  15698. bottom: 83/1445
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(5 + 8/12, "feet"),
  15706. default: true
  15707. },
  15708. {
  15709. name: "Macro",
  15710. height: math.unit(35, "feet")
  15711. },
  15712. ]
  15713. ))
  15714. characterMakers.push(() => makeCharacter(
  15715. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15716. {
  15717. anthro: {
  15718. height: math.unit(7, "feet"),
  15719. weight: math.unit(190, "lb"),
  15720. name: "Anthro",
  15721. image: {
  15722. source: "./media/characters/cobalt-dracha/anthro.svg",
  15723. extra: 231 / 225,
  15724. bottom: 0.04
  15725. }
  15726. },
  15727. feral: {
  15728. height: math.unit(9 + 7 / 12, "feet"),
  15729. weight: math.unit(294, "lb"),
  15730. name: "Feral",
  15731. image: {
  15732. source: "./media/characters/cobalt-dracha/feral.svg",
  15733. extra: 692 / 633,
  15734. bottom: 0.05
  15735. }
  15736. },
  15737. },
  15738. [
  15739. {
  15740. name: "Normal",
  15741. height: math.unit(7, "feet"),
  15742. default: true
  15743. },
  15744. ]
  15745. ))
  15746. characterMakers.push(() => makeCharacter(
  15747. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15748. {
  15749. fallen: {
  15750. height: math.unit(11 + 8 / 12, "feet"),
  15751. weight: math.unit(485, "lb"),
  15752. name: "Java (Fallen)",
  15753. rename: true,
  15754. image: {
  15755. source: "./media/characters/java/fallen.svg",
  15756. extra: 226 / 208,
  15757. bottom: 0.005
  15758. }
  15759. },
  15760. godkin: {
  15761. height: math.unit(10 + 6 / 12, "feet"),
  15762. weight: math.unit(328, "lb"),
  15763. name: "Java (Godkin)",
  15764. rename: true,
  15765. image: {
  15766. source: "./media/characters/java/godkin.svg",
  15767. extra: 1104/1068,
  15768. bottom: 36/1140
  15769. }
  15770. },
  15771. },
  15772. [
  15773. {
  15774. name: "Normal",
  15775. height: math.unit(11 + 8 / 12, "feet"),
  15776. default: true
  15777. },
  15778. ]
  15779. ))
  15780. characterMakers.push(() => makeCharacter(
  15781. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15782. {
  15783. front: {
  15784. height: math.unit(5 + 9 / 12, "feet"),
  15785. weight: math.unit(170, "lb"),
  15786. name: "Front",
  15787. image: {
  15788. source: "./media/characters/purna/front.svg",
  15789. extra: 239 / 229,
  15790. bottom: 0.01
  15791. }
  15792. },
  15793. },
  15794. [
  15795. {
  15796. name: "Normal",
  15797. height: math.unit(5 + 9 / 12, "feet"),
  15798. default: true
  15799. },
  15800. ]
  15801. ))
  15802. characterMakers.push(() => makeCharacter(
  15803. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15804. {
  15805. front: {
  15806. height: math.unit(5 + 9 / 12, "feet"),
  15807. weight: math.unit(142, "lb"),
  15808. name: "Front",
  15809. image: {
  15810. source: "./media/characters/kuva/front.svg",
  15811. extra: 281 / 271,
  15812. bottom: 0.006
  15813. }
  15814. },
  15815. },
  15816. [
  15817. {
  15818. name: "Normal",
  15819. height: math.unit(5 + 9 / 12, "feet"),
  15820. default: true
  15821. },
  15822. ]
  15823. ))
  15824. characterMakers.push(() => makeCharacter(
  15825. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15826. {
  15827. anthro: {
  15828. height: math.unit(9 + 2 / 12, "feet"),
  15829. weight: math.unit(270, "lb"),
  15830. name: "Anthro",
  15831. image: {
  15832. source: "./media/characters/embra/anthro.svg",
  15833. extra: 200 / 187,
  15834. bottom: 0.02
  15835. }
  15836. },
  15837. feral: {
  15838. height: math.unit(18 + 8 / 12, "feet"),
  15839. weight: math.unit(576, "lb"),
  15840. name: "Feral",
  15841. image: {
  15842. source: "./media/characters/embra/feral.svg",
  15843. extra: 152 / 137,
  15844. bottom: 0.037
  15845. }
  15846. },
  15847. },
  15848. [
  15849. {
  15850. name: "Normal",
  15851. height: math.unit(9 + 2 / 12, "feet"),
  15852. default: true
  15853. },
  15854. ]
  15855. ))
  15856. characterMakers.push(() => makeCharacter(
  15857. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15858. {
  15859. anthro: {
  15860. height: math.unit(10 + 9 / 12, "feet"),
  15861. weight: math.unit(224, "lb"),
  15862. name: "Anthro",
  15863. image: {
  15864. source: "./media/characters/grottos/anthro.svg",
  15865. extra: 350 / 332,
  15866. bottom: 0.045
  15867. }
  15868. },
  15869. feral: {
  15870. height: math.unit(20 + 7 / 12, "feet"),
  15871. weight: math.unit(629, "lb"),
  15872. name: "Feral",
  15873. image: {
  15874. source: "./media/characters/grottos/feral.svg",
  15875. extra: 207 / 190,
  15876. bottom: 0.05
  15877. }
  15878. },
  15879. },
  15880. [
  15881. {
  15882. name: "Normal",
  15883. height: math.unit(10 + 9 / 12, "feet"),
  15884. default: true
  15885. },
  15886. ]
  15887. ))
  15888. characterMakers.push(() => makeCharacter(
  15889. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15890. {
  15891. anthro: {
  15892. height: math.unit(9 + 6 / 12, "feet"),
  15893. weight: math.unit(298, "lb"),
  15894. name: "Anthro",
  15895. image: {
  15896. source: "./media/characters/frifna/anthro.svg",
  15897. extra: 282 / 269,
  15898. bottom: 0.015
  15899. }
  15900. },
  15901. feral: {
  15902. height: math.unit(16 + 2 / 12, "feet"),
  15903. weight: math.unit(624, "lb"),
  15904. name: "Feral",
  15905. image: {
  15906. source: "./media/characters/frifna/feral.svg"
  15907. }
  15908. },
  15909. },
  15910. [
  15911. {
  15912. name: "Normal",
  15913. height: math.unit(9 + 6 / 12, "feet"),
  15914. default: true
  15915. },
  15916. ]
  15917. ))
  15918. characterMakers.push(() => makeCharacter(
  15919. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15920. {
  15921. front: {
  15922. height: math.unit(6 + 2 / 12, "feet"),
  15923. weight: math.unit(168, "lb"),
  15924. name: "Front",
  15925. image: {
  15926. source: "./media/characters/elise/front.svg",
  15927. extra: 276 / 271
  15928. }
  15929. },
  15930. },
  15931. [
  15932. {
  15933. name: "Normal",
  15934. height: math.unit(6 + 2 / 12, "feet"),
  15935. default: true
  15936. },
  15937. ]
  15938. ))
  15939. characterMakers.push(() => makeCharacter(
  15940. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15941. {
  15942. front: {
  15943. height: math.unit(5 + 10 / 12, "feet"),
  15944. weight: math.unit(210, "lb"),
  15945. name: "Front",
  15946. image: {
  15947. source: "./media/characters/glade/front.svg",
  15948. extra: 258 / 247,
  15949. bottom: 0.008
  15950. }
  15951. },
  15952. },
  15953. [
  15954. {
  15955. name: "Normal",
  15956. height: math.unit(5 + 10 / 12, "feet"),
  15957. default: true
  15958. },
  15959. ]
  15960. ))
  15961. characterMakers.push(() => makeCharacter(
  15962. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15963. {
  15964. front: {
  15965. height: math.unit(5 + 10 / 12, "feet"),
  15966. weight: math.unit(129, "lb"),
  15967. name: "Front",
  15968. image: {
  15969. source: "./media/characters/rina/front.svg",
  15970. extra: 266 / 255,
  15971. bottom: 0.005
  15972. }
  15973. },
  15974. },
  15975. [
  15976. {
  15977. name: "Normal",
  15978. height: math.unit(5 + 10 / 12, "feet"),
  15979. default: true
  15980. },
  15981. ]
  15982. ))
  15983. characterMakers.push(() => makeCharacter(
  15984. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15985. {
  15986. front: {
  15987. height: math.unit(6 + 1 / 12, "feet"),
  15988. weight: math.unit(192, "lb"),
  15989. name: "Front",
  15990. image: {
  15991. source: "./media/characters/veronica/front.svg",
  15992. extra: 319 / 309,
  15993. bottom: 0.005
  15994. }
  15995. },
  15996. },
  15997. [
  15998. {
  15999. name: "Normal",
  16000. height: math.unit(6 + 1 / 12, "feet"),
  16001. default: true
  16002. },
  16003. ]
  16004. ))
  16005. characterMakers.push(() => makeCharacter(
  16006. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16007. {
  16008. front: {
  16009. height: math.unit(9 + 3 / 12, "feet"),
  16010. weight: math.unit(1100, "lb"),
  16011. name: "Front",
  16012. image: {
  16013. source: "./media/characters/braxton/front.svg",
  16014. extra: 1057 / 984,
  16015. bottom: 0.05
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(9 + 3 / 12, "feet")
  16023. },
  16024. {
  16025. name: "Giant",
  16026. height: math.unit(300, "feet"),
  16027. default: true
  16028. },
  16029. {
  16030. name: "Macro",
  16031. height: math.unit(700, "feet")
  16032. },
  16033. {
  16034. name: "Megamacro",
  16035. height: math.unit(6000, "feet")
  16036. },
  16037. ]
  16038. ))
  16039. characterMakers.push(() => makeCharacter(
  16040. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16041. {
  16042. front: {
  16043. height: math.unit(6 + 7 / 12, "feet"),
  16044. weight: math.unit(150, "lb"),
  16045. name: "Front",
  16046. image: {
  16047. source: "./media/characters/blue-feyonics/front.svg",
  16048. extra: 1403 / 1306,
  16049. bottom: 0.047
  16050. }
  16051. },
  16052. },
  16053. [
  16054. {
  16055. name: "Normal",
  16056. height: math.unit(6 + 7 / 12, "feet"),
  16057. default: true
  16058. },
  16059. ]
  16060. ))
  16061. characterMakers.push(() => makeCharacter(
  16062. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16063. {
  16064. front: {
  16065. height: math.unit(1.8, "meters"),
  16066. weight: math.unit(60, "kg"),
  16067. name: "Front",
  16068. image: {
  16069. source: "./media/characters/maxwell/front.svg",
  16070. extra: 2060 / 1873
  16071. }
  16072. },
  16073. },
  16074. [
  16075. {
  16076. name: "Micro",
  16077. height: math.unit(1, "mm")
  16078. },
  16079. {
  16080. name: "Normal",
  16081. height: math.unit(1.8, "meter"),
  16082. default: true
  16083. },
  16084. {
  16085. name: "Macro",
  16086. height: math.unit(30, "meters")
  16087. },
  16088. {
  16089. name: "Megamacro",
  16090. height: math.unit(10, "km")
  16091. },
  16092. ]
  16093. ))
  16094. characterMakers.push(() => makeCharacter(
  16095. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16096. {
  16097. front: {
  16098. height: math.unit(6, "feet"),
  16099. weight: math.unit(150, "lb"),
  16100. name: "Front",
  16101. image: {
  16102. source: "./media/characters/jack/front.svg",
  16103. extra: 1754 / 1640,
  16104. bottom: 0.01
  16105. }
  16106. },
  16107. },
  16108. [
  16109. {
  16110. name: "Normal",
  16111. height: math.unit(80000, "feet"),
  16112. default: true
  16113. },
  16114. {
  16115. name: "Max size",
  16116. height: math.unit(10, "lightyears")
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16122. {
  16123. urban: {
  16124. height: math.unit(5, "feet"),
  16125. weight: math.unit(240, "lb"),
  16126. name: "Urban",
  16127. image: {
  16128. source: "./media/characters/cafat/urban.svg",
  16129. extra: 1223/1126,
  16130. bottom: 205/1428
  16131. }
  16132. },
  16133. summer: {
  16134. height: math.unit(5, "feet"),
  16135. weight: math.unit(240, "lb"),
  16136. name: "Summer",
  16137. image: {
  16138. source: "./media/characters/cafat/summer.svg",
  16139. extra: 1223/1126,
  16140. bottom: 205/1428
  16141. }
  16142. },
  16143. winter: {
  16144. height: math.unit(5, "feet"),
  16145. weight: math.unit(240, "lb"),
  16146. name: "Winter",
  16147. image: {
  16148. source: "./media/characters/cafat/winter.svg",
  16149. extra: 1223/1126,
  16150. bottom: 205/1428
  16151. }
  16152. },
  16153. lingerie: {
  16154. height: math.unit(5, "feet"),
  16155. weight: math.unit(240, "lb"),
  16156. name: "Lingerie",
  16157. image: {
  16158. source: "./media/characters/cafat/lingerie.svg",
  16159. extra: 1223/1126,
  16160. bottom: 205/1428
  16161. }
  16162. },
  16163. upright: {
  16164. height: math.unit(6.3, "feet"),
  16165. weight: math.unit(240, "lb"),
  16166. name: "Upright",
  16167. image: {
  16168. source: "./media/characters/cafat/upright.svg",
  16169. bottom: 0.01
  16170. }
  16171. },
  16172. uprightFull: {
  16173. height: math.unit(6.3, "feet"),
  16174. weight: math.unit(240, "lb"),
  16175. name: "Upright (Full)",
  16176. image: {
  16177. source: "./media/characters/cafat/upright-full.svg",
  16178. bottom: 0.01
  16179. }
  16180. },
  16181. },
  16182. [
  16183. {
  16184. name: "Small",
  16185. height: math.unit(5, "feet"),
  16186. default: true
  16187. },
  16188. {
  16189. name: "Large",
  16190. height: math.unit(13, "feet")
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(6, "feet"),
  16199. weight: math.unit(150, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/verin-raharra/front.svg",
  16203. extra: 5019 / 4835,
  16204. bottom: 0.023
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Normal",
  16211. height: math.unit(7 + 5 / 12, "feet"),
  16212. default: true
  16213. },
  16214. {
  16215. name: "Upsized",
  16216. height: math.unit(20, "feet")
  16217. },
  16218. ]
  16219. ))
  16220. characterMakers.push(() => makeCharacter(
  16221. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16222. {
  16223. front: {
  16224. height: math.unit(7, "feet"),
  16225. weight: math.unit(230, "lb"),
  16226. name: "Front",
  16227. image: {
  16228. source: "./media/characters/nakata/front.svg",
  16229. extra: 1.005,
  16230. bottom: 0.01
  16231. }
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "Normal",
  16237. height: math.unit(7, "feet"),
  16238. default: true
  16239. },
  16240. {
  16241. name: "Big",
  16242. height: math.unit(14, "feet")
  16243. },
  16244. {
  16245. name: "Macro",
  16246. height: math.unit(400, "feet")
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(4.91, "feet"),
  16255. weight: math.unit(100, "lb"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/lily/front.svg",
  16259. extra: 1585 / 1415,
  16260. bottom: 0.02
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(4.91, "feet"),
  16268. default: true
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16274. {
  16275. laying: {
  16276. height: math.unit(4 + 4 / 12, "feet"),
  16277. weight: math.unit(600, "lb"),
  16278. name: "Laying",
  16279. image: {
  16280. source: "./media/characters/sheila/laying.svg",
  16281. extra: 1333 / 1265,
  16282. bottom: 0.16
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(4 + 4 / 12, "feet"),
  16290. default: true
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(6, "feet"),
  16299. weight: math.unit(190, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/sax/front.svg",
  16303. extra: 1187 / 973,
  16304. bottom: 0.042
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Micro",
  16311. height: math.unit(4, "inches"),
  16312. default: true
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16318. {
  16319. front: {
  16320. height: math.unit(6, "feet"),
  16321. weight: math.unit(150, "lb"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/pandora/front.svg",
  16325. extra: 2720 / 2556,
  16326. bottom: 0.015
  16327. }
  16328. },
  16329. back: {
  16330. height: math.unit(6, "feet"),
  16331. weight: math.unit(150, "lb"),
  16332. name: "Back",
  16333. image: {
  16334. source: "./media/characters/pandora/back.svg",
  16335. extra: 2720 / 2556,
  16336. bottom: 0.01
  16337. }
  16338. },
  16339. beans: {
  16340. height: math.unit(6 / 8, "feet"),
  16341. name: "Beans",
  16342. image: {
  16343. source: "./media/characters/pandora/beans.svg"
  16344. }
  16345. },
  16346. collar: {
  16347. height: math.unit(0.31, "feet"),
  16348. name: "Collar",
  16349. image: {
  16350. source: "./media/characters/pandora/collar.svg"
  16351. }
  16352. },
  16353. skirt: {
  16354. height: math.unit(6, "feet"),
  16355. weight: math.unit(150, "lb"),
  16356. name: "Skirt",
  16357. image: {
  16358. source: "./media/characters/pandora/skirt.svg",
  16359. extra: 1622 / 1525,
  16360. bottom: 0.015
  16361. }
  16362. },
  16363. hoodie: {
  16364. height: math.unit(6, "feet"),
  16365. weight: math.unit(150, "lb"),
  16366. name: "Hoodie",
  16367. image: {
  16368. source: "./media/characters/pandora/hoodie.svg",
  16369. extra: 1622 / 1525,
  16370. bottom: 0.015
  16371. }
  16372. },
  16373. casual: {
  16374. height: math.unit(6, "feet"),
  16375. weight: math.unit(150, "lb"),
  16376. name: "Casual",
  16377. image: {
  16378. source: "./media/characters/pandora/casual.svg",
  16379. extra: 1622 / 1525,
  16380. bottom: 0.015
  16381. }
  16382. },
  16383. },
  16384. [
  16385. {
  16386. name: "Normal",
  16387. height: math.unit(6, "feet")
  16388. },
  16389. {
  16390. name: "Big Steppy",
  16391. height: math.unit(1, "km"),
  16392. default: true
  16393. },
  16394. {
  16395. name: "Galactic Steppy",
  16396. height: math.unit(2, "gigameters")
  16397. },
  16398. ]
  16399. ))
  16400. characterMakers.push(() => makeCharacter(
  16401. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16402. {
  16403. side: {
  16404. height: math.unit(10, "feet"),
  16405. weight: math.unit(800, "kg"),
  16406. name: "Side",
  16407. image: {
  16408. source: "./media/characters/venio-darcony/side.svg",
  16409. extra: 1373 / 1003,
  16410. bottom: 0.037
  16411. }
  16412. },
  16413. front: {
  16414. height: math.unit(19, "feet"),
  16415. weight: math.unit(800, "kg"),
  16416. name: "Front",
  16417. image: {
  16418. source: "./media/characters/venio-darcony/front.svg"
  16419. }
  16420. },
  16421. back: {
  16422. height: math.unit(19, "feet"),
  16423. weight: math.unit(800, "kg"),
  16424. name: "Back",
  16425. image: {
  16426. source: "./media/characters/venio-darcony/back.svg"
  16427. }
  16428. },
  16429. sideNsfw: {
  16430. height: math.unit(10, "feet"),
  16431. weight: math.unit(800, "kg"),
  16432. name: "Side (NSFW)",
  16433. image: {
  16434. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16435. extra: 1373 / 1003,
  16436. bottom: 0.037
  16437. }
  16438. },
  16439. frontNsfw: {
  16440. height: math.unit(19, "feet"),
  16441. weight: math.unit(800, "kg"),
  16442. name: "Front (NSFW)",
  16443. image: {
  16444. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16445. }
  16446. },
  16447. backNsfw: {
  16448. height: math.unit(19, "feet"),
  16449. weight: math.unit(800, "kg"),
  16450. name: "Back (NSFW)",
  16451. image: {
  16452. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16453. }
  16454. },
  16455. sideArmored: {
  16456. height: math.unit(10, "feet"),
  16457. weight: math.unit(800, "kg"),
  16458. name: "Side (Armored)",
  16459. image: {
  16460. source: "./media/characters/venio-darcony/side-armored.svg",
  16461. extra: 1373 / 1003,
  16462. bottom: 0.037
  16463. }
  16464. },
  16465. frontArmored: {
  16466. height: math.unit(19, "feet"),
  16467. weight: math.unit(900, "kg"),
  16468. name: "Front (Armored)",
  16469. image: {
  16470. source: "./media/characters/venio-darcony/front-armored.svg"
  16471. }
  16472. },
  16473. backArmored: {
  16474. height: math.unit(19, "feet"),
  16475. weight: math.unit(900, "kg"),
  16476. name: "Back (Armored)",
  16477. image: {
  16478. source: "./media/characters/venio-darcony/back-armored.svg"
  16479. }
  16480. },
  16481. sword: {
  16482. height: math.unit(10, "feet"),
  16483. weight: math.unit(50, "lb"),
  16484. name: "Sword",
  16485. image: {
  16486. source: "./media/characters/venio-darcony/sword.svg"
  16487. }
  16488. },
  16489. },
  16490. [
  16491. {
  16492. name: "Normal",
  16493. height: math.unit(10, "feet")
  16494. },
  16495. {
  16496. name: "Macro",
  16497. height: math.unit(130, "feet"),
  16498. default: true
  16499. },
  16500. {
  16501. name: "Macro+",
  16502. height: math.unit(240, "feet")
  16503. },
  16504. ]
  16505. ))
  16506. characterMakers.push(() => makeCharacter(
  16507. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16508. {
  16509. front: {
  16510. height: math.unit(6, "feet"),
  16511. weight: math.unit(150, "lb"),
  16512. name: "Front",
  16513. image: {
  16514. source: "./media/characters/veski/front.svg",
  16515. extra: 1299 / 1225,
  16516. bottom: 0.04
  16517. }
  16518. },
  16519. back: {
  16520. height: math.unit(6, "feet"),
  16521. weight: math.unit(150, "lb"),
  16522. name: "Back",
  16523. image: {
  16524. source: "./media/characters/veski/back.svg",
  16525. extra: 1299 / 1225,
  16526. bottom: 0.008
  16527. }
  16528. },
  16529. maw: {
  16530. height: math.unit(1.5 * 1.21, "feet"),
  16531. name: "Maw",
  16532. image: {
  16533. source: "./media/characters/veski/maw.svg"
  16534. }
  16535. },
  16536. },
  16537. [
  16538. {
  16539. name: "Macro",
  16540. height: math.unit(2, "km"),
  16541. default: true
  16542. },
  16543. ]
  16544. ))
  16545. characterMakers.push(() => makeCharacter(
  16546. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16547. {
  16548. front: {
  16549. height: math.unit(5 + 7 / 12, "feet"),
  16550. name: "Front",
  16551. image: {
  16552. source: "./media/characters/isabelle/front.svg",
  16553. extra: 2130 / 1976,
  16554. bottom: 0.05
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Supermicro",
  16561. height: math.unit(10, "micrometers")
  16562. },
  16563. {
  16564. name: "Micro",
  16565. height: math.unit(1, "inch")
  16566. },
  16567. {
  16568. name: "Tiny",
  16569. height: math.unit(5, "inches")
  16570. },
  16571. {
  16572. name: "Standard",
  16573. height: math.unit(5 + 7 / 12, "inches")
  16574. },
  16575. {
  16576. name: "Macro",
  16577. height: math.unit(80, "meters"),
  16578. default: true
  16579. },
  16580. {
  16581. name: "Megamacro",
  16582. height: math.unit(250, "meters")
  16583. },
  16584. {
  16585. name: "Gigamacro",
  16586. height: math.unit(5, "km")
  16587. },
  16588. {
  16589. name: "Cosmic",
  16590. height: math.unit(2.5e6, "miles")
  16591. },
  16592. ]
  16593. ))
  16594. characterMakers.push(() => makeCharacter(
  16595. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16596. {
  16597. front: {
  16598. height: math.unit(6, "feet"),
  16599. weight: math.unit(150, "lb"),
  16600. name: "Front",
  16601. image: {
  16602. source: "./media/characters/hanzo/front.svg",
  16603. extra: 374 / 344,
  16604. bottom: 0.02
  16605. }
  16606. },
  16607. },
  16608. [
  16609. {
  16610. name: "Normal",
  16611. height: math.unit(8, "feet"),
  16612. default: true
  16613. },
  16614. ]
  16615. ))
  16616. characterMakers.push(() => makeCharacter(
  16617. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16618. {
  16619. front: {
  16620. height: math.unit(7, "feet"),
  16621. weight: math.unit(130, "lb"),
  16622. name: "Front",
  16623. image: {
  16624. source: "./media/characters/anna/front.svg",
  16625. extra: 169 / 145,
  16626. bottom: 0.06
  16627. }
  16628. },
  16629. full: {
  16630. height: math.unit(4.96, "feet"),
  16631. weight: math.unit(220, "lb"),
  16632. name: "Full",
  16633. image: {
  16634. source: "./media/characters/anna/full.svg",
  16635. extra: 138 / 114,
  16636. bottom: 0.15
  16637. }
  16638. },
  16639. tongue: {
  16640. height: math.unit(2.53, "feet"),
  16641. name: "Tongue",
  16642. image: {
  16643. source: "./media/characters/anna/tongue.svg"
  16644. }
  16645. },
  16646. },
  16647. [
  16648. {
  16649. name: "Normal",
  16650. height: math.unit(7, "feet"),
  16651. default: true
  16652. },
  16653. ]
  16654. ))
  16655. characterMakers.push(() => makeCharacter(
  16656. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16657. {
  16658. front: {
  16659. height: math.unit(7, "feet"),
  16660. weight: math.unit(150, "lb"),
  16661. name: "Front",
  16662. image: {
  16663. source: "./media/characters/ian-corvid/front.svg",
  16664. extra: 150 / 142,
  16665. bottom: 0.02
  16666. }
  16667. },
  16668. back: {
  16669. height: math.unit(7, "feet"),
  16670. weight: math.unit(150, "lb"),
  16671. name: "Back",
  16672. image: {
  16673. source: "./media/characters/ian-corvid/back.svg",
  16674. extra: 150 / 143,
  16675. bottom: 0.01
  16676. }
  16677. },
  16678. stomping: {
  16679. height: math.unit(7, "feet"),
  16680. weight: math.unit(150, "lb"),
  16681. name: "Stomping",
  16682. image: {
  16683. source: "./media/characters/ian-corvid/stomping.svg",
  16684. extra: 76 / 72
  16685. }
  16686. },
  16687. sitting: {
  16688. height: math.unit(7 / 1.8, "feet"),
  16689. weight: math.unit(150, "lb"),
  16690. name: "Sitting",
  16691. image: {
  16692. source: "./media/characters/ian-corvid/sitting.svg",
  16693. extra: 1400 / 1269,
  16694. bottom: 0.15
  16695. }
  16696. },
  16697. },
  16698. [
  16699. {
  16700. name: "Tiny Microw",
  16701. height: math.unit(1, "inch")
  16702. },
  16703. {
  16704. name: "Microw",
  16705. height: math.unit(6, "inches")
  16706. },
  16707. {
  16708. name: "Crow",
  16709. height: math.unit(7 + 1 / 12, "feet"),
  16710. default: true
  16711. },
  16712. {
  16713. name: "Macrow",
  16714. height: math.unit(176, "feet")
  16715. },
  16716. ]
  16717. ))
  16718. characterMakers.push(() => makeCharacter(
  16719. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16720. {
  16721. front: {
  16722. height: math.unit(5 + 7 / 12, "feet"),
  16723. weight: math.unit(147, "lb"),
  16724. name: "Front",
  16725. image: {
  16726. source: "./media/characters/natalie-kellon/front.svg",
  16727. extra: 1214 / 1141,
  16728. bottom: 0.02
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Micro",
  16735. height: math.unit(1 / 16, "inch")
  16736. },
  16737. {
  16738. name: "Tiny",
  16739. height: math.unit(4, "inches")
  16740. },
  16741. {
  16742. name: "Normal",
  16743. height: math.unit(5 + 7 / 12, "feet"),
  16744. default: true
  16745. },
  16746. {
  16747. name: "Amazon",
  16748. height: math.unit(12, "feet")
  16749. },
  16750. {
  16751. name: "Giantess",
  16752. height: math.unit(160, "meters")
  16753. },
  16754. {
  16755. name: "Titaness",
  16756. height: math.unit(800, "meters")
  16757. },
  16758. ]
  16759. ))
  16760. characterMakers.push(() => makeCharacter(
  16761. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16762. {
  16763. front: {
  16764. height: math.unit(6, "feet"),
  16765. weight: math.unit(150, "lb"),
  16766. name: "Front",
  16767. image: {
  16768. source: "./media/characters/alluria/front.svg",
  16769. extra: 806 / 738,
  16770. bottom: 0.01
  16771. }
  16772. },
  16773. side: {
  16774. height: math.unit(6, "feet"),
  16775. weight: math.unit(150, "lb"),
  16776. name: "Side",
  16777. image: {
  16778. source: "./media/characters/alluria/side.svg",
  16779. extra: 800 / 750,
  16780. }
  16781. },
  16782. back: {
  16783. height: math.unit(6, "feet"),
  16784. weight: math.unit(150, "lb"),
  16785. name: "Back",
  16786. image: {
  16787. source: "./media/characters/alluria/back.svg",
  16788. extra: 806 / 738,
  16789. }
  16790. },
  16791. frontMaid: {
  16792. height: math.unit(6, "feet"),
  16793. weight: math.unit(150, "lb"),
  16794. name: "Front (Maid)",
  16795. image: {
  16796. source: "./media/characters/alluria/front-maid.svg",
  16797. extra: 806 / 738,
  16798. bottom: 0.01
  16799. }
  16800. },
  16801. sideMaid: {
  16802. height: math.unit(6, "feet"),
  16803. weight: math.unit(150, "lb"),
  16804. name: "Side (Maid)",
  16805. image: {
  16806. source: "./media/characters/alluria/side-maid.svg",
  16807. extra: 800 / 750,
  16808. bottom: 0.005
  16809. }
  16810. },
  16811. backMaid: {
  16812. height: math.unit(6, "feet"),
  16813. weight: math.unit(150, "lb"),
  16814. name: "Back (Maid)",
  16815. image: {
  16816. source: "./media/characters/alluria/back-maid.svg",
  16817. extra: 806 / 738,
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Micro",
  16824. height: math.unit(6, "inches"),
  16825. default: true
  16826. },
  16827. ]
  16828. ))
  16829. characterMakers.push(() => makeCharacter(
  16830. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16831. {
  16832. front: {
  16833. height: math.unit(6, "feet"),
  16834. weight: math.unit(150, "lb"),
  16835. name: "Front",
  16836. image: {
  16837. source: "./media/characters/kyle/front.svg",
  16838. extra: 1069 / 962,
  16839. bottom: 77.228 / 1727.45
  16840. }
  16841. },
  16842. },
  16843. [
  16844. {
  16845. name: "Macro",
  16846. height: math.unit(150, "feet"),
  16847. default: true
  16848. },
  16849. ]
  16850. ))
  16851. characterMakers.push(() => makeCharacter(
  16852. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16853. {
  16854. front: {
  16855. height: math.unit(6, "feet"),
  16856. weight: math.unit(300, "lb"),
  16857. name: "Front",
  16858. image: {
  16859. source: "./media/characters/duncan/front.svg",
  16860. extra: 1650 / 1482,
  16861. bottom: 0.05
  16862. }
  16863. },
  16864. },
  16865. [
  16866. {
  16867. name: "Macro",
  16868. height: math.unit(100, "feet"),
  16869. default: true
  16870. },
  16871. ]
  16872. ))
  16873. characterMakers.push(() => makeCharacter(
  16874. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16875. {
  16876. front: {
  16877. height: math.unit(5 + 4 / 12, "feet"),
  16878. weight: math.unit(220, "lb"),
  16879. name: "Front",
  16880. image: {
  16881. source: "./media/characters/memory/front.svg",
  16882. extra: 3641 / 3545,
  16883. bottom: 0.03
  16884. }
  16885. },
  16886. back: {
  16887. height: math.unit(5 + 4 / 12, "feet"),
  16888. weight: math.unit(220, "lb"),
  16889. name: "Back",
  16890. image: {
  16891. source: "./media/characters/memory/back.svg",
  16892. extra: 3641 / 3545,
  16893. bottom: 0.025
  16894. }
  16895. },
  16896. frontSkirt: {
  16897. height: math.unit(5 + 4 / 12, "feet"),
  16898. weight: math.unit(220, "lb"),
  16899. name: "Front (Skirt)",
  16900. image: {
  16901. source: "./media/characters/memory/front-skirt.svg",
  16902. extra: 3641 / 3545,
  16903. bottom: 0.03
  16904. }
  16905. },
  16906. frontDress: {
  16907. height: math.unit(5 + 4 / 12, "feet"),
  16908. weight: math.unit(220, "lb"),
  16909. name: "Front (Dress)",
  16910. image: {
  16911. source: "./media/characters/memory/front-dress.svg",
  16912. extra: 3641 / 3545,
  16913. bottom: 0.03
  16914. }
  16915. },
  16916. },
  16917. [
  16918. {
  16919. name: "Micro",
  16920. height: math.unit(6, "inches"),
  16921. default: true
  16922. },
  16923. {
  16924. name: "Normal",
  16925. height: math.unit(5 + 4 / 12, "feet")
  16926. },
  16927. ]
  16928. ))
  16929. characterMakers.push(() => makeCharacter(
  16930. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16931. {
  16932. front: {
  16933. height: math.unit(4 + 11 / 12, "feet"),
  16934. weight: math.unit(100, "lb"),
  16935. name: "Front",
  16936. image: {
  16937. source: "./media/characters/luno/front.svg",
  16938. extra: 1535 / 1487,
  16939. bottom: 0.03
  16940. }
  16941. },
  16942. },
  16943. [
  16944. {
  16945. name: "Micro",
  16946. height: math.unit(3, "inches")
  16947. },
  16948. {
  16949. name: "Normal",
  16950. height: math.unit(4 + 11 / 12, "feet"),
  16951. default: true
  16952. },
  16953. {
  16954. name: "Macro",
  16955. height: math.unit(300, "feet")
  16956. },
  16957. {
  16958. name: "Megamacro",
  16959. height: math.unit(700, "miles")
  16960. },
  16961. ]
  16962. ))
  16963. characterMakers.push(() => makeCharacter(
  16964. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16965. {
  16966. front: {
  16967. height: math.unit(6 + 2 / 12, "feet"),
  16968. weight: math.unit(170, "lb"),
  16969. name: "Front",
  16970. image: {
  16971. source: "./media/characters/jamesy/front.svg",
  16972. extra: 440 / 382,
  16973. bottom: 0.005
  16974. }
  16975. },
  16976. },
  16977. [
  16978. {
  16979. name: "Micro",
  16980. height: math.unit(3, "inches")
  16981. },
  16982. {
  16983. name: "Normal",
  16984. height: math.unit(6 + 2 / 12, "feet"),
  16985. default: true
  16986. },
  16987. {
  16988. name: "Macro",
  16989. height: math.unit(300, "feet")
  16990. },
  16991. {
  16992. name: "Megamacro",
  16993. height: math.unit(700, "miles")
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16999. {
  17000. front: {
  17001. height: math.unit(6, "feet"),
  17002. weight: math.unit(160, "lb"),
  17003. name: "Front",
  17004. image: {
  17005. source: "./media/characters/mark/front.svg",
  17006. extra: 3300 / 3100,
  17007. bottom: 136.42 / 3440.47
  17008. }
  17009. },
  17010. },
  17011. [
  17012. {
  17013. name: "Macro",
  17014. height: math.unit(120, "meters")
  17015. },
  17016. {
  17017. name: "Bigger Macro",
  17018. height: math.unit(350, "meters")
  17019. },
  17020. {
  17021. name: "Megamacro",
  17022. height: math.unit(8, "km"),
  17023. default: true
  17024. },
  17025. {
  17026. name: "Continental",
  17027. height: math.unit(4550, "km")
  17028. },
  17029. {
  17030. name: "Planetary",
  17031. height: math.unit(65000, "km")
  17032. },
  17033. ]
  17034. ))
  17035. characterMakers.push(() => makeCharacter(
  17036. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17037. {
  17038. front: {
  17039. height: math.unit(6, "feet"),
  17040. weight: math.unit(400, "lb"),
  17041. name: "Front",
  17042. image: {
  17043. source: "./media/characters/mac/front.svg",
  17044. extra: 1048 / 987.7,
  17045. bottom: 60 / 1107.6,
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Macro",
  17052. height: math.unit(500, "feet"),
  17053. default: true
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17059. {
  17060. front: {
  17061. height: math.unit(5 + 2 / 12, "feet"),
  17062. weight: math.unit(190, "lb"),
  17063. name: "Front",
  17064. image: {
  17065. source: "./media/characters/bari/front.svg",
  17066. extra: 3156 / 2880,
  17067. bottom: 0.03
  17068. }
  17069. },
  17070. back: {
  17071. height: math.unit(5 + 2 / 12, "feet"),
  17072. weight: math.unit(190, "lb"),
  17073. name: "Back",
  17074. image: {
  17075. source: "./media/characters/bari/back.svg",
  17076. extra: 3260 / 2834,
  17077. bottom: 0.025
  17078. }
  17079. },
  17080. frontPlush: {
  17081. height: math.unit(5 + 2 / 12, "feet"),
  17082. weight: math.unit(190, "lb"),
  17083. name: "Front (Plush)",
  17084. image: {
  17085. source: "./media/characters/bari/front-plush.svg",
  17086. extra: 1112 / 1061,
  17087. bottom: 0.002
  17088. }
  17089. },
  17090. },
  17091. [
  17092. {
  17093. name: "Micro",
  17094. height: math.unit(3, "inches")
  17095. },
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(5 + 2 / 12, "feet"),
  17099. default: true
  17100. },
  17101. {
  17102. name: "Macro",
  17103. height: math.unit(20, "feet")
  17104. },
  17105. ]
  17106. ))
  17107. characterMakers.push(() => makeCharacter(
  17108. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17109. {
  17110. front: {
  17111. height: math.unit(6 + 1 / 12, "feet"),
  17112. weight: math.unit(275, "lb"),
  17113. name: "Front",
  17114. image: {
  17115. source: "./media/characters/hunter-misha-raven/front.svg"
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Mortal",
  17122. height: math.unit(6 + 1 / 12, "feet")
  17123. },
  17124. {
  17125. name: "Divine",
  17126. height: math.unit(1.12134e34, "parsecs"),
  17127. default: true
  17128. },
  17129. ]
  17130. ))
  17131. characterMakers.push(() => makeCharacter(
  17132. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17133. {
  17134. front: {
  17135. height: math.unit(6 + 3 / 12, "feet"),
  17136. weight: math.unit(220, "lb"),
  17137. name: "Front",
  17138. image: {
  17139. source: "./media/characters/max-calore/front.svg",
  17140. extra: 1700 / 1648,
  17141. bottom: 0.01
  17142. }
  17143. },
  17144. back: {
  17145. height: math.unit(6 + 3 / 12, "feet"),
  17146. weight: math.unit(220, "lb"),
  17147. name: "Back",
  17148. image: {
  17149. source: "./media/characters/max-calore/back.svg",
  17150. extra: 1700 / 1648,
  17151. bottom: 0.01
  17152. }
  17153. },
  17154. },
  17155. [
  17156. {
  17157. name: "Normal",
  17158. height: math.unit(6 + 3 / 12, "feet"),
  17159. default: true
  17160. },
  17161. ]
  17162. ))
  17163. characterMakers.push(() => makeCharacter(
  17164. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17165. {
  17166. side: {
  17167. height: math.unit(2 + 8 / 12, "feet"),
  17168. weight: math.unit(99, "lb"),
  17169. name: "Side",
  17170. image: {
  17171. source: "./media/characters/aspen/side.svg",
  17172. extra: 152 / 138,
  17173. bottom: 0.032
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Normal",
  17180. height: math.unit(2 + 8 / 12, "feet"),
  17181. default: true
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17187. {
  17188. side: {
  17189. height: math.unit(3 + 2 / 12, "feet"),
  17190. weight: math.unit(224, "lb"),
  17191. name: "Side",
  17192. image: {
  17193. source: "./media/characters/sheila-feral-wolf/side.svg",
  17194. extra: 179 / 166,
  17195. bottom: 0.03
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Normal",
  17202. height: math.unit(3 + 2 / 12, "feet"),
  17203. default: true
  17204. },
  17205. ]
  17206. ))
  17207. characterMakers.push(() => makeCharacter(
  17208. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17209. {
  17210. side: {
  17211. height: math.unit(1 + 9 / 12, "feet"),
  17212. weight: math.unit(38, "lb"),
  17213. name: "Side",
  17214. image: {
  17215. source: "./media/characters/michelle/side.svg",
  17216. extra: 147 / 136.7,
  17217. bottom: 0.03
  17218. }
  17219. },
  17220. },
  17221. [
  17222. {
  17223. name: "Normal",
  17224. height: math.unit(1 + 9 / 12, "feet"),
  17225. default: true
  17226. },
  17227. ]
  17228. ))
  17229. characterMakers.push(() => makeCharacter(
  17230. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17231. {
  17232. front: {
  17233. height: math.unit(1.54, "feet"),
  17234. weight: math.unit(50, "lb"),
  17235. name: "Front",
  17236. image: {
  17237. source: "./media/characters/nino/front.svg"
  17238. }
  17239. },
  17240. },
  17241. [
  17242. {
  17243. name: "Normal",
  17244. height: math.unit(1.54, "feet"),
  17245. default: true
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17251. {
  17252. front: {
  17253. height: math.unit(1, "feet"),
  17254. weight: math.unit(16, "lb"),
  17255. name: "Front",
  17256. image: {
  17257. source: "./media/characters/viola/front.svg"
  17258. }
  17259. },
  17260. },
  17261. [
  17262. {
  17263. name: "Normal",
  17264. height: math.unit(1, "feet"),
  17265. default: true
  17266. },
  17267. ]
  17268. ))
  17269. characterMakers.push(() => makeCharacter(
  17270. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17271. {
  17272. front: {
  17273. height: math.unit(6 + 5 / 12, "feet"),
  17274. weight: math.unit(580, "lb"),
  17275. name: "Front",
  17276. image: {
  17277. source: "./media/characters/atlas/front.svg",
  17278. extra: 298.5 / 290,
  17279. bottom: 0.015
  17280. }
  17281. },
  17282. },
  17283. [
  17284. {
  17285. name: "Normal",
  17286. height: math.unit(6 + 5 / 12, "feet"),
  17287. default: true
  17288. },
  17289. ]
  17290. ))
  17291. characterMakers.push(() => makeCharacter(
  17292. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17293. {
  17294. side: {
  17295. height: math.unit(1 + 10 / 12, "feet"),
  17296. weight: math.unit(25, "lb"),
  17297. name: "Side",
  17298. image: {
  17299. source: "./media/characters/davy/side.svg",
  17300. extra: 200 / 170,
  17301. bottom: 0.01
  17302. }
  17303. },
  17304. },
  17305. [
  17306. {
  17307. name: "Normal",
  17308. height: math.unit(1 + 10 / 12, "feet"),
  17309. default: true
  17310. },
  17311. ]
  17312. ))
  17313. characterMakers.push(() => makeCharacter(
  17314. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17315. {
  17316. side: {
  17317. height: math.unit(4 + 8 / 12, "feet"),
  17318. weight: math.unit(166, "lb"),
  17319. name: "Side",
  17320. image: {
  17321. source: "./media/characters/fiona/side.svg",
  17322. extra: 232 / 220,
  17323. bottom: 0.03
  17324. }
  17325. },
  17326. },
  17327. [
  17328. {
  17329. name: "Normal",
  17330. height: math.unit(4 + 8 / 12, "feet"),
  17331. default: true
  17332. },
  17333. ]
  17334. ))
  17335. characterMakers.push(() => makeCharacter(
  17336. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17337. {
  17338. front: {
  17339. height: math.unit(3, "feet"),
  17340. weight: math.unit(100, "lb"),
  17341. name: "Front",
  17342. image: {
  17343. source: "./media/characters/lyla/front.svg",
  17344. bottom: 0.1
  17345. }
  17346. },
  17347. },
  17348. [
  17349. {
  17350. name: "Normal",
  17351. height: math.unit(3, "feet"),
  17352. default: true
  17353. },
  17354. ]
  17355. ))
  17356. characterMakers.push(() => makeCharacter(
  17357. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17358. {
  17359. side: {
  17360. height: math.unit(1.8, "feet"),
  17361. weight: math.unit(44, "lb"),
  17362. name: "Side",
  17363. image: {
  17364. source: "./media/characters/perseus/side.svg",
  17365. bottom: 0.21
  17366. }
  17367. },
  17368. },
  17369. [
  17370. {
  17371. name: "Normal",
  17372. height: math.unit(1.8, "feet"),
  17373. default: true
  17374. },
  17375. ]
  17376. ))
  17377. characterMakers.push(() => makeCharacter(
  17378. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17379. {
  17380. side: {
  17381. height: math.unit(4 + 2 / 12, "feet"),
  17382. weight: math.unit(20, "lb"),
  17383. name: "Side",
  17384. image: {
  17385. source: "./media/characters/remus/side.svg"
  17386. }
  17387. },
  17388. },
  17389. [
  17390. {
  17391. name: "Normal",
  17392. height: math.unit(4 + 2 / 12, "feet"),
  17393. default: true
  17394. },
  17395. ]
  17396. ))
  17397. characterMakers.push(() => makeCharacter(
  17398. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17399. {
  17400. front: {
  17401. height: math.unit(4 + 11 / 12, "feet"),
  17402. weight: math.unit(114, "lb"),
  17403. name: "Front",
  17404. image: {
  17405. source: "./media/characters/raf/front.svg",
  17406. extra: 1504/1339,
  17407. bottom: 26/1530
  17408. }
  17409. },
  17410. side: {
  17411. height: math.unit(4 + 11 / 12, "feet"),
  17412. weight: math.unit(114, "lb"),
  17413. name: "Side",
  17414. image: {
  17415. source: "./media/characters/raf/side.svg",
  17416. extra: 1466/1316,
  17417. bottom: 29/1495
  17418. }
  17419. },
  17420. },
  17421. [
  17422. {
  17423. name: "Micro",
  17424. height: math.unit(2, "inches")
  17425. },
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(4 + 11 / 12, "feet"),
  17429. default: true
  17430. },
  17431. {
  17432. name: "Macro",
  17433. height: math.unit(70, "feet")
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17439. {
  17440. front: {
  17441. height: math.unit(1.5, "meters"),
  17442. weight: math.unit(68, "kg"),
  17443. name: "Front",
  17444. image: {
  17445. source: "./media/characters/liam-einarr/front.svg",
  17446. extra: 2822 / 2666
  17447. }
  17448. },
  17449. back: {
  17450. height: math.unit(1.5, "meters"),
  17451. weight: math.unit(68, "kg"),
  17452. name: "Back",
  17453. image: {
  17454. source: "./media/characters/liam-einarr/back.svg",
  17455. extra: 2822 / 2666,
  17456. bottom: 0.015
  17457. }
  17458. },
  17459. },
  17460. [
  17461. {
  17462. name: "Normal",
  17463. height: math.unit(1.5, "meters"),
  17464. default: true
  17465. },
  17466. {
  17467. name: "Macro",
  17468. height: math.unit(150, "meters")
  17469. },
  17470. {
  17471. name: "Megamacro",
  17472. height: math.unit(35, "km")
  17473. },
  17474. ]
  17475. ))
  17476. characterMakers.push(() => makeCharacter(
  17477. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17478. {
  17479. front: {
  17480. height: math.unit(6, "feet"),
  17481. weight: math.unit(75, "kg"),
  17482. name: "Front",
  17483. image: {
  17484. source: "./media/characters/linda/front.svg",
  17485. extra: 930 / 874,
  17486. bottom: 0.004
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Normal",
  17493. height: math.unit(6, "feet"),
  17494. default: true
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17500. {
  17501. front: {
  17502. height: math.unit(6 + 8 / 12, "feet"),
  17503. weight: math.unit(220, "lb"),
  17504. name: "Front",
  17505. image: {
  17506. source: "./media/characters/caylex/front.svg",
  17507. extra: 821 / 772,
  17508. bottom: 0.07
  17509. }
  17510. },
  17511. back: {
  17512. height: math.unit(6 + 8 / 12, "feet"),
  17513. weight: math.unit(220, "lb"),
  17514. name: "Back",
  17515. image: {
  17516. source: "./media/characters/caylex/back.svg",
  17517. extra: 821 / 772,
  17518. bottom: 0.022
  17519. }
  17520. },
  17521. hand: {
  17522. height: math.unit(1.25, "feet"),
  17523. name: "Hand",
  17524. image: {
  17525. source: "./media/characters/caylex/hand.svg"
  17526. }
  17527. },
  17528. foot: {
  17529. height: math.unit(1.6, "feet"),
  17530. name: "Foot",
  17531. image: {
  17532. source: "./media/characters/caylex/foot.svg"
  17533. }
  17534. },
  17535. armored: {
  17536. height: math.unit(6 + 8 / 12, "feet"),
  17537. weight: math.unit(250, "lb"),
  17538. name: "Armored",
  17539. image: {
  17540. source: "./media/characters/caylex/armored.svg",
  17541. extra: 1420 / 1310,
  17542. bottom: 0.045
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Normal",
  17549. height: math.unit(6 + 8 / 12, "feet"),
  17550. default: true
  17551. },
  17552. {
  17553. name: "Normal+",
  17554. height: math.unit(12, "feet")
  17555. },
  17556. ]
  17557. ))
  17558. characterMakers.push(() => makeCharacter(
  17559. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17560. {
  17561. front: {
  17562. height: math.unit(7 + 6 / 12, "feet"),
  17563. weight: math.unit(288, "lb"),
  17564. name: "Front",
  17565. image: {
  17566. source: "./media/characters/alana/front.svg",
  17567. extra: 679 / 653,
  17568. bottom: 22.5 / 701
  17569. }
  17570. },
  17571. },
  17572. [
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(7 + 6 / 12, "feet")
  17576. },
  17577. {
  17578. name: "Large",
  17579. height: math.unit(50, "feet")
  17580. },
  17581. {
  17582. name: "Macro",
  17583. height: math.unit(100, "feet"),
  17584. default: true
  17585. },
  17586. {
  17587. name: "Macro+",
  17588. height: math.unit(200, "feet")
  17589. },
  17590. ]
  17591. ))
  17592. characterMakers.push(() => makeCharacter(
  17593. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17594. {
  17595. front: {
  17596. height: math.unit(6 + 1 / 12, "feet"),
  17597. weight: math.unit(210, "lb"),
  17598. name: "Front",
  17599. image: {
  17600. source: "./media/characters/hasani/front.svg",
  17601. extra: 244 / 232,
  17602. bottom: 0.01
  17603. }
  17604. },
  17605. back: {
  17606. height: math.unit(6 + 1 / 12, "feet"),
  17607. weight: math.unit(210, "lb"),
  17608. name: "Back",
  17609. image: {
  17610. source: "./media/characters/hasani/back.svg",
  17611. extra: 244 / 232,
  17612. bottom: 0.01
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(6 + 1 / 12, "feet")
  17620. },
  17621. {
  17622. name: "Macro",
  17623. height: math.unit(175, "feet"),
  17624. default: true
  17625. },
  17626. ]
  17627. ))
  17628. characterMakers.push(() => makeCharacter(
  17629. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17630. {
  17631. front: {
  17632. height: math.unit(1.82, "meters"),
  17633. weight: math.unit(140, "lb"),
  17634. name: "Front",
  17635. image: {
  17636. source: "./media/characters/nita/front.svg",
  17637. extra: 2473 / 2363,
  17638. bottom: 0.01
  17639. }
  17640. },
  17641. },
  17642. [
  17643. {
  17644. name: "Normal",
  17645. height: math.unit(1.82, "m")
  17646. },
  17647. {
  17648. name: "Macro",
  17649. height: math.unit(300, "m")
  17650. },
  17651. {
  17652. name: "Mistake Canon",
  17653. height: math.unit(0.5, "miles"),
  17654. default: true
  17655. },
  17656. {
  17657. name: "Big Mistake",
  17658. height: math.unit(13, "miles")
  17659. },
  17660. {
  17661. name: "Playing God",
  17662. height: math.unit(2450, "miles")
  17663. },
  17664. ]
  17665. ))
  17666. characterMakers.push(() => makeCharacter(
  17667. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17668. {
  17669. front: {
  17670. height: math.unit(4, "feet"),
  17671. weight: math.unit(120, "lb"),
  17672. name: "Front",
  17673. image: {
  17674. source: "./media/characters/shiriko/front.svg",
  17675. extra: 970/934,
  17676. bottom: 5/975
  17677. }
  17678. },
  17679. },
  17680. [
  17681. {
  17682. name: "Normal",
  17683. height: math.unit(4, "feet"),
  17684. default: true
  17685. },
  17686. ]
  17687. ))
  17688. characterMakers.push(() => makeCharacter(
  17689. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17690. {
  17691. front: {
  17692. height: math.unit(6, "feet"),
  17693. name: "front",
  17694. image: {
  17695. source: "./media/characters/deja/front.svg",
  17696. extra: 926 / 840,
  17697. bottom: 0.07
  17698. }
  17699. },
  17700. },
  17701. [
  17702. {
  17703. name: "Planck Length",
  17704. height: math.unit(1.6e-35, "meters")
  17705. },
  17706. {
  17707. name: "Normal",
  17708. height: math.unit(30.48, "meters"),
  17709. default: true
  17710. },
  17711. {
  17712. name: "Universal",
  17713. height: math.unit(8.8e26, "meters")
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17719. {
  17720. side: {
  17721. height: math.unit(8, "feet"),
  17722. weight: math.unit(6300, "lb"),
  17723. name: "Side",
  17724. image: {
  17725. source: "./media/characters/anima/side.svg",
  17726. bottom: 0.035
  17727. }
  17728. },
  17729. },
  17730. [
  17731. {
  17732. name: "Normal",
  17733. height: math.unit(8, "feet"),
  17734. default: true
  17735. },
  17736. ]
  17737. ))
  17738. characterMakers.push(() => makeCharacter(
  17739. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17740. {
  17741. front: {
  17742. height: math.unit(8, "feet"),
  17743. weight: math.unit(350, "lb"),
  17744. name: "Front",
  17745. image: {
  17746. source: "./media/characters/bianca/front.svg",
  17747. extra: 234 / 225,
  17748. bottom: 0.03
  17749. }
  17750. },
  17751. },
  17752. [
  17753. {
  17754. name: "Normal",
  17755. height: math.unit(8, "feet"),
  17756. default: true
  17757. },
  17758. ]
  17759. ))
  17760. characterMakers.push(() => makeCharacter(
  17761. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17762. {
  17763. front: {
  17764. height: math.unit(6, "feet"),
  17765. weight: math.unit(150, "lb"),
  17766. name: "Front",
  17767. image: {
  17768. source: "./media/characters/adinia/front.svg",
  17769. extra: 1845 / 1672,
  17770. bottom: 0.02
  17771. }
  17772. },
  17773. back: {
  17774. height: math.unit(6, "feet"),
  17775. weight: math.unit(150, "lb"),
  17776. name: "Back",
  17777. image: {
  17778. source: "./media/characters/adinia/back.svg",
  17779. extra: 1845 / 1672,
  17780. bottom: 0.002
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Normal",
  17787. height: math.unit(11 + 5 / 12, "feet"),
  17788. default: true
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17794. {
  17795. front: {
  17796. height: math.unit(3, "meters"),
  17797. weight: math.unit(200, "kg"),
  17798. name: "Front",
  17799. image: {
  17800. source: "./media/characters/lykasa/front.svg",
  17801. extra: 1076 / 976,
  17802. bottom: 0.06
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(3, "meters")
  17810. },
  17811. {
  17812. name: "Kaiju",
  17813. height: math.unit(120, "meters"),
  17814. default: true
  17815. },
  17816. {
  17817. name: "Mega Kaiju",
  17818. height: math.unit(240, "km")
  17819. },
  17820. {
  17821. name: "Giga Kaiju",
  17822. height: math.unit(400, "megameters")
  17823. },
  17824. {
  17825. name: "Tera Kaiju",
  17826. height: math.unit(800, "gigameters")
  17827. },
  17828. {
  17829. name: "Kaiju Dragon Goddess",
  17830. height: math.unit(26, "zettaparsecs")
  17831. },
  17832. ]
  17833. ))
  17834. characterMakers.push(() => makeCharacter(
  17835. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17836. {
  17837. side: {
  17838. height: math.unit(283 / 124 * 6, "feet"),
  17839. weight: math.unit(35000, "lb"),
  17840. name: "Side",
  17841. image: {
  17842. source: "./media/characters/malfaren/side.svg",
  17843. extra: 1310/529,
  17844. bottom: 24/1334
  17845. }
  17846. },
  17847. front: {
  17848. height: math.unit(22.36, "feet"),
  17849. weight: math.unit(35000, "lb"),
  17850. name: "Front",
  17851. image: {
  17852. source: "./media/characters/malfaren/front.svg",
  17853. extra: 1237/1115,
  17854. bottom: 32/1269
  17855. }
  17856. },
  17857. maw: {
  17858. height: math.unit(6.9, "feet"),
  17859. name: "Maw",
  17860. image: {
  17861. source: "./media/characters/malfaren/maw.svg"
  17862. }
  17863. },
  17864. dick: {
  17865. height: math.unit(6.19, "feet"),
  17866. name: "Dick",
  17867. image: {
  17868. source: "./media/characters/malfaren/dick.svg"
  17869. }
  17870. },
  17871. eye: {
  17872. height: math.unit(0.69, "feet"),
  17873. name: "Eye",
  17874. image: {
  17875. source: "./media/characters/malfaren/eye.svg"
  17876. }
  17877. },
  17878. },
  17879. [
  17880. {
  17881. name: "Big",
  17882. height: math.unit(283 / 162 * 6, "feet"),
  17883. },
  17884. {
  17885. name: "Bigger",
  17886. height: math.unit(283 / 124 * 6, "feet")
  17887. },
  17888. {
  17889. name: "Massive",
  17890. height: math.unit(283 / 92 * 6, "feet"),
  17891. default: true
  17892. },
  17893. {
  17894. name: "👀💦",
  17895. height: math.unit(283 / 73 * 6, "feet"),
  17896. },
  17897. ]
  17898. ))
  17899. characterMakers.push(() => makeCharacter(
  17900. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17901. {
  17902. front: {
  17903. height: math.unit(1.7, "m"),
  17904. weight: math.unit(70, "kg"),
  17905. name: "Front",
  17906. image: {
  17907. source: "./media/characters/kernel/front.svg",
  17908. extra: 222 / 210,
  17909. bottom: 0.007
  17910. }
  17911. },
  17912. },
  17913. [
  17914. {
  17915. name: "Nano",
  17916. height: math.unit(17, "micrometers")
  17917. },
  17918. {
  17919. name: "Micro",
  17920. height: math.unit(1.7, "mm")
  17921. },
  17922. {
  17923. name: "Small",
  17924. height: math.unit(1.7, "cm")
  17925. },
  17926. {
  17927. name: "Normal",
  17928. height: math.unit(1.7, "m"),
  17929. default: true
  17930. },
  17931. ]
  17932. ))
  17933. characterMakers.push(() => makeCharacter(
  17934. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17935. {
  17936. front: {
  17937. height: math.unit(1.75, "meters"),
  17938. weight: math.unit(65, "kg"),
  17939. name: "Front",
  17940. image: {
  17941. source: "./media/characters/jayne-folest/front.svg",
  17942. extra: 2115 / 2007,
  17943. bottom: 0.02
  17944. }
  17945. },
  17946. back: {
  17947. height: math.unit(1.75, "meters"),
  17948. weight: math.unit(65, "kg"),
  17949. name: "Back",
  17950. image: {
  17951. source: "./media/characters/jayne-folest/back.svg",
  17952. extra: 2115 / 2007,
  17953. bottom: 0.005
  17954. }
  17955. },
  17956. frontClothed: {
  17957. height: math.unit(1.75, "meters"),
  17958. weight: math.unit(65, "kg"),
  17959. name: "Front (Clothed)",
  17960. image: {
  17961. source: "./media/characters/jayne-folest/front-clothed.svg",
  17962. extra: 2115 / 2007,
  17963. bottom: 0.035
  17964. }
  17965. },
  17966. hand: {
  17967. height: math.unit(1 / 1.260, "feet"),
  17968. name: "Hand",
  17969. image: {
  17970. source: "./media/characters/jayne-folest/hand.svg"
  17971. }
  17972. },
  17973. foot: {
  17974. height: math.unit(1 / 0.918, "feet"),
  17975. name: "Foot",
  17976. image: {
  17977. source: "./media/characters/jayne-folest/foot.svg"
  17978. }
  17979. },
  17980. },
  17981. [
  17982. {
  17983. name: "Micro",
  17984. height: math.unit(4, "cm")
  17985. },
  17986. {
  17987. name: "Normal",
  17988. height: math.unit(1.75, "meters")
  17989. },
  17990. {
  17991. name: "Macro",
  17992. height: math.unit(47.5, "meters"),
  17993. default: true
  17994. },
  17995. ]
  17996. ))
  17997. characterMakers.push(() => makeCharacter(
  17998. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17999. {
  18000. front: {
  18001. height: math.unit(180, "cm"),
  18002. weight: math.unit(70, "kg"),
  18003. name: "Front",
  18004. image: {
  18005. source: "./media/characters/algier/front.svg",
  18006. extra: 596 / 572,
  18007. bottom: 0.04
  18008. }
  18009. },
  18010. back: {
  18011. height: math.unit(180, "cm"),
  18012. weight: math.unit(70, "kg"),
  18013. name: "Back",
  18014. image: {
  18015. source: "./media/characters/algier/back.svg",
  18016. extra: 596 / 572,
  18017. bottom: 0.025
  18018. }
  18019. },
  18020. frontdressed: {
  18021. height: math.unit(180, "cm"),
  18022. weight: math.unit(150, "kg"),
  18023. name: "Front-dressed",
  18024. image: {
  18025. source: "./media/characters/algier/front-dressed.svg",
  18026. extra: 596 / 572,
  18027. bottom: 0.038
  18028. }
  18029. },
  18030. },
  18031. [
  18032. {
  18033. name: "Micro",
  18034. height: math.unit(5, "cm")
  18035. },
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(180, "cm"),
  18039. default: true
  18040. },
  18041. {
  18042. name: "Macro",
  18043. height: math.unit(64, "m")
  18044. },
  18045. ]
  18046. ))
  18047. characterMakers.push(() => makeCharacter(
  18048. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18049. {
  18050. upright: {
  18051. height: math.unit(7, "feet"),
  18052. weight: math.unit(300, "lb"),
  18053. name: "Upright",
  18054. image: {
  18055. source: "./media/characters/pretzel/upright.svg",
  18056. extra: 534 / 522,
  18057. bottom: 0.065
  18058. }
  18059. },
  18060. sprawling: {
  18061. height: math.unit(3.75, "feet"),
  18062. weight: math.unit(300, "lb"),
  18063. name: "Sprawling",
  18064. image: {
  18065. source: "./media/characters/pretzel/sprawling.svg",
  18066. extra: 314 / 281,
  18067. bottom: 0.1
  18068. }
  18069. },
  18070. tongue: {
  18071. height: math.unit(2, "feet"),
  18072. name: "Tongue",
  18073. image: {
  18074. source: "./media/characters/pretzel/tongue.svg"
  18075. }
  18076. },
  18077. },
  18078. [
  18079. {
  18080. name: "Normal",
  18081. height: math.unit(7, "feet"),
  18082. default: true
  18083. },
  18084. {
  18085. name: "Oversized",
  18086. height: math.unit(15, "feet")
  18087. },
  18088. {
  18089. name: "Huge",
  18090. height: math.unit(30, "feet")
  18091. },
  18092. {
  18093. name: "Macro",
  18094. height: math.unit(250, "feet")
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18100. {
  18101. sideFront: {
  18102. height: math.unit(5 + 2 / 12, "feet"),
  18103. weight: math.unit(120, "lb"),
  18104. name: "Front Side",
  18105. image: {
  18106. source: "./media/characters/roxi/side-front.svg",
  18107. extra: 2924 / 2717,
  18108. bottom: 0.08
  18109. }
  18110. },
  18111. sideBack: {
  18112. height: math.unit(5 + 2 / 12, "feet"),
  18113. weight: math.unit(120, "lb"),
  18114. name: "Back Side",
  18115. image: {
  18116. source: "./media/characters/roxi/side-back.svg",
  18117. extra: 2904 / 2693,
  18118. bottom: 0.06
  18119. }
  18120. },
  18121. front: {
  18122. height: math.unit(5 + 2 / 12, "feet"),
  18123. weight: math.unit(120, "lb"),
  18124. name: "Front",
  18125. image: {
  18126. source: "./media/characters/roxi/front.svg",
  18127. extra: 2028 / 1907,
  18128. bottom: 0.01
  18129. }
  18130. },
  18131. frontAlt: {
  18132. height: math.unit(5 + 2 / 12, "feet"),
  18133. weight: math.unit(120, "lb"),
  18134. name: "Front (Alt)",
  18135. image: {
  18136. source: "./media/characters/roxi/front-alt.svg",
  18137. extra: 1828 / 1798,
  18138. bottom: 0.01
  18139. }
  18140. },
  18141. sitting: {
  18142. height: math.unit(2.8, "feet"),
  18143. weight: math.unit(120, "lb"),
  18144. name: "Sitting",
  18145. image: {
  18146. source: "./media/characters/roxi/sitting.svg",
  18147. extra: 2660 / 2462,
  18148. bottom: 0.1
  18149. }
  18150. },
  18151. },
  18152. [
  18153. {
  18154. name: "Normal",
  18155. height: math.unit(5 + 2 / 12, "feet"),
  18156. default: true
  18157. },
  18158. ]
  18159. ))
  18160. characterMakers.push(() => makeCharacter(
  18161. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18162. {
  18163. side: {
  18164. height: math.unit(55, "feet"),
  18165. weight: math.unit(153, "tons"),
  18166. name: "Side",
  18167. image: {
  18168. source: "./media/characters/shadow/side.svg",
  18169. extra: 701 / 628,
  18170. bottom: 0.02
  18171. }
  18172. },
  18173. flying: {
  18174. height: math.unit(145, "feet"),
  18175. weight: math.unit(153, "tons"),
  18176. name: "Flying",
  18177. image: {
  18178. source: "./media/characters/shadow/flying.svg"
  18179. }
  18180. },
  18181. },
  18182. [
  18183. {
  18184. name: "Normal",
  18185. height: math.unit(55, "feet"),
  18186. default: true
  18187. },
  18188. ]
  18189. ))
  18190. characterMakers.push(() => makeCharacter(
  18191. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18192. {
  18193. front: {
  18194. height: math.unit(6, "feet"),
  18195. weight: math.unit(200, "lb"),
  18196. name: "Front",
  18197. image: {
  18198. source: "./media/characters/marcie/front.svg",
  18199. extra: 960 / 876,
  18200. bottom: 58 / 1017.87
  18201. }
  18202. },
  18203. },
  18204. [
  18205. {
  18206. name: "Macro",
  18207. height: math.unit(1, "mile"),
  18208. default: true
  18209. },
  18210. ]
  18211. ))
  18212. characterMakers.push(() => makeCharacter(
  18213. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18214. {
  18215. front: {
  18216. height: math.unit(7, "feet"),
  18217. weight: math.unit(200, "lb"),
  18218. name: "Front",
  18219. image: {
  18220. source: "./media/characters/kachina/front.svg",
  18221. extra: 1290.68 / 1119,
  18222. bottom: 36.5 / 1327.18
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(7, "feet"),
  18230. default: true
  18231. },
  18232. ]
  18233. ))
  18234. characterMakers.push(() => makeCharacter(
  18235. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18236. {
  18237. looking: {
  18238. height: math.unit(2, "meters"),
  18239. weight: math.unit(300, "kg"),
  18240. name: "Looking",
  18241. image: {
  18242. source: "./media/characters/kash/looking.svg",
  18243. extra: 474 / 344,
  18244. bottom: 0.03
  18245. }
  18246. },
  18247. side: {
  18248. height: math.unit(2, "meters"),
  18249. weight: math.unit(300, "kg"),
  18250. name: "Side",
  18251. image: {
  18252. source: "./media/characters/kash/side.svg",
  18253. extra: 302 / 251,
  18254. bottom: 0.03
  18255. }
  18256. },
  18257. front: {
  18258. height: math.unit(2, "meters"),
  18259. weight: math.unit(300, "kg"),
  18260. name: "Front",
  18261. image: {
  18262. source: "./media/characters/kash/front.svg",
  18263. extra: 495 / 360,
  18264. bottom: 0.015
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Normal",
  18271. height: math.unit(2, "meters"),
  18272. default: true
  18273. },
  18274. {
  18275. name: "Big",
  18276. height: math.unit(3, "meters")
  18277. },
  18278. {
  18279. name: "Large",
  18280. height: math.unit(5, "meters")
  18281. },
  18282. ]
  18283. ))
  18284. characterMakers.push(() => makeCharacter(
  18285. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18286. {
  18287. feeding: {
  18288. height: math.unit(6.7, "feet"),
  18289. weight: math.unit(350, "lb"),
  18290. name: "Feeding",
  18291. image: {
  18292. source: "./media/characters/lalim/feeding.svg",
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Normal",
  18299. height: math.unit(6.7, "feet"),
  18300. default: true
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18306. {
  18307. front: {
  18308. height: math.unit(9.5, "feet"),
  18309. weight: math.unit(600, "lb"),
  18310. name: "Front",
  18311. image: {
  18312. source: "./media/characters/de'vout/front.svg",
  18313. extra: 1443 / 1328,
  18314. bottom: 0.025
  18315. }
  18316. },
  18317. back: {
  18318. height: math.unit(9.5, "feet"),
  18319. weight: math.unit(600, "lb"),
  18320. name: "Back",
  18321. image: {
  18322. source: "./media/characters/de'vout/back.svg",
  18323. extra: 1443 / 1328
  18324. }
  18325. },
  18326. frontDressed: {
  18327. height: math.unit(9.5, "feet"),
  18328. weight: math.unit(600, "lb"),
  18329. name: "Front (Dressed",
  18330. image: {
  18331. source: "./media/characters/de'vout/front-dressed.svg",
  18332. extra: 1443 / 1328,
  18333. bottom: 0.025
  18334. }
  18335. },
  18336. backDressed: {
  18337. height: math.unit(9.5, "feet"),
  18338. weight: math.unit(600, "lb"),
  18339. name: "Back (Dressed",
  18340. image: {
  18341. source: "./media/characters/de'vout/back-dressed.svg",
  18342. extra: 1443 / 1328
  18343. }
  18344. },
  18345. },
  18346. [
  18347. {
  18348. name: "Normal",
  18349. height: math.unit(9.5, "feet"),
  18350. default: true
  18351. },
  18352. ]
  18353. ))
  18354. characterMakers.push(() => makeCharacter(
  18355. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18356. {
  18357. front: {
  18358. height: math.unit(8, "feet"),
  18359. weight: math.unit(225, "lb"),
  18360. name: "Front",
  18361. image: {
  18362. source: "./media/characters/talana/front.svg",
  18363. extra: 1410 / 1300,
  18364. bottom: 0.015
  18365. }
  18366. },
  18367. frontDressed: {
  18368. height: math.unit(8, "feet"),
  18369. weight: math.unit(225, "lb"),
  18370. name: "Front (Dressed",
  18371. image: {
  18372. source: "./media/characters/talana/front-dressed.svg",
  18373. extra: 1410 / 1300,
  18374. bottom: 0.015
  18375. }
  18376. },
  18377. },
  18378. [
  18379. {
  18380. name: "Normal",
  18381. height: math.unit(8, "feet"),
  18382. default: true
  18383. },
  18384. ]
  18385. ))
  18386. characterMakers.push(() => makeCharacter(
  18387. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18388. {
  18389. side: {
  18390. height: math.unit(7.2, "feet"),
  18391. weight: math.unit(150, "lb"),
  18392. name: "Side",
  18393. image: {
  18394. source: "./media/characters/xeauvok/side.svg",
  18395. extra: 1975 / 1523,
  18396. bottom: 0.07
  18397. }
  18398. },
  18399. },
  18400. [
  18401. {
  18402. name: "Normal",
  18403. height: math.unit(7.2, "feet"),
  18404. default: true
  18405. },
  18406. ]
  18407. ))
  18408. characterMakers.push(() => makeCharacter(
  18409. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18410. {
  18411. side: {
  18412. height: math.unit(10, "feet"),
  18413. weight: math.unit(900, "kg"),
  18414. name: "Side",
  18415. image: {
  18416. source: "./media/characters/zara/side.svg",
  18417. extra: 504 / 498
  18418. }
  18419. },
  18420. },
  18421. [
  18422. {
  18423. name: "Normal",
  18424. height: math.unit(10, "feet"),
  18425. default: true
  18426. },
  18427. ]
  18428. ))
  18429. characterMakers.push(() => makeCharacter(
  18430. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18431. {
  18432. side: {
  18433. height: math.unit(6, "feet"),
  18434. weight: math.unit(150, "lb"),
  18435. name: "Side",
  18436. image: {
  18437. source: "./media/characters/richard-dragon/side.svg",
  18438. extra: 845 / 340,
  18439. bottom: 0.017
  18440. }
  18441. },
  18442. maw: {
  18443. height: math.unit(2.97, "feet"),
  18444. name: "Maw",
  18445. image: {
  18446. source: "./media/characters/richard-dragon/maw.svg"
  18447. }
  18448. },
  18449. },
  18450. [
  18451. ]
  18452. ))
  18453. characterMakers.push(() => makeCharacter(
  18454. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18455. {
  18456. front: {
  18457. height: math.unit(4, "feet"),
  18458. weight: math.unit(100, "lb"),
  18459. name: "Front",
  18460. image: {
  18461. source: "./media/characters/richard-smeargle/front.svg",
  18462. extra: 2952 / 2820,
  18463. bottom: 0.028
  18464. }
  18465. },
  18466. },
  18467. [
  18468. {
  18469. name: "Normal",
  18470. height: math.unit(4, "feet"),
  18471. default: true
  18472. },
  18473. {
  18474. name: "Dynamax",
  18475. height: math.unit(20, "meters")
  18476. },
  18477. ]
  18478. ))
  18479. characterMakers.push(() => makeCharacter(
  18480. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18481. {
  18482. front: {
  18483. height: math.unit(6, "feet"),
  18484. weight: math.unit(110, "lb"),
  18485. name: "Front",
  18486. image: {
  18487. source: "./media/characters/klay/front.svg",
  18488. extra: 962 / 883,
  18489. bottom: 0.04
  18490. }
  18491. },
  18492. back: {
  18493. height: math.unit(6, "feet"),
  18494. weight: math.unit(110, "lb"),
  18495. name: "Back",
  18496. image: {
  18497. source: "./media/characters/klay/back.svg",
  18498. extra: 962 / 883
  18499. }
  18500. },
  18501. beans: {
  18502. height: math.unit(1.15, "feet"),
  18503. name: "Beans",
  18504. image: {
  18505. source: "./media/characters/klay/beans.svg"
  18506. }
  18507. },
  18508. },
  18509. [
  18510. {
  18511. name: "Micro",
  18512. height: math.unit(6, "inches")
  18513. },
  18514. {
  18515. name: "Mini",
  18516. height: math.unit(3, "feet")
  18517. },
  18518. {
  18519. name: "Normal",
  18520. height: math.unit(6, "feet"),
  18521. default: true
  18522. },
  18523. {
  18524. name: "Big",
  18525. height: math.unit(25, "feet")
  18526. },
  18527. {
  18528. name: "Macro",
  18529. height: math.unit(100, "feet")
  18530. },
  18531. {
  18532. name: "Megamacro",
  18533. height: math.unit(400, "feet")
  18534. },
  18535. ]
  18536. ))
  18537. characterMakers.push(() => makeCharacter(
  18538. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18539. {
  18540. front: {
  18541. height: math.unit(6, "feet"),
  18542. weight: math.unit(160, "lb"),
  18543. name: "Front",
  18544. image: {
  18545. source: "./media/characters/marcus/front.svg",
  18546. extra: 734 / 676,
  18547. bottom: 0.03
  18548. }
  18549. },
  18550. },
  18551. [
  18552. {
  18553. name: "Little",
  18554. height: math.unit(6, "feet")
  18555. },
  18556. {
  18557. name: "Normal",
  18558. height: math.unit(110, "feet"),
  18559. default: true
  18560. },
  18561. {
  18562. name: "Macro",
  18563. height: math.unit(250, "feet")
  18564. },
  18565. {
  18566. name: "Megamacro",
  18567. height: math.unit(1000, "feet")
  18568. },
  18569. ]
  18570. ))
  18571. characterMakers.push(() => makeCharacter(
  18572. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18573. {
  18574. front: {
  18575. height: math.unit(7, "feet"),
  18576. weight: math.unit(275, "lb"),
  18577. name: "Front",
  18578. image: {
  18579. source: "./media/characters/claude-delroute/front.svg",
  18580. extra: 902/827,
  18581. bottom: 26/928
  18582. }
  18583. },
  18584. side: {
  18585. height: math.unit(7, "feet"),
  18586. weight: math.unit(275, "lb"),
  18587. name: "Side",
  18588. image: {
  18589. source: "./media/characters/claude-delroute/side.svg",
  18590. extra: 908/853,
  18591. bottom: 16/924
  18592. }
  18593. },
  18594. back: {
  18595. height: math.unit(7, "feet"),
  18596. weight: math.unit(275, "lb"),
  18597. name: "Back",
  18598. image: {
  18599. source: "./media/characters/claude-delroute/back.svg",
  18600. extra: 911/829,
  18601. bottom: 18/929
  18602. }
  18603. },
  18604. maw: {
  18605. height: math.unit(0.6407, "meters"),
  18606. name: "Maw",
  18607. image: {
  18608. source: "./media/characters/claude-delroute/maw.svg"
  18609. }
  18610. },
  18611. },
  18612. [
  18613. {
  18614. name: "Normal",
  18615. height: math.unit(7, "feet"),
  18616. default: true
  18617. },
  18618. {
  18619. name: "Lorge",
  18620. height: math.unit(20, "feet")
  18621. },
  18622. ]
  18623. ))
  18624. characterMakers.push(() => makeCharacter(
  18625. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18626. {
  18627. front: {
  18628. height: math.unit(8 + 4 / 12, "feet"),
  18629. weight: math.unit(600, "lb"),
  18630. name: "Front",
  18631. image: {
  18632. source: "./media/characters/dragonien/front.svg",
  18633. extra: 100 / 94,
  18634. bottom: 3.3 / 103.3445
  18635. }
  18636. },
  18637. back: {
  18638. height: math.unit(8 + 4 / 12, "feet"),
  18639. weight: math.unit(600, "lb"),
  18640. name: "Back",
  18641. image: {
  18642. source: "./media/characters/dragonien/back.svg",
  18643. extra: 776 / 746,
  18644. bottom: 6.4 / 782.0616
  18645. }
  18646. },
  18647. foot: {
  18648. height: math.unit(1.54, "feet"),
  18649. name: "Foot",
  18650. image: {
  18651. source: "./media/characters/dragonien/foot.svg",
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(8 + 4 / 12, "feet"),
  18659. default: true
  18660. },
  18661. {
  18662. name: "Macro",
  18663. height: math.unit(200, "feet")
  18664. },
  18665. {
  18666. name: "Megamacro",
  18667. height: math.unit(1, "mile")
  18668. },
  18669. {
  18670. name: "Gigamacro",
  18671. height: math.unit(1000, "miles")
  18672. },
  18673. ]
  18674. ))
  18675. characterMakers.push(() => makeCharacter(
  18676. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18677. {
  18678. front: {
  18679. height: math.unit(5 + 2 / 12, "feet"),
  18680. weight: math.unit(110, "lb"),
  18681. name: "Front",
  18682. image: {
  18683. source: "./media/characters/desta/front.svg",
  18684. extra: 767 / 726,
  18685. bottom: 11.7 / 779
  18686. }
  18687. },
  18688. back: {
  18689. height: math.unit(5 + 2 / 12, "feet"),
  18690. weight: math.unit(110, "lb"),
  18691. name: "Back",
  18692. image: {
  18693. source: "./media/characters/desta/back.svg",
  18694. extra: 777 / 728,
  18695. bottom: 6 / 784
  18696. }
  18697. },
  18698. frontAlt: {
  18699. height: math.unit(5 + 2 / 12, "feet"),
  18700. weight: math.unit(110, "lb"),
  18701. name: "Front",
  18702. image: {
  18703. source: "./media/characters/desta/front-alt.svg",
  18704. extra: 1482 / 1417
  18705. }
  18706. },
  18707. side: {
  18708. height: math.unit(5 + 2 / 12, "feet"),
  18709. weight: math.unit(110, "lb"),
  18710. name: "Side",
  18711. image: {
  18712. source: "./media/characters/desta/side.svg",
  18713. extra: 2579 / 2491,
  18714. bottom: 0.053
  18715. }
  18716. },
  18717. },
  18718. [
  18719. {
  18720. name: "Micro",
  18721. height: math.unit(6, "inches")
  18722. },
  18723. {
  18724. name: "Normal",
  18725. height: math.unit(5 + 2 / 12, "feet"),
  18726. default: true
  18727. },
  18728. {
  18729. name: "Macro",
  18730. height: math.unit(62, "feet")
  18731. },
  18732. {
  18733. name: "Megamacro",
  18734. height: math.unit(1800, "feet")
  18735. },
  18736. ]
  18737. ))
  18738. characterMakers.push(() => makeCharacter(
  18739. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18740. {
  18741. front: {
  18742. height: math.unit(10, "feet"),
  18743. weight: math.unit(700, "lb"),
  18744. name: "Front",
  18745. image: {
  18746. source: "./media/characters/storm-alystar/front.svg",
  18747. extra: 2112 / 1898,
  18748. bottom: 0.034
  18749. }
  18750. },
  18751. },
  18752. [
  18753. {
  18754. name: "Micro",
  18755. height: math.unit(3.5, "inches")
  18756. },
  18757. {
  18758. name: "Normal",
  18759. height: math.unit(10, "feet"),
  18760. default: true
  18761. },
  18762. {
  18763. name: "Macro",
  18764. height: math.unit(400, "feet")
  18765. },
  18766. {
  18767. name: "Deific",
  18768. height: math.unit(60, "miles")
  18769. },
  18770. ]
  18771. ))
  18772. characterMakers.push(() => makeCharacter(
  18773. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18774. {
  18775. front: {
  18776. height: math.unit(2.35, "meters"),
  18777. weight: math.unit(119, "kg"),
  18778. name: "Front",
  18779. image: {
  18780. source: "./media/characters/ilia/front.svg",
  18781. extra: 1285 / 1255,
  18782. bottom: 0.06
  18783. }
  18784. },
  18785. },
  18786. [
  18787. {
  18788. name: "Normal",
  18789. height: math.unit(2.35, "meters")
  18790. },
  18791. {
  18792. name: "Macro",
  18793. height: math.unit(140, "meters"),
  18794. default: true
  18795. },
  18796. {
  18797. name: "Megamacro",
  18798. height: math.unit(100, "miles")
  18799. },
  18800. ]
  18801. ))
  18802. characterMakers.push(() => makeCharacter(
  18803. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18804. {
  18805. front: {
  18806. height: math.unit(6 + 5 / 12, "feet"),
  18807. weight: math.unit(190, "lb"),
  18808. name: "Front",
  18809. image: {
  18810. source: "./media/characters/kingdead/front.svg",
  18811. extra: 1228 / 1177
  18812. }
  18813. },
  18814. },
  18815. [
  18816. {
  18817. name: "Micro",
  18818. height: math.unit(7, "inches")
  18819. },
  18820. {
  18821. name: "Normal",
  18822. height: math.unit(6 + 5 / 12, "feet")
  18823. },
  18824. {
  18825. name: "Macro",
  18826. height: math.unit(150, "feet"),
  18827. default: true
  18828. },
  18829. {
  18830. name: "Megamacro",
  18831. height: math.unit(200, "miles")
  18832. },
  18833. ]
  18834. ))
  18835. characterMakers.push(() => makeCharacter(
  18836. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18837. {
  18838. front: {
  18839. height: math.unit(8, "feet"),
  18840. weight: math.unit(600, "lb"),
  18841. name: "Front",
  18842. image: {
  18843. source: "./media/characters/kyrehx/front.svg",
  18844. extra: 1195 / 1095,
  18845. bottom: 0.034
  18846. }
  18847. },
  18848. },
  18849. [
  18850. {
  18851. name: "Micro",
  18852. height: math.unit(2, "inches")
  18853. },
  18854. {
  18855. name: "Normal",
  18856. height: math.unit(8, "feet"),
  18857. default: true
  18858. },
  18859. {
  18860. name: "Macro",
  18861. height: math.unit(255, "feet")
  18862. },
  18863. ]
  18864. ))
  18865. characterMakers.push(() => makeCharacter(
  18866. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18867. {
  18868. front: {
  18869. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18870. weight: math.unit(184, "lb"),
  18871. name: "Front",
  18872. image: {
  18873. source: "./media/characters/xang/front.svg",
  18874. extra: 845 / 755
  18875. }
  18876. },
  18877. },
  18878. [
  18879. {
  18880. name: "Normal",
  18881. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18882. default: true
  18883. },
  18884. {
  18885. name: "Macro",
  18886. height: math.unit(0.935 * 146, "feet")
  18887. },
  18888. {
  18889. name: "Megamacro",
  18890. height: math.unit(0.935 * 3, "miles")
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18896. {
  18897. frontDressed: {
  18898. height: math.unit(5 + 7 / 12, "feet"),
  18899. weight: math.unit(140, "lb"),
  18900. name: "Front (Dressed)",
  18901. image: {
  18902. source: "./media/characters/doc-weardno/front-dressed.svg",
  18903. extra: 263 / 234
  18904. }
  18905. },
  18906. backDressed: {
  18907. height: math.unit(5 + 7 / 12, "feet"),
  18908. weight: math.unit(140, "lb"),
  18909. name: "Back (Dressed)",
  18910. image: {
  18911. source: "./media/characters/doc-weardno/back-dressed.svg",
  18912. extra: 266 / 238
  18913. }
  18914. },
  18915. front: {
  18916. height: math.unit(5 + 7 / 12, "feet"),
  18917. weight: math.unit(140, "lb"),
  18918. name: "Front",
  18919. image: {
  18920. source: "./media/characters/doc-weardno/front.svg",
  18921. extra: 254 / 233
  18922. }
  18923. },
  18924. },
  18925. [
  18926. {
  18927. name: "Micro",
  18928. height: math.unit(3, "inches")
  18929. },
  18930. {
  18931. name: "Normal",
  18932. height: math.unit(5 + 7 / 12, "feet"),
  18933. default: true
  18934. },
  18935. {
  18936. name: "Macro",
  18937. height: math.unit(25, "feet")
  18938. },
  18939. {
  18940. name: "Megamacro",
  18941. height: math.unit(2, "miles")
  18942. },
  18943. ]
  18944. ))
  18945. characterMakers.push(() => makeCharacter(
  18946. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18947. {
  18948. front: {
  18949. height: math.unit(6 + 2 / 12, "feet"),
  18950. weight: math.unit(153, "lb"),
  18951. name: "Front",
  18952. image: {
  18953. source: "./media/characters/seth-whilst/front.svg",
  18954. bottom: 0.07
  18955. }
  18956. },
  18957. },
  18958. [
  18959. {
  18960. name: "Micro",
  18961. height: math.unit(5, "inches")
  18962. },
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(6 + 2 / 12, "feet"),
  18966. default: true
  18967. },
  18968. ]
  18969. ))
  18970. characterMakers.push(() => makeCharacter(
  18971. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18972. {
  18973. front: {
  18974. height: math.unit(3, "inches"),
  18975. weight: math.unit(8, "grams"),
  18976. name: "Front",
  18977. image: {
  18978. source: "./media/characters/pocket-jabari/front.svg",
  18979. extra: 1024 / 974,
  18980. bottom: 0.039
  18981. }
  18982. },
  18983. },
  18984. [
  18985. {
  18986. name: "Minimicro",
  18987. height: math.unit(8, "mm")
  18988. },
  18989. {
  18990. name: "Micro",
  18991. height: math.unit(3, "inches"),
  18992. default: true
  18993. },
  18994. {
  18995. name: "Normal",
  18996. height: math.unit(3, "feet")
  18997. },
  18998. ]
  18999. ))
  19000. characterMakers.push(() => makeCharacter(
  19001. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19002. {
  19003. front: {
  19004. height: math.unit(15, "feet"),
  19005. weight: math.unit(3280, "lb"),
  19006. name: "Front",
  19007. image: {
  19008. source: "./media/characters/sapphy/front.svg",
  19009. extra: 671 / 577,
  19010. bottom: 0.085
  19011. }
  19012. },
  19013. back: {
  19014. height: math.unit(15, "feet"),
  19015. weight: math.unit(3280, "lb"),
  19016. name: "Back",
  19017. image: {
  19018. source: "./media/characters/sapphy/back.svg",
  19019. extra: 631 / 607,
  19020. bottom: 0.045
  19021. }
  19022. },
  19023. },
  19024. [
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(15, "feet")
  19028. },
  19029. {
  19030. name: "Casual Macro",
  19031. height: math.unit(120, "feet")
  19032. },
  19033. {
  19034. name: "Macro",
  19035. height: math.unit(2150, "feet"),
  19036. default: true
  19037. },
  19038. {
  19039. name: "Megamacro",
  19040. height: math.unit(8, "miles")
  19041. },
  19042. {
  19043. name: "Galaxy Mom",
  19044. height: math.unit(6, "megalightyears")
  19045. },
  19046. ]
  19047. ))
  19048. characterMakers.push(() => makeCharacter(
  19049. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19050. {
  19051. front: {
  19052. height: math.unit(6, "feet"),
  19053. weight: math.unit(170, "lb"),
  19054. name: "Front",
  19055. image: {
  19056. source: "./media/characters/kiro/front.svg",
  19057. extra: 1064 / 1012,
  19058. bottom: 0.052
  19059. }
  19060. },
  19061. },
  19062. [
  19063. {
  19064. name: "Micro",
  19065. height: math.unit(6, "inches")
  19066. },
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(6, "feet"),
  19070. default: true
  19071. },
  19072. {
  19073. name: "Macro",
  19074. height: math.unit(72, "feet")
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19080. {
  19081. front: {
  19082. height: math.unit(5 + 9 / 12, "feet"),
  19083. weight: math.unit(175, "lb"),
  19084. name: "Front",
  19085. image: {
  19086. source: "./media/characters/irishfox/front.svg",
  19087. extra: 1912 / 1680,
  19088. bottom: 0.02
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Nano",
  19095. height: math.unit(1, "mm")
  19096. },
  19097. {
  19098. name: "Micro",
  19099. height: math.unit(2, "inches")
  19100. },
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(5 + 9 / 12, "feet"),
  19104. default: true
  19105. },
  19106. {
  19107. name: "Macro",
  19108. height: math.unit(45, "feet")
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19114. {
  19115. front: {
  19116. height: math.unit(6 + 1 / 12, "feet"),
  19117. weight: math.unit(75, "lb"),
  19118. name: "Front",
  19119. image: {
  19120. source: "./media/characters/aronai-sieyes/front.svg",
  19121. extra: 1532/1450,
  19122. bottom: 42/1574
  19123. }
  19124. },
  19125. side: {
  19126. height: math.unit(6 + 1 / 12, "feet"),
  19127. weight: math.unit(75, "lb"),
  19128. name: "Side",
  19129. image: {
  19130. source: "./media/characters/aronai-sieyes/side.svg",
  19131. extra: 1422/1365,
  19132. bottom: 148/1570
  19133. }
  19134. },
  19135. back: {
  19136. height: math.unit(6 + 1 / 12, "feet"),
  19137. weight: math.unit(75, "lb"),
  19138. name: "Back",
  19139. image: {
  19140. source: "./media/characters/aronai-sieyes/back.svg",
  19141. extra: 1526/1464,
  19142. bottom: 51/1577
  19143. }
  19144. },
  19145. dressed: {
  19146. height: math.unit(6 + 1 / 12, "feet"),
  19147. weight: math.unit(75, "lb"),
  19148. name: "Dressed",
  19149. image: {
  19150. source: "./media/characters/aronai-sieyes/dressed.svg",
  19151. extra: 1559/1483,
  19152. bottom: 39/1598
  19153. }
  19154. },
  19155. slit: {
  19156. height: math.unit(1.3, "feet"),
  19157. name: "Slit",
  19158. image: {
  19159. source: "./media/characters/aronai-sieyes/slit.svg"
  19160. }
  19161. },
  19162. slitSpread: {
  19163. height: math.unit(0.9, "feet"),
  19164. name: "Slit (Spread)",
  19165. image: {
  19166. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19167. }
  19168. },
  19169. rump: {
  19170. height: math.unit(1.3, "feet"),
  19171. name: "Rump",
  19172. image: {
  19173. source: "./media/characters/aronai-sieyes/rump.svg"
  19174. }
  19175. },
  19176. maw: {
  19177. height: math.unit(1.25, "feet"),
  19178. name: "Maw",
  19179. image: {
  19180. source: "./media/characters/aronai-sieyes/maw.svg"
  19181. }
  19182. },
  19183. feral: {
  19184. height: math.unit(18, "feet"),
  19185. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19186. name: "Feral",
  19187. image: {
  19188. source: "./media/characters/aronai-sieyes/feral.svg",
  19189. extra: 1530 / 1240,
  19190. bottom: 0.035
  19191. }
  19192. },
  19193. },
  19194. [
  19195. {
  19196. name: "Micro",
  19197. height: math.unit(2, "inches")
  19198. },
  19199. {
  19200. name: "Normal",
  19201. height: math.unit(6 + 1 / 12, "feet"),
  19202. default: true
  19203. }
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19208. {
  19209. front: {
  19210. height: math.unit(12, "feet"),
  19211. weight: math.unit(410, "kg"),
  19212. name: "Front",
  19213. image: {
  19214. source: "./media/characters/xuna/front.svg",
  19215. extra: 2184 / 1980
  19216. }
  19217. },
  19218. side: {
  19219. height: math.unit(12, "feet"),
  19220. weight: math.unit(410, "kg"),
  19221. name: "Side",
  19222. image: {
  19223. source: "./media/characters/xuna/side.svg",
  19224. extra: 2184 / 1980
  19225. }
  19226. },
  19227. back: {
  19228. height: math.unit(12, "feet"),
  19229. weight: math.unit(410, "kg"),
  19230. name: "Back",
  19231. image: {
  19232. source: "./media/characters/xuna/back.svg",
  19233. extra: 2184 / 1980
  19234. }
  19235. },
  19236. },
  19237. [
  19238. {
  19239. name: "Nano glow",
  19240. height: math.unit(10, "nm")
  19241. },
  19242. {
  19243. name: "Micro floof",
  19244. height: math.unit(0.3, "m")
  19245. },
  19246. {
  19247. name: "Huggable softy boi",
  19248. height: math.unit(3.6576, "m"),
  19249. default: true
  19250. },
  19251. {
  19252. name: "Admirable floof",
  19253. height: math.unit(80, "meters")
  19254. },
  19255. {
  19256. name: "Gentle macro",
  19257. height: math.unit(300, "meters")
  19258. },
  19259. {
  19260. name: "Very careful floof",
  19261. height: math.unit(3200, "meters")
  19262. },
  19263. {
  19264. name: "The mega floof",
  19265. height: math.unit(36000, "meters")
  19266. },
  19267. {
  19268. name: "Giga-fur-Wicker",
  19269. height: math.unit(4800000, "meters")
  19270. },
  19271. {
  19272. name: "Licky world",
  19273. height: math.unit(20000000, "meters")
  19274. },
  19275. {
  19276. name: "Floofy cyan sun",
  19277. height: math.unit(1500000000, "meters")
  19278. },
  19279. {
  19280. name: "Milky Wicker",
  19281. height: math.unit(1000000000000000000000, "meters")
  19282. },
  19283. {
  19284. name: "The observing Wicker",
  19285. height: math.unit(999999999999999999999999999, "meters")
  19286. },
  19287. ]
  19288. ))
  19289. characterMakers.push(() => makeCharacter(
  19290. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19291. {
  19292. front: {
  19293. height: math.unit(5 + 9 / 12, "feet"),
  19294. weight: math.unit(150, "lb"),
  19295. name: "Front",
  19296. image: {
  19297. source: "./media/characters/arokha-sieyes/front.svg",
  19298. extra: 1425 / 1284,
  19299. bottom: 0.05
  19300. }
  19301. },
  19302. },
  19303. [
  19304. {
  19305. name: "Normal",
  19306. height: math.unit(5 + 9 / 12, "feet")
  19307. },
  19308. {
  19309. name: "Macro",
  19310. height: math.unit(30, "meters"),
  19311. default: true
  19312. },
  19313. ]
  19314. ))
  19315. characterMakers.push(() => makeCharacter(
  19316. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19317. {
  19318. front: {
  19319. height: math.unit(6, "feet"),
  19320. weight: math.unit(180, "lb"),
  19321. name: "Front",
  19322. image: {
  19323. source: "./media/characters/arokh-sieyes/front.svg",
  19324. extra: 1830 / 1769,
  19325. bottom: 0.01
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(6, "feet")
  19333. },
  19334. {
  19335. name: "Macro",
  19336. height: math.unit(30, "meters"),
  19337. default: true
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19343. {
  19344. side: {
  19345. height: math.unit(13 + 1 / 12, "feet"),
  19346. weight: math.unit(8.5, "tonnes"),
  19347. name: "Side",
  19348. image: {
  19349. source: "./media/characters/goldeneye/side.svg",
  19350. extra: 1182 / 778,
  19351. bottom: 0.067
  19352. }
  19353. },
  19354. paw: {
  19355. height: math.unit(3.4, "feet"),
  19356. name: "Paw",
  19357. image: {
  19358. source: "./media/characters/goldeneye/paw.svg"
  19359. }
  19360. },
  19361. },
  19362. [
  19363. {
  19364. name: "Normal",
  19365. height: math.unit(13 + 1 / 12, "feet"),
  19366. default: true
  19367. },
  19368. ]
  19369. ))
  19370. characterMakers.push(() => makeCharacter(
  19371. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19372. {
  19373. front: {
  19374. height: math.unit(6 + 1 / 12, "feet"),
  19375. weight: math.unit(210, "lb"),
  19376. name: "Front",
  19377. image: {
  19378. source: "./media/characters/leonardo-lycheborne/front.svg",
  19379. extra: 776/723,
  19380. bottom: 34/810
  19381. }
  19382. },
  19383. side: {
  19384. height: math.unit(6 + 1 / 12, "feet"),
  19385. weight: math.unit(210, "lb"),
  19386. name: "Side",
  19387. image: {
  19388. source: "./media/characters/leonardo-lycheborne/side.svg",
  19389. extra: 780/728,
  19390. bottom: 12/792
  19391. }
  19392. },
  19393. back: {
  19394. height: math.unit(6 + 1 / 12, "feet"),
  19395. weight: math.unit(210, "lb"),
  19396. name: "Back",
  19397. image: {
  19398. source: "./media/characters/leonardo-lycheborne/back.svg",
  19399. extra: 775/721,
  19400. bottom: 17/792
  19401. }
  19402. },
  19403. hand: {
  19404. height: math.unit(1.08, "feet"),
  19405. name: "Hand",
  19406. image: {
  19407. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19408. }
  19409. },
  19410. foot: {
  19411. height: math.unit(1.32, "feet"),
  19412. name: "Foot",
  19413. image: {
  19414. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19415. }
  19416. },
  19417. maw: {
  19418. height: math.unit(1, "feet"),
  19419. name: "Maw",
  19420. image: {
  19421. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19422. }
  19423. },
  19424. were: {
  19425. height: math.unit(20, "feet"),
  19426. weight: math.unit(7800, "lb"),
  19427. name: "Were",
  19428. image: {
  19429. source: "./media/characters/leonardo-lycheborne/were.svg",
  19430. extra: 1224/1165,
  19431. bottom: 72/1296
  19432. }
  19433. },
  19434. feral: {
  19435. height: math.unit(7.5, "feet"),
  19436. weight: math.unit(600, "lb"),
  19437. name: "Feral",
  19438. image: {
  19439. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19440. extra: 797/702,
  19441. bottom: 139/936
  19442. }
  19443. },
  19444. taur: {
  19445. height: math.unit(11, "feet"),
  19446. weight: math.unit(3300, "lb"),
  19447. name: "Taur",
  19448. image: {
  19449. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19450. extra: 1271/1197,
  19451. bottom: 47/1318
  19452. }
  19453. },
  19454. barghest: {
  19455. height: math.unit(11, "feet"),
  19456. weight: math.unit(1300, "lb"),
  19457. name: "Barghest",
  19458. image: {
  19459. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19460. extra: 1291/1204,
  19461. bottom: 37/1328
  19462. }
  19463. },
  19464. dick: {
  19465. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19466. name: "Dick",
  19467. image: {
  19468. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19469. }
  19470. },
  19471. dickWere: {
  19472. height: math.unit((20) / 3.8, "feet"),
  19473. name: "Dick (Were)",
  19474. image: {
  19475. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19476. }
  19477. },
  19478. },
  19479. [
  19480. {
  19481. name: "Normal",
  19482. height: math.unit(6 + 1 / 12, "feet"),
  19483. default: true
  19484. },
  19485. ]
  19486. ))
  19487. characterMakers.push(() => makeCharacter(
  19488. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19489. {
  19490. front: {
  19491. height: math.unit(10, "feet"),
  19492. weight: math.unit(350, "lb"),
  19493. name: "Front",
  19494. image: {
  19495. source: "./media/characters/jet/front.svg",
  19496. extra: 2050 / 1980,
  19497. bottom: 0.013
  19498. }
  19499. },
  19500. back: {
  19501. height: math.unit(10, "feet"),
  19502. weight: math.unit(350, "lb"),
  19503. name: "Back",
  19504. image: {
  19505. source: "./media/characters/jet/back.svg",
  19506. extra: 2050 / 1980,
  19507. bottom: 0.013
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Micro",
  19514. height: math.unit(6, "inches")
  19515. },
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(10, "feet"),
  19519. default: true
  19520. },
  19521. {
  19522. name: "Macro",
  19523. height: math.unit(100, "feet")
  19524. },
  19525. ]
  19526. ))
  19527. characterMakers.push(() => makeCharacter(
  19528. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19529. {
  19530. front: {
  19531. height: math.unit(15, "feet"),
  19532. weight: math.unit(2800, "lb"),
  19533. name: "Front",
  19534. image: {
  19535. source: "./media/characters/tanarath/front.svg",
  19536. extra: 2392 / 2220,
  19537. bottom: 0.03
  19538. }
  19539. },
  19540. back: {
  19541. height: math.unit(15, "feet"),
  19542. weight: math.unit(2800, "lb"),
  19543. name: "Back",
  19544. image: {
  19545. source: "./media/characters/tanarath/back.svg",
  19546. extra: 2392 / 2220,
  19547. bottom: 0.03
  19548. }
  19549. },
  19550. },
  19551. [
  19552. {
  19553. name: "Normal",
  19554. height: math.unit(15, "feet"),
  19555. default: true
  19556. },
  19557. ]
  19558. ))
  19559. characterMakers.push(() => makeCharacter(
  19560. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19561. {
  19562. front: {
  19563. height: math.unit(7 + 1 / 12, "feet"),
  19564. weight: math.unit(175, "lb"),
  19565. name: "Front",
  19566. image: {
  19567. source: "./media/characters/patty-cattybatty/front.svg",
  19568. extra: 908 / 874,
  19569. bottom: 0.025
  19570. }
  19571. },
  19572. },
  19573. [
  19574. {
  19575. name: "Micro",
  19576. height: math.unit(1, "inch")
  19577. },
  19578. {
  19579. name: "Normal",
  19580. height: math.unit(7 + 1 / 12, "feet")
  19581. },
  19582. {
  19583. name: "Mini Macro",
  19584. height: math.unit(155, "feet")
  19585. },
  19586. {
  19587. name: "Macro",
  19588. height: math.unit(1077, "feet")
  19589. },
  19590. {
  19591. name: "Mega Macro",
  19592. height: math.unit(47650, "feet"),
  19593. default: true
  19594. },
  19595. {
  19596. name: "Giga Macro",
  19597. height: math.unit(440, "miles")
  19598. },
  19599. {
  19600. name: "Tera Macro",
  19601. height: math.unit(8700, "miles")
  19602. },
  19603. {
  19604. name: "Planetary Macro",
  19605. height: math.unit(32700, "miles")
  19606. },
  19607. {
  19608. name: "Solar Macro",
  19609. height: math.unit(550000, "miles")
  19610. },
  19611. {
  19612. name: "Celestial Macro",
  19613. height: math.unit(2.5, "AU")
  19614. },
  19615. ]
  19616. ))
  19617. characterMakers.push(() => makeCharacter(
  19618. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19619. {
  19620. front: {
  19621. height: math.unit(4 + 5 / 12, "feet"),
  19622. weight: math.unit(90, "lb"),
  19623. name: "Front",
  19624. image: {
  19625. source: "./media/characters/cappu/front.svg",
  19626. extra: 1247 / 1152,
  19627. bottom: 0.012
  19628. }
  19629. },
  19630. },
  19631. [
  19632. {
  19633. name: "Normal",
  19634. height: math.unit(4 + 5 / 12, "feet"),
  19635. default: true
  19636. },
  19637. ]
  19638. ))
  19639. characterMakers.push(() => makeCharacter(
  19640. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19641. {
  19642. frontDressed: {
  19643. height: math.unit(70, "cm"),
  19644. weight: math.unit(6, "kg"),
  19645. name: "Front (Dressed)",
  19646. image: {
  19647. source: "./media/characters/sebi/front-dressed.svg",
  19648. extra: 713.5 / 686.5,
  19649. bottom: 0.003
  19650. }
  19651. },
  19652. front: {
  19653. height: math.unit(70, "cm"),
  19654. weight: math.unit(5, "kg"),
  19655. name: "Front",
  19656. image: {
  19657. source: "./media/characters/sebi/front.svg",
  19658. extra: 713.5 / 686.5,
  19659. bottom: 0.003
  19660. }
  19661. }
  19662. },
  19663. [
  19664. {
  19665. name: "Normal",
  19666. height: math.unit(70, "cm"),
  19667. default: true
  19668. },
  19669. {
  19670. name: "Macro",
  19671. height: math.unit(8, "meters")
  19672. },
  19673. ]
  19674. ))
  19675. characterMakers.push(() => makeCharacter(
  19676. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19677. {
  19678. front: {
  19679. height: math.unit(6, "feet"),
  19680. weight: math.unit(150, "lb"),
  19681. name: "Front",
  19682. image: {
  19683. source: "./media/characters/typhek/front.svg",
  19684. extra: 1948 / 1929,
  19685. bottom: 0.025
  19686. }
  19687. },
  19688. side: {
  19689. height: math.unit(6, "feet"),
  19690. weight: math.unit(150, "lb"),
  19691. name: "Side",
  19692. image: {
  19693. source: "./media/characters/typhek/side.svg",
  19694. extra: 2034 / 2010,
  19695. bottom: 0.003
  19696. }
  19697. },
  19698. back: {
  19699. height: math.unit(6, "feet"),
  19700. weight: math.unit(150, "lb"),
  19701. name: "Back",
  19702. image: {
  19703. source: "./media/characters/typhek/back.svg",
  19704. extra: 2005 / 1978,
  19705. bottom: 0.004
  19706. }
  19707. },
  19708. palm: {
  19709. height: math.unit(1.2, "feet"),
  19710. name: "Palm",
  19711. image: {
  19712. source: "./media/characters/typhek/palm.svg"
  19713. }
  19714. },
  19715. fist: {
  19716. height: math.unit(1.1, "feet"),
  19717. name: "Fist",
  19718. image: {
  19719. source: "./media/characters/typhek/fist.svg"
  19720. }
  19721. },
  19722. foot: {
  19723. height: math.unit(1.57, "feet"),
  19724. name: "Foot",
  19725. image: {
  19726. source: "./media/characters/typhek/foot.svg"
  19727. }
  19728. },
  19729. sole: {
  19730. height: math.unit(2.05, "feet"),
  19731. name: "Sole",
  19732. image: {
  19733. source: "./media/characters/typhek/sole.svg"
  19734. }
  19735. },
  19736. },
  19737. [
  19738. {
  19739. name: "Macro",
  19740. height: math.unit(40, "stories"),
  19741. default: true
  19742. },
  19743. {
  19744. name: "Megamacro",
  19745. height: math.unit(1, "mile")
  19746. },
  19747. {
  19748. name: "Gigamacro",
  19749. height: math.unit(4000, "solarradii")
  19750. },
  19751. {
  19752. name: "Universal",
  19753. height: math.unit(1.1, "universes")
  19754. }
  19755. ]
  19756. ))
  19757. characterMakers.push(() => makeCharacter(
  19758. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19759. {
  19760. side: {
  19761. height: math.unit(5 + 7 / 12, "feet"),
  19762. weight: math.unit(150, "lb"),
  19763. name: "Side",
  19764. image: {
  19765. source: "./media/characters/kassy/side.svg",
  19766. extra: 1280 / 1225,
  19767. bottom: 0.002
  19768. }
  19769. },
  19770. front: {
  19771. height: math.unit(5 + 7 / 12, "feet"),
  19772. weight: math.unit(150, "lb"),
  19773. name: "Front",
  19774. image: {
  19775. source: "./media/characters/kassy/front.svg",
  19776. extra: 1280 / 1225,
  19777. bottom: 0.025
  19778. }
  19779. },
  19780. back: {
  19781. height: math.unit(5 + 7 / 12, "feet"),
  19782. weight: math.unit(150, "lb"),
  19783. name: "Back",
  19784. image: {
  19785. source: "./media/characters/kassy/back.svg",
  19786. extra: 1280 / 1225,
  19787. bottom: 0.002
  19788. }
  19789. },
  19790. foot: {
  19791. height: math.unit(1.266, "feet"),
  19792. name: "Foot",
  19793. image: {
  19794. source: "./media/characters/kassy/foot.svg"
  19795. }
  19796. },
  19797. },
  19798. [
  19799. {
  19800. name: "Normal",
  19801. height: math.unit(5 + 7 / 12, "feet")
  19802. },
  19803. {
  19804. name: "Macro",
  19805. height: math.unit(137, "feet"),
  19806. default: true
  19807. },
  19808. {
  19809. name: "Megamacro",
  19810. height: math.unit(1, "mile")
  19811. },
  19812. ]
  19813. ))
  19814. characterMakers.push(() => makeCharacter(
  19815. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19816. {
  19817. front: {
  19818. height: math.unit(6 + 1 / 12, "feet"),
  19819. weight: math.unit(200, "lb"),
  19820. name: "Front",
  19821. image: {
  19822. source: "./media/characters/neil/front.svg",
  19823. extra: 1326 / 1250,
  19824. bottom: 0.023
  19825. }
  19826. },
  19827. },
  19828. [
  19829. {
  19830. name: "Normal",
  19831. height: math.unit(6 + 1 / 12, "feet"),
  19832. default: true
  19833. },
  19834. {
  19835. name: "Macro",
  19836. height: math.unit(200, "feet")
  19837. },
  19838. ]
  19839. ))
  19840. characterMakers.push(() => makeCharacter(
  19841. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19842. {
  19843. front: {
  19844. height: math.unit(5 + 9 / 12, "feet"),
  19845. weight: math.unit(190, "lb"),
  19846. name: "Front",
  19847. image: {
  19848. source: "./media/characters/atticus/front.svg",
  19849. extra: 2934 / 2785,
  19850. bottom: 0.025
  19851. }
  19852. },
  19853. },
  19854. [
  19855. {
  19856. name: "Normal",
  19857. height: math.unit(5 + 9 / 12, "feet"),
  19858. default: true
  19859. },
  19860. {
  19861. name: "Macro",
  19862. height: math.unit(180, "feet")
  19863. },
  19864. ]
  19865. ))
  19866. characterMakers.push(() => makeCharacter(
  19867. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19868. {
  19869. side: {
  19870. height: math.unit(9, "feet"),
  19871. weight: math.unit(650, "lb"),
  19872. name: "Side",
  19873. image: {
  19874. source: "./media/characters/milo/side.svg",
  19875. extra: 2644 / 2310,
  19876. bottom: 0.032
  19877. }
  19878. },
  19879. },
  19880. [
  19881. {
  19882. name: "Normal",
  19883. height: math.unit(9, "feet"),
  19884. default: true
  19885. },
  19886. {
  19887. name: "Macro",
  19888. height: math.unit(300, "feet")
  19889. },
  19890. ]
  19891. ))
  19892. characterMakers.push(() => makeCharacter(
  19893. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19894. {
  19895. side: {
  19896. height: math.unit(8, "meters"),
  19897. weight: math.unit(90000, "kg"),
  19898. name: "Side",
  19899. image: {
  19900. source: "./media/characters/ijzer/side.svg",
  19901. extra: 2756 / 1600,
  19902. bottom: 0.01
  19903. }
  19904. },
  19905. },
  19906. [
  19907. {
  19908. name: "Small",
  19909. height: math.unit(3, "meters")
  19910. },
  19911. {
  19912. name: "Normal",
  19913. height: math.unit(8, "meters"),
  19914. default: true
  19915. },
  19916. {
  19917. name: "Normal+",
  19918. height: math.unit(10, "meters")
  19919. },
  19920. {
  19921. name: "Bigger",
  19922. height: math.unit(24, "meters")
  19923. },
  19924. {
  19925. name: "Huge",
  19926. height: math.unit(80, "meters")
  19927. },
  19928. ]
  19929. ))
  19930. characterMakers.push(() => makeCharacter(
  19931. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19932. {
  19933. front: {
  19934. height: math.unit(6 + 2 / 12, "feet"),
  19935. weight: math.unit(153, "lb"),
  19936. name: "Front",
  19937. image: {
  19938. source: "./media/characters/luca-cervicum/front.svg",
  19939. extra: 370 / 327,
  19940. bottom: 0.015
  19941. }
  19942. },
  19943. back: {
  19944. height: math.unit(6 + 2 / 12, "feet"),
  19945. weight: math.unit(153, "lb"),
  19946. name: "Back",
  19947. image: {
  19948. source: "./media/characters/luca-cervicum/back.svg",
  19949. extra: 367 / 333,
  19950. bottom: 0.005
  19951. }
  19952. },
  19953. frontGear: {
  19954. height: math.unit(6 + 2 / 12, "feet"),
  19955. weight: math.unit(173, "lb"),
  19956. name: "Front (Gear)",
  19957. image: {
  19958. source: "./media/characters/luca-cervicum/front-gear.svg",
  19959. extra: 377 / 333,
  19960. bottom: 0.006
  19961. }
  19962. },
  19963. },
  19964. [
  19965. {
  19966. name: "Normal",
  19967. height: math.unit(6 + 2 / 12, "feet"),
  19968. default: true
  19969. },
  19970. ]
  19971. ))
  19972. characterMakers.push(() => makeCharacter(
  19973. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19974. {
  19975. front: {
  19976. height: math.unit(6 + 1 / 12, "feet"),
  19977. weight: math.unit(304, "lb"),
  19978. name: "Front",
  19979. image: {
  19980. source: "./media/characters/oliver/front.svg",
  19981. extra: 157 / 143,
  19982. bottom: 0.08
  19983. }
  19984. },
  19985. },
  19986. [
  19987. {
  19988. name: "Normal",
  19989. height: math.unit(6 + 1 / 12, "feet"),
  19990. default: true
  19991. },
  19992. ]
  19993. ))
  19994. characterMakers.push(() => makeCharacter(
  19995. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19996. {
  19997. front: {
  19998. height: math.unit(5 + 7 / 12, "feet"),
  19999. weight: math.unit(140, "lb"),
  20000. name: "Front",
  20001. image: {
  20002. source: "./media/characters/shane/front.svg",
  20003. extra: 304 / 289,
  20004. bottom: 0.005
  20005. }
  20006. },
  20007. },
  20008. [
  20009. {
  20010. name: "Normal",
  20011. height: math.unit(5 + 7 / 12, "feet"),
  20012. default: true
  20013. },
  20014. ]
  20015. ))
  20016. characterMakers.push(() => makeCharacter(
  20017. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20018. {
  20019. front: {
  20020. height: math.unit(5 + 9 / 12, "feet"),
  20021. weight: math.unit(178, "lb"),
  20022. name: "Front",
  20023. image: {
  20024. source: "./media/characters/shin/front.svg",
  20025. extra: 159 / 151,
  20026. bottom: 0.015
  20027. }
  20028. },
  20029. },
  20030. [
  20031. {
  20032. name: "Normal",
  20033. height: math.unit(5 + 9 / 12, "feet"),
  20034. default: true
  20035. },
  20036. ]
  20037. ))
  20038. characterMakers.push(() => makeCharacter(
  20039. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20040. {
  20041. front: {
  20042. height: math.unit(5 + 10 / 12, "feet"),
  20043. weight: math.unit(168, "lb"),
  20044. name: "Front",
  20045. image: {
  20046. source: "./media/characters/xerxes/front.svg",
  20047. extra: 282 / 260,
  20048. bottom: 0.045
  20049. }
  20050. },
  20051. },
  20052. [
  20053. {
  20054. name: "Normal",
  20055. height: math.unit(5 + 10 / 12, "feet"),
  20056. default: true
  20057. },
  20058. ]
  20059. ))
  20060. characterMakers.push(() => makeCharacter(
  20061. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20062. {
  20063. front: {
  20064. height: math.unit(6 + 7 / 12, "feet"),
  20065. weight: math.unit(208, "lb"),
  20066. name: "Front",
  20067. image: {
  20068. source: "./media/characters/chaska/front.svg",
  20069. extra: 332 / 319,
  20070. bottom: 0.015
  20071. }
  20072. },
  20073. },
  20074. [
  20075. {
  20076. name: "Normal",
  20077. height: math.unit(6 + 7 / 12, "feet"),
  20078. default: true
  20079. },
  20080. ]
  20081. ))
  20082. characterMakers.push(() => makeCharacter(
  20083. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20084. {
  20085. front: {
  20086. height: math.unit(5 + 8 / 12, "feet"),
  20087. weight: math.unit(208, "lb"),
  20088. name: "Front",
  20089. image: {
  20090. source: "./media/characters/enuk/front.svg",
  20091. extra: 437 / 406,
  20092. bottom: 0.02
  20093. }
  20094. },
  20095. },
  20096. [
  20097. {
  20098. name: "Normal",
  20099. height: math.unit(5 + 8 / 12, "feet"),
  20100. default: true
  20101. },
  20102. ]
  20103. ))
  20104. characterMakers.push(() => makeCharacter(
  20105. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20106. {
  20107. front: {
  20108. height: math.unit(5 + 10 / 12, "feet"),
  20109. weight: math.unit(252, "lb"),
  20110. name: "Front",
  20111. image: {
  20112. source: "./media/characters/bruun/front.svg",
  20113. extra: 197 / 187,
  20114. bottom: 0.012
  20115. }
  20116. },
  20117. },
  20118. [
  20119. {
  20120. name: "Normal",
  20121. height: math.unit(5 + 10 / 12, "feet"),
  20122. default: true
  20123. },
  20124. ]
  20125. ))
  20126. characterMakers.push(() => makeCharacter(
  20127. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20128. {
  20129. front: {
  20130. height: math.unit(6 + 10 / 12, "feet"),
  20131. weight: math.unit(255, "lb"),
  20132. name: "Front",
  20133. image: {
  20134. source: "./media/characters/alexeev/front.svg",
  20135. extra: 213 / 200,
  20136. bottom: 0.05
  20137. }
  20138. },
  20139. },
  20140. [
  20141. {
  20142. name: "Normal",
  20143. height: math.unit(6 + 10 / 12, "feet"),
  20144. default: true
  20145. },
  20146. ]
  20147. ))
  20148. characterMakers.push(() => makeCharacter(
  20149. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20150. {
  20151. front: {
  20152. height: math.unit(2 + 8 / 12, "feet"),
  20153. weight: math.unit(22, "lb"),
  20154. name: "Front",
  20155. image: {
  20156. source: "./media/characters/evelyn/front.svg",
  20157. extra: 208 / 180
  20158. }
  20159. },
  20160. },
  20161. [
  20162. {
  20163. name: "Normal",
  20164. height: math.unit(2 + 8 / 12, "feet"),
  20165. default: true
  20166. },
  20167. ]
  20168. ))
  20169. characterMakers.push(() => makeCharacter(
  20170. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20171. {
  20172. front: {
  20173. height: math.unit(5 + 9 / 12, "feet"),
  20174. weight: math.unit(139, "lb"),
  20175. name: "Front",
  20176. image: {
  20177. source: "./media/characters/inca/front.svg",
  20178. extra: 294 / 291,
  20179. bottom: 0.03
  20180. }
  20181. },
  20182. },
  20183. [
  20184. {
  20185. name: "Normal",
  20186. height: math.unit(5 + 9 / 12, "feet"),
  20187. default: true
  20188. },
  20189. ]
  20190. ))
  20191. characterMakers.push(() => makeCharacter(
  20192. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20193. {
  20194. front: {
  20195. height: math.unit(6 + 3 / 12, "feet"),
  20196. weight: math.unit(185, "lb"),
  20197. name: "Front",
  20198. image: {
  20199. source: "./media/characters/mera/front.svg",
  20200. extra: 291 / 277,
  20201. bottom: 0.03
  20202. }
  20203. },
  20204. },
  20205. [
  20206. {
  20207. name: "Normal",
  20208. height: math.unit(6 + 3 / 12, "feet"),
  20209. default: true
  20210. },
  20211. ]
  20212. ))
  20213. characterMakers.push(() => makeCharacter(
  20214. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20215. {
  20216. front: {
  20217. height: math.unit(6 + 7 / 12, "feet"),
  20218. weight: math.unit(160, "lb"),
  20219. name: "Front",
  20220. image: {
  20221. source: "./media/characters/ceres/front.svg",
  20222. extra: 1023 / 950,
  20223. bottom: 0.027
  20224. }
  20225. },
  20226. back: {
  20227. height: math.unit(6 + 7 / 12, "feet"),
  20228. weight: math.unit(160, "lb"),
  20229. name: "Back",
  20230. image: {
  20231. source: "./media/characters/ceres/back.svg",
  20232. extra: 1023 / 950
  20233. }
  20234. },
  20235. },
  20236. [
  20237. {
  20238. name: "Normal",
  20239. height: math.unit(6 + 7 / 12, "feet"),
  20240. default: true
  20241. },
  20242. ]
  20243. ))
  20244. characterMakers.push(() => makeCharacter(
  20245. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20246. {
  20247. front: {
  20248. height: math.unit(5 + 10 / 12, "feet"),
  20249. weight: math.unit(150, "lb"),
  20250. name: "Front",
  20251. image: {
  20252. source: "./media/characters/kris/front.svg",
  20253. extra: 885 / 803,
  20254. bottom: 0.03
  20255. }
  20256. },
  20257. },
  20258. [
  20259. {
  20260. name: "Normal",
  20261. height: math.unit(5 + 10 / 12, "feet"),
  20262. default: true
  20263. },
  20264. ]
  20265. ))
  20266. characterMakers.push(() => makeCharacter(
  20267. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20268. {
  20269. front: {
  20270. height: math.unit(7, "feet"),
  20271. weight: math.unit(120, "kg"),
  20272. name: "Front",
  20273. image: {
  20274. source: "./media/characters/taluthus/front.svg",
  20275. extra: 903 / 833,
  20276. bottom: 0.015
  20277. }
  20278. },
  20279. },
  20280. [
  20281. {
  20282. name: "Normal",
  20283. height: math.unit(7, "feet"),
  20284. default: true
  20285. },
  20286. {
  20287. name: "Macro",
  20288. height: math.unit(300, "feet")
  20289. },
  20290. ]
  20291. ))
  20292. characterMakers.push(() => makeCharacter(
  20293. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20294. {
  20295. front: {
  20296. height: math.unit(5 + 9 / 12, "feet"),
  20297. weight: math.unit(145, "lb"),
  20298. name: "Front",
  20299. image: {
  20300. source: "./media/characters/dawn/front.svg",
  20301. extra: 2094 / 2016,
  20302. bottom: 0.025
  20303. }
  20304. },
  20305. back: {
  20306. height: math.unit(5 + 9 / 12, "feet"),
  20307. weight: math.unit(160, "lb"),
  20308. name: "Back",
  20309. image: {
  20310. source: "./media/characters/dawn/back.svg",
  20311. extra: 2112 / 2080,
  20312. bottom: 0.005
  20313. }
  20314. },
  20315. },
  20316. [
  20317. {
  20318. name: "Normal",
  20319. height: math.unit(6 + 7 / 12, "feet"),
  20320. default: true
  20321. },
  20322. ]
  20323. ))
  20324. characterMakers.push(() => makeCharacter(
  20325. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20326. {
  20327. anthro: {
  20328. height: math.unit(8 + 3 / 12, "feet"),
  20329. weight: math.unit(450, "lb"),
  20330. name: "Anthro",
  20331. image: {
  20332. source: "./media/characters/arador/anthro.svg",
  20333. extra: 1835 / 1718,
  20334. bottom: 0.025
  20335. }
  20336. },
  20337. feral: {
  20338. height: math.unit(4, "feet"),
  20339. weight: math.unit(200, "lb"),
  20340. name: "Feral",
  20341. image: {
  20342. source: "./media/characters/arador/feral.svg",
  20343. extra: 1683 / 1514,
  20344. bottom: 0.07
  20345. }
  20346. },
  20347. },
  20348. [
  20349. {
  20350. name: "Normal",
  20351. height: math.unit(8 + 3 / 12, "feet")
  20352. },
  20353. {
  20354. name: "Macro",
  20355. height: math.unit(82.5, "feet"),
  20356. default: true
  20357. },
  20358. ]
  20359. ))
  20360. characterMakers.push(() => makeCharacter(
  20361. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20362. {
  20363. front: {
  20364. height: math.unit(5 + 10 / 12, "feet"),
  20365. weight: math.unit(125, "lb"),
  20366. name: "Front",
  20367. image: {
  20368. source: "./media/characters/dharsi/front.svg",
  20369. extra: 716 / 630,
  20370. bottom: 0.035
  20371. }
  20372. },
  20373. },
  20374. [
  20375. {
  20376. name: "Nano",
  20377. height: math.unit(100, "nm")
  20378. },
  20379. {
  20380. name: "Micro",
  20381. height: math.unit(2, "inches")
  20382. },
  20383. {
  20384. name: "Normal",
  20385. height: math.unit(5 + 10 / 12, "feet"),
  20386. default: true
  20387. },
  20388. {
  20389. name: "Macro",
  20390. height: math.unit(1000, "feet")
  20391. },
  20392. {
  20393. name: "Megamacro",
  20394. height: math.unit(10, "miles")
  20395. },
  20396. {
  20397. name: "Gigamacro",
  20398. height: math.unit(3000, "miles")
  20399. },
  20400. {
  20401. name: "Teramacro",
  20402. height: math.unit(500000, "miles")
  20403. },
  20404. {
  20405. name: "Teramacro+",
  20406. height: math.unit(30, "galaxies")
  20407. },
  20408. ]
  20409. ))
  20410. characterMakers.push(() => makeCharacter(
  20411. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20412. {
  20413. front: {
  20414. height: math.unit(6, "feet"),
  20415. weight: math.unit(150, "lb"),
  20416. name: "Front",
  20417. image: {
  20418. source: "./media/characters/deathy/front.svg",
  20419. extra: 1552 / 1463,
  20420. bottom: 0.025
  20421. }
  20422. },
  20423. side: {
  20424. height: math.unit(6, "feet"),
  20425. weight: math.unit(150, "lb"),
  20426. name: "Side",
  20427. image: {
  20428. source: "./media/characters/deathy/side.svg",
  20429. extra: 1604 / 1455,
  20430. bottom: 0.025
  20431. }
  20432. },
  20433. back: {
  20434. height: math.unit(6, "feet"),
  20435. weight: math.unit(150, "lb"),
  20436. name: "Back",
  20437. image: {
  20438. source: "./media/characters/deathy/back.svg",
  20439. extra: 1580 / 1463,
  20440. bottom: 0.005
  20441. }
  20442. },
  20443. },
  20444. [
  20445. {
  20446. name: "Micro",
  20447. height: math.unit(5, "millimeters")
  20448. },
  20449. {
  20450. name: "Normal",
  20451. height: math.unit(6 + 5 / 12, "feet"),
  20452. default: true
  20453. },
  20454. ]
  20455. ))
  20456. characterMakers.push(() => makeCharacter(
  20457. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20458. {
  20459. front: {
  20460. height: math.unit(16, "feet"),
  20461. weight: math.unit(4000, "lb"),
  20462. name: "Front",
  20463. image: {
  20464. source: "./media/characters/juniper/front.svg",
  20465. bottom: 0.04
  20466. }
  20467. },
  20468. },
  20469. [
  20470. {
  20471. name: "Normal",
  20472. height: math.unit(16, "feet"),
  20473. default: true
  20474. },
  20475. ]
  20476. ))
  20477. characterMakers.push(() => makeCharacter(
  20478. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20479. {
  20480. front: {
  20481. height: math.unit(6, "feet"),
  20482. weight: math.unit(150, "lb"),
  20483. name: "Front",
  20484. image: {
  20485. source: "./media/characters/hipster/front.svg",
  20486. extra: 1312 / 1209,
  20487. bottom: 0.025
  20488. }
  20489. },
  20490. back: {
  20491. height: math.unit(6, "feet"),
  20492. weight: math.unit(150, "lb"),
  20493. name: "Back",
  20494. image: {
  20495. source: "./media/characters/hipster/back.svg",
  20496. extra: 1281 / 1196,
  20497. bottom: 0.01
  20498. }
  20499. },
  20500. },
  20501. [
  20502. {
  20503. name: "Micro",
  20504. height: math.unit(1, "mm")
  20505. },
  20506. {
  20507. name: "Normal",
  20508. height: math.unit(4, "inches"),
  20509. default: true
  20510. },
  20511. {
  20512. name: "Macro",
  20513. height: math.unit(500, "feet")
  20514. },
  20515. {
  20516. name: "Megamacro",
  20517. height: math.unit(1000, "miles")
  20518. },
  20519. ]
  20520. ))
  20521. characterMakers.push(() => makeCharacter(
  20522. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20523. {
  20524. front: {
  20525. height: math.unit(6, "feet"),
  20526. weight: math.unit(150, "lb"),
  20527. name: "Front",
  20528. image: {
  20529. source: "./media/characters/tendirmuldr/front.svg",
  20530. extra: 1878 / 1772,
  20531. bottom: 0.015
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Megamacro",
  20538. height: math.unit(1500, "miles"),
  20539. default: true
  20540. },
  20541. ]
  20542. ))
  20543. characterMakers.push(() => makeCharacter(
  20544. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20545. {
  20546. front: {
  20547. height: math.unit(14, "feet"),
  20548. weight: math.unit(12000, "lb"),
  20549. name: "Front",
  20550. image: {
  20551. source: "./media/characters/mort/front.svg",
  20552. extra: 365 / 318,
  20553. bottom: 0.01
  20554. }
  20555. },
  20556. side: {
  20557. height: math.unit(14, "feet"),
  20558. weight: math.unit(12000, "lb"),
  20559. name: "Side",
  20560. image: {
  20561. source: "./media/characters/mort/side.svg",
  20562. extra: 365 / 318,
  20563. bottom: 0.052
  20564. },
  20565. default: true
  20566. },
  20567. back: {
  20568. height: math.unit(14, "feet"),
  20569. weight: math.unit(12000, "lb"),
  20570. name: "Back",
  20571. image: {
  20572. source: "./media/characters/mort/back.svg",
  20573. extra: 371 / 332,
  20574. bottom: 0.18
  20575. }
  20576. },
  20577. },
  20578. [
  20579. {
  20580. name: "Normal",
  20581. height: math.unit(14, "feet"),
  20582. default: true
  20583. },
  20584. ]
  20585. ))
  20586. characterMakers.push(() => makeCharacter(
  20587. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20588. {
  20589. front: {
  20590. height: math.unit(8, "feet"),
  20591. weight: math.unit(1, "ton"),
  20592. name: "Front",
  20593. image: {
  20594. source: "./media/characters/lycoa/front.svg",
  20595. extra: 1875 / 1789,
  20596. bottom: 0.022
  20597. }
  20598. },
  20599. back: {
  20600. height: math.unit(8, "feet"),
  20601. weight: math.unit(1, "ton"),
  20602. name: "Back",
  20603. image: {
  20604. source: "./media/characters/lycoa/back.svg",
  20605. extra: 1835 / 1781,
  20606. bottom: 0.03
  20607. }
  20608. },
  20609. head: {
  20610. height: math.unit(2.1, "feet"),
  20611. name: "Head",
  20612. image: {
  20613. source: "./media/characters/lycoa/head.svg"
  20614. }
  20615. },
  20616. tailmaw: {
  20617. height: math.unit(1.9, "feet"),
  20618. name: "Tailmaw",
  20619. image: {
  20620. source: "./media/characters/lycoa/tailmaw.svg"
  20621. }
  20622. },
  20623. tentacles: {
  20624. height: math.unit(2.1, "feet"),
  20625. name: "Tentacles",
  20626. image: {
  20627. source: "./media/characters/lycoa/tentacles.svg"
  20628. }
  20629. },
  20630. dick: {
  20631. height: math.unit(1.73, "feet"),
  20632. name: "Dick",
  20633. image: {
  20634. source: "./media/characters/lycoa/dick.svg"
  20635. }
  20636. },
  20637. },
  20638. [
  20639. {
  20640. name: "Normal",
  20641. height: math.unit(8, "feet"),
  20642. default: true
  20643. },
  20644. {
  20645. name: "Macro",
  20646. height: math.unit(30, "feet")
  20647. },
  20648. ]
  20649. ))
  20650. characterMakers.push(() => makeCharacter(
  20651. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20652. {
  20653. front: {
  20654. height: math.unit(4 + 2 / 12, "feet"),
  20655. weight: math.unit(70, "lb"),
  20656. name: "Front",
  20657. image: {
  20658. source: "./media/characters/naldara/front.svg",
  20659. extra: 841 / 720,
  20660. bottom: 0.04
  20661. }
  20662. },
  20663. naga: {
  20664. height: math.unit(23, "feet"),
  20665. weight: math.unit(15000, "kg"),
  20666. name: "Naga",
  20667. image: {
  20668. source: "./media/characters/naldara/naga.svg",
  20669. extra: 3290 / 2959,
  20670. bottom: 124 / 3432
  20671. }
  20672. },
  20673. },
  20674. [
  20675. {
  20676. name: "Normal",
  20677. height: math.unit(4 + 2 / 12, "feet"),
  20678. default: true
  20679. },
  20680. ]
  20681. ))
  20682. characterMakers.push(() => makeCharacter(
  20683. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20684. {
  20685. front: {
  20686. height: math.unit(13 + 7 / 12, "feet"),
  20687. weight: math.unit(1500, "lb"),
  20688. name: "Front",
  20689. image: {
  20690. source: "./media/characters/briar/front.svg",
  20691. extra: 626 / 596,
  20692. bottom: 0.08
  20693. }
  20694. },
  20695. },
  20696. [
  20697. {
  20698. name: "Normal",
  20699. height: math.unit(13 + 7 / 12, "feet"),
  20700. default: true
  20701. },
  20702. ]
  20703. ))
  20704. characterMakers.push(() => makeCharacter(
  20705. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20706. {
  20707. side: {
  20708. height: math.unit(10, "feet"),
  20709. weight: math.unit(500, "lb"),
  20710. name: "Side",
  20711. image: {
  20712. source: "./media/characters/vanguard/side.svg",
  20713. extra: 502 / 425,
  20714. bottom: 0.087
  20715. }
  20716. },
  20717. },
  20718. [
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(10, "feet"),
  20722. default: true
  20723. },
  20724. ]
  20725. ))
  20726. characterMakers.push(() => makeCharacter(
  20727. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20728. {
  20729. front: {
  20730. height: math.unit(7.5, "feet"),
  20731. weight: math.unit(2, "lb"),
  20732. name: "Front",
  20733. image: {
  20734. source: "./media/characters/artemis/front.svg",
  20735. extra: 1192 / 1075,
  20736. bottom: 0.07
  20737. }
  20738. },
  20739. frontNsfw: {
  20740. height: math.unit(7.5, "feet"),
  20741. weight: math.unit(2, "lb"),
  20742. name: "Front (NSFW)",
  20743. image: {
  20744. source: "./media/characters/artemis/front-nsfw.svg",
  20745. extra: 1192 / 1075,
  20746. bottom: 0.07
  20747. }
  20748. },
  20749. frontNsfwer: {
  20750. height: math.unit(7.5, "feet"),
  20751. weight: math.unit(2, "lb"),
  20752. name: "Front (NSFW-er)",
  20753. image: {
  20754. source: "./media/characters/artemis/front-nsfwer.svg",
  20755. extra: 1192 / 1075,
  20756. bottom: 0.07
  20757. }
  20758. },
  20759. side: {
  20760. height: math.unit(7.5, "feet"),
  20761. weight: math.unit(2, "lb"),
  20762. name: "Side",
  20763. image: {
  20764. source: "./media/characters/artemis/side.svg",
  20765. extra: 1192 / 1075,
  20766. bottom: 0.07
  20767. }
  20768. },
  20769. sideNsfw: {
  20770. height: math.unit(7.5, "feet"),
  20771. weight: math.unit(2, "lb"),
  20772. name: "Side (NSFW)",
  20773. image: {
  20774. source: "./media/characters/artemis/side-nsfw.svg",
  20775. extra: 1192 / 1075,
  20776. bottom: 0.07
  20777. }
  20778. },
  20779. sideNsfwer: {
  20780. height: math.unit(7.5, "feet"),
  20781. weight: math.unit(2, "lb"),
  20782. name: "Side (NSFW-er)",
  20783. image: {
  20784. source: "./media/characters/artemis/side-nsfwer.svg",
  20785. extra: 1192 / 1075,
  20786. bottom: 0.07
  20787. }
  20788. },
  20789. maw: {
  20790. height: math.unit(1.1, "feet"),
  20791. name: "Maw",
  20792. image: {
  20793. source: "./media/characters/artemis/maw.svg"
  20794. }
  20795. },
  20796. stomach: {
  20797. height: math.unit(0.95, "feet"),
  20798. name: "Stomach",
  20799. image: {
  20800. source: "./media/characters/artemis/stomach.svg"
  20801. }
  20802. },
  20803. dickCanine: {
  20804. height: math.unit(1, "feet"),
  20805. name: "Dick (Canine)",
  20806. image: {
  20807. source: "./media/characters/artemis/dick-canine.svg"
  20808. }
  20809. },
  20810. dickEquine: {
  20811. height: math.unit(0.85, "feet"),
  20812. name: "Dick (Equine)",
  20813. image: {
  20814. source: "./media/characters/artemis/dick-equine.svg"
  20815. }
  20816. },
  20817. dickExotic: {
  20818. height: math.unit(0.85, "feet"),
  20819. name: "Dick (Exotic)",
  20820. image: {
  20821. source: "./media/characters/artemis/dick-exotic.svg"
  20822. }
  20823. },
  20824. },
  20825. [
  20826. {
  20827. name: "Normal",
  20828. height: math.unit(7.5, "feet"),
  20829. default: true
  20830. },
  20831. {
  20832. name: "Enlarged",
  20833. height: math.unit(12, "feet")
  20834. },
  20835. ]
  20836. ))
  20837. characterMakers.push(() => makeCharacter(
  20838. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20839. {
  20840. front: {
  20841. height: math.unit(5 + 3 / 12, "feet"),
  20842. weight: math.unit(160, "lb"),
  20843. name: "Front",
  20844. image: {
  20845. source: "./media/characters/kira/front.svg",
  20846. extra: 906 / 786,
  20847. bottom: 0.01
  20848. }
  20849. },
  20850. back: {
  20851. height: math.unit(5 + 3 / 12, "feet"),
  20852. weight: math.unit(160, "lb"),
  20853. name: "Back",
  20854. image: {
  20855. source: "./media/characters/kira/back.svg",
  20856. extra: 882 / 757,
  20857. bottom: 0.005
  20858. }
  20859. },
  20860. frontDressed: {
  20861. height: math.unit(5 + 3 / 12, "feet"),
  20862. weight: math.unit(160, "lb"),
  20863. name: "Front (Dressed)",
  20864. image: {
  20865. source: "./media/characters/kira/front-dressed.svg",
  20866. extra: 906 / 786,
  20867. bottom: 0.01
  20868. }
  20869. },
  20870. beans: {
  20871. height: math.unit(0.92, "feet"),
  20872. name: "Beans",
  20873. image: {
  20874. source: "./media/characters/kira/beans.svg"
  20875. }
  20876. },
  20877. },
  20878. [
  20879. {
  20880. name: "Normal",
  20881. height: math.unit(5 + 3 / 12, "feet"),
  20882. default: true
  20883. },
  20884. ]
  20885. ))
  20886. characterMakers.push(() => makeCharacter(
  20887. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20888. {
  20889. front: {
  20890. height: math.unit(5 + 4 / 12, "feet"),
  20891. weight: math.unit(145, "lb"),
  20892. name: "Front",
  20893. image: {
  20894. source: "./media/characters/scramble/front.svg",
  20895. extra: 763 / 727,
  20896. bottom: 0.05
  20897. }
  20898. },
  20899. back: {
  20900. height: math.unit(5 + 4 / 12, "feet"),
  20901. weight: math.unit(145, "lb"),
  20902. name: "Back",
  20903. image: {
  20904. source: "./media/characters/scramble/back.svg",
  20905. extra: 826 / 737,
  20906. bottom: 0.002
  20907. }
  20908. },
  20909. },
  20910. [
  20911. {
  20912. name: "Normal",
  20913. height: math.unit(5 + 4 / 12, "feet"),
  20914. default: true
  20915. },
  20916. ]
  20917. ))
  20918. characterMakers.push(() => makeCharacter(
  20919. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20920. {
  20921. side: {
  20922. height: math.unit(6 + 2 / 12, "feet"),
  20923. weight: math.unit(190, "lb"),
  20924. name: "Side",
  20925. image: {
  20926. source: "./media/characters/biscuit/side.svg",
  20927. extra: 858 / 791,
  20928. bottom: 0.044
  20929. }
  20930. },
  20931. },
  20932. [
  20933. {
  20934. name: "Normal",
  20935. height: math.unit(6 + 2 / 12, "feet"),
  20936. default: true
  20937. },
  20938. ]
  20939. ))
  20940. characterMakers.push(() => makeCharacter(
  20941. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20942. {
  20943. front: {
  20944. height: math.unit(5 + 2 / 12, "feet"),
  20945. weight: math.unit(120, "lb"),
  20946. name: "Front",
  20947. image: {
  20948. source: "./media/characters/poffin/front.svg",
  20949. extra: 786 / 680,
  20950. bottom: 0.005
  20951. }
  20952. },
  20953. },
  20954. [
  20955. {
  20956. name: "Normal",
  20957. height: math.unit(5 + 2 / 12, "feet"),
  20958. default: true
  20959. },
  20960. ]
  20961. ))
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20964. {
  20965. front: {
  20966. height: math.unit(6 + 3 / 12, "feet"),
  20967. weight: math.unit(519, "lb"),
  20968. name: "Front",
  20969. image: {
  20970. source: "./media/characters/dhari/front.svg",
  20971. extra: 1048 / 946,
  20972. bottom: 0.015
  20973. }
  20974. },
  20975. back: {
  20976. height: math.unit(6 + 3 / 12, "feet"),
  20977. weight: math.unit(519, "lb"),
  20978. name: "Back",
  20979. image: {
  20980. source: "./media/characters/dhari/back.svg",
  20981. extra: 1048 / 931,
  20982. bottom: 0.005
  20983. }
  20984. },
  20985. frontDressed: {
  20986. height: math.unit(6 + 3 / 12, "feet"),
  20987. weight: math.unit(519, "lb"),
  20988. name: "Front (Dressed)",
  20989. image: {
  20990. source: "./media/characters/dhari/front-dressed.svg",
  20991. extra: 1713 / 1546,
  20992. bottom: 0.02
  20993. }
  20994. },
  20995. backDressed: {
  20996. height: math.unit(6 + 3 / 12, "feet"),
  20997. weight: math.unit(519, "lb"),
  20998. name: "Back (Dressed)",
  20999. image: {
  21000. source: "./media/characters/dhari/back-dressed.svg",
  21001. extra: 1699 / 1537,
  21002. bottom: 0.01
  21003. }
  21004. },
  21005. maw: {
  21006. height: math.unit(0.95, "feet"),
  21007. name: "Maw",
  21008. image: {
  21009. source: "./media/characters/dhari/maw.svg"
  21010. }
  21011. },
  21012. wereFront: {
  21013. height: math.unit(12 + 8 / 12, "feet"),
  21014. weight: math.unit(4000, "lb"),
  21015. name: "Front (Were)",
  21016. image: {
  21017. source: "./media/characters/dhari/were-front.svg",
  21018. extra: 1065 / 969,
  21019. bottom: 0.015
  21020. }
  21021. },
  21022. wereBack: {
  21023. height: math.unit(12 + 8 / 12, "feet"),
  21024. weight: math.unit(4000, "lb"),
  21025. name: "Back (Were)",
  21026. image: {
  21027. source: "./media/characters/dhari/were-back.svg",
  21028. extra: 1065 / 969,
  21029. bottom: 0.012
  21030. }
  21031. },
  21032. wereMaw: {
  21033. height: math.unit(0.625, "meters"),
  21034. name: "Maw (Were)",
  21035. image: {
  21036. source: "./media/characters/dhari/were-maw.svg"
  21037. }
  21038. },
  21039. },
  21040. [
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(6 + 3 / 12, "feet"),
  21044. default: true
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21050. {
  21051. anthro: {
  21052. height: math.unit(5 + 7 / 12, "feet"),
  21053. weight: math.unit(175, "lb"),
  21054. name: "Anthro",
  21055. image: {
  21056. source: "./media/characters/rena-dyne/anthro.svg",
  21057. extra: 1849 / 1785,
  21058. bottom: 0.005
  21059. }
  21060. },
  21061. taur: {
  21062. height: math.unit(15 + 6 / 12, "feet"),
  21063. weight: math.unit(8000, "lb"),
  21064. name: "Taur",
  21065. image: {
  21066. source: "./media/characters/rena-dyne/taur.svg",
  21067. extra: 2315 / 2234,
  21068. bottom: 0.033
  21069. }
  21070. },
  21071. },
  21072. [
  21073. {
  21074. name: "Normal",
  21075. height: math.unit(5 + 7 / 12, "feet"),
  21076. default: true
  21077. },
  21078. ]
  21079. ))
  21080. characterMakers.push(() => makeCharacter(
  21081. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21082. {
  21083. front: {
  21084. height: math.unit(8, "feet"),
  21085. weight: math.unit(600, "lb"),
  21086. name: "Front",
  21087. image: {
  21088. source: "./media/characters/weremeep/front.svg",
  21089. extra: 967 / 862,
  21090. bottom: 0.01
  21091. }
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Normal",
  21097. height: math.unit(8, "feet"),
  21098. default: true
  21099. },
  21100. {
  21101. name: "Lorg",
  21102. height: math.unit(12, "feet")
  21103. },
  21104. {
  21105. name: "Oh Lawd She Comin'",
  21106. height: math.unit(20, "feet")
  21107. },
  21108. ]
  21109. ))
  21110. characterMakers.push(() => makeCharacter(
  21111. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21112. {
  21113. front: {
  21114. height: math.unit(4, "feet"),
  21115. weight: math.unit(90, "lb"),
  21116. name: "Front",
  21117. image: {
  21118. source: "./media/characters/reza/front.svg",
  21119. extra: 1183 / 1111,
  21120. bottom: 0.017
  21121. }
  21122. },
  21123. back: {
  21124. height: math.unit(4, "feet"),
  21125. weight: math.unit(90, "lb"),
  21126. name: "Back",
  21127. image: {
  21128. source: "./media/characters/reza/back.svg",
  21129. extra: 1183 / 1111,
  21130. bottom: 0.01
  21131. }
  21132. },
  21133. drake: {
  21134. height: math.unit(30, "feet"),
  21135. weight: math.unit(246960, "lb"),
  21136. name: "Drake",
  21137. image: {
  21138. source: "./media/characters/reza/drake.svg",
  21139. extra: 2350 / 2024,
  21140. bottom: 60.7 / 2403
  21141. }
  21142. },
  21143. },
  21144. [
  21145. {
  21146. name: "Normal",
  21147. height: math.unit(4, "feet"),
  21148. default: true
  21149. },
  21150. ]
  21151. ))
  21152. characterMakers.push(() => makeCharacter(
  21153. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21154. {
  21155. side: {
  21156. height: math.unit(15, "feet"),
  21157. weight: math.unit(14, "tons"),
  21158. name: "Side",
  21159. image: {
  21160. source: "./media/characters/athea/side.svg",
  21161. extra: 960 / 540,
  21162. bottom: 0.003
  21163. }
  21164. },
  21165. sitting: {
  21166. height: math.unit(6 * 2.85, "feet"),
  21167. weight: math.unit(14, "tons"),
  21168. name: "Sitting",
  21169. image: {
  21170. source: "./media/characters/athea/sitting.svg",
  21171. extra: 621 / 581,
  21172. bottom: 0.075
  21173. }
  21174. },
  21175. maw: {
  21176. height: math.unit(7.59498031496063, "feet"),
  21177. name: "Maw",
  21178. image: {
  21179. source: "./media/characters/athea/maw.svg"
  21180. }
  21181. },
  21182. },
  21183. [
  21184. {
  21185. name: "Lap Cat",
  21186. height: math.unit(2.5, "feet")
  21187. },
  21188. {
  21189. name: "Minimacro",
  21190. height: math.unit(15, "feet"),
  21191. default: true
  21192. },
  21193. {
  21194. name: "Macro",
  21195. height: math.unit(120, "feet")
  21196. },
  21197. {
  21198. name: "Macro+",
  21199. height: math.unit(640, "feet")
  21200. },
  21201. {
  21202. name: "Colossus",
  21203. height: math.unit(2.2, "miles")
  21204. },
  21205. ]
  21206. ))
  21207. characterMakers.push(() => makeCharacter(
  21208. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21209. {
  21210. front: {
  21211. height: math.unit(8 + 8 / 12, "feet"),
  21212. weight: math.unit(130, "kg"),
  21213. name: "Front",
  21214. image: {
  21215. source: "./media/characters/seroko/front.svg",
  21216. extra: 1385 / 1280,
  21217. bottom: 0.025
  21218. }
  21219. },
  21220. back: {
  21221. height: math.unit(8 + 8 / 12, "feet"),
  21222. weight: math.unit(130, "kg"),
  21223. name: "Back",
  21224. image: {
  21225. source: "./media/characters/seroko/back.svg",
  21226. extra: 1369 / 1238,
  21227. bottom: 0.018
  21228. }
  21229. },
  21230. frontDressed: {
  21231. height: math.unit(8 + 8 / 12, "feet"),
  21232. weight: math.unit(130, "kg"),
  21233. name: "Front (Dressed)",
  21234. image: {
  21235. source: "./media/characters/seroko/front-dressed.svg",
  21236. extra: 1366 / 1275,
  21237. bottom: 0.03
  21238. }
  21239. },
  21240. },
  21241. [
  21242. {
  21243. name: "Normal",
  21244. height: math.unit(8 + 8 / 12, "feet"),
  21245. default: true
  21246. },
  21247. ]
  21248. ))
  21249. characterMakers.push(() => makeCharacter(
  21250. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21251. {
  21252. front: {
  21253. height: math.unit(5.5, "feet"),
  21254. weight: math.unit(160, "lb"),
  21255. name: "Front",
  21256. image: {
  21257. source: "./media/characters/quatzi/front.svg",
  21258. extra: 2346 / 2242,
  21259. bottom: 0.015
  21260. }
  21261. },
  21262. },
  21263. [
  21264. {
  21265. name: "Normal",
  21266. height: math.unit(5.5, "feet"),
  21267. default: true
  21268. },
  21269. {
  21270. name: "Big",
  21271. height: math.unit(7.7, "feet")
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21277. {
  21278. front: {
  21279. height: math.unit(5 + 11 / 12, "feet"),
  21280. weight: math.unit(180, "lb"),
  21281. name: "Front",
  21282. image: {
  21283. source: "./media/characters/sen/front.svg",
  21284. extra: 1321 / 1254,
  21285. bottom: 0.015
  21286. }
  21287. },
  21288. side: {
  21289. height: math.unit(5 + 11 / 12, "feet"),
  21290. weight: math.unit(180, "lb"),
  21291. name: "Side",
  21292. image: {
  21293. source: "./media/characters/sen/side.svg",
  21294. extra: 1321 / 1254,
  21295. bottom: 0.007
  21296. }
  21297. },
  21298. back: {
  21299. height: math.unit(5 + 11 / 12, "feet"),
  21300. weight: math.unit(180, "lb"),
  21301. name: "Back",
  21302. image: {
  21303. source: "./media/characters/sen/back.svg",
  21304. extra: 1321 / 1254
  21305. }
  21306. },
  21307. },
  21308. [
  21309. {
  21310. name: "Normal",
  21311. height: math.unit(5 + 11 / 12, "feet"),
  21312. default: true
  21313. },
  21314. ]
  21315. ))
  21316. characterMakers.push(() => makeCharacter(
  21317. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21318. {
  21319. front: {
  21320. height: math.unit(166.6, "cm"),
  21321. weight: math.unit(66.6, "kg"),
  21322. name: "Front",
  21323. image: {
  21324. source: "./media/characters/fruity/front.svg",
  21325. extra: 1510 / 1386,
  21326. bottom: 0.04
  21327. }
  21328. },
  21329. back: {
  21330. height: math.unit(166.6, "cm"),
  21331. weight: math.unit(66.6, "lb"),
  21332. name: "Back",
  21333. image: {
  21334. source: "./media/characters/fruity/back.svg",
  21335. extra: 1563 / 1435,
  21336. bottom: 0.005
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Normal",
  21343. height: math.unit(166.6, "cm"),
  21344. default: true
  21345. },
  21346. {
  21347. name: "Demonic",
  21348. height: math.unit(166.6, "feet")
  21349. },
  21350. ]
  21351. ))
  21352. characterMakers.push(() => makeCharacter(
  21353. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21354. {
  21355. side: {
  21356. height: math.unit(10, "feet"),
  21357. weight: math.unit(500, "lb"),
  21358. name: "Side",
  21359. image: {
  21360. source: "./media/characters/zost/side.svg",
  21361. extra: 966 / 880,
  21362. bottom: 0.075
  21363. }
  21364. },
  21365. mawFront: {
  21366. height: math.unit(1.08, "meters"),
  21367. name: "Maw (Front)",
  21368. image: {
  21369. source: "./media/characters/zost/maw-front.svg"
  21370. }
  21371. },
  21372. mawSide: {
  21373. height: math.unit(2.66, "feet"),
  21374. name: "Maw (Side)",
  21375. image: {
  21376. source: "./media/characters/zost/maw-side.svg"
  21377. }
  21378. },
  21379. },
  21380. [
  21381. {
  21382. name: "Normal",
  21383. height: math.unit(10, "feet"),
  21384. default: true
  21385. },
  21386. ]
  21387. ))
  21388. characterMakers.push(() => makeCharacter(
  21389. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21390. {
  21391. front: {
  21392. height: math.unit(5 + 4 / 12, "feet"),
  21393. weight: math.unit(120, "lb"),
  21394. name: "Front",
  21395. image: {
  21396. source: "./media/characters/luci/front.svg",
  21397. extra: 1985 / 1884,
  21398. bottom: 0.04
  21399. }
  21400. },
  21401. back: {
  21402. height: math.unit(5 + 4 / 12, "feet"),
  21403. weight: math.unit(120, "lb"),
  21404. name: "Back",
  21405. image: {
  21406. source: "./media/characters/luci/back.svg",
  21407. extra: 1892 / 1791,
  21408. bottom: 0.002
  21409. }
  21410. },
  21411. },
  21412. [
  21413. {
  21414. name: "Normal",
  21415. height: math.unit(5 + 4 / 12, "feet"),
  21416. default: true
  21417. },
  21418. ]
  21419. ))
  21420. characterMakers.push(() => makeCharacter(
  21421. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21422. {
  21423. front: {
  21424. height: math.unit(1500, "feet"),
  21425. weight: math.unit(3.8e6, "tons"),
  21426. name: "Front",
  21427. image: {
  21428. source: "./media/characters/2th/front.svg",
  21429. extra: 3489 / 3350,
  21430. bottom: 0.1
  21431. }
  21432. },
  21433. foot: {
  21434. height: math.unit(461, "feet"),
  21435. name: "Foot",
  21436. image: {
  21437. source: "./media/characters/2th/foot.svg"
  21438. }
  21439. },
  21440. },
  21441. [
  21442. {
  21443. name: "\"Micro\"",
  21444. height: math.unit(15 + 7 / 12, "feet")
  21445. },
  21446. {
  21447. name: "Normal",
  21448. height: math.unit(1500, "feet"),
  21449. default: true
  21450. },
  21451. {
  21452. name: "Macro",
  21453. height: math.unit(5000, "feet")
  21454. },
  21455. {
  21456. name: "Megamacro",
  21457. height: math.unit(15, "miles")
  21458. },
  21459. {
  21460. name: "Gigamacro",
  21461. height: math.unit(4000, "miles")
  21462. },
  21463. {
  21464. name: "Galactic",
  21465. height: math.unit(50, "AU")
  21466. },
  21467. ]
  21468. ))
  21469. characterMakers.push(() => makeCharacter(
  21470. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21471. {
  21472. front: {
  21473. height: math.unit(5 + 6 / 12, "feet"),
  21474. weight: math.unit(220, "lb"),
  21475. name: "Front",
  21476. image: {
  21477. source: "./media/characters/amethyst/front.svg",
  21478. extra: 2078 / 2040,
  21479. bottom: 0.045
  21480. }
  21481. },
  21482. back: {
  21483. height: math.unit(5 + 6 / 12, "feet"),
  21484. weight: math.unit(220, "lb"),
  21485. name: "Back",
  21486. image: {
  21487. source: "./media/characters/amethyst/back.svg",
  21488. extra: 2021 / 1989,
  21489. bottom: 0.02
  21490. }
  21491. },
  21492. },
  21493. [
  21494. {
  21495. name: "Normal",
  21496. height: math.unit(5 + 6 / 12, "feet"),
  21497. default: true
  21498. },
  21499. ]
  21500. ))
  21501. characterMakers.push(() => makeCharacter(
  21502. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21503. {
  21504. front: {
  21505. height: math.unit(4 + 11 / 12, "feet"),
  21506. weight: math.unit(120, "lb"),
  21507. name: "Front",
  21508. image: {
  21509. source: "./media/characters/yumi-akiyama/front.svg",
  21510. extra: 1327 / 1235,
  21511. bottom: 0.02
  21512. }
  21513. },
  21514. back: {
  21515. height: math.unit(4 + 11 / 12, "feet"),
  21516. weight: math.unit(120, "lb"),
  21517. name: "Back",
  21518. image: {
  21519. source: "./media/characters/yumi-akiyama/back.svg",
  21520. extra: 1287 / 1245,
  21521. bottom: 0.002
  21522. }
  21523. },
  21524. },
  21525. [
  21526. {
  21527. name: "Galactic",
  21528. height: math.unit(50, "galaxies"),
  21529. default: true
  21530. },
  21531. {
  21532. name: "Universal",
  21533. height: math.unit(100, "universes")
  21534. },
  21535. ]
  21536. ))
  21537. characterMakers.push(() => makeCharacter(
  21538. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21539. {
  21540. front: {
  21541. height: math.unit(8, "feet"),
  21542. weight: math.unit(500, "lb"),
  21543. name: "Front",
  21544. image: {
  21545. source: "./media/characters/rifter-yrmori/front.svg",
  21546. extra: 1180 / 1125,
  21547. bottom: 0.02
  21548. }
  21549. },
  21550. back: {
  21551. height: math.unit(8, "feet"),
  21552. weight: math.unit(500, "lb"),
  21553. name: "Back",
  21554. image: {
  21555. source: "./media/characters/rifter-yrmori/back.svg",
  21556. extra: 1190 / 1145,
  21557. bottom: 0.001
  21558. }
  21559. },
  21560. wings: {
  21561. height: math.unit(7.75, "feet"),
  21562. weight: math.unit(500, "lb"),
  21563. name: "Wings",
  21564. image: {
  21565. source: "./media/characters/rifter-yrmori/wings.svg",
  21566. extra: 1357 / 1285
  21567. }
  21568. },
  21569. maw: {
  21570. height: math.unit(0.8, "feet"),
  21571. name: "Maw",
  21572. image: {
  21573. source: "./media/characters/rifter-yrmori/maw.svg"
  21574. }
  21575. },
  21576. mawfront: {
  21577. height: math.unit(1.45, "feet"),
  21578. name: "Maw (Front)",
  21579. image: {
  21580. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21581. }
  21582. },
  21583. },
  21584. [
  21585. {
  21586. name: "Normal",
  21587. height: math.unit(8, "feet"),
  21588. default: true
  21589. },
  21590. {
  21591. name: "Macro",
  21592. height: math.unit(42, "meters")
  21593. },
  21594. ]
  21595. ))
  21596. characterMakers.push(() => makeCharacter(
  21597. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21598. {
  21599. were: {
  21600. height: math.unit(25 + 6 / 12, "feet"),
  21601. weight: math.unit(10000, "lb"),
  21602. name: "Were",
  21603. image: {
  21604. source: "./media/characters/tahajin/were.svg",
  21605. extra: 801 / 770,
  21606. bottom: 0.042
  21607. }
  21608. },
  21609. aquatic: {
  21610. height: math.unit(6 + 4 / 12, "feet"),
  21611. weight: math.unit(160, "lb"),
  21612. name: "Aquatic",
  21613. image: {
  21614. source: "./media/characters/tahajin/aquatic.svg",
  21615. extra: 572 / 542,
  21616. bottom: 0.04
  21617. }
  21618. },
  21619. chow: {
  21620. height: math.unit(8 + 11 / 12, "feet"),
  21621. weight: math.unit(450, "lb"),
  21622. name: "Chow",
  21623. image: {
  21624. source: "./media/characters/tahajin/chow.svg",
  21625. extra: 660 / 640,
  21626. bottom: 0.015
  21627. }
  21628. },
  21629. demiNaga: {
  21630. height: math.unit(6 + 8 / 12, "feet"),
  21631. weight: math.unit(300, "lb"),
  21632. name: "Demi Naga",
  21633. image: {
  21634. source: "./media/characters/tahajin/demi-naga.svg",
  21635. extra: 643 / 615,
  21636. bottom: 0.1
  21637. }
  21638. },
  21639. data: {
  21640. height: math.unit(5, "inches"),
  21641. weight: math.unit(0.1, "lb"),
  21642. name: "Data",
  21643. image: {
  21644. source: "./media/characters/tahajin/data.svg"
  21645. }
  21646. },
  21647. fluu: {
  21648. height: math.unit(5 + 7 / 12, "feet"),
  21649. weight: math.unit(140, "lb"),
  21650. name: "Fluu",
  21651. image: {
  21652. source: "./media/characters/tahajin/fluu.svg",
  21653. extra: 628 / 592,
  21654. bottom: 0.02
  21655. }
  21656. },
  21657. starWarrior: {
  21658. height: math.unit(4 + 5 / 12, "feet"),
  21659. weight: math.unit(50, "lb"),
  21660. name: "Star Warrior",
  21661. image: {
  21662. source: "./media/characters/tahajin/star-warrior.svg"
  21663. }
  21664. },
  21665. },
  21666. [
  21667. {
  21668. name: "Normal",
  21669. height: math.unit(25 + 6 / 12, "feet"),
  21670. default: true
  21671. },
  21672. ]
  21673. ))
  21674. characterMakers.push(() => makeCharacter(
  21675. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21676. {
  21677. front: {
  21678. height: math.unit(8, "feet"),
  21679. weight: math.unit(350, "lb"),
  21680. name: "Front",
  21681. image: {
  21682. source: "./media/characters/gabira/front.svg",
  21683. extra: 608 / 580,
  21684. bottom: 0.03
  21685. }
  21686. },
  21687. back: {
  21688. height: math.unit(8, "feet"),
  21689. weight: math.unit(350, "lb"),
  21690. name: "Back",
  21691. image: {
  21692. source: "./media/characters/gabira/back.svg",
  21693. extra: 608 / 580,
  21694. bottom: 0.03
  21695. }
  21696. },
  21697. },
  21698. [
  21699. {
  21700. name: "Normal",
  21701. height: math.unit(8, "feet"),
  21702. default: true
  21703. },
  21704. ]
  21705. ))
  21706. characterMakers.push(() => makeCharacter(
  21707. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21708. {
  21709. front: {
  21710. height: math.unit(5 + 3 / 12, "feet"),
  21711. weight: math.unit(137, "lb"),
  21712. name: "Front",
  21713. image: {
  21714. source: "./media/characters/sasha-katraine/front.svg",
  21715. bottom: 0.045
  21716. }
  21717. },
  21718. },
  21719. [
  21720. {
  21721. name: "Micro",
  21722. height: math.unit(5, "inches")
  21723. },
  21724. {
  21725. name: "Normal",
  21726. height: math.unit(5 + 3 / 12, "feet"),
  21727. default: true
  21728. },
  21729. ]
  21730. ))
  21731. characterMakers.push(() => makeCharacter(
  21732. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21733. {
  21734. side: {
  21735. height: math.unit(4, "inches"),
  21736. weight: math.unit(200, "grams"),
  21737. name: "Side",
  21738. image: {
  21739. source: "./media/characters/der/side.svg",
  21740. extra: 719 / 400,
  21741. bottom: 30.6 / 749.9187
  21742. }
  21743. },
  21744. },
  21745. [
  21746. {
  21747. name: "Micro",
  21748. height: math.unit(4, "inches"),
  21749. default: true
  21750. },
  21751. ]
  21752. ))
  21753. characterMakers.push(() => makeCharacter(
  21754. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21755. {
  21756. side: {
  21757. height: math.unit(30, "meters"),
  21758. weight: math.unit(700, "tonnes"),
  21759. name: "Side",
  21760. image: {
  21761. source: "./media/characters/fixerdragon/side.svg",
  21762. extra: (1293.0514 - 116.03) / 1106.86,
  21763. bottom: 116.03 / 1293.0514
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Planck",
  21770. height: math.unit(1.6e-35, "meters")
  21771. },
  21772. {
  21773. name: "Micro",
  21774. height: math.unit(0.4, "meters")
  21775. },
  21776. {
  21777. name: "Normal",
  21778. height: math.unit(30, "meters"),
  21779. default: true
  21780. },
  21781. {
  21782. name: "Megamacro",
  21783. height: math.unit(1.2, "megameters")
  21784. },
  21785. {
  21786. name: "Teramacro",
  21787. height: math.unit(130, "terameters")
  21788. },
  21789. {
  21790. name: "Yottamacro",
  21791. height: math.unit(6200, "yottameters")
  21792. },
  21793. ]
  21794. ));
  21795. characterMakers.push(() => makeCharacter(
  21796. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21797. {
  21798. front: {
  21799. height: math.unit(8, "feet"),
  21800. weight: math.unit(250, "lb"),
  21801. name: "Front",
  21802. image: {
  21803. source: "./media/characters/kite/front.svg",
  21804. extra: 2796 / 2659,
  21805. bottom: 0.002
  21806. }
  21807. },
  21808. },
  21809. [
  21810. {
  21811. name: "Normal",
  21812. height: math.unit(8, "feet"),
  21813. default: true
  21814. },
  21815. {
  21816. name: "Macro",
  21817. height: math.unit(360, "feet")
  21818. },
  21819. {
  21820. name: "Megamacro",
  21821. height: math.unit(1500, "feet")
  21822. },
  21823. ]
  21824. ))
  21825. characterMakers.push(() => makeCharacter(
  21826. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21827. {
  21828. front: {
  21829. height: math.unit(5 + 11/12, "feet"),
  21830. weight: math.unit(170, "lb"),
  21831. name: "Front",
  21832. image: {
  21833. source: "./media/characters/poojawa-vynar/front.svg",
  21834. extra: 1735/1585,
  21835. bottom: 96/1831
  21836. }
  21837. },
  21838. back: {
  21839. height: math.unit(5 + 11/12, "feet"),
  21840. weight: math.unit(170, "lb"),
  21841. name: "Back",
  21842. image: {
  21843. source: "./media/characters/poojawa-vynar/back.svg",
  21844. extra: 1749/1607,
  21845. bottom: 28/1777
  21846. }
  21847. },
  21848. male: {
  21849. height: math.unit(5 + 11/12, "feet"),
  21850. weight: math.unit(170, "lb"),
  21851. name: "Male",
  21852. image: {
  21853. source: "./media/characters/poojawa-vynar/male.svg",
  21854. extra: 1855/1713,
  21855. bottom: 63/1918
  21856. }
  21857. },
  21858. taur: {
  21859. height: math.unit(5 + 11/12, "feet"),
  21860. weight: math.unit(170, "lb"),
  21861. name: "Taur",
  21862. image: {
  21863. source: "./media/characters/poojawa-vynar/taur.svg",
  21864. extra: 1151/1059,
  21865. bottom: 356/1507
  21866. }
  21867. },
  21868. frontDressed: {
  21869. height: math.unit(5 + 11/12, "feet"),
  21870. weight: math.unit(170, "lb"),
  21871. name: "Front (Dressed)",
  21872. image: {
  21873. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21874. extra: 1735/1585,
  21875. bottom: 96/1831
  21876. }
  21877. },
  21878. backDressed: {
  21879. height: math.unit(5 + 11/12, "feet"),
  21880. weight: math.unit(170, "lb"),
  21881. name: "Back (Dressed)",
  21882. image: {
  21883. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21884. extra: 1749/1607,
  21885. bottom: 28/1777
  21886. }
  21887. },
  21888. maleDressed: {
  21889. height: math.unit(5 + 11/12, "feet"),
  21890. weight: math.unit(170, "lb"),
  21891. name: "Male (Dressed)",
  21892. image: {
  21893. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21894. extra: 1855/1713,
  21895. bottom: 63/1918
  21896. }
  21897. },
  21898. taurDressed: {
  21899. height: math.unit(5 + 11/12, "feet"),
  21900. weight: math.unit(170, "lb"),
  21901. name: "Taur (Dressed)",
  21902. image: {
  21903. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21904. extra: 1151/1059,
  21905. bottom: 356/1507
  21906. }
  21907. },
  21908. maw: {
  21909. height: math.unit(1.46, "feet"),
  21910. name: "Maw",
  21911. image: {
  21912. source: "./media/characters/poojawa-vynar/maw.svg"
  21913. }
  21914. },
  21915. head: {
  21916. height: math.unit(2.34, "feet"),
  21917. name: "Head",
  21918. image: {
  21919. source: "./media/characters/poojawa-vynar/head.svg"
  21920. }
  21921. },
  21922. paw: {
  21923. height: math.unit(1.61, "feet"),
  21924. name: "Paw",
  21925. image: {
  21926. source: "./media/characters/poojawa-vynar/paw.svg"
  21927. }
  21928. },
  21929. pawToering: {
  21930. height: math.unit(1.72, "feet"),
  21931. name: "Paw (Toering)",
  21932. image: {
  21933. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21934. }
  21935. },
  21936. toering: {
  21937. height: math.unit(2.9, "inches"),
  21938. name: "Toering",
  21939. image: {
  21940. source: "./media/characters/poojawa-vynar/toering.svg"
  21941. }
  21942. },
  21943. shaft: {
  21944. height: math.unit(0.625, "feet"),
  21945. name: "Shaft",
  21946. image: {
  21947. source: "./media/characters/poojawa-vynar/shaft.svg"
  21948. }
  21949. },
  21950. spade: {
  21951. height: math.unit(0.42, "feet"),
  21952. name: "Spade",
  21953. image: {
  21954. source: "./media/characters/poojawa-vynar/spade.svg"
  21955. }
  21956. },
  21957. },
  21958. [
  21959. {
  21960. name: "Shortstack",
  21961. height: math.unit(4, "feet")
  21962. },
  21963. {
  21964. name: "Normal",
  21965. height: math.unit(5 + 11 / 12, "feet"),
  21966. default: true
  21967. },
  21968. {
  21969. name: "Tauric",
  21970. height: math.unit(4, "meters")
  21971. },
  21972. ]
  21973. ))
  21974. characterMakers.push(() => makeCharacter(
  21975. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21976. {
  21977. front: {
  21978. height: math.unit(293, "meters"),
  21979. weight: math.unit(70400, "tons"),
  21980. name: "Front",
  21981. image: {
  21982. source: "./media/characters/violette/front.svg",
  21983. extra: 1227 / 1180,
  21984. bottom: 0.005
  21985. }
  21986. },
  21987. back: {
  21988. height: math.unit(293, "meters"),
  21989. weight: math.unit(70400, "tons"),
  21990. name: "Back",
  21991. image: {
  21992. source: "./media/characters/violette/back.svg",
  21993. extra: 1227 / 1180,
  21994. bottom: 0.005
  21995. }
  21996. },
  21997. },
  21998. [
  21999. {
  22000. name: "Macro",
  22001. height: math.unit(293, "meters"),
  22002. default: true
  22003. },
  22004. ]
  22005. ))
  22006. characterMakers.push(() => makeCharacter(
  22007. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22008. {
  22009. front: {
  22010. height: math.unit(1050, "feet"),
  22011. weight: math.unit(200000, "tons"),
  22012. name: "Front",
  22013. image: {
  22014. source: "./media/characters/alessandra/front.svg",
  22015. extra: 960 / 912,
  22016. bottom: 0.06
  22017. }
  22018. },
  22019. },
  22020. [
  22021. {
  22022. name: "Macro",
  22023. height: math.unit(1050, "feet")
  22024. },
  22025. {
  22026. name: "Macro+",
  22027. height: math.unit(900, "meters"),
  22028. default: true
  22029. },
  22030. ]
  22031. ))
  22032. characterMakers.push(() => makeCharacter(
  22033. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22034. {
  22035. front: {
  22036. height: math.unit(5, "feet"),
  22037. weight: math.unit(187, "lb"),
  22038. name: "Front",
  22039. image: {
  22040. source: "./media/characters/person/front.svg",
  22041. extra: 3087 / 2945,
  22042. bottom: 91 / 3181
  22043. }
  22044. },
  22045. },
  22046. [
  22047. {
  22048. name: "Micro",
  22049. height: math.unit(3, "inches")
  22050. },
  22051. {
  22052. name: "Normal",
  22053. height: math.unit(5, "feet"),
  22054. default: true
  22055. },
  22056. {
  22057. name: "Macro",
  22058. height: math.unit(90, "feet")
  22059. },
  22060. {
  22061. name: "Max Size",
  22062. height: math.unit(280, "feet")
  22063. },
  22064. ]
  22065. ))
  22066. characterMakers.push(() => makeCharacter(
  22067. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22068. {
  22069. front: {
  22070. height: math.unit(4.5, "meters"),
  22071. weight: math.unit(3200, "lb"),
  22072. name: "Front",
  22073. image: {
  22074. source: "./media/characters/ty/front.svg",
  22075. extra: 1038 / 960,
  22076. bottom: 31.156 / 1068
  22077. }
  22078. },
  22079. back: {
  22080. height: math.unit(4.5, "meters"),
  22081. weight: math.unit(3200, "lb"),
  22082. name: "Back",
  22083. image: {
  22084. source: "./media/characters/ty/back.svg",
  22085. extra: 1044 / 966,
  22086. bottom: 7.48 / 1049
  22087. }
  22088. },
  22089. },
  22090. [
  22091. {
  22092. name: "Normal",
  22093. height: math.unit(4.5, "meters"),
  22094. default: true
  22095. },
  22096. ]
  22097. ))
  22098. characterMakers.push(() => makeCharacter(
  22099. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22100. {
  22101. front: {
  22102. height: math.unit(5 + 4 / 12, "feet"),
  22103. weight: math.unit(115, "lb"),
  22104. name: "Front",
  22105. image: {
  22106. source: "./media/characters/rocky/front.svg",
  22107. extra: 1012 / 975,
  22108. bottom: 54 / 1066
  22109. }
  22110. },
  22111. },
  22112. [
  22113. {
  22114. name: "Normal",
  22115. height: math.unit(5 + 4 / 12, "feet"),
  22116. default: true
  22117. },
  22118. ]
  22119. ))
  22120. characterMakers.push(() => makeCharacter(
  22121. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22122. {
  22123. upright: {
  22124. height: math.unit(6, "meters"),
  22125. weight: math.unit(4000, "kg"),
  22126. name: "Upright",
  22127. image: {
  22128. source: "./media/characters/ruin/upright.svg",
  22129. extra: 668 / 661,
  22130. bottom: 42 / 799.8396
  22131. }
  22132. },
  22133. },
  22134. [
  22135. {
  22136. name: "Normal",
  22137. height: math.unit(6, "meters"),
  22138. default: true
  22139. },
  22140. ]
  22141. ))
  22142. characterMakers.push(() => makeCharacter(
  22143. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22144. {
  22145. front: {
  22146. height: math.unit(5, "feet"),
  22147. weight: math.unit(106, "lb"),
  22148. name: "Front",
  22149. image: {
  22150. source: "./media/characters/robin/front.svg",
  22151. extra: 862 / 799,
  22152. bottom: 42.4 / 914.8856
  22153. }
  22154. },
  22155. },
  22156. [
  22157. {
  22158. name: "Normal",
  22159. height: math.unit(5, "feet"),
  22160. default: true
  22161. },
  22162. ]
  22163. ))
  22164. characterMakers.push(() => makeCharacter(
  22165. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22166. {
  22167. side: {
  22168. height: math.unit(3, "feet"),
  22169. weight: math.unit(225, "lb"),
  22170. name: "Side",
  22171. image: {
  22172. source: "./media/characters/saian/side.svg",
  22173. extra: 566 / 356,
  22174. bottom: 79.7 / 643
  22175. }
  22176. },
  22177. maw: {
  22178. height: math.unit(2.85, "feet"),
  22179. name: "Maw",
  22180. image: {
  22181. source: "./media/characters/saian/maw.svg"
  22182. }
  22183. },
  22184. },
  22185. [
  22186. {
  22187. name: "Normal",
  22188. height: math.unit(3, "feet"),
  22189. default: true
  22190. },
  22191. ]
  22192. ))
  22193. characterMakers.push(() => makeCharacter(
  22194. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22195. {
  22196. side: {
  22197. height: math.unit(8, "feet"),
  22198. weight: math.unit(300, "lb"),
  22199. name: "Side",
  22200. image: {
  22201. source: "./media/characters/equus-silvermane/side.svg",
  22202. extra: 2176 / 2050,
  22203. bottom: 65.7 / 2245
  22204. }
  22205. },
  22206. front: {
  22207. height: math.unit(8, "feet"),
  22208. weight: math.unit(300, "lb"),
  22209. name: "Front",
  22210. image: {
  22211. source: "./media/characters/equus-silvermane/front.svg",
  22212. extra: 4633 / 4400,
  22213. bottom: 71.3 / 4706.915
  22214. }
  22215. },
  22216. sideStepping: {
  22217. height: math.unit(8, "feet"),
  22218. weight: math.unit(300, "lb"),
  22219. name: "Side (Stepping)",
  22220. image: {
  22221. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22222. extra: 1968 / 1860,
  22223. bottom: 16.4 / 1989
  22224. }
  22225. },
  22226. },
  22227. [
  22228. {
  22229. name: "Normal",
  22230. height: math.unit(8, "feet")
  22231. },
  22232. {
  22233. name: "Minimacro",
  22234. height: math.unit(75, "feet"),
  22235. default: true
  22236. },
  22237. {
  22238. name: "Macro",
  22239. height: math.unit(150, "feet")
  22240. },
  22241. {
  22242. name: "Macro+",
  22243. height: math.unit(1000, "feet")
  22244. },
  22245. {
  22246. name: "Megamacro",
  22247. height: math.unit(1, "mile")
  22248. },
  22249. ]
  22250. ))
  22251. characterMakers.push(() => makeCharacter(
  22252. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22253. {
  22254. side: {
  22255. height: math.unit(20, "feet"),
  22256. weight: math.unit(30000, "kg"),
  22257. name: "Side",
  22258. image: {
  22259. source: "./media/characters/windar/side.svg",
  22260. extra: 1491 / 1248,
  22261. bottom: 82.56 / 1568
  22262. }
  22263. },
  22264. },
  22265. [
  22266. {
  22267. name: "Normal",
  22268. height: math.unit(20, "feet"),
  22269. default: true
  22270. },
  22271. ]
  22272. ))
  22273. characterMakers.push(() => makeCharacter(
  22274. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22275. {
  22276. side: {
  22277. height: math.unit(15.66, "feet"),
  22278. weight: math.unit(150, "lb"),
  22279. name: "Side",
  22280. image: {
  22281. source: "./media/characters/melody/side.svg",
  22282. extra: 1097 / 944,
  22283. bottom: 11.8 / 1109
  22284. }
  22285. },
  22286. sideOutfit: {
  22287. height: math.unit(15.66, "feet"),
  22288. weight: math.unit(150, "lb"),
  22289. name: "Side (Outfit)",
  22290. image: {
  22291. source: "./media/characters/melody/side-outfit.svg",
  22292. extra: 1097 / 944,
  22293. bottom: 11.8 / 1109
  22294. }
  22295. },
  22296. },
  22297. [
  22298. {
  22299. name: "Normal",
  22300. height: math.unit(15.66, "feet"),
  22301. default: true
  22302. },
  22303. ]
  22304. ))
  22305. characterMakers.push(() => makeCharacter(
  22306. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22307. {
  22308. front: {
  22309. height: math.unit(8, "feet"),
  22310. weight: math.unit(325, "lb"),
  22311. name: "Front",
  22312. image: {
  22313. source: "./media/characters/windera/front.svg",
  22314. extra: 3180 / 2845,
  22315. bottom: 178 / 3365
  22316. }
  22317. },
  22318. },
  22319. [
  22320. {
  22321. name: "Normal",
  22322. height: math.unit(8, "feet"),
  22323. default: true
  22324. },
  22325. ]
  22326. ))
  22327. characterMakers.push(() => makeCharacter(
  22328. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22329. {
  22330. front: {
  22331. height: math.unit(28.75, "feet"),
  22332. weight: math.unit(2000, "kg"),
  22333. name: "Front",
  22334. image: {
  22335. source: "./media/characters/sonear/front.svg",
  22336. extra: 1041.1 / 964.9,
  22337. bottom: 53.7 / 1096.6
  22338. }
  22339. },
  22340. },
  22341. [
  22342. {
  22343. name: "Normal",
  22344. height: math.unit(28.75, "feet"),
  22345. default: true
  22346. },
  22347. ]
  22348. ))
  22349. characterMakers.push(() => makeCharacter(
  22350. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22351. {
  22352. side: {
  22353. height: math.unit(25.5, "feet"),
  22354. weight: math.unit(23000, "kg"),
  22355. name: "Side",
  22356. image: {
  22357. source: "./media/characters/kanara/side.svg"
  22358. }
  22359. },
  22360. },
  22361. [
  22362. {
  22363. name: "Normal",
  22364. height: math.unit(25.5, "feet"),
  22365. default: true
  22366. },
  22367. ]
  22368. ))
  22369. characterMakers.push(() => makeCharacter(
  22370. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22371. {
  22372. side: {
  22373. height: math.unit(10, "feet"),
  22374. weight: math.unit(1000, "kg"),
  22375. name: "Side",
  22376. image: {
  22377. source: "./media/characters/ereus/side.svg",
  22378. extra: 1157 / 959,
  22379. bottom: 153 / 1312.5
  22380. }
  22381. },
  22382. },
  22383. [
  22384. {
  22385. name: "Normal",
  22386. height: math.unit(10, "feet"),
  22387. default: true
  22388. },
  22389. ]
  22390. ))
  22391. characterMakers.push(() => makeCharacter(
  22392. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22393. {
  22394. side: {
  22395. height: math.unit(4.5, "feet"),
  22396. weight: math.unit(500, "lb"),
  22397. name: "Side",
  22398. image: {
  22399. source: "./media/characters/e-ter/side.svg",
  22400. extra: 1550 / 1248,
  22401. bottom: 146 / 1694
  22402. }
  22403. },
  22404. },
  22405. [
  22406. {
  22407. name: "Normal",
  22408. height: math.unit(4.5, "feet"),
  22409. default: true
  22410. },
  22411. ]
  22412. ))
  22413. characterMakers.push(() => makeCharacter(
  22414. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22415. {
  22416. side: {
  22417. height: math.unit(9.7, "feet"),
  22418. weight: math.unit(4000, "kg"),
  22419. name: "Side",
  22420. image: {
  22421. source: "./media/characters/yamie/side.svg"
  22422. }
  22423. },
  22424. },
  22425. [
  22426. {
  22427. name: "Normal",
  22428. height: math.unit(9.7, "feet"),
  22429. default: true
  22430. },
  22431. ]
  22432. ))
  22433. characterMakers.push(() => makeCharacter(
  22434. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22435. {
  22436. front: {
  22437. height: math.unit(50, "feet"),
  22438. weight: math.unit(50000, "kg"),
  22439. name: "Front",
  22440. image: {
  22441. source: "./media/characters/anders/front.svg",
  22442. extra: 570 / 539,
  22443. bottom: 14.7 / 586.7
  22444. }
  22445. },
  22446. },
  22447. [
  22448. {
  22449. name: "Large",
  22450. height: math.unit(50, "feet")
  22451. },
  22452. {
  22453. name: "Macro",
  22454. height: math.unit(2000, "feet"),
  22455. default: true
  22456. },
  22457. {
  22458. name: "Megamacro",
  22459. height: math.unit(12, "miles")
  22460. },
  22461. ]
  22462. ))
  22463. characterMakers.push(() => makeCharacter(
  22464. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22465. {
  22466. front: {
  22467. height: math.unit(7 + 2 / 12, "feet"),
  22468. weight: math.unit(300, "lb"),
  22469. name: "Front",
  22470. image: {
  22471. source: "./media/characters/reban/front.svg",
  22472. extra: 1287/1212,
  22473. bottom: 148/1435
  22474. }
  22475. },
  22476. head: {
  22477. height: math.unit(1.95, "feet"),
  22478. name: "Head",
  22479. image: {
  22480. source: "./media/characters/reban/head.svg"
  22481. }
  22482. },
  22483. maw: {
  22484. height: math.unit(0.95, "feet"),
  22485. name: "Maw",
  22486. image: {
  22487. source: "./media/characters/reban/maw.svg"
  22488. }
  22489. },
  22490. foot: {
  22491. height: math.unit(1.65, "feet"),
  22492. name: "Foot",
  22493. image: {
  22494. source: "./media/characters/reban/foot.svg"
  22495. }
  22496. },
  22497. dick: {
  22498. height: math.unit(7 / 5, "feet"),
  22499. name: "Dick",
  22500. image: {
  22501. source: "./media/characters/reban/dick.svg"
  22502. }
  22503. },
  22504. },
  22505. [
  22506. {
  22507. name: "Natural Height",
  22508. height: math.unit(7 + 2 / 12, "feet")
  22509. },
  22510. {
  22511. name: "Macro",
  22512. height: math.unit(500, "feet"),
  22513. default: true
  22514. },
  22515. {
  22516. name: "Canon Height",
  22517. height: math.unit(50, "AU")
  22518. },
  22519. ]
  22520. ))
  22521. characterMakers.push(() => makeCharacter(
  22522. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22523. {
  22524. front: {
  22525. height: math.unit(6, "feet"),
  22526. weight: math.unit(150, "lb"),
  22527. name: "Front",
  22528. image: {
  22529. source: "./media/characters/terrance-keayes/front.svg",
  22530. extra: 1.005,
  22531. bottom: 151 / 1615
  22532. }
  22533. },
  22534. side: {
  22535. height: math.unit(6, "feet"),
  22536. weight: math.unit(150, "lb"),
  22537. name: "Side",
  22538. image: {
  22539. source: "./media/characters/terrance-keayes/side.svg",
  22540. extra: 1.005,
  22541. bottom: 129.4 / 1544
  22542. }
  22543. },
  22544. back: {
  22545. height: math.unit(6, "feet"),
  22546. weight: math.unit(150, "lb"),
  22547. name: "Back",
  22548. image: {
  22549. source: "./media/characters/terrance-keayes/back.svg",
  22550. extra: 1.005,
  22551. bottom: 58.4 / 1557.3
  22552. }
  22553. },
  22554. dick: {
  22555. height: math.unit(6 * 0.208, "feet"),
  22556. name: "Dick",
  22557. image: {
  22558. source: "./media/characters/terrance-keayes/dick.svg"
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Canon Height",
  22565. height: math.unit(35, "miles"),
  22566. default: true
  22567. },
  22568. ]
  22569. ))
  22570. characterMakers.push(() => makeCharacter(
  22571. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22572. {
  22573. front: {
  22574. height: math.unit(6, "feet"),
  22575. weight: math.unit(150, "lb"),
  22576. name: "Front",
  22577. image: {
  22578. source: "./media/characters/ofelia/front.svg",
  22579. extra: 1130/1117,
  22580. bottom: 91/1221
  22581. }
  22582. },
  22583. back: {
  22584. height: math.unit(6, "feet"),
  22585. weight: math.unit(150, "lb"),
  22586. name: "Back",
  22587. image: {
  22588. source: "./media/characters/ofelia/back.svg",
  22589. extra: 1172/1159,
  22590. bottom: 28/1200
  22591. }
  22592. },
  22593. maw: {
  22594. height: math.unit(1, "feet"),
  22595. name: "Maw",
  22596. image: {
  22597. source: "./media/characters/ofelia/maw.svg"
  22598. }
  22599. },
  22600. foot: {
  22601. height: math.unit(1.949, "feet"),
  22602. name: "Foot",
  22603. image: {
  22604. source: "./media/characters/ofelia/foot.svg"
  22605. }
  22606. },
  22607. },
  22608. [
  22609. {
  22610. name: "Canon Height",
  22611. height: math.unit(2000, "miles"),
  22612. default: true
  22613. },
  22614. ]
  22615. ))
  22616. characterMakers.push(() => makeCharacter(
  22617. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22618. {
  22619. front: {
  22620. height: math.unit(6, "feet"),
  22621. weight: math.unit(150, "lb"),
  22622. name: "Front",
  22623. image: {
  22624. source: "./media/characters/samuel/front.svg",
  22625. extra: 265 / 258,
  22626. bottom: 2 / 266.1566
  22627. }
  22628. },
  22629. },
  22630. [
  22631. {
  22632. name: "Macro",
  22633. height: math.unit(100, "feet"),
  22634. default: true
  22635. },
  22636. {
  22637. name: "Full Size",
  22638. height: math.unit(1000, "miles")
  22639. },
  22640. ]
  22641. ))
  22642. characterMakers.push(() => makeCharacter(
  22643. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22644. {
  22645. front: {
  22646. height: math.unit(6, "feet"),
  22647. weight: math.unit(300, "lb"),
  22648. name: "Front",
  22649. image: {
  22650. source: "./media/characters/beishir-kiel/front.svg",
  22651. extra: 569 / 547,
  22652. bottom: 41.9 / 609
  22653. }
  22654. },
  22655. maw: {
  22656. height: math.unit(6 * 0.202, "feet"),
  22657. name: "Maw",
  22658. image: {
  22659. source: "./media/characters/beishir-kiel/maw.svg"
  22660. }
  22661. },
  22662. },
  22663. [
  22664. {
  22665. name: "Macro",
  22666. height: math.unit(300, "feet"),
  22667. default: true
  22668. },
  22669. ]
  22670. ))
  22671. characterMakers.push(() => makeCharacter(
  22672. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22673. {
  22674. front: {
  22675. height: math.unit(5 + 7/12, "feet"),
  22676. weight: math.unit(120, "lb"),
  22677. name: "Front",
  22678. image: {
  22679. source: "./media/characters/logan-grey/front.svg",
  22680. extra: 1836/1738,
  22681. bottom: 108/1944
  22682. }
  22683. },
  22684. back: {
  22685. height: math.unit(5 + 7/12, "feet"),
  22686. weight: math.unit(120, "lb"),
  22687. name: "Back",
  22688. image: {
  22689. source: "./media/characters/logan-grey/back.svg",
  22690. extra: 1880/1794,
  22691. bottom: 24/1904
  22692. }
  22693. },
  22694. frontSfw: {
  22695. height: math.unit(5 + 7/12, "feet"),
  22696. weight: math.unit(120, "lb"),
  22697. name: "Front (SFW)",
  22698. image: {
  22699. source: "./media/characters/logan-grey/front-sfw.svg",
  22700. extra: 1836/1738,
  22701. bottom: 108/1944
  22702. }
  22703. },
  22704. backSfw: {
  22705. height: math.unit(5 + 7/12, "feet"),
  22706. weight: math.unit(120, "lb"),
  22707. name: "Back (SFW)",
  22708. image: {
  22709. source: "./media/characters/logan-grey/back-sfw.svg",
  22710. extra: 1880/1794,
  22711. bottom: 24/1904
  22712. }
  22713. },
  22714. hands: {
  22715. height: math.unit(0.84, "feet"),
  22716. name: "Hands",
  22717. image: {
  22718. source: "./media/characters/logan-grey/hands.svg"
  22719. }
  22720. },
  22721. paws: {
  22722. height: math.unit(0.72, "feet"),
  22723. name: "Paws",
  22724. image: {
  22725. source: "./media/characters/logan-grey/paws.svg"
  22726. }
  22727. },
  22728. cock: {
  22729. height: math.unit(1.45, "feet"),
  22730. name: "Cock",
  22731. image: {
  22732. source: "./media/characters/logan-grey/cock.svg"
  22733. }
  22734. },
  22735. cockAlt: {
  22736. height: math.unit(1.437, "feet"),
  22737. name: "Cock (alt)",
  22738. image: {
  22739. source: "./media/characters/logan-grey/cock-alt.svg"
  22740. }
  22741. },
  22742. },
  22743. [
  22744. {
  22745. name: "Normal",
  22746. height: math.unit(5 + 8 / 12, "feet")
  22747. },
  22748. {
  22749. name: "The 500 Foot Femboy",
  22750. height: math.unit(500, "feet"),
  22751. default: true
  22752. },
  22753. {
  22754. name: "Megmacro",
  22755. height: math.unit(20, "miles")
  22756. },
  22757. ]
  22758. ))
  22759. characterMakers.push(() => makeCharacter(
  22760. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22761. {
  22762. front: {
  22763. height: math.unit(8 + 2 / 12, "feet"),
  22764. weight: math.unit(275, "lb"),
  22765. name: "Front",
  22766. image: {
  22767. source: "./media/characters/draganta/front.svg",
  22768. extra: 1177 / 1135,
  22769. bottom: 33.46 / 1212.1
  22770. }
  22771. },
  22772. },
  22773. [
  22774. {
  22775. name: "Normal",
  22776. height: math.unit(8 + 6 / 12, "feet"),
  22777. default: true
  22778. },
  22779. {
  22780. name: "Macro",
  22781. height: math.unit(150, "feet")
  22782. },
  22783. {
  22784. name: "Megamacro",
  22785. height: math.unit(1000, "miles")
  22786. },
  22787. ]
  22788. ))
  22789. characterMakers.push(() => makeCharacter(
  22790. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22791. {
  22792. front: {
  22793. height: math.unit(1.72, "m"),
  22794. weight: math.unit(80, "lb"),
  22795. name: "Front",
  22796. image: {
  22797. source: "./media/characters/voski/front.svg",
  22798. extra: 2076.22 / 2022.4,
  22799. bottom: 102.7 / 2177.3866
  22800. }
  22801. },
  22802. frontNsfw: {
  22803. height: math.unit(1.72, "m"),
  22804. weight: math.unit(80, "lb"),
  22805. name: "Front (NSFW)",
  22806. image: {
  22807. source: "./media/characters/voski/front-nsfw.svg",
  22808. extra: 2076.22 / 2022.4,
  22809. bottom: 102.7 / 2177.3866
  22810. }
  22811. },
  22812. back: {
  22813. height: math.unit(1.72, "m"),
  22814. weight: math.unit(80, "lb"),
  22815. name: "Back",
  22816. image: {
  22817. source: "./media/characters/voski/back.svg",
  22818. extra: 2104 / 2051,
  22819. bottom: 10.45 / 2113.63
  22820. }
  22821. },
  22822. },
  22823. [
  22824. {
  22825. name: "Normal",
  22826. height: math.unit(1.72, "m")
  22827. },
  22828. {
  22829. name: "Macro",
  22830. height: math.unit(55, "m"),
  22831. default: true
  22832. },
  22833. {
  22834. name: "Macro+",
  22835. height: math.unit(300, "m")
  22836. },
  22837. {
  22838. name: "Macro++",
  22839. height: math.unit(700, "m")
  22840. },
  22841. {
  22842. name: "Macro+++",
  22843. height: math.unit(4500, "m")
  22844. },
  22845. {
  22846. name: "Macro++++",
  22847. height: math.unit(45, "km")
  22848. },
  22849. {
  22850. name: "Macro+++++",
  22851. height: math.unit(1220, "km")
  22852. },
  22853. ]
  22854. ))
  22855. characterMakers.push(() => makeCharacter(
  22856. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22857. {
  22858. front: {
  22859. height: math.unit(2.3, "m"),
  22860. weight: math.unit(304, "kg"),
  22861. name: "Front",
  22862. image: {
  22863. source: "./media/characters/icowom-lee/front.svg",
  22864. extra: 985 / 955,
  22865. bottom: 25.4 / 1012
  22866. }
  22867. },
  22868. fronttentacles: {
  22869. height: math.unit(2.3, "m"),
  22870. weight: math.unit(304, "kg"),
  22871. name: "Front-tentacles",
  22872. image: {
  22873. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22874. extra: 985 / 955,
  22875. bottom: 25.4 / 1012
  22876. }
  22877. },
  22878. back: {
  22879. height: math.unit(2.3, "m"),
  22880. weight: math.unit(304, "kg"),
  22881. name: "Back",
  22882. image: {
  22883. source: "./media/characters/icowom-lee/back.svg",
  22884. extra: 975 / 954,
  22885. bottom: 9.5 / 985
  22886. }
  22887. },
  22888. backtentacles: {
  22889. height: math.unit(2.3, "m"),
  22890. weight: math.unit(304, "kg"),
  22891. name: "Back-tentacles",
  22892. image: {
  22893. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22894. extra: 975 / 954,
  22895. bottom: 9.5 / 985
  22896. }
  22897. },
  22898. frontDressed: {
  22899. height: math.unit(2.3, "m"),
  22900. weight: math.unit(304, "kg"),
  22901. name: "Front (Dressed)",
  22902. image: {
  22903. source: "./media/characters/icowom-lee/front-dressed.svg",
  22904. extra: 3076 / 2933,
  22905. bottom: 51.4 / 3125.1889
  22906. }
  22907. },
  22908. rump: {
  22909. height: math.unit(0.776, "meters"),
  22910. name: "Rump",
  22911. image: {
  22912. source: "./media/characters/icowom-lee/rump.svg"
  22913. }
  22914. },
  22915. genitals: {
  22916. height: math.unit(0.78, "meters"),
  22917. name: "Genitals",
  22918. image: {
  22919. source: "./media/characters/icowom-lee/genitals.svg"
  22920. }
  22921. },
  22922. },
  22923. [
  22924. {
  22925. name: "Normal",
  22926. height: math.unit(2.3, "meters"),
  22927. default: true
  22928. },
  22929. {
  22930. name: "Macro",
  22931. height: math.unit(94, "meters"),
  22932. default: true
  22933. },
  22934. ]
  22935. ))
  22936. characterMakers.push(() => makeCharacter(
  22937. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22938. {
  22939. front: {
  22940. height: math.unit(22, "meters"),
  22941. weight: math.unit(21000, "kg"),
  22942. name: "Front",
  22943. image: {
  22944. source: "./media/characters/shock-diamond/front.svg",
  22945. extra: 2204 / 2053,
  22946. bottom: 65 / 2239.47
  22947. }
  22948. },
  22949. frontNude: {
  22950. height: math.unit(22, "meters"),
  22951. weight: math.unit(21000, "kg"),
  22952. name: "Front (Nude)",
  22953. image: {
  22954. source: "./media/characters/shock-diamond/front-nude.svg",
  22955. extra: 2514 / 2285,
  22956. bottom: 13 / 2527.56
  22957. }
  22958. },
  22959. },
  22960. [
  22961. {
  22962. name: "Normal",
  22963. height: math.unit(3, "meters")
  22964. },
  22965. {
  22966. name: "Macro",
  22967. height: math.unit(22, "meters"),
  22968. default: true
  22969. },
  22970. ]
  22971. ))
  22972. characterMakers.push(() => makeCharacter(
  22973. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22974. {
  22975. front: {
  22976. height: math.unit(5 + 4 / 12, "feet"),
  22977. weight: math.unit(120, "lb"),
  22978. name: "Front",
  22979. image: {
  22980. source: "./media/characters/rory/front.svg",
  22981. extra: 1318/1241,
  22982. bottom: 42/1360
  22983. }
  22984. },
  22985. back: {
  22986. height: math.unit(5 + 4 / 12, "feet"),
  22987. weight: math.unit(120, "lb"),
  22988. name: "Back",
  22989. image: {
  22990. source: "./media/characters/rory/back.svg",
  22991. extra: 1318/1241,
  22992. bottom: 42/1360
  22993. }
  22994. },
  22995. butt: {
  22996. height: math.unit(1.74, "feet"),
  22997. name: "Butt",
  22998. image: {
  22999. source: "./media/characters/rory/butt.svg"
  23000. }
  23001. },
  23002. dick: {
  23003. height: math.unit(1.02, "feet"),
  23004. name: "Dick",
  23005. image: {
  23006. source: "./media/characters/rory/dick.svg"
  23007. }
  23008. },
  23009. paws: {
  23010. height: math.unit(1, "feet"),
  23011. name: "Paws",
  23012. image: {
  23013. source: "./media/characters/rory/paws.svg"
  23014. }
  23015. },
  23016. frontAlt: {
  23017. height: math.unit(5 + 4 / 12, "feet"),
  23018. weight: math.unit(120, "lb"),
  23019. name: "Front (Alt)",
  23020. image: {
  23021. source: "./media/characters/rory/front-alt.svg",
  23022. extra: 589 / 556,
  23023. bottom: 45.7 / 635.76
  23024. }
  23025. },
  23026. frontAltNude: {
  23027. height: math.unit(5 + 4 / 12, "feet"),
  23028. weight: math.unit(120, "lb"),
  23029. name: "Front (Alt, Nude)",
  23030. image: {
  23031. source: "./media/characters/rory/front-alt-nude.svg",
  23032. extra: 589 / 556,
  23033. bottom: 45.7 / 635.76
  23034. }
  23035. },
  23036. side: {
  23037. height: math.unit(5 + 4 / 12, "feet"),
  23038. weight: math.unit(120, "lb"),
  23039. name: "Side",
  23040. image: {
  23041. source: "./media/characters/rory/side.svg",
  23042. extra: 597 / 564,
  23043. bottom: 55 / 653
  23044. }
  23045. },
  23046. backAlt: {
  23047. height: math.unit(5 + 4 / 12, "feet"),
  23048. weight: math.unit(120, "lb"),
  23049. name: "Back (Alt)",
  23050. image: {
  23051. source: "./media/characters/rory/back-alt.svg",
  23052. extra: 620 / 585,
  23053. bottom: 8.86 / 630.43
  23054. }
  23055. },
  23056. dickAlt: {
  23057. height: math.unit(0.86, "feet"),
  23058. name: "Dick (Alt)",
  23059. image: {
  23060. source: "./media/characters/rory/dick-alt.svg"
  23061. }
  23062. },
  23063. },
  23064. [
  23065. {
  23066. name: "Normal",
  23067. height: math.unit(5 + 4 / 12, "feet"),
  23068. default: true
  23069. },
  23070. {
  23071. name: "Macro",
  23072. height: math.unit(100, "feet")
  23073. },
  23074. {
  23075. name: "Macro+",
  23076. height: math.unit(140, "feet")
  23077. },
  23078. {
  23079. name: "Macro++",
  23080. height: math.unit(300, "feet")
  23081. },
  23082. ]
  23083. ))
  23084. characterMakers.push(() => makeCharacter(
  23085. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23086. {
  23087. front: {
  23088. height: math.unit(5 + 9 / 12, "feet"),
  23089. weight: math.unit(190, "lb"),
  23090. name: "Front",
  23091. image: {
  23092. source: "./media/characters/sprisk/front.svg",
  23093. extra: 1225 / 1180,
  23094. bottom: 42.7 / 1266.4
  23095. }
  23096. },
  23097. frontNsfw: {
  23098. height: math.unit(5 + 9 / 12, "feet"),
  23099. weight: math.unit(190, "lb"),
  23100. name: "Front (NSFW)",
  23101. image: {
  23102. source: "./media/characters/sprisk/front-nsfw.svg",
  23103. extra: 1225 / 1180,
  23104. bottom: 42.7 / 1266.4
  23105. }
  23106. },
  23107. back: {
  23108. height: math.unit(5 + 9 / 12, "feet"),
  23109. weight: math.unit(190, "lb"),
  23110. name: "Back",
  23111. image: {
  23112. source: "./media/characters/sprisk/back.svg",
  23113. extra: 1247 / 1200,
  23114. bottom: 5.6 / 1253.04
  23115. }
  23116. },
  23117. },
  23118. [
  23119. {
  23120. name: "Tiny",
  23121. height: math.unit(2, "inches")
  23122. },
  23123. {
  23124. name: "Normal",
  23125. height: math.unit(5 + 9 / 12, "feet"),
  23126. default: true
  23127. },
  23128. {
  23129. name: "Mini Macro",
  23130. height: math.unit(18, "feet")
  23131. },
  23132. {
  23133. name: "Macro",
  23134. height: math.unit(100, "feet")
  23135. },
  23136. {
  23137. name: "MACRO",
  23138. height: math.unit(50, "miles")
  23139. },
  23140. {
  23141. name: "M A C R O",
  23142. height: math.unit(300, "miles")
  23143. },
  23144. ]
  23145. ))
  23146. characterMakers.push(() => makeCharacter(
  23147. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23148. {
  23149. side: {
  23150. height: math.unit(15.6, "meters"),
  23151. weight: math.unit(700000, "kg"),
  23152. name: "Side",
  23153. image: {
  23154. source: "./media/characters/bunsen/side.svg",
  23155. extra: 1644 / 358
  23156. }
  23157. },
  23158. foot: {
  23159. height: math.unit(1.611 * 1644 / 358, "meter"),
  23160. name: "Foot",
  23161. image: {
  23162. source: "./media/characters/bunsen/foot.svg"
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Small",
  23169. height: math.unit(10, "feet")
  23170. },
  23171. {
  23172. name: "Normal",
  23173. height: math.unit(15.6, "meters"),
  23174. default: true
  23175. },
  23176. ]
  23177. ))
  23178. characterMakers.push(() => makeCharacter(
  23179. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23180. {
  23181. front: {
  23182. height: math.unit(4 + 11 / 12, "feet"),
  23183. weight: math.unit(140, "lb"),
  23184. name: "Front",
  23185. image: {
  23186. source: "./media/characters/sesh/front.svg",
  23187. extra: 3420 / 3231,
  23188. bottom: 72 / 3949.5
  23189. }
  23190. },
  23191. },
  23192. [
  23193. {
  23194. name: "Normal",
  23195. height: math.unit(4 + 11 / 12, "feet")
  23196. },
  23197. {
  23198. name: "Grown",
  23199. height: math.unit(15, "feet"),
  23200. default: true
  23201. },
  23202. {
  23203. name: "Macro",
  23204. height: math.unit(1500, "feet")
  23205. },
  23206. {
  23207. name: "Megamacro",
  23208. height: math.unit(30, "miles")
  23209. },
  23210. {
  23211. name: "Continental",
  23212. height: math.unit(3000, "miles")
  23213. },
  23214. {
  23215. name: "Gravity Mass",
  23216. height: math.unit(300000, "miles")
  23217. },
  23218. {
  23219. name: "Planet Buster",
  23220. height: math.unit(30000000, "miles")
  23221. },
  23222. {
  23223. name: "Big",
  23224. height: math.unit(3000000000, "miles")
  23225. },
  23226. ]
  23227. ))
  23228. characterMakers.push(() => makeCharacter(
  23229. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23230. {
  23231. front: {
  23232. height: math.unit(9, "feet"),
  23233. weight: math.unit(350, "lb"),
  23234. name: "Front",
  23235. image: {
  23236. source: "./media/characters/pepper/front.svg",
  23237. extra: 1448 / 1312,
  23238. bottom: 9.4 / 1457.88
  23239. }
  23240. },
  23241. back: {
  23242. height: math.unit(9, "feet"),
  23243. weight: math.unit(350, "lb"),
  23244. name: "Back",
  23245. image: {
  23246. source: "./media/characters/pepper/back.svg",
  23247. extra: 1423 / 1300,
  23248. bottom: 4.6 / 1429
  23249. }
  23250. },
  23251. maw: {
  23252. height: math.unit(0.932, "feet"),
  23253. name: "Maw",
  23254. image: {
  23255. source: "./media/characters/pepper/maw.svg"
  23256. }
  23257. },
  23258. },
  23259. [
  23260. {
  23261. name: "Normal",
  23262. height: math.unit(9, "feet"),
  23263. default: true
  23264. },
  23265. ]
  23266. ))
  23267. characterMakers.push(() => makeCharacter(
  23268. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23269. {
  23270. front: {
  23271. height: math.unit(6, "feet"),
  23272. weight: math.unit(150, "lb"),
  23273. name: "Front",
  23274. image: {
  23275. source: "./media/characters/maelstrom/front.svg",
  23276. extra: 2100 / 1883,
  23277. bottom: 94 / 2196.7
  23278. }
  23279. },
  23280. },
  23281. [
  23282. {
  23283. name: "Less Kaiju",
  23284. height: math.unit(200, "feet")
  23285. },
  23286. {
  23287. name: "Kaiju",
  23288. height: math.unit(400, "feet"),
  23289. default: true
  23290. },
  23291. {
  23292. name: "Kaiju-er",
  23293. height: math.unit(600, "feet")
  23294. },
  23295. ]
  23296. ))
  23297. characterMakers.push(() => makeCharacter(
  23298. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23299. {
  23300. front: {
  23301. height: math.unit(6 + 5 / 12, "feet"),
  23302. weight: math.unit(180, "lb"),
  23303. name: "Front",
  23304. image: {
  23305. source: "./media/characters/lexir/front.svg",
  23306. extra: 180 / 172,
  23307. bottom: 12 / 192
  23308. }
  23309. },
  23310. back: {
  23311. height: math.unit(6 + 5 / 12, "feet"),
  23312. weight: math.unit(180, "lb"),
  23313. name: "Back",
  23314. image: {
  23315. source: "./media/characters/lexir/back.svg",
  23316. extra: 183.84 / 175.5,
  23317. bottom: 3.1 / 187
  23318. }
  23319. },
  23320. },
  23321. [
  23322. {
  23323. name: "Very Smal",
  23324. height: math.unit(1, "nm")
  23325. },
  23326. {
  23327. name: "Normal",
  23328. height: math.unit(6 + 5 / 12, "feet"),
  23329. default: true
  23330. },
  23331. {
  23332. name: "Macro",
  23333. height: math.unit(1, "mile")
  23334. },
  23335. {
  23336. name: "Megamacro",
  23337. height: math.unit(50, "miles")
  23338. },
  23339. ]
  23340. ))
  23341. characterMakers.push(() => makeCharacter(
  23342. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23343. {
  23344. front: {
  23345. height: math.unit(1.5, "meters"),
  23346. weight: math.unit(100, "lb"),
  23347. name: "Front",
  23348. image: {
  23349. source: "./media/characters/maksio/front.svg",
  23350. extra: 1549 / 1531,
  23351. bottom: 123.7 / 1674.5429
  23352. }
  23353. },
  23354. back: {
  23355. height: math.unit(1.5, "meters"),
  23356. weight: math.unit(100, "lb"),
  23357. name: "Back",
  23358. image: {
  23359. source: "./media/characters/maksio/back.svg",
  23360. extra: 1541 / 1509,
  23361. bottom: 97 / 1639
  23362. }
  23363. },
  23364. hand: {
  23365. height: math.unit(0.621, "feet"),
  23366. name: "Hand",
  23367. image: {
  23368. source: "./media/characters/maksio/hand.svg"
  23369. }
  23370. },
  23371. foot: {
  23372. height: math.unit(1.611, "feet"),
  23373. name: "Foot",
  23374. image: {
  23375. source: "./media/characters/maksio/foot.svg"
  23376. }
  23377. },
  23378. },
  23379. [
  23380. {
  23381. name: "Shrunken",
  23382. height: math.unit(10, "cm")
  23383. },
  23384. {
  23385. name: "Normal",
  23386. height: math.unit(150, "cm"),
  23387. default: true
  23388. },
  23389. ]
  23390. ))
  23391. characterMakers.push(() => makeCharacter(
  23392. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23393. {
  23394. front: {
  23395. height: math.unit(100, "feet"),
  23396. name: "Front",
  23397. image: {
  23398. source: "./media/characters/erza-bear/front.svg",
  23399. extra: 2449 / 2390,
  23400. bottom: 46 / 2494
  23401. }
  23402. },
  23403. back: {
  23404. height: math.unit(100, "feet"),
  23405. name: "Back",
  23406. image: {
  23407. source: "./media/characters/erza-bear/back.svg",
  23408. extra: 2489 / 2430,
  23409. bottom: 85.4 / 2480
  23410. }
  23411. },
  23412. tail: {
  23413. height: math.unit(42, "feet"),
  23414. name: "Tail",
  23415. image: {
  23416. source: "./media/characters/erza-bear/tail.svg"
  23417. }
  23418. },
  23419. tongue: {
  23420. height: math.unit(8, "feet"),
  23421. name: "Tongue",
  23422. image: {
  23423. source: "./media/characters/erza-bear/tongue.svg"
  23424. }
  23425. },
  23426. dick: {
  23427. height: math.unit(10.5, "feet"),
  23428. name: "Dick",
  23429. image: {
  23430. source: "./media/characters/erza-bear/dick.svg"
  23431. }
  23432. },
  23433. dickVertical: {
  23434. height: math.unit(16.9, "feet"),
  23435. name: "Dick (Vertical)",
  23436. image: {
  23437. source: "./media/characters/erza-bear/dick-vertical.svg"
  23438. }
  23439. },
  23440. },
  23441. [
  23442. {
  23443. name: "Macro",
  23444. height: math.unit(100, "feet"),
  23445. default: true
  23446. },
  23447. ]
  23448. ))
  23449. characterMakers.push(() => makeCharacter(
  23450. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23451. {
  23452. front: {
  23453. height: math.unit(172, "cm"),
  23454. weight: math.unit(73, "kg"),
  23455. name: "Front",
  23456. image: {
  23457. source: "./media/characters/violet-flor/front.svg",
  23458. extra: 1530 / 1442,
  23459. bottom: 61.9 / 1588.8
  23460. }
  23461. },
  23462. back: {
  23463. height: math.unit(180, "cm"),
  23464. weight: math.unit(73, "kg"),
  23465. name: "Back",
  23466. image: {
  23467. source: "./media/characters/violet-flor/back.svg",
  23468. extra: 1692 / 1630,
  23469. bottom: 20 / 1712
  23470. }
  23471. },
  23472. },
  23473. [
  23474. {
  23475. name: "Normal",
  23476. height: math.unit(172, "cm"),
  23477. default: true
  23478. },
  23479. ]
  23480. ))
  23481. characterMakers.push(() => makeCharacter(
  23482. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23483. {
  23484. front: {
  23485. height: math.unit(6, "feet"),
  23486. weight: math.unit(220, "lb"),
  23487. name: "Front",
  23488. image: {
  23489. source: "./media/characters/lynn-rhea/front.svg",
  23490. extra: 310 / 273
  23491. }
  23492. },
  23493. back: {
  23494. height: math.unit(6, "feet"),
  23495. weight: math.unit(220, "lb"),
  23496. name: "Back",
  23497. image: {
  23498. source: "./media/characters/lynn-rhea/back.svg",
  23499. extra: 310 / 273
  23500. }
  23501. },
  23502. dicks: {
  23503. height: math.unit(0.9, "feet"),
  23504. name: "Dicks",
  23505. image: {
  23506. source: "./media/characters/lynn-rhea/dicks.svg"
  23507. }
  23508. },
  23509. slit: {
  23510. height: math.unit(0.4, "feet"),
  23511. name: "Slit",
  23512. image: {
  23513. source: "./media/characters/lynn-rhea/slit.svg"
  23514. }
  23515. },
  23516. },
  23517. [
  23518. {
  23519. name: "Micro",
  23520. height: math.unit(1, "inch")
  23521. },
  23522. {
  23523. name: "Macro",
  23524. height: math.unit(60, "feet"),
  23525. default: true
  23526. },
  23527. {
  23528. name: "Megamacro",
  23529. height: math.unit(2, "miles")
  23530. },
  23531. {
  23532. name: "Gigamacro",
  23533. height: math.unit(3, "earths")
  23534. },
  23535. {
  23536. name: "Galactic",
  23537. height: math.unit(0.8, "galaxies")
  23538. },
  23539. ]
  23540. ))
  23541. characterMakers.push(() => makeCharacter(
  23542. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23543. {
  23544. front: {
  23545. height: math.unit(1600, "feet"),
  23546. weight: math.unit(85758785169, "kg"),
  23547. name: "Front",
  23548. image: {
  23549. source: "./media/characters/valathos/front.svg",
  23550. extra: 1451 / 1339
  23551. }
  23552. },
  23553. },
  23554. [
  23555. {
  23556. name: "Macro",
  23557. height: math.unit(1600, "feet"),
  23558. default: true
  23559. },
  23560. ]
  23561. ))
  23562. characterMakers.push(() => makeCharacter(
  23563. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23564. {
  23565. front: {
  23566. height: math.unit(7 + 5 / 12, "feet"),
  23567. weight: math.unit(300, "lb"),
  23568. name: "Front",
  23569. image: {
  23570. source: "./media/characters/azula/front.svg",
  23571. extra: 3208 / 2880,
  23572. bottom: 80.2 / 3277
  23573. }
  23574. },
  23575. back: {
  23576. height: math.unit(7 + 5 / 12, "feet"),
  23577. weight: math.unit(300, "lb"),
  23578. name: "Back",
  23579. image: {
  23580. source: "./media/characters/azula/back.svg",
  23581. extra: 3169 / 2822,
  23582. bottom: 150.6 / 3321
  23583. }
  23584. },
  23585. },
  23586. [
  23587. {
  23588. name: "Normal",
  23589. height: math.unit(7 + 5 / 12, "feet"),
  23590. default: true
  23591. },
  23592. {
  23593. name: "Big",
  23594. height: math.unit(20, "feet")
  23595. },
  23596. ]
  23597. ))
  23598. characterMakers.push(() => makeCharacter(
  23599. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23600. {
  23601. front: {
  23602. height: math.unit(5 + 1 / 12, "feet"),
  23603. weight: math.unit(110, "lb"),
  23604. name: "Front",
  23605. image: {
  23606. source: "./media/characters/rupert/front.svg",
  23607. extra: 1549 / 1495,
  23608. bottom: 54.2 / 1604.4
  23609. }
  23610. },
  23611. },
  23612. [
  23613. {
  23614. name: "Normal",
  23615. height: math.unit(5 + 1 / 12, "feet"),
  23616. default: true
  23617. },
  23618. ]
  23619. ))
  23620. characterMakers.push(() => makeCharacter(
  23621. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23622. {
  23623. front: {
  23624. height: math.unit(8 + 4 / 12, "feet"),
  23625. weight: math.unit(350, "lb"),
  23626. name: "Front",
  23627. image: {
  23628. source: "./media/characters/sheera-castellar/front.svg",
  23629. extra: 1957 / 1894,
  23630. bottom: 26.97 / 1975.017
  23631. }
  23632. },
  23633. side: {
  23634. height: math.unit(8 + 4 / 12, "feet"),
  23635. weight: math.unit(350, "lb"),
  23636. name: "Side",
  23637. image: {
  23638. source: "./media/characters/sheera-castellar/side.svg",
  23639. extra: 1957 / 1894
  23640. }
  23641. },
  23642. back: {
  23643. height: math.unit(8 + 4 / 12, "feet"),
  23644. weight: math.unit(350, "lb"),
  23645. name: "Back",
  23646. image: {
  23647. source: "./media/characters/sheera-castellar/back.svg",
  23648. extra: 1957 / 1894
  23649. }
  23650. },
  23651. angled: {
  23652. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23653. weight: math.unit(350, "lb"),
  23654. name: "Angled",
  23655. image: {
  23656. source: "./media/characters/sheera-castellar/angled.svg",
  23657. extra: 1807 / 1707,
  23658. bottom: 68 / 1875
  23659. }
  23660. },
  23661. genitals: {
  23662. height: math.unit(2.2, "feet"),
  23663. name: "Genitals",
  23664. image: {
  23665. source: "./media/characters/sheera-castellar/genitals.svg"
  23666. }
  23667. },
  23668. taur: {
  23669. height: math.unit(10 + 6/12, "feet"),
  23670. name: "Taur",
  23671. image: {
  23672. source: "./media/characters/sheera-castellar/taur.svg",
  23673. extra: 2017/1909,
  23674. bottom: 185/2202
  23675. }
  23676. },
  23677. },
  23678. [
  23679. {
  23680. name: "Normal",
  23681. height: math.unit(8 + 4 / 12, "feet")
  23682. },
  23683. {
  23684. name: "Macro",
  23685. height: math.unit(150, "feet"),
  23686. default: true
  23687. },
  23688. {
  23689. name: "Macro+",
  23690. height: math.unit(800, "feet")
  23691. },
  23692. ]
  23693. ))
  23694. characterMakers.push(() => makeCharacter(
  23695. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23696. {
  23697. front: {
  23698. height: math.unit(6, "feet"),
  23699. weight: math.unit(150, "lb"),
  23700. name: "Front",
  23701. image: {
  23702. source: "./media/characters/jaipur/front.svg",
  23703. extra: 3860 / 3731,
  23704. bottom: 287 / 4140
  23705. }
  23706. },
  23707. back: {
  23708. height: math.unit(6, "feet"),
  23709. weight: math.unit(150, "lb"),
  23710. name: "Back",
  23711. image: {
  23712. source: "./media/characters/jaipur/back.svg",
  23713. extra: 4060 / 3930,
  23714. bottom: 151 / 4200
  23715. }
  23716. },
  23717. },
  23718. [
  23719. {
  23720. name: "Normal",
  23721. height: math.unit(1.85, "meters"),
  23722. default: true
  23723. },
  23724. {
  23725. name: "Macro",
  23726. height: math.unit(150, "meters")
  23727. },
  23728. {
  23729. name: "Macro+",
  23730. height: math.unit(0.5, "miles")
  23731. },
  23732. {
  23733. name: "Macro++",
  23734. height: math.unit(2.5, "miles")
  23735. },
  23736. {
  23737. name: "Macro+++",
  23738. height: math.unit(12, "miles")
  23739. },
  23740. {
  23741. name: "Macro++++",
  23742. height: math.unit(120, "miles")
  23743. },
  23744. {
  23745. name: "Macro+++++",
  23746. height: math.unit(1200, "miles")
  23747. },
  23748. ]
  23749. ))
  23750. characterMakers.push(() => makeCharacter(
  23751. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23752. {
  23753. front: {
  23754. height: math.unit(6, "feet"),
  23755. weight: math.unit(150, "lb"),
  23756. name: "Front",
  23757. image: {
  23758. source: "./media/characters/sheila-wolf/front.svg",
  23759. extra: 1931 / 1808,
  23760. bottom: 29.5 / 1960
  23761. }
  23762. },
  23763. dick: {
  23764. height: math.unit(1.464, "feet"),
  23765. name: "Dick",
  23766. image: {
  23767. source: "./media/characters/sheila-wolf/dick.svg"
  23768. }
  23769. },
  23770. muzzle: {
  23771. height: math.unit(0.513, "feet"),
  23772. name: "Muzzle",
  23773. image: {
  23774. source: "./media/characters/sheila-wolf/muzzle.svg"
  23775. }
  23776. },
  23777. },
  23778. [
  23779. {
  23780. name: "Macro",
  23781. height: math.unit(70, "feet"),
  23782. default: true
  23783. },
  23784. ]
  23785. ))
  23786. characterMakers.push(() => makeCharacter(
  23787. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23788. {
  23789. front: {
  23790. height: math.unit(32, "meters"),
  23791. weight: math.unit(300000, "kg"),
  23792. name: "Front",
  23793. image: {
  23794. source: "./media/characters/almor/front.svg",
  23795. extra: 1408 / 1322,
  23796. bottom: 94.6 / 1506.5
  23797. }
  23798. },
  23799. },
  23800. [
  23801. {
  23802. name: "Macro",
  23803. height: math.unit(32, "meters"),
  23804. default: true
  23805. },
  23806. ]
  23807. ))
  23808. characterMakers.push(() => makeCharacter(
  23809. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23810. {
  23811. front: {
  23812. height: math.unit(7, "feet"),
  23813. weight: math.unit(200, "lb"),
  23814. name: "Front",
  23815. image: {
  23816. source: "./media/characters/silver/front.svg",
  23817. extra: 472.1 / 450.5,
  23818. bottom: 26.5 / 499.424
  23819. }
  23820. },
  23821. },
  23822. [
  23823. {
  23824. name: "Normal",
  23825. height: math.unit(7, "feet"),
  23826. default: true
  23827. },
  23828. {
  23829. name: "Macro",
  23830. height: math.unit(800, "feet")
  23831. },
  23832. {
  23833. name: "Megamacro",
  23834. height: math.unit(250, "miles")
  23835. },
  23836. ]
  23837. ))
  23838. characterMakers.push(() => makeCharacter(
  23839. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23840. {
  23841. front: {
  23842. height: math.unit(6, "feet"),
  23843. weight: math.unit(150, "lb"),
  23844. name: "Front",
  23845. image: {
  23846. source: "./media/characters/pliskin/front.svg",
  23847. extra: 1469 / 1359,
  23848. bottom: 70 / 1540
  23849. }
  23850. },
  23851. },
  23852. [
  23853. {
  23854. name: "Micro",
  23855. height: math.unit(3, "inches")
  23856. },
  23857. {
  23858. name: "Normal",
  23859. height: math.unit(5 + 11 / 12, "feet"),
  23860. default: true
  23861. },
  23862. {
  23863. name: "Macro",
  23864. height: math.unit(120, "feet")
  23865. },
  23866. ]
  23867. ))
  23868. characterMakers.push(() => makeCharacter(
  23869. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23870. {
  23871. front: {
  23872. height: math.unit(6, "feet"),
  23873. weight: math.unit(150, "lb"),
  23874. name: "Front",
  23875. image: {
  23876. source: "./media/characters/sammy/front.svg",
  23877. extra: 1193 / 1089,
  23878. bottom: 30.5 / 1226
  23879. }
  23880. },
  23881. },
  23882. [
  23883. {
  23884. name: "Macro",
  23885. height: math.unit(1700, "feet"),
  23886. default: true
  23887. },
  23888. {
  23889. name: "Examacro",
  23890. height: math.unit(2.5e9, "lightyears")
  23891. },
  23892. ]
  23893. ))
  23894. characterMakers.push(() => makeCharacter(
  23895. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23896. {
  23897. front: {
  23898. height: math.unit(21, "meters"),
  23899. weight: math.unit(12, "tonnes"),
  23900. name: "Front",
  23901. image: {
  23902. source: "./media/characters/kuru/front.svg",
  23903. extra: 4301 / 3785,
  23904. bottom: 371.3 / 4691
  23905. }
  23906. },
  23907. },
  23908. [
  23909. {
  23910. name: "Macro",
  23911. height: math.unit(21, "meters"),
  23912. default: true
  23913. },
  23914. ]
  23915. ))
  23916. characterMakers.push(() => makeCharacter(
  23917. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23918. {
  23919. front: {
  23920. height: math.unit(23, "meters"),
  23921. weight: math.unit(12.2, "tonnes"),
  23922. name: "Front",
  23923. image: {
  23924. source: "./media/characters/rakka/front.svg",
  23925. extra: 4670 / 4169,
  23926. bottom: 301 / 4968.7
  23927. }
  23928. },
  23929. },
  23930. [
  23931. {
  23932. name: "Macro",
  23933. height: math.unit(23, "meters"),
  23934. default: true
  23935. },
  23936. ]
  23937. ))
  23938. characterMakers.push(() => makeCharacter(
  23939. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23940. {
  23941. front: {
  23942. height: math.unit(6, "feet"),
  23943. weight: math.unit(150, "lb"),
  23944. name: "Front",
  23945. image: {
  23946. source: "./media/characters/rhys-feline/front.svg",
  23947. extra: 2488 / 2308,
  23948. bottom: 35.67 / 2519.19
  23949. }
  23950. },
  23951. },
  23952. [
  23953. {
  23954. name: "Really Small",
  23955. height: math.unit(1, "nm")
  23956. },
  23957. {
  23958. name: "Micro",
  23959. height: math.unit(4, "inches")
  23960. },
  23961. {
  23962. name: "Normal",
  23963. height: math.unit(4 + 10 / 12, "feet"),
  23964. default: true
  23965. },
  23966. {
  23967. name: "Macro",
  23968. height: math.unit(100, "feet")
  23969. },
  23970. {
  23971. name: "Megamacto",
  23972. height: math.unit(50, "miles")
  23973. },
  23974. ]
  23975. ))
  23976. characterMakers.push(() => makeCharacter(
  23977. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23978. {
  23979. side: {
  23980. height: math.unit(30, "feet"),
  23981. weight: math.unit(35000, "kg"),
  23982. name: "Side",
  23983. image: {
  23984. source: "./media/characters/alydar/side.svg",
  23985. extra: 234 / 222,
  23986. bottom: 6.5 / 241
  23987. }
  23988. },
  23989. front: {
  23990. height: math.unit(30, "feet"),
  23991. weight: math.unit(35000, "kg"),
  23992. name: "Front",
  23993. image: {
  23994. source: "./media/characters/alydar/front.svg",
  23995. extra: 223.37 / 210.2,
  23996. bottom: 22.3 / 246.76
  23997. }
  23998. },
  23999. top: {
  24000. height: math.unit(64.54, "feet"),
  24001. weight: math.unit(35000, "kg"),
  24002. name: "Top",
  24003. image: {
  24004. source: "./media/characters/alydar/top.svg"
  24005. }
  24006. },
  24007. anthro: {
  24008. height: math.unit(30, "feet"),
  24009. weight: math.unit(9000, "kg"),
  24010. name: "Anthro",
  24011. image: {
  24012. source: "./media/characters/alydar/anthro.svg",
  24013. extra: 432 / 421,
  24014. bottom: 7.18 / 440
  24015. }
  24016. },
  24017. maw: {
  24018. height: math.unit(11.693, "feet"),
  24019. name: "Maw",
  24020. image: {
  24021. source: "./media/characters/alydar/maw.svg"
  24022. }
  24023. },
  24024. head: {
  24025. height: math.unit(11.693, "feet"),
  24026. name: "Head",
  24027. image: {
  24028. source: "./media/characters/alydar/head.svg"
  24029. }
  24030. },
  24031. headAlt: {
  24032. height: math.unit(12.861, "feet"),
  24033. name: "Head (Alt)",
  24034. image: {
  24035. source: "./media/characters/alydar/head-alt.svg"
  24036. }
  24037. },
  24038. wing: {
  24039. height: math.unit(20.712, "feet"),
  24040. name: "Wing",
  24041. image: {
  24042. source: "./media/characters/alydar/wing.svg"
  24043. }
  24044. },
  24045. wingFeather: {
  24046. height: math.unit(9.662, "feet"),
  24047. name: "Wing Feather",
  24048. image: {
  24049. source: "./media/characters/alydar/wing-feather.svg"
  24050. }
  24051. },
  24052. countourFeather: {
  24053. height: math.unit(4.154, "feet"),
  24054. name: "Contour Feather",
  24055. image: {
  24056. source: "./media/characters/alydar/contour-feather.svg"
  24057. }
  24058. },
  24059. },
  24060. [
  24061. {
  24062. name: "Diplomatic",
  24063. height: math.unit(13, "feet"),
  24064. default: true
  24065. },
  24066. {
  24067. name: "Small",
  24068. height: math.unit(30, "feet")
  24069. },
  24070. {
  24071. name: "Normal",
  24072. height: math.unit(95, "feet"),
  24073. default: true
  24074. },
  24075. {
  24076. name: "Large",
  24077. height: math.unit(285, "feet")
  24078. },
  24079. {
  24080. name: "Incomprehensible",
  24081. height: math.unit(450, "megameters")
  24082. },
  24083. ]
  24084. ))
  24085. characterMakers.push(() => makeCharacter(
  24086. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24087. {
  24088. side: {
  24089. height: math.unit(11, "feet"),
  24090. weight: math.unit(1750, "kg"),
  24091. name: "Side",
  24092. image: {
  24093. source: "./media/characters/selicia/side.svg",
  24094. extra: 440 / 396,
  24095. bottom: 24.8 / 465.979
  24096. }
  24097. },
  24098. maw: {
  24099. height: math.unit(4.665, "feet"),
  24100. name: "Maw",
  24101. image: {
  24102. source: "./media/characters/selicia/maw.svg"
  24103. }
  24104. },
  24105. },
  24106. [
  24107. {
  24108. name: "Normal",
  24109. height: math.unit(11, "feet"),
  24110. default: true
  24111. },
  24112. ]
  24113. ))
  24114. characterMakers.push(() => makeCharacter(
  24115. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24116. {
  24117. side: {
  24118. height: math.unit(2 + 6 / 12, "feet"),
  24119. weight: math.unit(30, "lb"),
  24120. name: "Side",
  24121. image: {
  24122. source: "./media/characters/layla/side.svg",
  24123. extra: 244 / 188,
  24124. bottom: 18.2 / 262.1
  24125. }
  24126. },
  24127. back: {
  24128. height: math.unit(2 + 6 / 12, "feet"),
  24129. weight: math.unit(30, "lb"),
  24130. name: "Back",
  24131. image: {
  24132. source: "./media/characters/layla/back.svg",
  24133. extra: 308 / 241.5,
  24134. bottom: 8.9 / 316.8
  24135. }
  24136. },
  24137. cumming: {
  24138. height: math.unit(2 + 6 / 12, "feet"),
  24139. weight: math.unit(30, "lb"),
  24140. name: "Cumming",
  24141. image: {
  24142. source: "./media/characters/layla/cumming.svg",
  24143. extra: 342 / 279,
  24144. bottom: 595 / 938
  24145. }
  24146. },
  24147. dickFlaccid: {
  24148. height: math.unit(2.595, "feet"),
  24149. name: "Flaccid Genitals",
  24150. image: {
  24151. source: "./media/characters/layla/dick-flaccid.svg"
  24152. }
  24153. },
  24154. dickErect: {
  24155. height: math.unit(2.359, "feet"),
  24156. name: "Erect Genitals",
  24157. image: {
  24158. source: "./media/characters/layla/dick-erect.svg"
  24159. }
  24160. },
  24161. dragon: {
  24162. height: math.unit(40, "feet"),
  24163. name: "Dragon",
  24164. image: {
  24165. source: "./media/characters/layla/dragon.svg",
  24166. extra: 610/535,
  24167. bottom: 367/977
  24168. }
  24169. },
  24170. taur: {
  24171. height: math.unit(30, "feet"),
  24172. name: "Taur",
  24173. image: {
  24174. source: "./media/characters/layla/taur.svg",
  24175. extra: 1268/1199,
  24176. bottom: 112/1380
  24177. }
  24178. },
  24179. },
  24180. [
  24181. {
  24182. name: "Micro",
  24183. height: math.unit(1, "inch")
  24184. },
  24185. {
  24186. name: "Small",
  24187. height: math.unit(1, "foot")
  24188. },
  24189. {
  24190. name: "Normal",
  24191. height: math.unit(2 + 6 / 12, "feet"),
  24192. default: true
  24193. },
  24194. {
  24195. name: "Macro",
  24196. height: math.unit(200, "feet")
  24197. },
  24198. {
  24199. name: "Megamacro",
  24200. height: math.unit(1000, "miles")
  24201. },
  24202. {
  24203. name: "Planetary",
  24204. height: math.unit(8000, "miles")
  24205. },
  24206. {
  24207. name: "True Layla",
  24208. height: math.unit(200000 * 7, "multiverses")
  24209. },
  24210. ]
  24211. ))
  24212. characterMakers.push(() => makeCharacter(
  24213. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24214. {
  24215. back: {
  24216. height: math.unit(10.5, "feet"),
  24217. weight: math.unit(800, "lb"),
  24218. name: "Back",
  24219. image: {
  24220. source: "./media/characters/knox/back.svg",
  24221. extra: 1486 / 1089,
  24222. bottom: 107 / 1601.4
  24223. }
  24224. },
  24225. side: {
  24226. height: math.unit(10.5, "feet"),
  24227. weight: math.unit(800, "lb"),
  24228. name: "Side",
  24229. image: {
  24230. source: "./media/characters/knox/side.svg",
  24231. extra: 244 / 218,
  24232. bottom: 14 / 260
  24233. }
  24234. },
  24235. },
  24236. [
  24237. {
  24238. name: "Compact",
  24239. height: math.unit(10.5, "feet"),
  24240. default: true
  24241. },
  24242. {
  24243. name: "Dynamax",
  24244. height: math.unit(210, "feet")
  24245. },
  24246. {
  24247. name: "Full Macro",
  24248. height: math.unit(850, "feet")
  24249. },
  24250. ]
  24251. ))
  24252. characterMakers.push(() => makeCharacter(
  24253. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24254. {
  24255. front: {
  24256. height: math.unit(28, "feet"),
  24257. weight: math.unit(10500, "lb"),
  24258. name: "Front",
  24259. image: {
  24260. source: "./media/characters/kayda/front.svg",
  24261. extra: 1536 / 1428,
  24262. bottom: 68.7 / 1603
  24263. }
  24264. },
  24265. back: {
  24266. height: math.unit(28, "feet"),
  24267. weight: math.unit(10500, "lb"),
  24268. name: "Back",
  24269. image: {
  24270. source: "./media/characters/kayda/back.svg",
  24271. extra: 1557 / 1464,
  24272. bottom: 39.5 / 1597.49
  24273. }
  24274. },
  24275. dick: {
  24276. height: math.unit(3.858, "feet"),
  24277. name: "Dick",
  24278. image: {
  24279. source: "./media/characters/kayda/dick.svg"
  24280. }
  24281. },
  24282. },
  24283. [
  24284. {
  24285. name: "Macro",
  24286. height: math.unit(28, "feet"),
  24287. default: true
  24288. },
  24289. ]
  24290. ))
  24291. characterMakers.push(() => makeCharacter(
  24292. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24293. {
  24294. front: {
  24295. height: math.unit(10 + 11 / 12, "feet"),
  24296. weight: math.unit(1400, "lb"),
  24297. name: "Front",
  24298. image: {
  24299. source: "./media/characters/brian/front.svg",
  24300. extra: 737 / 692,
  24301. bottom: 55.4 / 785
  24302. }
  24303. },
  24304. },
  24305. [
  24306. {
  24307. name: "Normal",
  24308. height: math.unit(10 + 11 / 12, "feet"),
  24309. default: true
  24310. },
  24311. ]
  24312. ))
  24313. characterMakers.push(() => makeCharacter(
  24314. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24315. {
  24316. front: {
  24317. height: math.unit(5 + 8 / 12, "feet"),
  24318. weight: math.unit(140, "lb"),
  24319. name: "Front",
  24320. image: {
  24321. source: "./media/characters/khemri/front.svg",
  24322. extra: 4780 / 4059,
  24323. bottom: 80.1 / 4859.25
  24324. }
  24325. },
  24326. },
  24327. [
  24328. {
  24329. name: "Micro",
  24330. height: math.unit(6, "inches")
  24331. },
  24332. {
  24333. name: "Normal",
  24334. height: math.unit(5 + 8 / 12, "feet"),
  24335. default: true
  24336. },
  24337. ]
  24338. ))
  24339. characterMakers.push(() => makeCharacter(
  24340. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24341. {
  24342. front: {
  24343. height: math.unit(13, "feet"),
  24344. weight: math.unit(1700, "lb"),
  24345. name: "Front",
  24346. image: {
  24347. source: "./media/characters/felix-braveheart/front.svg",
  24348. extra: 1222 / 1157,
  24349. bottom: 53.2 / 1280
  24350. }
  24351. },
  24352. back: {
  24353. height: math.unit(13, "feet"),
  24354. weight: math.unit(1700, "lb"),
  24355. name: "Back",
  24356. image: {
  24357. source: "./media/characters/felix-braveheart/back.svg",
  24358. extra: 1277 / 1203,
  24359. bottom: 50.2 / 1327
  24360. }
  24361. },
  24362. feral: {
  24363. height: math.unit(6, "feet"),
  24364. weight: math.unit(400, "lb"),
  24365. name: "Feral",
  24366. image: {
  24367. source: "./media/characters/felix-braveheart/feral.svg",
  24368. extra: 682 / 625,
  24369. bottom: 6.9 / 688
  24370. }
  24371. },
  24372. },
  24373. [
  24374. {
  24375. name: "Normal",
  24376. height: math.unit(13, "feet"),
  24377. default: true
  24378. },
  24379. ]
  24380. ))
  24381. characterMakers.push(() => makeCharacter(
  24382. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24383. {
  24384. side: {
  24385. height: math.unit(5 + 11 / 12, "feet"),
  24386. weight: math.unit(1400, "lb"),
  24387. name: "Side",
  24388. image: {
  24389. source: "./media/characters/shadow-blade/side.svg",
  24390. extra: 1726 / 1267,
  24391. bottom: 58.4 / 1785
  24392. }
  24393. },
  24394. },
  24395. [
  24396. {
  24397. name: "Normal",
  24398. height: math.unit(5 + 11 / 12, "feet"),
  24399. default: true
  24400. },
  24401. ]
  24402. ))
  24403. characterMakers.push(() => makeCharacter(
  24404. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24405. {
  24406. front: {
  24407. height: math.unit(1 + 6 / 12, "feet"),
  24408. weight: math.unit(25, "lb"),
  24409. name: "Front",
  24410. image: {
  24411. source: "./media/characters/karla-halldor/front.svg",
  24412. extra: 1459 / 1383,
  24413. bottom: 12 / 1472
  24414. }
  24415. },
  24416. },
  24417. [
  24418. {
  24419. name: "Normal",
  24420. height: math.unit(1 + 6 / 12, "feet"),
  24421. default: true
  24422. },
  24423. ]
  24424. ))
  24425. characterMakers.push(() => makeCharacter(
  24426. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24427. {
  24428. front: {
  24429. height: math.unit(6 + 2 / 12, "feet"),
  24430. weight: math.unit(160, "lb"),
  24431. name: "Front",
  24432. image: {
  24433. source: "./media/characters/ariam/front.svg",
  24434. extra: 1073/976,
  24435. bottom: 52/1125
  24436. }
  24437. },
  24438. back: {
  24439. height: math.unit(6 + 2/12, "feet"),
  24440. weight: math.unit(160, "lb"),
  24441. name: "Back",
  24442. image: {
  24443. source: "./media/characters/ariam/back.svg",
  24444. extra: 1103/1023,
  24445. bottom: 9/1112
  24446. }
  24447. },
  24448. dressed: {
  24449. height: math.unit(6 + 2/12, "feet"),
  24450. weight: math.unit(160, "lb"),
  24451. name: "Dressed",
  24452. image: {
  24453. source: "./media/characters/ariam/dressed.svg",
  24454. extra: 1099/1009,
  24455. bottom: 25/1124
  24456. }
  24457. },
  24458. squatting: {
  24459. height: math.unit(4.1, "feet"),
  24460. weight: math.unit(160, "lb"),
  24461. name: "Squatting",
  24462. image: {
  24463. source: "./media/characters/ariam/squatting.svg",
  24464. extra: 2617 / 2112,
  24465. bottom: 61.2 / 2681,
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Normal",
  24472. height: math.unit(6 + 2 / 12, "feet"),
  24473. default: true
  24474. },
  24475. {
  24476. name: "Normal+",
  24477. height: math.unit(4, "meters")
  24478. },
  24479. {
  24480. name: "Macro",
  24481. height: math.unit(50, "meters")
  24482. },
  24483. {
  24484. name: "Macro+",
  24485. height: math.unit(100, "meters")
  24486. },
  24487. {
  24488. name: "Megamacro",
  24489. height: math.unit(20, "km")
  24490. },
  24491. {
  24492. name: "Caretaker",
  24493. height: math.unit(444, "megameters")
  24494. },
  24495. ]
  24496. ))
  24497. characterMakers.push(() => makeCharacter(
  24498. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24499. {
  24500. front: {
  24501. height: math.unit(1.67, "meters"),
  24502. weight: math.unit(140, "lb"),
  24503. name: "Front",
  24504. image: {
  24505. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24506. extra: 438 / 410,
  24507. bottom: 0.75 / 439
  24508. }
  24509. },
  24510. },
  24511. [
  24512. {
  24513. name: "Shrunken",
  24514. height: math.unit(7.6, "cm")
  24515. },
  24516. {
  24517. name: "Human Scale",
  24518. height: math.unit(1.67, "meters")
  24519. },
  24520. {
  24521. name: "Wolxi Scale",
  24522. height: math.unit(36.7, "meters"),
  24523. default: true
  24524. },
  24525. ]
  24526. ))
  24527. characterMakers.push(() => makeCharacter(
  24528. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24529. {
  24530. front: {
  24531. height: math.unit(1.73, "meters"),
  24532. weight: math.unit(240, "lb"),
  24533. name: "Front",
  24534. image: {
  24535. source: "./media/characters/izue-two-mothers/front.svg",
  24536. extra: 469 / 437,
  24537. bottom: 1.24 / 470.6
  24538. }
  24539. },
  24540. },
  24541. [
  24542. {
  24543. name: "Shrunken",
  24544. height: math.unit(7.86, "cm")
  24545. },
  24546. {
  24547. name: "Human Scale",
  24548. height: math.unit(1.73, "meters")
  24549. },
  24550. {
  24551. name: "Wolxi Scale",
  24552. height: math.unit(38, "meters"),
  24553. default: true
  24554. },
  24555. ]
  24556. ))
  24557. characterMakers.push(() => makeCharacter(
  24558. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24559. {
  24560. front: {
  24561. height: math.unit(1.55, "meters"),
  24562. weight: math.unit(120, "lb"),
  24563. name: "Front",
  24564. image: {
  24565. source: "./media/characters/teeku-love-shack/front.svg",
  24566. extra: 387 / 362,
  24567. bottom: 1.51 / 388
  24568. }
  24569. },
  24570. },
  24571. [
  24572. {
  24573. name: "Shrunken",
  24574. height: math.unit(7, "cm")
  24575. },
  24576. {
  24577. name: "Human Scale",
  24578. height: math.unit(1.55, "meters")
  24579. },
  24580. {
  24581. name: "Wolxi Scale",
  24582. height: math.unit(34.1, "meters"),
  24583. default: true
  24584. },
  24585. ]
  24586. ))
  24587. characterMakers.push(() => makeCharacter(
  24588. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24589. {
  24590. front: {
  24591. height: math.unit(1.83, "meters"),
  24592. weight: math.unit(135, "lb"),
  24593. name: "Front",
  24594. image: {
  24595. source: "./media/characters/dejma-the-red/front.svg",
  24596. extra: 480 / 458,
  24597. bottom: 1.8 / 482
  24598. }
  24599. },
  24600. },
  24601. [
  24602. {
  24603. name: "Shrunken",
  24604. height: math.unit(8.3, "cm")
  24605. },
  24606. {
  24607. name: "Human Scale",
  24608. height: math.unit(1.83, "meters")
  24609. },
  24610. {
  24611. name: "Wolxi Scale",
  24612. height: math.unit(40, "meters"),
  24613. default: true
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24619. {
  24620. front: {
  24621. height: math.unit(1.78, "meters"),
  24622. weight: math.unit(65, "kg"),
  24623. name: "Front",
  24624. image: {
  24625. source: "./media/characters/aki/front.svg",
  24626. extra: 452 / 415
  24627. }
  24628. },
  24629. frontNsfw: {
  24630. height: math.unit(1.78, "meters"),
  24631. weight: math.unit(65, "kg"),
  24632. name: "Front (NSFW)",
  24633. image: {
  24634. source: "./media/characters/aki/front-nsfw.svg",
  24635. extra: 452 / 415
  24636. }
  24637. },
  24638. back: {
  24639. height: math.unit(1.78, "meters"),
  24640. weight: math.unit(65, "kg"),
  24641. name: "Back",
  24642. image: {
  24643. source: "./media/characters/aki/back.svg",
  24644. extra: 452 / 415
  24645. }
  24646. },
  24647. rump: {
  24648. height: math.unit(2.05, "feet"),
  24649. name: "Rump",
  24650. image: {
  24651. source: "./media/characters/aki/rump.svg"
  24652. }
  24653. },
  24654. dick: {
  24655. height: math.unit(0.95, "feet"),
  24656. name: "Dick",
  24657. image: {
  24658. source: "./media/characters/aki/dick.svg"
  24659. }
  24660. },
  24661. },
  24662. [
  24663. {
  24664. name: "Micro",
  24665. height: math.unit(15, "cm")
  24666. },
  24667. {
  24668. name: "Normal",
  24669. height: math.unit(178, "cm"),
  24670. default: true
  24671. },
  24672. {
  24673. name: "Macro",
  24674. height: math.unit(214, "m")
  24675. },
  24676. {
  24677. name: "Macro+",
  24678. height: math.unit(534, "m")
  24679. },
  24680. ]
  24681. ))
  24682. characterMakers.push(() => makeCharacter(
  24683. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24684. {
  24685. front: {
  24686. height: math.unit(5 + 5 / 12, "feet"),
  24687. weight: math.unit(120, "lb"),
  24688. name: "Front",
  24689. image: {
  24690. source: "./media/characters/ari/front.svg",
  24691. extra: 714.5 / 682,
  24692. bottom: 8 / 722.5
  24693. }
  24694. },
  24695. },
  24696. [
  24697. {
  24698. name: "Normal",
  24699. height: math.unit(5 + 5 / 12, "feet")
  24700. },
  24701. {
  24702. name: "Macro",
  24703. height: math.unit(100, "feet"),
  24704. default: true
  24705. },
  24706. {
  24707. name: "Megamacro",
  24708. height: math.unit(100, "miles")
  24709. },
  24710. {
  24711. name: "Gigamacro",
  24712. height: math.unit(80000, "miles")
  24713. },
  24714. ]
  24715. ))
  24716. characterMakers.push(() => makeCharacter(
  24717. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24718. {
  24719. side: {
  24720. height: math.unit(9, "feet"),
  24721. weight: math.unit(400, "kg"),
  24722. name: "Side",
  24723. image: {
  24724. source: "./media/characters/bolt/side.svg",
  24725. extra: 1126 / 896,
  24726. bottom: 60 / 1187.3,
  24727. }
  24728. },
  24729. },
  24730. [
  24731. {
  24732. name: "Micro",
  24733. height: math.unit(5, "inches")
  24734. },
  24735. {
  24736. name: "Normal",
  24737. height: math.unit(9, "feet"),
  24738. default: true
  24739. },
  24740. {
  24741. name: "Macro",
  24742. height: math.unit(700, "feet")
  24743. },
  24744. {
  24745. name: "Max Size",
  24746. height: math.unit(1.52e22, "yottameters")
  24747. },
  24748. ]
  24749. ))
  24750. characterMakers.push(() => makeCharacter(
  24751. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24752. {
  24753. front: {
  24754. height: math.unit(4.53, "meters"),
  24755. weight: math.unit(3, "tons"),
  24756. name: "Front",
  24757. image: {
  24758. source: "./media/characters/draekon-sylviar/front.svg",
  24759. extra: 1228 / 1068,
  24760. bottom: 41 / 1270
  24761. }
  24762. },
  24763. tail: {
  24764. height: math.unit(1.772, "meter"),
  24765. name: "Tail",
  24766. image: {
  24767. source: "./media/characters/draekon-sylviar/tail.svg"
  24768. }
  24769. },
  24770. head: {
  24771. height: math.unit(1.331, "meter"),
  24772. name: "Head",
  24773. image: {
  24774. source: "./media/characters/draekon-sylviar/head.svg"
  24775. }
  24776. },
  24777. hand: {
  24778. height: math.unit(0.564, "meter"),
  24779. name: "Hand",
  24780. image: {
  24781. source: "./media/characters/draekon-sylviar/hand.svg"
  24782. }
  24783. },
  24784. foot: {
  24785. height: math.unit(0.621, "meter"),
  24786. name: "Foot",
  24787. image: {
  24788. source: "./media/characters/draekon-sylviar/foot.svg",
  24789. bottom: 32 / 324
  24790. }
  24791. },
  24792. dick: {
  24793. height: math.unit(61, "cm"),
  24794. name: "Dick",
  24795. image: {
  24796. source: "./media/characters/draekon-sylviar/dick.svg"
  24797. }
  24798. },
  24799. dickseparated: {
  24800. height: math.unit(61, "cm"),
  24801. name: "Dick-separated",
  24802. image: {
  24803. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24804. }
  24805. },
  24806. },
  24807. [
  24808. {
  24809. name: "Small",
  24810. height: math.unit(4.53 / 2, "meters"),
  24811. default: true
  24812. },
  24813. {
  24814. name: "Normal",
  24815. height: math.unit(4.53, "meters"),
  24816. default: true
  24817. },
  24818. {
  24819. name: "Large",
  24820. height: math.unit(4.53 * 2, "meters"),
  24821. },
  24822. ]
  24823. ))
  24824. characterMakers.push(() => makeCharacter(
  24825. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24826. {
  24827. front: {
  24828. height: math.unit(6 + 2 / 12, "feet"),
  24829. weight: math.unit(180, "lb"),
  24830. name: "Front",
  24831. image: {
  24832. source: "./media/characters/brawler/front.svg",
  24833. extra: 3301 / 3027,
  24834. bottom: 138 / 3439
  24835. }
  24836. },
  24837. },
  24838. [
  24839. {
  24840. name: "Normal",
  24841. height: math.unit(6 + 2 / 12, "feet"),
  24842. default: true
  24843. },
  24844. ]
  24845. ))
  24846. characterMakers.push(() => makeCharacter(
  24847. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24848. {
  24849. front: {
  24850. height: math.unit(11, "feet"),
  24851. weight: math.unit(1000, "lb"),
  24852. name: "Front",
  24853. image: {
  24854. source: "./media/characters/alex/front.svg",
  24855. bottom: 44.5 / 620
  24856. }
  24857. },
  24858. },
  24859. [
  24860. {
  24861. name: "Micro",
  24862. height: math.unit(5, "inches")
  24863. },
  24864. {
  24865. name: "Normal",
  24866. height: math.unit(11, "feet"),
  24867. default: true
  24868. },
  24869. {
  24870. name: "Macro",
  24871. height: math.unit(9.5e9, "feet")
  24872. },
  24873. {
  24874. name: "Max Size",
  24875. height: math.unit(1.4e283, "yottameters")
  24876. },
  24877. ]
  24878. ))
  24879. characterMakers.push(() => makeCharacter(
  24880. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24881. {
  24882. female: {
  24883. height: math.unit(29.9, "m"),
  24884. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24885. name: "Female",
  24886. image: {
  24887. source: "./media/characters/zenari/female.svg",
  24888. extra: 3281.6 / 3217,
  24889. bottom: 72.2 / 3353
  24890. }
  24891. },
  24892. male: {
  24893. height: math.unit(27.7, "m"),
  24894. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24895. name: "Male",
  24896. image: {
  24897. source: "./media/characters/zenari/male.svg",
  24898. extra: 3008 / 2991,
  24899. bottom: 54.6 / 3069
  24900. }
  24901. },
  24902. },
  24903. [
  24904. {
  24905. name: "Macro",
  24906. height: math.unit(29.7, "meters"),
  24907. default: true
  24908. },
  24909. ]
  24910. ))
  24911. characterMakers.push(() => makeCharacter(
  24912. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24913. {
  24914. female: {
  24915. height: math.unit(23.8, "m"),
  24916. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24917. name: "Female",
  24918. image: {
  24919. source: "./media/characters/mactarian/female.svg",
  24920. extra: 2662 / 2569,
  24921. bottom: 73 / 2736
  24922. }
  24923. },
  24924. male: {
  24925. height: math.unit(23.8, "m"),
  24926. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24927. name: "Male",
  24928. image: {
  24929. source: "./media/characters/mactarian/male.svg",
  24930. extra: 2673 / 2600,
  24931. bottom: 76 / 2750
  24932. }
  24933. },
  24934. },
  24935. [
  24936. {
  24937. name: "Macro",
  24938. height: math.unit(23.8, "meters"),
  24939. default: true
  24940. },
  24941. ]
  24942. ))
  24943. characterMakers.push(() => makeCharacter(
  24944. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24945. {
  24946. female: {
  24947. height: math.unit(19.3, "m"),
  24948. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24949. name: "Female",
  24950. image: {
  24951. source: "./media/characters/umok/female.svg",
  24952. extra: 2186 / 2078,
  24953. bottom: 87 / 2277
  24954. }
  24955. },
  24956. male: {
  24957. height: math.unit(19.5, "m"),
  24958. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24959. name: "Male",
  24960. image: {
  24961. source: "./media/characters/umok/male.svg",
  24962. extra: 2233 / 2140,
  24963. bottom: 24.4 / 2258
  24964. }
  24965. },
  24966. },
  24967. [
  24968. {
  24969. name: "Macro",
  24970. height: math.unit(19.3, "meters"),
  24971. default: true
  24972. },
  24973. ]
  24974. ))
  24975. characterMakers.push(() => makeCharacter(
  24976. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24977. {
  24978. female: {
  24979. height: math.unit(26.15, "m"),
  24980. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24981. name: "Female",
  24982. image: {
  24983. source: "./media/characters/joraxian/female.svg",
  24984. extra: 2912 / 2824,
  24985. bottom: 36 / 2956
  24986. }
  24987. },
  24988. male: {
  24989. height: math.unit(25.4, "m"),
  24990. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24991. name: "Male",
  24992. image: {
  24993. source: "./media/characters/joraxian/male.svg",
  24994. extra: 2877 / 2721,
  24995. bottom: 82 / 2967
  24996. }
  24997. },
  24998. },
  24999. [
  25000. {
  25001. name: "Macro",
  25002. height: math.unit(26.15, "meters"),
  25003. default: true
  25004. },
  25005. ]
  25006. ))
  25007. characterMakers.push(() => makeCharacter(
  25008. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25009. {
  25010. female: {
  25011. height: math.unit(21.6, "m"),
  25012. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25013. name: "Female",
  25014. image: {
  25015. source: "./media/characters/sthara/female.svg",
  25016. extra: 2516 / 2347,
  25017. bottom: 21.5 / 2537
  25018. }
  25019. },
  25020. male: {
  25021. height: math.unit(24, "m"),
  25022. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25023. name: "Male",
  25024. image: {
  25025. source: "./media/characters/sthara/male.svg",
  25026. extra: 2732 / 2607,
  25027. bottom: 23 / 2732
  25028. }
  25029. },
  25030. },
  25031. [
  25032. {
  25033. name: "Macro",
  25034. height: math.unit(21.6, "meters"),
  25035. default: true
  25036. },
  25037. ]
  25038. ))
  25039. characterMakers.push(() => makeCharacter(
  25040. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25041. {
  25042. front: {
  25043. height: math.unit(6 + 4 / 12, "feet"),
  25044. weight: math.unit(175, "lb"),
  25045. name: "Front",
  25046. image: {
  25047. source: "./media/characters/luka-bryzant/front.svg",
  25048. extra: 311 / 289,
  25049. bottom: 4 / 315
  25050. }
  25051. },
  25052. back: {
  25053. height: math.unit(6 + 4 / 12, "feet"),
  25054. weight: math.unit(175, "lb"),
  25055. name: "Back",
  25056. image: {
  25057. source: "./media/characters/luka-bryzant/back.svg",
  25058. extra: 311 / 289,
  25059. bottom: 3.8 / 313.7
  25060. }
  25061. },
  25062. },
  25063. [
  25064. {
  25065. name: "Micro",
  25066. height: math.unit(10, "inches")
  25067. },
  25068. {
  25069. name: "Normal",
  25070. height: math.unit(6 + 4 / 12, "feet"),
  25071. default: true
  25072. },
  25073. {
  25074. name: "Large",
  25075. height: math.unit(12, "feet")
  25076. },
  25077. ]
  25078. ))
  25079. characterMakers.push(() => makeCharacter(
  25080. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25081. {
  25082. front: {
  25083. height: math.unit(5 + 7 / 12, "feet"),
  25084. weight: math.unit(185, "lb"),
  25085. name: "Front",
  25086. image: {
  25087. source: "./media/characters/aman-aquila/front.svg",
  25088. extra: 1013 / 976,
  25089. bottom: 45.6 / 1057
  25090. }
  25091. },
  25092. side: {
  25093. height: math.unit(5 + 7 / 12, "feet"),
  25094. weight: math.unit(185, "lb"),
  25095. name: "Side",
  25096. image: {
  25097. source: "./media/characters/aman-aquila/side.svg",
  25098. extra: 1054 / 1011,
  25099. bottom: 15 / 1070
  25100. }
  25101. },
  25102. back: {
  25103. height: math.unit(5 + 7 / 12, "feet"),
  25104. weight: math.unit(185, "lb"),
  25105. name: "Back",
  25106. image: {
  25107. source: "./media/characters/aman-aquila/back.svg",
  25108. extra: 1026 / 970,
  25109. bottom: 12 / 1039
  25110. }
  25111. },
  25112. head: {
  25113. height: math.unit(1.211, "feet"),
  25114. name: "Head",
  25115. image: {
  25116. source: "./media/characters/aman-aquila/head.svg",
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Minimicro",
  25123. height: math.unit(0.057, "inches")
  25124. },
  25125. {
  25126. name: "Micro",
  25127. height: math.unit(7, "inches")
  25128. },
  25129. {
  25130. name: "Mini",
  25131. height: math.unit(3 + 7 / 12, "feet")
  25132. },
  25133. {
  25134. name: "Normal",
  25135. height: math.unit(5 + 7 / 12, "feet"),
  25136. default: true
  25137. },
  25138. {
  25139. name: "Macro",
  25140. height: math.unit(157 + 7 / 12, "feet")
  25141. },
  25142. {
  25143. name: "Megamacro",
  25144. height: math.unit(1557 + 7 / 12, "feet")
  25145. },
  25146. {
  25147. name: "Gigamacro",
  25148. height: math.unit(15557 + 7 / 12, "feet")
  25149. },
  25150. ]
  25151. ))
  25152. characterMakers.push(() => makeCharacter(
  25153. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25154. {
  25155. front: {
  25156. height: math.unit(3 + 2 / 12, "inches"),
  25157. weight: math.unit(0.3, "ounces"),
  25158. name: "Front",
  25159. image: {
  25160. source: "./media/characters/hiphae/front.svg",
  25161. extra: 1931 / 1683,
  25162. bottom: 24 / 1955
  25163. }
  25164. },
  25165. },
  25166. [
  25167. {
  25168. name: "Normal",
  25169. height: math.unit(3 + 1 / 2, "inches"),
  25170. default: true
  25171. },
  25172. ]
  25173. ))
  25174. characterMakers.push(() => makeCharacter(
  25175. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25176. {
  25177. front: {
  25178. height: math.unit(5 + 10 / 12, "feet"),
  25179. weight: math.unit(165, "lb"),
  25180. name: "Front",
  25181. image: {
  25182. source: "./media/characters/nicky/front.svg",
  25183. extra: 3144 / 2886,
  25184. bottom: 45.6 / 3192
  25185. }
  25186. },
  25187. back: {
  25188. height: math.unit(5 + 10 / 12, "feet"),
  25189. weight: math.unit(165, "lb"),
  25190. name: "Back",
  25191. image: {
  25192. source: "./media/characters/nicky/back.svg",
  25193. extra: 3055 / 2804,
  25194. bottom: 28.4 / 3087
  25195. }
  25196. },
  25197. frontclothed: {
  25198. height: math.unit(5 + 10 / 12, "feet"),
  25199. weight: math.unit(165, "lb"),
  25200. name: "Front-clothed",
  25201. image: {
  25202. source: "./media/characters/nicky/front-clothed.svg",
  25203. extra: 3184.9 / 2926.9,
  25204. bottom: 86.5 / 3239.9
  25205. }
  25206. },
  25207. foot: {
  25208. height: math.unit(1.16, "feet"),
  25209. name: "Foot",
  25210. image: {
  25211. source: "./media/characters/nicky/foot.svg"
  25212. }
  25213. },
  25214. feet: {
  25215. height: math.unit(1.34, "feet"),
  25216. name: "Feet",
  25217. image: {
  25218. source: "./media/characters/nicky/feet.svg"
  25219. }
  25220. },
  25221. maw: {
  25222. height: math.unit(0.9, "feet"),
  25223. name: "Maw",
  25224. image: {
  25225. source: "./media/characters/nicky/maw.svg"
  25226. }
  25227. },
  25228. },
  25229. [
  25230. {
  25231. name: "Normal",
  25232. height: math.unit(5 + 10 / 12, "feet"),
  25233. default: true
  25234. },
  25235. {
  25236. name: "Macro",
  25237. height: math.unit(60, "feet")
  25238. },
  25239. {
  25240. name: "Megamacro",
  25241. height: math.unit(1, "mile")
  25242. },
  25243. ]
  25244. ))
  25245. characterMakers.push(() => makeCharacter(
  25246. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25247. {
  25248. side: {
  25249. height: math.unit(10, "feet"),
  25250. weight: math.unit(600, "lb"),
  25251. name: "Side",
  25252. image: {
  25253. source: "./media/characters/blair/side.svg",
  25254. bottom: 16.6 / 475,
  25255. extra: 458 / 431
  25256. }
  25257. },
  25258. },
  25259. [
  25260. {
  25261. name: "Micro",
  25262. height: math.unit(8, "inches")
  25263. },
  25264. {
  25265. name: "Normal",
  25266. height: math.unit(10, "feet"),
  25267. default: true
  25268. },
  25269. {
  25270. name: "Macro",
  25271. height: math.unit(180, "feet")
  25272. },
  25273. ]
  25274. ))
  25275. characterMakers.push(() => makeCharacter(
  25276. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25277. {
  25278. front: {
  25279. height: math.unit(5 + 4 / 12, "feet"),
  25280. weight: math.unit(125, "lb"),
  25281. name: "Front",
  25282. image: {
  25283. source: "./media/characters/fisher/front.svg",
  25284. extra: 444 / 390,
  25285. bottom: 2 / 444.8
  25286. }
  25287. },
  25288. },
  25289. [
  25290. {
  25291. name: "Micro",
  25292. height: math.unit(4, "inches")
  25293. },
  25294. {
  25295. name: "Normal",
  25296. height: math.unit(5 + 4 / 12, "feet"),
  25297. default: true
  25298. },
  25299. {
  25300. name: "Macro",
  25301. height: math.unit(100, "feet")
  25302. },
  25303. ]
  25304. ))
  25305. characterMakers.push(() => makeCharacter(
  25306. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25307. {
  25308. front: {
  25309. height: math.unit(6.71, "feet"),
  25310. weight: math.unit(200, "lb"),
  25311. capacity: math.unit(1000000, "people"),
  25312. name: "Front",
  25313. image: {
  25314. source: "./media/characters/gliss/front.svg",
  25315. extra: 2347 / 2231,
  25316. bottom: 113 / 2462
  25317. }
  25318. },
  25319. hammerspaceSize: {
  25320. height: math.unit(6.71 * 717, "feet"),
  25321. weight: math.unit(200, "lb"),
  25322. capacity: math.unit(1000000, "people"),
  25323. name: "Hammerspace Size",
  25324. image: {
  25325. source: "./media/characters/gliss/front.svg",
  25326. extra: 2347 / 2231,
  25327. bottom: 113 / 2462
  25328. }
  25329. },
  25330. },
  25331. [
  25332. {
  25333. name: "Normal",
  25334. height: math.unit(6.71, "feet"),
  25335. default: true
  25336. },
  25337. ]
  25338. ))
  25339. characterMakers.push(() => makeCharacter(
  25340. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25341. {
  25342. side: {
  25343. height: math.unit(1.44, "m"),
  25344. weight: math.unit(80, "kg"),
  25345. name: "Side",
  25346. image: {
  25347. source: "./media/characters/dune-anderson/side.svg",
  25348. bottom: 49 / 1426
  25349. }
  25350. },
  25351. },
  25352. [
  25353. {
  25354. name: "Wolf-sized",
  25355. height: math.unit(1.44, "meters")
  25356. },
  25357. {
  25358. name: "Normal",
  25359. height: math.unit(5.05, "meters"),
  25360. default: true
  25361. },
  25362. {
  25363. name: "Big",
  25364. height: math.unit(14.4, "meters")
  25365. },
  25366. {
  25367. name: "Huge",
  25368. height: math.unit(144, "meters")
  25369. },
  25370. ]
  25371. ))
  25372. characterMakers.push(() => makeCharacter(
  25373. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25374. {
  25375. front: {
  25376. height: math.unit(7, "feet"),
  25377. weight: math.unit(425, "lb"),
  25378. name: "Front",
  25379. image: {
  25380. source: "./media/characters/hind/front.svg",
  25381. extra: 2091 / 1860,
  25382. bottom: 129 / 2220
  25383. }
  25384. },
  25385. back: {
  25386. height: math.unit(7, "feet"),
  25387. weight: math.unit(425, "lb"),
  25388. name: "Back",
  25389. image: {
  25390. source: "./media/characters/hind/back.svg",
  25391. extra: 2091 / 1860,
  25392. bottom: 24.6 / 2309
  25393. }
  25394. },
  25395. tail: {
  25396. height: math.unit(2.8, "feet"),
  25397. name: "Tail",
  25398. image: {
  25399. source: "./media/characters/hind/tail.svg"
  25400. }
  25401. },
  25402. head: {
  25403. height: math.unit(2.55, "feet"),
  25404. name: "Head",
  25405. image: {
  25406. source: "./media/characters/hind/head.svg"
  25407. }
  25408. },
  25409. },
  25410. [
  25411. {
  25412. name: "XS",
  25413. height: math.unit(0.7, "feet")
  25414. },
  25415. {
  25416. name: "Normal",
  25417. height: math.unit(7, "feet"),
  25418. default: true
  25419. },
  25420. {
  25421. name: "XL",
  25422. height: math.unit(70, "feet")
  25423. },
  25424. ]
  25425. ))
  25426. characterMakers.push(() => makeCharacter(
  25427. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25428. {
  25429. front: {
  25430. height: math.unit(2.1, "meters"),
  25431. weight: math.unit(150, "lb"),
  25432. name: "Front",
  25433. image: {
  25434. source: "./media/characters/tharquench-sizestealer/front.svg",
  25435. extra: 1605/1470,
  25436. bottom: 36/1641
  25437. }
  25438. },
  25439. frontAlt: {
  25440. height: math.unit(2.1, "meters"),
  25441. weight: math.unit(150, "lb"),
  25442. name: "Front (Alt)",
  25443. image: {
  25444. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25445. extra: 2318 / 2063,
  25446. bottom: 93.4 / 2410
  25447. }
  25448. },
  25449. },
  25450. [
  25451. {
  25452. name: "Nano",
  25453. height: math.unit(1, "mm")
  25454. },
  25455. {
  25456. name: "Micro",
  25457. height: math.unit(1, "cm")
  25458. },
  25459. {
  25460. name: "Normal",
  25461. height: math.unit(2.1, "meters"),
  25462. default: true
  25463. },
  25464. ]
  25465. ))
  25466. characterMakers.push(() => makeCharacter(
  25467. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25468. {
  25469. front: {
  25470. height: math.unit(7 + 5 / 12, "feet"),
  25471. weight: math.unit(357, "lb"),
  25472. name: "Front",
  25473. image: {
  25474. source: "./media/characters/solex-draconov/front.svg",
  25475. extra: 1993 / 1865,
  25476. bottom: 117 / 2111
  25477. }
  25478. },
  25479. },
  25480. [
  25481. {
  25482. name: "Natural Height",
  25483. height: math.unit(7 + 5 / 12, "feet"),
  25484. default: true
  25485. },
  25486. {
  25487. name: "Macro",
  25488. height: math.unit(350, "feet")
  25489. },
  25490. {
  25491. name: "Macro+",
  25492. height: math.unit(1000, "feet")
  25493. },
  25494. {
  25495. name: "Megamacro",
  25496. height: math.unit(20, "km")
  25497. },
  25498. {
  25499. name: "Megamacro+",
  25500. height: math.unit(1000, "km")
  25501. },
  25502. {
  25503. name: "Gigamacro",
  25504. height: math.unit(2.5, "Gm")
  25505. },
  25506. {
  25507. name: "Teramacro",
  25508. height: math.unit(15, "Tm")
  25509. },
  25510. {
  25511. name: "Galactic",
  25512. height: math.unit(30, "Zm")
  25513. },
  25514. {
  25515. name: "Universal",
  25516. height: math.unit(21000, "Ym")
  25517. },
  25518. {
  25519. name: "Omniversal",
  25520. height: math.unit(9.861e50, "Ym")
  25521. },
  25522. {
  25523. name: "Existential",
  25524. height: math.unit(1e300, "meters")
  25525. },
  25526. ]
  25527. ))
  25528. characterMakers.push(() => makeCharacter(
  25529. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25530. {
  25531. side: {
  25532. height: math.unit(25, "feet"),
  25533. weight: math.unit(90000, "lb"),
  25534. name: "Side",
  25535. image: {
  25536. source: "./media/characters/mandarax/side.svg",
  25537. extra: 614 / 332,
  25538. bottom: 55 / 630
  25539. }
  25540. },
  25541. head: {
  25542. height: math.unit(11.4, "feet"),
  25543. name: "Head",
  25544. image: {
  25545. source: "./media/characters/mandarax/head.svg"
  25546. }
  25547. },
  25548. belly: {
  25549. height: math.unit(33, "feet"),
  25550. name: "Belly",
  25551. capacity: math.unit(500, "people"),
  25552. image: {
  25553. source: "./media/characters/mandarax/belly.svg"
  25554. }
  25555. },
  25556. dick: {
  25557. height: math.unit(8.46, "feet"),
  25558. name: "Dick",
  25559. image: {
  25560. source: "./media/characters/mandarax/dick.svg"
  25561. }
  25562. },
  25563. top: {
  25564. height: math.unit(28, "meters"),
  25565. name: "Top",
  25566. image: {
  25567. source: "./media/characters/mandarax/top.svg"
  25568. }
  25569. },
  25570. },
  25571. [
  25572. {
  25573. name: "Normal",
  25574. height: math.unit(25, "feet"),
  25575. default: true
  25576. },
  25577. ]
  25578. ))
  25579. characterMakers.push(() => makeCharacter(
  25580. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25581. {
  25582. front: {
  25583. height: math.unit(5, "feet"),
  25584. weight: math.unit(90, "lb"),
  25585. name: "Front",
  25586. image: {
  25587. source: "./media/characters/pixil/front.svg",
  25588. extra: 2000 / 1618,
  25589. bottom: 12.3 / 2011
  25590. }
  25591. },
  25592. },
  25593. [
  25594. {
  25595. name: "Normal",
  25596. height: math.unit(5, "feet"),
  25597. default: true
  25598. },
  25599. {
  25600. name: "Megamacro",
  25601. height: math.unit(10, "miles"),
  25602. },
  25603. ]
  25604. ))
  25605. characterMakers.push(() => makeCharacter(
  25606. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25607. {
  25608. front: {
  25609. height: math.unit(7 + 2 / 12, "feet"),
  25610. weight: math.unit(200, "lb"),
  25611. name: "Front",
  25612. image: {
  25613. source: "./media/characters/angel/front.svg",
  25614. extra: 1830 / 1737,
  25615. bottom: 22.6 / 1854,
  25616. }
  25617. },
  25618. },
  25619. [
  25620. {
  25621. name: "Normal",
  25622. height: math.unit(7 + 2 / 12, "feet"),
  25623. default: true
  25624. },
  25625. {
  25626. name: "Macro",
  25627. height: math.unit(1000, "feet")
  25628. },
  25629. {
  25630. name: "Megamacro",
  25631. height: math.unit(2, "miles")
  25632. },
  25633. {
  25634. name: "Gigamacro",
  25635. height: math.unit(20, "earths")
  25636. },
  25637. ]
  25638. ))
  25639. characterMakers.push(() => makeCharacter(
  25640. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25641. {
  25642. front: {
  25643. height: math.unit(5, "feet"),
  25644. weight: math.unit(180, "lb"),
  25645. name: "Front",
  25646. image: {
  25647. source: "./media/characters/mekana/front.svg",
  25648. extra: 1671 / 1605,
  25649. bottom: 3.5 / 1691
  25650. }
  25651. },
  25652. side: {
  25653. height: math.unit(5, "feet"),
  25654. weight: math.unit(180, "lb"),
  25655. name: "Side",
  25656. image: {
  25657. source: "./media/characters/mekana/side.svg",
  25658. extra: 1671 / 1605,
  25659. bottom: 3.5 / 1691
  25660. }
  25661. },
  25662. back: {
  25663. height: math.unit(5, "feet"),
  25664. weight: math.unit(180, "lb"),
  25665. name: "Back",
  25666. image: {
  25667. source: "./media/characters/mekana/back.svg",
  25668. extra: 1671 / 1605,
  25669. bottom: 3.5 / 1691
  25670. }
  25671. },
  25672. },
  25673. [
  25674. {
  25675. name: "Normal",
  25676. height: math.unit(5, "feet"),
  25677. default: true
  25678. },
  25679. ]
  25680. ))
  25681. characterMakers.push(() => makeCharacter(
  25682. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25683. {
  25684. front: {
  25685. height: math.unit(4 + 6 / 12, "feet"),
  25686. weight: math.unit(80, "lb"),
  25687. name: "Front",
  25688. image: {
  25689. source: "./media/characters/pixie/front.svg",
  25690. extra: 1924 / 1825,
  25691. bottom: 22.4 / 1946
  25692. }
  25693. },
  25694. },
  25695. [
  25696. {
  25697. name: "Normal",
  25698. height: math.unit(4 + 6 / 12, "feet"),
  25699. default: true
  25700. },
  25701. {
  25702. name: "Macro",
  25703. height: math.unit(40, "feet")
  25704. },
  25705. ]
  25706. ))
  25707. characterMakers.push(() => makeCharacter(
  25708. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25709. {
  25710. front: {
  25711. height: math.unit(2.1, "meters"),
  25712. weight: math.unit(200, "lb"),
  25713. name: "Front",
  25714. image: {
  25715. source: "./media/characters/the-lascivious/front.svg",
  25716. extra: 1 / 0.893,
  25717. bottom: 3.5 / 573.7
  25718. }
  25719. },
  25720. },
  25721. [
  25722. {
  25723. name: "Human Scale",
  25724. height: math.unit(2.1, "meters")
  25725. },
  25726. {
  25727. name: "Wolxi Scale",
  25728. height: math.unit(46.2, "m"),
  25729. default: true
  25730. },
  25731. {
  25732. name: "Boinker of Buildings",
  25733. height: math.unit(10, "km")
  25734. },
  25735. {
  25736. name: "Shagger of Skyscrapers",
  25737. height: math.unit(40, "km")
  25738. },
  25739. {
  25740. name: "Banger of Boroughs",
  25741. height: math.unit(4000, "km")
  25742. },
  25743. {
  25744. name: "Screwer of States",
  25745. height: math.unit(100000, "km")
  25746. },
  25747. {
  25748. name: "Pounder of Planets",
  25749. height: math.unit(2000000, "km")
  25750. },
  25751. ]
  25752. ))
  25753. characterMakers.push(() => makeCharacter(
  25754. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25755. {
  25756. front: {
  25757. height: math.unit(6, "feet"),
  25758. weight: math.unit(150, "lb"),
  25759. name: "Front",
  25760. image: {
  25761. source: "./media/characters/aj/front.svg",
  25762. extra: 2039 / 1562,
  25763. bottom: 40 / 2079
  25764. }
  25765. },
  25766. },
  25767. [
  25768. {
  25769. name: "Normal",
  25770. height: math.unit(11 + 6 / 12, "feet"),
  25771. default: true
  25772. },
  25773. {
  25774. name: "Megamacro",
  25775. height: math.unit(60, "megameters")
  25776. },
  25777. ]
  25778. ))
  25779. characterMakers.push(() => makeCharacter(
  25780. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25781. {
  25782. side: {
  25783. height: math.unit(31 + 8 / 12, "feet"),
  25784. weight: math.unit(75000, "kg"),
  25785. name: "Side",
  25786. image: {
  25787. source: "./media/characters/koros/side.svg",
  25788. extra: 1442 / 1297,
  25789. bottom: 122.7 / 1562
  25790. }
  25791. },
  25792. dicksKingsCrown: {
  25793. height: math.unit(6, "feet"),
  25794. name: "Dicks (King's Crown)",
  25795. image: {
  25796. source: "./media/characters/koros/dicks-kings-crown.svg"
  25797. }
  25798. },
  25799. dicksTailSet: {
  25800. height: math.unit(3, "feet"),
  25801. name: "Dicks (Tail Set)",
  25802. image: {
  25803. source: "./media/characters/koros/dicks-tail-set.svg"
  25804. }
  25805. },
  25806. dickCumming: {
  25807. height: math.unit(7.98, "feet"),
  25808. name: "Dick (Cumming)",
  25809. image: {
  25810. source: "./media/characters/koros/dick-cumming.svg"
  25811. }
  25812. },
  25813. dicksBack: {
  25814. height: math.unit(5.9, "feet"),
  25815. name: "Dicks (Back)",
  25816. image: {
  25817. source: "./media/characters/koros/dicks-back.svg"
  25818. }
  25819. },
  25820. dicksFront: {
  25821. height: math.unit(3.72, "feet"),
  25822. name: "Dicks (Front)",
  25823. image: {
  25824. source: "./media/characters/koros/dicks-front.svg"
  25825. }
  25826. },
  25827. dicksPeeking: {
  25828. height: math.unit(3.0, "feet"),
  25829. name: "Dicks (Peeking)",
  25830. image: {
  25831. source: "./media/characters/koros/dicks-peeking.svg"
  25832. }
  25833. },
  25834. eye: {
  25835. height: math.unit(1.7, "feet"),
  25836. name: "Eye",
  25837. image: {
  25838. source: "./media/characters/koros/eye.svg"
  25839. }
  25840. },
  25841. headFront: {
  25842. height: math.unit(11.69, "feet"),
  25843. name: "Head (Front)",
  25844. image: {
  25845. source: "./media/characters/koros/head-front.svg"
  25846. }
  25847. },
  25848. headSide: {
  25849. height: math.unit(14, "feet"),
  25850. name: "Head (Side)",
  25851. image: {
  25852. source: "./media/characters/koros/head-side.svg"
  25853. }
  25854. },
  25855. leg: {
  25856. height: math.unit(17, "feet"),
  25857. name: "Leg",
  25858. image: {
  25859. source: "./media/characters/koros/leg.svg"
  25860. }
  25861. },
  25862. mawSide: {
  25863. height: math.unit(12.8, "feet"),
  25864. name: "Maw (Side)",
  25865. image: {
  25866. source: "./media/characters/koros/maw-side.svg"
  25867. }
  25868. },
  25869. mawSpitting: {
  25870. height: math.unit(17, "feet"),
  25871. name: "Maw (Spitting)",
  25872. image: {
  25873. source: "./media/characters/koros/maw-spitting.svg"
  25874. }
  25875. },
  25876. slit: {
  25877. height: math.unit(2.8, "feet"),
  25878. name: "Slit",
  25879. image: {
  25880. source: "./media/characters/koros/slit.svg"
  25881. }
  25882. },
  25883. stomach: {
  25884. height: math.unit(6.8, "feet"),
  25885. capacity: math.unit(20, "people"),
  25886. name: "Stomach",
  25887. image: {
  25888. source: "./media/characters/koros/stomach.svg"
  25889. }
  25890. },
  25891. wingspanBottom: {
  25892. height: math.unit(114, "feet"),
  25893. name: "Wingspan (Bottom)",
  25894. image: {
  25895. source: "./media/characters/koros/wingspan-bottom.svg"
  25896. }
  25897. },
  25898. wingspanTop: {
  25899. height: math.unit(104, "feet"),
  25900. name: "Wingspan (Top)",
  25901. image: {
  25902. source: "./media/characters/koros/wingspan-top.svg"
  25903. }
  25904. },
  25905. },
  25906. [
  25907. {
  25908. name: "Normal",
  25909. height: math.unit(31 + 8 / 12, "feet"),
  25910. default: true
  25911. },
  25912. ]
  25913. ))
  25914. characterMakers.push(() => makeCharacter(
  25915. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25916. {
  25917. front: {
  25918. height: math.unit(18 + 5 / 12, "feet"),
  25919. weight: math.unit(3750, "kg"),
  25920. name: "Front",
  25921. image: {
  25922. source: "./media/characters/vexx/front.svg",
  25923. extra: 426 / 396,
  25924. bottom: 31.5 / 458
  25925. }
  25926. },
  25927. maw: {
  25928. height: math.unit(6, "feet"),
  25929. name: "Maw",
  25930. image: {
  25931. source: "./media/characters/vexx/maw.svg"
  25932. }
  25933. },
  25934. },
  25935. [
  25936. {
  25937. name: "Normal",
  25938. height: math.unit(18 + 5 / 12, "feet"),
  25939. default: true
  25940. },
  25941. ]
  25942. ))
  25943. characterMakers.push(() => makeCharacter(
  25944. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25945. {
  25946. front: {
  25947. height: math.unit(17 + 6 / 12, "feet"),
  25948. weight: math.unit(150, "lb"),
  25949. name: "Front",
  25950. image: {
  25951. source: "./media/characters/baadra/front.svg",
  25952. extra: 3137 / 2890,
  25953. bottom: 168.4 / 3305
  25954. }
  25955. },
  25956. back: {
  25957. height: math.unit(17 + 6 / 12, "feet"),
  25958. weight: math.unit(150, "lb"),
  25959. name: "Back",
  25960. image: {
  25961. source: "./media/characters/baadra/back.svg",
  25962. extra: 3142 / 2890,
  25963. bottom: 220 / 3371
  25964. }
  25965. },
  25966. head: {
  25967. height: math.unit(5.45, "feet"),
  25968. name: "Head",
  25969. image: {
  25970. source: "./media/characters/baadra/head.svg"
  25971. }
  25972. },
  25973. headAngry: {
  25974. height: math.unit(4.95, "feet"),
  25975. name: "Head (Angry)",
  25976. image: {
  25977. source: "./media/characters/baadra/head-angry.svg"
  25978. }
  25979. },
  25980. headOpen: {
  25981. height: math.unit(6, "feet"),
  25982. name: "Head (Open)",
  25983. image: {
  25984. source: "./media/characters/baadra/head-open.svg"
  25985. }
  25986. },
  25987. },
  25988. [
  25989. {
  25990. name: "Normal",
  25991. height: math.unit(17 + 6 / 12, "feet"),
  25992. default: true
  25993. },
  25994. ]
  25995. ))
  25996. characterMakers.push(() => makeCharacter(
  25997. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25998. {
  25999. front: {
  26000. height: math.unit(7 + 3 / 12, "feet"),
  26001. weight: math.unit(180, "lb"),
  26002. name: "Front",
  26003. image: {
  26004. source: "./media/characters/juri/front.svg",
  26005. extra: 1401 / 1237,
  26006. bottom: 18.5 / 1418
  26007. }
  26008. },
  26009. side: {
  26010. height: math.unit(7 + 3 / 12, "feet"),
  26011. weight: math.unit(180, "lb"),
  26012. name: "Side",
  26013. image: {
  26014. source: "./media/characters/juri/side.svg",
  26015. extra: 1424 / 1242,
  26016. bottom: 18.5 / 1447
  26017. }
  26018. },
  26019. sitting: {
  26020. height: math.unit(6, "feet"),
  26021. weight: math.unit(180, "lb"),
  26022. name: "Sitting",
  26023. image: {
  26024. source: "./media/characters/juri/sitting.svg",
  26025. extra: 1270 / 1143,
  26026. bottom: 100 / 1343
  26027. }
  26028. },
  26029. back: {
  26030. height: math.unit(7 + 3 / 12, "feet"),
  26031. weight: math.unit(180, "lb"),
  26032. name: "Back",
  26033. image: {
  26034. source: "./media/characters/juri/back.svg",
  26035. extra: 1377 / 1240,
  26036. bottom: 23.7 / 1405
  26037. }
  26038. },
  26039. maw: {
  26040. height: math.unit(2.8, "feet"),
  26041. name: "Maw",
  26042. image: {
  26043. source: "./media/characters/juri/maw.svg"
  26044. }
  26045. },
  26046. stomach: {
  26047. height: math.unit(0.89, "feet"),
  26048. capacity: math.unit(4, "liters"),
  26049. name: "Stomach",
  26050. image: {
  26051. source: "./media/characters/juri/stomach.svg"
  26052. }
  26053. },
  26054. },
  26055. [
  26056. {
  26057. name: "Normal",
  26058. height: math.unit(7 + 3 / 12, "feet"),
  26059. default: true
  26060. },
  26061. ]
  26062. ))
  26063. characterMakers.push(() => makeCharacter(
  26064. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26065. {
  26066. fox: {
  26067. height: math.unit(5 + 6 / 12, "feet"),
  26068. weight: math.unit(140, "lb"),
  26069. name: "Fox",
  26070. image: {
  26071. source: "./media/characters/maxene-sita/fox.svg",
  26072. extra: 146 / 138,
  26073. bottom: 2.1 / 148.19
  26074. }
  26075. },
  26076. foxLaying: {
  26077. height: math.unit(1.70, "feet"),
  26078. weight: math.unit(140, "lb"),
  26079. name: "Fox (Laying)",
  26080. image: {
  26081. source: "./media/characters/maxene-sita/fox-laying.svg",
  26082. extra: 910 / 572,
  26083. bottom: 71 / 981
  26084. }
  26085. },
  26086. kitsune: {
  26087. height: math.unit(10, "feet"),
  26088. weight: math.unit(800, "lb"),
  26089. name: "Kitsune",
  26090. image: {
  26091. source: "./media/characters/maxene-sita/kitsune.svg",
  26092. extra: 185 / 176,
  26093. bottom: 4.7 / 189.9
  26094. }
  26095. },
  26096. hellhound: {
  26097. height: math.unit(10, "feet"),
  26098. weight: math.unit(700, "lb"),
  26099. name: "Hellhound",
  26100. image: {
  26101. source: "./media/characters/maxene-sita/hellhound.svg",
  26102. extra: 1600 / 1545,
  26103. bottom: 81 / 1681
  26104. }
  26105. },
  26106. },
  26107. [
  26108. {
  26109. name: "Normal",
  26110. height: math.unit(5 + 6 / 12, "feet"),
  26111. default: true
  26112. },
  26113. ]
  26114. ))
  26115. characterMakers.push(() => makeCharacter(
  26116. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26117. {
  26118. front: {
  26119. height: math.unit(3 + 4 / 12, "feet"),
  26120. weight: math.unit(70, "lb"),
  26121. name: "Front",
  26122. image: {
  26123. source: "./media/characters/maia/front.svg",
  26124. extra: 227 / 219.5,
  26125. bottom: 40 / 267
  26126. }
  26127. },
  26128. back: {
  26129. height: math.unit(3 + 4 / 12, "feet"),
  26130. weight: math.unit(70, "lb"),
  26131. name: "Back",
  26132. image: {
  26133. source: "./media/characters/maia/back.svg",
  26134. extra: 237 / 225
  26135. }
  26136. },
  26137. },
  26138. [
  26139. {
  26140. name: "Normal",
  26141. height: math.unit(3 + 4 / 12, "feet"),
  26142. default: true
  26143. },
  26144. ]
  26145. ))
  26146. characterMakers.push(() => makeCharacter(
  26147. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26148. {
  26149. front: {
  26150. height: math.unit(5 + 10 / 12, "feet"),
  26151. weight: math.unit(197, "lb"),
  26152. name: "Front",
  26153. image: {
  26154. source: "./media/characters/jabaro/front.svg",
  26155. extra: 225 / 216,
  26156. bottom: 5.06 / 230
  26157. }
  26158. },
  26159. back: {
  26160. height: math.unit(5 + 10 / 12, "feet"),
  26161. weight: math.unit(197, "lb"),
  26162. name: "Back",
  26163. image: {
  26164. source: "./media/characters/jabaro/back.svg",
  26165. extra: 225 / 219,
  26166. bottom: 1.9 / 227
  26167. }
  26168. },
  26169. },
  26170. [
  26171. {
  26172. name: "Normal",
  26173. height: math.unit(5 + 10 / 12, "feet"),
  26174. default: true
  26175. },
  26176. ]
  26177. ))
  26178. characterMakers.push(() => makeCharacter(
  26179. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26180. {
  26181. front: {
  26182. height: math.unit(5 + 8 / 12, "feet"),
  26183. weight: math.unit(139, "lb"),
  26184. name: "Front",
  26185. image: {
  26186. source: "./media/characters/risa/front.svg",
  26187. extra: 270 / 260,
  26188. bottom: 11.2 / 282
  26189. }
  26190. },
  26191. back: {
  26192. height: math.unit(5 + 8 / 12, "feet"),
  26193. weight: math.unit(139, "lb"),
  26194. name: "Back",
  26195. image: {
  26196. source: "./media/characters/risa/back.svg",
  26197. extra: 264 / 255,
  26198. bottom: 4 / 268
  26199. }
  26200. },
  26201. },
  26202. [
  26203. {
  26204. name: "Normal",
  26205. height: math.unit(5 + 8 / 12, "feet"),
  26206. default: true
  26207. },
  26208. ]
  26209. ))
  26210. characterMakers.push(() => makeCharacter(
  26211. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26212. {
  26213. front: {
  26214. height: math.unit(2 + 11 / 12, "feet"),
  26215. weight: math.unit(30, "lb"),
  26216. name: "Front",
  26217. image: {
  26218. source: "./media/characters/weatley/front.svg",
  26219. bottom: 10.7 / 414,
  26220. extra: 403.5 / 362
  26221. }
  26222. },
  26223. back: {
  26224. height: math.unit(2 + 11 / 12, "feet"),
  26225. weight: math.unit(30, "lb"),
  26226. name: "Back",
  26227. image: {
  26228. source: "./media/characters/weatley/back.svg",
  26229. bottom: 10.7 / 414,
  26230. extra: 403.5 / 362
  26231. }
  26232. },
  26233. },
  26234. [
  26235. {
  26236. name: "Normal",
  26237. height: math.unit(2 + 11 / 12, "feet"),
  26238. default: true
  26239. },
  26240. ]
  26241. ))
  26242. characterMakers.push(() => makeCharacter(
  26243. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26244. {
  26245. front: {
  26246. height: math.unit(5 + 2 / 12, "feet"),
  26247. weight: math.unit(50, "kg"),
  26248. name: "Front",
  26249. image: {
  26250. source: "./media/characters/mercury-crescent/front.svg",
  26251. extra: 1088 / 1033,
  26252. bottom: 18.9 / 1109
  26253. }
  26254. },
  26255. },
  26256. [
  26257. {
  26258. name: "Normal",
  26259. height: math.unit(5 + 2 / 12, "feet"),
  26260. default: true
  26261. },
  26262. ]
  26263. ))
  26264. characterMakers.push(() => makeCharacter(
  26265. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26266. {
  26267. front: {
  26268. height: math.unit(2, "feet"),
  26269. weight: math.unit(15, "kg"),
  26270. name: "Front",
  26271. image: {
  26272. source: "./media/characters/diamond-jones/front.svg",
  26273. extra: 727/723,
  26274. bottom: 46/773
  26275. }
  26276. },
  26277. },
  26278. [
  26279. {
  26280. name: "Normal",
  26281. height: math.unit(2, "feet"),
  26282. default: true
  26283. },
  26284. ]
  26285. ))
  26286. characterMakers.push(() => makeCharacter(
  26287. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26288. {
  26289. front: {
  26290. height: math.unit(3, "feet"),
  26291. weight: math.unit(30, "kg"),
  26292. name: "Front",
  26293. image: {
  26294. source: "./media/characters/sweet-bit/front.svg",
  26295. extra: 675 / 567,
  26296. bottom: 27.7 / 703
  26297. }
  26298. },
  26299. },
  26300. [
  26301. {
  26302. name: "Normal",
  26303. height: math.unit(3, "feet"),
  26304. default: true
  26305. },
  26306. ]
  26307. ))
  26308. characterMakers.push(() => makeCharacter(
  26309. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26310. {
  26311. side: {
  26312. height: math.unit(9.178, "feet"),
  26313. weight: math.unit(500, "lb"),
  26314. name: "Side",
  26315. image: {
  26316. source: "./media/characters/umbrazen/side.svg",
  26317. extra: 1730 / 1473,
  26318. bottom: 34.6 / 1765
  26319. }
  26320. },
  26321. },
  26322. [
  26323. {
  26324. name: "Normal",
  26325. height: math.unit(9.178, "feet"),
  26326. default: true
  26327. },
  26328. ]
  26329. ))
  26330. characterMakers.push(() => makeCharacter(
  26331. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26332. {
  26333. front: {
  26334. height: math.unit(10, "feet"),
  26335. weight: math.unit(750, "lb"),
  26336. name: "Front",
  26337. image: {
  26338. source: "./media/characters/arlist/front.svg",
  26339. extra: 961 / 778,
  26340. bottom: 6.2 / 986
  26341. }
  26342. },
  26343. },
  26344. [
  26345. {
  26346. name: "Normal",
  26347. height: math.unit(10, "feet"),
  26348. default: true
  26349. },
  26350. ]
  26351. ))
  26352. characterMakers.push(() => makeCharacter(
  26353. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26354. {
  26355. front: {
  26356. height: math.unit(5 + 1 / 12, "feet"),
  26357. weight: math.unit(110, "lb"),
  26358. name: "Front",
  26359. image: {
  26360. source: "./media/characters/aradel/front.svg",
  26361. extra: 324 / 303,
  26362. bottom: 3.6 / 329.4
  26363. }
  26364. },
  26365. },
  26366. [
  26367. {
  26368. name: "Normal",
  26369. height: math.unit(5 + 1 / 12, "feet"),
  26370. default: true
  26371. },
  26372. ]
  26373. ))
  26374. characterMakers.push(() => makeCharacter(
  26375. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26376. {
  26377. front: {
  26378. height: math.unit(3 + 8 / 12, "feet"),
  26379. weight: math.unit(50, "lb"),
  26380. name: "Front",
  26381. image: {
  26382. source: "./media/characters/serryn/front.svg",
  26383. extra: 1792 / 1656,
  26384. bottom: 43.5 / 1840
  26385. }
  26386. },
  26387. },
  26388. [
  26389. {
  26390. name: "Normal",
  26391. height: math.unit(3 + 8 / 12, "feet"),
  26392. default: true
  26393. },
  26394. ]
  26395. ))
  26396. characterMakers.push(() => makeCharacter(
  26397. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26398. {
  26399. front: {
  26400. height: math.unit(7 + 10 / 12, "feet"),
  26401. weight: math.unit(255, "lb"),
  26402. name: "Front",
  26403. image: {
  26404. source: "./media/characters/xavier-thyme/front.svg",
  26405. extra: 3733 / 3642,
  26406. bottom: 131 / 3869
  26407. }
  26408. },
  26409. frontRaven: {
  26410. height: math.unit(7 + 10 / 12, "feet"),
  26411. weight: math.unit(255, "lb"),
  26412. name: "Front (Raven)",
  26413. image: {
  26414. source: "./media/characters/xavier-thyme/front-raven.svg",
  26415. extra: 4385 / 3642,
  26416. bottom: 131 / 4517
  26417. }
  26418. },
  26419. },
  26420. [
  26421. {
  26422. name: "Normal",
  26423. height: math.unit(7 + 10 / 12, "feet"),
  26424. default: true
  26425. },
  26426. ]
  26427. ))
  26428. characterMakers.push(() => makeCharacter(
  26429. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26430. {
  26431. front: {
  26432. height: math.unit(1.6, "m"),
  26433. weight: math.unit(50, "kg"),
  26434. name: "Front",
  26435. image: {
  26436. source: "./media/characters/kiki/front.svg",
  26437. extra: 4682 / 3610,
  26438. bottom: 115 / 4777
  26439. }
  26440. },
  26441. },
  26442. [
  26443. {
  26444. name: "Normal",
  26445. height: math.unit(1.6, "meters"),
  26446. default: true
  26447. },
  26448. ]
  26449. ))
  26450. characterMakers.push(() => makeCharacter(
  26451. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26452. {
  26453. front: {
  26454. height: math.unit(50, "m"),
  26455. weight: math.unit(500, "tonnes"),
  26456. name: "Front",
  26457. image: {
  26458. source: "./media/characters/ryoko/front.svg",
  26459. extra: 4632 / 3926,
  26460. bottom: 193 / 4823
  26461. }
  26462. },
  26463. },
  26464. [
  26465. {
  26466. name: "Normal",
  26467. height: math.unit(50, "meters"),
  26468. default: true
  26469. },
  26470. ]
  26471. ))
  26472. characterMakers.push(() => makeCharacter(
  26473. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26474. {
  26475. front: {
  26476. height: math.unit(30, "m"),
  26477. weight: math.unit(22, "tonnes"),
  26478. name: "Front",
  26479. image: {
  26480. source: "./media/characters/elio/front.svg",
  26481. extra: 4582 / 3720,
  26482. bottom: 236 / 4828
  26483. }
  26484. },
  26485. },
  26486. [
  26487. {
  26488. name: "Normal",
  26489. height: math.unit(30, "meters"),
  26490. default: true
  26491. },
  26492. ]
  26493. ))
  26494. characterMakers.push(() => makeCharacter(
  26495. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26496. {
  26497. front: {
  26498. height: math.unit(6 + 3 / 12, "feet"),
  26499. weight: math.unit(120, "lb"),
  26500. name: "Front",
  26501. image: {
  26502. source: "./media/characters/azura/front.svg",
  26503. extra: 1149 / 1135,
  26504. bottom: 45 / 1194
  26505. }
  26506. },
  26507. frontClothed: {
  26508. height: math.unit(6 + 3 / 12, "feet"),
  26509. weight: math.unit(120, "lb"),
  26510. name: "Front (Clothed)",
  26511. image: {
  26512. source: "./media/characters/azura/front-clothed.svg",
  26513. extra: 1149 / 1135,
  26514. bottom: 45 / 1194
  26515. }
  26516. },
  26517. },
  26518. [
  26519. {
  26520. name: "Normal",
  26521. height: math.unit(6 + 3 / 12, "feet"),
  26522. default: true
  26523. },
  26524. {
  26525. name: "Macro",
  26526. height: math.unit(20 + 6 / 12, "feet")
  26527. },
  26528. {
  26529. name: "Megamacro",
  26530. height: math.unit(12, "miles")
  26531. },
  26532. {
  26533. name: "Gigamacro",
  26534. height: math.unit(10000, "miles")
  26535. },
  26536. {
  26537. name: "Teramacro",
  26538. height: math.unit(900000, "miles")
  26539. },
  26540. ]
  26541. ))
  26542. characterMakers.push(() => makeCharacter(
  26543. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26544. {
  26545. front: {
  26546. height: math.unit(12, "feet"),
  26547. weight: math.unit(1, "ton"),
  26548. capacity: math.unit(660000, "gallons"),
  26549. name: "Front",
  26550. image: {
  26551. source: "./media/characters/zeus/front.svg",
  26552. extra: 5005 / 4717,
  26553. bottom: 363 / 5388
  26554. }
  26555. },
  26556. },
  26557. [
  26558. {
  26559. name: "Normal",
  26560. height: math.unit(12, "feet")
  26561. },
  26562. {
  26563. name: "Preferred Size",
  26564. height: math.unit(0.5, "miles"),
  26565. default: true
  26566. },
  26567. {
  26568. name: "Giga Horse",
  26569. height: math.unit(300, "miles")
  26570. },
  26571. {
  26572. name: "Riding Planets",
  26573. height: math.unit(30, "megameters")
  26574. },
  26575. {
  26576. name: "Cosmic Giant",
  26577. height: math.unit(3, "zettameters")
  26578. },
  26579. {
  26580. name: "Breeding God",
  26581. height: math.unit(9.92e22, "yottameters")
  26582. },
  26583. ]
  26584. ))
  26585. characterMakers.push(() => makeCharacter(
  26586. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26587. {
  26588. side: {
  26589. height: math.unit(9, "feet"),
  26590. weight: math.unit(1500, "kg"),
  26591. name: "Side",
  26592. image: {
  26593. source: "./media/characters/fang/side.svg",
  26594. extra: 924 / 866,
  26595. bottom: 47.5 / 972.3
  26596. }
  26597. },
  26598. },
  26599. [
  26600. {
  26601. name: "Normal",
  26602. height: math.unit(9, "feet"),
  26603. default: true
  26604. },
  26605. {
  26606. name: "Macro",
  26607. height: math.unit(75 + 6 / 12, "feet")
  26608. },
  26609. {
  26610. name: "Teramacro",
  26611. height: math.unit(50000, "miles")
  26612. },
  26613. ]
  26614. ))
  26615. characterMakers.push(() => makeCharacter(
  26616. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26617. {
  26618. front: {
  26619. height: math.unit(10, "feet"),
  26620. weight: math.unit(2, "tons"),
  26621. name: "Front",
  26622. image: {
  26623. source: "./media/characters/rekhit/front.svg",
  26624. extra: 2796 / 2590,
  26625. bottom: 225 / 3022
  26626. }
  26627. },
  26628. },
  26629. [
  26630. {
  26631. name: "Normal",
  26632. height: math.unit(10, "feet"),
  26633. default: true
  26634. },
  26635. {
  26636. name: "Macro",
  26637. height: math.unit(500, "feet")
  26638. },
  26639. ]
  26640. ))
  26641. characterMakers.push(() => makeCharacter(
  26642. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26643. {
  26644. front: {
  26645. height: math.unit(7 + 6.451 / 12, "feet"),
  26646. weight: math.unit(310, "lb"),
  26647. name: "Front",
  26648. image: {
  26649. source: "./media/characters/dahlia-verrick/front.svg",
  26650. extra: 1488 / 1365,
  26651. bottom: 6.2 / 1495
  26652. }
  26653. },
  26654. back: {
  26655. height: math.unit(7 + 6.451 / 12, "feet"),
  26656. weight: math.unit(310, "lb"),
  26657. name: "Back",
  26658. image: {
  26659. source: "./media/characters/dahlia-verrick/back.svg",
  26660. extra: 1472 / 1351,
  26661. bottom: 5.28 / 1477
  26662. }
  26663. },
  26664. frontBusiness: {
  26665. height: math.unit(7 + 6.451 / 12, "feet"),
  26666. weight: math.unit(200, "lb"),
  26667. name: "Front (Business)",
  26668. image: {
  26669. source: "./media/characters/dahlia-verrick/front-business.svg",
  26670. extra: 1478 / 1381,
  26671. bottom: 5.5 / 1484
  26672. }
  26673. },
  26674. frontCasual: {
  26675. height: math.unit(7 + 6.451 / 12, "feet"),
  26676. weight: math.unit(200, "lb"),
  26677. name: "Front (Casual)",
  26678. image: {
  26679. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26680. extra: 1478 / 1381,
  26681. bottom: 5.5 / 1484
  26682. }
  26683. },
  26684. },
  26685. [
  26686. {
  26687. name: "Travel-Sized",
  26688. height: math.unit(7.45, "inches")
  26689. },
  26690. {
  26691. name: "Normal",
  26692. height: math.unit(7 + 6.451 / 12, "feet"),
  26693. default: true
  26694. },
  26695. {
  26696. name: "Hitting the Town",
  26697. height: math.unit(37 + 8 / 12, "feet")
  26698. },
  26699. {
  26700. name: "Stomp in the Suburbs",
  26701. height: math.unit(964 + 9.728 / 12, "feet")
  26702. },
  26703. {
  26704. name: "Sit on the City",
  26705. height: math.unit(61747 + 10.592 / 12, "feet")
  26706. },
  26707. {
  26708. name: "Glomp the Globe",
  26709. height: math.unit(252919327 + 4.832 / 12, "feet")
  26710. },
  26711. ]
  26712. ))
  26713. characterMakers.push(() => makeCharacter(
  26714. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26715. {
  26716. front: {
  26717. height: math.unit(6 + 4 / 12, "feet"),
  26718. weight: math.unit(320, "lb"),
  26719. name: "Front",
  26720. image: {
  26721. source: "./media/characters/balina-mahigan/front.svg",
  26722. extra: 447 / 428,
  26723. bottom: 18 / 466
  26724. }
  26725. },
  26726. back: {
  26727. height: math.unit(6 + 4 / 12, "feet"),
  26728. weight: math.unit(320, "lb"),
  26729. name: "Back",
  26730. image: {
  26731. source: "./media/characters/balina-mahigan/back.svg",
  26732. extra: 445 / 428,
  26733. bottom: 4.07 / 448
  26734. }
  26735. },
  26736. arm: {
  26737. height: math.unit(1.88, "feet"),
  26738. name: "Arm",
  26739. image: {
  26740. source: "./media/characters/balina-mahigan/arm.svg"
  26741. }
  26742. },
  26743. backPort: {
  26744. height: math.unit(0.685, "feet"),
  26745. name: "Back Port",
  26746. image: {
  26747. source: "./media/characters/balina-mahigan/back-port.svg"
  26748. }
  26749. },
  26750. hoofpaw: {
  26751. height: math.unit(1.41, "feet"),
  26752. name: "Hoofpaw",
  26753. image: {
  26754. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26755. }
  26756. },
  26757. leftHandBack: {
  26758. height: math.unit(0.938, "feet"),
  26759. name: "Left Hand (Back)",
  26760. image: {
  26761. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26762. }
  26763. },
  26764. leftHandFront: {
  26765. height: math.unit(0.938, "feet"),
  26766. name: "Left Hand (Front)",
  26767. image: {
  26768. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26769. }
  26770. },
  26771. rightHandBack: {
  26772. height: math.unit(0.95, "feet"),
  26773. name: "Right Hand (Back)",
  26774. image: {
  26775. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26776. }
  26777. },
  26778. rightHandFront: {
  26779. height: math.unit(0.95, "feet"),
  26780. name: "Right Hand (Front)",
  26781. image: {
  26782. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26783. }
  26784. },
  26785. },
  26786. [
  26787. {
  26788. name: "Normal",
  26789. height: math.unit(6 + 4 / 12, "feet"),
  26790. default: true
  26791. },
  26792. ]
  26793. ))
  26794. characterMakers.push(() => makeCharacter(
  26795. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26796. {
  26797. front: {
  26798. height: math.unit(6, "feet"),
  26799. weight: math.unit(320, "lb"),
  26800. name: "Front",
  26801. image: {
  26802. source: "./media/characters/balina-mejeri/front.svg",
  26803. extra: 517 / 488,
  26804. bottom: 44.2 / 561
  26805. }
  26806. },
  26807. },
  26808. [
  26809. {
  26810. name: "Normal",
  26811. height: math.unit(6 + 4 / 12, "feet")
  26812. },
  26813. {
  26814. name: "Business",
  26815. height: math.unit(155, "feet"),
  26816. default: true
  26817. },
  26818. ]
  26819. ))
  26820. characterMakers.push(() => makeCharacter(
  26821. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26822. {
  26823. kneeling: {
  26824. height: math.unit(6 + 4 / 12, "feet"),
  26825. weight: math.unit(300 * 20, "lb"),
  26826. name: "Kneeling",
  26827. image: {
  26828. source: "./media/characters/balbarian/kneeling.svg",
  26829. extra: 922 / 862,
  26830. bottom: 42.4 / 965
  26831. }
  26832. },
  26833. },
  26834. [
  26835. {
  26836. name: "Normal",
  26837. height: math.unit(6 + 4 / 12, "feet")
  26838. },
  26839. {
  26840. name: "Treasured",
  26841. height: math.unit(18 + 9 / 12, "feet"),
  26842. default: true
  26843. },
  26844. {
  26845. name: "Macro",
  26846. height: math.unit(900, "feet")
  26847. },
  26848. ]
  26849. ))
  26850. characterMakers.push(() => makeCharacter(
  26851. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26852. {
  26853. front: {
  26854. height: math.unit(6 + 4 / 12, "feet"),
  26855. weight: math.unit(325, "lb"),
  26856. name: "Front",
  26857. image: {
  26858. source: "./media/characters/balina-amarini/front.svg",
  26859. extra: 415 / 403,
  26860. bottom: 19 / 433.4
  26861. }
  26862. },
  26863. back: {
  26864. height: math.unit(6 + 4 / 12, "feet"),
  26865. weight: math.unit(325, "lb"),
  26866. name: "Back",
  26867. image: {
  26868. source: "./media/characters/balina-amarini/back.svg",
  26869. extra: 415 / 403,
  26870. bottom: 13.5 / 432
  26871. }
  26872. },
  26873. overdrive: {
  26874. height: math.unit(6 + 4 / 12, "feet"),
  26875. weight: math.unit(400, "lb"),
  26876. name: "Overdrive",
  26877. image: {
  26878. source: "./media/characters/balina-amarini/overdrive.svg",
  26879. extra: 269 / 259,
  26880. bottom: 12 / 282
  26881. }
  26882. },
  26883. },
  26884. [
  26885. {
  26886. name: "Boom",
  26887. height: math.unit(9 + 10 / 12, "feet"),
  26888. default: true
  26889. },
  26890. {
  26891. name: "Macro",
  26892. height: math.unit(280, "feet")
  26893. },
  26894. ]
  26895. ))
  26896. characterMakers.push(() => makeCharacter(
  26897. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26898. {
  26899. goddess: {
  26900. height: math.unit(600, "feet"),
  26901. weight: math.unit(2000000, "tons"),
  26902. name: "Goddess",
  26903. image: {
  26904. source: "./media/characters/lady-kubwa/goddess.svg",
  26905. extra: 1240.5 / 1223,
  26906. bottom: 22 / 1263
  26907. }
  26908. },
  26909. goddesser: {
  26910. height: math.unit(900, "feet"),
  26911. weight: math.unit(20000000, "lb"),
  26912. name: "Goddess-er",
  26913. image: {
  26914. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26915. extra: 899 / 888,
  26916. bottom: 12.6 / 912
  26917. }
  26918. },
  26919. },
  26920. [
  26921. {
  26922. name: "Macro",
  26923. height: math.unit(600, "feet"),
  26924. default: true
  26925. },
  26926. {
  26927. name: "Megamacro",
  26928. height: math.unit(250, "miles")
  26929. },
  26930. ]
  26931. ))
  26932. characterMakers.push(() => makeCharacter(
  26933. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26934. {
  26935. front: {
  26936. height: math.unit(7 + 7 / 12, "feet"),
  26937. weight: math.unit(250, "lb"),
  26938. name: "Front",
  26939. image: {
  26940. source: "./media/characters/tala-grovehorn/front.svg",
  26941. extra: 2636 / 2525,
  26942. bottom: 147 / 2781
  26943. }
  26944. },
  26945. back: {
  26946. height: math.unit(7 + 7 / 12, "feet"),
  26947. weight: math.unit(250, "lb"),
  26948. name: "Back",
  26949. image: {
  26950. source: "./media/characters/tala-grovehorn/back.svg",
  26951. extra: 2635 / 2539,
  26952. bottom: 100 / 2732.8
  26953. }
  26954. },
  26955. mouth: {
  26956. height: math.unit(1.15, "feet"),
  26957. name: "Mouth",
  26958. image: {
  26959. source: "./media/characters/tala-grovehorn/mouth.svg"
  26960. }
  26961. },
  26962. dick: {
  26963. height: math.unit(2.36, "feet"),
  26964. name: "Dick",
  26965. image: {
  26966. source: "./media/characters/tala-grovehorn/dick.svg"
  26967. }
  26968. },
  26969. slit: {
  26970. height: math.unit(0.61, "feet"),
  26971. name: "Slit",
  26972. image: {
  26973. source: "./media/characters/tala-grovehorn/slit.svg"
  26974. }
  26975. },
  26976. },
  26977. [
  26978. ]
  26979. ))
  26980. characterMakers.push(() => makeCharacter(
  26981. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26982. {
  26983. front: {
  26984. height: math.unit(7 + 7 / 12, "feet"),
  26985. weight: math.unit(225, "lb"),
  26986. name: "Front",
  26987. image: {
  26988. source: "./media/characters/epona/front.svg",
  26989. extra: 2445 / 2290,
  26990. bottom: 251 / 2696
  26991. }
  26992. },
  26993. back: {
  26994. height: math.unit(7 + 7 / 12, "feet"),
  26995. weight: math.unit(225, "lb"),
  26996. name: "Back",
  26997. image: {
  26998. source: "./media/characters/epona/back.svg",
  26999. extra: 2546 / 2408,
  27000. bottom: 44 / 2589
  27001. }
  27002. },
  27003. genitals: {
  27004. height: math.unit(1.5, "feet"),
  27005. name: "Genitals",
  27006. image: {
  27007. source: "./media/characters/epona/genitals.svg"
  27008. }
  27009. },
  27010. },
  27011. [
  27012. {
  27013. name: "Normal",
  27014. height: math.unit(7 + 7 / 12, "feet"),
  27015. default: true
  27016. },
  27017. ]
  27018. ))
  27019. characterMakers.push(() => makeCharacter(
  27020. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27021. {
  27022. front: {
  27023. height: math.unit(7, "feet"),
  27024. weight: math.unit(518, "lb"),
  27025. name: "Front",
  27026. image: {
  27027. source: "./media/characters/avia-bloodbourn/front.svg",
  27028. extra: 1466 / 1350,
  27029. bottom: 65 / 1527
  27030. }
  27031. },
  27032. },
  27033. [
  27034. ]
  27035. ))
  27036. characterMakers.push(() => makeCharacter(
  27037. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27038. {
  27039. front: {
  27040. height: math.unit(9.35, "feet"),
  27041. weight: math.unit(600, "lb"),
  27042. name: "Front",
  27043. image: {
  27044. source: "./media/characters/amera/front.svg",
  27045. extra: 891 / 818,
  27046. bottom: 30 / 922.7
  27047. }
  27048. },
  27049. back: {
  27050. height: math.unit(9.35, "feet"),
  27051. weight: math.unit(600, "lb"),
  27052. name: "Back",
  27053. image: {
  27054. source: "./media/characters/amera/back.svg",
  27055. extra: 876 / 824,
  27056. bottom: 6.8 / 884
  27057. }
  27058. },
  27059. dick: {
  27060. height: math.unit(2.14, "feet"),
  27061. name: "Dick",
  27062. image: {
  27063. source: "./media/characters/amera/dick.svg"
  27064. }
  27065. },
  27066. },
  27067. [
  27068. {
  27069. name: "Normal",
  27070. height: math.unit(9.35, "feet"),
  27071. default: true
  27072. },
  27073. ]
  27074. ))
  27075. characterMakers.push(() => makeCharacter(
  27076. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27077. {
  27078. kneeling: {
  27079. height: math.unit(3 + 4 / 12, "feet"),
  27080. weight: math.unit(90, "lb"),
  27081. name: "Kneeling",
  27082. image: {
  27083. source: "./media/characters/rosewen/kneeling.svg",
  27084. extra: 1835 / 1571,
  27085. bottom: 27.7 / 1862
  27086. }
  27087. },
  27088. },
  27089. [
  27090. {
  27091. name: "Normal",
  27092. height: math.unit(3 + 4 / 12, "feet"),
  27093. default: true
  27094. },
  27095. ]
  27096. ))
  27097. characterMakers.push(() => makeCharacter(
  27098. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27099. {
  27100. front: {
  27101. height: math.unit(5 + 10 / 12, "feet"),
  27102. weight: math.unit(200, "lb"),
  27103. name: "Front",
  27104. image: {
  27105. source: "./media/characters/sabah/front.svg",
  27106. extra: 849 / 763,
  27107. bottom: 33.9 / 881
  27108. }
  27109. },
  27110. },
  27111. [
  27112. {
  27113. name: "Normal",
  27114. height: math.unit(5 + 10 / 12, "feet"),
  27115. default: true
  27116. },
  27117. ]
  27118. ))
  27119. characterMakers.push(() => makeCharacter(
  27120. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27121. {
  27122. front: {
  27123. height: math.unit(3 + 5 / 12, "feet"),
  27124. weight: math.unit(40, "kg"),
  27125. name: "Front",
  27126. image: {
  27127. source: "./media/characters/purple-flame/front.svg",
  27128. extra: 1577 / 1412,
  27129. bottom: 97 / 1694
  27130. }
  27131. },
  27132. frontDressed: {
  27133. height: math.unit(3 + 5 / 12, "feet"),
  27134. weight: math.unit(40, "kg"),
  27135. name: "Front (Dressed)",
  27136. image: {
  27137. source: "./media/characters/purple-flame/front-dressed.svg",
  27138. extra: 1577 / 1412,
  27139. bottom: 97 / 1694
  27140. }
  27141. },
  27142. headphones: {
  27143. height: math.unit(0.85, "feet"),
  27144. name: "Headphones",
  27145. image: {
  27146. source: "./media/characters/purple-flame/headphones.svg"
  27147. }
  27148. },
  27149. },
  27150. [
  27151. {
  27152. name: "Really Small",
  27153. height: math.unit(5, "cm")
  27154. },
  27155. {
  27156. name: "Micro",
  27157. height: math.unit(1 + 5 / 12, "feet")
  27158. },
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(3 + 5 / 12, "feet"),
  27162. default: true
  27163. },
  27164. {
  27165. name: "Minimacro",
  27166. height: math.unit(125, "feet")
  27167. },
  27168. {
  27169. name: "Macro",
  27170. height: math.unit(0.5, "miles")
  27171. },
  27172. {
  27173. name: "Megamacro",
  27174. height: math.unit(50, "miles")
  27175. },
  27176. {
  27177. name: "Gigantic",
  27178. height: math.unit(750, "miles")
  27179. },
  27180. {
  27181. name: "Planetary",
  27182. height: math.unit(15000, "miles")
  27183. },
  27184. ]
  27185. ))
  27186. characterMakers.push(() => makeCharacter(
  27187. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27188. {
  27189. front: {
  27190. height: math.unit(14, "feet"),
  27191. weight: math.unit(959, "lb"),
  27192. name: "Front",
  27193. image: {
  27194. source: "./media/characters/arsenal/front.svg",
  27195. extra: 2357 / 2157,
  27196. bottom: 93 / 2458
  27197. }
  27198. },
  27199. },
  27200. [
  27201. {
  27202. name: "Normal",
  27203. height: math.unit(14, "feet"),
  27204. default: true
  27205. },
  27206. ]
  27207. ))
  27208. characterMakers.push(() => makeCharacter(
  27209. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27210. {
  27211. front: {
  27212. height: math.unit(6, "feet"),
  27213. weight: math.unit(150, "lb"),
  27214. name: "Front",
  27215. image: {
  27216. source: "./media/characters/adira/front.svg",
  27217. extra: 1078 / 1029,
  27218. bottom: 87 / 1166
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "Micro",
  27225. height: math.unit(4, "inches"),
  27226. default: true
  27227. },
  27228. {
  27229. name: "Macro",
  27230. height: math.unit(50, "feet")
  27231. },
  27232. ]
  27233. ))
  27234. characterMakers.push(() => makeCharacter(
  27235. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27236. {
  27237. front: {
  27238. height: math.unit(16, "feet"),
  27239. weight: math.unit(1000, "lb"),
  27240. name: "Front",
  27241. image: {
  27242. source: "./media/characters/grim/front.svg",
  27243. extra: 622 / 614,
  27244. bottom: 18.1 / 642
  27245. }
  27246. },
  27247. back: {
  27248. height: math.unit(16, "feet"),
  27249. weight: math.unit(1000, "lb"),
  27250. name: "Back",
  27251. image: {
  27252. source: "./media/characters/grim/back.svg",
  27253. extra: 610.6 / 602,
  27254. bottom: 40.8 / 652
  27255. }
  27256. },
  27257. hunched: {
  27258. height: math.unit(9.75, "feet"),
  27259. weight: math.unit(1000, "lb"),
  27260. name: "Hunched",
  27261. image: {
  27262. source: "./media/characters/grim/hunched.svg",
  27263. extra: 304 / 297,
  27264. bottom: 35.4 / 394
  27265. }
  27266. },
  27267. },
  27268. [
  27269. {
  27270. name: "Normal",
  27271. height: math.unit(16, "feet"),
  27272. default: true
  27273. },
  27274. ]
  27275. ))
  27276. characterMakers.push(() => makeCharacter(
  27277. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27278. {
  27279. front: {
  27280. height: math.unit(2.3, "meters"),
  27281. weight: math.unit(300, "lb"),
  27282. name: "Front",
  27283. image: {
  27284. source: "./media/characters/sinja/front-sfw.svg",
  27285. extra: 1393 / 1294,
  27286. bottom: 70 / 1463
  27287. }
  27288. },
  27289. frontNsfw: {
  27290. height: math.unit(2.3, "meters"),
  27291. weight: math.unit(300, "lb"),
  27292. name: "Front (NSFW)",
  27293. image: {
  27294. source: "./media/characters/sinja/front-nsfw.svg",
  27295. extra: 1393 / 1294,
  27296. bottom: 70 / 1463
  27297. }
  27298. },
  27299. back: {
  27300. height: math.unit(2.3, "meters"),
  27301. weight: math.unit(300, "lb"),
  27302. name: "Back",
  27303. image: {
  27304. source: "./media/characters/sinja/back.svg",
  27305. extra: 1393 / 1294,
  27306. bottom: 70 / 1463
  27307. }
  27308. },
  27309. head: {
  27310. height: math.unit(1.771, "feet"),
  27311. name: "Head",
  27312. image: {
  27313. source: "./media/characters/sinja/head.svg"
  27314. }
  27315. },
  27316. slit: {
  27317. height: math.unit(0.8, "feet"),
  27318. name: "Slit",
  27319. image: {
  27320. source: "./media/characters/sinja/slit.svg"
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Normal",
  27327. height: math.unit(2.3, "meters")
  27328. },
  27329. {
  27330. name: "Macro",
  27331. height: math.unit(91, "meters"),
  27332. default: true
  27333. },
  27334. {
  27335. name: "Megamacro",
  27336. height: math.unit(91440, "meters")
  27337. },
  27338. {
  27339. name: "Gigamacro",
  27340. height: math.unit(60960000, "meters")
  27341. },
  27342. {
  27343. name: "Teramacro",
  27344. height: math.unit(9144000000, "meters")
  27345. },
  27346. ]
  27347. ))
  27348. characterMakers.push(() => makeCharacter(
  27349. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27350. {
  27351. front: {
  27352. height: math.unit(1.7, "meters"),
  27353. weight: math.unit(130, "lb"),
  27354. name: "Front",
  27355. image: {
  27356. source: "./media/characters/kyu/front.svg",
  27357. extra: 415 / 395,
  27358. bottom: 5 / 420
  27359. }
  27360. },
  27361. head: {
  27362. height: math.unit(1.75, "feet"),
  27363. name: "Head",
  27364. image: {
  27365. source: "./media/characters/kyu/head.svg"
  27366. }
  27367. },
  27368. foot: {
  27369. height: math.unit(0.81, "feet"),
  27370. name: "Foot",
  27371. image: {
  27372. source: "./media/characters/kyu/foot.svg"
  27373. }
  27374. },
  27375. },
  27376. [
  27377. {
  27378. name: "Normal",
  27379. height: math.unit(1.7, "meters")
  27380. },
  27381. {
  27382. name: "Macro",
  27383. height: math.unit(131, "feet"),
  27384. default: true
  27385. },
  27386. {
  27387. name: "Megamacro",
  27388. height: math.unit(91440, "meters")
  27389. },
  27390. {
  27391. name: "Gigamacro",
  27392. height: math.unit(60960000, "meters")
  27393. },
  27394. {
  27395. name: "Teramacro",
  27396. height: math.unit(9144000000, "meters")
  27397. },
  27398. ]
  27399. ))
  27400. characterMakers.push(() => makeCharacter(
  27401. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27402. {
  27403. front: {
  27404. height: math.unit(7 + 1 / 12, "feet"),
  27405. weight: math.unit(250, "lb"),
  27406. name: "Front",
  27407. image: {
  27408. source: "./media/characters/joey/front.svg",
  27409. extra: 1791 / 1537,
  27410. bottom: 28 / 1816
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Micro",
  27417. height: math.unit(3, "inches")
  27418. },
  27419. {
  27420. name: "Normal",
  27421. height: math.unit(7 + 1 / 12, "feet"),
  27422. default: true
  27423. },
  27424. ]
  27425. ))
  27426. characterMakers.push(() => makeCharacter(
  27427. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27428. {
  27429. front: {
  27430. height: math.unit(165, "cm"),
  27431. weight: math.unit(140, "lb"),
  27432. name: "Front",
  27433. image: {
  27434. source: "./media/characters/sam-evans/front.svg",
  27435. extra: 3417 / 3230,
  27436. bottom: 41.3 / 3417
  27437. }
  27438. },
  27439. frontSixTails: {
  27440. height: math.unit(165, "cm"),
  27441. weight: math.unit(140, "lb"),
  27442. name: "Front-six-tails",
  27443. image: {
  27444. source: "./media/characters/sam-evans/front-six-tails.svg",
  27445. extra: 3417 / 3230,
  27446. bottom: 41.3 / 3417
  27447. }
  27448. },
  27449. back: {
  27450. height: math.unit(165, "cm"),
  27451. weight: math.unit(140, "lb"),
  27452. name: "Back",
  27453. image: {
  27454. source: "./media/characters/sam-evans/back.svg",
  27455. extra: 3227 / 3032,
  27456. bottom: 6.8 / 3234
  27457. }
  27458. },
  27459. face: {
  27460. height: math.unit(0.68, "feet"),
  27461. name: "Face",
  27462. image: {
  27463. source: "./media/characters/sam-evans/face.svg"
  27464. }
  27465. },
  27466. },
  27467. [
  27468. {
  27469. name: "Normal",
  27470. height: math.unit(165, "cm"),
  27471. default: true
  27472. },
  27473. {
  27474. name: "Macro",
  27475. height: math.unit(100, "meters")
  27476. },
  27477. {
  27478. name: "Macro+",
  27479. height: math.unit(800, "meters")
  27480. },
  27481. {
  27482. name: "Macro++",
  27483. height: math.unit(3, "km")
  27484. },
  27485. {
  27486. name: "Macro+++",
  27487. height: math.unit(30, "km")
  27488. },
  27489. ]
  27490. ))
  27491. characterMakers.push(() => makeCharacter(
  27492. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27493. {
  27494. front: {
  27495. height: math.unit(10, "feet"),
  27496. weight: math.unit(750, "lb"),
  27497. name: "Front",
  27498. image: {
  27499. source: "./media/characters/juliet-a/front.svg",
  27500. extra: 1766 / 1720,
  27501. bottom: 43 / 1809
  27502. }
  27503. },
  27504. back: {
  27505. height: math.unit(10, "feet"),
  27506. weight: math.unit(750, "lb"),
  27507. name: "Back",
  27508. image: {
  27509. source: "./media/characters/juliet-a/back.svg",
  27510. extra: 1781 / 1734,
  27511. bottom: 35 / 1810,
  27512. }
  27513. },
  27514. },
  27515. [
  27516. {
  27517. name: "Normal",
  27518. height: math.unit(10, "feet"),
  27519. default: true
  27520. },
  27521. {
  27522. name: "Dragon Form",
  27523. height: math.unit(250, "feet")
  27524. },
  27525. {
  27526. name: "Macro",
  27527. height: math.unit(1000, "feet")
  27528. },
  27529. {
  27530. name: "Megamacro",
  27531. height: math.unit(10000, "feet")
  27532. }
  27533. ]
  27534. ))
  27535. characterMakers.push(() => makeCharacter(
  27536. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27537. {
  27538. regular: {
  27539. height: math.unit(7 + 3 / 12, "feet"),
  27540. weight: math.unit(260, "lb"),
  27541. name: "Regular",
  27542. image: {
  27543. source: "./media/characters/wild/regular.svg",
  27544. extra: 97.45 / 92,
  27545. bottom: 6.8 / 104.3
  27546. }
  27547. },
  27548. biggums: {
  27549. height: math.unit(8 + 6 / 12, "feet"),
  27550. weight: math.unit(425, "lb"),
  27551. name: "Biggums",
  27552. image: {
  27553. source: "./media/characters/wild/biggums.svg",
  27554. extra: 97.45 / 92,
  27555. bottom: 7.5 / 132.34
  27556. }
  27557. },
  27558. mawRegular: {
  27559. height: math.unit(1.24, "feet"),
  27560. name: "Maw (Regular)",
  27561. image: {
  27562. source: "./media/characters/wild/maw.svg"
  27563. }
  27564. },
  27565. mawBiggums: {
  27566. height: math.unit(1.47, "feet"),
  27567. name: "Maw (Biggums)",
  27568. image: {
  27569. source: "./media/characters/wild/maw.svg"
  27570. }
  27571. },
  27572. },
  27573. [
  27574. {
  27575. name: "Normal",
  27576. height: math.unit(7 + 3 / 12, "feet"),
  27577. default: true
  27578. },
  27579. ]
  27580. ))
  27581. characterMakers.push(() => makeCharacter(
  27582. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27583. {
  27584. front: {
  27585. height: math.unit(2.5, "meters"),
  27586. weight: math.unit(200, "kg"),
  27587. name: "Front",
  27588. image: {
  27589. source: "./media/characters/vidar/front.svg",
  27590. extra: 2994 / 2795,
  27591. bottom: 56 / 3061
  27592. }
  27593. },
  27594. back: {
  27595. height: math.unit(2.5, "meters"),
  27596. weight: math.unit(200, "kg"),
  27597. name: "Back",
  27598. image: {
  27599. source: "./media/characters/vidar/back.svg",
  27600. extra: 3131 / 2928,
  27601. bottom: 13.5 / 3141.5
  27602. }
  27603. },
  27604. feral: {
  27605. height: math.unit(2.5, "meters"),
  27606. weight: math.unit(2000, "kg"),
  27607. name: "Feral",
  27608. image: {
  27609. source: "./media/characters/vidar/feral.svg",
  27610. extra: 2790 / 1765,
  27611. bottom: 6 / 2796
  27612. }
  27613. },
  27614. },
  27615. [
  27616. {
  27617. name: "Normal",
  27618. height: math.unit(2.5, "meters"),
  27619. default: true
  27620. },
  27621. {
  27622. name: "Macro",
  27623. height: math.unit(100, "meters")
  27624. },
  27625. ]
  27626. ))
  27627. characterMakers.push(() => makeCharacter(
  27628. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27629. {
  27630. front: {
  27631. height: math.unit(5 + 9 / 12, "feet"),
  27632. weight: math.unit(120, "lb"),
  27633. name: "Front",
  27634. image: {
  27635. source: "./media/characters/ash/front.svg",
  27636. extra: 2189 / 1961,
  27637. bottom: 5.2 / 2194
  27638. }
  27639. },
  27640. },
  27641. [
  27642. {
  27643. name: "Normal",
  27644. height: math.unit(5 + 9 / 12, "feet"),
  27645. default: true
  27646. },
  27647. ]
  27648. ))
  27649. characterMakers.push(() => makeCharacter(
  27650. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27651. {
  27652. front: {
  27653. height: math.unit(9, "feet"),
  27654. weight: math.unit(10000, "lb"),
  27655. name: "Front",
  27656. image: {
  27657. source: "./media/characters/gygabite/front.svg",
  27658. bottom: 31.7 / 537.8,
  27659. extra: 505 / 370
  27660. }
  27661. },
  27662. },
  27663. [
  27664. {
  27665. name: "Normal",
  27666. height: math.unit(9, "feet"),
  27667. default: true
  27668. },
  27669. ]
  27670. ))
  27671. characterMakers.push(() => makeCharacter(
  27672. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27673. {
  27674. front: {
  27675. height: math.unit(12, "feet"),
  27676. weight: math.unit(35000, "lb"),
  27677. name: "Front",
  27678. image: {
  27679. source: "./media/characters/p0tat0/front.svg",
  27680. extra: 1065 / 921,
  27681. bottom: 55.7 / 1121.25
  27682. }
  27683. },
  27684. },
  27685. [
  27686. {
  27687. name: "Normal",
  27688. height: math.unit(12, "feet"),
  27689. default: true
  27690. },
  27691. ]
  27692. ))
  27693. characterMakers.push(() => makeCharacter(
  27694. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27695. {
  27696. side: {
  27697. height: math.unit(6.5, "feet"),
  27698. weight: math.unit(800, "lb"),
  27699. name: "Side",
  27700. image: {
  27701. source: "./media/characters/dusk/side.svg",
  27702. extra: 615 / 373,
  27703. bottom: 53 / 664
  27704. }
  27705. },
  27706. sitting: {
  27707. height: math.unit(7, "feet"),
  27708. weight: math.unit(800, "lb"),
  27709. name: "Sitting",
  27710. image: {
  27711. source: "./media/characters/dusk/sitting.svg",
  27712. extra: 753 / 425,
  27713. bottom: 33 / 774
  27714. }
  27715. },
  27716. head: {
  27717. height: math.unit(6.1, "feet"),
  27718. name: "Head",
  27719. image: {
  27720. source: "./media/characters/dusk/head.svg"
  27721. }
  27722. },
  27723. },
  27724. [
  27725. {
  27726. name: "Normal",
  27727. height: math.unit(7, "feet"),
  27728. default: true
  27729. },
  27730. ]
  27731. ))
  27732. characterMakers.push(() => makeCharacter(
  27733. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27734. {
  27735. front: {
  27736. height: math.unit(15, "feet"),
  27737. weight: math.unit(7000, "lb"),
  27738. name: "Front",
  27739. image: {
  27740. source: "./media/characters/jay-direwolf/front.svg",
  27741. extra: 1810 / 1732,
  27742. bottom: 66 / 1892
  27743. }
  27744. },
  27745. },
  27746. [
  27747. {
  27748. name: "Normal",
  27749. height: math.unit(15, "feet"),
  27750. default: true
  27751. },
  27752. ]
  27753. ))
  27754. characterMakers.push(() => makeCharacter(
  27755. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27756. {
  27757. front: {
  27758. height: math.unit(4 + 9 / 12, "feet"),
  27759. weight: math.unit(130, "lb"),
  27760. name: "Front",
  27761. image: {
  27762. source: "./media/characters/anchovie/front.svg",
  27763. extra: 382 / 350,
  27764. bottom: 25 / 409
  27765. }
  27766. },
  27767. back: {
  27768. height: math.unit(4 + 9 / 12, "feet"),
  27769. weight: math.unit(130, "lb"),
  27770. name: "Back",
  27771. image: {
  27772. source: "./media/characters/anchovie/back.svg",
  27773. extra: 385 / 352,
  27774. bottom: 16.6 / 402
  27775. }
  27776. },
  27777. frontDressed: {
  27778. height: math.unit(4 + 9 / 12, "feet"),
  27779. weight: math.unit(130, "lb"),
  27780. name: "Front (Dressed)",
  27781. image: {
  27782. source: "./media/characters/anchovie/front-dressed.svg",
  27783. extra: 382 / 350,
  27784. bottom: 25 / 409
  27785. }
  27786. },
  27787. backDressed: {
  27788. height: math.unit(4 + 9 / 12, "feet"),
  27789. weight: math.unit(130, "lb"),
  27790. name: "Back (Dressed)",
  27791. image: {
  27792. source: "./media/characters/anchovie/back-dressed.svg",
  27793. extra: 385 / 352,
  27794. bottom: 16.6 / 402
  27795. }
  27796. },
  27797. },
  27798. [
  27799. {
  27800. name: "Micro",
  27801. height: math.unit(6.4, "inches")
  27802. },
  27803. {
  27804. name: "Normal",
  27805. height: math.unit(4 + 9 / 12, "feet"),
  27806. default: true
  27807. },
  27808. ]
  27809. ))
  27810. characterMakers.push(() => makeCharacter(
  27811. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27812. {
  27813. front: {
  27814. height: math.unit(2, "meters"),
  27815. weight: math.unit(180, "lb"),
  27816. name: "Front",
  27817. image: {
  27818. source: "./media/characters/acidrenamon/front.svg",
  27819. extra: 987 / 890,
  27820. bottom: 22.8 / 1009
  27821. }
  27822. },
  27823. back: {
  27824. height: math.unit(2, "meters"),
  27825. weight: math.unit(180, "lb"),
  27826. name: "Back",
  27827. image: {
  27828. source: "./media/characters/acidrenamon/back.svg",
  27829. extra: 983 / 891,
  27830. bottom: 8.4 / 992
  27831. }
  27832. },
  27833. head: {
  27834. height: math.unit(1.92, "feet"),
  27835. name: "Head",
  27836. image: {
  27837. source: "./media/characters/acidrenamon/head.svg"
  27838. }
  27839. },
  27840. rump: {
  27841. height: math.unit(1.72, "feet"),
  27842. name: "Rump",
  27843. image: {
  27844. source: "./media/characters/acidrenamon/rump.svg"
  27845. }
  27846. },
  27847. tail: {
  27848. height: math.unit(4.2, "feet"),
  27849. name: "Tail",
  27850. image: {
  27851. source: "./media/characters/acidrenamon/tail.svg"
  27852. }
  27853. },
  27854. },
  27855. [
  27856. {
  27857. name: "Normal",
  27858. height: math.unit(2, "meters"),
  27859. default: true
  27860. },
  27861. {
  27862. name: "Minimacro",
  27863. height: math.unit(7, "meters")
  27864. },
  27865. {
  27866. name: "Macro",
  27867. height: math.unit(200, "meters")
  27868. },
  27869. {
  27870. name: "Gigamacro",
  27871. height: math.unit(0.2, "earths")
  27872. },
  27873. ]
  27874. ))
  27875. characterMakers.push(() => makeCharacter(
  27876. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27877. {
  27878. front: {
  27879. height: math.unit(152, "feet"),
  27880. name: "Front",
  27881. image: {
  27882. source: "./media/characters/kenzie-lee/front.svg",
  27883. extra: 1869/1774,
  27884. bottom: 128/1997
  27885. }
  27886. },
  27887. side: {
  27888. height: math.unit(86, "feet"),
  27889. name: "Side",
  27890. image: {
  27891. source: "./media/characters/kenzie-lee/side.svg",
  27892. extra: 930/815,
  27893. bottom: 177/1107
  27894. }
  27895. },
  27896. paw: {
  27897. height: math.unit(15, "feet"),
  27898. name: "Paw",
  27899. image: {
  27900. source: "./media/characters/kenzie-lee/paw.svg"
  27901. }
  27902. },
  27903. },
  27904. [
  27905. {
  27906. name: "Micro",
  27907. height: math.unit(1.5, "inches")
  27908. },
  27909. {
  27910. name: "Normal",
  27911. height: math.unit(152, "feet"),
  27912. default: true
  27913. },
  27914. {
  27915. name: "Megamacro",
  27916. height: math.unit(7, "miles")
  27917. },
  27918. {
  27919. name: "Gigamacro",
  27920. height: math.unit(8000, "miles")
  27921. },
  27922. ]
  27923. ))
  27924. characterMakers.push(() => makeCharacter(
  27925. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27926. {
  27927. side: {
  27928. height: math.unit(6, "feet"),
  27929. weight: math.unit(150, "lb"),
  27930. name: "Side",
  27931. image: {
  27932. source: "./media/characters/withers/side.svg",
  27933. extra: 1830 / 1728,
  27934. bottom: 96 / 1927
  27935. }
  27936. },
  27937. front: {
  27938. height: math.unit(6, "feet"),
  27939. weight: math.unit(150, "lb"),
  27940. name: "Front",
  27941. image: {
  27942. source: "./media/characters/withers/front.svg",
  27943. extra: 1514 / 1438,
  27944. bottom: 118 / 1632
  27945. }
  27946. },
  27947. },
  27948. [
  27949. {
  27950. name: "Macro",
  27951. height: math.unit(168, "feet"),
  27952. default: true
  27953. },
  27954. {
  27955. name: "Megamacro",
  27956. height: math.unit(15, "miles")
  27957. }
  27958. ]
  27959. ))
  27960. characterMakers.push(() => makeCharacter(
  27961. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27962. {
  27963. front: {
  27964. height: math.unit(6 + 7 / 12, "feet"),
  27965. weight: math.unit(250, "lb"),
  27966. name: "Front",
  27967. image: {
  27968. source: "./media/characters/nemoskii/front.svg",
  27969. extra: 2270 / 1734,
  27970. bottom: 86 / 2354
  27971. }
  27972. },
  27973. back: {
  27974. height: math.unit(6 + 7 / 12, "feet"),
  27975. weight: math.unit(250, "lb"),
  27976. name: "Back",
  27977. image: {
  27978. source: "./media/characters/nemoskii/back.svg",
  27979. extra: 1845 / 1788,
  27980. bottom: 10.5 / 1852
  27981. }
  27982. },
  27983. head: {
  27984. height: math.unit(1.31, "feet"),
  27985. name: "Head",
  27986. image: {
  27987. source: "./media/characters/nemoskii/head.svg"
  27988. }
  27989. },
  27990. },
  27991. [
  27992. {
  27993. name: "Micro",
  27994. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27995. },
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(6 + 7 / 12, "feet"),
  27999. default: true
  28000. },
  28001. {
  28002. name: "Macro",
  28003. height: math.unit((6 + 7 / 12) * 150, "feet")
  28004. },
  28005. {
  28006. name: "Macro+",
  28007. height: math.unit((6 + 7 / 12) * 500, "feet")
  28008. },
  28009. {
  28010. name: "Megamacro",
  28011. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28012. },
  28013. ]
  28014. ))
  28015. characterMakers.push(() => makeCharacter(
  28016. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28017. {
  28018. front: {
  28019. height: math.unit(1, "mile"),
  28020. weight: math.unit(265261.9, "lb"),
  28021. name: "Front",
  28022. image: {
  28023. source: "./media/characters/shui/front.svg",
  28024. extra: 1633 / 1564,
  28025. bottom: 91.5 / 1726
  28026. }
  28027. },
  28028. },
  28029. [
  28030. {
  28031. name: "Macro",
  28032. height: math.unit(1, "mile"),
  28033. default: true
  28034. },
  28035. ]
  28036. ))
  28037. characterMakers.push(() => makeCharacter(
  28038. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28039. {
  28040. front: {
  28041. height: math.unit(12 + 6 / 12, "feet"),
  28042. weight: math.unit(1342, "lb"),
  28043. name: "Front",
  28044. image: {
  28045. source: "./media/characters/arokh-takakura/front.svg",
  28046. extra: 1089 / 1043,
  28047. bottom: 77.4 / 1176.7
  28048. }
  28049. },
  28050. back: {
  28051. height: math.unit(12 + 6 / 12, "feet"),
  28052. weight: math.unit(1342, "lb"),
  28053. name: "Back",
  28054. image: {
  28055. source: "./media/characters/arokh-takakura/back.svg",
  28056. extra: 1046 / 1019,
  28057. bottom: 102 / 1150
  28058. }
  28059. },
  28060. },
  28061. [
  28062. {
  28063. name: "Big",
  28064. height: math.unit(12 + 6 / 12, "feet"),
  28065. default: true
  28066. },
  28067. ]
  28068. ))
  28069. characterMakers.push(() => makeCharacter(
  28070. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28071. {
  28072. front: {
  28073. height: math.unit(5 + 6 / 12, "feet"),
  28074. weight: math.unit(150, "lb"),
  28075. name: "Front",
  28076. image: {
  28077. source: "./media/characters/theo/front.svg",
  28078. extra: 1184 / 1131,
  28079. bottom: 7.4 / 1191
  28080. }
  28081. },
  28082. },
  28083. [
  28084. {
  28085. name: "Micro",
  28086. height: math.unit(5, "inches")
  28087. },
  28088. {
  28089. name: "Normal",
  28090. height: math.unit(5 + 6 / 12, "feet"),
  28091. default: true
  28092. },
  28093. ]
  28094. ))
  28095. characterMakers.push(() => makeCharacter(
  28096. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28097. {
  28098. front: {
  28099. height: math.unit(5 + 9 / 12, "feet"),
  28100. weight: math.unit(130, "lb"),
  28101. name: "Front",
  28102. image: {
  28103. source: "./media/characters/cecelia-swift/front.svg",
  28104. extra: 502 / 484,
  28105. bottom: 23 / 523
  28106. }
  28107. },
  28108. back: {
  28109. height: math.unit(5 + 9 / 12, "feet"),
  28110. weight: math.unit(130, "lb"),
  28111. name: "Back",
  28112. image: {
  28113. source: "./media/characters/cecelia-swift/back.svg",
  28114. extra: 499 / 485,
  28115. bottom: 12 / 511
  28116. }
  28117. },
  28118. head: {
  28119. height: math.unit(0.90, "feet"),
  28120. name: "Head",
  28121. image: {
  28122. source: "./media/characters/cecelia-swift/head.svg"
  28123. }
  28124. },
  28125. rump: {
  28126. height: math.unit(1.75, "feet"),
  28127. name: "Rump",
  28128. image: {
  28129. source: "./media/characters/cecelia-swift/rump.svg"
  28130. }
  28131. },
  28132. },
  28133. [
  28134. {
  28135. name: "Normal",
  28136. height: math.unit(5 + 9 / 12, "feet"),
  28137. default: true
  28138. },
  28139. {
  28140. name: "Big",
  28141. height: math.unit(50, "feet")
  28142. },
  28143. {
  28144. name: "Macro",
  28145. height: math.unit(100, "feet")
  28146. },
  28147. {
  28148. name: "Macro+",
  28149. height: math.unit(500, "feet")
  28150. },
  28151. {
  28152. name: "Macro++",
  28153. height: math.unit(1000, "feet")
  28154. },
  28155. ]
  28156. ))
  28157. characterMakers.push(() => makeCharacter(
  28158. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28159. {
  28160. front: {
  28161. height: math.unit(6, "feet"),
  28162. weight: math.unit(150, "lb"),
  28163. name: "Front",
  28164. image: {
  28165. source: "./media/characters/kaunan/front.svg",
  28166. extra: 2890 / 2523,
  28167. bottom: 49 / 2939
  28168. }
  28169. },
  28170. },
  28171. [
  28172. {
  28173. name: "Macro",
  28174. height: math.unit(150, "feet"),
  28175. default: true
  28176. },
  28177. ]
  28178. ))
  28179. characterMakers.push(() => makeCharacter(
  28180. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28181. {
  28182. front: {
  28183. height: math.unit(175, "cm"),
  28184. weight: math.unit(60, "kg"),
  28185. name: "Front",
  28186. image: {
  28187. source: "./media/characters/fei/front.svg",
  28188. extra: 1873/1723,
  28189. bottom: 53/1926
  28190. }
  28191. },
  28192. },
  28193. [
  28194. {
  28195. name: "Mortal",
  28196. height: math.unit(175, "cm")
  28197. },
  28198. {
  28199. name: "Normal",
  28200. height: math.unit(3500, "m"),
  28201. default: true
  28202. },
  28203. {
  28204. name: "Stroll",
  28205. height: math.unit(17.5, "km")
  28206. },
  28207. {
  28208. name: "Showoff",
  28209. height: math.unit(175, "km")
  28210. },
  28211. ]
  28212. ))
  28213. characterMakers.push(() => makeCharacter(
  28214. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28215. {
  28216. front: {
  28217. height: math.unit(7, "feet"),
  28218. weight: math.unit(1000, "kg"),
  28219. name: "Front",
  28220. image: {
  28221. source: "./media/characters/edrax/front.svg",
  28222. extra: 2838 / 2550,
  28223. bottom: 130 / 2968
  28224. }
  28225. },
  28226. },
  28227. [
  28228. {
  28229. name: "Small",
  28230. height: math.unit(7, "feet")
  28231. },
  28232. {
  28233. name: "Normal",
  28234. height: math.unit(1500, "meters")
  28235. },
  28236. {
  28237. name: "Mega",
  28238. height: math.unit(12000000, "km"),
  28239. default: true
  28240. },
  28241. {
  28242. name: "Megamacro",
  28243. height: math.unit(10600000, "lightyears")
  28244. },
  28245. {
  28246. name: "Hypermacro",
  28247. height: math.unit(256, "yottameters")
  28248. },
  28249. ]
  28250. ))
  28251. characterMakers.push(() => makeCharacter(
  28252. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28253. {
  28254. front: {
  28255. height: math.unit(10, "feet"),
  28256. weight: math.unit(750, "lb"),
  28257. name: "Front",
  28258. image: {
  28259. source: "./media/characters/clove/front.svg",
  28260. extra: 1918/1751,
  28261. bottom: 52/1970
  28262. }
  28263. },
  28264. back: {
  28265. height: math.unit(10, "feet"),
  28266. weight: math.unit(750, "lb"),
  28267. name: "Back",
  28268. image: {
  28269. source: "./media/characters/clove/back.svg",
  28270. extra: 1912/1747,
  28271. bottom: 50/1962
  28272. }
  28273. },
  28274. },
  28275. [
  28276. {
  28277. name: "Normal",
  28278. height: math.unit(10, "feet"),
  28279. default: true
  28280. },
  28281. ]
  28282. ))
  28283. characterMakers.push(() => makeCharacter(
  28284. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28285. {
  28286. front: {
  28287. height: math.unit(4, "feet"),
  28288. weight: math.unit(50, "lb"),
  28289. name: "Front",
  28290. image: {
  28291. source: "./media/characters/alex-rabbit/front.svg",
  28292. extra: 507 / 458,
  28293. bottom: 18.5 / 527
  28294. }
  28295. },
  28296. back: {
  28297. height: math.unit(4, "feet"),
  28298. weight: math.unit(50, "lb"),
  28299. name: "Back",
  28300. image: {
  28301. source: "./media/characters/alex-rabbit/back.svg",
  28302. extra: 502 / 460,
  28303. bottom: 18.9 / 521
  28304. }
  28305. },
  28306. },
  28307. [
  28308. {
  28309. name: "Normal",
  28310. height: math.unit(4, "feet"),
  28311. default: true
  28312. },
  28313. ]
  28314. ))
  28315. characterMakers.push(() => makeCharacter(
  28316. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28317. {
  28318. front: {
  28319. height: math.unit(1 + 3 / 12, "feet"),
  28320. weight: math.unit(80, "lb"),
  28321. name: "Front",
  28322. image: {
  28323. source: "./media/characters/zander-rose/front.svg",
  28324. extra: 916 / 797,
  28325. bottom: 17 / 933
  28326. }
  28327. },
  28328. back: {
  28329. height: math.unit(1 + 3 / 12, "feet"),
  28330. weight: math.unit(80, "lb"),
  28331. name: "Back",
  28332. image: {
  28333. source: "./media/characters/zander-rose/back.svg",
  28334. extra: 903 / 779,
  28335. bottom: 31 / 934
  28336. }
  28337. },
  28338. },
  28339. [
  28340. {
  28341. name: "Normal",
  28342. height: math.unit(1 + 3 / 12, "feet"),
  28343. default: true
  28344. },
  28345. ]
  28346. ))
  28347. characterMakers.push(() => makeCharacter(
  28348. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28349. {
  28350. anthro: {
  28351. height: math.unit(6, "feet"),
  28352. weight: math.unit(150, "lb"),
  28353. name: "Anthro",
  28354. image: {
  28355. source: "./media/characters/razz/anthro.svg",
  28356. extra: 1437 / 1343,
  28357. bottom: 48 / 1485
  28358. }
  28359. },
  28360. feral: {
  28361. height: math.unit(6, "feet"),
  28362. weight: math.unit(150, "lb"),
  28363. name: "Feral",
  28364. image: {
  28365. source: "./media/characters/razz/feral.svg",
  28366. extra: 2569 / 1385,
  28367. bottom: 95 / 2664
  28368. }
  28369. },
  28370. },
  28371. [
  28372. {
  28373. name: "Normal",
  28374. height: math.unit(6, "feet"),
  28375. default: true
  28376. },
  28377. ]
  28378. ))
  28379. characterMakers.push(() => makeCharacter(
  28380. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28381. {
  28382. front: {
  28383. height: math.unit(9 + 4 / 12, "feet"),
  28384. weight: math.unit(500, "lb"),
  28385. name: "Front",
  28386. image: {
  28387. source: "./media/characters/morrigan/front.svg",
  28388. extra: 2707 / 2579,
  28389. bottom: 156 / 2863
  28390. }
  28391. },
  28392. },
  28393. [
  28394. {
  28395. name: "Normal",
  28396. height: math.unit(9 + 4 / 12, "feet"),
  28397. default: true
  28398. },
  28399. ]
  28400. ))
  28401. characterMakers.push(() => makeCharacter(
  28402. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28403. {
  28404. front: {
  28405. height: math.unit(5, "stories"),
  28406. weight: math.unit(4000, "lb"),
  28407. name: "Front",
  28408. image: {
  28409. source: "./media/characters/jenene/front.svg",
  28410. extra: 1780 / 1710,
  28411. bottom: 57 / 1837
  28412. }
  28413. },
  28414. },
  28415. [
  28416. {
  28417. name: "Normal",
  28418. height: math.unit(5, "stories"),
  28419. default: true
  28420. },
  28421. ]
  28422. ))
  28423. characterMakers.push(() => makeCharacter(
  28424. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28425. {
  28426. taurSfw: {
  28427. height: math.unit(10, "meters"),
  28428. weight: math.unit(17500, "kg"),
  28429. name: "Taur",
  28430. image: {
  28431. source: "./media/characters/faey/taur-sfw.svg",
  28432. extra: 1200 / 968,
  28433. bottom: 41 / 1241
  28434. }
  28435. },
  28436. chestmaw: {
  28437. height: math.unit(2.01, "meters"),
  28438. name: "Chestmaw",
  28439. image: {
  28440. source: "./media/characters/faey/chestmaw.svg"
  28441. }
  28442. },
  28443. foot: {
  28444. height: math.unit(2.43, "meters"),
  28445. name: "Foot",
  28446. image: {
  28447. source: "./media/characters/faey/foot.svg"
  28448. }
  28449. },
  28450. jaws: {
  28451. height: math.unit(1.66, "meters"),
  28452. name: "Jaws",
  28453. image: {
  28454. source: "./media/characters/faey/jaws.svg"
  28455. }
  28456. },
  28457. tongues: {
  28458. height: math.unit(2.01, "meters"),
  28459. name: "Tongues",
  28460. image: {
  28461. source: "./media/characters/faey/tongues.svg"
  28462. }
  28463. },
  28464. },
  28465. [
  28466. {
  28467. name: "Small",
  28468. height: math.unit(10, "meters"),
  28469. default: true
  28470. },
  28471. {
  28472. name: "Big",
  28473. height: math.unit(500000, "km")
  28474. },
  28475. ]
  28476. ))
  28477. characterMakers.push(() => makeCharacter(
  28478. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28479. {
  28480. front: {
  28481. height: math.unit(7, "feet"),
  28482. weight: math.unit(275, "lb"),
  28483. name: "Front",
  28484. image: {
  28485. source: "./media/characters/roku/front.svg",
  28486. extra: 903 / 878,
  28487. bottom: 37 / 940
  28488. }
  28489. },
  28490. },
  28491. [
  28492. {
  28493. name: "Normal",
  28494. height: math.unit(7, "feet"),
  28495. default: true
  28496. },
  28497. {
  28498. name: "Macro",
  28499. height: math.unit(500, "feet")
  28500. },
  28501. {
  28502. name: "Megamacro",
  28503. height: math.unit(200, "miles")
  28504. },
  28505. ]
  28506. ))
  28507. characterMakers.push(() => makeCharacter(
  28508. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28509. {
  28510. front: {
  28511. height: math.unit(6 + 2 / 12, "feet"),
  28512. weight: math.unit(150, "lb"),
  28513. name: "Front",
  28514. image: {
  28515. source: "./media/characters/lira/front.svg",
  28516. extra: 1727 / 1605,
  28517. bottom: 26 / 1753
  28518. }
  28519. },
  28520. back: {
  28521. height: math.unit(6 + 2 / 12, "feet"),
  28522. weight: math.unit(150, "lb"),
  28523. name: "Back",
  28524. image: {
  28525. source: "./media/characters/lira/back.svg",
  28526. extra: 1713/1621,
  28527. bottom: 20/1733
  28528. }
  28529. },
  28530. hand: {
  28531. height: math.unit(0.75, "feet"),
  28532. name: "Hand",
  28533. image: {
  28534. source: "./media/characters/lira/hand.svg"
  28535. }
  28536. },
  28537. maw: {
  28538. height: math.unit(0.65, "feet"),
  28539. name: "Maw",
  28540. image: {
  28541. source: "./media/characters/lira/maw.svg"
  28542. }
  28543. },
  28544. pawDigi: {
  28545. height: math.unit(1.6, "feet"),
  28546. name: "Paw Digi",
  28547. image: {
  28548. source: "./media/characters/lira/paw-digi.svg"
  28549. }
  28550. },
  28551. pawPlanti: {
  28552. height: math.unit(1.4, "feet"),
  28553. name: "Paw Planti",
  28554. image: {
  28555. source: "./media/characters/lira/paw-planti.svg"
  28556. }
  28557. },
  28558. },
  28559. [
  28560. {
  28561. name: "Normal",
  28562. height: math.unit(6 + 2 / 12, "feet"),
  28563. default: true
  28564. },
  28565. {
  28566. name: "Macro",
  28567. height: math.unit(100, "feet")
  28568. },
  28569. {
  28570. name: "Macro²",
  28571. height: math.unit(1600, "feet")
  28572. },
  28573. {
  28574. name: "Planetary",
  28575. height: math.unit(20, "earths")
  28576. },
  28577. ]
  28578. ))
  28579. characterMakers.push(() => makeCharacter(
  28580. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28581. {
  28582. front: {
  28583. height: math.unit(6, "feet"),
  28584. weight: math.unit(150, "lb"),
  28585. name: "Front",
  28586. image: {
  28587. source: "./media/characters/hadjet/front.svg",
  28588. extra: 1480 / 1346,
  28589. bottom: 26 / 1506
  28590. }
  28591. },
  28592. frontNsfw: {
  28593. height: math.unit(6, "feet"),
  28594. weight: math.unit(150, "lb"),
  28595. name: "Front (NSFW)",
  28596. image: {
  28597. source: "./media/characters/hadjet/front-nsfw.svg",
  28598. extra: 1440 / 1358,
  28599. bottom: 52 / 1492
  28600. }
  28601. },
  28602. },
  28603. [
  28604. {
  28605. name: "Macro",
  28606. height: math.unit(10, "stories"),
  28607. default: true
  28608. },
  28609. {
  28610. name: "Megamacro",
  28611. height: math.unit(1.5, "miles")
  28612. },
  28613. {
  28614. name: "Megamacro+",
  28615. height: math.unit(5, "miles")
  28616. },
  28617. ]
  28618. ))
  28619. characterMakers.push(() => makeCharacter(
  28620. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28621. {
  28622. side: {
  28623. height: math.unit(106, "feet"),
  28624. weight: math.unit(500, "tonnes"),
  28625. name: "Side",
  28626. image: {
  28627. source: "./media/characters/kodran/side.svg",
  28628. extra: 553 / 480,
  28629. bottom: 33 / 586
  28630. }
  28631. },
  28632. front: {
  28633. height: math.unit(132, "feet"),
  28634. weight: math.unit(500, "tonnes"),
  28635. name: "Front",
  28636. image: {
  28637. source: "./media/characters/kodran/front.svg",
  28638. extra: 667 / 643,
  28639. bottom: 42 / 709
  28640. }
  28641. },
  28642. flying: {
  28643. height: math.unit(350, "feet"),
  28644. weight: math.unit(500, "tonnes"),
  28645. name: "Flying",
  28646. image: {
  28647. source: "./media/characters/kodran/flying.svg"
  28648. }
  28649. },
  28650. foot: {
  28651. height: math.unit(33, "feet"),
  28652. name: "Foot",
  28653. image: {
  28654. source: "./media/characters/kodran/foot.svg"
  28655. }
  28656. },
  28657. footFront: {
  28658. height: math.unit(19, "feet"),
  28659. name: "Foot (Front)",
  28660. image: {
  28661. source: "./media/characters/kodran/foot-front.svg",
  28662. extra: 261 / 261,
  28663. bottom: 91 / 352
  28664. }
  28665. },
  28666. headFront: {
  28667. height: math.unit(53, "feet"),
  28668. name: "Head (Front)",
  28669. image: {
  28670. source: "./media/characters/kodran/head-front.svg"
  28671. }
  28672. },
  28673. headSide: {
  28674. height: math.unit(65, "feet"),
  28675. name: "Head (Side)",
  28676. image: {
  28677. source: "./media/characters/kodran/head-side.svg"
  28678. }
  28679. },
  28680. throat: {
  28681. height: math.unit(79, "feet"),
  28682. name: "Throat",
  28683. image: {
  28684. source: "./media/characters/kodran/throat.svg"
  28685. }
  28686. },
  28687. },
  28688. [
  28689. {
  28690. name: "Large",
  28691. height: math.unit(106, "feet"),
  28692. default: true
  28693. },
  28694. ]
  28695. ))
  28696. characterMakers.push(() => makeCharacter(
  28697. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28698. {
  28699. side: {
  28700. height: math.unit(11, "feet"),
  28701. weight: math.unit(150, "lb"),
  28702. name: "Side",
  28703. image: {
  28704. source: "./media/characters/pyxaron/side.svg",
  28705. extra: 305 / 195,
  28706. bottom: 17 / 322
  28707. }
  28708. },
  28709. },
  28710. [
  28711. {
  28712. name: "Normal",
  28713. height: math.unit(11, "feet"),
  28714. default: true
  28715. },
  28716. ]
  28717. ))
  28718. characterMakers.push(() => makeCharacter(
  28719. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28720. {
  28721. front: {
  28722. height: math.unit(6, "feet"),
  28723. weight: math.unit(150, "lb"),
  28724. name: "Front",
  28725. image: {
  28726. source: "./media/characters/meep/front.svg",
  28727. extra: 88 / 80,
  28728. bottom: 6 / 94
  28729. }
  28730. },
  28731. },
  28732. [
  28733. {
  28734. name: "Fun Sized",
  28735. height: math.unit(2, "inches"),
  28736. default: true
  28737. },
  28738. {
  28739. name: "Friend Sized",
  28740. height: math.unit(8, "inches")
  28741. },
  28742. ]
  28743. ))
  28744. characterMakers.push(() => makeCharacter(
  28745. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28746. {
  28747. front: {
  28748. height: math.unit(15, "feet"),
  28749. weight: math.unit(2500, "lb"),
  28750. name: "Front",
  28751. image: {
  28752. source: "./media/characters/holly-rabbit/front.svg",
  28753. extra: 1433 / 1233,
  28754. bottom: 125 / 1558
  28755. }
  28756. },
  28757. dick: {
  28758. height: math.unit(4.6, "feet"),
  28759. name: "Dick",
  28760. image: {
  28761. source: "./media/characters/holly-rabbit/dick.svg"
  28762. }
  28763. },
  28764. },
  28765. [
  28766. {
  28767. name: "Normal",
  28768. height: math.unit(15, "feet"),
  28769. default: true
  28770. },
  28771. {
  28772. name: "Macro",
  28773. height: math.unit(250, "feet")
  28774. },
  28775. {
  28776. name: "Macro+",
  28777. height: math.unit(2500, "feet")
  28778. },
  28779. ]
  28780. ))
  28781. characterMakers.push(() => makeCharacter(
  28782. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28783. {
  28784. front: {
  28785. height: math.unit(3.02, "meters"),
  28786. weight: math.unit(500, "kg"),
  28787. name: "Front",
  28788. image: {
  28789. source: "./media/characters/drena/front.svg",
  28790. extra: 282 / 243,
  28791. bottom: 8 / 290
  28792. }
  28793. },
  28794. side: {
  28795. height: math.unit(3.02, "meters"),
  28796. weight: math.unit(500, "kg"),
  28797. name: "Side",
  28798. image: {
  28799. source: "./media/characters/drena/side.svg",
  28800. extra: 280 / 245,
  28801. bottom: 10 / 290
  28802. }
  28803. },
  28804. back: {
  28805. height: math.unit(3.02, "meters"),
  28806. weight: math.unit(500, "kg"),
  28807. name: "Back",
  28808. image: {
  28809. source: "./media/characters/drena/back.svg",
  28810. extra: 278 / 243,
  28811. bottom: 2 / 280
  28812. }
  28813. },
  28814. foot: {
  28815. height: math.unit(0.75, "meters"),
  28816. name: "Foot",
  28817. image: {
  28818. source: "./media/characters/drena/foot.svg"
  28819. }
  28820. },
  28821. maw: {
  28822. height: math.unit(0.82, "meters"),
  28823. name: "Maw",
  28824. image: {
  28825. source: "./media/characters/drena/maw.svg"
  28826. }
  28827. },
  28828. rump: {
  28829. height: math.unit(0.93, "meters"),
  28830. name: "Rump",
  28831. image: {
  28832. source: "./media/characters/drena/rump.svg"
  28833. }
  28834. },
  28835. },
  28836. [
  28837. {
  28838. name: "Normal",
  28839. height: math.unit(3.02, "meters"),
  28840. default: true
  28841. },
  28842. ]
  28843. ))
  28844. characterMakers.push(() => makeCharacter(
  28845. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28846. {
  28847. front: {
  28848. height: math.unit(6 + 4 / 12, "feet"),
  28849. weight: math.unit(250, "lb"),
  28850. name: "Front",
  28851. image: {
  28852. source: "./media/characters/remmyzilla/front.svg",
  28853. extra: 4033 / 3588,
  28854. bottom: 123 / 4156
  28855. }
  28856. },
  28857. back: {
  28858. height: math.unit(6 + 4 / 12, "feet"),
  28859. weight: math.unit(250, "lb"),
  28860. name: "Back",
  28861. image: {
  28862. source: "./media/characters/remmyzilla/back.svg",
  28863. extra: 2687 / 2555,
  28864. bottom: 48 / 2735
  28865. }
  28866. },
  28867. paw: {
  28868. height: math.unit(1.73, "feet"),
  28869. name: "Paw",
  28870. image: {
  28871. source: "./media/characters/remmyzilla/paw.svg"
  28872. }
  28873. },
  28874. maw: {
  28875. height: math.unit(1.73, "feet"),
  28876. name: "Maw",
  28877. image: {
  28878. source: "./media/characters/remmyzilla/maw.svg"
  28879. }
  28880. },
  28881. },
  28882. [
  28883. {
  28884. name: "Normal",
  28885. height: math.unit(6 + 4 / 12, "feet")
  28886. },
  28887. {
  28888. name: "Minimacro",
  28889. height: math.unit(12 + 8 / 12, "feet")
  28890. },
  28891. {
  28892. name: "Normal",
  28893. height: math.unit(640, "feet"),
  28894. default: true
  28895. },
  28896. {
  28897. name: "Megamacro",
  28898. height: math.unit(6400, "feet")
  28899. },
  28900. {
  28901. name: "Gigamacro",
  28902. height: math.unit(64000, "miles")
  28903. },
  28904. ]
  28905. ))
  28906. characterMakers.push(() => makeCharacter(
  28907. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28908. {
  28909. front: {
  28910. height: math.unit(2.5, "meters"),
  28911. weight: math.unit(300, "lb"),
  28912. name: "Front",
  28913. image: {
  28914. source: "./media/characters/lawrence/front.svg",
  28915. extra: 357 / 335,
  28916. bottom: 30 / 387
  28917. }
  28918. },
  28919. back: {
  28920. height: math.unit(2.5, "meters"),
  28921. weight: math.unit(300, "lb"),
  28922. name: "Back",
  28923. image: {
  28924. source: "./media/characters/lawrence/back.svg",
  28925. extra: 357 / 338,
  28926. bottom: 16 / 373
  28927. }
  28928. },
  28929. head: {
  28930. height: math.unit(0.9, "meter"),
  28931. name: "Head",
  28932. image: {
  28933. source: "./media/characters/lawrence/head.svg"
  28934. }
  28935. },
  28936. maw: {
  28937. height: math.unit(0.7, "meter"),
  28938. name: "Maw",
  28939. image: {
  28940. source: "./media/characters/lawrence/maw.svg"
  28941. }
  28942. },
  28943. footBottom: {
  28944. height: math.unit(0.5, "meter"),
  28945. name: "Foot (Bottom)",
  28946. image: {
  28947. source: "./media/characters/lawrence/foot-bottom.svg"
  28948. }
  28949. },
  28950. footTop: {
  28951. height: math.unit(0.5, "meter"),
  28952. name: "Foot (Top)",
  28953. image: {
  28954. source: "./media/characters/lawrence/foot-top.svg"
  28955. }
  28956. },
  28957. },
  28958. [
  28959. {
  28960. name: "Normal",
  28961. height: math.unit(2.5, "meters"),
  28962. default: true
  28963. },
  28964. {
  28965. name: "Macro",
  28966. height: math.unit(95, "meters")
  28967. },
  28968. {
  28969. name: "Megamacro",
  28970. height: math.unit(150, "km")
  28971. },
  28972. ]
  28973. ))
  28974. characterMakers.push(() => makeCharacter(
  28975. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28976. {
  28977. front: {
  28978. height: math.unit(4.2, "meters"),
  28979. name: "Front",
  28980. image: {
  28981. source: "./media/characters/sydney/front.svg",
  28982. extra: 1323 / 1277,
  28983. bottom: 111 / 1434
  28984. }
  28985. },
  28986. },
  28987. [
  28988. {
  28989. name: "Normal",
  28990. height: math.unit(4.2, "meters"),
  28991. default: true
  28992. },
  28993. ]
  28994. ))
  28995. characterMakers.push(() => makeCharacter(
  28996. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28997. {
  28998. back: {
  28999. height: math.unit(201, "feet"),
  29000. name: "Back",
  29001. image: {
  29002. source: "./media/characters/jessica/back.svg",
  29003. extra: 273 / 259,
  29004. bottom: 7 / 280
  29005. }
  29006. },
  29007. },
  29008. [
  29009. {
  29010. name: "Normal",
  29011. height: math.unit(201, "feet"),
  29012. default: true
  29013. },
  29014. {
  29015. name: "Megamacro",
  29016. height: math.unit(8, "miles")
  29017. },
  29018. ]
  29019. ))
  29020. characterMakers.push(() => makeCharacter(
  29021. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29022. {
  29023. side: {
  29024. height: math.unit(5.6, "m"),
  29025. weight: math.unit(8000, "kg"),
  29026. name: "Side",
  29027. image: {
  29028. source: "./media/characters/victoria/side.svg",
  29029. extra: 1542/1229,
  29030. bottom: 124/1666
  29031. }
  29032. },
  29033. maw: {
  29034. height: math.unit(7.14, "feet"),
  29035. name: "Maw",
  29036. image: {
  29037. source: "./media/characters/victoria/maw.svg"
  29038. }
  29039. },
  29040. },
  29041. [
  29042. {
  29043. name: "Normal",
  29044. height: math.unit(5.6, "m"),
  29045. default: true
  29046. },
  29047. ]
  29048. ))
  29049. characterMakers.push(() => makeCharacter(
  29050. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29051. {
  29052. front: {
  29053. height: math.unit(5 + 6 / 12, "feet"),
  29054. name: "Front",
  29055. image: {
  29056. source: "./media/characters/cat/front.svg",
  29057. extra: 1449/1295,
  29058. bottom: 34/1483
  29059. },
  29060. form: "cat",
  29061. default: true
  29062. },
  29063. back: {
  29064. height: math.unit(5 + 6 / 12, "feet"),
  29065. name: "Back",
  29066. image: {
  29067. source: "./media/characters/cat/back.svg",
  29068. extra: 1466/1301,
  29069. bottom: 19/1485
  29070. },
  29071. form: "cat"
  29072. },
  29073. taur: {
  29074. height: math.unit(7, "feet"),
  29075. name: "Taur",
  29076. image: {
  29077. source: "./media/characters/cat/taur.svg",
  29078. extra: 1389/1233,
  29079. bottom: 83/1472
  29080. },
  29081. form: "taur",
  29082. default: true
  29083. },
  29084. lucarioFront: {
  29085. height: math.unit(4, "feet"),
  29086. name: "Lucario (Front)",
  29087. image: {
  29088. source: "./media/characters/cat/lucario-front.svg",
  29089. extra: 1149/1019,
  29090. bottom: 84/1233
  29091. },
  29092. form: "lucario",
  29093. default: true
  29094. },
  29095. lucarioBack: {
  29096. height: math.unit(4, "feet"),
  29097. name: "Lucario (Back)",
  29098. image: {
  29099. source: "./media/characters/cat/lucario-back.svg",
  29100. extra: 1190/1059,
  29101. bottom: 33/1223
  29102. },
  29103. form: "lucario"
  29104. },
  29105. megaLucario: {
  29106. height: math.unit(4, "feet"),
  29107. name: "Mega Lucario",
  29108. image: {
  29109. source: "./media/characters/cat/mega-lucario.svg",
  29110. extra: 1515 / 1319,
  29111. bottom: 63 / 1578
  29112. },
  29113. form: "lucario"
  29114. },
  29115. nickit: {
  29116. height: math.unit(2, "feet"),
  29117. name: "Nickit",
  29118. image: {
  29119. source: "./media/characters/cat/nickit.svg",
  29120. extra: 1980 / 1585,
  29121. bottom: 102 / 2082
  29122. },
  29123. form: "nickit",
  29124. default: true
  29125. },
  29126. lopunnyFront: {
  29127. height: math.unit(5, "feet"),
  29128. name: "Lopunny (Front)",
  29129. image: {
  29130. source: "./media/characters/cat/lopunny-front.svg",
  29131. extra: 1782 / 1469,
  29132. bottom: 38 / 1820
  29133. },
  29134. form: "lopunny",
  29135. default: true
  29136. },
  29137. lopunnyBack: {
  29138. height: math.unit(5, "feet"),
  29139. name: "Lopunny (Back)",
  29140. image: {
  29141. source: "./media/characters/cat/lopunny-back.svg",
  29142. extra: 1660 / 1490,
  29143. bottom: 25 / 1685
  29144. },
  29145. form: "lopunny"
  29146. },
  29147. },
  29148. [
  29149. {
  29150. name: "Really small",
  29151. height: math.unit(1, "nm")
  29152. },
  29153. {
  29154. name: "Micro",
  29155. height: math.unit(5, "inches")
  29156. },
  29157. {
  29158. name: "Normal",
  29159. height: math.unit(5 + 6 / 12, "feet"),
  29160. default: true
  29161. },
  29162. {
  29163. name: "Macro",
  29164. height: math.unit(50, "feet")
  29165. },
  29166. {
  29167. name: "Macro+",
  29168. height: math.unit(150, "feet")
  29169. },
  29170. {
  29171. name: "Megamacro",
  29172. height: math.unit(100, "miles")
  29173. },
  29174. ]
  29175. ))
  29176. characterMakers.push(() => makeCharacter(
  29177. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29178. {
  29179. front: {
  29180. height: math.unit(63.4, "meters"),
  29181. weight: math.unit(3.28349e+6, "kilograms"),
  29182. name: "Front",
  29183. image: {
  29184. source: "./media/characters/kirina-violet/front.svg",
  29185. extra: 2812 / 2725,
  29186. bottom: 0 / 2812
  29187. }
  29188. },
  29189. back: {
  29190. height: math.unit(63.4, "meters"),
  29191. weight: math.unit(3.28349e+6, "kilograms"),
  29192. name: "Back",
  29193. image: {
  29194. source: "./media/characters/kirina-violet/back.svg",
  29195. extra: 2812 / 2725,
  29196. bottom: 0 / 2812
  29197. }
  29198. },
  29199. mouth: {
  29200. height: math.unit(4.35, "meters"),
  29201. name: "Mouth",
  29202. image: {
  29203. source: "./media/characters/kirina-violet/mouth.svg"
  29204. }
  29205. },
  29206. paw: {
  29207. height: math.unit(5.6, "meters"),
  29208. name: "Paw",
  29209. image: {
  29210. source: "./media/characters/kirina-violet/paw.svg"
  29211. }
  29212. },
  29213. tail: {
  29214. height: math.unit(18, "meters"),
  29215. name: "Tail",
  29216. image: {
  29217. source: "./media/characters/kirina-violet/tail.svg"
  29218. }
  29219. },
  29220. },
  29221. [
  29222. {
  29223. name: "Macro",
  29224. height: math.unit(63.4, "meters"),
  29225. default: true
  29226. },
  29227. ]
  29228. ))
  29229. characterMakers.push(() => makeCharacter(
  29230. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29231. {
  29232. front: {
  29233. height: math.unit(75, "feet"),
  29234. name: "Front",
  29235. image: {
  29236. source: "./media/characters/cat-gigachu/front.svg",
  29237. extra: 1239/1027,
  29238. bottom: 32/1271
  29239. }
  29240. },
  29241. back: {
  29242. height: math.unit(75, "feet"),
  29243. name: "Back",
  29244. image: {
  29245. source: "./media/characters/cat-gigachu/back.svg",
  29246. extra: 1229/1030,
  29247. bottom: 9/1238
  29248. }
  29249. },
  29250. },
  29251. [
  29252. {
  29253. name: "Dynamax",
  29254. height: math.unit(75, "feet"),
  29255. default: true
  29256. },
  29257. ]
  29258. ))
  29259. characterMakers.push(() => makeCharacter(
  29260. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29261. {
  29262. front: {
  29263. height: math.unit(6, "feet"),
  29264. weight: math.unit(150, "lb"),
  29265. name: "Front",
  29266. image: {
  29267. source: "./media/characters/sfaiyan/front.svg",
  29268. extra: 999 / 978,
  29269. bottom: 5 / 1004
  29270. }
  29271. },
  29272. },
  29273. [
  29274. {
  29275. name: "Normal",
  29276. height: math.unit(1.82, "meters")
  29277. },
  29278. {
  29279. name: "Giant",
  29280. height: math.unit(2.27, "km"),
  29281. default: true
  29282. },
  29283. ]
  29284. ))
  29285. characterMakers.push(() => makeCharacter(
  29286. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29287. {
  29288. front: {
  29289. height: math.unit(179, "cm"),
  29290. weight: math.unit(100, "kg"),
  29291. name: "Front",
  29292. image: {
  29293. source: "./media/characters/raunehkeli/front.svg",
  29294. extra: 1934 / 1926,
  29295. bottom: 0 / 1934
  29296. }
  29297. },
  29298. },
  29299. [
  29300. {
  29301. name: "Normal",
  29302. height: math.unit(179, "cm")
  29303. },
  29304. {
  29305. name: "Maximum",
  29306. height: math.unit(575, "meters"),
  29307. default: true
  29308. },
  29309. ]
  29310. ))
  29311. characterMakers.push(() => makeCharacter(
  29312. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29313. {
  29314. front: {
  29315. height: math.unit(6, "feet"),
  29316. weight: math.unit(150, "lb"),
  29317. name: "Front",
  29318. image: {
  29319. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29320. extra: 2625 / 2518,
  29321. bottom: 60 / 2685
  29322. }
  29323. },
  29324. },
  29325. [
  29326. {
  29327. name: "Normal",
  29328. height: math.unit(6 + 2 / 12, "feet")
  29329. },
  29330. {
  29331. name: "Macro",
  29332. height: math.unit(1180, "feet"),
  29333. default: true
  29334. },
  29335. ]
  29336. ))
  29337. characterMakers.push(() => makeCharacter(
  29338. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29339. {
  29340. front: {
  29341. height: math.unit(5 + 6 / 12, "feet"),
  29342. weight: math.unit(108, "lb"),
  29343. name: "Front",
  29344. image: {
  29345. source: "./media/characters/lilith-zott/front.svg",
  29346. extra: 2510 / 2238,
  29347. bottom: 100 / 2610
  29348. }
  29349. },
  29350. frontDressed: {
  29351. height: math.unit(5 + 6 / 12, "feet"),
  29352. weight: math.unit(108, "lb"),
  29353. name: "Front (Dressed)",
  29354. image: {
  29355. source: "./media/characters/lilith-zott/front-dressed.svg",
  29356. extra: 2510 / 2238,
  29357. bottom: 100 / 2610
  29358. }
  29359. },
  29360. },
  29361. [
  29362. {
  29363. name: "Normal",
  29364. height: math.unit(5 + 6 / 12, "feet")
  29365. },
  29366. {
  29367. name: "Macro",
  29368. height: math.unit(1030, "feet"),
  29369. default: true
  29370. },
  29371. ]
  29372. ))
  29373. characterMakers.push(() => makeCharacter(
  29374. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29375. {
  29376. front: {
  29377. height: math.unit(6, "feet"),
  29378. weight: math.unit(150, "lb"),
  29379. name: "Front",
  29380. image: {
  29381. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29382. extra: 2567 / 2435,
  29383. bottom: 39 / 2606
  29384. }
  29385. },
  29386. frontSuper: {
  29387. height: math.unit(6, "feet"),
  29388. name: "Front (Super)",
  29389. image: {
  29390. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29391. extra: 2567 / 2435,
  29392. bottom: 39 / 2606
  29393. }
  29394. },
  29395. },
  29396. [
  29397. {
  29398. name: "Normal",
  29399. height: math.unit(5 + 10 / 12, "feet")
  29400. },
  29401. {
  29402. name: "Macro",
  29403. height: math.unit(1100, "feet"),
  29404. default: true
  29405. },
  29406. ]
  29407. ))
  29408. characterMakers.push(() => makeCharacter(
  29409. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29410. {
  29411. front: {
  29412. height: math.unit(100, "miles"),
  29413. name: "Front",
  29414. image: {
  29415. source: "./media/characters/sona/front.svg",
  29416. extra: 2433 / 2201,
  29417. bottom: 53 / 2486
  29418. }
  29419. },
  29420. foot: {
  29421. height: math.unit(16.1, "miles"),
  29422. name: "Foot",
  29423. image: {
  29424. source: "./media/characters/sona/foot.svg"
  29425. }
  29426. },
  29427. },
  29428. [
  29429. {
  29430. name: "Macro",
  29431. height: math.unit(100, "miles"),
  29432. default: true
  29433. },
  29434. ]
  29435. ))
  29436. characterMakers.push(() => makeCharacter(
  29437. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29438. {
  29439. front: {
  29440. height: math.unit(6, "feet"),
  29441. weight: math.unit(150, "lb"),
  29442. name: "Front",
  29443. image: {
  29444. source: "./media/characters/bailey/front.svg",
  29445. extra: 1778 / 1724,
  29446. bottom: 30 / 1808
  29447. }
  29448. },
  29449. },
  29450. [
  29451. {
  29452. name: "Micro",
  29453. height: math.unit(4, "inches")
  29454. },
  29455. {
  29456. name: "Normal",
  29457. height: math.unit(5 + 5 / 12, "feet"),
  29458. default: true
  29459. },
  29460. {
  29461. name: "Macro",
  29462. height: math.unit(250, "feet")
  29463. },
  29464. {
  29465. name: "Megamacro",
  29466. height: math.unit(100, "miles")
  29467. },
  29468. ]
  29469. ))
  29470. characterMakers.push(() => makeCharacter(
  29471. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29472. {
  29473. front: {
  29474. height: math.unit(5 + 2 / 12, "feet"),
  29475. weight: math.unit(120, "lb"),
  29476. name: "Front",
  29477. image: {
  29478. source: "./media/characters/snaps/front.svg",
  29479. extra: 2370 / 2177,
  29480. bottom: 48 / 2418
  29481. }
  29482. },
  29483. back: {
  29484. height: math.unit(5 + 2 / 12, "feet"),
  29485. weight: math.unit(120, "lb"),
  29486. name: "Back",
  29487. image: {
  29488. source: "./media/characters/snaps/back.svg",
  29489. extra: 2408 / 2258,
  29490. bottom: 15 / 2423
  29491. }
  29492. },
  29493. },
  29494. [
  29495. {
  29496. name: "Micro",
  29497. height: math.unit(9, "inches")
  29498. },
  29499. {
  29500. name: "Normal",
  29501. height: math.unit(5 + 2 / 12, "feet"),
  29502. default: true
  29503. },
  29504. {
  29505. name: "Mini Macro",
  29506. height: math.unit(10, "feet")
  29507. },
  29508. ]
  29509. ))
  29510. characterMakers.push(() => makeCharacter(
  29511. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29512. {
  29513. front: {
  29514. height: math.unit(1.8, "meters"),
  29515. weight: math.unit(85, "kg"),
  29516. name: "Front",
  29517. image: {
  29518. source: "./media/characters/azteck/front.svg",
  29519. extra: 2815 / 2625,
  29520. bottom: 89 / 2904
  29521. }
  29522. },
  29523. back: {
  29524. height: math.unit(1.8, "meters"),
  29525. weight: math.unit(85, "kg"),
  29526. name: "Back",
  29527. image: {
  29528. source: "./media/characters/azteck/back.svg",
  29529. extra: 2856 / 2648,
  29530. bottom: 85 / 2941
  29531. }
  29532. },
  29533. frontDressed: {
  29534. height: math.unit(1.8, "meters"),
  29535. weight: math.unit(85, "kg"),
  29536. name: "Front (Dressed)",
  29537. image: {
  29538. source: "./media/characters/azteck/front-dressed.svg",
  29539. extra: 2147 / 2003,
  29540. bottom: 68 / 2215
  29541. }
  29542. },
  29543. head: {
  29544. height: math.unit(0.47, "meters"),
  29545. weight: math.unit(85, "kg"),
  29546. name: "Head",
  29547. image: {
  29548. source: "./media/characters/azteck/head.svg"
  29549. }
  29550. },
  29551. },
  29552. [
  29553. {
  29554. name: "Bite sized",
  29555. height: math.unit(16, "cm")
  29556. },
  29557. {
  29558. name: "Normal",
  29559. height: math.unit(1.8, "meters"),
  29560. default: true
  29561. },
  29562. ]
  29563. ))
  29564. characterMakers.push(() => makeCharacter(
  29565. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29566. {
  29567. front: {
  29568. height: math.unit(6, "feet"),
  29569. weight: math.unit(150, "lb"),
  29570. name: "Front",
  29571. image: {
  29572. source: "./media/characters/pidge/front.svg",
  29573. extra: 620 / 588,
  29574. bottom: 9 / 629
  29575. }
  29576. },
  29577. back: {
  29578. height: math.unit(6, "feet"),
  29579. weight: math.unit(150, "lb"),
  29580. name: "Back",
  29581. image: {
  29582. source: "./media/characters/pidge/back.svg",
  29583. extra: 620 / 588,
  29584. bottom: 9 / 629
  29585. }
  29586. },
  29587. },
  29588. [
  29589. {
  29590. name: "Macro",
  29591. height: math.unit(1, "mile"),
  29592. default: true
  29593. },
  29594. ]
  29595. ))
  29596. characterMakers.push(() => makeCharacter(
  29597. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29598. {
  29599. front: {
  29600. height: math.unit(6, "feet"),
  29601. weight: math.unit(150, "lb"),
  29602. name: "Front",
  29603. image: {
  29604. source: "./media/characters/en/front.svg",
  29605. extra: 1697 / 1563,
  29606. bottom: 103 / 1800
  29607. }
  29608. },
  29609. back: {
  29610. height: math.unit(6, "feet"),
  29611. weight: math.unit(150, "lb"),
  29612. name: "Back",
  29613. image: {
  29614. source: "./media/characters/en/back.svg",
  29615. extra: 1700 / 1570,
  29616. bottom: 51 / 1751
  29617. }
  29618. },
  29619. frontDressed: {
  29620. height: math.unit(6, "feet"),
  29621. weight: math.unit(150, "lb"),
  29622. name: "Front (Dressed)",
  29623. image: {
  29624. source: "./media/characters/en/front-dressed.svg",
  29625. extra: 1697 / 1563,
  29626. bottom: 103 / 1800
  29627. }
  29628. },
  29629. backDressed: {
  29630. height: math.unit(6, "feet"),
  29631. weight: math.unit(150, "lb"),
  29632. name: "Back (Dressed)",
  29633. image: {
  29634. source: "./media/characters/en/back-dressed.svg",
  29635. extra: 1700 / 1570,
  29636. bottom: 51 / 1751
  29637. }
  29638. },
  29639. },
  29640. [
  29641. {
  29642. name: "Macro",
  29643. height: math.unit(210, "feet"),
  29644. default: true
  29645. },
  29646. ]
  29647. ))
  29648. characterMakers.push(() => makeCharacter(
  29649. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29650. {
  29651. front: {
  29652. height: math.unit(6, "feet"),
  29653. weight: math.unit(150, "lb"),
  29654. name: "Front",
  29655. image: {
  29656. source: "./media/characters/haze-orris/front.svg",
  29657. extra: 3975 / 3525,
  29658. bottom: 137 / 4112
  29659. }
  29660. },
  29661. },
  29662. [
  29663. {
  29664. name: "Micro",
  29665. height: math.unit(150, "mm"),
  29666. default: true
  29667. },
  29668. ]
  29669. ))
  29670. characterMakers.push(() => makeCharacter(
  29671. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29672. {
  29673. front: {
  29674. height: math.unit(6, "feet"),
  29675. weight: math.unit(150, "lb"),
  29676. name: "Front",
  29677. image: {
  29678. source: "./media/characters/casselene-yaro/front.svg",
  29679. extra: 4721 / 4541,
  29680. bottom: 82 / 4803
  29681. }
  29682. },
  29683. back: {
  29684. height: math.unit(6, "feet"),
  29685. weight: math.unit(150, "lb"),
  29686. name: "Back",
  29687. image: {
  29688. source: "./media/characters/casselene-yaro/back.svg",
  29689. extra: 4569 / 4377,
  29690. bottom: 69 / 4638
  29691. }
  29692. },
  29693. frontDressed: {
  29694. height: math.unit(6, "feet"),
  29695. weight: math.unit(150, "lb"),
  29696. name: "Front-dressed",
  29697. image: {
  29698. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29699. extra: 4721 / 4541,
  29700. bottom: 82 / 4803
  29701. }
  29702. },
  29703. },
  29704. [
  29705. {
  29706. name: "Macro",
  29707. height: math.unit(190, "feet"),
  29708. default: true
  29709. },
  29710. ]
  29711. ))
  29712. characterMakers.push(() => makeCharacter(
  29713. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29714. {
  29715. front: {
  29716. height: math.unit(6, "feet"),
  29717. weight: math.unit(150, "lb"),
  29718. name: "Front",
  29719. image: {
  29720. source: "./media/characters/myra-rue-delore/front.svg",
  29721. extra: 1340 / 1308,
  29722. bottom: 67 / 1407
  29723. }
  29724. },
  29725. back: {
  29726. height: math.unit(6, "feet"),
  29727. weight: math.unit(150, "lb"),
  29728. name: "Back",
  29729. image: {
  29730. source: "./media/characters/myra-rue-delore/back.svg",
  29731. extra: 1341 / 1310,
  29732. bottom: 40 / 1381
  29733. }
  29734. },
  29735. frontDressed: {
  29736. height: math.unit(6, "feet"),
  29737. weight: math.unit(150, "lb"),
  29738. name: "Front (Dressed)",
  29739. image: {
  29740. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29741. extra: 1340 / 1308,
  29742. bottom: 67 / 1407
  29743. }
  29744. },
  29745. },
  29746. [
  29747. {
  29748. name: "Macro",
  29749. height: math.unit(150, "feet"),
  29750. default: true
  29751. },
  29752. ]
  29753. ))
  29754. characterMakers.push(() => makeCharacter(
  29755. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29756. {
  29757. front: {
  29758. height: math.unit(10, "feet"),
  29759. weight: math.unit(15015, "lb"),
  29760. name: "Front",
  29761. image: {
  29762. source: "./media/characters/fem!plat/front.svg",
  29763. extra: 2799 / 2604,
  29764. bottom: 149 / 2948
  29765. }
  29766. },
  29767. },
  29768. [
  29769. {
  29770. name: "Normal",
  29771. height: math.unit(10, "feet"),
  29772. default: true
  29773. },
  29774. {
  29775. name: "Macro",
  29776. height: math.unit(100, "feet")
  29777. },
  29778. {
  29779. name: "Megamacro",
  29780. height: math.unit(1000, "feet")
  29781. },
  29782. ]
  29783. ))
  29784. characterMakers.push(() => makeCharacter(
  29785. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29786. {
  29787. front: {
  29788. height: math.unit(15 + 5 / 12, "feet"),
  29789. weight: math.unit(4600, "lb"),
  29790. name: "Front",
  29791. image: {
  29792. source: "./media/characters/neapolitan-ananassa/front.svg",
  29793. extra: 2903 / 2736,
  29794. bottom: 0 / 2903
  29795. }
  29796. },
  29797. side: {
  29798. height: math.unit(15 + 5 / 12, "feet"),
  29799. weight: math.unit(4600, "lb"),
  29800. name: "Side",
  29801. image: {
  29802. source: "./media/characters/neapolitan-ananassa/side.svg",
  29803. extra: 2925 / 2719,
  29804. bottom: 0 / 2925
  29805. }
  29806. },
  29807. back: {
  29808. height: math.unit(15 + 5 / 12, "feet"),
  29809. weight: math.unit(4600, "lb"),
  29810. name: "Back",
  29811. image: {
  29812. source: "./media/characters/neapolitan-ananassa/back.svg",
  29813. extra: 2903 / 2736,
  29814. bottom: 0 / 2903
  29815. }
  29816. },
  29817. },
  29818. [
  29819. {
  29820. name: "Normal",
  29821. height: math.unit(15 + 5 / 12, "feet"),
  29822. default: true
  29823. },
  29824. {
  29825. name: "Post-Millenium",
  29826. height: math.unit(35 + 5 / 12, "feet")
  29827. },
  29828. {
  29829. name: "Post-Era",
  29830. height: math.unit(450 + 5 / 12, "feet")
  29831. },
  29832. ]
  29833. ))
  29834. characterMakers.push(() => makeCharacter(
  29835. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29836. {
  29837. front: {
  29838. height: math.unit(300, "meters"),
  29839. weight: math.unit(125000, "tonnes"),
  29840. name: "Front",
  29841. image: {
  29842. source: "./media/characters/pazuzu/front.svg",
  29843. extra: 877 / 794,
  29844. bottom: 47 / 924
  29845. }
  29846. },
  29847. },
  29848. [
  29849. {
  29850. name: "Macro",
  29851. height: math.unit(300, "meters"),
  29852. default: true
  29853. },
  29854. ]
  29855. ))
  29856. characterMakers.push(() => makeCharacter(
  29857. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29858. {
  29859. side: {
  29860. height: math.unit(10 + 7 / 12, "feet"),
  29861. weight: math.unit(2.5, "tons"),
  29862. name: "Side",
  29863. image: {
  29864. source: "./media/characters/aasha/side.svg",
  29865. extra: 1345 / 1245,
  29866. bottom: 111 / 1456
  29867. }
  29868. },
  29869. back: {
  29870. height: math.unit(10 + 7 / 12, "feet"),
  29871. weight: math.unit(2.5, "tons"),
  29872. name: "Back",
  29873. image: {
  29874. source: "./media/characters/aasha/back.svg",
  29875. extra: 1133 / 1057,
  29876. bottom: 257 / 1390
  29877. }
  29878. },
  29879. },
  29880. [
  29881. {
  29882. name: "Normal",
  29883. height: math.unit(10 + 7 / 12, "feet"),
  29884. default: true
  29885. },
  29886. ]
  29887. ))
  29888. characterMakers.push(() => makeCharacter(
  29889. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29890. {
  29891. front: {
  29892. height: math.unit(6 + 3 / 12, "feet"),
  29893. name: "Front",
  29894. image: {
  29895. source: "./media/characters/nevan/front.svg",
  29896. extra: 704 / 704,
  29897. bottom: 28 / 732
  29898. }
  29899. },
  29900. back: {
  29901. height: math.unit(6 + 3 / 12, "feet"),
  29902. name: "Back",
  29903. image: {
  29904. source: "./media/characters/nevan/back.svg",
  29905. extra: 714 / 714,
  29906. bottom: 21 / 735
  29907. }
  29908. },
  29909. frontFlaccid: {
  29910. height: math.unit(6 + 3 / 12, "feet"),
  29911. name: "Front (Flaccid)",
  29912. image: {
  29913. source: "./media/characters/nevan/front-flaccid.svg",
  29914. extra: 704 / 704,
  29915. bottom: 28 / 732
  29916. }
  29917. },
  29918. frontErect: {
  29919. height: math.unit(6 + 3 / 12, "feet"),
  29920. name: "Front (Erect)",
  29921. image: {
  29922. source: "./media/characters/nevan/front-erect.svg",
  29923. extra: 704 / 704,
  29924. bottom: 28 / 732
  29925. }
  29926. },
  29927. backFlaccid: {
  29928. height: math.unit(6 + 3 / 12, "feet"),
  29929. name: "Back (Flaccid)",
  29930. image: {
  29931. source: "./media/characters/nevan/back-flaccid.svg",
  29932. extra: 714 / 714,
  29933. bottom: 21 / 735
  29934. }
  29935. },
  29936. },
  29937. [
  29938. {
  29939. name: "Normal",
  29940. height: math.unit(6 + 3 / 12, "feet"),
  29941. default: true
  29942. },
  29943. ]
  29944. ))
  29945. characterMakers.push(() => makeCharacter(
  29946. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29947. {
  29948. front: {
  29949. height: math.unit(4, "feet"),
  29950. name: "Front",
  29951. image: {
  29952. source: "./media/characters/arhan/front.svg",
  29953. extra: 3368 / 3133,
  29954. bottom: 0 / 3368
  29955. }
  29956. },
  29957. side: {
  29958. height: math.unit(4, "feet"),
  29959. name: "Side",
  29960. image: {
  29961. source: "./media/characters/arhan/side.svg",
  29962. extra: 3347 / 3105,
  29963. bottom: 0 / 3347
  29964. }
  29965. },
  29966. tongue: {
  29967. height: math.unit(1.42, "feet"),
  29968. name: "Tongue",
  29969. image: {
  29970. source: "./media/characters/arhan/tongue.svg"
  29971. }
  29972. },
  29973. head: {
  29974. height: math.unit(0.85, "feet"),
  29975. name: "Head",
  29976. image: {
  29977. source: "./media/characters/arhan/head.svg"
  29978. }
  29979. },
  29980. },
  29981. [
  29982. {
  29983. name: "Normal",
  29984. height: math.unit(4, "feet"),
  29985. default: true
  29986. },
  29987. ]
  29988. ))
  29989. characterMakers.push(() => makeCharacter(
  29990. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29991. {
  29992. front: {
  29993. height: math.unit(5 + 7.5 / 12, "feet"),
  29994. weight: math.unit(120, "lb"),
  29995. name: "Front",
  29996. image: {
  29997. source: "./media/characters/digi-duncan/front.svg",
  29998. extra: 330 / 326,
  29999. bottom: 16 / 346
  30000. }
  30001. },
  30002. side: {
  30003. height: math.unit(5 + 7.5 / 12, "feet"),
  30004. weight: math.unit(120, "lb"),
  30005. name: "Side",
  30006. image: {
  30007. source: "./media/characters/digi-duncan/side.svg",
  30008. extra: 341 / 337,
  30009. bottom: 1 / 342
  30010. }
  30011. },
  30012. back: {
  30013. height: math.unit(5 + 7.5 / 12, "feet"),
  30014. weight: math.unit(120, "lb"),
  30015. name: "Back",
  30016. image: {
  30017. source: "./media/characters/digi-duncan/back.svg",
  30018. extra: 330 / 326,
  30019. bottom: 12 / 342
  30020. }
  30021. },
  30022. },
  30023. [
  30024. {
  30025. name: "Speck",
  30026. height: math.unit(0.25, "mm")
  30027. },
  30028. {
  30029. name: "Micro",
  30030. height: math.unit(5, "mm")
  30031. },
  30032. {
  30033. name: "Tiny",
  30034. height: math.unit(0.5, "inches"),
  30035. default: true
  30036. },
  30037. {
  30038. name: "Human",
  30039. height: math.unit(5 + 7.5 / 12, "feet")
  30040. },
  30041. {
  30042. name: "Minigiant",
  30043. height: math.unit(8 + 5.25, "feet")
  30044. },
  30045. {
  30046. name: "Giant",
  30047. height: math.unit(2000, "feet")
  30048. },
  30049. {
  30050. name: "Mega",
  30051. height: math.unit(371.1, "miles")
  30052. },
  30053. ]
  30054. ))
  30055. characterMakers.push(() => makeCharacter(
  30056. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30057. {
  30058. front: {
  30059. height: math.unit(2, "meters"),
  30060. weight: math.unit(350, "kg"),
  30061. name: "Front",
  30062. image: {
  30063. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30064. extra: 898 / 838,
  30065. bottom: 9 / 907
  30066. }
  30067. },
  30068. },
  30069. [
  30070. {
  30071. name: "Micro",
  30072. height: math.unit(8, "meters")
  30073. },
  30074. {
  30075. name: "Normal",
  30076. height: math.unit(50, "meters"),
  30077. default: true
  30078. },
  30079. {
  30080. name: "Macro",
  30081. height: math.unit(500, "meters")
  30082. },
  30083. ]
  30084. ))
  30085. characterMakers.push(() => makeCharacter(
  30086. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30087. {
  30088. front: {
  30089. height: math.unit(6 + 6 / 12, "feet"),
  30090. name: "Front",
  30091. image: {
  30092. source: "./media/characters/khardesh/front.svg",
  30093. extra: 1788/1596,
  30094. bottom: 66/1854
  30095. }
  30096. },
  30097. back: {
  30098. height: math.unit(6 + 6 / 12, "feet"),
  30099. name: "Back",
  30100. image: {
  30101. source: "./media/characters/khardesh/back.svg",
  30102. extra: 1781/1584,
  30103. bottom: 68/1849
  30104. }
  30105. },
  30106. },
  30107. [
  30108. {
  30109. name: "Normal",
  30110. height: math.unit(6 + 6 / 12, "feet"),
  30111. default: true
  30112. },
  30113. {
  30114. name: "Normal+",
  30115. height: math.unit(4, "meters")
  30116. },
  30117. {
  30118. name: "Macro",
  30119. height: math.unit(50, "meters")
  30120. },
  30121. {
  30122. name: "Macro+",
  30123. height: math.unit(100, "meters")
  30124. },
  30125. {
  30126. name: "Megamacro",
  30127. height: math.unit(20, "km")
  30128. },
  30129. ]
  30130. ))
  30131. characterMakers.push(() => makeCharacter(
  30132. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30133. {
  30134. front: {
  30135. height: math.unit(6, "feet"),
  30136. weight: math.unit(150, "lb"),
  30137. name: "Front",
  30138. image: {
  30139. source: "./media/characters/kosho/front.svg",
  30140. extra: 1847 / 1847,
  30141. bottom: 86 / 1933
  30142. }
  30143. },
  30144. },
  30145. [
  30146. {
  30147. name: "Second-stage micro",
  30148. height: math.unit(0.5, "inches")
  30149. },
  30150. {
  30151. name: "First-stage micro",
  30152. height: math.unit(6, "inches")
  30153. },
  30154. {
  30155. name: "Normal",
  30156. height: math.unit(6, "feet"),
  30157. default: true
  30158. },
  30159. {
  30160. name: "First-stage macro",
  30161. height: math.unit(72, "feet")
  30162. },
  30163. {
  30164. name: "Second-stage macro",
  30165. height: math.unit(864, "feet")
  30166. },
  30167. ]
  30168. ))
  30169. characterMakers.push(() => makeCharacter(
  30170. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30171. {
  30172. normal: {
  30173. height: math.unit(4 + 6 / 12, "feet"),
  30174. name: "Normal",
  30175. image: {
  30176. source: "./media/characters/hydra/normal.svg",
  30177. extra: 2833 / 2634,
  30178. bottom: 68 / 2901
  30179. }
  30180. },
  30181. smol: {
  30182. height: math.unit(0.705, "inches"),
  30183. name: "Smol",
  30184. image: {
  30185. source: "./media/characters/hydra/smol.svg",
  30186. extra: 2715 / 2540,
  30187. bottom: 0 / 2715
  30188. }
  30189. },
  30190. },
  30191. [
  30192. {
  30193. name: "Normal",
  30194. height: math.unit(4 + 6 / 12, "feet"),
  30195. default: true
  30196. }
  30197. ]
  30198. ))
  30199. characterMakers.push(() => makeCharacter(
  30200. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30201. {
  30202. front: {
  30203. height: math.unit(0.6, "cm"),
  30204. name: "Front",
  30205. image: {
  30206. source: "./media/characters/daz/front.svg",
  30207. extra: 1682 / 1164,
  30208. bottom: 42 / 1724
  30209. }
  30210. },
  30211. },
  30212. [
  30213. {
  30214. name: "Normal",
  30215. height: math.unit(0.6, "cm"),
  30216. default: true
  30217. },
  30218. ]
  30219. ))
  30220. characterMakers.push(() => makeCharacter(
  30221. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30222. {
  30223. front: {
  30224. height: math.unit(6, "feet"),
  30225. weight: math.unit(235, "lb"),
  30226. name: "Front",
  30227. image: {
  30228. source: "./media/characters/theo-pangolin/front.svg",
  30229. extra: 1996 / 1969,
  30230. bottom: 115 / 2111
  30231. }
  30232. },
  30233. back: {
  30234. height: math.unit(6, "feet"),
  30235. weight: math.unit(235, "lb"),
  30236. name: "Back",
  30237. image: {
  30238. source: "./media/characters/theo-pangolin/back.svg",
  30239. extra: 1979 / 1979,
  30240. bottom: 40 / 2019
  30241. }
  30242. },
  30243. feral: {
  30244. height: math.unit(2, "feet"),
  30245. weight: math.unit(30, "lb"),
  30246. name: "Feral",
  30247. image: {
  30248. source: "./media/characters/theo-pangolin/feral.svg",
  30249. extra: 803 / 791,
  30250. bottom: 181 / 984
  30251. }
  30252. },
  30253. footFive: {
  30254. height: math.unit(1.43, "feet"),
  30255. name: "Foot (Five Toes)",
  30256. image: {
  30257. source: "./media/characters/theo-pangolin/foot-five.svg"
  30258. }
  30259. },
  30260. footFour: {
  30261. height: math.unit(1.43, "feet"),
  30262. name: "Foot (Four Toes)",
  30263. image: {
  30264. source: "./media/characters/theo-pangolin/foot-four.svg"
  30265. }
  30266. },
  30267. handFour: {
  30268. height: math.unit(0.81, "feet"),
  30269. name: "Hand (Four Fingers)",
  30270. image: {
  30271. source: "./media/characters/theo-pangolin/hand-four.svg"
  30272. }
  30273. },
  30274. handThree: {
  30275. height: math.unit(0.81, "feet"),
  30276. name: "Hand (Three Fingers)",
  30277. image: {
  30278. source: "./media/characters/theo-pangolin/hand-three.svg"
  30279. }
  30280. },
  30281. headFront: {
  30282. height: math.unit(1.37, "feet"),
  30283. name: "Head (Front)",
  30284. image: {
  30285. source: "./media/characters/theo-pangolin/head-front.svg"
  30286. }
  30287. },
  30288. headSide: {
  30289. height: math.unit(1.43, "feet"),
  30290. name: "Head (Side)",
  30291. image: {
  30292. source: "./media/characters/theo-pangolin/head-side.svg"
  30293. }
  30294. },
  30295. tongue: {
  30296. height: math.unit(2.29, "feet"),
  30297. name: "Tongue",
  30298. image: {
  30299. source: "./media/characters/theo-pangolin/tongue.svg"
  30300. }
  30301. },
  30302. },
  30303. [
  30304. {
  30305. name: "Normal",
  30306. height: math.unit(6, "feet")
  30307. },
  30308. {
  30309. name: "Macro",
  30310. height: math.unit(400, "feet"),
  30311. default: true
  30312. },
  30313. ]
  30314. ))
  30315. characterMakers.push(() => makeCharacter(
  30316. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30317. {
  30318. front: {
  30319. height: math.unit(6, "inches"),
  30320. weight: math.unit(0.036, "kg"),
  30321. name: "Front",
  30322. image: {
  30323. source: "./media/characters/renée/front.svg",
  30324. extra: 900 / 886,
  30325. bottom: 8 / 908
  30326. }
  30327. },
  30328. },
  30329. [
  30330. {
  30331. name: "Nano",
  30332. height: math.unit(1, "nm")
  30333. },
  30334. {
  30335. name: "Micro",
  30336. height: math.unit(1, "mm")
  30337. },
  30338. {
  30339. name: "Normal",
  30340. height: math.unit(6, "inches")
  30341. },
  30342. {
  30343. name: "Macro",
  30344. height: math.unit(2000, "feet"),
  30345. default: true
  30346. },
  30347. {
  30348. name: "Megamacro",
  30349. height: math.unit(2, "km")
  30350. },
  30351. {
  30352. name: "Gigamacro",
  30353. height: math.unit(2000, "km")
  30354. },
  30355. {
  30356. name: "Teramacro",
  30357. height: math.unit(250000, "km")
  30358. },
  30359. ]
  30360. ))
  30361. characterMakers.push(() => makeCharacter(
  30362. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30363. {
  30364. front: {
  30365. height: math.unit(4, "meters"),
  30366. weight: math.unit(150, "kg"),
  30367. name: "Front",
  30368. image: {
  30369. source: "./media/characters/caledvwlch/front.svg",
  30370. extra: 1760 / 1551,
  30371. bottom: 28 / 1788
  30372. }
  30373. },
  30374. side: {
  30375. height: math.unit(4, "meters"),
  30376. weight: math.unit(150, "kg"),
  30377. name: "Side",
  30378. image: {
  30379. source: "./media/characters/caledvwlch/side.svg",
  30380. extra: 1605 / 1536,
  30381. bottom: 31 / 1636
  30382. }
  30383. },
  30384. back: {
  30385. height: math.unit(4, "meters"),
  30386. weight: math.unit(150, "kg"),
  30387. name: "Back",
  30388. image: {
  30389. source: "./media/characters/caledvwlch/back.svg",
  30390. extra: 1635 / 1565,
  30391. bottom: 27 / 1662
  30392. }
  30393. },
  30394. },
  30395. [
  30396. {
  30397. name: "\"Incognito\"",
  30398. height: math.unit(4, "meters")
  30399. },
  30400. {
  30401. name: "Small rampage",
  30402. height: math.unit(600, "meters")
  30403. },
  30404. {
  30405. name: "Mega",
  30406. height: math.unit(30, "km")
  30407. },
  30408. {
  30409. name: "Home-size",
  30410. height: math.unit(50, "km"),
  30411. default: true
  30412. },
  30413. {
  30414. name: "Giga",
  30415. height: math.unit(300, "km")
  30416. },
  30417. {
  30418. name: "Lounging",
  30419. height: math.unit(11000, "km")
  30420. },
  30421. {
  30422. name: "Planet snacking",
  30423. height: math.unit(2000000, "km")
  30424. },
  30425. ]
  30426. ))
  30427. characterMakers.push(() => makeCharacter(
  30428. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30429. {
  30430. front: {
  30431. height: math.unit(6, "feet"),
  30432. weight: math.unit(215, "lb"),
  30433. name: "Front",
  30434. image: {
  30435. source: "./media/characters/sapphire-svell/front.svg",
  30436. extra: 495 / 455,
  30437. bottom: 20 / 515
  30438. }
  30439. },
  30440. back: {
  30441. height: math.unit(6, "feet"),
  30442. weight: math.unit(216, "lb"),
  30443. name: "Back",
  30444. image: {
  30445. source: "./media/characters/sapphire-svell/back.svg",
  30446. extra: 497 / 477,
  30447. bottom: 7 / 504
  30448. }
  30449. },
  30450. maw: {
  30451. height: math.unit(1.57, "feet"),
  30452. name: "Maw",
  30453. image: {
  30454. source: "./media/characters/sapphire-svell/maw.svg"
  30455. }
  30456. },
  30457. foot: {
  30458. height: math.unit(1.07, "feet"),
  30459. name: "Foot",
  30460. image: {
  30461. source: "./media/characters/sapphire-svell/foot.svg"
  30462. }
  30463. },
  30464. toering: {
  30465. height: math.unit(1.7, "inch"),
  30466. name: "Toering",
  30467. image: {
  30468. source: "./media/characters/sapphire-svell/toering.svg"
  30469. }
  30470. },
  30471. },
  30472. [
  30473. {
  30474. name: "Normal",
  30475. height: math.unit(300, "feet"),
  30476. default: true
  30477. },
  30478. {
  30479. name: "Augmented",
  30480. height: math.unit(1250, "feet")
  30481. },
  30482. {
  30483. name: "Unleashed",
  30484. height: math.unit(3000, "feet")
  30485. },
  30486. ]
  30487. ))
  30488. characterMakers.push(() => makeCharacter(
  30489. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30490. {
  30491. side: {
  30492. height: math.unit(2 + 3 / 12, "feet"),
  30493. weight: math.unit(110, "lb"),
  30494. name: "Side",
  30495. image: {
  30496. source: "./media/characters/glitch-flux/side.svg",
  30497. extra: 997 / 805,
  30498. bottom: 20 / 1017
  30499. }
  30500. },
  30501. },
  30502. [
  30503. {
  30504. name: "Normal",
  30505. height: math.unit(2 + 3 / 12, "feet"),
  30506. default: true
  30507. },
  30508. ]
  30509. ))
  30510. characterMakers.push(() => makeCharacter(
  30511. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30512. {
  30513. front: {
  30514. height: math.unit(4, "meters"),
  30515. name: "Front",
  30516. image: {
  30517. source: "./media/characters/mid/front.svg",
  30518. extra: 507 / 476,
  30519. bottom: 17 / 524
  30520. }
  30521. },
  30522. back: {
  30523. height: math.unit(4, "meters"),
  30524. name: "Back",
  30525. image: {
  30526. source: "./media/characters/mid/back.svg",
  30527. extra: 519 / 487,
  30528. bottom: 7 / 526
  30529. }
  30530. },
  30531. stuck: {
  30532. height: math.unit(2.2, "meters"),
  30533. name: "Stuck",
  30534. image: {
  30535. source: "./media/characters/mid/stuck.svg",
  30536. extra: 1951 / 1869,
  30537. bottom: 88 / 2039
  30538. }
  30539. }
  30540. },
  30541. [
  30542. {
  30543. name: "Normal",
  30544. height: math.unit(4, "meters"),
  30545. default: true
  30546. },
  30547. {
  30548. name: "Big",
  30549. height: math.unit(10, "meters")
  30550. },
  30551. {
  30552. name: "Macro",
  30553. height: math.unit(800, "meters")
  30554. },
  30555. {
  30556. name: "Megamacro",
  30557. height: math.unit(100, "km")
  30558. },
  30559. {
  30560. name: "Overgrown",
  30561. height: math.unit(1, "parsec")
  30562. },
  30563. ]
  30564. ))
  30565. characterMakers.push(() => makeCharacter(
  30566. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30567. {
  30568. front: {
  30569. height: math.unit(2.5, "meters"),
  30570. weight: math.unit(225, "kg"),
  30571. name: "Front",
  30572. image: {
  30573. source: "./media/characters/iris/front.svg",
  30574. extra: 3348 / 3251,
  30575. bottom: 205 / 3553
  30576. }
  30577. },
  30578. maw: {
  30579. height: math.unit(0.56, "meter"),
  30580. name: "Maw",
  30581. image: {
  30582. source: "./media/characters/iris/maw.svg"
  30583. }
  30584. },
  30585. },
  30586. [
  30587. {
  30588. name: "Mewter cat",
  30589. height: math.unit(1.2, "meters")
  30590. },
  30591. {
  30592. name: "Minimacro",
  30593. height: math.unit(2.5, "meters"),
  30594. default: true
  30595. },
  30596. {
  30597. name: "Macro",
  30598. height: math.unit(180, "meters")
  30599. },
  30600. {
  30601. name: "Megamacro",
  30602. height: math.unit(2746, "meters")
  30603. },
  30604. ]
  30605. ))
  30606. characterMakers.push(() => makeCharacter(
  30607. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30608. {
  30609. front: {
  30610. height: math.unit(6, "feet"),
  30611. weight: math.unit(135, "lb"),
  30612. name: "Front",
  30613. image: {
  30614. source: "./media/characters/axel/front.svg",
  30615. extra: 908 / 908,
  30616. bottom: 58 / 966
  30617. }
  30618. },
  30619. side: {
  30620. height: math.unit(6, "feet"),
  30621. weight: math.unit(135, "lb"),
  30622. name: "Side",
  30623. image: {
  30624. source: "./media/characters/axel/side.svg",
  30625. extra: 958 / 958,
  30626. bottom: 11 / 969
  30627. }
  30628. },
  30629. back: {
  30630. height: math.unit(6, "feet"),
  30631. weight: math.unit(135, "lb"),
  30632. name: "Back",
  30633. image: {
  30634. source: "./media/characters/axel/back.svg",
  30635. extra: 887 / 887,
  30636. bottom: 34 / 921
  30637. }
  30638. },
  30639. head: {
  30640. height: math.unit(1.07, "feet"),
  30641. name: "Head",
  30642. image: {
  30643. source: "./media/characters/axel/head.svg"
  30644. }
  30645. },
  30646. beak: {
  30647. height: math.unit(1.4, "feet"),
  30648. name: "Beak",
  30649. image: {
  30650. source: "./media/characters/axel/beak.svg"
  30651. }
  30652. },
  30653. beakSide: {
  30654. height: math.unit(1.4, "feet"),
  30655. name: "Beak Side",
  30656. image: {
  30657. source: "./media/characters/axel/beak-side.svg"
  30658. }
  30659. },
  30660. sheath: {
  30661. height: math.unit(0.5, "feet"),
  30662. name: "Sheath",
  30663. image: {
  30664. source: "./media/characters/axel/sheath.svg"
  30665. }
  30666. },
  30667. dick: {
  30668. height: math.unit(0.98, "feet"),
  30669. name: "Dick",
  30670. image: {
  30671. source: "./media/characters/axel/dick.svg"
  30672. }
  30673. },
  30674. },
  30675. [
  30676. {
  30677. name: "Macro",
  30678. height: math.unit(68, "meters"),
  30679. default: true
  30680. },
  30681. ]
  30682. ))
  30683. characterMakers.push(() => makeCharacter(
  30684. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30685. {
  30686. front: {
  30687. height: math.unit(3.5, "meters"),
  30688. weight: math.unit(1200, "kg"),
  30689. name: "Front",
  30690. image: {
  30691. source: "./media/characters/joanna/front.svg",
  30692. extra: 1596 / 1488,
  30693. bottom: 29 / 1625
  30694. }
  30695. },
  30696. back: {
  30697. height: math.unit(3.5, "meters"),
  30698. weight: math.unit(1200, "kg"),
  30699. name: "Back",
  30700. image: {
  30701. source: "./media/characters/joanna/back.svg",
  30702. extra: 1594 / 1495,
  30703. bottom: 26 / 1620
  30704. }
  30705. },
  30706. frontShorts: {
  30707. height: math.unit(3.5, "meters"),
  30708. weight: math.unit(1200, "kg"),
  30709. name: "Front (Shorts)",
  30710. image: {
  30711. source: "./media/characters/joanna/front-shorts.svg",
  30712. extra: 1596 / 1488,
  30713. bottom: 29 / 1625
  30714. }
  30715. },
  30716. frontBiker: {
  30717. height: math.unit(3.5, "meters"),
  30718. weight: math.unit(1200, "kg"),
  30719. name: "Front (Biker)",
  30720. image: {
  30721. source: "./media/characters/joanna/front-biker.svg",
  30722. extra: 1596 / 1488,
  30723. bottom: 29 / 1625
  30724. }
  30725. },
  30726. backBiker: {
  30727. height: math.unit(3.5, "meters"),
  30728. weight: math.unit(1200, "kg"),
  30729. name: "Back (Biker)",
  30730. image: {
  30731. source: "./media/characters/joanna/back-biker.svg",
  30732. extra: 1594 / 1495,
  30733. bottom: 88 / 1682
  30734. }
  30735. },
  30736. bikeLeft: {
  30737. height: math.unit(2.4, "meters"),
  30738. weight: math.unit(1600, "kg"),
  30739. name: "Bike (Left)",
  30740. image: {
  30741. source: "./media/characters/joanna/bike-left.svg",
  30742. extra: 720 / 720,
  30743. bottom: 8 / 728
  30744. }
  30745. },
  30746. bikeRight: {
  30747. height: math.unit(2.4, "meters"),
  30748. weight: math.unit(1600, "kg"),
  30749. name: "Bike (Right)",
  30750. image: {
  30751. source: "./media/characters/joanna/bike-right.svg",
  30752. extra: 720 / 720,
  30753. bottom: 8 / 728
  30754. }
  30755. },
  30756. },
  30757. [
  30758. {
  30759. name: "Incognito",
  30760. height: math.unit(3.5, "meters")
  30761. },
  30762. {
  30763. name: "Casual Big",
  30764. height: math.unit(200, "meters")
  30765. },
  30766. {
  30767. name: "Macro",
  30768. height: math.unit(600, "meters")
  30769. },
  30770. {
  30771. name: "Original",
  30772. height: math.unit(20, "km"),
  30773. default: true
  30774. },
  30775. {
  30776. name: "Giga",
  30777. height: math.unit(400, "km")
  30778. },
  30779. {
  30780. name: "Lounging",
  30781. height: math.unit(1500, "km")
  30782. },
  30783. {
  30784. name: "Planetary",
  30785. height: math.unit(200000, "km")
  30786. },
  30787. ]
  30788. ))
  30789. characterMakers.push(() => makeCharacter(
  30790. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30791. {
  30792. front: {
  30793. height: math.unit(6, "feet"),
  30794. weight: math.unit(150, "lb"),
  30795. name: "Front",
  30796. image: {
  30797. source: "./media/characters/hugo-sigil/front.svg",
  30798. extra: 522 / 500,
  30799. bottom: 2 / 524
  30800. }
  30801. },
  30802. back: {
  30803. height: math.unit(6, "feet"),
  30804. weight: math.unit(150, "lb"),
  30805. name: "Back",
  30806. image: {
  30807. source: "./media/characters/hugo-sigil/back.svg",
  30808. extra: 519 / 495,
  30809. bottom: 5 / 524
  30810. }
  30811. },
  30812. maw: {
  30813. height: math.unit(1.4, "feet"),
  30814. weight: math.unit(150, "lb"),
  30815. name: "Maw",
  30816. image: {
  30817. source: "./media/characters/hugo-sigil/maw.svg"
  30818. }
  30819. },
  30820. feet: {
  30821. height: math.unit(1.56, "feet"),
  30822. weight: math.unit(150, "lb"),
  30823. name: "Feet",
  30824. image: {
  30825. source: "./media/characters/hugo-sigil/feet.svg",
  30826. extra: 177 / 177,
  30827. bottom: 12 / 189
  30828. }
  30829. },
  30830. },
  30831. [
  30832. {
  30833. name: "Normal",
  30834. height: math.unit(6, "feet")
  30835. },
  30836. {
  30837. name: "Macro",
  30838. height: math.unit(200, "feet"),
  30839. default: true
  30840. },
  30841. ]
  30842. ))
  30843. characterMakers.push(() => makeCharacter(
  30844. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30845. {
  30846. front: {
  30847. height: math.unit(6, "feet"),
  30848. weight: math.unit(150, "lb"),
  30849. name: "Front",
  30850. image: {
  30851. source: "./media/characters/peri/front.svg",
  30852. extra: 2354 / 2233,
  30853. bottom: 49 / 2403
  30854. }
  30855. },
  30856. },
  30857. [
  30858. {
  30859. name: "Really Small",
  30860. height: math.unit(1, "nm")
  30861. },
  30862. {
  30863. name: "Micro",
  30864. height: math.unit(4, "inches")
  30865. },
  30866. {
  30867. name: "Normal",
  30868. height: math.unit(7, "inches"),
  30869. default: true
  30870. },
  30871. {
  30872. name: "Macro",
  30873. height: math.unit(400, "feet")
  30874. },
  30875. {
  30876. name: "Megamacro",
  30877. height: math.unit(100, "miles")
  30878. },
  30879. ]
  30880. ))
  30881. characterMakers.push(() => makeCharacter(
  30882. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30883. {
  30884. frontSlim: {
  30885. height: math.unit(7, "feet"),
  30886. name: "Front (Slim)",
  30887. image: {
  30888. source: "./media/characters/issilora/front-slim.svg",
  30889. extra: 529 / 449,
  30890. bottom: 53 / 582
  30891. }
  30892. },
  30893. sideSlim: {
  30894. height: math.unit(7, "feet"),
  30895. name: "Side (Slim)",
  30896. image: {
  30897. source: "./media/characters/issilora/side-slim.svg",
  30898. extra: 570 / 480,
  30899. bottom: 30 / 600
  30900. }
  30901. },
  30902. backSlim: {
  30903. height: math.unit(7, "feet"),
  30904. name: "Back (Slim)",
  30905. image: {
  30906. source: "./media/characters/issilora/back-slim.svg",
  30907. extra: 537 / 455,
  30908. bottom: 46 / 583
  30909. }
  30910. },
  30911. frontBuff: {
  30912. height: math.unit(7, "feet"),
  30913. name: "Front (Buff)",
  30914. image: {
  30915. source: "./media/characters/issilora/front-buff.svg",
  30916. extra: 2310 / 2035,
  30917. bottom: 335 / 2645
  30918. }
  30919. },
  30920. head: {
  30921. height: math.unit(1.94, "feet"),
  30922. name: "Head",
  30923. image: {
  30924. source: "./media/characters/issilora/head.svg"
  30925. }
  30926. },
  30927. },
  30928. [
  30929. {
  30930. name: "Minimum",
  30931. height: math.unit(7, "feet")
  30932. },
  30933. {
  30934. name: "Comfortable",
  30935. height: math.unit(17, "feet")
  30936. },
  30937. {
  30938. name: "Fun Size",
  30939. height: math.unit(47, "feet")
  30940. },
  30941. {
  30942. name: "Natural Macro",
  30943. height: math.unit(137, "feet"),
  30944. default: true
  30945. },
  30946. {
  30947. name: "Maximum Kaiju",
  30948. height: math.unit(397, "feet")
  30949. },
  30950. ]
  30951. ))
  30952. characterMakers.push(() => makeCharacter(
  30953. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30954. {
  30955. front: {
  30956. height: math.unit(50 + 9/12, "feet"),
  30957. weight: math.unit(32.8, "tons"),
  30958. name: "Front",
  30959. image: {
  30960. source: "./media/characters/irb'iiritaahn/front.svg",
  30961. extra: 1878/1826,
  30962. bottom: 326/2204
  30963. }
  30964. },
  30965. back: {
  30966. height: math.unit(50 + 9/12, "feet"),
  30967. weight: math.unit(32.8, "tons"),
  30968. name: "Back",
  30969. image: {
  30970. source: "./media/characters/irb'iiritaahn/back.svg",
  30971. extra: 2052/2018,
  30972. bottom: 152/2204
  30973. }
  30974. },
  30975. head: {
  30976. height: math.unit(12.86, "feet"),
  30977. name: "Head",
  30978. image: {
  30979. source: "./media/characters/irb'iiritaahn/head.svg"
  30980. }
  30981. },
  30982. maw: {
  30983. height: math.unit(9.66, "feet"),
  30984. name: "Maw",
  30985. image: {
  30986. source: "./media/characters/irb'iiritaahn/maw.svg"
  30987. }
  30988. },
  30989. frontDick: {
  30990. height: math.unit(8.78461, "feet"),
  30991. name: "Front Dick",
  30992. image: {
  30993. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30994. }
  30995. },
  30996. rearDick: {
  30997. height: math.unit(8.78461, "feet"),
  30998. name: "Rear Dick",
  30999. image: {
  31000. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31001. }
  31002. },
  31003. rearDickUnfolded: {
  31004. height: math.unit(8.78, "feet"),
  31005. name: "Rear Dick (Unfolded)",
  31006. image: {
  31007. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31008. }
  31009. },
  31010. wings: {
  31011. height: math.unit(43, "feet"),
  31012. name: "Wings",
  31013. image: {
  31014. source: "./media/characters/irb'iiritaahn/wings.svg"
  31015. }
  31016. },
  31017. },
  31018. [
  31019. {
  31020. name: "Macro",
  31021. height: math.unit(50 + 9/12, "feet"),
  31022. default: true
  31023. },
  31024. ]
  31025. ))
  31026. characterMakers.push(() => makeCharacter(
  31027. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31028. {
  31029. front: {
  31030. height: math.unit(205, "cm"),
  31031. weight: math.unit(102, "kg"),
  31032. name: "Front",
  31033. image: {
  31034. source: "./media/characters/irbisgreif/front.svg",
  31035. extra: 785/706,
  31036. bottom: 13/798
  31037. }
  31038. },
  31039. back: {
  31040. height: math.unit(205, "cm"),
  31041. weight: math.unit(102, "kg"),
  31042. name: "Back",
  31043. image: {
  31044. source: "./media/characters/irbisgreif/back.svg",
  31045. extra: 713/701,
  31046. bottom: 26/739
  31047. }
  31048. },
  31049. frontDressed: {
  31050. height: math.unit(216, "cm"),
  31051. weight: math.unit(102, "kg"),
  31052. name: "Front-dressed",
  31053. image: {
  31054. source: "./media/characters/irbisgreif/front-dressed.svg",
  31055. extra: 902/776,
  31056. bottom: 14/916
  31057. }
  31058. },
  31059. sideDressed: {
  31060. height: math.unit(195, "cm"),
  31061. weight: math.unit(102, "kg"),
  31062. name: "Side-dressed",
  31063. image: {
  31064. source: "./media/characters/irbisgreif/side-dressed.svg",
  31065. extra: 788/688,
  31066. bottom: 21/809
  31067. }
  31068. },
  31069. backDressed: {
  31070. height: math.unit(216, "cm"),
  31071. weight: math.unit(102, "kg"),
  31072. name: "Back-dressed",
  31073. image: {
  31074. source: "./media/characters/irbisgreif/back-dressed.svg",
  31075. extra: 901/783,
  31076. bottom: 10/911
  31077. }
  31078. },
  31079. dick: {
  31080. height: math.unit(0.49, "feet"),
  31081. name: "Dick",
  31082. image: {
  31083. source: "./media/characters/irbisgreif/dick.svg"
  31084. }
  31085. },
  31086. wingTop: {
  31087. height: math.unit(1.93 , "feet"),
  31088. name: "Wing-top",
  31089. image: {
  31090. source: "./media/characters/irbisgreif/wing-top.svg"
  31091. }
  31092. },
  31093. wingBottom: {
  31094. height: math.unit(1.93 , "feet"),
  31095. name: "Wing-bottom",
  31096. image: {
  31097. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31098. }
  31099. },
  31100. },
  31101. [
  31102. {
  31103. name: "Normal",
  31104. height: math.unit(216, "cm"),
  31105. default: true
  31106. },
  31107. ]
  31108. ))
  31109. characterMakers.push(() => makeCharacter(
  31110. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31111. {
  31112. front: {
  31113. height: math.unit(6, "feet"),
  31114. weight: math.unit(150, "lb"),
  31115. name: "Front",
  31116. image: {
  31117. source: "./media/characters/pride/front.svg",
  31118. extra: 1299/1230,
  31119. bottom: 18/1317
  31120. }
  31121. },
  31122. },
  31123. [
  31124. {
  31125. name: "Normal",
  31126. height: math.unit(7, "feet")
  31127. },
  31128. {
  31129. name: "Mini-macro",
  31130. height: math.unit(11, "feet")
  31131. },
  31132. {
  31133. name: "Macro",
  31134. height: math.unit(15, "meters"),
  31135. default: true
  31136. },
  31137. {
  31138. name: "Macro+",
  31139. height: math.unit(40, "meters")
  31140. },
  31141. ]
  31142. ))
  31143. characterMakers.push(() => makeCharacter(
  31144. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31145. {
  31146. front: {
  31147. height: math.unit(4 + 2 / 12, "feet"),
  31148. weight: math.unit(95, "lb"),
  31149. name: "Front",
  31150. image: {
  31151. source: "./media/characters/vaelophis-nyx/front.svg",
  31152. extra: 2532/2330,
  31153. bottom: 0/2532
  31154. }
  31155. },
  31156. back: {
  31157. height: math.unit(4 + 2 / 12, "feet"),
  31158. weight: math.unit(95, "lb"),
  31159. name: "Back",
  31160. image: {
  31161. source: "./media/characters/vaelophis-nyx/back.svg",
  31162. extra: 2484/2361,
  31163. bottom: 0/2484
  31164. }
  31165. },
  31166. feralSide: {
  31167. height: math.unit(2 + 1/12, "feet"),
  31168. weight: math.unit(20, "lb"),
  31169. name: "Feral (Side)",
  31170. image: {
  31171. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31172. extra: 1721/1581,
  31173. bottom: 70/1791
  31174. }
  31175. },
  31176. feralLazing: {
  31177. height: math.unit(1.08, "feet"),
  31178. weight: math.unit(20, "lb"),
  31179. name: "Feral (Lazing)",
  31180. image: {
  31181. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31182. extra: 822/822,
  31183. bottom: 248/1070
  31184. }
  31185. },
  31186. ear: {
  31187. height: math.unit(0.416, "feet"),
  31188. name: "Ear",
  31189. image: {
  31190. source: "./media/characters/vaelophis-nyx/ear.svg"
  31191. }
  31192. },
  31193. eye: {
  31194. height: math.unit(0.0748, "feet"),
  31195. name: "Eye",
  31196. image: {
  31197. source: "./media/characters/vaelophis-nyx/eye.svg"
  31198. }
  31199. },
  31200. mouth: {
  31201. height: math.unit(0.378, "feet"),
  31202. name: "Mouth",
  31203. image: {
  31204. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31205. }
  31206. },
  31207. spade: {
  31208. height: math.unit(0.55, "feet"),
  31209. name: "Spade",
  31210. image: {
  31211. source: "./media/characters/vaelophis-nyx/spade.svg"
  31212. }
  31213. },
  31214. },
  31215. [
  31216. {
  31217. name: "Normal",
  31218. height: math.unit(4 + 2/12, "feet"),
  31219. default: true
  31220. },
  31221. ]
  31222. ))
  31223. characterMakers.push(() => makeCharacter(
  31224. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31225. {
  31226. front: {
  31227. height: math.unit(7, "feet"),
  31228. weight: math.unit(231, "lb"),
  31229. name: "Front",
  31230. image: {
  31231. source: "./media/characters/flux/front.svg",
  31232. extra: 919/871,
  31233. bottom: 0/919
  31234. }
  31235. },
  31236. back: {
  31237. height: math.unit(7, "feet"),
  31238. weight: math.unit(231, "lb"),
  31239. name: "Back",
  31240. image: {
  31241. source: "./media/characters/flux/back.svg",
  31242. extra: 1040/992,
  31243. bottom: 0/1040
  31244. }
  31245. },
  31246. frontDressed: {
  31247. height: math.unit(7, "feet"),
  31248. weight: math.unit(231, "lb"),
  31249. name: "Front (Dressed)",
  31250. image: {
  31251. source: "./media/characters/flux/front-dressed.svg",
  31252. extra: 919/871,
  31253. bottom: 0/919
  31254. }
  31255. },
  31256. feralSide: {
  31257. height: math.unit(5, "feet"),
  31258. weight: math.unit(150, "lb"),
  31259. name: "Feral (Side)",
  31260. image: {
  31261. source: "./media/characters/flux/feral-side.svg",
  31262. extra: 598/528,
  31263. bottom: 28/626
  31264. }
  31265. },
  31266. head: {
  31267. height: math.unit(1.585, "feet"),
  31268. name: "Head",
  31269. image: {
  31270. source: "./media/characters/flux/head.svg"
  31271. }
  31272. },
  31273. headSide: {
  31274. height: math.unit(1.74, "feet"),
  31275. name: "Head (Side)",
  31276. image: {
  31277. source: "./media/characters/flux/head-side.svg"
  31278. }
  31279. },
  31280. headSideFire: {
  31281. height: math.unit(1.76, "feet"),
  31282. name: "Head (Side, Fire)",
  31283. image: {
  31284. source: "./media/characters/flux/head-side-fire.svg"
  31285. }
  31286. },
  31287. },
  31288. [
  31289. {
  31290. name: "Normal",
  31291. height: math.unit(7, "feet"),
  31292. default: true
  31293. },
  31294. ]
  31295. ))
  31296. characterMakers.push(() => makeCharacter(
  31297. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31298. {
  31299. front: {
  31300. height: math.unit(9, "feet"),
  31301. weight: math.unit(1012, "lb"),
  31302. name: "Front",
  31303. image: {
  31304. source: "./media/characters/ulfra-lupae/front.svg",
  31305. extra: 1083/1011,
  31306. bottom: 67/1150
  31307. }
  31308. },
  31309. },
  31310. [
  31311. {
  31312. name: "Micro",
  31313. height: math.unit(6, "inches")
  31314. },
  31315. {
  31316. name: "Socializing",
  31317. height: math.unit(6 + 5/12, "feet")
  31318. },
  31319. {
  31320. name: "Normal",
  31321. height: math.unit(9, "feet"),
  31322. default: true
  31323. },
  31324. {
  31325. name: "Macro",
  31326. height: math.unit(150, "feet")
  31327. },
  31328. ]
  31329. ))
  31330. characterMakers.push(() => makeCharacter(
  31331. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31332. {
  31333. front: {
  31334. height: math.unit(5 + 2/12, "feet"),
  31335. weight: math.unit(120, "lb"),
  31336. name: "Front",
  31337. image: {
  31338. source: "./media/characters/timber/front.svg",
  31339. extra: 2814/2705,
  31340. bottom: 181/2995
  31341. }
  31342. },
  31343. },
  31344. [
  31345. {
  31346. name: "Normal",
  31347. height: math.unit(5 + 2/12, "feet"),
  31348. default: true
  31349. },
  31350. ]
  31351. ))
  31352. characterMakers.push(() => makeCharacter(
  31353. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31354. {
  31355. front: {
  31356. height: math.unit(5 + 7/12, "feet"),
  31357. weight: math.unit(220, "lb"),
  31358. name: "Front",
  31359. image: {
  31360. source: "./media/characters/nicki/front.svg",
  31361. extra: 453/419,
  31362. bottom: 7/460
  31363. }
  31364. },
  31365. frontAlt: {
  31366. height: math.unit(5 + 7/12, "feet"),
  31367. weight: math.unit(220, "lb"),
  31368. name: "Front-alt",
  31369. image: {
  31370. source: "./media/characters/nicki/front-alt.svg",
  31371. extra: 435/411,
  31372. bottom: 12/447
  31373. }
  31374. },
  31375. back: {
  31376. height: math.unit(5 + 7/12, "feet"),
  31377. weight: math.unit(220, "lb"),
  31378. name: "Back",
  31379. image: {
  31380. source: "./media/characters/nicki/back.svg",
  31381. extra: 440/413,
  31382. bottom: 19/459
  31383. }
  31384. },
  31385. taur: {
  31386. height: math.unit(7 + 6/12, "feet"),
  31387. weight: math.unit(700, "lb"),
  31388. name: "Taur",
  31389. image: {
  31390. source: "./media/characters/nicki/taur.svg",
  31391. extra: 975/773,
  31392. bottom: 0/975
  31393. }
  31394. },
  31395. frontNsfw: {
  31396. height: math.unit(5 + 7/12, "feet"),
  31397. weight: math.unit(220, "lb"),
  31398. name: "Front (NSFW)",
  31399. image: {
  31400. source: "./media/characters/nicki/front-nsfw.svg",
  31401. extra: 453/419,
  31402. bottom: 7/460
  31403. }
  31404. },
  31405. frontNsfwAlt: {
  31406. height: math.unit(5 + 7/12, "feet"),
  31407. weight: math.unit(220, "lb"),
  31408. name: "Front (Alt, NSFW)",
  31409. image: {
  31410. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31411. extra: 435/411,
  31412. bottom: 12/447
  31413. }
  31414. },
  31415. backNsfw: {
  31416. height: math.unit(5 + 7/12, "feet"),
  31417. weight: math.unit(220, "lb"),
  31418. name: "Back (NSFW)",
  31419. image: {
  31420. source: "./media/characters/nicki/back-nsfw.svg",
  31421. extra: 440/413,
  31422. bottom: 19/459
  31423. }
  31424. },
  31425. head: {
  31426. height: math.unit(2.1, "feet"),
  31427. name: "Head",
  31428. image: {
  31429. source: "./media/characters/nicki/head.svg"
  31430. }
  31431. },
  31432. paw: {
  31433. height: math.unit(1.88, "feet"),
  31434. name: "Paw",
  31435. image: {
  31436. source: "./media/characters/nicki/paw.svg"
  31437. }
  31438. },
  31439. },
  31440. [
  31441. {
  31442. name: "Normal",
  31443. height: math.unit(5 + 7/12, "feet"),
  31444. default: true
  31445. },
  31446. ]
  31447. ))
  31448. characterMakers.push(() => makeCharacter(
  31449. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31450. {
  31451. front: {
  31452. height: math.unit(7 + 10/12, "feet"),
  31453. weight: math.unit(3.5, "tons"),
  31454. name: "Front",
  31455. image: {
  31456. source: "./media/characters/lee/front.svg",
  31457. extra: 1773/1615,
  31458. bottom: 86/1859
  31459. }
  31460. },
  31461. hand: {
  31462. height: math.unit(1.78, "feet"),
  31463. name: "Hand",
  31464. image: {
  31465. source: "./media/characters/lee/hand.svg"
  31466. }
  31467. },
  31468. maw: {
  31469. height: math.unit(1.18, "feet"),
  31470. name: "Maw",
  31471. image: {
  31472. source: "./media/characters/lee/maw.svg"
  31473. }
  31474. },
  31475. },
  31476. [
  31477. {
  31478. name: "Normal",
  31479. height: math.unit(7 + 10/12, "feet"),
  31480. default: true
  31481. },
  31482. ]
  31483. ))
  31484. characterMakers.push(() => makeCharacter(
  31485. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31486. {
  31487. front: {
  31488. height: math.unit(9, "feet"),
  31489. name: "Front",
  31490. image: {
  31491. source: "./media/characters/guti/front.svg",
  31492. extra: 4551/4355,
  31493. bottom: 123/4674
  31494. }
  31495. },
  31496. tongue: {
  31497. height: math.unit(1, "feet"),
  31498. name: "Tongue",
  31499. image: {
  31500. source: "./media/characters/guti/tongue.svg"
  31501. }
  31502. },
  31503. paw: {
  31504. height: math.unit(1.18, "feet"),
  31505. name: "Paw",
  31506. image: {
  31507. source: "./media/characters/guti/paw.svg"
  31508. }
  31509. },
  31510. },
  31511. [
  31512. {
  31513. name: "Normal",
  31514. height: math.unit(9, "feet"),
  31515. default: true
  31516. },
  31517. ]
  31518. ))
  31519. characterMakers.push(() => makeCharacter(
  31520. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31521. {
  31522. side: {
  31523. height: math.unit(5, "meters"),
  31524. name: "Side",
  31525. image: {
  31526. source: "./media/characters/vesper/side.svg",
  31527. extra: 1605/1518,
  31528. bottom: 0/1605
  31529. }
  31530. },
  31531. },
  31532. [
  31533. {
  31534. name: "Small",
  31535. height: math.unit(5, "meters")
  31536. },
  31537. {
  31538. name: "Sage",
  31539. height: math.unit(100, "meters"),
  31540. default: true
  31541. },
  31542. {
  31543. name: "Fun Size",
  31544. height: math.unit(600, "meters")
  31545. },
  31546. {
  31547. name: "Goddess",
  31548. height: math.unit(20000, "km")
  31549. },
  31550. {
  31551. name: "Maximum",
  31552. height: math.unit(5, "galaxies")
  31553. },
  31554. ]
  31555. ))
  31556. characterMakers.push(() => makeCharacter(
  31557. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31558. {
  31559. front: {
  31560. height: math.unit(6 + 3/12, "feet"),
  31561. weight: math.unit(190, "lb"),
  31562. name: "Front",
  31563. image: {
  31564. source: "./media/characters/gawain/front.svg",
  31565. extra: 2222/2139,
  31566. bottom: 90/2312
  31567. }
  31568. },
  31569. back: {
  31570. height: math.unit(6 + 3/12, "feet"),
  31571. weight: math.unit(190, "lb"),
  31572. name: "Back",
  31573. image: {
  31574. source: "./media/characters/gawain/back.svg",
  31575. extra: 2199/2111,
  31576. bottom: 73/2272
  31577. }
  31578. },
  31579. },
  31580. [
  31581. {
  31582. name: "Normal",
  31583. height: math.unit(6 + 3/12, "feet"),
  31584. default: true
  31585. },
  31586. ]
  31587. ))
  31588. characterMakers.push(() => makeCharacter(
  31589. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31590. {
  31591. side: {
  31592. height: math.unit(3.5, "meters"),
  31593. weight: math.unit(16000, "lb"),
  31594. name: "Side",
  31595. image: {
  31596. source: "./media/characters/dascalti/side.svg",
  31597. extra: 392/273,
  31598. bottom: 47/439
  31599. }
  31600. },
  31601. breath: {
  31602. height: math.unit(7.4, "feet"),
  31603. name: "Breath",
  31604. image: {
  31605. source: "./media/characters/dascalti/breath.svg"
  31606. }
  31607. },
  31608. fed: {
  31609. height: math.unit(3.6, "meters"),
  31610. weight: math.unit(16000, "lb"),
  31611. name: "Fed",
  31612. image: {
  31613. source: "./media/characters/dascalti/fed.svg",
  31614. extra: 1419/820,
  31615. bottom: 95/1514
  31616. }
  31617. },
  31618. },
  31619. [
  31620. {
  31621. name: "Normal",
  31622. height: math.unit(3.5, "meters"),
  31623. default: true
  31624. },
  31625. ]
  31626. ))
  31627. characterMakers.push(() => makeCharacter(
  31628. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31629. {
  31630. front: {
  31631. height: math.unit(3 + 5/12, "feet"),
  31632. name: "Front",
  31633. image: {
  31634. source: "./media/characters/mauve/front.svg",
  31635. extra: 1126/1033,
  31636. bottom: 65/1191
  31637. }
  31638. },
  31639. side: {
  31640. height: math.unit(3 + 5/12, "feet"),
  31641. name: "Side",
  31642. image: {
  31643. source: "./media/characters/mauve/side.svg",
  31644. extra: 1089/1001,
  31645. bottom: 29/1118
  31646. }
  31647. },
  31648. back: {
  31649. height: math.unit(3 + 5/12, "feet"),
  31650. name: "Back",
  31651. image: {
  31652. source: "./media/characters/mauve/back.svg",
  31653. extra: 1173/1053,
  31654. bottom: 109/1282
  31655. }
  31656. },
  31657. },
  31658. [
  31659. {
  31660. name: "Normal",
  31661. height: math.unit(3 + 5/12, "feet"),
  31662. default: true
  31663. },
  31664. ]
  31665. ))
  31666. characterMakers.push(() => makeCharacter(
  31667. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31668. {
  31669. front: {
  31670. height: math.unit(6 + 3/12, "feet"),
  31671. weight: math.unit(430, "lb"),
  31672. name: "Front",
  31673. image: {
  31674. source: "./media/characters/carlos/front.svg",
  31675. extra: 1964/1913,
  31676. bottom: 70/2034
  31677. }
  31678. },
  31679. },
  31680. [
  31681. {
  31682. name: "Normal",
  31683. height: math.unit(6 + 3/12, "feet"),
  31684. default: true
  31685. },
  31686. ]
  31687. ))
  31688. characterMakers.push(() => makeCharacter(
  31689. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31690. {
  31691. back: {
  31692. height: math.unit(5 + 10/12, "feet"),
  31693. weight: math.unit(200, "lb"),
  31694. name: "Back",
  31695. image: {
  31696. source: "./media/characters/jax/back.svg",
  31697. extra: 764/739,
  31698. bottom: 25/789
  31699. }
  31700. },
  31701. },
  31702. [
  31703. {
  31704. name: "Normal",
  31705. height: math.unit(5 + 10/12, "feet"),
  31706. default: true
  31707. },
  31708. ]
  31709. ))
  31710. characterMakers.push(() => makeCharacter(
  31711. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31712. {
  31713. front: {
  31714. height: math.unit(8, "feet"),
  31715. weight: math.unit(250, "lb"),
  31716. name: "Front",
  31717. image: {
  31718. source: "./media/characters/eikthynir/front.svg",
  31719. extra: 1332/1166,
  31720. bottom: 82/1414
  31721. }
  31722. },
  31723. back: {
  31724. height: math.unit(8, "feet"),
  31725. weight: math.unit(250, "lb"),
  31726. name: "Back",
  31727. image: {
  31728. source: "./media/characters/eikthynir/back.svg",
  31729. extra: 1342/1190,
  31730. bottom: 19/1361
  31731. }
  31732. },
  31733. dick: {
  31734. height: math.unit(2.35, "feet"),
  31735. name: "Dick",
  31736. image: {
  31737. source: "./media/characters/eikthynir/dick.svg"
  31738. }
  31739. },
  31740. },
  31741. [
  31742. {
  31743. name: "Normal",
  31744. height: math.unit(8, "feet"),
  31745. default: true
  31746. },
  31747. ]
  31748. ))
  31749. characterMakers.push(() => makeCharacter(
  31750. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31751. {
  31752. front: {
  31753. height: math.unit(99, "meters"),
  31754. weight: math.unit(13000, "tons"),
  31755. name: "Front",
  31756. image: {
  31757. source: "./media/characters/zlmos/front.svg",
  31758. extra: 2202/1992,
  31759. bottom: 315/2517
  31760. }
  31761. },
  31762. },
  31763. [
  31764. {
  31765. name: "Macro",
  31766. height: math.unit(99, "meters"),
  31767. default: true
  31768. },
  31769. ]
  31770. ))
  31771. characterMakers.push(() => makeCharacter(
  31772. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31773. {
  31774. front: {
  31775. height: math.unit(6 + 5/12, "feet"),
  31776. name: "Front",
  31777. image: {
  31778. source: "./media/characters/purri/front.svg",
  31779. extra: 1698/1610,
  31780. bottom: 32/1730
  31781. }
  31782. },
  31783. frontAlt: {
  31784. height: math.unit(6 + 5/12, "feet"),
  31785. name: "Front (Alt)",
  31786. image: {
  31787. source: "./media/characters/purri/front-alt.svg",
  31788. extra: 450/420,
  31789. bottom: 26/476
  31790. }
  31791. },
  31792. boots: {
  31793. height: math.unit(5.5, "feet"),
  31794. name: "Boots",
  31795. image: {
  31796. source: "./media/characters/purri/boots.svg",
  31797. extra: 905/853,
  31798. bottom: 18/923
  31799. }
  31800. },
  31801. lying: {
  31802. height: math.unit(2, "feet"),
  31803. name: "Lying",
  31804. image: {
  31805. source: "./media/characters/purri/lying.svg",
  31806. extra: 940/843,
  31807. bottom: 146/1086
  31808. }
  31809. },
  31810. devious: {
  31811. height: math.unit(1.77, "feet"),
  31812. name: "Devious",
  31813. image: {
  31814. source: "./media/characters/purri/devious.svg",
  31815. extra: 1440/1155,
  31816. bottom: 147/1587
  31817. }
  31818. },
  31819. bean: {
  31820. height: math.unit(1.94, "feet"),
  31821. name: "Bean",
  31822. image: {
  31823. source: "./media/characters/purri/bean.svg"
  31824. }
  31825. },
  31826. },
  31827. [
  31828. {
  31829. name: "Micro",
  31830. height: math.unit(1, "mm")
  31831. },
  31832. {
  31833. name: "Normal",
  31834. height: math.unit(6 + 5/12, "feet"),
  31835. default: true
  31836. },
  31837. {
  31838. name: "Macro :3c",
  31839. height: math.unit(2, "miles")
  31840. },
  31841. ]
  31842. ))
  31843. characterMakers.push(() => makeCharacter(
  31844. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31845. {
  31846. front: {
  31847. height: math.unit(6 + 2/12, "feet"),
  31848. weight: math.unit(250, "lb"),
  31849. name: "Front",
  31850. image: {
  31851. source: "./media/characters/moonlight/front.svg",
  31852. extra: 1044/908,
  31853. bottom: 56/1100
  31854. }
  31855. },
  31856. feral: {
  31857. height: math.unit(3 + 1/12, "feet"),
  31858. weight: math.unit(50, "kg"),
  31859. name: "Feral",
  31860. image: {
  31861. source: "./media/characters/moonlight/feral.svg",
  31862. extra: 3705/2791,
  31863. bottom: 145/3850
  31864. }
  31865. },
  31866. paw: {
  31867. height: math.unit(1, "feet"),
  31868. name: "Paw",
  31869. image: {
  31870. source: "./media/characters/moonlight/paw.svg"
  31871. }
  31872. },
  31873. paws: {
  31874. height: math.unit(0.98, "feet"),
  31875. name: "Paws",
  31876. image: {
  31877. source: "./media/characters/moonlight/paws.svg",
  31878. extra: 939/939,
  31879. bottom: 50/989
  31880. }
  31881. },
  31882. mouth: {
  31883. height: math.unit(0.48, "feet"),
  31884. name: "Mouth",
  31885. image: {
  31886. source: "./media/characters/moonlight/mouth.svg"
  31887. }
  31888. },
  31889. dick: {
  31890. height: math.unit(1.46, "feet"),
  31891. name: "Dick",
  31892. image: {
  31893. source: "./media/characters/moonlight/dick.svg"
  31894. }
  31895. },
  31896. },
  31897. [
  31898. {
  31899. name: "Normal",
  31900. height: math.unit(6 + 2/12, "feet"),
  31901. default: true
  31902. },
  31903. {
  31904. name: "Macro",
  31905. height: math.unit(300, "feet")
  31906. },
  31907. {
  31908. name: "Macro+",
  31909. height: math.unit(1, "mile")
  31910. },
  31911. {
  31912. name: "Mt. Moon",
  31913. height: math.unit(5, "miles")
  31914. },
  31915. {
  31916. name: "Megamacro",
  31917. height: math.unit(15, "miles")
  31918. },
  31919. ]
  31920. ))
  31921. characterMakers.push(() => makeCharacter(
  31922. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31923. {
  31924. back: {
  31925. height: math.unit(6, "feet"),
  31926. weight: math.unit(150, "lb"),
  31927. name: "Back",
  31928. image: {
  31929. source: "./media/characters/sylen/back.svg",
  31930. extra: 1335/1273,
  31931. bottom: 107/1442
  31932. }
  31933. },
  31934. },
  31935. [
  31936. {
  31937. name: "Normal",
  31938. height: math.unit(5 + 5/12, "feet")
  31939. },
  31940. {
  31941. name: "Megamacro",
  31942. height: math.unit(3, "miles"),
  31943. default: true
  31944. },
  31945. ]
  31946. ))
  31947. characterMakers.push(() => makeCharacter(
  31948. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31949. {
  31950. front: {
  31951. height: math.unit(6, "feet"),
  31952. weight: math.unit(190, "lb"),
  31953. name: "Front",
  31954. image: {
  31955. source: "./media/characters/huttser/front.svg",
  31956. extra: 1152/1058,
  31957. bottom: 23/1175
  31958. }
  31959. },
  31960. side: {
  31961. height: math.unit(6, "feet"),
  31962. weight: math.unit(190, "lb"),
  31963. name: "Side",
  31964. image: {
  31965. source: "./media/characters/huttser/side.svg",
  31966. extra: 1174/1065,
  31967. bottom: 18/1192
  31968. }
  31969. },
  31970. back: {
  31971. height: math.unit(6, "feet"),
  31972. weight: math.unit(190, "lb"),
  31973. name: "Back",
  31974. image: {
  31975. source: "./media/characters/huttser/back.svg",
  31976. extra: 1158/1056,
  31977. bottom: 12/1170
  31978. }
  31979. },
  31980. },
  31981. [
  31982. ]
  31983. ))
  31984. characterMakers.push(() => makeCharacter(
  31985. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31986. {
  31987. side: {
  31988. height: math.unit(12 + 9/12, "feet"),
  31989. weight: math.unit(15000, "lb"),
  31990. name: "Side",
  31991. image: {
  31992. source: "./media/characters/faan/side.svg",
  31993. extra: 2747/2697,
  31994. bottom: 0/2747
  31995. }
  31996. },
  31997. front: {
  31998. height: math.unit(12 + 9/12, "feet"),
  31999. weight: math.unit(15000, "lb"),
  32000. name: "Front",
  32001. image: {
  32002. source: "./media/characters/faan/front.svg",
  32003. extra: 607/571,
  32004. bottom: 24/631
  32005. }
  32006. },
  32007. head: {
  32008. height: math.unit(2.85, "feet"),
  32009. name: "Head",
  32010. image: {
  32011. source: "./media/characters/faan/head.svg"
  32012. }
  32013. },
  32014. headAlt: {
  32015. height: math.unit(3.13, "feet"),
  32016. name: "Head-alt",
  32017. image: {
  32018. source: "./media/characters/faan/head-alt.svg"
  32019. }
  32020. },
  32021. },
  32022. [
  32023. {
  32024. name: "Normal",
  32025. height: math.unit(12 + 9/12, "feet"),
  32026. default: true
  32027. },
  32028. ]
  32029. ))
  32030. characterMakers.push(() => makeCharacter(
  32031. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32032. {
  32033. front: {
  32034. height: math.unit(6, "feet"),
  32035. weight: math.unit(300, "lb"),
  32036. name: "Front",
  32037. image: {
  32038. source: "./media/characters/tanio/front.svg",
  32039. extra: 711/673,
  32040. bottom: 25/736
  32041. }
  32042. },
  32043. },
  32044. [
  32045. {
  32046. name: "Normal",
  32047. height: math.unit(6, "feet"),
  32048. default: true
  32049. },
  32050. ]
  32051. ))
  32052. characterMakers.push(() => makeCharacter(
  32053. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32054. {
  32055. front: {
  32056. height: math.unit(3, "inches"),
  32057. name: "Front",
  32058. image: {
  32059. source: "./media/characters/noboru/front.svg",
  32060. extra: 1039/932,
  32061. bottom: 18/1057
  32062. }
  32063. },
  32064. },
  32065. [
  32066. {
  32067. name: "Micro",
  32068. height: math.unit(3, "inches"),
  32069. default: true
  32070. },
  32071. ]
  32072. ))
  32073. characterMakers.push(() => makeCharacter(
  32074. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32075. {
  32076. front: {
  32077. height: math.unit(1.85, "meters"),
  32078. weight: math.unit(80, "kg"),
  32079. name: "Front",
  32080. image: {
  32081. source: "./media/characters/daniel-barrett/front.svg",
  32082. extra: 355/337,
  32083. bottom: 9/364
  32084. }
  32085. },
  32086. },
  32087. [
  32088. {
  32089. name: "Pico",
  32090. height: math.unit(0.0433, "mm")
  32091. },
  32092. {
  32093. name: "Nano",
  32094. height: math.unit(1.5, "mm")
  32095. },
  32096. {
  32097. name: "Micro",
  32098. height: math.unit(5.3, "cm"),
  32099. default: true
  32100. },
  32101. {
  32102. name: "Normal",
  32103. height: math.unit(1.85, "meters")
  32104. },
  32105. {
  32106. name: "Macro",
  32107. height: math.unit(64.7, "meters")
  32108. },
  32109. {
  32110. name: "Megamacro",
  32111. height: math.unit(2.26, "km")
  32112. },
  32113. {
  32114. name: "Gigamacro",
  32115. height: math.unit(79, "km")
  32116. },
  32117. {
  32118. name: "Teramacro",
  32119. height: math.unit(2765, "km")
  32120. },
  32121. {
  32122. name: "Petamacro",
  32123. height: math.unit(96678, "km")
  32124. },
  32125. ]
  32126. ))
  32127. characterMakers.push(() => makeCharacter(
  32128. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32129. {
  32130. front: {
  32131. height: math.unit(30, "meters"),
  32132. weight: math.unit(400, "tons"),
  32133. name: "Front",
  32134. image: {
  32135. source: "./media/characters/zeel/front.svg",
  32136. extra: 2599/2599,
  32137. bottom: 226/2825
  32138. }
  32139. },
  32140. },
  32141. [
  32142. {
  32143. name: "Macro",
  32144. height: math.unit(30, "meters"),
  32145. default: true
  32146. },
  32147. ]
  32148. ))
  32149. characterMakers.push(() => makeCharacter(
  32150. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32151. {
  32152. front: {
  32153. height: math.unit(6 + 7/12, "feet"),
  32154. weight: math.unit(210, "lb"),
  32155. name: "Front",
  32156. image: {
  32157. source: "./media/characters/tarn/front.svg",
  32158. extra: 3517/3220,
  32159. bottom: 91/3608
  32160. }
  32161. },
  32162. back: {
  32163. height: math.unit(6 + 7/12, "feet"),
  32164. weight: math.unit(210, "lb"),
  32165. name: "Back",
  32166. image: {
  32167. source: "./media/characters/tarn/back.svg",
  32168. extra: 3566/3241,
  32169. bottom: 34/3600
  32170. }
  32171. },
  32172. dick: {
  32173. height: math.unit(1.65, "feet"),
  32174. name: "Dick",
  32175. image: {
  32176. source: "./media/characters/tarn/dick.svg"
  32177. }
  32178. },
  32179. paw: {
  32180. height: math.unit(1.80, "feet"),
  32181. name: "Paw",
  32182. image: {
  32183. source: "./media/characters/tarn/paw.svg"
  32184. }
  32185. },
  32186. tongue: {
  32187. height: math.unit(0.97, "feet"),
  32188. name: "Tongue",
  32189. image: {
  32190. source: "./media/characters/tarn/tongue.svg"
  32191. }
  32192. },
  32193. },
  32194. [
  32195. {
  32196. name: "Micro",
  32197. height: math.unit(4, "inches")
  32198. },
  32199. {
  32200. name: "Normal",
  32201. height: math.unit(6 + 7/12, "feet"),
  32202. default: true
  32203. },
  32204. {
  32205. name: "Macro",
  32206. height: math.unit(300, "feet")
  32207. },
  32208. ]
  32209. ))
  32210. characterMakers.push(() => makeCharacter(
  32211. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32212. {
  32213. front: {
  32214. height: math.unit(5 + 7/12, "feet"),
  32215. weight: math.unit(80, "kg"),
  32216. name: "Front",
  32217. image: {
  32218. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32219. extra: 3023/2865,
  32220. bottom: 33/3056
  32221. }
  32222. },
  32223. back: {
  32224. height: math.unit(5 + 7/12, "feet"),
  32225. weight: math.unit(80, "kg"),
  32226. name: "Back",
  32227. image: {
  32228. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32229. extra: 3020/2886,
  32230. bottom: 30/3050
  32231. }
  32232. },
  32233. dick: {
  32234. height: math.unit(0.98, "feet"),
  32235. name: "Dick",
  32236. image: {
  32237. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32238. }
  32239. },
  32240. anatomy: {
  32241. height: math.unit(2.86, "feet"),
  32242. name: "Anatomy",
  32243. image: {
  32244. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32245. }
  32246. },
  32247. },
  32248. [
  32249. {
  32250. name: "Really Small",
  32251. height: math.unit(2, "inches")
  32252. },
  32253. {
  32254. name: "Micro",
  32255. height: math.unit(5.583, "inches")
  32256. },
  32257. {
  32258. name: "Normal",
  32259. height: math.unit(5 + 7/12, "feet"),
  32260. default: true
  32261. },
  32262. {
  32263. name: "Macro",
  32264. height: math.unit(67, "feet")
  32265. },
  32266. {
  32267. name: "Megamacro",
  32268. height: math.unit(134, "feet")
  32269. },
  32270. ]
  32271. ))
  32272. characterMakers.push(() => makeCharacter(
  32273. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32274. {
  32275. front: {
  32276. height: math.unit(9, "feet"),
  32277. weight: math.unit(120, "lb"),
  32278. name: "Front",
  32279. image: {
  32280. source: "./media/characters/sally/front.svg",
  32281. extra: 1506/1349,
  32282. bottom: 66/1572
  32283. }
  32284. },
  32285. },
  32286. [
  32287. {
  32288. name: "Normal",
  32289. height: math.unit(9, "feet"),
  32290. default: true
  32291. },
  32292. ]
  32293. ))
  32294. characterMakers.push(() => makeCharacter(
  32295. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32296. {
  32297. front: {
  32298. height: math.unit(8, "feet"),
  32299. weight: math.unit(900, "lb"),
  32300. name: "Front",
  32301. image: {
  32302. source: "./media/characters/owen/front.svg",
  32303. extra: 1761/1657,
  32304. bottom: 74/1835
  32305. }
  32306. },
  32307. side: {
  32308. height: math.unit(8, "feet"),
  32309. weight: math.unit(900, "lb"),
  32310. name: "Side",
  32311. image: {
  32312. source: "./media/characters/owen/side.svg",
  32313. extra: 1797/1734,
  32314. bottom: 30/1827
  32315. }
  32316. },
  32317. back: {
  32318. height: math.unit(8, "feet"),
  32319. weight: math.unit(900, "lb"),
  32320. name: "Back",
  32321. image: {
  32322. source: "./media/characters/owen/back.svg",
  32323. extra: 1796/1706,
  32324. bottom: 59/1855
  32325. }
  32326. },
  32327. maw: {
  32328. height: math.unit(1.76, "feet"),
  32329. name: "Maw",
  32330. image: {
  32331. source: "./media/characters/owen/maw.svg"
  32332. }
  32333. },
  32334. },
  32335. [
  32336. {
  32337. name: "Normal",
  32338. height: math.unit(8, "feet"),
  32339. default: true
  32340. },
  32341. ]
  32342. ))
  32343. characterMakers.push(() => makeCharacter(
  32344. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32345. {
  32346. front: {
  32347. height: math.unit(4, "feet"),
  32348. weight: math.unit(400, "lb"),
  32349. name: "Front",
  32350. image: {
  32351. source: "./media/characters/ryth/front.svg",
  32352. extra: 1920/1748,
  32353. bottom: 42/1962
  32354. }
  32355. },
  32356. back: {
  32357. height: math.unit(4, "feet"),
  32358. weight: math.unit(400, "lb"),
  32359. name: "Back",
  32360. image: {
  32361. source: "./media/characters/ryth/back.svg",
  32362. extra: 1897/1690,
  32363. bottom: 89/1986
  32364. }
  32365. },
  32366. mouth: {
  32367. height: math.unit(1.39, "feet"),
  32368. name: "Mouth",
  32369. image: {
  32370. source: "./media/characters/ryth/mouth.svg"
  32371. }
  32372. },
  32373. tailmaw: {
  32374. height: math.unit(1.23, "feet"),
  32375. name: "Tailmaw",
  32376. image: {
  32377. source: "./media/characters/ryth/tailmaw.svg"
  32378. }
  32379. },
  32380. goia: {
  32381. height: math.unit(4, "meters"),
  32382. weight: math.unit(10800, "lb"),
  32383. name: "Goia",
  32384. image: {
  32385. source: "./media/characters/ryth/goia.svg",
  32386. extra: 745/640,
  32387. bottom: 107/852
  32388. }
  32389. },
  32390. goiaFront: {
  32391. height: math.unit(4, "meters"),
  32392. weight: math.unit(10800, "lb"),
  32393. name: "Goia (Front)",
  32394. image: {
  32395. source: "./media/characters/ryth/goia-front.svg",
  32396. extra: 750/586,
  32397. bottom: 114/864
  32398. }
  32399. },
  32400. goiaMaw: {
  32401. height: math.unit(5.55, "feet"),
  32402. name: "Goia Maw",
  32403. image: {
  32404. source: "./media/characters/ryth/goia-maw.svg"
  32405. }
  32406. },
  32407. goiaForepaw: {
  32408. height: math.unit(3.5, "feet"),
  32409. name: "Goia Forepaw",
  32410. image: {
  32411. source: "./media/characters/ryth/goia-forepaw.svg"
  32412. }
  32413. },
  32414. goiaHindpaw: {
  32415. height: math.unit(5.55, "feet"),
  32416. name: "Goia Hindpaw",
  32417. image: {
  32418. source: "./media/characters/ryth/goia-hindpaw.svg"
  32419. }
  32420. },
  32421. },
  32422. [
  32423. {
  32424. name: "Normal",
  32425. height: math.unit(4, "feet"),
  32426. default: true
  32427. },
  32428. ]
  32429. ))
  32430. characterMakers.push(() => makeCharacter(
  32431. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32432. {
  32433. front: {
  32434. height: math.unit(7, "feet"),
  32435. weight: math.unit(180, "lb"),
  32436. name: "Front",
  32437. image: {
  32438. source: "./media/characters/necrolance/front.svg",
  32439. extra: 1062/947,
  32440. bottom: 41/1103
  32441. }
  32442. },
  32443. back: {
  32444. height: math.unit(7, "feet"),
  32445. weight: math.unit(180, "lb"),
  32446. name: "Back",
  32447. image: {
  32448. source: "./media/characters/necrolance/back.svg",
  32449. extra: 1045/984,
  32450. bottom: 14/1059
  32451. }
  32452. },
  32453. wing: {
  32454. height: math.unit(2.67, "feet"),
  32455. name: "Wing",
  32456. image: {
  32457. source: "./media/characters/necrolance/wing.svg"
  32458. }
  32459. },
  32460. },
  32461. [
  32462. {
  32463. name: "Normal",
  32464. height: math.unit(7, "feet"),
  32465. default: true
  32466. },
  32467. ]
  32468. ))
  32469. characterMakers.push(() => makeCharacter(
  32470. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32471. {
  32472. front: {
  32473. height: math.unit(76, "meters"),
  32474. weight: math.unit(30000, "tons"),
  32475. name: "Front",
  32476. image: {
  32477. source: "./media/characters/tyler/front.svg",
  32478. extra: 1640/1640,
  32479. bottom: 114/1754
  32480. }
  32481. },
  32482. },
  32483. [
  32484. {
  32485. name: "Macro",
  32486. height: math.unit(76, "meters"),
  32487. default: true
  32488. },
  32489. ]
  32490. ))
  32491. characterMakers.push(() => makeCharacter(
  32492. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32493. {
  32494. front: {
  32495. height: math.unit(4 + 11/12, "feet"),
  32496. weight: math.unit(132, "lb"),
  32497. name: "Front",
  32498. image: {
  32499. source: "./media/characters/icey/front.svg",
  32500. extra: 2750/2550,
  32501. bottom: 33/2783
  32502. }
  32503. },
  32504. back: {
  32505. height: math.unit(4 + 11/12, "feet"),
  32506. weight: math.unit(132, "lb"),
  32507. name: "Back",
  32508. image: {
  32509. source: "./media/characters/icey/back.svg",
  32510. extra: 2624/2481,
  32511. bottom: 35/2659
  32512. }
  32513. },
  32514. },
  32515. [
  32516. {
  32517. name: "Normal",
  32518. height: math.unit(4 + 11/12, "feet"),
  32519. default: true
  32520. },
  32521. ]
  32522. ))
  32523. characterMakers.push(() => makeCharacter(
  32524. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32525. {
  32526. front: {
  32527. height: math.unit(100, "feet"),
  32528. weight: math.unit(0, "lb"),
  32529. name: "Front",
  32530. image: {
  32531. source: "./media/characters/smile/front.svg",
  32532. extra: 2983/2912,
  32533. bottom: 162/3145
  32534. }
  32535. },
  32536. back: {
  32537. height: math.unit(100, "feet"),
  32538. weight: math.unit(0, "lb"),
  32539. name: "Back",
  32540. image: {
  32541. source: "./media/characters/smile/back.svg",
  32542. extra: 3143/3031,
  32543. bottom: 91/3234
  32544. }
  32545. },
  32546. head: {
  32547. height: math.unit(26.3, "feet"),
  32548. weight: math.unit(0, "lb"),
  32549. name: "Head",
  32550. image: {
  32551. source: "./media/characters/smile/head.svg"
  32552. }
  32553. },
  32554. collar: {
  32555. height: math.unit(5.3, "feet"),
  32556. weight: math.unit(0, "lb"),
  32557. name: "Collar",
  32558. image: {
  32559. source: "./media/characters/smile/collar.svg"
  32560. }
  32561. },
  32562. },
  32563. [
  32564. {
  32565. name: "Macro",
  32566. height: math.unit(100, "feet"),
  32567. default: true
  32568. },
  32569. ]
  32570. ))
  32571. characterMakers.push(() => makeCharacter(
  32572. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32573. {
  32574. dragon: {
  32575. height: math.unit(26, "feet"),
  32576. weight: math.unit(36, "tons"),
  32577. name: "Dragon",
  32578. image: {
  32579. source: "./media/characters/arimphae/dragon.svg",
  32580. extra: 1574/983,
  32581. bottom: 357/1931
  32582. }
  32583. },
  32584. drake: {
  32585. height: math.unit(9, "feet"),
  32586. weight: math.unit(1.5, "tons"),
  32587. name: "Drake",
  32588. image: {
  32589. source: "./media/characters/arimphae/drake.svg",
  32590. extra: 1120/925,
  32591. bottom: 435/1555
  32592. }
  32593. },
  32594. },
  32595. [
  32596. {
  32597. name: "Small",
  32598. height: math.unit(26*5/9, "feet")
  32599. },
  32600. {
  32601. name: "Normal",
  32602. height: math.unit(26, "feet"),
  32603. default: true
  32604. },
  32605. ]
  32606. ))
  32607. characterMakers.push(() => makeCharacter(
  32608. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32609. {
  32610. front: {
  32611. height: math.unit(8 + 9/12, "feet"),
  32612. name: "Front",
  32613. image: {
  32614. source: "./media/characters/xander/front.svg",
  32615. extra: 1237/974,
  32616. bottom: 94/1331
  32617. }
  32618. },
  32619. },
  32620. [
  32621. {
  32622. name: "Normal",
  32623. height: math.unit(8 + 9/12, "feet"),
  32624. default: true
  32625. },
  32626. {
  32627. name: "Gaze Grabber",
  32628. height: math.unit(13 + 8/12, "feet")
  32629. },
  32630. {
  32631. name: "Jaw Dropper",
  32632. height: math.unit(27, "feet")
  32633. },
  32634. {
  32635. name: "Show Stopper",
  32636. height: math.unit(136, "feet")
  32637. },
  32638. {
  32639. name: "Superstar",
  32640. height: math.unit(1.9e6, "miles")
  32641. },
  32642. ]
  32643. ))
  32644. characterMakers.push(() => makeCharacter(
  32645. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32646. {
  32647. side: {
  32648. height: math.unit(2100, "feet"),
  32649. name: "Side",
  32650. image: {
  32651. source: "./media/characters/osiris/side.svg",
  32652. extra: 1105/939,
  32653. bottom: 167/1272
  32654. }
  32655. },
  32656. },
  32657. [
  32658. {
  32659. name: "Macro",
  32660. height: math.unit(2100, "feet"),
  32661. default: true
  32662. },
  32663. ]
  32664. ))
  32665. characterMakers.push(() => makeCharacter(
  32666. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32667. {
  32668. front: {
  32669. height: math.unit(6 + 8/12, "feet"),
  32670. weight: math.unit(225, "lb"),
  32671. name: "Front",
  32672. image: {
  32673. source: "./media/characters/rhys-londe/front.svg",
  32674. extra: 2258/2141,
  32675. bottom: 188/2446
  32676. }
  32677. },
  32678. back: {
  32679. height: math.unit(6 + 8/12, "feet"),
  32680. weight: math.unit(225, "lb"),
  32681. name: "Back",
  32682. image: {
  32683. source: "./media/characters/rhys-londe/back.svg",
  32684. extra: 2237/2137,
  32685. bottom: 63/2300
  32686. }
  32687. },
  32688. frontNsfw: {
  32689. height: math.unit(6 + 8/12, "feet"),
  32690. weight: math.unit(225, "lb"),
  32691. name: "Front (NSFW)",
  32692. image: {
  32693. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32694. extra: 2258/2141,
  32695. bottom: 188/2446
  32696. }
  32697. },
  32698. backNsfw: {
  32699. height: math.unit(6 + 8/12, "feet"),
  32700. weight: math.unit(225, "lb"),
  32701. name: "Back (NSFW)",
  32702. image: {
  32703. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32704. extra: 2237/2137,
  32705. bottom: 63/2300
  32706. }
  32707. },
  32708. dick: {
  32709. height: math.unit(30, "inches"),
  32710. name: "Dick",
  32711. image: {
  32712. source: "./media/characters/rhys-londe/dick.svg"
  32713. }
  32714. },
  32715. maw: {
  32716. height: math.unit(1.6, "feet"),
  32717. name: "Maw",
  32718. image: {
  32719. source: "./media/characters/rhys-londe/maw.svg"
  32720. }
  32721. },
  32722. },
  32723. [
  32724. {
  32725. name: "Normal",
  32726. height: math.unit(6 + 8/12, "feet"),
  32727. default: true
  32728. },
  32729. ]
  32730. ))
  32731. characterMakers.push(() => makeCharacter(
  32732. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32733. {
  32734. front: {
  32735. height: math.unit(3 + 10/12, "feet"),
  32736. weight: math.unit(90, "lb"),
  32737. name: "Front",
  32738. image: {
  32739. source: "./media/characters/taivas-ensim/front.svg",
  32740. extra: 1327/1216,
  32741. bottom: 96/1423
  32742. }
  32743. },
  32744. back: {
  32745. height: math.unit(3 + 10/12, "feet"),
  32746. weight: math.unit(90, "lb"),
  32747. name: "Back",
  32748. image: {
  32749. source: "./media/characters/taivas-ensim/back.svg",
  32750. extra: 1355/1247,
  32751. bottom: 11/1366
  32752. }
  32753. },
  32754. frontNsfw: {
  32755. height: math.unit(3 + 10/12, "feet"),
  32756. weight: math.unit(90, "lb"),
  32757. name: "Front (NSFW)",
  32758. image: {
  32759. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32760. extra: 1327/1216,
  32761. bottom: 96/1423
  32762. }
  32763. },
  32764. backNsfw: {
  32765. height: math.unit(3 + 10/12, "feet"),
  32766. weight: math.unit(90, "lb"),
  32767. name: "Back (NSFW)",
  32768. image: {
  32769. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32770. extra: 1355/1247,
  32771. bottom: 11/1366
  32772. }
  32773. },
  32774. },
  32775. [
  32776. {
  32777. name: "Normal",
  32778. height: math.unit(3 + 10/12, "feet"),
  32779. default: true
  32780. },
  32781. ]
  32782. ))
  32783. characterMakers.push(() => makeCharacter(
  32784. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32785. {
  32786. front: {
  32787. height: math.unit(9 + 6/12, "feet"),
  32788. weight: math.unit(940, "lb"),
  32789. name: "Front",
  32790. image: {
  32791. source: "./media/characters/byliss/front.svg",
  32792. extra: 1327/1290,
  32793. bottom: 82/1409
  32794. }
  32795. },
  32796. back: {
  32797. height: math.unit(9 + 6/12, "feet"),
  32798. weight: math.unit(940, "lb"),
  32799. name: "Back",
  32800. image: {
  32801. source: "./media/characters/byliss/back.svg",
  32802. extra: 1376/1349,
  32803. bottom: 9/1385
  32804. }
  32805. },
  32806. frontNsfw: {
  32807. height: math.unit(9 + 6/12, "feet"),
  32808. weight: math.unit(940, "lb"),
  32809. name: "Front (NSFW)",
  32810. image: {
  32811. source: "./media/characters/byliss/front-nsfw.svg",
  32812. extra: 1327/1290,
  32813. bottom: 82/1409
  32814. }
  32815. },
  32816. backNsfw: {
  32817. height: math.unit(9 + 6/12, "feet"),
  32818. weight: math.unit(940, "lb"),
  32819. name: "Back (NSFW)",
  32820. image: {
  32821. source: "./media/characters/byliss/back-nsfw.svg",
  32822. extra: 1376/1349,
  32823. bottom: 9/1385
  32824. }
  32825. },
  32826. },
  32827. [
  32828. {
  32829. name: "Normal",
  32830. height: math.unit(9 + 6/12, "feet"),
  32831. default: true
  32832. },
  32833. ]
  32834. ))
  32835. characterMakers.push(() => makeCharacter(
  32836. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32837. {
  32838. front: {
  32839. height: math.unit(5 + 2/12, "feet"),
  32840. weight: math.unit(200, "lb"),
  32841. name: "Front",
  32842. image: {
  32843. source: "./media/characters/noraly/front.svg",
  32844. extra: 4985/4773,
  32845. bottom: 150/5135
  32846. }
  32847. },
  32848. full: {
  32849. height: math.unit(5 + 2/12, "feet"),
  32850. weight: math.unit(164, "lb"),
  32851. name: "Full",
  32852. image: {
  32853. source: "./media/characters/noraly/full.svg",
  32854. extra: 1114/1059,
  32855. bottom: 35/1149
  32856. }
  32857. },
  32858. fuller: {
  32859. height: math.unit(5 + 2/12, "feet"),
  32860. weight: math.unit(230, "lb"),
  32861. name: "Fuller",
  32862. image: {
  32863. source: "./media/characters/noraly/fuller.svg",
  32864. extra: 1114/1059,
  32865. bottom: 35/1149
  32866. }
  32867. },
  32868. fullest: {
  32869. height: math.unit(5 + 2/12, "feet"),
  32870. weight: math.unit(300, "lb"),
  32871. name: "Fullest",
  32872. image: {
  32873. source: "./media/characters/noraly/fullest.svg",
  32874. extra: 1114/1059,
  32875. bottom: 35/1149
  32876. }
  32877. },
  32878. },
  32879. [
  32880. {
  32881. name: "Normal",
  32882. height: math.unit(5 + 2/12, "feet"),
  32883. default: true
  32884. },
  32885. ]
  32886. ))
  32887. characterMakers.push(() => makeCharacter(
  32888. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32889. {
  32890. front: {
  32891. height: math.unit(5 + 2/12, "feet"),
  32892. weight: math.unit(210, "lb"),
  32893. name: "Front",
  32894. image: {
  32895. source: "./media/characters/pera/front.svg",
  32896. extra: 1560/1531,
  32897. bottom: 165/1725
  32898. }
  32899. },
  32900. back: {
  32901. height: math.unit(5 + 2/12, "feet"),
  32902. weight: math.unit(210, "lb"),
  32903. name: "Back",
  32904. image: {
  32905. source: "./media/characters/pera/back.svg",
  32906. extra: 1523/1493,
  32907. bottom: 152/1675
  32908. }
  32909. },
  32910. dick: {
  32911. height: math.unit(2.4, "feet"),
  32912. name: "Dick",
  32913. image: {
  32914. source: "./media/characters/pera/dick.svg"
  32915. }
  32916. },
  32917. },
  32918. [
  32919. {
  32920. name: "Normal",
  32921. height: math.unit(5 + 2/12, "feet"),
  32922. default: true
  32923. },
  32924. ]
  32925. ))
  32926. characterMakers.push(() => makeCharacter(
  32927. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32928. {
  32929. front: {
  32930. height: math.unit(12, "feet"),
  32931. weight: math.unit(3200, "lb"),
  32932. name: "Front",
  32933. image: {
  32934. source: "./media/characters/julian/front.svg",
  32935. extra: 2962/2701,
  32936. bottom: 184/3146
  32937. }
  32938. },
  32939. maw: {
  32940. height: math.unit(5.35, "feet"),
  32941. name: "Maw",
  32942. image: {
  32943. source: "./media/characters/julian/maw.svg"
  32944. }
  32945. },
  32946. paw: {
  32947. height: math.unit(3.07, "feet"),
  32948. name: "Paw",
  32949. image: {
  32950. source: "./media/characters/julian/paw.svg"
  32951. }
  32952. },
  32953. },
  32954. [
  32955. {
  32956. name: "Default",
  32957. height: math.unit(12, "feet"),
  32958. default: true
  32959. },
  32960. {
  32961. name: "Big",
  32962. height: math.unit(50, "feet")
  32963. },
  32964. {
  32965. name: "Really Big",
  32966. height: math.unit(1, "mile")
  32967. },
  32968. {
  32969. name: "Extremely Big",
  32970. height: math.unit(100, "miles")
  32971. },
  32972. {
  32973. name: "Planet Hugger",
  32974. height: math.unit(200, "megameters")
  32975. },
  32976. {
  32977. name: "Unreasonably Big",
  32978. height: math.unit(1e300, "meters")
  32979. },
  32980. ]
  32981. ))
  32982. characterMakers.push(() => makeCharacter(
  32983. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32984. {
  32985. solgooleo: {
  32986. height: math.unit(4, "meters"),
  32987. weight: math.unit(6000*1.5, "kg"),
  32988. volume: math.unit(6000, "liters"),
  32989. name: "Solgooleo",
  32990. image: {
  32991. source: "./media/characters/pi/solgooleo.svg",
  32992. extra: 388/331,
  32993. bottom: 29/417
  32994. }
  32995. },
  32996. },
  32997. [
  32998. {
  32999. name: "Normal",
  33000. height: math.unit(4, "meters"),
  33001. default: true
  33002. },
  33003. ]
  33004. ))
  33005. characterMakers.push(() => makeCharacter(
  33006. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33007. {
  33008. front: {
  33009. height: math.unit(8, "feet"),
  33010. weight: math.unit(4, "tons"),
  33011. name: "Front",
  33012. image: {
  33013. source: "./media/characters/shaun/front.svg",
  33014. extra: 503/495,
  33015. bottom: 20/523
  33016. }
  33017. },
  33018. back: {
  33019. height: math.unit(8, "feet"),
  33020. weight: math.unit(4, "tons"),
  33021. name: "Back",
  33022. image: {
  33023. source: "./media/characters/shaun/back.svg",
  33024. extra: 487/480,
  33025. bottom: 20/507
  33026. }
  33027. },
  33028. },
  33029. [
  33030. {
  33031. name: "Lorg",
  33032. height: math.unit(8, "feet"),
  33033. default: true
  33034. },
  33035. ]
  33036. ))
  33037. characterMakers.push(() => makeCharacter(
  33038. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33039. {
  33040. frontAnthro: {
  33041. height: math.unit(7, "feet"),
  33042. name: "Front",
  33043. image: {
  33044. source: "./media/characters/sini/front-anthro.svg",
  33045. extra: 726/678,
  33046. bottom: 35/761
  33047. },
  33048. form: "anthro",
  33049. default: true
  33050. },
  33051. backAnthro: {
  33052. height: math.unit(7, "feet"),
  33053. name: "Back",
  33054. image: {
  33055. source: "./media/characters/sini/back-anthro.svg",
  33056. extra: 743/701,
  33057. bottom: 12/755
  33058. },
  33059. form: "anthro",
  33060. },
  33061. frontAnthroNsfw: {
  33062. height: math.unit(7, "feet"),
  33063. name: "Front (NSFW)",
  33064. image: {
  33065. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33066. extra: 726/678,
  33067. bottom: 35/761
  33068. },
  33069. form: "anthro"
  33070. },
  33071. backAnthroNsfw: {
  33072. height: math.unit(7, "feet"),
  33073. name: "Back (NSFW)",
  33074. image: {
  33075. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33076. extra: 743/701,
  33077. bottom: 12/755
  33078. },
  33079. form: "anthro",
  33080. },
  33081. mawAnthro: {
  33082. height: math.unit(2.14, "feet"),
  33083. name: "Maw",
  33084. image: {
  33085. source: "./media/characters/sini/maw-anthro.svg"
  33086. },
  33087. form: "anthro"
  33088. },
  33089. dick: {
  33090. height: math.unit(1.45, "feet"),
  33091. name: "Dick",
  33092. image: {
  33093. source: "./media/characters/sini/dick-anthro.svg"
  33094. },
  33095. form: "anthro"
  33096. },
  33097. feral: {
  33098. height: math.unit(16, "feet"),
  33099. name: "Feral",
  33100. image: {
  33101. source: "./media/characters/sini/feral.svg",
  33102. extra: 814/605,
  33103. bottom: 11/825
  33104. },
  33105. form: "feral",
  33106. default: true
  33107. },
  33108. feralNsfw: {
  33109. height: math.unit(16, "feet"),
  33110. name: "Feral (NSFW)",
  33111. image: {
  33112. source: "./media/characters/sini/feral-nsfw.svg",
  33113. extra: 814/605,
  33114. bottom: 11/825
  33115. },
  33116. form: "feral"
  33117. },
  33118. mawFeral: {
  33119. height: math.unit(5.66, "feet"),
  33120. name: "Maw",
  33121. image: {
  33122. source: "./media/characters/sini/maw-feral.svg"
  33123. },
  33124. form: "feral",
  33125. },
  33126. pawFeral: {
  33127. height: math.unit(5.17, "feet"),
  33128. name: "Paw",
  33129. image: {
  33130. source: "./media/characters/sini/paw-feral.svg"
  33131. },
  33132. form: "feral",
  33133. },
  33134. rumpFeral: {
  33135. height: math.unit(13.11, "feet"),
  33136. name: "Rump",
  33137. image: {
  33138. source: "./media/characters/sini/rump-feral.svg"
  33139. },
  33140. form: "feral",
  33141. },
  33142. dickFeral: {
  33143. height: math.unit(1, "feet"),
  33144. name: "Dick",
  33145. image: {
  33146. source: "./media/characters/sini/dick-feral.svg"
  33147. },
  33148. form: "feral",
  33149. },
  33150. eyeFeral: {
  33151. height: math.unit(1.23, "feet"),
  33152. name: "Eye",
  33153. image: {
  33154. source: "./media/characters/sini/eye-feral.svg"
  33155. },
  33156. form: "feral",
  33157. },
  33158. },
  33159. [
  33160. {
  33161. name: "Normal",
  33162. height: math.unit(7, "feet"),
  33163. default: true,
  33164. form: "anthro"
  33165. },
  33166. {
  33167. name: "Normal",
  33168. height: math.unit(16, "feet"),
  33169. default: true,
  33170. form: "feral"
  33171. },
  33172. ],
  33173. {
  33174. "anthro": {
  33175. name: "Anthro",
  33176. default: true
  33177. },
  33178. "feral": {
  33179. name: "Feral",
  33180. }
  33181. }
  33182. ))
  33183. characterMakers.push(() => makeCharacter(
  33184. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33185. {
  33186. side: {
  33187. height: math.unit(13, "meters"),
  33188. weight: math.unit(9072, "kg"),
  33189. name: "Side",
  33190. image: {
  33191. source: "./media/characters/raylldo/side.svg",
  33192. extra: 403/344,
  33193. bottom: 42/445
  33194. }
  33195. },
  33196. leaping: {
  33197. height: math.unit(12.3, "meters"),
  33198. weight: math.unit(9072, "kg"),
  33199. name: "Leaping",
  33200. image: {
  33201. source: "./media/characters/raylldo/leaping.svg",
  33202. extra: 470/249,
  33203. bottom: 13/483
  33204. }
  33205. },
  33206. flying: {
  33207. height: math.unit(18, "meters"),
  33208. weight: math.unit(9072, "kg"),
  33209. name: "Flying",
  33210. image: {
  33211. source: "./media/characters/raylldo/flying.svg"
  33212. }
  33213. },
  33214. head: {
  33215. height: math.unit(5.85, "meters"),
  33216. name: "Head",
  33217. image: {
  33218. source: "./media/characters/raylldo/head.svg"
  33219. }
  33220. },
  33221. maw: {
  33222. height: math.unit(5.32, "meters"),
  33223. name: "Maw",
  33224. image: {
  33225. source: "./media/characters/raylldo/maw.svg"
  33226. }
  33227. },
  33228. eye: {
  33229. height: math.unit(0.54, "meters"),
  33230. name: "Eye",
  33231. image: {
  33232. source: "./media/characters/raylldo/eye.svg"
  33233. }
  33234. },
  33235. },
  33236. [
  33237. {
  33238. name: "Normal",
  33239. height: math.unit(13, "meters"),
  33240. default: true
  33241. },
  33242. ]
  33243. ))
  33244. characterMakers.push(() => makeCharacter(
  33245. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33246. {
  33247. anthroFront: {
  33248. height: math.unit(9, "feet"),
  33249. weight: math.unit(600, "lb"),
  33250. name: "Anthro (Front)",
  33251. image: {
  33252. source: "./media/characters/glint/anthro-front.svg",
  33253. extra: 1097/1018,
  33254. bottom: 28/1125
  33255. }
  33256. },
  33257. anthroBack: {
  33258. height: math.unit(9, "feet"),
  33259. weight: math.unit(600, "lb"),
  33260. name: "Anthro (Back)",
  33261. image: {
  33262. source: "./media/characters/glint/anthro-back.svg",
  33263. extra: 1154/997,
  33264. bottom: 36/1190
  33265. }
  33266. },
  33267. feral: {
  33268. height: math.unit(11, "feet"),
  33269. weight: math.unit(50000, "lb"),
  33270. name: "Feral",
  33271. image: {
  33272. source: "./media/characters/glint/feral.svg",
  33273. extra: 3035/1585,
  33274. bottom: 1169/4204
  33275. }
  33276. },
  33277. dickAnthro: {
  33278. height: math.unit(0.7, "meters"),
  33279. name: "Dick (Anthro)",
  33280. image: {
  33281. source: "./media/characters/glint/dick-anthro.svg"
  33282. }
  33283. },
  33284. dickFeral: {
  33285. height: math.unit(2.65, "meters"),
  33286. name: "Dick (Feral)",
  33287. image: {
  33288. source: "./media/characters/glint/dick-feral.svg"
  33289. }
  33290. },
  33291. slitHidden: {
  33292. height: math.unit(5.85, "meters"),
  33293. name: "Slit (Hidden)",
  33294. image: {
  33295. source: "./media/characters/glint/slit-hidden.svg"
  33296. }
  33297. },
  33298. slitErect: {
  33299. height: math.unit(5.85, "meters"),
  33300. name: "Slit (Erect)",
  33301. image: {
  33302. source: "./media/characters/glint/slit-erect.svg"
  33303. }
  33304. },
  33305. mawAnthro: {
  33306. height: math.unit(0.63, "meters"),
  33307. name: "Maw (Anthro)",
  33308. image: {
  33309. source: "./media/characters/glint/maw.svg"
  33310. }
  33311. },
  33312. mawFeral: {
  33313. height: math.unit(2.89, "meters"),
  33314. name: "Maw (Feral)",
  33315. image: {
  33316. source: "./media/characters/glint/maw.svg"
  33317. }
  33318. },
  33319. },
  33320. [
  33321. {
  33322. name: "Normal",
  33323. height: math.unit(9, "feet"),
  33324. default: true
  33325. },
  33326. ]
  33327. ))
  33328. characterMakers.push(() => makeCharacter(
  33329. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33330. {
  33331. side: {
  33332. height: math.unit(15, "feet"),
  33333. weight: math.unit(5000, "kg"),
  33334. name: "Side",
  33335. image: {
  33336. source: "./media/characters/kairne/side.svg",
  33337. extra: 979/811,
  33338. bottom: 13/992
  33339. }
  33340. },
  33341. front: {
  33342. height: math.unit(15, "feet"),
  33343. weight: math.unit(5000, "kg"),
  33344. name: "Front",
  33345. image: {
  33346. source: "./media/characters/kairne/front.svg",
  33347. extra: 908/814,
  33348. bottom: 26/934
  33349. }
  33350. },
  33351. sideNsfw: {
  33352. height: math.unit(15, "feet"),
  33353. weight: math.unit(5000, "kg"),
  33354. name: "Side (NSFW)",
  33355. image: {
  33356. source: "./media/characters/kairne/side-nsfw.svg",
  33357. extra: 979/811,
  33358. bottom: 13/992
  33359. }
  33360. },
  33361. frontNsfw: {
  33362. height: math.unit(15, "feet"),
  33363. weight: math.unit(5000, "kg"),
  33364. name: "Front (NSFW)",
  33365. image: {
  33366. source: "./media/characters/kairne/front-nsfw.svg",
  33367. extra: 908/814,
  33368. bottom: 26/934
  33369. }
  33370. },
  33371. dickCaged: {
  33372. height: math.unit(0.65, "meters"),
  33373. name: "Dick-caged",
  33374. image: {
  33375. source: "./media/characters/kairne/dick-caged.svg"
  33376. }
  33377. },
  33378. dick: {
  33379. height: math.unit(0.79, "meters"),
  33380. name: "Dick",
  33381. image: {
  33382. source: "./media/characters/kairne/dick.svg"
  33383. }
  33384. },
  33385. genitals: {
  33386. height: math.unit(1.29, "meters"),
  33387. name: "Genitals",
  33388. image: {
  33389. source: "./media/characters/kairne/genitals.svg"
  33390. }
  33391. },
  33392. maw: {
  33393. height: math.unit(1.73, "meters"),
  33394. name: "Maw",
  33395. image: {
  33396. source: "./media/characters/kairne/maw.svg"
  33397. }
  33398. },
  33399. },
  33400. [
  33401. {
  33402. name: "Normal",
  33403. height: math.unit(15, "feet"),
  33404. default: true
  33405. },
  33406. ]
  33407. ))
  33408. characterMakers.push(() => makeCharacter(
  33409. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33410. {
  33411. front: {
  33412. height: math.unit(5 + 8/12, "feet"),
  33413. weight: math.unit(139, "lb"),
  33414. name: "Front",
  33415. image: {
  33416. source: "./media/characters/biscuit-jackal/front.svg",
  33417. extra: 2106/1961,
  33418. bottom: 58/2164
  33419. }
  33420. },
  33421. back: {
  33422. height: math.unit(5 + 8/12, "feet"),
  33423. weight: math.unit(139, "lb"),
  33424. name: "Back",
  33425. image: {
  33426. source: "./media/characters/biscuit-jackal/back.svg",
  33427. extra: 2132/1976,
  33428. bottom: 57/2189
  33429. }
  33430. },
  33431. werejackal: {
  33432. height: math.unit(6 + 3/12, "feet"),
  33433. weight: math.unit(188, "lb"),
  33434. name: "Werejackal",
  33435. image: {
  33436. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33437. extra: 2373/2178,
  33438. bottom: 53/2426
  33439. }
  33440. },
  33441. },
  33442. [
  33443. {
  33444. name: "Normal",
  33445. height: math.unit(5 + 8/12, "feet"),
  33446. default: true
  33447. },
  33448. ]
  33449. ))
  33450. characterMakers.push(() => makeCharacter(
  33451. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33452. {
  33453. front: {
  33454. height: math.unit(140, "cm"),
  33455. weight: math.unit(45, "kg"),
  33456. name: "Front",
  33457. image: {
  33458. source: "./media/characters/tayra-white/front.svg",
  33459. extra: 2229/2192,
  33460. bottom: 75/2304
  33461. }
  33462. },
  33463. },
  33464. [
  33465. {
  33466. name: "Normal",
  33467. height: math.unit(140, "cm"),
  33468. default: true
  33469. },
  33470. ]
  33471. ))
  33472. characterMakers.push(() => makeCharacter(
  33473. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33474. {
  33475. front: {
  33476. height: math.unit(4 + 5/12, "feet"),
  33477. name: "Front",
  33478. image: {
  33479. source: "./media/characters/scoop/front.svg",
  33480. extra: 1257/1136,
  33481. bottom: 69/1326
  33482. }
  33483. },
  33484. back: {
  33485. height: math.unit(4 + 5/12, "feet"),
  33486. name: "Back",
  33487. image: {
  33488. source: "./media/characters/scoop/back.svg",
  33489. extra: 1321/1152,
  33490. bottom: 32/1353
  33491. }
  33492. },
  33493. maw: {
  33494. height: math.unit(0.68, "feet"),
  33495. name: "Maw",
  33496. image: {
  33497. source: "./media/characters/scoop/maw.svg"
  33498. }
  33499. },
  33500. },
  33501. [
  33502. {
  33503. name: "Really Small",
  33504. height: math.unit(1, "mm")
  33505. },
  33506. {
  33507. name: "Micro",
  33508. height: math.unit(1, "inch")
  33509. },
  33510. {
  33511. name: "Normal",
  33512. height: math.unit(4 + 5/12, "feet"),
  33513. default: true
  33514. },
  33515. {
  33516. name: "Macro",
  33517. height: math.unit(200, "feet")
  33518. },
  33519. {
  33520. name: "Megamacro",
  33521. height: math.unit(3240, "feet")
  33522. },
  33523. {
  33524. name: "Teramacro",
  33525. height: math.unit(2500, "miles")
  33526. },
  33527. ]
  33528. ))
  33529. characterMakers.push(() => makeCharacter(
  33530. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33531. {
  33532. front: {
  33533. height: math.unit(15 + 7/12, "feet"),
  33534. name: "Front",
  33535. image: {
  33536. source: "./media/characters/saphinara/front.svg",
  33537. extra: 604/546,
  33538. bottom: 19/623
  33539. }
  33540. },
  33541. side: {
  33542. height: math.unit(15 + 7/12, "feet"),
  33543. name: "Side",
  33544. image: {
  33545. source: "./media/characters/saphinara/side.svg",
  33546. extra: 605/547,
  33547. bottom: 6/611
  33548. }
  33549. },
  33550. back: {
  33551. height: math.unit(15 + 7/12, "feet"),
  33552. name: "Back",
  33553. image: {
  33554. source: "./media/characters/saphinara/back.svg",
  33555. extra: 591/531,
  33556. bottom: 13/604
  33557. }
  33558. },
  33559. frontTail: {
  33560. height: math.unit(15 + 7/12, "feet"),
  33561. name: "Front (Full Tail)",
  33562. image: {
  33563. source: "./media/characters/saphinara/front-tail.svg",
  33564. extra: 748/547,
  33565. bottom: 66/814
  33566. }
  33567. },
  33568. },
  33569. [
  33570. {
  33571. name: "Normal",
  33572. height: math.unit(15 + 7/12, "feet"),
  33573. default: true
  33574. },
  33575. {
  33576. name: "Angry",
  33577. height: math.unit(30 + 6/12, "feet")
  33578. },
  33579. {
  33580. name: "Enraged",
  33581. height: math.unit(102 + 1/12, "feet")
  33582. },
  33583. ]
  33584. ))
  33585. characterMakers.push(() => makeCharacter(
  33586. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33587. {
  33588. front: {
  33589. height: math.unit(6 + 8/12, "feet"),
  33590. weight: math.unit(300, "lb"),
  33591. name: "Front",
  33592. image: {
  33593. source: "./media/characters/jrain/front.svg",
  33594. extra: 3039/2865,
  33595. bottom: 399/3438
  33596. }
  33597. },
  33598. back: {
  33599. height: math.unit(6 + 8/12, "feet"),
  33600. weight: math.unit(300, "lb"),
  33601. name: "Back",
  33602. image: {
  33603. source: "./media/characters/jrain/back.svg",
  33604. extra: 3089/2938,
  33605. bottom: 172/3261
  33606. }
  33607. },
  33608. head: {
  33609. height: math.unit(2.14, "feet"),
  33610. name: "Head",
  33611. image: {
  33612. source: "./media/characters/jrain/head.svg"
  33613. }
  33614. },
  33615. maw: {
  33616. height: math.unit(1.77, "feet"),
  33617. name: "Maw",
  33618. image: {
  33619. source: "./media/characters/jrain/maw.svg"
  33620. }
  33621. },
  33622. leftHand: {
  33623. height: math.unit(1.1, "feet"),
  33624. name: "Left Hand",
  33625. image: {
  33626. source: "./media/characters/jrain/left-hand.svg"
  33627. }
  33628. },
  33629. rightHand: {
  33630. height: math.unit(1.1, "feet"),
  33631. name: "Right Hand",
  33632. image: {
  33633. source: "./media/characters/jrain/right-hand.svg"
  33634. }
  33635. },
  33636. eye: {
  33637. height: math.unit(0.35, "feet"),
  33638. name: "Eye",
  33639. image: {
  33640. source: "./media/characters/jrain/eye.svg"
  33641. }
  33642. },
  33643. },
  33644. [
  33645. {
  33646. name: "Normal",
  33647. height: math.unit(6 + 8/12, "feet"),
  33648. default: true
  33649. },
  33650. {
  33651. name: "Casually Large",
  33652. height: math.unit(25, "feet")
  33653. },
  33654. {
  33655. name: "Giant",
  33656. height: math.unit(100, "feet")
  33657. },
  33658. {
  33659. name: "Kaiju",
  33660. height: math.unit(300, "feet")
  33661. },
  33662. ]
  33663. ))
  33664. characterMakers.push(() => makeCharacter(
  33665. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33666. {
  33667. dragon: {
  33668. height: math.unit(5, "meters"),
  33669. name: "Dragon",
  33670. image: {
  33671. source: "./media/characters/sabrina/dragon.svg",
  33672. extra: 3670 / 2365,
  33673. bottom: 333 / 4003
  33674. }
  33675. },
  33676. gryphon: {
  33677. height: math.unit(3, "meters"),
  33678. name: "Gryphon",
  33679. image: {
  33680. source: "./media/characters/sabrina/gryphon.svg",
  33681. extra: 1576 / 945,
  33682. bottom: 71 / 1647
  33683. }
  33684. },
  33685. snake: {
  33686. height: math.unit(12, "meters"),
  33687. name: "Snake",
  33688. image: {
  33689. source: "./media/characters/sabrina/snake.svg",
  33690. extra: 1758 / 1320,
  33691. bottom: 186 / 1944
  33692. }
  33693. },
  33694. collar: {
  33695. height: math.unit(1.86, "meters"),
  33696. name: "Collar",
  33697. image: {
  33698. source: "./media/characters/sabrina/collar.svg"
  33699. }
  33700. },
  33701. eye: {
  33702. height: math.unit(0.53, "meters"),
  33703. name: "Eye",
  33704. image: {
  33705. source: "./media/characters/sabrina/eye.svg"
  33706. }
  33707. },
  33708. foot: {
  33709. height: math.unit(1.86, "meters"),
  33710. name: "Foot",
  33711. image: {
  33712. source: "./media/characters/sabrina/foot.svg"
  33713. }
  33714. },
  33715. hand: {
  33716. height: math.unit(1.32, "meters"),
  33717. name: "Hand",
  33718. image: {
  33719. source: "./media/characters/sabrina/hand.svg"
  33720. }
  33721. },
  33722. head: {
  33723. height: math.unit(2.44, "meters"),
  33724. name: "Head",
  33725. image: {
  33726. source: "./media/characters/sabrina/head.svg"
  33727. }
  33728. },
  33729. headAngry: {
  33730. height: math.unit(2.44, "meters"),
  33731. name: "Head (Angry))",
  33732. image: {
  33733. source: "./media/characters/sabrina/head-angry.svg"
  33734. }
  33735. },
  33736. maw: {
  33737. height: math.unit(1.65, "meters"),
  33738. name: "Maw",
  33739. image: {
  33740. source: "./media/characters/sabrina/maw.svg"
  33741. }
  33742. },
  33743. spikes: {
  33744. height: math.unit(1.69, "meters"),
  33745. name: "Spikes",
  33746. image: {
  33747. source: "./media/characters/sabrina/spikes.svg"
  33748. }
  33749. },
  33750. stomach: {
  33751. height: math.unit(1.15, "meters"),
  33752. name: "Stomach",
  33753. image: {
  33754. source: "./media/characters/sabrina/stomach.svg"
  33755. }
  33756. },
  33757. tongue: {
  33758. height: math.unit(1.27, "meters"),
  33759. name: "Tongue",
  33760. image: {
  33761. source: "./media/characters/sabrina/tongue.svg"
  33762. }
  33763. },
  33764. wingDorsal: {
  33765. height: math.unit(4.85, "meters"),
  33766. name: "Wing (Dorsal)",
  33767. image: {
  33768. source: "./media/characters/sabrina/wing-dorsal.svg"
  33769. }
  33770. },
  33771. wingVentral: {
  33772. height: math.unit(4.85, "meters"),
  33773. name: "Wing (Ventral)",
  33774. image: {
  33775. source: "./media/characters/sabrina/wing-ventral.svg"
  33776. }
  33777. },
  33778. },
  33779. [
  33780. {
  33781. name: "Normal",
  33782. height: math.unit(5, "meters"),
  33783. default: true
  33784. },
  33785. ]
  33786. ))
  33787. characterMakers.push(() => makeCharacter(
  33788. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33789. {
  33790. frontMaid: {
  33791. height: math.unit(5 + 5/12, "feet"),
  33792. weight: math.unit(130, "lb"),
  33793. name: "Front (Maid)",
  33794. image: {
  33795. source: "./media/characters/midnight-tales/front-maid.svg",
  33796. extra: 489/454,
  33797. bottom: 61/550
  33798. }
  33799. },
  33800. frontFormal: {
  33801. height: math.unit(5 + 5/12, "feet"),
  33802. weight: math.unit(130, "lb"),
  33803. name: "Front (Formal)",
  33804. image: {
  33805. source: "./media/characters/midnight-tales/front-formal.svg",
  33806. extra: 489/454,
  33807. bottom: 61/550
  33808. }
  33809. },
  33810. back: {
  33811. height: math.unit(5 + 5/12, "feet"),
  33812. weight: math.unit(130, "lb"),
  33813. name: "Back",
  33814. image: {
  33815. source: "./media/characters/midnight-tales/back.svg",
  33816. extra: 498/456,
  33817. bottom: 33/531
  33818. }
  33819. },
  33820. frontBeast: {
  33821. height: math.unit(40, "feet"),
  33822. weight: math.unit(64000, "lb"),
  33823. name: "Front (Beast)",
  33824. image: {
  33825. source: "./media/characters/midnight-tales/front-beast.svg",
  33826. extra: 927/860,
  33827. bottom: 53/980
  33828. }
  33829. },
  33830. backBeast: {
  33831. height: math.unit(40, "feet"),
  33832. weight: math.unit(64000, "lb"),
  33833. name: "Back (Beast)",
  33834. image: {
  33835. source: "./media/characters/midnight-tales/back-beast.svg",
  33836. extra: 929/855,
  33837. bottom: 16/945
  33838. }
  33839. },
  33840. footBeast: {
  33841. height: math.unit(6.7, "feet"),
  33842. name: "Foot (Beast)",
  33843. image: {
  33844. source: "./media/characters/midnight-tales/foot-beast.svg"
  33845. }
  33846. },
  33847. headBeast: {
  33848. height: math.unit(8, "feet"),
  33849. name: "Head (Beast)",
  33850. image: {
  33851. source: "./media/characters/midnight-tales/head-beast.svg"
  33852. }
  33853. },
  33854. },
  33855. [
  33856. {
  33857. name: "Normal",
  33858. height: math.unit(5 + 5 / 12, "feet"),
  33859. default: true
  33860. },
  33861. {
  33862. name: "Macro",
  33863. height: math.unit(25, "feet")
  33864. },
  33865. ]
  33866. ))
  33867. characterMakers.push(() => makeCharacter(
  33868. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33869. {
  33870. front: {
  33871. height: math.unit(5 + 10/12, "feet"),
  33872. name: "Front",
  33873. image: {
  33874. source: "./media/characters/argon/front.svg",
  33875. extra: 2009/1935,
  33876. bottom: 118/2127
  33877. }
  33878. },
  33879. back: {
  33880. height: math.unit(5 + 10/12, "feet"),
  33881. name: "Back",
  33882. image: {
  33883. source: "./media/characters/argon/back.svg",
  33884. extra: 2047/1992,
  33885. bottom: 20/2067
  33886. }
  33887. },
  33888. frontDressed: {
  33889. height: math.unit(5 + 10/12, "feet"),
  33890. name: "Front (Dressed)",
  33891. image: {
  33892. source: "./media/characters/argon/front-dressed.svg",
  33893. extra: 2009/1935,
  33894. bottom: 118/2127
  33895. }
  33896. },
  33897. },
  33898. [
  33899. {
  33900. name: "Normal",
  33901. height: math.unit(5 + 10/12, "feet"),
  33902. default: true
  33903. },
  33904. ]
  33905. ))
  33906. characterMakers.push(() => makeCharacter(
  33907. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33908. {
  33909. front: {
  33910. height: math.unit(8 + 6/12, "feet"),
  33911. weight: math.unit(1150, "lb"),
  33912. name: "Front",
  33913. image: {
  33914. source: "./media/characters/kichi/front.svg",
  33915. extra: 1267/1164,
  33916. bottom: 61/1328
  33917. }
  33918. },
  33919. back: {
  33920. height: math.unit(8 + 6/12, "feet"),
  33921. weight: math.unit(1150, "lb"),
  33922. name: "Back",
  33923. image: {
  33924. source: "./media/characters/kichi/back.svg",
  33925. extra: 1273/1166,
  33926. bottom: 33/1306
  33927. }
  33928. },
  33929. },
  33930. [
  33931. {
  33932. name: "Normal",
  33933. height: math.unit(8 + 6/12, "feet"),
  33934. default: true
  33935. },
  33936. ]
  33937. ))
  33938. characterMakers.push(() => makeCharacter(
  33939. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33940. {
  33941. front: {
  33942. height: math.unit(6, "feet"),
  33943. weight: math.unit(210, "lb"),
  33944. name: "Front",
  33945. image: {
  33946. source: "./media/characters/manetel-greyscale/front.svg",
  33947. extra: 350/312,
  33948. bottom: 8/358
  33949. }
  33950. },
  33951. },
  33952. [
  33953. {
  33954. name: "Micro",
  33955. height: math.unit(2, "inches")
  33956. },
  33957. {
  33958. name: "Normal",
  33959. height: math.unit(6, "feet"),
  33960. default: true
  33961. },
  33962. {
  33963. name: "Minimacro",
  33964. height: math.unit(17, "feet")
  33965. },
  33966. {
  33967. name: "Macro",
  33968. height: math.unit(117, "feet")
  33969. },
  33970. ]
  33971. ))
  33972. characterMakers.push(() => makeCharacter(
  33973. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33974. {
  33975. side: {
  33976. height: math.unit(5 + 1/12, "feet"),
  33977. weight: math.unit(418, "lb"),
  33978. name: "Side",
  33979. image: {
  33980. source: "./media/characters/softpurr/side.svg",
  33981. extra: 1993/1945,
  33982. bottom: 134/2127
  33983. }
  33984. },
  33985. front: {
  33986. height: math.unit(5 + 1/12, "feet"),
  33987. weight: math.unit(418, "lb"),
  33988. name: "Front",
  33989. image: {
  33990. source: "./media/characters/softpurr/front.svg",
  33991. extra: 1950/1856,
  33992. bottom: 174/2124
  33993. }
  33994. },
  33995. paw: {
  33996. height: math.unit(1, "feet"),
  33997. name: "Paw",
  33998. image: {
  33999. source: "./media/characters/softpurr/paw.svg"
  34000. }
  34001. },
  34002. },
  34003. [
  34004. {
  34005. name: "Normal",
  34006. height: math.unit(5 + 1/12, "feet"),
  34007. default: true
  34008. },
  34009. ]
  34010. ))
  34011. characterMakers.push(() => makeCharacter(
  34012. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34013. {
  34014. front: {
  34015. height: math.unit(260, "meters"),
  34016. name: "Front",
  34017. image: {
  34018. source: "./media/characters/anahita/front.svg",
  34019. extra: 665/635,
  34020. bottom: 89/754
  34021. }
  34022. },
  34023. },
  34024. [
  34025. {
  34026. name: "Macro",
  34027. height: math.unit(260, "meters"),
  34028. default: true
  34029. },
  34030. ]
  34031. ))
  34032. characterMakers.push(() => makeCharacter(
  34033. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34034. {
  34035. front: {
  34036. height: math.unit(4 + 10/12, "feet"),
  34037. weight: math.unit(160, "lb"),
  34038. name: "Front",
  34039. image: {
  34040. source: "./media/characters/chip-mouse/front.svg",
  34041. extra: 3528/3408,
  34042. bottom: 0/3528
  34043. }
  34044. },
  34045. frontNsfw: {
  34046. height: math.unit(4 + 10/12, "feet"),
  34047. weight: math.unit(160, "lb"),
  34048. name: "Front (NSFW)",
  34049. image: {
  34050. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34051. extra: 3528/3408,
  34052. bottom: 0/3528
  34053. }
  34054. },
  34055. },
  34056. [
  34057. {
  34058. name: "Normal",
  34059. height: math.unit(4 + 10/12, "feet"),
  34060. default: true
  34061. },
  34062. ]
  34063. ))
  34064. characterMakers.push(() => makeCharacter(
  34065. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34066. {
  34067. side: {
  34068. height: math.unit(10, "feet"),
  34069. weight: math.unit(14000, "lb"),
  34070. name: "Side",
  34071. image: {
  34072. source: "./media/characters/kremm/side.svg",
  34073. extra: 1390/1053,
  34074. bottom: 90/1480
  34075. }
  34076. },
  34077. gut: {
  34078. height: math.unit(5.8, "feet"),
  34079. name: "Gut",
  34080. image: {
  34081. source: "./media/characters/kremm/gut.svg"
  34082. }
  34083. },
  34084. ass: {
  34085. height: math.unit(6.1, "feet"),
  34086. name: "Ass",
  34087. image: {
  34088. source: "./media/characters/kremm/ass.svg"
  34089. }
  34090. },
  34091. jaws: {
  34092. height: math.unit(2.2, "feet"),
  34093. name: "Jaws",
  34094. image: {
  34095. source: "./media/characters/kremm/jaws.svg"
  34096. }
  34097. },
  34098. dick: {
  34099. height: math.unit(4.26, "feet"),
  34100. name: "Dick",
  34101. image: {
  34102. source: "./media/characters/kremm/dick.svg"
  34103. }
  34104. },
  34105. },
  34106. [
  34107. {
  34108. name: "Normal",
  34109. height: math.unit(10, "feet"),
  34110. default: true
  34111. },
  34112. ]
  34113. ))
  34114. characterMakers.push(() => makeCharacter(
  34115. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34116. {
  34117. front: {
  34118. height: math.unit(30, "stories"),
  34119. name: "Front",
  34120. image: {
  34121. source: "./media/characters/kai/front.svg",
  34122. extra: 1892/1718,
  34123. bottom: 162/2054
  34124. }
  34125. },
  34126. },
  34127. [
  34128. {
  34129. name: "Macro",
  34130. height: math.unit(30, "stories"),
  34131. default: true
  34132. },
  34133. ]
  34134. ))
  34135. characterMakers.push(() => makeCharacter(
  34136. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34137. {
  34138. front: {
  34139. height: math.unit(6 + 4/12, "feet"),
  34140. weight: math.unit(145, "lb"),
  34141. name: "Front",
  34142. image: {
  34143. source: "./media/characters/sykes/front.svg",
  34144. extra: 1321 / 1187,
  34145. bottom: 66 / 1387
  34146. }
  34147. },
  34148. back: {
  34149. height: math.unit(6 + 4/12, "feet"),
  34150. weight: math.unit(145, "lb"),
  34151. name: "Back",
  34152. image: {
  34153. source: "./media/characters/sykes/back.svg",
  34154. extra: 1326/1181,
  34155. bottom: 31/1357
  34156. }
  34157. },
  34158. handBack: {
  34159. height: math.unit(0.9, "feet"),
  34160. name: "Hand (Back)",
  34161. image: {
  34162. source: "./media/characters/sykes/hand-back.svg"
  34163. }
  34164. },
  34165. handFront: {
  34166. height: math.unit(0.839, "feet"),
  34167. name: "Hand (Front)",
  34168. image: {
  34169. source: "./media/characters/sykes/hand-front.svg"
  34170. }
  34171. },
  34172. leftFoot: {
  34173. height: math.unit(1.2, "feet"),
  34174. name: "Foot (Left)",
  34175. image: {
  34176. source: "./media/characters/sykes/foot-left.svg"
  34177. }
  34178. },
  34179. rightFoot: {
  34180. height: math.unit(1.2, "feet"),
  34181. name: "Foot (Right)",
  34182. image: {
  34183. source: "./media/characters/sykes/foot-right.svg"
  34184. }
  34185. },
  34186. maw: {
  34187. height: math.unit(1.93, "feet"),
  34188. name: "Maw",
  34189. image: {
  34190. source: "./media/characters/sykes/maw.svg"
  34191. }
  34192. },
  34193. teeth: {
  34194. height: math.unit(0.51, "feet"),
  34195. name: "Teeth",
  34196. image: {
  34197. source: "./media/characters/sykes/teeth.svg"
  34198. }
  34199. },
  34200. tongue: {
  34201. height: math.unit(2.13, "feet"),
  34202. name: "Tongue",
  34203. image: {
  34204. source: "./media/characters/sykes/tongue.svg"
  34205. }
  34206. },
  34207. uvula: {
  34208. height: math.unit(0.16, "feet"),
  34209. name: "Uvula",
  34210. image: {
  34211. source: "./media/characters/sykes/uvula.svg"
  34212. }
  34213. },
  34214. collar: {
  34215. height: math.unit(0.287, "feet"),
  34216. name: "Collar",
  34217. image: {
  34218. source: "./media/characters/sykes/collar.svg"
  34219. }
  34220. },
  34221. },
  34222. [
  34223. {
  34224. name: "Shrunken",
  34225. height: math.unit(5, "inches")
  34226. },
  34227. {
  34228. name: "Normal",
  34229. height: math.unit(6 + 4 / 12, "feet"),
  34230. default: true
  34231. },
  34232. {
  34233. name: "Big",
  34234. height: math.unit(15, "feet")
  34235. },
  34236. ]
  34237. ))
  34238. characterMakers.push(() => makeCharacter(
  34239. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34240. {
  34241. front: {
  34242. height: math.unit(5 + 8/12, "feet"),
  34243. weight: math.unit(190, "lb"),
  34244. name: "Front",
  34245. image: {
  34246. source: "./media/characters/oven-otter/front.svg",
  34247. extra: 1809/1740,
  34248. bottom: 181/1990
  34249. }
  34250. },
  34251. back: {
  34252. height: math.unit(5 + 8/12, "feet"),
  34253. weight: math.unit(190, "lb"),
  34254. name: "Back",
  34255. image: {
  34256. source: "./media/characters/oven-otter/back.svg",
  34257. extra: 1709/1635,
  34258. bottom: 118/1827
  34259. }
  34260. },
  34261. hand: {
  34262. height: math.unit(1.07, "feet"),
  34263. name: "Hand",
  34264. image: {
  34265. source: "./media/characters/oven-otter/hand.svg"
  34266. }
  34267. },
  34268. beans: {
  34269. height: math.unit(1.74, "feet"),
  34270. name: "Beans",
  34271. image: {
  34272. source: "./media/characters/oven-otter/beans.svg"
  34273. }
  34274. },
  34275. },
  34276. [
  34277. {
  34278. name: "Micro",
  34279. height: math.unit(0.5, "inches")
  34280. },
  34281. {
  34282. name: "Normal",
  34283. height: math.unit(5 + 8/12, "feet"),
  34284. default: true
  34285. },
  34286. {
  34287. name: "Macro",
  34288. height: math.unit(250, "feet")
  34289. },
  34290. {
  34291. name: "Really High",
  34292. height: math.unit(420, "feet")
  34293. },
  34294. ]
  34295. ))
  34296. characterMakers.push(() => makeCharacter(
  34297. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34298. {
  34299. front: {
  34300. height: math.unit(5, "meters"),
  34301. weight: math.unit(292000000000000, "kg"),
  34302. name: "Front",
  34303. image: {
  34304. source: "./media/characters/devourer/front.svg",
  34305. extra: 1800/1733,
  34306. bottom: 211/2011
  34307. }
  34308. },
  34309. maw: {
  34310. height: math.unit(1.1, "meter"),
  34311. name: "Maw",
  34312. image: {
  34313. source: "./media/characters/devourer/maw.svg"
  34314. }
  34315. },
  34316. },
  34317. [
  34318. {
  34319. name: "Small",
  34320. height: math.unit(3, "meters")
  34321. },
  34322. {
  34323. name: "Large",
  34324. height: math.unit(5, "meters"),
  34325. default: true
  34326. },
  34327. ]
  34328. ))
  34329. characterMakers.push(() => makeCharacter(
  34330. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34331. {
  34332. front: {
  34333. height: math.unit(6, "feet"),
  34334. weight: math.unit(400, "lb"),
  34335. name: "Front",
  34336. image: {
  34337. source: "./media/characters/ellarby/front.svg",
  34338. extra: 1909/1763,
  34339. bottom: 80/1989
  34340. }
  34341. },
  34342. back: {
  34343. height: math.unit(6, "feet"),
  34344. weight: math.unit(400, "lb"),
  34345. name: "Back",
  34346. image: {
  34347. source: "./media/characters/ellarby/back.svg",
  34348. extra: 1914/1784,
  34349. bottom: 172/2086
  34350. }
  34351. },
  34352. },
  34353. [
  34354. {
  34355. name: "Mischief",
  34356. height: math.unit(18, "inches")
  34357. },
  34358. {
  34359. name: "Trouble",
  34360. height: math.unit(12, "feet")
  34361. },
  34362. {
  34363. name: "Havoc",
  34364. height: math.unit(200, "feet"),
  34365. default: true
  34366. },
  34367. {
  34368. name: "Pandemonium",
  34369. height: math.unit(1, "mile")
  34370. },
  34371. {
  34372. name: "Catastrophe",
  34373. height: math.unit(100, "miles")
  34374. },
  34375. ]
  34376. ))
  34377. characterMakers.push(() => makeCharacter(
  34378. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34379. {
  34380. front: {
  34381. height: math.unit(4.7, "meters"),
  34382. weight: math.unit(6500, "kg"),
  34383. name: "Front",
  34384. image: {
  34385. source: "./media/characters/vex/front.svg",
  34386. extra: 1288/1140,
  34387. bottom: 100/1388
  34388. }
  34389. },
  34390. },
  34391. [
  34392. {
  34393. name: "Normal",
  34394. height: math.unit(4.7, "meters"),
  34395. default: true
  34396. },
  34397. ]
  34398. ))
  34399. characterMakers.push(() => makeCharacter(
  34400. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34401. {
  34402. normal: {
  34403. height: math.unit(6, "feet"),
  34404. weight: math.unit(350, "lb"),
  34405. name: "Normal",
  34406. image: {
  34407. source: "./media/characters/teshy/normal.svg",
  34408. extra: 1795/1735,
  34409. bottom: 16/1811
  34410. }
  34411. },
  34412. monsterFront: {
  34413. height: math.unit(12, "feet"),
  34414. weight: math.unit(4700, "lb"),
  34415. name: "Monster (Front)",
  34416. image: {
  34417. source: "./media/characters/teshy/monster-front.svg",
  34418. extra: 2042/2034,
  34419. bottom: 128/2170
  34420. }
  34421. },
  34422. monsterSide: {
  34423. height: math.unit(12, "feet"),
  34424. weight: math.unit(4700, "lb"),
  34425. name: "Monster (Side)",
  34426. image: {
  34427. source: "./media/characters/teshy/monster-side.svg",
  34428. extra: 2067/2056,
  34429. bottom: 70/2137
  34430. }
  34431. },
  34432. monsterBack: {
  34433. height: math.unit(12, "feet"),
  34434. weight: math.unit(4700, "lb"),
  34435. name: "Monster (Back)",
  34436. image: {
  34437. source: "./media/characters/teshy/monster-back.svg",
  34438. extra: 1921/1914,
  34439. bottom: 171/2092
  34440. }
  34441. },
  34442. },
  34443. [
  34444. {
  34445. name: "Normal",
  34446. height: math.unit(6, "feet"),
  34447. default: true
  34448. },
  34449. ]
  34450. ))
  34451. characterMakers.push(() => makeCharacter(
  34452. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34453. {
  34454. front: {
  34455. height: math.unit(6, "feet"),
  34456. name: "Front",
  34457. image: {
  34458. source: "./media/characters/ramey/front.svg",
  34459. extra: 790/787,
  34460. bottom: 27/817
  34461. }
  34462. },
  34463. },
  34464. [
  34465. {
  34466. name: "Normal",
  34467. height: math.unit(6, "feet"),
  34468. default: true
  34469. },
  34470. ]
  34471. ))
  34472. characterMakers.push(() => makeCharacter(
  34473. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34474. {
  34475. front: {
  34476. height: math.unit(5 + 5/12, "feet"),
  34477. weight: math.unit(120, "lb"),
  34478. name: "Front",
  34479. image: {
  34480. source: "./media/characters/phirae/front.svg",
  34481. extra: 2491/2436,
  34482. bottom: 38/2529
  34483. }
  34484. },
  34485. },
  34486. [
  34487. {
  34488. name: "Normal",
  34489. height: math.unit(5 + 5/12, "feet"),
  34490. default: true
  34491. },
  34492. ]
  34493. ))
  34494. characterMakers.push(() => makeCharacter(
  34495. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34496. {
  34497. front: {
  34498. height: math.unit(5 + 3/12, "feet"),
  34499. name: "Front",
  34500. image: {
  34501. source: "./media/characters/stagglas/front.svg",
  34502. extra: 962/882,
  34503. bottom: 53/1015
  34504. }
  34505. },
  34506. feral: {
  34507. height: math.unit(335, "cm"),
  34508. name: "Feral",
  34509. image: {
  34510. source: "./media/characters/stagglas/feral.svg",
  34511. extra: 1732/1090,
  34512. bottom: 48/1780
  34513. }
  34514. },
  34515. },
  34516. [
  34517. {
  34518. name: "Normal",
  34519. height: math.unit(5 + 3/12, "feet"),
  34520. default: true
  34521. },
  34522. ]
  34523. ))
  34524. characterMakers.push(() => makeCharacter(
  34525. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34526. {
  34527. front: {
  34528. height: math.unit(5 + 4/12, "feet"),
  34529. weight: math.unit(145, "lb"),
  34530. name: "Front",
  34531. image: {
  34532. source: "./media/characters/starra/front.svg",
  34533. extra: 1790/1691,
  34534. bottom: 91/1881
  34535. }
  34536. },
  34537. },
  34538. [
  34539. {
  34540. name: "Normal",
  34541. height: math.unit(5 + 4/12, "feet"),
  34542. default: true
  34543. },
  34544. ]
  34545. ))
  34546. characterMakers.push(() => makeCharacter(
  34547. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34548. {
  34549. front: {
  34550. height: math.unit(2.2, "meters"),
  34551. name: "Front",
  34552. image: {
  34553. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34554. extra: 1194/1005,
  34555. bottom: 25/1219
  34556. }
  34557. },
  34558. },
  34559. [
  34560. {
  34561. name: "Normal",
  34562. height: math.unit(2.2, "meters"),
  34563. default: true
  34564. },
  34565. ]
  34566. ))
  34567. characterMakers.push(() => makeCharacter(
  34568. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34569. {
  34570. side: {
  34571. height: math.unit(8 + 2/12, "feet"),
  34572. weight: math.unit(1240, "lb"),
  34573. name: "Side",
  34574. image: {
  34575. source: "./media/characters/mika-valentine/side.svg",
  34576. extra: 2670/2501,
  34577. bottom: 250/2920
  34578. }
  34579. },
  34580. },
  34581. [
  34582. {
  34583. name: "Normal",
  34584. height: math.unit(8 + 2/12, "feet"),
  34585. default: true
  34586. },
  34587. ]
  34588. ))
  34589. characterMakers.push(() => makeCharacter(
  34590. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34591. {
  34592. front: {
  34593. height: math.unit(7 + 2/12, "feet"),
  34594. name: "Front",
  34595. image: {
  34596. source: "./media/characters/xoltol/front.svg",
  34597. extra: 2212/2124,
  34598. bottom: 84/2296
  34599. }
  34600. },
  34601. side: {
  34602. height: math.unit(7 + 2/12, "feet"),
  34603. name: "Side",
  34604. image: {
  34605. source: "./media/characters/xoltol/side.svg",
  34606. extra: 2273/2197,
  34607. bottom: 26/2299
  34608. }
  34609. },
  34610. hand: {
  34611. height: math.unit(2.5, "feet"),
  34612. name: "Hand",
  34613. image: {
  34614. source: "./media/characters/xoltol/hand.svg"
  34615. }
  34616. },
  34617. },
  34618. [
  34619. {
  34620. name: "Small-ish",
  34621. height: math.unit(5 + 11/12, "feet")
  34622. },
  34623. {
  34624. name: "Normal",
  34625. height: math.unit(7 + 2/12, "feet")
  34626. },
  34627. {
  34628. name: "\"Macro\"",
  34629. height: math.unit(14 + 9/12, "feet"),
  34630. default: true
  34631. },
  34632. {
  34633. name: "Alternate Height",
  34634. height: math.unit(20, "feet")
  34635. },
  34636. {
  34637. name: "Actually Macro",
  34638. height: math.unit(100, "feet")
  34639. },
  34640. ]
  34641. ))
  34642. characterMakers.push(() => makeCharacter(
  34643. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34644. {
  34645. front: {
  34646. height: math.unit(5 + 2/12, "feet"),
  34647. name: "Front",
  34648. image: {
  34649. source: "./media/characters/kotetsu-redwood/front.svg",
  34650. extra: 1053/942,
  34651. bottom: 60/1113
  34652. }
  34653. },
  34654. },
  34655. [
  34656. {
  34657. name: "Normal",
  34658. height: math.unit(5 + 2/12, "feet"),
  34659. default: true
  34660. },
  34661. ]
  34662. ))
  34663. characterMakers.push(() => makeCharacter(
  34664. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34665. {
  34666. front: {
  34667. height: math.unit(2.4, "meters"),
  34668. weight: math.unit(125, "kg"),
  34669. name: "Front",
  34670. image: {
  34671. source: "./media/characters/lilith/front.svg",
  34672. extra: 1590/1513,
  34673. bottom: 203/1793
  34674. }
  34675. },
  34676. },
  34677. [
  34678. {
  34679. name: "Humanoid",
  34680. height: math.unit(2.4, "meters")
  34681. },
  34682. {
  34683. name: "Normal",
  34684. height: math.unit(6, "meters"),
  34685. default: true
  34686. },
  34687. {
  34688. name: "Largest",
  34689. height: math.unit(55, "meters")
  34690. },
  34691. ]
  34692. ))
  34693. characterMakers.push(() => makeCharacter(
  34694. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34695. {
  34696. front: {
  34697. height: math.unit(8 + 4/12, "feet"),
  34698. weight: math.unit(535, "lb"),
  34699. name: "Front",
  34700. image: {
  34701. source: "./media/characters/beh'kah-bolger/front.svg",
  34702. extra: 1660/1603,
  34703. bottom: 37/1697
  34704. }
  34705. },
  34706. },
  34707. [
  34708. {
  34709. name: "Normal",
  34710. height: math.unit(8 + 4/12, "feet"),
  34711. default: true
  34712. },
  34713. {
  34714. name: "Kaiju",
  34715. height: math.unit(250, "feet")
  34716. },
  34717. {
  34718. name: "Still Growing",
  34719. height: math.unit(10, "miles")
  34720. },
  34721. {
  34722. name: "Continental",
  34723. height: math.unit(5000, "miles")
  34724. },
  34725. {
  34726. name: "Final Form",
  34727. height: math.unit(2500000, "miles")
  34728. },
  34729. ]
  34730. ))
  34731. characterMakers.push(() => makeCharacter(
  34732. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34733. {
  34734. front: {
  34735. height: math.unit(7 + 2/12, "feet"),
  34736. weight: math.unit(230, "kg"),
  34737. name: "Front",
  34738. image: {
  34739. source: "./media/characters/tatyana-milewska/front.svg",
  34740. extra: 1199/1150,
  34741. bottom: 86/1285
  34742. }
  34743. },
  34744. },
  34745. [
  34746. {
  34747. name: "Normal",
  34748. height: math.unit(7 + 2/12, "feet"),
  34749. default: true
  34750. },
  34751. {
  34752. name: "Big",
  34753. height: math.unit(12, "feet")
  34754. },
  34755. {
  34756. name: "Minimacro",
  34757. height: math.unit(20, "feet")
  34758. },
  34759. {
  34760. name: "Macro",
  34761. height: math.unit(120, "feet")
  34762. },
  34763. ]
  34764. ))
  34765. characterMakers.push(() => makeCharacter(
  34766. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34767. {
  34768. front: {
  34769. height: math.unit(7 + 8/12, "feet"),
  34770. weight: math.unit(152, "kg"),
  34771. name: "Front",
  34772. image: {
  34773. source: "./media/characters/helen-arri/front.svg",
  34774. extra: 440/423,
  34775. bottom: 14/454
  34776. }
  34777. },
  34778. back: {
  34779. height: math.unit(7 + 8/12, "feet"),
  34780. weight: math.unit(152, "kg"),
  34781. name: "Back",
  34782. image: {
  34783. source: "./media/characters/helen-arri/back.svg",
  34784. extra: 443/426,
  34785. bottom: 8/451
  34786. }
  34787. },
  34788. },
  34789. [
  34790. {
  34791. name: "Normal",
  34792. height: math.unit(7 + 8/12, "feet"),
  34793. default: true
  34794. },
  34795. {
  34796. name: "Big",
  34797. height: math.unit(14, "feet")
  34798. },
  34799. {
  34800. name: "Minimacro",
  34801. height: math.unit(24, "feet")
  34802. },
  34803. {
  34804. name: "Macro",
  34805. height: math.unit(140, "feet")
  34806. },
  34807. ]
  34808. ))
  34809. characterMakers.push(() => makeCharacter(
  34810. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34811. {
  34812. front: {
  34813. height: math.unit(6, "meters"),
  34814. name: "Front",
  34815. image: {
  34816. source: "./media/characters/ehanu-rehu/front.svg",
  34817. extra: 1800/1800,
  34818. bottom: 59/1859
  34819. }
  34820. },
  34821. },
  34822. [
  34823. {
  34824. name: "Normal",
  34825. height: math.unit(6, "meters"),
  34826. default: true
  34827. },
  34828. ]
  34829. ))
  34830. characterMakers.push(() => makeCharacter(
  34831. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34832. {
  34833. front: {
  34834. height: math.unit(7 + 3/12, "feet"),
  34835. name: "Front",
  34836. image: {
  34837. source: "./media/characters/renholder/front.svg",
  34838. extra: 3096/2960,
  34839. bottom: 250/3346
  34840. }
  34841. },
  34842. },
  34843. [
  34844. {
  34845. name: "Normal Bat",
  34846. height: math.unit(7 + 3/12, "feet"),
  34847. default: true
  34848. },
  34849. {
  34850. name: "Slightly Tall Bat",
  34851. height: math.unit(100, "feet")
  34852. },
  34853. {
  34854. name: "Big Bat",
  34855. height: math.unit(1000, "feet")
  34856. },
  34857. {
  34858. name: "City-Sized Bat",
  34859. height: math.unit(200000, "feet")
  34860. },
  34861. {
  34862. name: "Bigger Bat",
  34863. height: math.unit(10000, "miles")
  34864. },
  34865. {
  34866. name: "Solar Sized Bat",
  34867. height: math.unit(100, "AU")
  34868. },
  34869. {
  34870. name: "Galactic Bat",
  34871. height: math.unit(200000, "lightyears")
  34872. },
  34873. {
  34874. name: "Universally Known Bat",
  34875. height: math.unit(1, "universe")
  34876. },
  34877. ]
  34878. ))
  34879. characterMakers.push(() => makeCharacter(
  34880. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34881. {
  34882. front: {
  34883. height: math.unit(6 + 11/12, "feet"),
  34884. weight: math.unit(250, "lb"),
  34885. name: "Front",
  34886. image: {
  34887. source: "./media/characters/cookiecat/front.svg",
  34888. extra: 893/827,
  34889. bottom: 14/907
  34890. }
  34891. },
  34892. },
  34893. [
  34894. {
  34895. name: "Micro",
  34896. height: math.unit(3, "inches")
  34897. },
  34898. {
  34899. name: "Normal",
  34900. height: math.unit(6 + 11/12, "feet"),
  34901. default: true
  34902. },
  34903. {
  34904. name: "Macro",
  34905. height: math.unit(100, "feet")
  34906. },
  34907. {
  34908. name: "Macro+",
  34909. height: math.unit(404, "feet")
  34910. },
  34911. {
  34912. name: "Megamacro",
  34913. height: math.unit(165, "miles")
  34914. },
  34915. {
  34916. name: "Planetary",
  34917. height: math.unit(4600, "miles")
  34918. },
  34919. ]
  34920. ))
  34921. characterMakers.push(() => makeCharacter(
  34922. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34923. {
  34924. front: {
  34925. height: math.unit(10 + 3/12, "feet"),
  34926. weight: math.unit(1500, "lb"),
  34927. name: "Front",
  34928. image: {
  34929. source: "./media/characters/tux-kusanagi/front.svg",
  34930. extra: 944/840,
  34931. bottom: 39/983
  34932. }
  34933. },
  34934. back: {
  34935. height: math.unit(10 + 3/12, "feet"),
  34936. weight: math.unit(1500, "lb"),
  34937. name: "Back",
  34938. image: {
  34939. source: "./media/characters/tux-kusanagi/back.svg",
  34940. extra: 941/842,
  34941. bottom: 28/969
  34942. }
  34943. },
  34944. rump: {
  34945. height: math.unit(5.25, "feet"),
  34946. name: "Rump",
  34947. image: {
  34948. source: "./media/characters/tux-kusanagi/rump.svg"
  34949. }
  34950. },
  34951. beak: {
  34952. height: math.unit(1.54, "feet"),
  34953. name: "Beak",
  34954. image: {
  34955. source: "./media/characters/tux-kusanagi/beak.svg"
  34956. }
  34957. },
  34958. },
  34959. [
  34960. {
  34961. name: "Normal",
  34962. height: math.unit(10 + 3/12, "feet"),
  34963. default: true
  34964. },
  34965. ]
  34966. ))
  34967. characterMakers.push(() => makeCharacter(
  34968. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34969. {
  34970. front: {
  34971. height: math.unit(58, "feet"),
  34972. weight: math.unit(200, "tons"),
  34973. name: "Front",
  34974. image: {
  34975. source: "./media/characters/uzarmazari/front.svg",
  34976. extra: 1575/1455,
  34977. bottom: 152/1727
  34978. }
  34979. },
  34980. back: {
  34981. height: math.unit(58, "feet"),
  34982. weight: math.unit(200, "tons"),
  34983. name: "Back",
  34984. image: {
  34985. source: "./media/characters/uzarmazari/back.svg",
  34986. extra: 1585/1510,
  34987. bottom: 157/1742
  34988. }
  34989. },
  34990. head: {
  34991. height: math.unit(26, "feet"),
  34992. name: "Head",
  34993. image: {
  34994. source: "./media/characters/uzarmazari/head.svg"
  34995. }
  34996. },
  34997. },
  34998. [
  34999. {
  35000. name: "Normal",
  35001. height: math.unit(58, "feet"),
  35002. default: true
  35003. },
  35004. ]
  35005. ))
  35006. characterMakers.push(() => makeCharacter(
  35007. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35008. {
  35009. side: {
  35010. height: math.unit(15, "feet"),
  35011. name: "Side",
  35012. image: {
  35013. source: "./media/characters/akitu/side.svg",
  35014. extra: 1421/1321,
  35015. bottom: 157/1578
  35016. }
  35017. },
  35018. front: {
  35019. height: math.unit(15, "feet"),
  35020. name: "Front",
  35021. image: {
  35022. source: "./media/characters/akitu/front.svg",
  35023. extra: 1435/1326,
  35024. bottom: 232/1667
  35025. }
  35026. },
  35027. },
  35028. [
  35029. {
  35030. name: "Normal",
  35031. height: math.unit(15, "feet"),
  35032. default: true
  35033. },
  35034. ]
  35035. ))
  35036. characterMakers.push(() => makeCharacter(
  35037. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35038. {
  35039. front: {
  35040. height: math.unit(10 + 8/12, "feet"),
  35041. name: "Front",
  35042. image: {
  35043. source: "./media/characters/azalie-croixland/front.svg",
  35044. extra: 1972/1856,
  35045. bottom: 31/2003
  35046. }
  35047. },
  35048. },
  35049. [
  35050. {
  35051. name: "Original Height",
  35052. height: math.unit(5 + 4/12, "feet")
  35053. },
  35054. {
  35055. name: "Normal Height",
  35056. height: math.unit(10 + 8/12, "feet"),
  35057. default: true
  35058. },
  35059. ]
  35060. ))
  35061. characterMakers.push(() => makeCharacter(
  35062. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35063. {
  35064. side: {
  35065. height: math.unit(7 + 1/12, "feet"),
  35066. weight: math.unit(245, "lb"),
  35067. name: "Side",
  35068. image: {
  35069. source: "./media/characters/kavus-kazian/side.svg",
  35070. extra: 349/342,
  35071. bottom: 15/364
  35072. }
  35073. },
  35074. },
  35075. [
  35076. {
  35077. name: "Normal",
  35078. height: math.unit(7 + 1/12, "feet"),
  35079. default: true
  35080. },
  35081. ]
  35082. ))
  35083. characterMakers.push(() => makeCharacter(
  35084. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35085. {
  35086. normalFront: {
  35087. height: math.unit(5 + 11/12, "feet"),
  35088. name: "Front",
  35089. image: {
  35090. source: "./media/characters/moonlight-rose/normal-front.svg",
  35091. extra: 1980/1825,
  35092. bottom: 18/1998
  35093. },
  35094. form: "normal",
  35095. default: true
  35096. },
  35097. normalBack: {
  35098. height: math.unit(5 + 11/12, "feet"),
  35099. name: "Back",
  35100. image: {
  35101. source: "./media/characters/moonlight-rose/normal-back.svg",
  35102. extra: 2010/1839,
  35103. bottom: 10/2020
  35104. },
  35105. form: "normal"
  35106. },
  35107. demonFront: {
  35108. height: math.unit(1.5, "earths"),
  35109. name: "Front",
  35110. image: {
  35111. source: "./media/characters/moonlight-rose/demon.svg",
  35112. extra: 1400/1294,
  35113. bottom: 45/1445
  35114. },
  35115. form: "demon",
  35116. default: true
  35117. },
  35118. terraFront: {
  35119. height: math.unit(1.5, "earths"),
  35120. name: "Front",
  35121. image: {
  35122. source: "./media/characters/moonlight-rose/terra.svg"
  35123. },
  35124. form: "terra",
  35125. default: true
  35126. },
  35127. jupiterFront: {
  35128. height: math.unit(69911*2, "km"),
  35129. name: "Front",
  35130. image: {
  35131. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35132. extra: 1367/1286,
  35133. bottom: 55/1422
  35134. },
  35135. form: "jupiter",
  35136. default: true
  35137. },
  35138. neptuneFront: {
  35139. height: math.unit(24622*2, "feet"),
  35140. name: "Front",
  35141. image: {
  35142. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35143. extra: 1851/1712,
  35144. bottom: 0/1851
  35145. },
  35146. form: "neptune",
  35147. default: true
  35148. },
  35149. },
  35150. [
  35151. {
  35152. name: "\"Natural\" Height",
  35153. height: math.unit(5 + 11/12, "feet"),
  35154. form: "normal"
  35155. },
  35156. {
  35157. name: "Smallest comfortable size",
  35158. height: math.unit(40, "meters"),
  35159. form: "normal"
  35160. },
  35161. {
  35162. name: "Common size",
  35163. height: math.unit(50, "km"),
  35164. form: "normal",
  35165. default: true
  35166. },
  35167. {
  35168. name: "Normal",
  35169. height: math.unit(1.5, "earths"),
  35170. form: "demon",
  35171. default: true
  35172. },
  35173. {
  35174. name: "Universal",
  35175. height: math.unit(15, "universes"),
  35176. form: "demon"
  35177. },
  35178. {
  35179. name: "Earth",
  35180. height: math.unit(1.5, "earths"),
  35181. form: "terra",
  35182. default: true
  35183. },
  35184. {
  35185. name: "Super Earth",
  35186. height: math.unit(67.5, "earths"),
  35187. form: "terra"
  35188. },
  35189. {
  35190. name: "Doesn't fit in a solar system...",
  35191. height: math.unit(1, "galaxy"),
  35192. form: "terra"
  35193. },
  35194. {
  35195. name: "Saturn",
  35196. height: math.unit(58232*2, "km"),
  35197. form: "jupiter"
  35198. },
  35199. {
  35200. name: "Jupiter",
  35201. height: math.unit(69911*2, "km"),
  35202. form: "jupiter",
  35203. default: true
  35204. },
  35205. {
  35206. name: "HD 100546 b",
  35207. height: math.unit(482938, "km"),
  35208. form: "jupiter"
  35209. },
  35210. {
  35211. name: "Enceladus",
  35212. height: math.unit(513*2, "km"),
  35213. form: "neptune"
  35214. },
  35215. {
  35216. name: "Europe",
  35217. height: math.unit(1560*2, "km"),
  35218. form: "neptune"
  35219. },
  35220. {
  35221. name: "Neptune",
  35222. height: math.unit(24622*2, "km"),
  35223. form: "neptune",
  35224. default: true
  35225. },
  35226. {
  35227. name: "CoRoT-9b",
  35228. height: math.unit(75067*2, "km"),
  35229. form: "neptune"
  35230. },
  35231. ],
  35232. {
  35233. "normal": {
  35234. name: "Normal",
  35235. default: true
  35236. },
  35237. "demon": {
  35238. name: "Demon"
  35239. },
  35240. "terra": {
  35241. name: "Terra"
  35242. },
  35243. "jupiter": {
  35244. name: "Jupiter"
  35245. },
  35246. "neptune": {
  35247. name: "Neptune"
  35248. }
  35249. }
  35250. ))
  35251. characterMakers.push(() => makeCharacter(
  35252. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35253. {
  35254. front: {
  35255. height: math.unit(16, "feet"),
  35256. weight: math.unit(610, "kg"),
  35257. name: "Front",
  35258. image: {
  35259. source: "./media/characters/huckle/front.svg",
  35260. extra: 1731/1625,
  35261. bottom: 33/1764
  35262. }
  35263. },
  35264. back: {
  35265. height: math.unit(16, "feet"),
  35266. weight: math.unit(610, "kg"),
  35267. name: "Back",
  35268. image: {
  35269. source: "./media/characters/huckle/back.svg",
  35270. extra: 1738/1651,
  35271. bottom: 37/1775
  35272. }
  35273. },
  35274. laughing: {
  35275. height: math.unit(3.75, "feet"),
  35276. name: "Laughing",
  35277. image: {
  35278. source: "./media/characters/huckle/laughing.svg"
  35279. }
  35280. },
  35281. angry: {
  35282. height: math.unit(4.15, "feet"),
  35283. name: "Angry",
  35284. image: {
  35285. source: "./media/characters/huckle/angry.svg"
  35286. }
  35287. },
  35288. },
  35289. [
  35290. {
  35291. name: "Normal",
  35292. height: math.unit(16, "feet"),
  35293. default: true
  35294. },
  35295. {
  35296. name: "Mini Macro",
  35297. height: math.unit(463, "feet")
  35298. },
  35299. {
  35300. name: "Macro",
  35301. height: math.unit(1680, "meters")
  35302. },
  35303. {
  35304. name: "Mega Macro",
  35305. height: math.unit(175, "km")
  35306. },
  35307. {
  35308. name: "Terra Macro",
  35309. height: math.unit(32, "gigameters")
  35310. },
  35311. {
  35312. name: "Multiverse+",
  35313. height: math.unit(2.56e23, "yottameters")
  35314. },
  35315. ]
  35316. ))
  35317. characterMakers.push(() => makeCharacter(
  35318. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35319. {
  35320. front: {
  35321. height: math.unit(6 + 9/12, "feet"),
  35322. weight: math.unit(280, "lb"),
  35323. name: "Front",
  35324. image: {
  35325. source: "./media/characters/candy/front.svg",
  35326. extra: 234/217,
  35327. bottom: 11/245
  35328. }
  35329. },
  35330. },
  35331. [
  35332. {
  35333. name: "Really Small",
  35334. height: math.unit(0.1, "nm")
  35335. },
  35336. {
  35337. name: "Micro",
  35338. height: math.unit(2, "inches")
  35339. },
  35340. {
  35341. name: "Normal",
  35342. height: math.unit(6 + 9/12, "feet"),
  35343. default: true
  35344. },
  35345. {
  35346. name: "Small Macro",
  35347. height: math.unit(69, "feet")
  35348. },
  35349. {
  35350. name: "Macro",
  35351. height: math.unit(160, "feet")
  35352. },
  35353. {
  35354. name: "Megamacro",
  35355. height: math.unit(22000, "miles")
  35356. },
  35357. {
  35358. name: "Gigamacro",
  35359. height: math.unit(50000, "miles")
  35360. },
  35361. ]
  35362. ))
  35363. characterMakers.push(() => makeCharacter(
  35364. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35365. {
  35366. front: {
  35367. height: math.unit(4, "feet"),
  35368. weight: math.unit(90, "lb"),
  35369. name: "Front",
  35370. image: {
  35371. source: "./media/characters/joey-mcdonald/front.svg",
  35372. extra: 1059/852,
  35373. bottom: 33/1092
  35374. }
  35375. },
  35376. back: {
  35377. height: math.unit(4, "feet"),
  35378. weight: math.unit(90, "lb"),
  35379. name: "Back",
  35380. image: {
  35381. source: "./media/characters/joey-mcdonald/back.svg",
  35382. extra: 1077/879,
  35383. bottom: 5/1082
  35384. }
  35385. },
  35386. frontKobold: {
  35387. height: math.unit(4, "feet"),
  35388. weight: math.unit(100, "lb"),
  35389. name: "Front-kobold",
  35390. image: {
  35391. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35392. extra: 1480/1367,
  35393. bottom: 0/1480
  35394. }
  35395. },
  35396. backKobold: {
  35397. height: math.unit(4, "feet"),
  35398. weight: math.unit(100, "lb"),
  35399. name: "Back-kobold",
  35400. image: {
  35401. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35402. extra: 1449/1361,
  35403. bottom: 0/1449
  35404. }
  35405. },
  35406. },
  35407. [
  35408. {
  35409. name: "Normal",
  35410. height: math.unit(4, "feet"),
  35411. default: true
  35412. },
  35413. ]
  35414. ))
  35415. characterMakers.push(() => makeCharacter(
  35416. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35417. {
  35418. front: {
  35419. height: math.unit(12 + 6/12, "feet"),
  35420. name: "Front",
  35421. image: {
  35422. source: "./media/characters/kass-lockheed/front.svg",
  35423. extra: 354/343,
  35424. bottom: 9/363
  35425. }
  35426. },
  35427. back: {
  35428. height: math.unit(12 + 6/12, "feet"),
  35429. name: "Back",
  35430. image: {
  35431. source: "./media/characters/kass-lockheed/back.svg",
  35432. extra: 364/352,
  35433. bottom: 3/367
  35434. }
  35435. },
  35436. dick: {
  35437. height: math.unit(3.12, "feet"),
  35438. name: "Dick",
  35439. image: {
  35440. source: "./media/characters/kass-lockheed/dick.svg"
  35441. }
  35442. },
  35443. head: {
  35444. height: math.unit(2.6, "feet"),
  35445. name: "Head",
  35446. image: {
  35447. source: "./media/characters/kass-lockheed/head.svg"
  35448. }
  35449. },
  35450. bleh: {
  35451. height: math.unit(2.85, "feet"),
  35452. name: "Bleh",
  35453. image: {
  35454. source: "./media/characters/kass-lockheed/bleh.svg"
  35455. }
  35456. },
  35457. smug: {
  35458. height: math.unit(2.85, "feet"),
  35459. name: "Smug",
  35460. image: {
  35461. source: "./media/characters/kass-lockheed/smug.svg"
  35462. }
  35463. },
  35464. },
  35465. [
  35466. {
  35467. name: "Normal",
  35468. height: math.unit(12 + 6/12, "feet"),
  35469. default: true
  35470. },
  35471. ]
  35472. ))
  35473. characterMakers.push(() => makeCharacter(
  35474. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35475. {
  35476. front: {
  35477. height: math.unit(6 + 2/12, "feet"),
  35478. name: "Front",
  35479. image: {
  35480. source: "./media/characters/taylor/front.svg",
  35481. extra: 639/495,
  35482. bottom: 12/651
  35483. }
  35484. },
  35485. },
  35486. [
  35487. {
  35488. name: "Normal",
  35489. height: math.unit(6 + 2/12, "feet"),
  35490. default: true
  35491. },
  35492. {
  35493. name: "Big",
  35494. height: math.unit(15, "feet")
  35495. },
  35496. {
  35497. name: "Lorg",
  35498. height: math.unit(80, "feet")
  35499. },
  35500. {
  35501. name: "Too Lorg",
  35502. height: math.unit(120, "feet")
  35503. },
  35504. ]
  35505. ))
  35506. characterMakers.push(() => makeCharacter(
  35507. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35508. {
  35509. front: {
  35510. height: math.unit(15, "feet"),
  35511. name: "Front",
  35512. image: {
  35513. source: "./media/characters/kaizer/front.svg",
  35514. extra: 1612/1436,
  35515. bottom: 43/1655
  35516. }
  35517. },
  35518. },
  35519. [
  35520. {
  35521. name: "Normal",
  35522. height: math.unit(15, "feet"),
  35523. default: true
  35524. },
  35525. ]
  35526. ))
  35527. characterMakers.push(() => makeCharacter(
  35528. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35529. {
  35530. front: {
  35531. height: math.unit(2, "feet"),
  35532. weight: math.unit(30, "lb"),
  35533. name: "Front",
  35534. image: {
  35535. source: "./media/characters/sandy/front.svg",
  35536. extra: 1439/1307,
  35537. bottom: 194/1633
  35538. }
  35539. },
  35540. },
  35541. [
  35542. {
  35543. name: "Normal",
  35544. height: math.unit(2, "feet"),
  35545. default: true
  35546. },
  35547. ]
  35548. ))
  35549. characterMakers.push(() => makeCharacter(
  35550. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35551. {
  35552. front: {
  35553. height: math.unit(3, "feet"),
  35554. name: "Front",
  35555. image: {
  35556. source: "./media/characters/mellvi/front.svg",
  35557. extra: 1831/1630,
  35558. bottom: 58/1889
  35559. }
  35560. },
  35561. },
  35562. [
  35563. {
  35564. name: "Normal",
  35565. height: math.unit(3, "feet"),
  35566. default: true
  35567. },
  35568. ]
  35569. ))
  35570. characterMakers.push(() => makeCharacter(
  35571. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35572. {
  35573. front: {
  35574. height: math.unit(5 + 11/12, "feet"),
  35575. weight: math.unit(200, "lb"),
  35576. name: "Front",
  35577. image: {
  35578. source: "./media/characters/shirou/front.svg",
  35579. extra: 2491/2383,
  35580. bottom: 189/2680
  35581. }
  35582. },
  35583. back: {
  35584. height: math.unit(5 + 11/12, "feet"),
  35585. weight: math.unit(200, "lb"),
  35586. name: "Back",
  35587. image: {
  35588. source: "./media/characters/shirou/back.svg",
  35589. extra: 2554/2450,
  35590. bottom: 76/2630
  35591. }
  35592. },
  35593. },
  35594. [
  35595. {
  35596. name: "Normal",
  35597. height: math.unit(5 + 11/12, "feet"),
  35598. default: true
  35599. },
  35600. ]
  35601. ))
  35602. characterMakers.push(() => makeCharacter(
  35603. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35604. {
  35605. front: {
  35606. height: math.unit(6 + 3/12, "feet"),
  35607. weight: math.unit(177, "lb"),
  35608. name: "Front",
  35609. image: {
  35610. source: "./media/characters/noryu/front.svg",
  35611. extra: 973/885,
  35612. bottom: 10/983
  35613. }
  35614. },
  35615. },
  35616. [
  35617. {
  35618. name: "Normal",
  35619. height: math.unit(6 + 3/12, "feet"),
  35620. default: true
  35621. },
  35622. ]
  35623. ))
  35624. characterMakers.push(() => makeCharacter(
  35625. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35626. {
  35627. front: {
  35628. height: math.unit(5 + 6/12, "feet"),
  35629. weight: math.unit(170, "lb"),
  35630. name: "Front",
  35631. image: {
  35632. source: "./media/characters/mevolas-rubenido/front.svg",
  35633. extra: 2109/1901,
  35634. bottom: 96/2205
  35635. }
  35636. },
  35637. },
  35638. [
  35639. {
  35640. name: "Normal",
  35641. height: math.unit(5 + 6/12, "feet"),
  35642. default: true
  35643. },
  35644. ]
  35645. ))
  35646. characterMakers.push(() => makeCharacter(
  35647. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35648. {
  35649. front: {
  35650. height: math.unit(100, "feet"),
  35651. name: "Front",
  35652. image: {
  35653. source: "./media/characters/dee/front.svg",
  35654. extra: 2153/2036,
  35655. bottom: 59/2212
  35656. }
  35657. },
  35658. back: {
  35659. height: math.unit(100, "feet"),
  35660. name: "Back",
  35661. image: {
  35662. source: "./media/characters/dee/back.svg",
  35663. extra: 2183/2058,
  35664. bottom: 75/2258
  35665. }
  35666. },
  35667. foot: {
  35668. height: math.unit(19.43, "feet"),
  35669. name: "Foot",
  35670. image: {
  35671. source: "./media/characters/dee/foot.svg"
  35672. }
  35673. },
  35674. hoof: {
  35675. height: math.unit(20.6, "feet"),
  35676. name: "Hoof",
  35677. image: {
  35678. source: "./media/characters/dee/hoof.svg"
  35679. }
  35680. },
  35681. },
  35682. [
  35683. {
  35684. name: "Macro",
  35685. height: math.unit(100, "feet"),
  35686. default: true
  35687. },
  35688. ]
  35689. ))
  35690. characterMakers.push(() => makeCharacter(
  35691. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35692. {
  35693. front: {
  35694. height: math.unit(5 + 6/12, "feet"),
  35695. name: "Front",
  35696. image: {
  35697. source: "./media/characters/teh/front.svg",
  35698. extra: 1002/847,
  35699. bottom: 62/1064
  35700. }
  35701. },
  35702. },
  35703. [
  35704. {
  35705. name: "Normal",
  35706. height: math.unit(5 + 6/12, "feet"),
  35707. default: true
  35708. },
  35709. ]
  35710. ))
  35711. characterMakers.push(() => makeCharacter(
  35712. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35713. {
  35714. side: {
  35715. height: math.unit(6 + 1/12, "feet"),
  35716. weight: math.unit(204, "lb"),
  35717. name: "Side",
  35718. image: {
  35719. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35720. extra: 974/775,
  35721. bottom: 169/1143
  35722. }
  35723. },
  35724. sitting: {
  35725. height: math.unit(6 + 2/12, "feet"),
  35726. weight: math.unit(204, "lb"),
  35727. name: "Sitting",
  35728. image: {
  35729. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35730. extra: 1175/964,
  35731. bottom: 378/1553
  35732. }
  35733. },
  35734. },
  35735. [
  35736. {
  35737. name: "Normal",
  35738. height: math.unit(6 + 1/12, "feet"),
  35739. default: true
  35740. },
  35741. ]
  35742. ))
  35743. characterMakers.push(() => makeCharacter(
  35744. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35745. {
  35746. front: {
  35747. height: math.unit(6, "inches"),
  35748. name: "Front",
  35749. image: {
  35750. source: "./media/characters/tululi/front.svg",
  35751. extra: 1997/1876,
  35752. bottom: 20/2017
  35753. }
  35754. },
  35755. },
  35756. [
  35757. {
  35758. name: "Normal",
  35759. height: math.unit(6, "inches"),
  35760. default: true
  35761. },
  35762. ]
  35763. ))
  35764. characterMakers.push(() => makeCharacter(
  35765. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35766. {
  35767. front: {
  35768. height: math.unit(4 + 1/12, "feet"),
  35769. name: "Front",
  35770. image: {
  35771. source: "./media/characters/star/front.svg",
  35772. extra: 1493/1189,
  35773. bottom: 48/1541
  35774. }
  35775. },
  35776. },
  35777. [
  35778. {
  35779. name: "Normal",
  35780. height: math.unit(4 + 1/12, "feet"),
  35781. default: true
  35782. },
  35783. ]
  35784. ))
  35785. characterMakers.push(() => makeCharacter(
  35786. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35787. {
  35788. front: {
  35789. height: math.unit(6 + 3/12, "feet"),
  35790. name: "Front",
  35791. image: {
  35792. source: "./media/characters/comet/front.svg",
  35793. extra: 1681/1462,
  35794. bottom: 26/1707
  35795. }
  35796. },
  35797. },
  35798. [
  35799. {
  35800. name: "Normal",
  35801. height: math.unit(6 + 3/12, "feet"),
  35802. default: true
  35803. },
  35804. ]
  35805. ))
  35806. characterMakers.push(() => makeCharacter(
  35807. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35808. {
  35809. front: {
  35810. height: math.unit(950, "feet"),
  35811. name: "Front",
  35812. image: {
  35813. source: "./media/characters/vortex/front.svg",
  35814. extra: 1497/1434,
  35815. bottom: 56/1553
  35816. }
  35817. },
  35818. maw: {
  35819. height: math.unit(285, "feet"),
  35820. name: "Maw",
  35821. image: {
  35822. source: "./media/characters/vortex/maw.svg"
  35823. }
  35824. },
  35825. },
  35826. [
  35827. {
  35828. name: "Macro",
  35829. height: math.unit(950, "feet"),
  35830. default: true
  35831. },
  35832. ]
  35833. ))
  35834. characterMakers.push(() => makeCharacter(
  35835. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35836. {
  35837. front: {
  35838. height: math.unit(600, "feet"),
  35839. weight: math.unit(0.02, "grams"),
  35840. name: "Front",
  35841. image: {
  35842. source: "./media/characters/doodle/front.svg",
  35843. extra: 1578/1413,
  35844. bottom: 37/1615
  35845. }
  35846. },
  35847. },
  35848. [
  35849. {
  35850. name: "Macro",
  35851. height: math.unit(600, "feet"),
  35852. default: true
  35853. },
  35854. ]
  35855. ))
  35856. characterMakers.push(() => makeCharacter(
  35857. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35858. {
  35859. front: {
  35860. height: math.unit(6 + 6/12, "feet"),
  35861. name: "Front",
  35862. image: {
  35863. source: "./media/characters/jai/front.svg",
  35864. extra: 1645/1534,
  35865. bottom: 115/1760
  35866. }
  35867. },
  35868. },
  35869. [
  35870. {
  35871. name: "Normal",
  35872. height: math.unit(6 + 6/12, "feet"),
  35873. default: true
  35874. },
  35875. ]
  35876. ))
  35877. characterMakers.push(() => makeCharacter(
  35878. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35879. {
  35880. front: {
  35881. height: math.unit(6 + 8/12, "feet"),
  35882. name: "Front",
  35883. image: {
  35884. source: "./media/characters/pixel/front.svg",
  35885. extra: 1900/1735,
  35886. bottom: 63/1963
  35887. }
  35888. },
  35889. },
  35890. [
  35891. {
  35892. name: "Normal",
  35893. height: math.unit(6 + 8/12, "feet"),
  35894. default: true
  35895. },
  35896. ]
  35897. ))
  35898. characterMakers.push(() => makeCharacter(
  35899. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35900. {
  35901. back: {
  35902. height: math.unit(4 + 1/12, "feet"),
  35903. weight: math.unit(75, "lb"),
  35904. name: "Back",
  35905. image: {
  35906. source: "./media/characters/rhett/back.svg",
  35907. extra: 930/878,
  35908. bottom: 25/955
  35909. }
  35910. },
  35911. front: {
  35912. height: math.unit(4 + 1/12, "feet"),
  35913. weight: math.unit(75, "lb"),
  35914. name: "Front",
  35915. image: {
  35916. source: "./media/characters/rhett/front.svg",
  35917. extra: 1682/1586,
  35918. bottom: 92/1774
  35919. }
  35920. },
  35921. },
  35922. [
  35923. {
  35924. name: "Micro",
  35925. height: math.unit(8, "inches")
  35926. },
  35927. {
  35928. name: "Tiny",
  35929. height: math.unit(2, "feet")
  35930. },
  35931. {
  35932. name: "Normal",
  35933. height: math.unit(4 + 1/12, "feet"),
  35934. default: true
  35935. },
  35936. ]
  35937. ))
  35938. characterMakers.push(() => makeCharacter(
  35939. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35940. {
  35941. front: {
  35942. height: math.unit(3 + 3/12, "feet"),
  35943. name: "Front",
  35944. image: {
  35945. source: "./media/characters/penny/front.svg",
  35946. extra: 1406/1311,
  35947. bottom: 26/1432
  35948. }
  35949. },
  35950. },
  35951. [
  35952. {
  35953. name: "Normal",
  35954. height: math.unit(3 + 3/12, "feet"),
  35955. default: true
  35956. },
  35957. ]
  35958. ))
  35959. characterMakers.push(() => makeCharacter(
  35960. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35961. {
  35962. front: {
  35963. height: math.unit(4 + 11/12, "feet"),
  35964. name: "Front",
  35965. image: {
  35966. source: "./media/characters/monty/front.svg",
  35967. extra: 1479/1209,
  35968. bottom: 0/1479
  35969. }
  35970. },
  35971. },
  35972. [
  35973. {
  35974. name: "Normal",
  35975. height: math.unit(4 + 11/12, "feet"),
  35976. default: true
  35977. },
  35978. ]
  35979. ))
  35980. characterMakers.push(() => makeCharacter(
  35981. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35982. {
  35983. front: {
  35984. height: math.unit(8 + 4/12, "feet"),
  35985. name: "Front",
  35986. image: {
  35987. source: "./media/characters/sterling/front.svg",
  35988. extra: 1420/1236,
  35989. bottom: 27/1447
  35990. }
  35991. },
  35992. },
  35993. [
  35994. {
  35995. name: "Normal",
  35996. height: math.unit(8 + 4/12, "feet"),
  35997. default: true
  35998. },
  35999. ]
  36000. ))
  36001. characterMakers.push(() => makeCharacter(
  36002. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36003. {
  36004. front: {
  36005. height: math.unit(15, "feet"),
  36006. name: "Front",
  36007. image: {
  36008. source: "./media/characters/marble/front.svg",
  36009. extra: 973/937,
  36010. bottom: 32/1005
  36011. }
  36012. },
  36013. },
  36014. [
  36015. {
  36016. name: "Normal",
  36017. height: math.unit(15, "feet"),
  36018. default: true
  36019. },
  36020. ]
  36021. ))
  36022. characterMakers.push(() => makeCharacter(
  36023. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36024. {
  36025. front: {
  36026. height: math.unit(3, "inches"),
  36027. name: "Front",
  36028. image: {
  36029. source: "./media/characters/powder/front.svg",
  36030. extra: 1504/1334,
  36031. bottom: 518/2022
  36032. }
  36033. },
  36034. },
  36035. [
  36036. {
  36037. name: "Normal",
  36038. height: math.unit(3, "inches"),
  36039. default: true
  36040. },
  36041. ]
  36042. ))
  36043. characterMakers.push(() => makeCharacter(
  36044. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36045. {
  36046. front: {
  36047. height: math.unit(4 + 5/12, "feet"),
  36048. name: "Front",
  36049. image: {
  36050. source: "./media/characters/joey-raccoon/front.svg",
  36051. extra: 1273/1197,
  36052. bottom: 0/1273
  36053. }
  36054. },
  36055. },
  36056. [
  36057. {
  36058. name: "Normal",
  36059. height: math.unit(4 + 5/12, "feet"),
  36060. default: true
  36061. },
  36062. ]
  36063. ))
  36064. characterMakers.push(() => makeCharacter(
  36065. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36066. {
  36067. front: {
  36068. height: math.unit(8 + 4/12, "feet"),
  36069. name: "Front",
  36070. image: {
  36071. source: "./media/characters/vick/front.svg",
  36072. extra: 2187/2118,
  36073. bottom: 47/2234
  36074. }
  36075. },
  36076. },
  36077. [
  36078. {
  36079. name: "Normal",
  36080. height: math.unit(8 + 4/12, "feet"),
  36081. default: true
  36082. },
  36083. ]
  36084. ))
  36085. characterMakers.push(() => makeCharacter(
  36086. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36087. {
  36088. front: {
  36089. height: math.unit(5 + 5/12, "feet"),
  36090. name: "Front",
  36091. image: {
  36092. source: "./media/characters/mitsy/front.svg",
  36093. extra: 1842/1695,
  36094. bottom: 0/1842
  36095. }
  36096. },
  36097. },
  36098. [
  36099. {
  36100. name: "Normal",
  36101. height: math.unit(5 + 5/12, "feet"),
  36102. default: true
  36103. },
  36104. ]
  36105. ))
  36106. characterMakers.push(() => makeCharacter(
  36107. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36108. {
  36109. front: {
  36110. height: math.unit(6 + 3/12, "feet"),
  36111. name: "Front",
  36112. image: {
  36113. source: "./media/characters/silvy/front.svg",
  36114. extra: 1995/1836,
  36115. bottom: 225/2220
  36116. }
  36117. },
  36118. },
  36119. [
  36120. {
  36121. name: "Normal",
  36122. height: math.unit(6 + 3/12, "feet"),
  36123. default: true
  36124. },
  36125. ]
  36126. ))
  36127. characterMakers.push(() => makeCharacter(
  36128. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36129. {
  36130. front: {
  36131. height: math.unit(3 + 8/12, "feet"),
  36132. name: "Front",
  36133. image: {
  36134. source: "./media/characters/rodney/front.svg",
  36135. extra: 1956/1747,
  36136. bottom: 31/1987
  36137. }
  36138. },
  36139. frontDressed: {
  36140. height: math.unit(2.9, "feet"),
  36141. name: "Front (Dressed)",
  36142. image: {
  36143. source: "./media/characters/rodney/front-dressed.svg",
  36144. extra: 1382/1241,
  36145. bottom: 385/1767
  36146. }
  36147. },
  36148. },
  36149. [
  36150. {
  36151. name: "Normal",
  36152. height: math.unit(3 + 8/12, "feet"),
  36153. default: true
  36154. },
  36155. ]
  36156. ))
  36157. characterMakers.push(() => makeCharacter(
  36158. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36159. {
  36160. front: {
  36161. height: math.unit(5 + 9/12, "feet"),
  36162. weight: math.unit(194, "lbs"),
  36163. name: "Front",
  36164. image: {
  36165. source: "./media/characters/zakail-sudekai/front.svg",
  36166. extra: 2696/2533,
  36167. bottom: 248/2944
  36168. }
  36169. },
  36170. maw: {
  36171. height: math.unit(1.35, "feet"),
  36172. name: "Maw",
  36173. image: {
  36174. source: "./media/characters/zakail-sudekai/maw.svg"
  36175. }
  36176. },
  36177. },
  36178. [
  36179. {
  36180. name: "Normal",
  36181. height: math.unit(5 + 9/12, "feet"),
  36182. default: true
  36183. },
  36184. ]
  36185. ))
  36186. characterMakers.push(() => makeCharacter(
  36187. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36188. {
  36189. front: {
  36190. height: math.unit(8 + 4/12, "feet"),
  36191. weight: math.unit(1200, "lb"),
  36192. name: "Front",
  36193. image: {
  36194. source: "./media/characters/eleanor/front.svg",
  36195. extra: 1226/1192,
  36196. bottom: 52/1278
  36197. }
  36198. },
  36199. back: {
  36200. height: math.unit(8 + 4/12, "feet"),
  36201. weight: math.unit(1200, "lb"),
  36202. name: "Back",
  36203. image: {
  36204. source: "./media/characters/eleanor/back.svg",
  36205. extra: 1242/1184,
  36206. bottom: 60/1302
  36207. }
  36208. },
  36209. head: {
  36210. height: math.unit(2.62, "feet"),
  36211. name: "Head",
  36212. image: {
  36213. source: "./media/characters/eleanor/head.svg"
  36214. }
  36215. },
  36216. },
  36217. [
  36218. {
  36219. name: "Normal",
  36220. height: math.unit(8 + 4/12, "feet"),
  36221. default: true
  36222. },
  36223. ]
  36224. ))
  36225. characterMakers.push(() => makeCharacter(
  36226. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36227. {
  36228. front: {
  36229. height: math.unit(8 + 4/12, "feet"),
  36230. weight: math.unit(750, "lb"),
  36231. name: "Front",
  36232. image: {
  36233. source: "./media/characters/tanya/front.svg",
  36234. extra: 1749/1615,
  36235. bottom: 33/1782
  36236. }
  36237. },
  36238. },
  36239. [
  36240. {
  36241. name: "Normal",
  36242. height: math.unit(8 + 4/12, "feet"),
  36243. default: true
  36244. },
  36245. ]
  36246. ))
  36247. characterMakers.push(() => makeCharacter(
  36248. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36249. {
  36250. front: {
  36251. height: math.unit(5, "feet"),
  36252. weight: math.unit(225, "lb"),
  36253. name: "Front",
  36254. image: {
  36255. source: "./media/characters/cindy/front.svg",
  36256. extra: 1320/1250,
  36257. bottom: 42/1362
  36258. }
  36259. },
  36260. frontDressed: {
  36261. height: math.unit(5, "feet"),
  36262. weight: math.unit(225, "lb"),
  36263. name: "Front (Dressed)",
  36264. image: {
  36265. source: "./media/characters/cindy/front-dressed.svg",
  36266. extra: 1320/1250,
  36267. bottom: 42/1362
  36268. }
  36269. },
  36270. back: {
  36271. height: math.unit(5, "feet"),
  36272. weight: math.unit(225, "lb"),
  36273. name: "Back",
  36274. image: {
  36275. source: "./media/characters/cindy/back.svg",
  36276. extra: 1384/1346,
  36277. bottom: 14/1398
  36278. }
  36279. },
  36280. },
  36281. [
  36282. {
  36283. name: "Normal",
  36284. height: math.unit(5, "feet"),
  36285. default: true
  36286. },
  36287. ]
  36288. ))
  36289. characterMakers.push(() => makeCharacter(
  36290. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36291. {
  36292. front: {
  36293. height: math.unit(6 + 9/12, "feet"),
  36294. weight: math.unit(440, "lb"),
  36295. name: "Front",
  36296. image: {
  36297. source: "./media/characters/wilbur-owen/front.svg",
  36298. extra: 1575/1448,
  36299. bottom: 72/1647
  36300. }
  36301. },
  36302. back: {
  36303. height: math.unit(6 + 9/12, "feet"),
  36304. weight: math.unit(440, "lb"),
  36305. name: "Back",
  36306. image: {
  36307. source: "./media/characters/wilbur-owen/back.svg",
  36308. extra: 1578/1445,
  36309. bottom: 36/1614
  36310. }
  36311. },
  36312. },
  36313. [
  36314. {
  36315. name: "Normal",
  36316. height: math.unit(6 + 9/12, "feet"),
  36317. default: true
  36318. },
  36319. ]
  36320. ))
  36321. characterMakers.push(() => makeCharacter(
  36322. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36323. {
  36324. front: {
  36325. height: math.unit(6 + 5/12, "feet"),
  36326. weight: math.unit(650, "lb"),
  36327. name: "Front",
  36328. image: {
  36329. source: "./media/characters/keegan/front.svg",
  36330. extra: 2387/2198,
  36331. bottom: 33/2420
  36332. }
  36333. },
  36334. side: {
  36335. height: math.unit(6 + 5/12, "feet"),
  36336. weight: math.unit(650, "lb"),
  36337. name: "Side",
  36338. image: {
  36339. source: "./media/characters/keegan/side.svg",
  36340. extra: 2390/2202,
  36341. bottom: 47/2437
  36342. }
  36343. },
  36344. back: {
  36345. height: math.unit(6 + 5/12, "feet"),
  36346. weight: math.unit(650, "lb"),
  36347. name: "Back",
  36348. image: {
  36349. source: "./media/characters/keegan/back.svg",
  36350. extra: 2418/2268,
  36351. bottom: 15/2433
  36352. }
  36353. },
  36354. frontSfw: {
  36355. height: math.unit(6 + 5/12, "feet"),
  36356. weight: math.unit(650, "lb"),
  36357. name: "Front (SFW)",
  36358. image: {
  36359. source: "./media/characters/keegan/front-sfw.svg",
  36360. extra: 2387/2198,
  36361. bottom: 33/2420
  36362. }
  36363. },
  36364. beans: {
  36365. height: math.unit(1.85, "feet"),
  36366. name: "Beans",
  36367. image: {
  36368. source: "./media/characters/keegan/beans.svg"
  36369. }
  36370. },
  36371. },
  36372. [
  36373. {
  36374. name: "Normal",
  36375. height: math.unit(6 + 5/12, "feet"),
  36376. default: true
  36377. },
  36378. ]
  36379. ))
  36380. characterMakers.push(() => makeCharacter(
  36381. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36382. {
  36383. front: {
  36384. height: math.unit(9, "feet"),
  36385. name: "Front",
  36386. image: {
  36387. source: "./media/characters/colton/front.svg",
  36388. extra: 1589/1326,
  36389. bottom: 139/1728
  36390. }
  36391. },
  36392. },
  36393. [
  36394. {
  36395. name: "Normal",
  36396. height: math.unit(9, "feet"),
  36397. default: true
  36398. },
  36399. ]
  36400. ))
  36401. characterMakers.push(() => makeCharacter(
  36402. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36403. {
  36404. front: {
  36405. height: math.unit(2 + 9/12, "feet"),
  36406. name: "Front",
  36407. image: {
  36408. source: "./media/characters/bora/front.svg",
  36409. extra: 1265/1250,
  36410. bottom: 24/1289
  36411. }
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "Normal",
  36417. height: math.unit(2 + 9/12, "feet"),
  36418. default: true
  36419. },
  36420. ]
  36421. ))
  36422. characterMakers.push(() => makeCharacter(
  36423. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36424. {
  36425. front: {
  36426. height: math.unit(8, "feet"),
  36427. name: "Front",
  36428. image: {
  36429. source: "./media/characters/myu-myu/front.svg",
  36430. extra: 1949/1857,
  36431. bottom: 90/2039
  36432. }
  36433. },
  36434. },
  36435. [
  36436. {
  36437. name: "Normal",
  36438. height: math.unit(8, "feet"),
  36439. default: true
  36440. },
  36441. {
  36442. name: "Big",
  36443. height: math.unit(15, "feet")
  36444. },
  36445. {
  36446. name: "BIG",
  36447. height: math.unit(25, "feet")
  36448. },
  36449. ]
  36450. ))
  36451. characterMakers.push(() => makeCharacter(
  36452. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36453. {
  36454. side: {
  36455. height: math.unit(7 + 5/12, "feet"),
  36456. weight: math.unit(2800, "lb"),
  36457. name: "Side",
  36458. image: {
  36459. source: "./media/characters/haloren/side.svg",
  36460. extra: 1793/409,
  36461. bottom: 59/1852
  36462. }
  36463. },
  36464. frontPaw: {
  36465. height: math.unit(2.36, "feet"),
  36466. name: "Front paw",
  36467. image: {
  36468. source: "./media/characters/haloren/front-paw.svg"
  36469. }
  36470. },
  36471. hindPaw: {
  36472. height: math.unit(3.18, "feet"),
  36473. name: "Hind paw",
  36474. image: {
  36475. source: "./media/characters/haloren/hind-paw.svg"
  36476. }
  36477. },
  36478. maw: {
  36479. height: math.unit(5.05, "feet"),
  36480. name: "Maw",
  36481. image: {
  36482. source: "./media/characters/haloren/maw.svg"
  36483. }
  36484. },
  36485. dick: {
  36486. height: math.unit(2.90, "feet"),
  36487. name: "Dick",
  36488. image: {
  36489. source: "./media/characters/haloren/dick.svg"
  36490. }
  36491. },
  36492. },
  36493. [
  36494. {
  36495. name: "Normal",
  36496. height: math.unit(7 + 5/12, "feet"),
  36497. default: true
  36498. },
  36499. {
  36500. name: "Enhanced",
  36501. height: math.unit(14 + 3/12, "feet")
  36502. },
  36503. ]
  36504. ))
  36505. characterMakers.push(() => makeCharacter(
  36506. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36507. {
  36508. front: {
  36509. height: math.unit(171, "cm"),
  36510. name: "Front",
  36511. image: {
  36512. source: "./media/characters/kimmy/front.svg",
  36513. extra: 1491/1435,
  36514. bottom: 53/1544
  36515. }
  36516. },
  36517. },
  36518. [
  36519. {
  36520. name: "Small",
  36521. height: math.unit(9, "cm")
  36522. },
  36523. {
  36524. name: "Normal",
  36525. height: math.unit(171, "cm"),
  36526. default: true
  36527. },
  36528. ]
  36529. ))
  36530. characterMakers.push(() => makeCharacter(
  36531. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36532. {
  36533. front: {
  36534. height: math.unit(8, "feet"),
  36535. weight: math.unit(300, "lb"),
  36536. name: "Front",
  36537. image: {
  36538. source: "./media/characters/galeboomer/front.svg",
  36539. extra: 4651/4415,
  36540. bottom: 162/4813
  36541. }
  36542. },
  36543. back: {
  36544. height: math.unit(8, "feet"),
  36545. weight: math.unit(300, "lb"),
  36546. name: "Back",
  36547. image: {
  36548. source: "./media/characters/galeboomer/back.svg",
  36549. extra: 4544/4314,
  36550. bottom: 16/4560
  36551. }
  36552. },
  36553. frontAlt: {
  36554. height: math.unit(8, "feet"),
  36555. weight: math.unit(300, "lb"),
  36556. name: "Front (Alt)",
  36557. image: {
  36558. source: "./media/characters/galeboomer/front-alt.svg",
  36559. extra: 4458/4228,
  36560. bottom: 68/4526
  36561. }
  36562. },
  36563. maw: {
  36564. height: math.unit(1.2, "feet"),
  36565. name: "Maw",
  36566. image: {
  36567. source: "./media/characters/galeboomer/maw.svg"
  36568. }
  36569. },
  36570. },
  36571. [
  36572. {
  36573. name: "Normal",
  36574. height: math.unit(8, "feet"),
  36575. default: true
  36576. },
  36577. ]
  36578. ))
  36579. characterMakers.push(() => makeCharacter(
  36580. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36581. {
  36582. front: {
  36583. height: math.unit(5 + 9/12, "feet"),
  36584. weight: math.unit(120, "lb"),
  36585. name: "Front",
  36586. image: {
  36587. source: "./media/characters/chyr/front.svg",
  36588. extra: 1323/1254,
  36589. bottom: 63/1386
  36590. }
  36591. },
  36592. back: {
  36593. height: math.unit(5 + 9/12, "feet"),
  36594. weight: math.unit(120, "lb"),
  36595. name: "Back",
  36596. image: {
  36597. source: "./media/characters/chyr/back.svg",
  36598. extra: 1323/1252,
  36599. bottom: 48/1371
  36600. }
  36601. },
  36602. },
  36603. [
  36604. {
  36605. name: "Normal",
  36606. height: math.unit(5 + 9/12, "feet"),
  36607. default: true
  36608. },
  36609. ]
  36610. ))
  36611. characterMakers.push(() => makeCharacter(
  36612. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36613. {
  36614. front: {
  36615. height: math.unit(7, "feet"),
  36616. weight: math.unit(310, "lb"),
  36617. name: "Front",
  36618. image: {
  36619. source: "./media/characters/solarus/front.svg",
  36620. extra: 2415/2021,
  36621. bottom: 103/2518
  36622. }
  36623. },
  36624. back: {
  36625. height: math.unit(7, "feet"),
  36626. weight: math.unit(310, "lb"),
  36627. name: "Back",
  36628. image: {
  36629. source: "./media/characters/solarus/back.svg",
  36630. extra: 2463/2089,
  36631. bottom: 79/2542
  36632. }
  36633. },
  36634. },
  36635. [
  36636. {
  36637. name: "Normal",
  36638. height: math.unit(7, "feet"),
  36639. default: true
  36640. },
  36641. ]
  36642. ))
  36643. characterMakers.push(() => makeCharacter(
  36644. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36645. {
  36646. front: {
  36647. height: math.unit(16, "feet"),
  36648. name: "Front",
  36649. image: {
  36650. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36651. extra: 1844/1780,
  36652. bottom: 58/1902
  36653. }
  36654. },
  36655. winterCoat: {
  36656. height: math.unit(16, "feet"),
  36657. name: "Winter Coat",
  36658. image: {
  36659. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36660. extra: 1807/1775,
  36661. bottom: 69/1876
  36662. }
  36663. },
  36664. },
  36665. [
  36666. {
  36667. name: "Normal",
  36668. height: math.unit(16, "feet"),
  36669. default: true
  36670. },
  36671. {
  36672. name: "Chicago Size",
  36673. height: math.unit(560, "feet")
  36674. },
  36675. ]
  36676. ))
  36677. characterMakers.push(() => makeCharacter(
  36678. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36679. {
  36680. front: {
  36681. height: math.unit(11 + 6/12, "feet"),
  36682. weight: math.unit(1366, "lb"),
  36683. name: "Front",
  36684. image: {
  36685. source: "./media/characters/lexor/front.svg",
  36686. extra: 1560/1481,
  36687. bottom: 211/1771
  36688. }
  36689. },
  36690. back: {
  36691. height: math.unit(11 + 6/12, "feet"),
  36692. weight: math.unit(1366, "lb"),
  36693. name: "Back",
  36694. image: {
  36695. source: "./media/characters/lexor/back.svg",
  36696. extra: 1614/1533,
  36697. bottom: 76/1690
  36698. }
  36699. },
  36700. maw: {
  36701. height: math.unit(3, "feet"),
  36702. name: "Maw",
  36703. image: {
  36704. source: "./media/characters/lexor/maw.svg"
  36705. }
  36706. },
  36707. dick: {
  36708. height: math.unit(2.59, "feet"),
  36709. name: "Dick",
  36710. image: {
  36711. source: "./media/characters/lexor/dick.svg"
  36712. }
  36713. },
  36714. },
  36715. [
  36716. {
  36717. name: "Normal",
  36718. height: math.unit(11 + 6/12, "feet"),
  36719. default: true
  36720. },
  36721. ]
  36722. ))
  36723. characterMakers.push(() => makeCharacter(
  36724. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36725. {
  36726. front: {
  36727. height: math.unit(5 + 8/12, "feet"),
  36728. name: "Front",
  36729. image: {
  36730. source: "./media/characters/magnum/front.svg",
  36731. extra: 942/855,
  36732. bottom: 26/968
  36733. }
  36734. },
  36735. },
  36736. [
  36737. {
  36738. name: "Normal",
  36739. height: math.unit(5 + 8/12, "feet"),
  36740. default: true
  36741. },
  36742. ]
  36743. ))
  36744. characterMakers.push(() => makeCharacter(
  36745. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36746. {
  36747. front: {
  36748. height: math.unit(18 + 4/12, "feet"),
  36749. weight: math.unit(1500, "kg"),
  36750. name: "Front",
  36751. image: {
  36752. source: "./media/characters/solas-sharpsman/front.svg",
  36753. extra: 1698/1589,
  36754. bottom: 0/1698
  36755. }
  36756. },
  36757. },
  36758. [
  36759. {
  36760. name: "Normal",
  36761. height: math.unit(18 + 4/12, "feet"),
  36762. default: true
  36763. },
  36764. ]
  36765. ))
  36766. characterMakers.push(() => makeCharacter(
  36767. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36768. {
  36769. front: {
  36770. height: math.unit(5 + 5/12, "feet"),
  36771. weight: math.unit(180, "lb"),
  36772. name: "Front",
  36773. image: {
  36774. source: "./media/characters/october/front.svg",
  36775. extra: 1800/1650,
  36776. bottom: 0/1800
  36777. }
  36778. },
  36779. frontNsfw: {
  36780. height: math.unit(5 + 5/12, "feet"),
  36781. weight: math.unit(180, "lb"),
  36782. name: "Front (NSFW)",
  36783. image: {
  36784. source: "./media/characters/october/front-nsfw.svg",
  36785. extra: 1392/1307,
  36786. bottom: 42/1434
  36787. }
  36788. },
  36789. },
  36790. [
  36791. {
  36792. name: "Normal",
  36793. height: math.unit(5 + 5/12, "feet"),
  36794. default: true
  36795. },
  36796. ]
  36797. ))
  36798. characterMakers.push(() => makeCharacter(
  36799. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36800. {
  36801. front: {
  36802. height: math.unit(8 + 6/12, "feet"),
  36803. name: "Front",
  36804. image: {
  36805. source: "./media/characters/essynkardi/front.svg",
  36806. extra: 1914/1846,
  36807. bottom: 22/1936
  36808. }
  36809. },
  36810. },
  36811. [
  36812. {
  36813. name: "Normal",
  36814. height: math.unit(8 + 6/12, "feet"),
  36815. default: true
  36816. },
  36817. ]
  36818. ))
  36819. characterMakers.push(() => makeCharacter(
  36820. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36821. {
  36822. front: {
  36823. height: math.unit(6 + 6/12, "feet"),
  36824. weight: math.unit(7, "lb"),
  36825. name: "Front",
  36826. image: {
  36827. source: "./media/characters/icky/front.svg",
  36828. extra: 813/782,
  36829. bottom: 66/879
  36830. }
  36831. },
  36832. back: {
  36833. height: math.unit(6 + 6/12, "feet"),
  36834. weight: math.unit(7, "lb"),
  36835. name: "Back",
  36836. image: {
  36837. source: "./media/characters/icky/back.svg",
  36838. extra: 754/735,
  36839. bottom: 56/810
  36840. }
  36841. },
  36842. },
  36843. [
  36844. {
  36845. name: "Normal",
  36846. height: math.unit(6 + 6/12, "feet"),
  36847. default: true
  36848. },
  36849. ]
  36850. ))
  36851. characterMakers.push(() => makeCharacter(
  36852. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36853. {
  36854. front: {
  36855. height: math.unit(15, "feet"),
  36856. name: "Front",
  36857. image: {
  36858. source: "./media/characters/rojas/front.svg",
  36859. extra: 1462/1408,
  36860. bottom: 95/1557
  36861. }
  36862. },
  36863. back: {
  36864. height: math.unit(15, "feet"),
  36865. name: "Back",
  36866. image: {
  36867. source: "./media/characters/rojas/back.svg",
  36868. extra: 1023/954,
  36869. bottom: 28/1051
  36870. }
  36871. },
  36872. },
  36873. [
  36874. {
  36875. name: "Normal",
  36876. height: math.unit(15, "feet"),
  36877. default: true
  36878. },
  36879. ]
  36880. ))
  36881. characterMakers.push(() => makeCharacter(
  36882. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36883. {
  36884. frontHuman: {
  36885. height: math.unit(5 + 7/12, "feet"),
  36886. name: "Front (Human)",
  36887. image: {
  36888. source: "./media/characters/alek-dryagan/front-human.svg",
  36889. extra: 1687/1667,
  36890. bottom: 69/1756
  36891. }
  36892. },
  36893. backHuman: {
  36894. height: math.unit(5 + 7/12, "feet"),
  36895. name: "Back (Human)",
  36896. image: {
  36897. source: "./media/characters/alek-dryagan/back-human.svg",
  36898. extra: 1670/1649,
  36899. bottom: 65/1735
  36900. }
  36901. },
  36902. frontDemi: {
  36903. height: math.unit(65, "feet"),
  36904. name: "Front (Demi)",
  36905. image: {
  36906. source: "./media/characters/alek-dryagan/front-demi.svg",
  36907. extra: 1669/1642,
  36908. bottom: 49/1718
  36909. }
  36910. },
  36911. backDemi: {
  36912. height: math.unit(65, "feet"),
  36913. name: "Back (Demi)",
  36914. image: {
  36915. source: "./media/characters/alek-dryagan/back-demi.svg",
  36916. extra: 1658/1637,
  36917. bottom: 40/1698
  36918. }
  36919. },
  36920. mawHuman: {
  36921. height: math.unit(0.3, "feet"),
  36922. name: "Maw (Human)",
  36923. image: {
  36924. source: "./media/characters/alek-dryagan/maw-human.svg"
  36925. }
  36926. },
  36927. mawDemi: {
  36928. height: math.unit(3.8, "feet"),
  36929. name: "Maw (Demi)",
  36930. image: {
  36931. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36932. }
  36933. },
  36934. },
  36935. [
  36936. {
  36937. name: "Normal",
  36938. height: math.unit(5 + 7/12, "feet"),
  36939. default: true
  36940. },
  36941. ]
  36942. ))
  36943. characterMakers.push(() => makeCharacter(
  36944. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36945. {
  36946. frontHuman: {
  36947. height: math.unit(5 + 2/12, "feet"),
  36948. name: "Front (Human)",
  36949. image: {
  36950. source: "./media/characters/gen/front-human.svg",
  36951. extra: 1627/1538,
  36952. bottom: 71/1698
  36953. }
  36954. },
  36955. backHuman: {
  36956. height: math.unit(5 + 2/12, "feet"),
  36957. name: "Back (Human)",
  36958. image: {
  36959. source: "./media/characters/gen/back-human.svg",
  36960. extra: 1638/1548,
  36961. bottom: 69/1707
  36962. }
  36963. },
  36964. frontDemi: {
  36965. height: math.unit(5 + 2/12, "feet"),
  36966. name: "Front (Demi)",
  36967. image: {
  36968. source: "./media/characters/gen/front-demi.svg",
  36969. extra: 1627/1538,
  36970. bottom: 71/1698
  36971. }
  36972. },
  36973. backDemi: {
  36974. height: math.unit(5 + 2/12, "feet"),
  36975. name: "Back (Demi)",
  36976. image: {
  36977. source: "./media/characters/gen/back-demi.svg",
  36978. extra: 1638/1548,
  36979. bottom: 69/1707
  36980. }
  36981. },
  36982. },
  36983. [
  36984. {
  36985. name: "Normal",
  36986. height: math.unit(5 + 2/12, "feet"),
  36987. default: true
  36988. },
  36989. ]
  36990. ))
  36991. characterMakers.push(() => makeCharacter(
  36992. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36993. {
  36994. frontImp: {
  36995. height: math.unit(1 + 11/12, "feet"),
  36996. name: "Front (Imp)",
  36997. image: {
  36998. source: "./media/characters/max-kobold/front-imp.svg",
  36999. extra: 1238/1134,
  37000. bottom: 81/1319
  37001. }
  37002. },
  37003. backImp: {
  37004. height: math.unit(1 + 11/12, "feet"),
  37005. name: "Back (Imp)",
  37006. image: {
  37007. source: "./media/characters/max-kobold/back-imp.svg",
  37008. extra: 1334/1175,
  37009. bottom: 34/1368
  37010. }
  37011. },
  37012. frontDemi: {
  37013. height: math.unit(5 + 9/12, "feet"),
  37014. name: "Front (Demi)",
  37015. image: {
  37016. source: "./media/characters/max-kobold/front-demi.svg",
  37017. extra: 1715/1685,
  37018. bottom: 54/1769
  37019. }
  37020. },
  37021. backDemi: {
  37022. height: math.unit(5 + 9/12, "feet"),
  37023. name: "Back (Demi)",
  37024. image: {
  37025. source: "./media/characters/max-kobold/back-demi.svg",
  37026. extra: 1752/1729,
  37027. bottom: 41/1793
  37028. }
  37029. },
  37030. handImp: {
  37031. height: math.unit(0.45, "feet"),
  37032. name: "Hand (Imp)",
  37033. image: {
  37034. source: "./media/characters/max-kobold/hand.svg"
  37035. }
  37036. },
  37037. pawImp: {
  37038. height: math.unit(0.46, "feet"),
  37039. name: "Paw (Imp)",
  37040. image: {
  37041. source: "./media/characters/max-kobold/paw.svg"
  37042. }
  37043. },
  37044. handDemi: {
  37045. height: math.unit(0.80, "feet"),
  37046. name: "Hand (Demi)",
  37047. image: {
  37048. source: "./media/characters/max-kobold/hand.svg"
  37049. }
  37050. },
  37051. pawDemi: {
  37052. height: math.unit(1.1, "feet"),
  37053. name: "Paw (Demi)",
  37054. image: {
  37055. source: "./media/characters/max-kobold/paw.svg"
  37056. }
  37057. },
  37058. headImp: {
  37059. height: math.unit(1.33, "feet"),
  37060. name: "Head (Imp)",
  37061. image: {
  37062. source: "./media/characters/max-kobold/head-imp.svg"
  37063. }
  37064. },
  37065. mawImp: {
  37066. height: math.unit(0.75, "feet"),
  37067. name: "Maw (Imp)",
  37068. image: {
  37069. source: "./media/characters/max-kobold/maw-imp.svg"
  37070. }
  37071. },
  37072. mawDemi: {
  37073. height: math.unit(0.42, "feet"),
  37074. name: "Maw (Demi)",
  37075. image: {
  37076. source: "./media/characters/max-kobold/maw-demi.svg"
  37077. }
  37078. },
  37079. },
  37080. [
  37081. {
  37082. name: "Normal",
  37083. height: math.unit(1 + 11/12, "feet"),
  37084. default: true
  37085. },
  37086. ]
  37087. ))
  37088. characterMakers.push(() => makeCharacter(
  37089. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37090. {
  37091. front: {
  37092. height: math.unit(7 + 5/12, "feet"),
  37093. name: "Front",
  37094. image: {
  37095. source: "./media/characters/carbon/front.svg",
  37096. extra: 1754/1689,
  37097. bottom: 65/1819
  37098. }
  37099. },
  37100. back: {
  37101. height: math.unit(7 + 5/12, "feet"),
  37102. name: "Back",
  37103. image: {
  37104. source: "./media/characters/carbon/back.svg",
  37105. extra: 1762/1695,
  37106. bottom: 24/1786
  37107. }
  37108. },
  37109. frontGigantamax: {
  37110. height: math.unit(150, "feet"),
  37111. name: "Front (Gigantamax)",
  37112. image: {
  37113. source: "./media/characters/carbon/front-gigantamax.svg",
  37114. extra: 1826/1669,
  37115. bottom: 59/1885
  37116. }
  37117. },
  37118. backGigantamax: {
  37119. height: math.unit(150, "feet"),
  37120. name: "Back (Gigantamax)",
  37121. image: {
  37122. source: "./media/characters/carbon/back-gigantamax.svg",
  37123. extra: 1796/1653,
  37124. bottom: 53/1849
  37125. }
  37126. },
  37127. maw: {
  37128. height: math.unit(0.48, "feet"),
  37129. name: "Maw",
  37130. image: {
  37131. source: "./media/characters/carbon/maw.svg"
  37132. }
  37133. },
  37134. mawGigantamax: {
  37135. height: math.unit(7.5, "feet"),
  37136. name: "Maw (Gigantamax)",
  37137. image: {
  37138. source: "./media/characters/carbon/maw-gigantamax.svg"
  37139. }
  37140. },
  37141. },
  37142. [
  37143. {
  37144. name: "Normal",
  37145. height: math.unit(7 + 5/12, "feet"),
  37146. default: true
  37147. },
  37148. ]
  37149. ))
  37150. characterMakers.push(() => makeCharacter(
  37151. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37152. {
  37153. front: {
  37154. height: math.unit(6, "feet"),
  37155. name: "Front",
  37156. image: {
  37157. source: "./media/characters/maverick/front.svg",
  37158. extra: 1672/1661,
  37159. bottom: 85/1757
  37160. }
  37161. },
  37162. back: {
  37163. height: math.unit(6, "feet"),
  37164. name: "Back",
  37165. image: {
  37166. source: "./media/characters/maverick/back.svg",
  37167. extra: 1642/1631,
  37168. bottom: 38/1680
  37169. }
  37170. },
  37171. },
  37172. [
  37173. {
  37174. name: "Normal",
  37175. height: math.unit(6, "feet"),
  37176. default: true
  37177. },
  37178. ]
  37179. ))
  37180. characterMakers.push(() => makeCharacter(
  37181. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37182. {
  37183. front: {
  37184. height: math.unit(15, "feet"),
  37185. weight: math.unit(615, "lb"),
  37186. name: "Front",
  37187. image: {
  37188. source: "./media/characters/grockle/front.svg",
  37189. extra: 1535/1427,
  37190. bottom: 56/1591
  37191. }
  37192. },
  37193. },
  37194. [
  37195. {
  37196. name: "Normal",
  37197. height: math.unit(15, "feet"),
  37198. default: true
  37199. },
  37200. {
  37201. name: "Large",
  37202. height: math.unit(150, "feet")
  37203. },
  37204. {
  37205. name: "Macro",
  37206. height: math.unit(1876, "feet")
  37207. },
  37208. {
  37209. name: "Mega Macro",
  37210. height: math.unit(121940, "feet")
  37211. },
  37212. {
  37213. name: "Giga Macro",
  37214. height: math.unit(750, "km")
  37215. },
  37216. {
  37217. name: "Tera Macro",
  37218. height: math.unit(750000, "km")
  37219. },
  37220. {
  37221. name: "Galactic",
  37222. height: math.unit(1.4e5, "km")
  37223. },
  37224. {
  37225. name: "Godlike",
  37226. height: math.unit(9.8e280, "galaxies")
  37227. },
  37228. ]
  37229. ))
  37230. characterMakers.push(() => makeCharacter(
  37231. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37232. {
  37233. front: {
  37234. height: math.unit(11, "meters"),
  37235. weight: math.unit(20, "tonnes"),
  37236. name: "Front",
  37237. image: {
  37238. source: "./media/characters/alistair/front.svg",
  37239. extra: 1265/1009,
  37240. bottom: 93/1358
  37241. }
  37242. },
  37243. },
  37244. [
  37245. {
  37246. name: "Normal",
  37247. height: math.unit(11, "meters"),
  37248. default: true
  37249. },
  37250. ]
  37251. ))
  37252. characterMakers.push(() => makeCharacter(
  37253. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37254. {
  37255. front: {
  37256. height: math.unit(5 + 8/12, "feet"),
  37257. name: "Front",
  37258. image: {
  37259. source: "./media/characters/haruka/front.svg",
  37260. extra: 2012/1952,
  37261. bottom: 0/2012
  37262. }
  37263. },
  37264. },
  37265. [
  37266. {
  37267. name: "Normal",
  37268. height: math.unit(5 + 8/12, "feet"),
  37269. default: true
  37270. },
  37271. ]
  37272. ))
  37273. characterMakers.push(() => makeCharacter(
  37274. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37275. {
  37276. back: {
  37277. height: math.unit(9, "feet"),
  37278. name: "Back",
  37279. image: {
  37280. source: "./media/characters/vivian-sylveon/back.svg",
  37281. extra: 1853/1714,
  37282. bottom: 0/1853
  37283. }
  37284. },
  37285. },
  37286. [
  37287. {
  37288. name: "Normal",
  37289. height: math.unit(9, "feet"),
  37290. default: true
  37291. },
  37292. {
  37293. name: "Macro",
  37294. height: math.unit(500, "feet")
  37295. },
  37296. {
  37297. name: "Megamacro",
  37298. height: math.unit(600, "miles")
  37299. },
  37300. {
  37301. name: "Gigamacro",
  37302. height: math.unit(30000, "miles")
  37303. },
  37304. ]
  37305. ))
  37306. characterMakers.push(() => makeCharacter(
  37307. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37308. {
  37309. anthro: {
  37310. height: math.unit(5 + 10/12, "feet"),
  37311. weight: math.unit(100, "lb"),
  37312. name: "Anthro",
  37313. image: {
  37314. source: "./media/characters/daiki/anthro.svg",
  37315. extra: 1115/1027,
  37316. bottom: 69/1184
  37317. }
  37318. },
  37319. feral: {
  37320. height: math.unit(200, "feet"),
  37321. name: "Feral",
  37322. image: {
  37323. source: "./media/characters/daiki/feral.svg",
  37324. extra: 1256/313,
  37325. bottom: 39/1295
  37326. }
  37327. },
  37328. feralHead: {
  37329. height: math.unit(171, "feet"),
  37330. name: "Feral Head",
  37331. image: {
  37332. source: "./media/characters/daiki/feral-head.svg"
  37333. }
  37334. },
  37335. manaDragon: {
  37336. height: math.unit(170, "meters"),
  37337. name: "Mana-dragon",
  37338. image: {
  37339. source: "./media/characters/daiki/mana-dragon.svg",
  37340. extra: 763/420,
  37341. bottom: 97/860
  37342. }
  37343. },
  37344. },
  37345. [
  37346. {
  37347. name: "Normal",
  37348. height: math.unit(5 + 10/12, "feet"),
  37349. default: true
  37350. },
  37351. ]
  37352. ))
  37353. characterMakers.push(() => makeCharacter(
  37354. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37355. {
  37356. fullyEquippedFront: {
  37357. height: math.unit(3 + 1/12, "feet"),
  37358. weight: math.unit(24, "lb"),
  37359. name: "Fully Equipped (Front)",
  37360. image: {
  37361. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37362. extra: 687/605,
  37363. bottom: 18/705
  37364. }
  37365. },
  37366. fullyEquippedBack: {
  37367. height: math.unit(3 + 1/12, "feet"),
  37368. weight: math.unit(24, "lb"),
  37369. name: "Fully Equipped (Back)",
  37370. image: {
  37371. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37372. extra: 689/590,
  37373. bottom: 18/707
  37374. }
  37375. },
  37376. dailyWear: {
  37377. height: math.unit(3 + 1/12, "feet"),
  37378. weight: math.unit(24, "lb"),
  37379. name: "Daily Wear",
  37380. image: {
  37381. source: "./media/characters/tea-spot/daily-wear.svg",
  37382. extra: 701/620,
  37383. bottom: 21/722
  37384. }
  37385. },
  37386. maidWork: {
  37387. height: math.unit(3 + 1/12, "feet"),
  37388. weight: math.unit(24, "lb"),
  37389. name: "Maid Work",
  37390. image: {
  37391. source: "./media/characters/tea-spot/maid-work.svg",
  37392. extra: 693/609,
  37393. bottom: 15/708
  37394. }
  37395. },
  37396. },
  37397. [
  37398. {
  37399. name: "Normal",
  37400. height: math.unit(3 + 1/12, "feet"),
  37401. default: true
  37402. },
  37403. ]
  37404. ))
  37405. characterMakers.push(() => makeCharacter(
  37406. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37407. {
  37408. front: {
  37409. height: math.unit(175, "cm"),
  37410. weight: math.unit(75, "kg"),
  37411. name: "Front",
  37412. image: {
  37413. source: "./media/characters/chee/front.svg",
  37414. extra: 1796/1740,
  37415. bottom: 40/1836
  37416. }
  37417. },
  37418. },
  37419. [
  37420. {
  37421. name: "Micro-Micro",
  37422. height: math.unit(1, "nm")
  37423. },
  37424. {
  37425. name: "Micro-erst",
  37426. height: math.unit(1, "micrometer")
  37427. },
  37428. {
  37429. name: "Micro-er",
  37430. height: math.unit(1, "cm")
  37431. },
  37432. {
  37433. name: "Normal",
  37434. height: math.unit(175, "cm"),
  37435. default: true
  37436. },
  37437. {
  37438. name: "Macro",
  37439. height: math.unit(100, "m")
  37440. },
  37441. {
  37442. name: "Macro-er",
  37443. height: math.unit(1, "km")
  37444. },
  37445. {
  37446. name: "Macro-erst",
  37447. height: math.unit(10, "km")
  37448. },
  37449. {
  37450. name: "Macro-Macro",
  37451. height: math.unit(100, "km")
  37452. },
  37453. ]
  37454. ))
  37455. characterMakers.push(() => makeCharacter(
  37456. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37457. {
  37458. front: {
  37459. height: math.unit(11 + 9/12, "feet"),
  37460. weight: math.unit(935, "lb"),
  37461. name: "Front",
  37462. image: {
  37463. source: "./media/characters/kingsley/front.svg",
  37464. extra: 1803/1674,
  37465. bottom: 127/1930
  37466. }
  37467. },
  37468. frontNude: {
  37469. height: math.unit(11 + 9/12, "feet"),
  37470. weight: math.unit(935, "lb"),
  37471. name: "Front (Nude)",
  37472. image: {
  37473. source: "./media/characters/kingsley/front-nude.svg",
  37474. extra: 1803/1674,
  37475. bottom: 127/1930
  37476. }
  37477. },
  37478. },
  37479. [
  37480. {
  37481. name: "Normal",
  37482. height: math.unit(11 + 9/12, "feet"),
  37483. default: true
  37484. },
  37485. ]
  37486. ))
  37487. characterMakers.push(() => makeCharacter(
  37488. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37489. {
  37490. side: {
  37491. height: math.unit(9, "feet"),
  37492. name: "Side",
  37493. image: {
  37494. source: "./media/characters/rymel/side.svg",
  37495. extra: 792/469,
  37496. bottom: 121/913
  37497. }
  37498. },
  37499. maw: {
  37500. height: math.unit(2.4, "meters"),
  37501. name: "Maw",
  37502. image: {
  37503. source: "./media/characters/rymel/maw.svg"
  37504. }
  37505. },
  37506. },
  37507. [
  37508. {
  37509. name: "House Drake",
  37510. height: math.unit(2, "feet")
  37511. },
  37512. {
  37513. name: "Reduced",
  37514. height: math.unit(4.5, "feet")
  37515. },
  37516. {
  37517. name: "Normal",
  37518. height: math.unit(9, "feet"),
  37519. default: true
  37520. },
  37521. ]
  37522. ))
  37523. characterMakers.push(() => makeCharacter(
  37524. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37525. {
  37526. front: {
  37527. height: math.unit(1.74, "meters"),
  37528. weight: math.unit(55, "kg"),
  37529. name: "Front",
  37530. image: {
  37531. source: "./media/characters/rubus/front.svg",
  37532. extra: 1894/1742,
  37533. bottom: 44/1938
  37534. }
  37535. },
  37536. },
  37537. [
  37538. {
  37539. name: "Normal",
  37540. height: math.unit(1.74, "meters"),
  37541. default: true
  37542. },
  37543. ]
  37544. ))
  37545. characterMakers.push(() => makeCharacter(
  37546. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37547. {
  37548. front: {
  37549. height: math.unit(5 + 2/12, "feet"),
  37550. weight: math.unit(112, "lb"),
  37551. name: "Front",
  37552. image: {
  37553. source: "./media/characters/cassie-kingston/front.svg",
  37554. extra: 1438/1390,
  37555. bottom: 47/1485
  37556. }
  37557. },
  37558. },
  37559. [
  37560. {
  37561. name: "Normal",
  37562. height: math.unit(5 + 2/12, "feet"),
  37563. default: true
  37564. },
  37565. {
  37566. name: "Macro",
  37567. height: math.unit(128, "feet")
  37568. },
  37569. {
  37570. name: "Megamacro",
  37571. height: math.unit(2.56, "miles")
  37572. },
  37573. ]
  37574. ))
  37575. characterMakers.push(() => makeCharacter(
  37576. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37577. {
  37578. front: {
  37579. height: math.unit(7, "feet"),
  37580. name: "Front",
  37581. image: {
  37582. source: "./media/characters/fox/front.svg",
  37583. extra: 1798/1703,
  37584. bottom: 55/1853
  37585. }
  37586. },
  37587. back: {
  37588. height: math.unit(7, "feet"),
  37589. name: "Back",
  37590. image: {
  37591. source: "./media/characters/fox/back.svg",
  37592. extra: 1748/1649,
  37593. bottom: 32/1780
  37594. }
  37595. },
  37596. head: {
  37597. height: math.unit(1.95, "feet"),
  37598. name: "Head",
  37599. image: {
  37600. source: "./media/characters/fox/head.svg"
  37601. }
  37602. },
  37603. dick: {
  37604. height: math.unit(1.33, "feet"),
  37605. name: "Dick",
  37606. image: {
  37607. source: "./media/characters/fox/dick.svg"
  37608. }
  37609. },
  37610. foot: {
  37611. height: math.unit(1, "feet"),
  37612. name: "Foot",
  37613. image: {
  37614. source: "./media/characters/fox/foot.svg"
  37615. }
  37616. },
  37617. paw: {
  37618. height: math.unit(0.92, "feet"),
  37619. name: "Paw",
  37620. image: {
  37621. source: "./media/characters/fox/paw.svg"
  37622. }
  37623. },
  37624. },
  37625. [
  37626. {
  37627. name: "Small",
  37628. height: math.unit(3, "inches")
  37629. },
  37630. {
  37631. name: "\"Realistic\"",
  37632. height: math.unit(7, "feet")
  37633. },
  37634. {
  37635. name: "Normal",
  37636. height: math.unit(150, "feet"),
  37637. default: true
  37638. },
  37639. {
  37640. name: "BIG",
  37641. height: math.unit(1200, "feet")
  37642. },
  37643. {
  37644. name: "👀",
  37645. height: math.unit(5, "miles")
  37646. },
  37647. {
  37648. name: "👀👀👀",
  37649. height: math.unit(64, "miles")
  37650. },
  37651. ]
  37652. ))
  37653. characterMakers.push(() => makeCharacter(
  37654. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37655. {
  37656. front: {
  37657. height: math.unit(625, "feet"),
  37658. name: "Front",
  37659. image: {
  37660. source: "./media/characters/asonja-rossa/front.svg",
  37661. extra: 1833/1686,
  37662. bottom: 24/1857
  37663. }
  37664. },
  37665. back: {
  37666. height: math.unit(625, "feet"),
  37667. name: "Back",
  37668. image: {
  37669. source: "./media/characters/asonja-rossa/back.svg",
  37670. extra: 1852/1753,
  37671. bottom: 26/1878
  37672. }
  37673. },
  37674. },
  37675. [
  37676. {
  37677. name: "Macro",
  37678. height: math.unit(625, "feet"),
  37679. default: true
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37685. {
  37686. side: {
  37687. height: math.unit(8, "feet"),
  37688. name: "Side",
  37689. image: {
  37690. source: "./media/characters/rezukii/side.svg",
  37691. extra: 979/542,
  37692. bottom: 87/1066
  37693. }
  37694. },
  37695. sitting: {
  37696. height: math.unit(14.6, "feet"),
  37697. name: "Sitting",
  37698. image: {
  37699. source: "./media/characters/rezukii/sitting.svg",
  37700. extra: 1023/813,
  37701. bottom: 45/1068
  37702. }
  37703. },
  37704. },
  37705. [
  37706. {
  37707. name: "Tiny",
  37708. height: math.unit(2, "feet")
  37709. },
  37710. {
  37711. name: "Smol",
  37712. height: math.unit(4, "feet")
  37713. },
  37714. {
  37715. name: "Normal",
  37716. height: math.unit(8, "feet"),
  37717. default: true
  37718. },
  37719. {
  37720. name: "Big",
  37721. height: math.unit(12, "feet")
  37722. },
  37723. {
  37724. name: "Macro",
  37725. height: math.unit(30, "feet")
  37726. },
  37727. ]
  37728. ))
  37729. characterMakers.push(() => makeCharacter(
  37730. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37731. {
  37732. front: {
  37733. height: math.unit(14, "feet"),
  37734. weight: math.unit(9.5, "tonnes"),
  37735. name: "Front",
  37736. image: {
  37737. source: "./media/characters/dawnheart/front.svg",
  37738. extra: 2792/2675,
  37739. bottom: 64/2856
  37740. }
  37741. },
  37742. },
  37743. [
  37744. {
  37745. name: "Normal",
  37746. height: math.unit(14, "feet"),
  37747. default: true
  37748. },
  37749. ]
  37750. ))
  37751. characterMakers.push(() => makeCharacter(
  37752. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37753. {
  37754. front: {
  37755. height: math.unit(1.7, "m"),
  37756. name: "Front",
  37757. image: {
  37758. source: "./media/characters/gladi/front.svg",
  37759. extra: 1460/1362,
  37760. bottom: 19/1479
  37761. }
  37762. },
  37763. back: {
  37764. height: math.unit(1.7, "m"),
  37765. name: "Back",
  37766. image: {
  37767. source: "./media/characters/gladi/back.svg",
  37768. extra: 1459/1357,
  37769. bottom: 12/1471
  37770. }
  37771. },
  37772. feral: {
  37773. height: math.unit(2.05, "m"),
  37774. name: "Feral",
  37775. image: {
  37776. source: "./media/characters/gladi/feral.svg",
  37777. extra: 821/557,
  37778. bottom: 91/912
  37779. }
  37780. },
  37781. },
  37782. [
  37783. {
  37784. name: "Shortest",
  37785. height: math.unit(70, "cm")
  37786. },
  37787. {
  37788. name: "Normal",
  37789. height: math.unit(1.7, "m")
  37790. },
  37791. {
  37792. name: "Macro",
  37793. height: math.unit(10, "m"),
  37794. default: true
  37795. },
  37796. {
  37797. name: "Tallest",
  37798. height: math.unit(200, "m")
  37799. },
  37800. ]
  37801. ))
  37802. characterMakers.push(() => makeCharacter(
  37803. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37804. {
  37805. front: {
  37806. height: math.unit(5 + 7/12, "feet"),
  37807. weight: math.unit(2, "tons"),
  37808. name: "Front",
  37809. image: {
  37810. source: "./media/characters/erdno/front.svg",
  37811. extra: 1234/1129,
  37812. bottom: 35/1269
  37813. }
  37814. },
  37815. angled: {
  37816. height: math.unit(5 + 7/12, "feet"),
  37817. weight: math.unit(2, "tons"),
  37818. name: "Angled",
  37819. image: {
  37820. source: "./media/characters/erdno/angled.svg",
  37821. extra: 1185/1139,
  37822. bottom: 36/1221
  37823. }
  37824. },
  37825. side: {
  37826. height: math.unit(5 + 7/12, "feet"),
  37827. weight: math.unit(2, "tons"),
  37828. name: "Side",
  37829. image: {
  37830. source: "./media/characters/erdno/side.svg",
  37831. extra: 1191/1144,
  37832. bottom: 40/1231
  37833. }
  37834. },
  37835. back: {
  37836. height: math.unit(5 + 7/12, "feet"),
  37837. weight: math.unit(2, "tons"),
  37838. name: "Back",
  37839. image: {
  37840. source: "./media/characters/erdno/back.svg",
  37841. extra: 1202/1146,
  37842. bottom: 17/1219
  37843. }
  37844. },
  37845. frontNsfw: {
  37846. height: math.unit(5 + 7/12, "feet"),
  37847. weight: math.unit(2, "tons"),
  37848. name: "Front (NSFW)",
  37849. image: {
  37850. source: "./media/characters/erdno/front-nsfw.svg",
  37851. extra: 1234/1129,
  37852. bottom: 35/1269
  37853. }
  37854. },
  37855. angledNsfw: {
  37856. height: math.unit(5 + 7/12, "feet"),
  37857. weight: math.unit(2, "tons"),
  37858. name: "Angled (NSFW)",
  37859. image: {
  37860. source: "./media/characters/erdno/angled-nsfw.svg",
  37861. extra: 1185/1139,
  37862. bottom: 36/1221
  37863. }
  37864. },
  37865. sideNsfw: {
  37866. height: math.unit(5 + 7/12, "feet"),
  37867. weight: math.unit(2, "tons"),
  37868. name: "Side (NSFW)",
  37869. image: {
  37870. source: "./media/characters/erdno/side-nsfw.svg",
  37871. extra: 1191/1144,
  37872. bottom: 40/1231
  37873. }
  37874. },
  37875. backNsfw: {
  37876. height: math.unit(5 + 7/12, "feet"),
  37877. weight: math.unit(2, "tons"),
  37878. name: "Back (NSFW)",
  37879. image: {
  37880. source: "./media/characters/erdno/back-nsfw.svg",
  37881. extra: 1202/1146,
  37882. bottom: 17/1219
  37883. }
  37884. },
  37885. frontHyper: {
  37886. height: math.unit(5 + 7/12, "feet"),
  37887. weight: math.unit(2, "tons"),
  37888. name: "Front (Hyper)",
  37889. image: {
  37890. source: "./media/characters/erdno/front-hyper.svg",
  37891. extra: 1298/1136,
  37892. bottom: 35/1333
  37893. }
  37894. },
  37895. },
  37896. [
  37897. {
  37898. name: "Normal",
  37899. height: math.unit(5 + 7/12, "feet"),
  37900. default: true
  37901. },
  37902. {
  37903. name: "Big",
  37904. height: math.unit(5.7, "meters")
  37905. },
  37906. {
  37907. name: "Macro",
  37908. height: math.unit(5.7, "kilometers")
  37909. },
  37910. {
  37911. name: "Megamacro",
  37912. height: math.unit(5.7, "earths")
  37913. },
  37914. ]
  37915. ))
  37916. characterMakers.push(() => makeCharacter(
  37917. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37918. {
  37919. front: {
  37920. height: math.unit(5 + 10/12, "feet"),
  37921. weight: math.unit(150, "lb"),
  37922. name: "Front",
  37923. image: {
  37924. source: "./media/characters/jamie/front.svg",
  37925. extra: 1908/1768,
  37926. bottom: 19/1927
  37927. }
  37928. },
  37929. },
  37930. [
  37931. {
  37932. name: "Minimum",
  37933. height: math.unit(2, "cm")
  37934. },
  37935. {
  37936. name: "Micro",
  37937. height: math.unit(3, "inches")
  37938. },
  37939. {
  37940. name: "Normal",
  37941. height: math.unit(5 + 10/12, "feet"),
  37942. default: true
  37943. },
  37944. {
  37945. name: "Macro",
  37946. height: math.unit(150, "feet")
  37947. },
  37948. {
  37949. name: "Megamacro",
  37950. height: math.unit(10000, "m")
  37951. },
  37952. ]
  37953. ))
  37954. characterMakers.push(() => makeCharacter(
  37955. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37956. {
  37957. front: {
  37958. height: math.unit(2, "meters"),
  37959. weight: math.unit(100, "kg"),
  37960. name: "Front",
  37961. image: {
  37962. source: "./media/characters/shiron/front.svg",
  37963. extra: 2103/1985,
  37964. bottom: 98/2201
  37965. }
  37966. },
  37967. back: {
  37968. height: math.unit(2, "meters"),
  37969. weight: math.unit(100, "kg"),
  37970. name: "Back",
  37971. image: {
  37972. source: "./media/characters/shiron/back.svg",
  37973. extra: 2110/2015,
  37974. bottom: 89/2199
  37975. }
  37976. },
  37977. hand: {
  37978. height: math.unit(0.96, "feet"),
  37979. name: "Hand",
  37980. image: {
  37981. source: "./media/characters/shiron/hand.svg"
  37982. }
  37983. },
  37984. foot: {
  37985. height: math.unit(1.464, "feet"),
  37986. name: "Foot",
  37987. image: {
  37988. source: "./media/characters/shiron/foot.svg"
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Normal",
  37995. height: math.unit(2, "meters")
  37996. },
  37997. {
  37998. name: "Macro",
  37999. height: math.unit(500, "meters"),
  38000. default: true
  38001. },
  38002. {
  38003. name: "Megamacro",
  38004. height: math.unit(20, "km")
  38005. },
  38006. ]
  38007. ))
  38008. characterMakers.push(() => makeCharacter(
  38009. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38010. {
  38011. front: {
  38012. height: math.unit(6, "feet"),
  38013. name: "Front",
  38014. image: {
  38015. source: "./media/characters/sam/front.svg",
  38016. extra: 849/826,
  38017. bottom: 19/868
  38018. }
  38019. },
  38020. },
  38021. [
  38022. {
  38023. name: "Normal",
  38024. height: math.unit(6, "feet"),
  38025. default: true
  38026. },
  38027. ]
  38028. ))
  38029. characterMakers.push(() => makeCharacter(
  38030. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38031. {
  38032. front: {
  38033. height: math.unit(8 + 4/12, "feet"),
  38034. weight: math.unit(122, "kg"),
  38035. name: "Front",
  38036. image: {
  38037. source: "./media/characters/namori-kurogawa/front.svg",
  38038. extra: 1894/1576,
  38039. bottom: 34/1928
  38040. }
  38041. },
  38042. },
  38043. [
  38044. {
  38045. name: "Normal",
  38046. height: math.unit(8 + 4/12, "feet"),
  38047. default: true
  38048. },
  38049. ]
  38050. ))
  38051. characterMakers.push(() => makeCharacter(
  38052. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38053. {
  38054. front: {
  38055. height: math.unit(9, "feet"),
  38056. weight: math.unit(621, "lb"),
  38057. name: "Front",
  38058. image: {
  38059. source: "./media/characters/unmru/front.svg",
  38060. extra: 1853/1747,
  38061. bottom: 73/1926
  38062. }
  38063. },
  38064. side: {
  38065. height: math.unit(9, "feet"),
  38066. weight: math.unit(621, "lb"),
  38067. name: "Side",
  38068. image: {
  38069. source: "./media/characters/unmru/side.svg",
  38070. extra: 1781/1671,
  38071. bottom: 127/1908
  38072. }
  38073. },
  38074. back: {
  38075. height: math.unit(9, "feet"),
  38076. weight: math.unit(621, "lb"),
  38077. name: "Back",
  38078. image: {
  38079. source: "./media/characters/unmru/back.svg",
  38080. extra: 1894/1765,
  38081. bottom: 75/1969
  38082. }
  38083. },
  38084. dick: {
  38085. height: math.unit(3, "feet"),
  38086. weight: math.unit(35, "lb"),
  38087. name: "Dick",
  38088. image: {
  38089. source: "./media/characters/unmru/dick.svg"
  38090. }
  38091. },
  38092. },
  38093. [
  38094. {
  38095. name: "Normal",
  38096. height: math.unit(9, "feet")
  38097. },
  38098. {
  38099. name: "Natural",
  38100. height: math.unit(27, "feet"),
  38101. default: true
  38102. },
  38103. {
  38104. name: "Giant",
  38105. height: math.unit(90, "feet")
  38106. },
  38107. {
  38108. name: "Kaiju",
  38109. height: math.unit(270, "feet")
  38110. },
  38111. {
  38112. name: "Macro",
  38113. height: math.unit(900, "feet")
  38114. },
  38115. {
  38116. name: "Macro+",
  38117. height: math.unit(2700, "feet")
  38118. },
  38119. {
  38120. name: "Megamacro",
  38121. height: math.unit(9000, "feet")
  38122. },
  38123. {
  38124. name: "City-Crushing",
  38125. height: math.unit(27000, "feet")
  38126. },
  38127. {
  38128. name: "Mountain-Mashing",
  38129. height: math.unit(90000, "feet")
  38130. },
  38131. {
  38132. name: "Earth-Eclipsing",
  38133. height: math.unit(2.7e8, "feet")
  38134. },
  38135. {
  38136. name: "Sol-Swallowing",
  38137. height: math.unit(9e10, "feet")
  38138. },
  38139. {
  38140. name: "Majoris-Munching",
  38141. height: math.unit(2.7e13, "feet")
  38142. },
  38143. ]
  38144. ))
  38145. characterMakers.push(() => makeCharacter(
  38146. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38147. {
  38148. front: {
  38149. height: math.unit(1, "inch"),
  38150. name: "Front",
  38151. image: {
  38152. source: "./media/characters/squeaks-mouse/front.svg",
  38153. extra: 352/308,
  38154. bottom: 25/377
  38155. }
  38156. },
  38157. },
  38158. [
  38159. {
  38160. name: "Micro",
  38161. height: math.unit(1, "inch"),
  38162. default: true
  38163. },
  38164. ]
  38165. ))
  38166. characterMakers.push(() => makeCharacter(
  38167. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38168. {
  38169. side: {
  38170. height: math.unit(35, "feet"),
  38171. name: "Side",
  38172. image: {
  38173. source: "./media/characters/sayko/side.svg",
  38174. extra: 1697/1021,
  38175. bottom: 82/1779
  38176. }
  38177. },
  38178. head: {
  38179. height: math.unit(16, "feet"),
  38180. name: "Head",
  38181. image: {
  38182. source: "./media/characters/sayko/head.svg"
  38183. }
  38184. },
  38185. forepaw: {
  38186. height: math.unit(7.85, "feet"),
  38187. name: "Forepaw",
  38188. image: {
  38189. source: "./media/characters/sayko/forepaw.svg"
  38190. }
  38191. },
  38192. hindpaw: {
  38193. height: math.unit(8.8, "feet"),
  38194. name: "Hindpaw",
  38195. image: {
  38196. source: "./media/characters/sayko/hindpaw.svg"
  38197. }
  38198. },
  38199. },
  38200. [
  38201. {
  38202. name: "Normal",
  38203. height: math.unit(35, "feet"),
  38204. default: true
  38205. },
  38206. {
  38207. name: "Colossus",
  38208. height: math.unit(100, "meters")
  38209. },
  38210. {
  38211. name: "\"Small\" Deity",
  38212. height: math.unit(1, "km")
  38213. },
  38214. {
  38215. name: "\"Large\" Deity",
  38216. height: math.unit(15, "km")
  38217. },
  38218. ]
  38219. ))
  38220. characterMakers.push(() => makeCharacter(
  38221. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38222. {
  38223. front: {
  38224. height: math.unit(6, "feet"),
  38225. weight: math.unit(250, "lb"),
  38226. name: "Front",
  38227. image: {
  38228. source: "./media/characters/mukiro/front.svg",
  38229. extra: 1368/1310,
  38230. bottom: 34/1402
  38231. }
  38232. },
  38233. },
  38234. [
  38235. {
  38236. name: "Normal",
  38237. height: math.unit(6, "feet"),
  38238. default: true
  38239. },
  38240. ]
  38241. ))
  38242. characterMakers.push(() => makeCharacter(
  38243. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38244. {
  38245. front: {
  38246. height: math.unit(12 + 4/12, "feet"),
  38247. name: "Front",
  38248. image: {
  38249. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38250. extra: 1346/1311,
  38251. bottom: 65/1411
  38252. }
  38253. },
  38254. },
  38255. [
  38256. {
  38257. name: "Base",
  38258. height: math.unit(12 + 4/12, "feet"),
  38259. default: true
  38260. },
  38261. {
  38262. name: "Macro",
  38263. height: math.unit(150, "feet")
  38264. },
  38265. {
  38266. name: "Mega",
  38267. height: math.unit(2, "miles")
  38268. },
  38269. {
  38270. name: "Demi God",
  38271. height: math.unit(4, "AU")
  38272. },
  38273. {
  38274. name: "God Size",
  38275. height: math.unit(1, "universe")
  38276. },
  38277. ]
  38278. ))
  38279. characterMakers.push(() => makeCharacter(
  38280. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38281. {
  38282. front: {
  38283. height: math.unit(3 + 3/12, "feet"),
  38284. weight: math.unit(88, "lb"),
  38285. name: "Front",
  38286. image: {
  38287. source: "./media/characters/trey/front.svg",
  38288. extra: 1815/1509,
  38289. bottom: 60/1875
  38290. }
  38291. },
  38292. },
  38293. [
  38294. {
  38295. name: "Normal",
  38296. height: math.unit(3 + 3/12, "feet"),
  38297. default: true
  38298. },
  38299. ]
  38300. ))
  38301. characterMakers.push(() => makeCharacter(
  38302. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38303. {
  38304. front: {
  38305. height: math.unit(4, "meters"),
  38306. name: "Front",
  38307. image: {
  38308. source: "./media/characters/adelonda/front.svg",
  38309. extra: 1077/982,
  38310. bottom: 39/1116
  38311. }
  38312. },
  38313. back: {
  38314. height: math.unit(4, "meters"),
  38315. name: "Back",
  38316. image: {
  38317. source: "./media/characters/adelonda/back.svg",
  38318. extra: 1105/1003,
  38319. bottom: 25/1130
  38320. }
  38321. },
  38322. feral: {
  38323. height: math.unit(40/1.5, "meters"),
  38324. name: "Feral",
  38325. image: {
  38326. source: "./media/characters/adelonda/feral.svg",
  38327. extra: 597/271,
  38328. bottom: 387/984
  38329. }
  38330. },
  38331. },
  38332. [
  38333. {
  38334. name: "Normal",
  38335. height: math.unit(4, "meters"),
  38336. default: true
  38337. },
  38338. ]
  38339. ))
  38340. characterMakers.push(() => makeCharacter(
  38341. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38342. {
  38343. front: {
  38344. height: math.unit(8 + 4/12, "feet"),
  38345. weight: math.unit(670, "lb"),
  38346. name: "Front",
  38347. image: {
  38348. source: "./media/characters/acadiel/front.svg",
  38349. extra: 1901/1595,
  38350. bottom: 142/2043
  38351. }
  38352. },
  38353. },
  38354. [
  38355. {
  38356. name: "Normal",
  38357. height: math.unit(8 + 4/12, "feet"),
  38358. default: true
  38359. },
  38360. {
  38361. name: "Macro",
  38362. height: math.unit(200, "feet")
  38363. },
  38364. ]
  38365. ))
  38366. characterMakers.push(() => makeCharacter(
  38367. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38368. {
  38369. front: {
  38370. height: math.unit(6 + 2/12, "feet"),
  38371. weight: math.unit(185, "lb"),
  38372. name: "Front",
  38373. image: {
  38374. source: "./media/characters/kayne-ein/front.svg",
  38375. extra: 1780/1560,
  38376. bottom: 81/1861
  38377. }
  38378. },
  38379. },
  38380. [
  38381. {
  38382. name: "Normal",
  38383. height: math.unit(6 + 2/12, "feet"),
  38384. default: true
  38385. },
  38386. {
  38387. name: "Transformation Stage",
  38388. height: math.unit(15, "feet")
  38389. },
  38390. {
  38391. name: "Macro",
  38392. height: math.unit(150, "feet")
  38393. },
  38394. {
  38395. name: "Earth's Shadow",
  38396. height: math.unit(6200, "miles")
  38397. },
  38398. {
  38399. name: "Universal Demon",
  38400. height: math.unit(28e9, "parsecs")
  38401. },
  38402. {
  38403. name: "Multiverse God",
  38404. height: math.unit(3, "multiverses")
  38405. },
  38406. ]
  38407. ))
  38408. characterMakers.push(() => makeCharacter(
  38409. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38410. {
  38411. front: {
  38412. height: math.unit(5 + 5/12, "feet"),
  38413. name: "Front",
  38414. image: {
  38415. source: "./media/characters/fawn/front.svg",
  38416. extra: 1873/1731,
  38417. bottom: 95/1968
  38418. }
  38419. },
  38420. back: {
  38421. height: math.unit(5 + 5/12, "feet"),
  38422. name: "Back",
  38423. image: {
  38424. source: "./media/characters/fawn/back.svg",
  38425. extra: 1813/1700,
  38426. bottom: 14/1827
  38427. }
  38428. },
  38429. hoof: {
  38430. height: math.unit(1.45, "feet"),
  38431. name: "Hoof",
  38432. image: {
  38433. source: "./media/characters/fawn/hoof.svg"
  38434. }
  38435. },
  38436. },
  38437. [
  38438. {
  38439. name: "Normal",
  38440. height: math.unit(5 + 5/12, "feet"),
  38441. default: true
  38442. },
  38443. ]
  38444. ))
  38445. characterMakers.push(() => makeCharacter(
  38446. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38447. {
  38448. front: {
  38449. height: math.unit(2 + 5/12, "feet"),
  38450. name: "Front",
  38451. image: {
  38452. source: "./media/characters/orion/front.svg",
  38453. extra: 1366/1304,
  38454. bottom: 43/1409
  38455. }
  38456. },
  38457. paw: {
  38458. height: math.unit(0.52, "feet"),
  38459. name: "Paw",
  38460. image: {
  38461. source: "./media/characters/orion/paw.svg"
  38462. }
  38463. },
  38464. },
  38465. [
  38466. {
  38467. name: "Normal",
  38468. height: math.unit(2 + 5/12, "feet"),
  38469. default: true
  38470. },
  38471. ]
  38472. ))
  38473. characterMakers.push(() => makeCharacter(
  38474. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38475. {
  38476. front: {
  38477. height: math.unit(5 + 10/12, "feet"),
  38478. name: "Front",
  38479. image: {
  38480. source: "./media/characters/vera/front.svg",
  38481. extra: 1680/1575,
  38482. bottom: 49/1729
  38483. }
  38484. },
  38485. back: {
  38486. height: math.unit(5 + 10/12, "feet"),
  38487. name: "Back",
  38488. image: {
  38489. source: "./media/characters/vera/back.svg",
  38490. extra: 1700/1588,
  38491. bottom: 18/1718
  38492. }
  38493. },
  38494. arcanine: {
  38495. height: math.unit(6 + 8/12, "feet"),
  38496. name: "Arcanine",
  38497. image: {
  38498. source: "./media/characters/vera/arcanine.svg",
  38499. extra: 1590/1511,
  38500. bottom: 71/1661
  38501. }
  38502. },
  38503. maw: {
  38504. height: math.unit(0.82, "feet"),
  38505. name: "Maw",
  38506. image: {
  38507. source: "./media/characters/vera/maw.svg"
  38508. }
  38509. },
  38510. mawArcanine: {
  38511. height: math.unit(0.97, "feet"),
  38512. name: "Maw (Arcanine)",
  38513. image: {
  38514. source: "./media/characters/vera/maw-arcanine.svg"
  38515. }
  38516. },
  38517. paw: {
  38518. height: math.unit(0.75, "feet"),
  38519. name: "Paw",
  38520. image: {
  38521. source: "./media/characters/vera/paw.svg"
  38522. }
  38523. },
  38524. pawprint: {
  38525. height: math.unit(0.52, "feet"),
  38526. name: "Pawprint",
  38527. image: {
  38528. source: "./media/characters/vera/pawprint.svg"
  38529. }
  38530. },
  38531. },
  38532. [
  38533. {
  38534. name: "Normal",
  38535. height: math.unit(5 + 10/12, "feet"),
  38536. default: true
  38537. },
  38538. {
  38539. name: "Macro",
  38540. height: math.unit(75, "feet")
  38541. },
  38542. ]
  38543. ))
  38544. characterMakers.push(() => makeCharacter(
  38545. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38546. {
  38547. front: {
  38548. height: math.unit(4, "feet"),
  38549. weight: math.unit(40, "lb"),
  38550. name: "Front",
  38551. image: {
  38552. source: "./media/characters/orvan-rabbit/front.svg",
  38553. extra: 1896/1642,
  38554. bottom: 29/1925
  38555. }
  38556. },
  38557. },
  38558. [
  38559. {
  38560. name: "Normal",
  38561. height: math.unit(4, "feet"),
  38562. default: true
  38563. },
  38564. ]
  38565. ))
  38566. characterMakers.push(() => makeCharacter(
  38567. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38568. {
  38569. front: {
  38570. height: math.unit(6, "feet"),
  38571. weight: math.unit(168, "lb"),
  38572. name: "Front",
  38573. image: {
  38574. source: "./media/characters/lisa/front.svg",
  38575. extra: 2065/1867,
  38576. bottom: 46/2111
  38577. }
  38578. },
  38579. back: {
  38580. height: math.unit(6, "feet"),
  38581. weight: math.unit(168, "lb"),
  38582. name: "Back",
  38583. image: {
  38584. source: "./media/characters/lisa/back.svg",
  38585. extra: 1982/1838,
  38586. bottom: 29/2011
  38587. }
  38588. },
  38589. maw: {
  38590. height: math.unit(0.81, "feet"),
  38591. name: "Maw",
  38592. image: {
  38593. source: "./media/characters/lisa/maw.svg"
  38594. }
  38595. },
  38596. paw: {
  38597. height: math.unit(0.9, "feet"),
  38598. name: "Paw",
  38599. image: {
  38600. source: "./media/characters/lisa/paw.svg"
  38601. }
  38602. },
  38603. caribousune: {
  38604. height: math.unit(7 + 2/12, "feet"),
  38605. weight: math.unit(268, "lb"),
  38606. name: "Caribousune",
  38607. image: {
  38608. source: "./media/characters/lisa/caribousune.svg",
  38609. extra: 1843/1633,
  38610. bottom: 29/1872
  38611. }
  38612. },
  38613. frontCaribousune: {
  38614. height: math.unit(7 + 2/12, "feet"),
  38615. weight: math.unit(268, "lb"),
  38616. name: "Front (Caribousune)",
  38617. image: {
  38618. source: "./media/characters/lisa/front-caribousune.svg",
  38619. extra: 1818/1638,
  38620. bottom: 52/1870
  38621. }
  38622. },
  38623. sideCaribousune: {
  38624. height: math.unit(7 + 2/12, "feet"),
  38625. weight: math.unit(268, "lb"),
  38626. name: "Side (Caribousune)",
  38627. image: {
  38628. source: "./media/characters/lisa/side-caribousune.svg",
  38629. extra: 1851/1635,
  38630. bottom: 16/1867
  38631. }
  38632. },
  38633. backCaribousune: {
  38634. height: math.unit(7 + 2/12, "feet"),
  38635. weight: math.unit(268, "lb"),
  38636. name: "Back (Caribousune)",
  38637. image: {
  38638. source: "./media/characters/lisa/back-caribousune.svg",
  38639. extra: 1801/1604,
  38640. bottom: 44/1845
  38641. }
  38642. },
  38643. caribou: {
  38644. height: math.unit(7 + 2/12, "feet"),
  38645. weight: math.unit(268, "lb"),
  38646. name: "Caribou",
  38647. image: {
  38648. source: "./media/characters/lisa/caribou.svg",
  38649. extra: 1843/1633,
  38650. bottom: 29/1872
  38651. }
  38652. },
  38653. frontCaribou: {
  38654. height: math.unit(7 + 2/12, "feet"),
  38655. weight: math.unit(268, "lb"),
  38656. name: "Front (Caribou)",
  38657. image: {
  38658. source: "./media/characters/lisa/front-caribou.svg",
  38659. extra: 1818/1638,
  38660. bottom: 52/1870
  38661. }
  38662. },
  38663. sideCaribou: {
  38664. height: math.unit(7 + 2/12, "feet"),
  38665. weight: math.unit(268, "lb"),
  38666. name: "Side (Caribou)",
  38667. image: {
  38668. source: "./media/characters/lisa/side-caribou.svg",
  38669. extra: 1851/1635,
  38670. bottom: 16/1867
  38671. }
  38672. },
  38673. backCaribou: {
  38674. height: math.unit(7 + 2/12, "feet"),
  38675. weight: math.unit(268, "lb"),
  38676. name: "Back (Caribou)",
  38677. image: {
  38678. source: "./media/characters/lisa/back-caribou.svg",
  38679. extra: 1801/1604,
  38680. bottom: 44/1845
  38681. }
  38682. },
  38683. mawCaribou: {
  38684. height: math.unit(1.45, "feet"),
  38685. name: "Maw (Caribou)",
  38686. image: {
  38687. source: "./media/characters/lisa/maw-caribou.svg"
  38688. }
  38689. },
  38690. mawCaribousune: {
  38691. height: math.unit(1.45, "feet"),
  38692. name: "Maw (Caribousune)",
  38693. image: {
  38694. source: "./media/characters/lisa/maw-caribousune.svg"
  38695. }
  38696. },
  38697. pawCaribousune: {
  38698. height: math.unit(1.61, "feet"),
  38699. name: "Paw (Caribou)",
  38700. image: {
  38701. source: "./media/characters/lisa/paw-caribousune.svg"
  38702. }
  38703. },
  38704. },
  38705. [
  38706. {
  38707. name: "Normal",
  38708. height: math.unit(6, "feet")
  38709. },
  38710. {
  38711. name: "God Size",
  38712. height: math.unit(72, "feet"),
  38713. default: true
  38714. },
  38715. {
  38716. name: "Towering",
  38717. height: math.unit(288, "feet")
  38718. },
  38719. {
  38720. name: "City Size",
  38721. height: math.unit(48384, "feet")
  38722. },
  38723. {
  38724. name: "Continental",
  38725. height: math.unit(4200, "miles")
  38726. },
  38727. {
  38728. name: "Planet Eater",
  38729. height: math.unit(42, "earths")
  38730. },
  38731. {
  38732. name: "Star Swallower",
  38733. height: math.unit(42, "solarradii")
  38734. },
  38735. {
  38736. name: "System Swallower",
  38737. height: math.unit(84000, "AU")
  38738. },
  38739. {
  38740. name: "Galaxy Gobbler",
  38741. height: math.unit(42, "galaxies")
  38742. },
  38743. {
  38744. name: "Universe Devourer",
  38745. height: math.unit(42, "universes")
  38746. },
  38747. {
  38748. name: "Multiverse Muncher",
  38749. height: math.unit(42, "multiverses")
  38750. },
  38751. ]
  38752. ))
  38753. characterMakers.push(() => makeCharacter(
  38754. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38755. {
  38756. front: {
  38757. height: math.unit(36, "feet"),
  38758. name: "Front",
  38759. image: {
  38760. source: "./media/characters/shadow-rat/front.svg",
  38761. extra: 1845/1758,
  38762. bottom: 83/1928
  38763. }
  38764. },
  38765. },
  38766. [
  38767. {
  38768. name: "Macro",
  38769. height: math.unit(36, "feet"),
  38770. default: true
  38771. },
  38772. ]
  38773. ))
  38774. characterMakers.push(() => makeCharacter(
  38775. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38776. {
  38777. side: {
  38778. height: math.unit(8, "feet"),
  38779. weight: math.unit(2630, "lb"),
  38780. name: "Side",
  38781. image: {
  38782. source: "./media/characters/torallia/side.svg",
  38783. extra: 2164/2021,
  38784. bottom: 371/2535
  38785. }
  38786. },
  38787. },
  38788. [
  38789. {
  38790. name: "Mortal Interaction",
  38791. height: math.unit(8, "feet")
  38792. },
  38793. {
  38794. name: "Natural",
  38795. height: math.unit(24, "feet"),
  38796. default: true
  38797. },
  38798. {
  38799. name: "Giant",
  38800. height: math.unit(80, "feet")
  38801. },
  38802. {
  38803. name: "Kaiju",
  38804. height: math.unit(240, "feet")
  38805. },
  38806. {
  38807. name: "Macro",
  38808. height: math.unit(800, "feet")
  38809. },
  38810. {
  38811. name: "Macro+",
  38812. height: math.unit(2400, "feet")
  38813. },
  38814. {
  38815. name: "Macro++",
  38816. height: math.unit(8000, "feet")
  38817. },
  38818. {
  38819. name: "City-Crushing",
  38820. height: math.unit(24000, "feet")
  38821. },
  38822. {
  38823. name: "Mountain-Mashing",
  38824. height: math.unit(80000, "feet")
  38825. },
  38826. {
  38827. name: "District Demolisher",
  38828. height: math.unit(240000, "feet")
  38829. },
  38830. {
  38831. name: "Tri-County Terror",
  38832. height: math.unit(800000, "feet")
  38833. },
  38834. {
  38835. name: "State Smasher",
  38836. height: math.unit(2.4e6, "feet")
  38837. },
  38838. {
  38839. name: "Nation Nemesis",
  38840. height: math.unit(8e6, "feet")
  38841. },
  38842. {
  38843. name: "Continent Cracker",
  38844. height: math.unit(2.4e7, "feet")
  38845. },
  38846. {
  38847. name: "Planet-Pillaging",
  38848. height: math.unit(8e7, "feet")
  38849. },
  38850. {
  38851. name: "Earth-Eclipsing",
  38852. height: math.unit(2.4e8, "feet")
  38853. },
  38854. {
  38855. name: "Jovian-Jostling",
  38856. height: math.unit(8e8, "feet")
  38857. },
  38858. {
  38859. name: "Gas Giant Gulper",
  38860. height: math.unit(2.4e9, "feet")
  38861. },
  38862. {
  38863. name: "Astral Annihilator",
  38864. height: math.unit(8e9, "feet")
  38865. },
  38866. {
  38867. name: "Celestial Conqueror",
  38868. height: math.unit(2.4e10, "feet")
  38869. },
  38870. {
  38871. name: "Sol-Swallowing",
  38872. height: math.unit(8e10, "feet")
  38873. },
  38874. {
  38875. name: "Hunter of the Heavens",
  38876. height: math.unit(2.4e13, "feet")
  38877. },
  38878. ]
  38879. ))
  38880. characterMakers.push(() => makeCharacter(
  38881. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38882. {
  38883. front: {
  38884. height: math.unit(6 + 8/12, "feet"),
  38885. name: "Front",
  38886. image: {
  38887. source: "./media/characters/rebecca-pawlson/front.svg",
  38888. extra: 1737/1596,
  38889. bottom: 107/1844
  38890. }
  38891. },
  38892. back: {
  38893. height: math.unit(6 + 8/12, "feet"),
  38894. name: "Back",
  38895. image: {
  38896. source: "./media/characters/rebecca-pawlson/back.svg",
  38897. extra: 1702/1523,
  38898. bottom: 86/1788
  38899. }
  38900. },
  38901. },
  38902. [
  38903. {
  38904. name: "Normal",
  38905. height: math.unit(6 + 8/12, "feet")
  38906. },
  38907. {
  38908. name: "Mini Macro",
  38909. height: math.unit(10, "feet"),
  38910. default: true
  38911. },
  38912. {
  38913. name: "Macro",
  38914. height: math.unit(100, "feet")
  38915. },
  38916. {
  38917. name: "Mega Macro",
  38918. height: math.unit(2500, "feet")
  38919. },
  38920. {
  38921. name: "Giga Macro",
  38922. height: math.unit(50, "miles")
  38923. },
  38924. ]
  38925. ))
  38926. characterMakers.push(() => makeCharacter(
  38927. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38928. {
  38929. front: {
  38930. height: math.unit(7 + 6/12, "feet"),
  38931. weight: math.unit(600, "lb"),
  38932. name: "Front",
  38933. image: {
  38934. source: "./media/characters/moxie-nova/front.svg",
  38935. extra: 1734/1652,
  38936. bottom: 41/1775
  38937. }
  38938. },
  38939. },
  38940. [
  38941. {
  38942. name: "Normal",
  38943. height: math.unit(7 + 6/12, "feet"),
  38944. default: true
  38945. },
  38946. ]
  38947. ))
  38948. characterMakers.push(() => makeCharacter(
  38949. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38950. {
  38951. goat: {
  38952. height: math.unit(4, "feet"),
  38953. weight: math.unit(180, "lb"),
  38954. name: "Goat",
  38955. image: {
  38956. source: "./media/characters/tiffany/goat.svg",
  38957. extra: 1845/1595,
  38958. bottom: 106/1951
  38959. }
  38960. },
  38961. front: {
  38962. height: math.unit(5, "feet"),
  38963. weight: math.unit(150, "lb"),
  38964. name: "Foxcoon",
  38965. image: {
  38966. source: "./media/characters/tiffany/foxcoon.svg",
  38967. extra: 1941/1845,
  38968. bottom: 58/1999
  38969. }
  38970. },
  38971. },
  38972. [
  38973. {
  38974. name: "Normal",
  38975. height: math.unit(5, "feet"),
  38976. default: true
  38977. },
  38978. ]
  38979. ))
  38980. characterMakers.push(() => makeCharacter(
  38981. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38982. {
  38983. front: {
  38984. height: math.unit(8, "feet"),
  38985. weight: math.unit(300, "lb"),
  38986. name: "Front",
  38987. image: {
  38988. source: "./media/characters/raxinath/front.svg",
  38989. extra: 1407/1309,
  38990. bottom: 39/1446
  38991. }
  38992. },
  38993. back: {
  38994. height: math.unit(8, "feet"),
  38995. weight: math.unit(300, "lb"),
  38996. name: "Back",
  38997. image: {
  38998. source: "./media/characters/raxinath/back.svg",
  38999. extra: 1405/1315,
  39000. bottom: 9/1414
  39001. }
  39002. },
  39003. },
  39004. [
  39005. {
  39006. name: "Speck",
  39007. height: math.unit(0.5, "nm")
  39008. },
  39009. {
  39010. name: "Micro",
  39011. height: math.unit(3, "inches")
  39012. },
  39013. {
  39014. name: "Kobold",
  39015. height: math.unit(3, "feet")
  39016. },
  39017. {
  39018. name: "Normal",
  39019. height: math.unit(8, "feet"),
  39020. default: true
  39021. },
  39022. {
  39023. name: "Giant",
  39024. height: math.unit(50, "feet")
  39025. },
  39026. {
  39027. name: "Macro",
  39028. height: math.unit(1000, "feet")
  39029. },
  39030. {
  39031. name: "Megamacro",
  39032. height: math.unit(1, "mile")
  39033. },
  39034. ]
  39035. ))
  39036. characterMakers.push(() => makeCharacter(
  39037. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39038. {
  39039. front: {
  39040. height: math.unit(10, "feet"),
  39041. weight: math.unit(1442, "lb"),
  39042. name: "Front",
  39043. image: {
  39044. source: "./media/characters/mal-dragon/front.svg",
  39045. extra: 1515/1444,
  39046. bottom: 113/1628
  39047. }
  39048. },
  39049. back: {
  39050. height: math.unit(10, "feet"),
  39051. weight: math.unit(1442, "lb"),
  39052. name: "Back",
  39053. image: {
  39054. source: "./media/characters/mal-dragon/back.svg",
  39055. extra: 1527/1434,
  39056. bottom: 25/1552
  39057. }
  39058. },
  39059. },
  39060. [
  39061. {
  39062. name: "Mortal Interaction",
  39063. height: math.unit(10, "feet"),
  39064. default: true
  39065. },
  39066. {
  39067. name: "Large",
  39068. height: math.unit(30, "feet")
  39069. },
  39070. {
  39071. name: "Kaiju",
  39072. height: math.unit(300, "feet")
  39073. },
  39074. {
  39075. name: "Megamacro",
  39076. height: math.unit(10000, "feet")
  39077. },
  39078. {
  39079. name: "Continent Cracker",
  39080. height: math.unit(30000000, "feet")
  39081. },
  39082. {
  39083. name: "Sol-Swallowing",
  39084. height: math.unit(1e11, "feet")
  39085. },
  39086. {
  39087. name: "Light Universal",
  39088. height: math.unit(5, "universes")
  39089. },
  39090. {
  39091. name: "Universe Atoms",
  39092. height: math.unit(1.829e9, "universes")
  39093. },
  39094. {
  39095. name: "Light Multiversal",
  39096. height: math.unit(5, "multiverses")
  39097. },
  39098. {
  39099. name: "Multiverse Atoms",
  39100. height: math.unit(1.829e9, "multiverses")
  39101. },
  39102. {
  39103. name: "Fabric of Time",
  39104. height: math.unit(1e262, "multiverses")
  39105. },
  39106. ]
  39107. ))
  39108. characterMakers.push(() => makeCharacter(
  39109. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39110. {
  39111. front: {
  39112. height: math.unit(9, "feet"),
  39113. weight: math.unit(1050, "lb"),
  39114. name: "Front",
  39115. image: {
  39116. source: "./media/characters/tabitha/front.svg",
  39117. extra: 2083/1994,
  39118. bottom: 68/2151
  39119. }
  39120. },
  39121. },
  39122. [
  39123. {
  39124. name: "Baseline",
  39125. height: math.unit(9, "feet"),
  39126. default: true
  39127. },
  39128. {
  39129. name: "Giant",
  39130. height: math.unit(90, "feet")
  39131. },
  39132. {
  39133. name: "Macro",
  39134. height: math.unit(900, "feet")
  39135. },
  39136. {
  39137. name: "Megamacro",
  39138. height: math.unit(9000, "feet")
  39139. },
  39140. {
  39141. name: "City-Crushing",
  39142. height: math.unit(27000, "feet")
  39143. },
  39144. {
  39145. name: "Mountain-Mashing",
  39146. height: math.unit(90000, "feet")
  39147. },
  39148. {
  39149. name: "Nation Nemesis",
  39150. height: math.unit(9e6, "feet")
  39151. },
  39152. {
  39153. name: "Continent Cracker",
  39154. height: math.unit(27e6, "feet")
  39155. },
  39156. {
  39157. name: "Earth-Eclipsing",
  39158. height: math.unit(2.7e8, "feet")
  39159. },
  39160. {
  39161. name: "Gas Giant Gulper",
  39162. height: math.unit(2.7e9, "feet")
  39163. },
  39164. {
  39165. name: "Sol-Swallowing",
  39166. height: math.unit(9e10, "feet")
  39167. },
  39168. {
  39169. name: "Galaxy Gulper",
  39170. height: math.unit(9, "galaxies")
  39171. },
  39172. {
  39173. name: "Cosmos Churner",
  39174. height: math.unit(9, "universes")
  39175. },
  39176. ]
  39177. ))
  39178. characterMakers.push(() => makeCharacter(
  39179. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39180. {
  39181. front: {
  39182. height: math.unit(160, "cm"),
  39183. weight: math.unit(55, "kg"),
  39184. name: "Front",
  39185. image: {
  39186. source: "./media/characters/tow/front.svg",
  39187. extra: 1751/1722,
  39188. bottom: 74/1825
  39189. }
  39190. },
  39191. },
  39192. [
  39193. {
  39194. name: "Norm",
  39195. height: math.unit(160, "cm")
  39196. },
  39197. {
  39198. name: "Casual",
  39199. height: math.unit(3200, "m"),
  39200. default: true
  39201. },
  39202. {
  39203. name: "Show-Off",
  39204. height: math.unit(160, "km")
  39205. },
  39206. ]
  39207. ))
  39208. characterMakers.push(() => makeCharacter(
  39209. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39210. {
  39211. front: {
  39212. height: math.unit(7 + 11/12, "feet"),
  39213. weight: math.unit(342.8, "lb"),
  39214. name: "Front",
  39215. image: {
  39216. source: "./media/characters/vivian-orca-dragon/front.svg",
  39217. extra: 1890/1865,
  39218. bottom: 28/1918
  39219. }
  39220. },
  39221. },
  39222. [
  39223. {
  39224. name: "Micro",
  39225. height: math.unit(5, "inches")
  39226. },
  39227. {
  39228. name: "Normal",
  39229. height: math.unit(7 + 11/12, "feet"),
  39230. default: true
  39231. },
  39232. {
  39233. name: "Macro",
  39234. height: math.unit(395 + 7/12, "feet")
  39235. },
  39236. ]
  39237. ))
  39238. characterMakers.push(() => makeCharacter(
  39239. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39240. {
  39241. side: {
  39242. height: math.unit(10, "feet"),
  39243. weight: math.unit(1442, "lb"),
  39244. name: "Side",
  39245. image: {
  39246. source: "./media/characters/lotherakon/side.svg",
  39247. extra: 1604/1497,
  39248. bottom: 89/1693
  39249. }
  39250. },
  39251. },
  39252. [
  39253. {
  39254. name: "Mortal Interaction",
  39255. height: math.unit(10, "feet")
  39256. },
  39257. {
  39258. name: "Large",
  39259. height: math.unit(30, "feet"),
  39260. default: true
  39261. },
  39262. {
  39263. name: "Giant",
  39264. height: math.unit(100, "feet")
  39265. },
  39266. {
  39267. name: "Kaiju",
  39268. height: math.unit(300, "feet")
  39269. },
  39270. {
  39271. name: "Macro",
  39272. height: math.unit(1000, "feet")
  39273. },
  39274. {
  39275. name: "Macro+",
  39276. height: math.unit(3000, "feet")
  39277. },
  39278. {
  39279. name: "Megamacro",
  39280. height: math.unit(10000, "feet")
  39281. },
  39282. {
  39283. name: "City-Crushing",
  39284. height: math.unit(30000, "feet")
  39285. },
  39286. {
  39287. name: "Continent Cracker",
  39288. height: math.unit(30e6, "feet")
  39289. },
  39290. {
  39291. name: "Earth Eclipsing",
  39292. height: math.unit(3e8, "feet")
  39293. },
  39294. {
  39295. name: "Gas Giant Gulper",
  39296. height: math.unit(3e9, "feet")
  39297. },
  39298. {
  39299. name: "Sol-Swallowing",
  39300. height: math.unit(1e11, "feet")
  39301. },
  39302. {
  39303. name: "System Swallower",
  39304. height: math.unit(3e14, "feet")
  39305. },
  39306. {
  39307. name: "Galaxy Gulper",
  39308. height: math.unit(10, "galaxies")
  39309. },
  39310. {
  39311. name: "Light Universal",
  39312. height: math.unit(5, "universes")
  39313. },
  39314. {
  39315. name: "Universe Palm",
  39316. height: math.unit(20, "universes")
  39317. },
  39318. {
  39319. name: "Light Multiversal",
  39320. height: math.unit(5, "multiverses")
  39321. },
  39322. {
  39323. name: "Multiverse Palm",
  39324. height: math.unit(20, "multiverses")
  39325. },
  39326. {
  39327. name: "Inferno Incarnate",
  39328. height: math.unit(1e7, "multiverses")
  39329. },
  39330. ]
  39331. ))
  39332. characterMakers.push(() => makeCharacter(
  39333. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39334. {
  39335. front: {
  39336. height: math.unit(8, "feet"),
  39337. weight: math.unit(1200, "lb"),
  39338. name: "Front",
  39339. image: {
  39340. source: "./media/characters/malithee/front.svg",
  39341. extra: 1675/1640,
  39342. bottom: 162/1837
  39343. }
  39344. },
  39345. },
  39346. [
  39347. {
  39348. name: "Mortal Interaction",
  39349. height: math.unit(8, "feet"),
  39350. default: true
  39351. },
  39352. {
  39353. name: "Large",
  39354. height: math.unit(24, "feet")
  39355. },
  39356. {
  39357. name: "Kaiju",
  39358. height: math.unit(240, "feet")
  39359. },
  39360. {
  39361. name: "Megamacro",
  39362. height: math.unit(8000, "feet")
  39363. },
  39364. {
  39365. name: "Continent Cracker",
  39366. height: math.unit(24e6, "feet")
  39367. },
  39368. {
  39369. name: "Earth-Eclipsing",
  39370. height: math.unit(2.4e8, "feet")
  39371. },
  39372. {
  39373. name: "Sol-Swallowing",
  39374. height: math.unit(8e10, "feet")
  39375. },
  39376. {
  39377. name: "Galaxy Gulper",
  39378. height: math.unit(8, "galaxies")
  39379. },
  39380. {
  39381. name: "Light Universal",
  39382. height: math.unit(4, "universes")
  39383. },
  39384. {
  39385. name: "Universe Atoms",
  39386. height: math.unit(1.829e9, "universes")
  39387. },
  39388. {
  39389. name: "Light Multiversal",
  39390. height: math.unit(4, "multiverses")
  39391. },
  39392. {
  39393. name: "Multiverse Atoms",
  39394. height: math.unit(1.829e9, "multiverses")
  39395. },
  39396. {
  39397. name: "Nigh-Omnipresence",
  39398. height: math.unit(8e261, "multiverses")
  39399. },
  39400. ]
  39401. ))
  39402. characterMakers.push(() => makeCharacter(
  39403. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39404. {
  39405. front: {
  39406. height: math.unit(10, "feet"),
  39407. weight: math.unit(1500, "lb"),
  39408. name: "Front",
  39409. image: {
  39410. source: "./media/characters/miles-thestia/front.svg",
  39411. extra: 1812/1727,
  39412. bottom: 86/1898
  39413. }
  39414. },
  39415. back: {
  39416. height: math.unit(10, "feet"),
  39417. weight: math.unit(1500, "lb"),
  39418. name: "Back",
  39419. image: {
  39420. source: "./media/characters/miles-thestia/back.svg",
  39421. extra: 1799/1690,
  39422. bottom: 47/1846
  39423. }
  39424. },
  39425. frontNsfw: {
  39426. height: math.unit(10, "feet"),
  39427. weight: math.unit(1500, "lb"),
  39428. name: "Front (NSFW)",
  39429. image: {
  39430. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39431. extra: 1812/1727,
  39432. bottom: 86/1898
  39433. }
  39434. },
  39435. },
  39436. [
  39437. {
  39438. name: "Mini-Macro",
  39439. height: math.unit(10, "feet"),
  39440. default: true
  39441. },
  39442. ]
  39443. ))
  39444. characterMakers.push(() => makeCharacter(
  39445. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39446. {
  39447. front: {
  39448. height: math.unit(25, "feet"),
  39449. name: "Front",
  39450. image: {
  39451. source: "./media/characters/titan-s-wulf/front.svg",
  39452. extra: 1560/1484,
  39453. bottom: 76/1636
  39454. }
  39455. },
  39456. },
  39457. [
  39458. {
  39459. name: "Smallest",
  39460. height: math.unit(25, "feet"),
  39461. default: true
  39462. },
  39463. {
  39464. name: "Normal",
  39465. height: math.unit(200, "feet")
  39466. },
  39467. {
  39468. name: "Macro",
  39469. height: math.unit(200000, "feet")
  39470. },
  39471. {
  39472. name: "Multiversal Original",
  39473. height: math.unit(10000, "multiverses")
  39474. },
  39475. ]
  39476. ))
  39477. characterMakers.push(() => makeCharacter(
  39478. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39479. {
  39480. front: {
  39481. height: math.unit(8, "feet"),
  39482. weight: math.unit(553, "lb"),
  39483. name: "Front",
  39484. image: {
  39485. source: "./media/characters/tawendeh/front.svg",
  39486. extra: 2365/2268,
  39487. bottom: 83/2448
  39488. }
  39489. },
  39490. frontClothed: {
  39491. height: math.unit(8, "feet"),
  39492. weight: math.unit(553, "lb"),
  39493. name: "Front (Clothed)",
  39494. image: {
  39495. source: "./media/characters/tawendeh/front-clothed.svg",
  39496. extra: 2365/2268,
  39497. bottom: 83/2448
  39498. }
  39499. },
  39500. back: {
  39501. height: math.unit(8, "feet"),
  39502. weight: math.unit(553, "lb"),
  39503. name: "Back",
  39504. image: {
  39505. source: "./media/characters/tawendeh/back.svg",
  39506. extra: 2397/2294,
  39507. bottom: 42/2439
  39508. }
  39509. },
  39510. },
  39511. [
  39512. {
  39513. name: "Mortal Interaction",
  39514. height: math.unit(8, "feet"),
  39515. default: true
  39516. },
  39517. {
  39518. name: "Giant",
  39519. height: math.unit(80, "feet")
  39520. },
  39521. {
  39522. name: "Macro",
  39523. height: math.unit(800, "feet")
  39524. },
  39525. {
  39526. name: "Megamacro",
  39527. height: math.unit(8000, "feet")
  39528. },
  39529. {
  39530. name: "City-Crushing",
  39531. height: math.unit(24000, "feet")
  39532. },
  39533. {
  39534. name: "Mountain-Mashing",
  39535. height: math.unit(80000, "feet")
  39536. },
  39537. {
  39538. name: "Nation Nemesis",
  39539. height: math.unit(8e6, "feet")
  39540. },
  39541. {
  39542. name: "Continent Cracker",
  39543. height: math.unit(24e6, "feet")
  39544. },
  39545. {
  39546. name: "Earth-Eclipsing",
  39547. height: math.unit(2.4e8, "feet")
  39548. },
  39549. {
  39550. name: "Gas Giant Gulper",
  39551. height: math.unit(2.4e9, "feet")
  39552. },
  39553. {
  39554. name: "Sol-Swallowing",
  39555. height: math.unit(8e10, "feet")
  39556. },
  39557. {
  39558. name: "Galaxy Gulper",
  39559. height: math.unit(8, "galaxies")
  39560. },
  39561. {
  39562. name: "Cosmos Churner",
  39563. height: math.unit(8, "universes")
  39564. },
  39565. {
  39566. name: "Omnipotent Otter",
  39567. height: math.unit(80, "universes")
  39568. },
  39569. ]
  39570. ))
  39571. characterMakers.push(() => makeCharacter(
  39572. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39573. {
  39574. front: {
  39575. height: math.unit(2.6, "meters"),
  39576. weight: math.unit(900, "kg"),
  39577. name: "Front",
  39578. image: {
  39579. source: "./media/characters/neesha/front.svg",
  39580. extra: 1803/1653,
  39581. bottom: 128/1931
  39582. }
  39583. },
  39584. },
  39585. [
  39586. {
  39587. name: "Normal",
  39588. height: math.unit(2.6, "meters"),
  39589. default: true
  39590. },
  39591. {
  39592. name: "Macro",
  39593. height: math.unit(50, "meters")
  39594. },
  39595. ]
  39596. ))
  39597. characterMakers.push(() => makeCharacter(
  39598. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39599. {
  39600. front: {
  39601. height: math.unit(5, "feet"),
  39602. weight: math.unit(185, "lb"),
  39603. name: "Front",
  39604. image: {
  39605. source: "./media/characters/kyera/front.svg",
  39606. extra: 1875/1790,
  39607. bottom: 96/1971
  39608. }
  39609. },
  39610. },
  39611. [
  39612. {
  39613. name: "Normal",
  39614. height: math.unit(5, "feet"),
  39615. default: true
  39616. },
  39617. ]
  39618. ))
  39619. characterMakers.push(() => makeCharacter(
  39620. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39621. {
  39622. front: {
  39623. height: math.unit(7 + 6/12, "feet"),
  39624. weight: math.unit(540, "lb"),
  39625. name: "Front",
  39626. image: {
  39627. source: "./media/characters/yuko/front.svg",
  39628. extra: 1282/1222,
  39629. bottom: 101/1383
  39630. }
  39631. },
  39632. frontClothed: {
  39633. height: math.unit(7 + 6/12, "feet"),
  39634. weight: math.unit(540, "lb"),
  39635. name: "Front (Clothed)",
  39636. image: {
  39637. source: "./media/characters/yuko/front-clothed.svg",
  39638. extra: 1282/1222,
  39639. bottom: 101/1383
  39640. }
  39641. },
  39642. },
  39643. [
  39644. {
  39645. name: "Normal",
  39646. height: math.unit(7 + 6/12, "feet"),
  39647. default: true
  39648. },
  39649. {
  39650. name: "Macro",
  39651. height: math.unit(26 + 9/12, "feet")
  39652. },
  39653. {
  39654. name: "Megamacro",
  39655. height: math.unit(300, "feet")
  39656. },
  39657. {
  39658. name: "Gigamacro",
  39659. height: math.unit(5000, "feet")
  39660. },
  39661. {
  39662. name: "Planetary",
  39663. height: math.unit(10000, "miles")
  39664. },
  39665. ]
  39666. ))
  39667. characterMakers.push(() => makeCharacter(
  39668. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39669. {
  39670. front: {
  39671. height: math.unit(8 + 2/12, "feet"),
  39672. weight: math.unit(600, "lb"),
  39673. name: "Front",
  39674. image: {
  39675. source: "./media/characters/deam-nitrel/front.svg",
  39676. extra: 1308/1234,
  39677. bottom: 125/1433
  39678. }
  39679. },
  39680. },
  39681. [
  39682. {
  39683. name: "Normal",
  39684. height: math.unit(8 + 2/12, "feet"),
  39685. default: true
  39686. },
  39687. ]
  39688. ))
  39689. characterMakers.push(() => makeCharacter(
  39690. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39691. {
  39692. front: {
  39693. height: math.unit(6.1, "feet"),
  39694. weight: math.unit(180, "lb"),
  39695. name: "Front",
  39696. image: {
  39697. source: "./media/characters/skyress/front.svg",
  39698. extra: 1045/915,
  39699. bottom: 28/1073
  39700. }
  39701. },
  39702. maw: {
  39703. height: math.unit(1, "feet"),
  39704. name: "Maw",
  39705. image: {
  39706. source: "./media/characters/skyress/maw.svg"
  39707. }
  39708. },
  39709. },
  39710. [
  39711. {
  39712. name: "Normal",
  39713. height: math.unit(6.1, "feet"),
  39714. default: true
  39715. },
  39716. {
  39717. name: "Macro",
  39718. height: math.unit(200, "feet")
  39719. },
  39720. ]
  39721. ))
  39722. characterMakers.push(() => makeCharacter(
  39723. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39724. {
  39725. front: {
  39726. height: math.unit(4 + 2/12, "feet"),
  39727. weight: math.unit(40, "kg"),
  39728. name: "Front",
  39729. image: {
  39730. source: "./media/characters/amethyst-jones/front.svg",
  39731. extra: 1220/1150,
  39732. bottom: 101/1321
  39733. }
  39734. },
  39735. },
  39736. [
  39737. {
  39738. name: "Normal",
  39739. height: math.unit(4 + 2/12, "feet"),
  39740. default: true
  39741. },
  39742. ]
  39743. ))
  39744. characterMakers.push(() => makeCharacter(
  39745. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39746. {
  39747. front: {
  39748. height: math.unit(1.7, "m"),
  39749. weight: math.unit(135, "lb"),
  39750. name: "Front",
  39751. image: {
  39752. source: "./media/characters/jade/front.svg",
  39753. extra: 1818/1767,
  39754. bottom: 32/1850
  39755. }
  39756. },
  39757. back: {
  39758. height: math.unit(1.7, "m"),
  39759. weight: math.unit(135, "lb"),
  39760. name: "Back",
  39761. image: {
  39762. source: "./media/characters/jade/back.svg",
  39763. extra: 1869/1809,
  39764. bottom: 35/1904
  39765. }
  39766. },
  39767. hand: {
  39768. height: math.unit(0.24, "m"),
  39769. name: "Hand",
  39770. image: {
  39771. source: "./media/characters/jade/hand.svg"
  39772. }
  39773. },
  39774. foot: {
  39775. height: math.unit(0.263, "m"),
  39776. name: "Foot",
  39777. image: {
  39778. source: "./media/characters/jade/foot.svg"
  39779. }
  39780. },
  39781. dick: {
  39782. height: math.unit(0.47, "m"),
  39783. name: "Dick",
  39784. image: {
  39785. source: "./media/characters/jade/dick.svg"
  39786. }
  39787. },
  39788. },
  39789. [
  39790. {
  39791. name: "Micro",
  39792. height: math.unit(22, "cm")
  39793. },
  39794. {
  39795. name: "Normal",
  39796. height: math.unit(1.7, "m"),
  39797. default: true
  39798. },
  39799. {
  39800. name: "Macro",
  39801. height: math.unit(152, "m")
  39802. },
  39803. ]
  39804. ))
  39805. characterMakers.push(() => makeCharacter(
  39806. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39807. {
  39808. front: {
  39809. height: math.unit(100, "miles"),
  39810. weight: math.unit(20000, "tons"),
  39811. name: "Front",
  39812. image: {
  39813. source: "./media/characters/cookie/front.svg",
  39814. extra: 1125/1070,
  39815. bottom: 30/1155
  39816. }
  39817. },
  39818. },
  39819. [
  39820. {
  39821. name: "Big",
  39822. height: math.unit(50, "feet")
  39823. },
  39824. {
  39825. name: "Macro",
  39826. height: math.unit(100, "miles"),
  39827. default: true
  39828. },
  39829. {
  39830. name: "Megamacro",
  39831. height: math.unit(90000, "miles")
  39832. },
  39833. ]
  39834. ))
  39835. characterMakers.push(() => makeCharacter(
  39836. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39837. {
  39838. front: {
  39839. height: math.unit(6, "feet"),
  39840. weight: math.unit(145, "lb"),
  39841. name: "Front",
  39842. image: {
  39843. source: "./media/characters/farzian/front.svg",
  39844. extra: 1902/1693,
  39845. bottom: 108/2010
  39846. }
  39847. },
  39848. },
  39849. [
  39850. {
  39851. name: "Macro",
  39852. height: math.unit(500, "feet"),
  39853. default: true
  39854. },
  39855. ]
  39856. ))
  39857. characterMakers.push(() => makeCharacter(
  39858. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39859. {
  39860. front: {
  39861. height: math.unit(3 + 6/12, "feet"),
  39862. weight: math.unit(50, "lb"),
  39863. name: "Front",
  39864. image: {
  39865. source: "./media/characters/kimberly-tilson/front.svg",
  39866. extra: 1400/1322,
  39867. bottom: 36/1436
  39868. }
  39869. },
  39870. back: {
  39871. height: math.unit(3 + 6/12, "feet"),
  39872. weight: math.unit(50, "lb"),
  39873. name: "Back",
  39874. image: {
  39875. source: "./media/characters/kimberly-tilson/back.svg",
  39876. extra: 1370/1307,
  39877. bottom: 20/1390
  39878. }
  39879. },
  39880. },
  39881. [
  39882. {
  39883. name: "Normal",
  39884. height: math.unit(3 + 6/12, "feet"),
  39885. default: true
  39886. },
  39887. ]
  39888. ))
  39889. characterMakers.push(() => makeCharacter(
  39890. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39891. {
  39892. front: {
  39893. height: math.unit(1148, "feet"),
  39894. weight: math.unit(34057, "lb"),
  39895. name: "Front",
  39896. image: {
  39897. source: "./media/characters/harthos/front.svg",
  39898. extra: 1391/1339,
  39899. bottom: 13/1404
  39900. }
  39901. },
  39902. },
  39903. [
  39904. {
  39905. name: "Macro",
  39906. height: math.unit(1148, "feet"),
  39907. default: true
  39908. },
  39909. ]
  39910. ))
  39911. characterMakers.push(() => makeCharacter(
  39912. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39913. {
  39914. front: {
  39915. height: math.unit(15, "feet"),
  39916. name: "Front",
  39917. image: {
  39918. source: "./media/characters/hypatia/front.svg",
  39919. extra: 1653/1591,
  39920. bottom: 79/1732
  39921. }
  39922. },
  39923. },
  39924. [
  39925. {
  39926. name: "Normal",
  39927. height: math.unit(15, "feet")
  39928. },
  39929. {
  39930. name: "Small",
  39931. height: math.unit(300, "feet")
  39932. },
  39933. {
  39934. name: "Macro",
  39935. height: math.unit(2500, "feet"),
  39936. default: true
  39937. },
  39938. {
  39939. name: "Mega Macro",
  39940. height: math.unit(1500, "miles")
  39941. },
  39942. {
  39943. name: "Giga Macro",
  39944. height: math.unit(1.5e6, "miles")
  39945. },
  39946. ]
  39947. ))
  39948. characterMakers.push(() => makeCharacter(
  39949. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39950. {
  39951. front: {
  39952. height: math.unit(6, "feet"),
  39953. weight: math.unit(200, "lb"),
  39954. name: "Front",
  39955. image: {
  39956. source: "./media/characters/wulver/front.svg",
  39957. extra: 1724/1632,
  39958. bottom: 130/1854
  39959. }
  39960. },
  39961. frontNsfw: {
  39962. height: math.unit(6, "feet"),
  39963. weight: math.unit(200, "lb"),
  39964. name: "Front (NSFW)",
  39965. image: {
  39966. source: "./media/characters/wulver/front-nsfw.svg",
  39967. extra: 1724/1632,
  39968. bottom: 130/1854
  39969. }
  39970. },
  39971. },
  39972. [
  39973. {
  39974. name: "Human-Sized",
  39975. height: math.unit(6, "feet")
  39976. },
  39977. {
  39978. name: "Normal",
  39979. height: math.unit(4, "meters"),
  39980. default: true
  39981. },
  39982. {
  39983. name: "Large",
  39984. height: math.unit(6, "m")
  39985. },
  39986. ]
  39987. ))
  39988. characterMakers.push(() => makeCharacter(
  39989. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39990. {
  39991. front: {
  39992. height: math.unit(7, "feet"),
  39993. name: "Front",
  39994. image: {
  39995. source: "./media/characters/maru/front.svg",
  39996. extra: 1595/1570,
  39997. bottom: 0/1595
  39998. }
  39999. },
  40000. },
  40001. [
  40002. {
  40003. name: "Normal",
  40004. height: math.unit(7, "feet"),
  40005. default: true
  40006. },
  40007. {
  40008. name: "Macro",
  40009. height: math.unit(700, "feet")
  40010. },
  40011. {
  40012. name: "Mega Macro",
  40013. height: math.unit(25, "miles")
  40014. },
  40015. ]
  40016. ))
  40017. characterMakers.push(() => makeCharacter(
  40018. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40019. {
  40020. front: {
  40021. height: math.unit(6, "feet"),
  40022. weight: math.unit(170, "lb"),
  40023. name: "Front",
  40024. image: {
  40025. source: "./media/characters/xenon/front.svg",
  40026. extra: 1376/1305,
  40027. bottom: 56/1432
  40028. }
  40029. },
  40030. back: {
  40031. height: math.unit(6, "feet"),
  40032. weight: math.unit(170, "lb"),
  40033. name: "Back",
  40034. image: {
  40035. source: "./media/characters/xenon/back.svg",
  40036. extra: 1328/1259,
  40037. bottom: 95/1423
  40038. }
  40039. },
  40040. maw: {
  40041. height: math.unit(0.52, "feet"),
  40042. name: "Maw",
  40043. image: {
  40044. source: "./media/characters/xenon/maw.svg"
  40045. }
  40046. },
  40047. hand: {
  40048. height: math.unit(0.82, "feet"),
  40049. name: "Hand",
  40050. image: {
  40051. source: "./media/characters/xenon/hand.svg"
  40052. }
  40053. },
  40054. foot: {
  40055. height: math.unit(1.13, "feet"),
  40056. name: "Foot",
  40057. image: {
  40058. source: "./media/characters/xenon/foot.svg"
  40059. }
  40060. },
  40061. },
  40062. [
  40063. {
  40064. name: "Micro",
  40065. height: math.unit(0.8, "inches")
  40066. },
  40067. {
  40068. name: "Normal",
  40069. height: math.unit(6, "feet")
  40070. },
  40071. {
  40072. name: "Macro",
  40073. height: math.unit(50, "feet"),
  40074. default: true
  40075. },
  40076. {
  40077. name: "Macro+",
  40078. height: math.unit(250, "feet")
  40079. },
  40080. {
  40081. name: "Megamacro",
  40082. height: math.unit(1500, "feet")
  40083. },
  40084. ]
  40085. ))
  40086. characterMakers.push(() => makeCharacter(
  40087. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40088. {
  40089. front: {
  40090. height: math.unit(7 + 5/12, "feet"),
  40091. name: "Front",
  40092. image: {
  40093. source: "./media/characters/zane/front.svg",
  40094. extra: 1260/1203,
  40095. bottom: 94/1354
  40096. }
  40097. },
  40098. back: {
  40099. height: math.unit(5.05, "feet"),
  40100. name: "Back",
  40101. image: {
  40102. source: "./media/characters/zane/back.svg",
  40103. extra: 893/829,
  40104. bottom: 30/923
  40105. }
  40106. },
  40107. werewolf: {
  40108. height: math.unit(11, "feet"),
  40109. name: "Werewolf",
  40110. image: {
  40111. source: "./media/characters/zane/werewolf.svg",
  40112. extra: 1383/1323,
  40113. bottom: 89/1472
  40114. }
  40115. },
  40116. foot: {
  40117. height: math.unit(1.46, "feet"),
  40118. name: "Foot",
  40119. image: {
  40120. source: "./media/characters/zane/foot.svg"
  40121. }
  40122. },
  40123. footFront: {
  40124. height: math.unit(0.784, "feet"),
  40125. name: "Foot (Front)",
  40126. image: {
  40127. source: "./media/characters/zane/foot-front.svg"
  40128. }
  40129. },
  40130. dick: {
  40131. height: math.unit(1.95, "feet"),
  40132. name: "Dick",
  40133. image: {
  40134. source: "./media/characters/zane/dick.svg"
  40135. }
  40136. },
  40137. dickWerewolf: {
  40138. height: math.unit(3.77, "feet"),
  40139. name: "Dick (Werewolf)",
  40140. image: {
  40141. source: "./media/characters/zane/dick.svg"
  40142. }
  40143. },
  40144. },
  40145. [
  40146. {
  40147. name: "Normal",
  40148. height: math.unit(7 + 5/12, "feet"),
  40149. default: true
  40150. },
  40151. ]
  40152. ))
  40153. characterMakers.push(() => makeCharacter(
  40154. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40155. {
  40156. front: {
  40157. height: math.unit(6 + 2/12, "feet"),
  40158. weight: math.unit(284, "lb"),
  40159. name: "Front",
  40160. image: {
  40161. source: "./media/characters/benni-desparque/front.svg",
  40162. extra: 1353/1126,
  40163. bottom: 69/1422
  40164. }
  40165. },
  40166. },
  40167. [
  40168. {
  40169. name: "Civilian",
  40170. height: math.unit(6 + 2/12, "feet")
  40171. },
  40172. {
  40173. name: "Normal",
  40174. height: math.unit(98, "feet"),
  40175. default: true
  40176. },
  40177. {
  40178. name: "Kaiju Fighter",
  40179. height: math.unit(268, "feet")
  40180. },
  40181. ]
  40182. ))
  40183. characterMakers.push(() => makeCharacter(
  40184. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40185. {
  40186. front: {
  40187. height: math.unit(5, "feet"),
  40188. weight: math.unit(105, "lb"),
  40189. name: "Front",
  40190. image: {
  40191. source: "./media/characters/maxine/front.svg",
  40192. extra: 1386/1250,
  40193. bottom: 71/1457
  40194. }
  40195. },
  40196. },
  40197. [
  40198. {
  40199. name: "Normal",
  40200. height: math.unit(5, "feet"),
  40201. default: true
  40202. },
  40203. ]
  40204. ))
  40205. characterMakers.push(() => makeCharacter(
  40206. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40207. {
  40208. front: {
  40209. height: math.unit(11 + 7/12, "feet"),
  40210. weight: math.unit(9576, "lb"),
  40211. name: "Front",
  40212. image: {
  40213. source: "./media/characters/scaly/front.svg",
  40214. extra: 888/867,
  40215. bottom: 36/924
  40216. }
  40217. },
  40218. },
  40219. [
  40220. {
  40221. name: "Normal",
  40222. height: math.unit(11 + 7/12, "feet"),
  40223. default: true
  40224. },
  40225. ]
  40226. ))
  40227. characterMakers.push(() => makeCharacter(
  40228. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40229. {
  40230. front: {
  40231. height: math.unit(6 + 3/12, "feet"),
  40232. name: "Front",
  40233. image: {
  40234. source: "./media/characters/saelria/front.svg",
  40235. extra: 1243/1138,
  40236. bottom: 46/1289
  40237. }
  40238. },
  40239. },
  40240. [
  40241. {
  40242. name: "Micro",
  40243. height: math.unit(6, "inches"),
  40244. },
  40245. {
  40246. name: "Normal",
  40247. height: math.unit(6 + 3/12, "feet"),
  40248. default: true
  40249. },
  40250. {
  40251. name: "Macro",
  40252. height: math.unit(25, "feet")
  40253. },
  40254. ]
  40255. ))
  40256. characterMakers.push(() => makeCharacter(
  40257. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40258. {
  40259. front: {
  40260. height: math.unit(80, "meters"),
  40261. weight: math.unit(7000, "tonnes"),
  40262. name: "Front",
  40263. image: {
  40264. source: "./media/characters/tef/front.svg",
  40265. extra: 2036/1991,
  40266. bottom: 54/2090
  40267. }
  40268. },
  40269. back: {
  40270. height: math.unit(80, "meters"),
  40271. weight: math.unit(7000, "tonnes"),
  40272. name: "Back",
  40273. image: {
  40274. source: "./media/characters/tef/back.svg",
  40275. extra: 2036/1991,
  40276. bottom: 54/2090
  40277. }
  40278. },
  40279. },
  40280. [
  40281. {
  40282. name: "Macro",
  40283. height: math.unit(80, "meters"),
  40284. default: true
  40285. },
  40286. ]
  40287. ))
  40288. characterMakers.push(() => makeCharacter(
  40289. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40290. {
  40291. front: {
  40292. height: math.unit(13, "feet"),
  40293. weight: math.unit(6, "tons"),
  40294. name: "Front",
  40295. image: {
  40296. source: "./media/characters/rover/front.svg",
  40297. extra: 1233/1156,
  40298. bottom: 50/1283
  40299. }
  40300. },
  40301. back: {
  40302. height: math.unit(13, "feet"),
  40303. weight: math.unit(6, "tons"),
  40304. name: "Back",
  40305. image: {
  40306. source: "./media/characters/rover/back.svg",
  40307. extra: 1327/1258,
  40308. bottom: 39/1366
  40309. }
  40310. },
  40311. },
  40312. [
  40313. {
  40314. name: "Normal",
  40315. height: math.unit(13, "feet"),
  40316. default: true
  40317. },
  40318. {
  40319. name: "Macro",
  40320. height: math.unit(1300, "feet")
  40321. },
  40322. {
  40323. name: "Megamacro",
  40324. height: math.unit(1300, "miles")
  40325. },
  40326. {
  40327. name: "Gigamacro",
  40328. height: math.unit(1300000, "miles")
  40329. },
  40330. ]
  40331. ))
  40332. characterMakers.push(() => makeCharacter(
  40333. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40334. {
  40335. front: {
  40336. height: math.unit(6, "feet"),
  40337. weight: math.unit(150, "lb"),
  40338. name: "Front",
  40339. image: {
  40340. source: "./media/characters/ariz/front.svg",
  40341. extra: 1401/1346,
  40342. bottom: 5/1406
  40343. }
  40344. },
  40345. },
  40346. [
  40347. {
  40348. name: "Normal",
  40349. height: math.unit(10, "feet"),
  40350. default: true
  40351. },
  40352. ]
  40353. ))
  40354. characterMakers.push(() => makeCharacter(
  40355. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40356. {
  40357. front: {
  40358. height: math.unit(6, "feet"),
  40359. weight: math.unit(140, "lb"),
  40360. name: "Front",
  40361. image: {
  40362. source: "./media/characters/sigrun/front.svg",
  40363. extra: 1418/1359,
  40364. bottom: 27/1445
  40365. }
  40366. },
  40367. },
  40368. [
  40369. {
  40370. name: "Macro",
  40371. height: math.unit(35, "feet"),
  40372. default: true
  40373. },
  40374. ]
  40375. ))
  40376. characterMakers.push(() => makeCharacter(
  40377. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40378. {
  40379. front: {
  40380. height: math.unit(6, "feet"),
  40381. weight: math.unit(150, "lb"),
  40382. name: "Front",
  40383. image: {
  40384. source: "./media/characters/numin/front.svg",
  40385. extra: 1433/1388,
  40386. bottom: 12/1445
  40387. }
  40388. },
  40389. },
  40390. [
  40391. {
  40392. name: "Macro",
  40393. height: math.unit(21.5, "km"),
  40394. default: true
  40395. },
  40396. ]
  40397. ))
  40398. characterMakers.push(() => makeCharacter(
  40399. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40400. {
  40401. front: {
  40402. height: math.unit(6, "feet"),
  40403. weight: math.unit(463, "lb"),
  40404. name: "Front",
  40405. image: {
  40406. source: "./media/characters/melwa/front.svg",
  40407. extra: 1307/1248,
  40408. bottom: 93/1400
  40409. }
  40410. },
  40411. },
  40412. [
  40413. {
  40414. name: "Macro",
  40415. height: math.unit(50, "meters"),
  40416. default: true
  40417. },
  40418. ]
  40419. ))
  40420. characterMakers.push(() => makeCharacter(
  40421. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40422. {
  40423. front: {
  40424. height: math.unit(325, "feet"),
  40425. name: "Front",
  40426. image: {
  40427. source: "./media/characters/zorkaiju/front.svg",
  40428. extra: 1955/1814,
  40429. bottom: 40/1995
  40430. }
  40431. },
  40432. frontExtended: {
  40433. height: math.unit(325, "feet"),
  40434. name: "Front (Extended)",
  40435. image: {
  40436. source: "./media/characters/zorkaiju/front-extended.svg",
  40437. extra: 1955/1814,
  40438. bottom: 40/1995
  40439. }
  40440. },
  40441. side: {
  40442. height: math.unit(325, "feet"),
  40443. name: "Side",
  40444. image: {
  40445. source: "./media/characters/zorkaiju/side.svg",
  40446. extra: 1495/1396,
  40447. bottom: 17/1512
  40448. }
  40449. },
  40450. sideExtended: {
  40451. height: math.unit(325, "feet"),
  40452. name: "Side (Extended)",
  40453. image: {
  40454. source: "./media/characters/zorkaiju/side-extended.svg",
  40455. extra: 1495/1396,
  40456. bottom: 17/1512
  40457. }
  40458. },
  40459. back: {
  40460. height: math.unit(325, "feet"),
  40461. name: "Back",
  40462. image: {
  40463. source: "./media/characters/zorkaiju/back.svg",
  40464. extra: 1959/1821,
  40465. bottom: 31/1990
  40466. }
  40467. },
  40468. backExtended: {
  40469. height: math.unit(325, "feet"),
  40470. name: "Back (Extended)",
  40471. image: {
  40472. source: "./media/characters/zorkaiju/back-extended.svg",
  40473. extra: 1959/1821,
  40474. bottom: 31/1990
  40475. }
  40476. },
  40477. hand: {
  40478. height: math.unit(58.4, "feet"),
  40479. name: "Hand",
  40480. image: {
  40481. source: "./media/characters/zorkaiju/hand.svg"
  40482. }
  40483. },
  40484. handExtended: {
  40485. height: math.unit(61.4, "feet"),
  40486. name: "Hand (Extended)",
  40487. image: {
  40488. source: "./media/characters/zorkaiju/hand-extended.svg"
  40489. }
  40490. },
  40491. foot: {
  40492. height: math.unit(95, "feet"),
  40493. name: "Foot",
  40494. image: {
  40495. source: "./media/characters/zorkaiju/foot.svg"
  40496. }
  40497. },
  40498. leftArm: {
  40499. height: math.unit(59, "feet"),
  40500. name: "Left Arm",
  40501. image: {
  40502. source: "./media/characters/zorkaiju/left-arm.svg"
  40503. }
  40504. },
  40505. rightArm: {
  40506. height: math.unit(59, "feet"),
  40507. name: "Right Arm",
  40508. image: {
  40509. source: "./media/characters/zorkaiju/right-arm.svg"
  40510. }
  40511. },
  40512. tail: {
  40513. height: math.unit(104, "feet"),
  40514. name: "Tail",
  40515. image: {
  40516. source: "./media/characters/zorkaiju/tail.svg"
  40517. }
  40518. },
  40519. tailExtended: {
  40520. height: math.unit(104, "feet"),
  40521. name: "Tail (Extended)",
  40522. image: {
  40523. source: "./media/characters/zorkaiju/tail-extended.svg"
  40524. }
  40525. },
  40526. tailBottom: {
  40527. height: math.unit(104, "feet"),
  40528. name: "Tail Bottom",
  40529. image: {
  40530. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40531. }
  40532. },
  40533. crystal: {
  40534. height: math.unit(27.54, "feet"),
  40535. name: "Crystal",
  40536. image: {
  40537. source: "./media/characters/zorkaiju/crystal.svg"
  40538. }
  40539. },
  40540. },
  40541. [
  40542. {
  40543. name: "Kaiju",
  40544. height: math.unit(325, "feet"),
  40545. default: true
  40546. },
  40547. ]
  40548. ))
  40549. characterMakers.push(() => makeCharacter(
  40550. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40551. {
  40552. front: {
  40553. height: math.unit(6 + 1/12, "feet"),
  40554. weight: math.unit(115, "lb"),
  40555. name: "Front",
  40556. image: {
  40557. source: "./media/characters/bailey-belfry/front.svg",
  40558. extra: 1240/1121,
  40559. bottom: 101/1341
  40560. }
  40561. },
  40562. },
  40563. [
  40564. {
  40565. name: "Normal",
  40566. height: math.unit(6 + 1/12, "feet"),
  40567. default: true
  40568. },
  40569. ]
  40570. ))
  40571. characterMakers.push(() => makeCharacter(
  40572. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40573. {
  40574. side: {
  40575. height: math.unit(4, "meters"),
  40576. weight: math.unit(250, "kg"),
  40577. name: "Side",
  40578. image: {
  40579. source: "./media/characters/blacky/side.svg",
  40580. extra: 1027/919,
  40581. bottom: 43/1070
  40582. }
  40583. },
  40584. maw: {
  40585. height: math.unit(1, "meters"),
  40586. name: "Maw",
  40587. image: {
  40588. source: "./media/characters/blacky/maw.svg"
  40589. }
  40590. },
  40591. paw: {
  40592. height: math.unit(1, "meters"),
  40593. name: "Paw",
  40594. image: {
  40595. source: "./media/characters/blacky/paw.svg"
  40596. }
  40597. },
  40598. },
  40599. [
  40600. {
  40601. name: "Normal",
  40602. height: math.unit(4, "meters"),
  40603. default: true
  40604. },
  40605. ]
  40606. ))
  40607. characterMakers.push(() => makeCharacter(
  40608. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40609. {
  40610. front: {
  40611. height: math.unit(170, "cm"),
  40612. weight: math.unit(66, "kg"),
  40613. name: "Front",
  40614. image: {
  40615. source: "./media/characters/thux-ei/front.svg",
  40616. extra: 1109/1011,
  40617. bottom: 8/1117
  40618. }
  40619. },
  40620. },
  40621. [
  40622. {
  40623. name: "Normal",
  40624. height: math.unit(170, "cm"),
  40625. default: true
  40626. },
  40627. ]
  40628. ))
  40629. characterMakers.push(() => makeCharacter(
  40630. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40631. {
  40632. front: {
  40633. height: math.unit(5, "feet"),
  40634. weight: math.unit(120, "lb"),
  40635. name: "Front",
  40636. image: {
  40637. source: "./media/characters/roxanne-voltaire/front.svg",
  40638. extra: 1901/1779,
  40639. bottom: 53/1954
  40640. }
  40641. },
  40642. },
  40643. [
  40644. {
  40645. name: "Normal",
  40646. height: math.unit(5, "feet"),
  40647. default: true
  40648. },
  40649. {
  40650. name: "Giant",
  40651. height: math.unit(50, "feet")
  40652. },
  40653. {
  40654. name: "Titan",
  40655. height: math.unit(500, "feet")
  40656. },
  40657. {
  40658. name: "Macro",
  40659. height: math.unit(5000, "feet")
  40660. },
  40661. {
  40662. name: "Megamacro",
  40663. height: math.unit(50000, "feet")
  40664. },
  40665. {
  40666. name: "Gigamacro",
  40667. height: math.unit(500000, "feet")
  40668. },
  40669. {
  40670. name: "Teramacro",
  40671. height: math.unit(5e6, "feet")
  40672. },
  40673. ]
  40674. ))
  40675. characterMakers.push(() => makeCharacter(
  40676. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40677. {
  40678. front: {
  40679. height: math.unit(6 + 2/12, "feet"),
  40680. name: "Front",
  40681. image: {
  40682. source: "./media/characters/squeaks/front.svg",
  40683. extra: 1823/1768,
  40684. bottom: 138/1961
  40685. }
  40686. },
  40687. },
  40688. [
  40689. {
  40690. name: "Micro",
  40691. height: math.unit(0.5, "inches")
  40692. },
  40693. {
  40694. name: "Normal",
  40695. height: math.unit(6 + 2/12, "feet"),
  40696. default: true
  40697. },
  40698. {
  40699. name: "Macro",
  40700. height: math.unit(600, "feet")
  40701. },
  40702. ]
  40703. ))
  40704. characterMakers.push(() => makeCharacter(
  40705. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40706. {
  40707. front: {
  40708. height: math.unit(1.72, "meters"),
  40709. name: "Front",
  40710. image: {
  40711. source: "./media/characters/archinger/front.svg",
  40712. extra: 1861/1675,
  40713. bottom: 125/1986
  40714. }
  40715. },
  40716. back: {
  40717. height: math.unit(1.72, "meters"),
  40718. name: "Back",
  40719. image: {
  40720. source: "./media/characters/archinger/back.svg",
  40721. extra: 1844/1701,
  40722. bottom: 104/1948
  40723. }
  40724. },
  40725. cock: {
  40726. height: math.unit(0.59, "feet"),
  40727. name: "Cock",
  40728. image: {
  40729. source: "./media/characters/archinger/cock.svg"
  40730. }
  40731. },
  40732. },
  40733. [
  40734. {
  40735. name: "Normal",
  40736. height: math.unit(1.72, "meters"),
  40737. default: true
  40738. },
  40739. {
  40740. name: "Macro",
  40741. height: math.unit(84, "meters")
  40742. },
  40743. {
  40744. name: "Macro+",
  40745. height: math.unit(112, "meters")
  40746. },
  40747. {
  40748. name: "Macro++",
  40749. height: math.unit(960, "meters")
  40750. },
  40751. {
  40752. name: "Macro+++",
  40753. height: math.unit(4, "km")
  40754. },
  40755. {
  40756. name: "Macro++++",
  40757. height: math.unit(48, "km")
  40758. },
  40759. {
  40760. name: "Macro+++++",
  40761. height: math.unit(4500, "km")
  40762. },
  40763. ]
  40764. ))
  40765. characterMakers.push(() => makeCharacter(
  40766. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40767. {
  40768. front: {
  40769. height: math.unit(5 + 5/12, "feet"),
  40770. name: "Front",
  40771. image: {
  40772. source: "./media/characters/alsnapz/front.svg",
  40773. extra: 1157/1065,
  40774. bottom: 42/1199
  40775. }
  40776. },
  40777. },
  40778. [
  40779. {
  40780. name: "Normal",
  40781. height: math.unit(5 + 5/12, "feet"),
  40782. default: true
  40783. },
  40784. ]
  40785. ))
  40786. characterMakers.push(() => makeCharacter(
  40787. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40788. {
  40789. side: {
  40790. height: math.unit(3.2, "earths"),
  40791. name: "Side",
  40792. image: {
  40793. source: "./media/characters/mag/side.svg",
  40794. extra: 1331/1008,
  40795. bottom: 52/1383
  40796. }
  40797. },
  40798. wing: {
  40799. height: math.unit(1.94, "earths"),
  40800. name: "Wing",
  40801. image: {
  40802. source: "./media/characters/mag/wing.svg"
  40803. }
  40804. },
  40805. dick: {
  40806. height: math.unit(1.8, "earths"),
  40807. name: "Dick",
  40808. image: {
  40809. source: "./media/characters/mag/dick.svg"
  40810. }
  40811. },
  40812. ass: {
  40813. height: math.unit(1.33, "earths"),
  40814. name: "Ass",
  40815. image: {
  40816. source: "./media/characters/mag/ass.svg"
  40817. }
  40818. },
  40819. head: {
  40820. height: math.unit(1.1, "earths"),
  40821. name: "Head",
  40822. image: {
  40823. source: "./media/characters/mag/head.svg"
  40824. }
  40825. },
  40826. maw: {
  40827. height: math.unit(1.62, "earths"),
  40828. name: "Maw",
  40829. image: {
  40830. source: "./media/characters/mag/maw.svg"
  40831. }
  40832. },
  40833. },
  40834. [
  40835. {
  40836. name: "Small",
  40837. height: math.unit(162, "feet")
  40838. },
  40839. {
  40840. name: "Normal",
  40841. height: math.unit(3.2, "earths"),
  40842. default: true
  40843. },
  40844. ]
  40845. ))
  40846. characterMakers.push(() => makeCharacter(
  40847. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40848. {
  40849. front: {
  40850. height: math.unit(512, "feet"),
  40851. weight: math.unit(63509, "tonnes"),
  40852. name: "Front",
  40853. image: {
  40854. source: "./media/characters/vorrel-harroc/front.svg",
  40855. extra: 1075/1063,
  40856. bottom: 62/1137
  40857. }
  40858. },
  40859. },
  40860. [
  40861. {
  40862. name: "Normal",
  40863. height: math.unit(10, "feet")
  40864. },
  40865. {
  40866. name: "Macro",
  40867. height: math.unit(512, "feet"),
  40868. default: true
  40869. },
  40870. {
  40871. name: "Megamacro",
  40872. height: math.unit(256, "miles")
  40873. },
  40874. {
  40875. name: "Gigamacro",
  40876. height: math.unit(4096, "miles")
  40877. },
  40878. ]
  40879. ))
  40880. characterMakers.push(() => makeCharacter(
  40881. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40882. {
  40883. side: {
  40884. height: math.unit(50, "feet"),
  40885. name: "Side",
  40886. image: {
  40887. source: "./media/characters/froimar/side.svg",
  40888. extra: 855/638,
  40889. bottom: 99/954
  40890. }
  40891. },
  40892. },
  40893. [
  40894. {
  40895. name: "Macro",
  40896. height: math.unit(50, "feet"),
  40897. default: true
  40898. },
  40899. ]
  40900. ))
  40901. characterMakers.push(() => makeCharacter(
  40902. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40903. {
  40904. front: {
  40905. height: math.unit(210, "miles"),
  40906. name: "Front",
  40907. image: {
  40908. source: "./media/characters/timothy/front.svg",
  40909. extra: 1007/943,
  40910. bottom: 62/1069
  40911. }
  40912. },
  40913. frontSkirt: {
  40914. height: math.unit(210, "miles"),
  40915. name: "Front (Skirt)",
  40916. image: {
  40917. source: "./media/characters/timothy/front-skirt.svg",
  40918. extra: 1007/943,
  40919. bottom: 62/1069
  40920. }
  40921. },
  40922. frontCoat: {
  40923. height: math.unit(210, "miles"),
  40924. name: "Front (Coat)",
  40925. image: {
  40926. source: "./media/characters/timothy/front-coat.svg",
  40927. extra: 1007/943,
  40928. bottom: 62/1069
  40929. }
  40930. },
  40931. },
  40932. [
  40933. {
  40934. name: "Macro",
  40935. height: math.unit(210, "miles"),
  40936. default: true
  40937. },
  40938. {
  40939. name: "Megamacro",
  40940. height: math.unit(210000, "miles")
  40941. },
  40942. ]
  40943. ))
  40944. characterMakers.push(() => makeCharacter(
  40945. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40946. {
  40947. front: {
  40948. height: math.unit(188, "feet"),
  40949. name: "Front",
  40950. image: {
  40951. source: "./media/characters/pyotr/front.svg",
  40952. extra: 1912/1826,
  40953. bottom: 18/1930
  40954. }
  40955. },
  40956. },
  40957. [
  40958. {
  40959. name: "Macro",
  40960. height: math.unit(188, "feet"),
  40961. default: true
  40962. },
  40963. {
  40964. name: "Megamacro",
  40965. height: math.unit(8, "miles")
  40966. },
  40967. ]
  40968. ))
  40969. characterMakers.push(() => makeCharacter(
  40970. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40971. {
  40972. side: {
  40973. height: math.unit(10, "feet"),
  40974. weight: math.unit(4500, "lb"),
  40975. name: "Side",
  40976. image: {
  40977. source: "./media/characters/ackart/side.svg",
  40978. extra: 1776/1668,
  40979. bottom: 116/1892
  40980. }
  40981. },
  40982. },
  40983. [
  40984. {
  40985. name: "Normal",
  40986. height: math.unit(10, "feet"),
  40987. default: true
  40988. },
  40989. ]
  40990. ))
  40991. characterMakers.push(() => makeCharacter(
  40992. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40993. {
  40994. side: {
  40995. height: math.unit(21, "feet"),
  40996. name: "Side",
  40997. image: {
  40998. source: "./media/characters/nolow/side.svg",
  40999. extra: 1484/1434,
  41000. bottom: 85/1569
  41001. }
  41002. },
  41003. sideErect: {
  41004. height: math.unit(21, "feet"),
  41005. name: "Side-erect",
  41006. image: {
  41007. source: "./media/characters/nolow/side-erect.svg",
  41008. extra: 1484/1434,
  41009. bottom: 85/1569
  41010. }
  41011. },
  41012. },
  41013. [
  41014. {
  41015. name: "Regular",
  41016. height: math.unit(12, "feet")
  41017. },
  41018. {
  41019. name: "Big Chee",
  41020. height: math.unit(21, "feet"),
  41021. default: true
  41022. },
  41023. ]
  41024. ))
  41025. characterMakers.push(() => makeCharacter(
  41026. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41027. {
  41028. front: {
  41029. height: math.unit(7, "feet"),
  41030. weight: math.unit(250, "lb"),
  41031. name: "Front",
  41032. image: {
  41033. source: "./media/characters/nines/front.svg",
  41034. extra: 1741/1607,
  41035. bottom: 41/1782
  41036. }
  41037. },
  41038. side: {
  41039. height: math.unit(7, "feet"),
  41040. weight: math.unit(250, "lb"),
  41041. name: "Side",
  41042. image: {
  41043. source: "./media/characters/nines/side.svg",
  41044. extra: 1854/1735,
  41045. bottom: 93/1947
  41046. }
  41047. },
  41048. back: {
  41049. height: math.unit(7, "feet"),
  41050. weight: math.unit(250, "lb"),
  41051. name: "Back",
  41052. image: {
  41053. source: "./media/characters/nines/back.svg",
  41054. extra: 1748/1615,
  41055. bottom: 20/1768
  41056. }
  41057. },
  41058. },
  41059. [
  41060. {
  41061. name: "Megamacro",
  41062. height: math.unit(99, "km"),
  41063. default: true
  41064. },
  41065. ]
  41066. ))
  41067. characterMakers.push(() => makeCharacter(
  41068. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41069. {
  41070. front: {
  41071. height: math.unit(5 + 10/12, "feet"),
  41072. weight: math.unit(210, "lb"),
  41073. name: "Front",
  41074. image: {
  41075. source: "./media/characters/zenith/front.svg",
  41076. extra: 1531/1452,
  41077. bottom: 198/1729
  41078. }
  41079. },
  41080. back: {
  41081. height: math.unit(5 + 10/12, "feet"),
  41082. weight: math.unit(210, "lb"),
  41083. name: "Back",
  41084. image: {
  41085. source: "./media/characters/zenith/back.svg",
  41086. extra: 1571/1487,
  41087. bottom: 75/1646
  41088. }
  41089. },
  41090. },
  41091. [
  41092. {
  41093. name: "Normal",
  41094. height: math.unit(5 + 10/12, "feet"),
  41095. default: true
  41096. }
  41097. ]
  41098. ))
  41099. characterMakers.push(() => makeCharacter(
  41100. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41101. {
  41102. front: {
  41103. height: math.unit(4, "feet"),
  41104. weight: math.unit(60, "lb"),
  41105. name: "Front",
  41106. image: {
  41107. source: "./media/characters/jasper/front.svg",
  41108. extra: 1450/1379,
  41109. bottom: 19/1469
  41110. }
  41111. },
  41112. },
  41113. [
  41114. {
  41115. name: "Normal",
  41116. height: math.unit(4, "feet"),
  41117. default: true
  41118. },
  41119. ]
  41120. ))
  41121. characterMakers.push(() => makeCharacter(
  41122. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41123. {
  41124. front: {
  41125. height: math.unit(6 + 5/12, "feet"),
  41126. weight: math.unit(290, "lb"),
  41127. name: "Front",
  41128. image: {
  41129. source: "./media/characters/tiberius-thyben/front.svg",
  41130. extra: 757/739,
  41131. bottom: 39/796
  41132. }
  41133. },
  41134. },
  41135. [
  41136. {
  41137. name: "Micro",
  41138. height: math.unit(1.5, "inches")
  41139. },
  41140. {
  41141. name: "Normal",
  41142. height: math.unit(6 + 5/12, "feet"),
  41143. default: true
  41144. },
  41145. {
  41146. name: "Macro",
  41147. height: math.unit(300, "feet")
  41148. },
  41149. ]
  41150. ))
  41151. characterMakers.push(() => makeCharacter(
  41152. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41153. {
  41154. front: {
  41155. height: math.unit(5 + 6/12, "feet"),
  41156. weight: math.unit(60, "kg"),
  41157. name: "Front",
  41158. image: {
  41159. source: "./media/characters/sabre/front.svg",
  41160. extra: 738/671,
  41161. bottom: 27/765
  41162. }
  41163. },
  41164. },
  41165. [
  41166. {
  41167. name: "Teeny",
  41168. height: math.unit(2, "inches")
  41169. },
  41170. {
  41171. name: "Smol",
  41172. height: math.unit(8, "inches")
  41173. },
  41174. {
  41175. name: "Normal",
  41176. height: math.unit(5 + 6/12, "feet"),
  41177. default: true
  41178. },
  41179. {
  41180. name: "Mini-Macro",
  41181. height: math.unit(15, "feet")
  41182. },
  41183. {
  41184. name: "Macro",
  41185. height: math.unit(50, "feet")
  41186. },
  41187. ]
  41188. ))
  41189. characterMakers.push(() => makeCharacter(
  41190. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41191. {
  41192. front: {
  41193. height: math.unit(6 + 4/12, "feet"),
  41194. weight: math.unit(170, "lb"),
  41195. name: "Front",
  41196. image: {
  41197. source: "./media/characters/charlie/front.svg",
  41198. extra: 1348/1228,
  41199. bottom: 15/1363
  41200. }
  41201. },
  41202. },
  41203. [
  41204. {
  41205. name: "Macro",
  41206. height: math.unit(1700, "meters"),
  41207. default: true
  41208. },
  41209. {
  41210. name: "MegaMacro",
  41211. height: math.unit(20400, "meters")
  41212. },
  41213. ]
  41214. ))
  41215. characterMakers.push(() => makeCharacter(
  41216. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41217. {
  41218. front: {
  41219. height: math.unit(6 + 3/12, "feet"),
  41220. weight: math.unit(185, "lb"),
  41221. name: "Front",
  41222. image: {
  41223. source: "./media/characters/susan-grant/front.svg",
  41224. extra: 1351/1327,
  41225. bottom: 26/1377
  41226. }
  41227. },
  41228. },
  41229. [
  41230. {
  41231. name: "Normal",
  41232. height: math.unit(6 + 3/12, "feet"),
  41233. default: true
  41234. },
  41235. {
  41236. name: "Macro",
  41237. height: math.unit(225, "feet")
  41238. },
  41239. {
  41240. name: "Macro+",
  41241. height: math.unit(900, "feet")
  41242. },
  41243. {
  41244. name: "MegaMacro",
  41245. height: math.unit(14400, "feet")
  41246. },
  41247. ]
  41248. ))
  41249. characterMakers.push(() => makeCharacter(
  41250. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41251. {
  41252. front: {
  41253. height: math.unit(5 + 4/12, "feet"),
  41254. weight: math.unit(110, "lb"),
  41255. name: "Front",
  41256. image: {
  41257. source: "./media/characters/axel-isanov/front.svg",
  41258. extra: 1096/1065,
  41259. bottom: 13/1109
  41260. }
  41261. },
  41262. },
  41263. [
  41264. {
  41265. name: "Normal",
  41266. height: math.unit(5 + 4/12, "feet"),
  41267. default: true
  41268. },
  41269. ]
  41270. ))
  41271. characterMakers.push(() => makeCharacter(
  41272. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41273. {
  41274. front: {
  41275. height: math.unit(9, "feet"),
  41276. weight: math.unit(467, "lb"),
  41277. name: "Front",
  41278. image: {
  41279. source: "./media/characters/necahual/front.svg",
  41280. extra: 920/873,
  41281. bottom: 26/946
  41282. }
  41283. },
  41284. back: {
  41285. height: math.unit(9, "feet"),
  41286. weight: math.unit(467, "lb"),
  41287. name: "Back",
  41288. image: {
  41289. source: "./media/characters/necahual/back.svg",
  41290. extra: 930/884,
  41291. bottom: 16/946
  41292. }
  41293. },
  41294. frontUnderwear: {
  41295. height: math.unit(9, "feet"),
  41296. weight: math.unit(467, "lb"),
  41297. name: "Front (Underwear)",
  41298. image: {
  41299. source: "./media/characters/necahual/front-underwear.svg",
  41300. extra: 920/873,
  41301. bottom: 26/946
  41302. }
  41303. },
  41304. frontDressed: {
  41305. height: math.unit(9, "feet"),
  41306. weight: math.unit(467, "lb"),
  41307. name: "Front (Dressed)",
  41308. image: {
  41309. source: "./media/characters/necahual/front-dressed.svg",
  41310. extra: 920/873,
  41311. bottom: 26/946
  41312. }
  41313. },
  41314. },
  41315. [
  41316. {
  41317. name: "Comprsesed",
  41318. height: math.unit(9, "feet")
  41319. },
  41320. {
  41321. name: "Natural",
  41322. height: math.unit(15, "feet"),
  41323. default: true
  41324. },
  41325. {
  41326. name: "Boosted",
  41327. height: math.unit(50, "feet")
  41328. },
  41329. {
  41330. name: "Boosted+",
  41331. height: math.unit(150, "feet")
  41332. },
  41333. {
  41334. name: "Max",
  41335. height: math.unit(500, "feet")
  41336. },
  41337. ]
  41338. ))
  41339. characterMakers.push(() => makeCharacter(
  41340. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41341. {
  41342. front: {
  41343. height: math.unit(22 + 1/12, "feet"),
  41344. weight: math.unit(3200, "lb"),
  41345. name: "Front",
  41346. image: {
  41347. source: "./media/characters/theo-acacia/front.svg",
  41348. extra: 1796/1741,
  41349. bottom: 83/1879
  41350. }
  41351. },
  41352. frontUnderwear: {
  41353. height: math.unit(22 + 1/12, "feet"),
  41354. weight: math.unit(3200, "lb"),
  41355. name: "Front (Underwear)",
  41356. image: {
  41357. source: "./media/characters/theo-acacia/front-underwear.svg",
  41358. extra: 1796/1741,
  41359. bottom: 83/1879
  41360. }
  41361. },
  41362. frontNude: {
  41363. height: math.unit(22 + 1/12, "feet"),
  41364. weight: math.unit(3200, "lb"),
  41365. name: "Front (Nude)",
  41366. image: {
  41367. source: "./media/characters/theo-acacia/front-nude.svg",
  41368. extra: 1796/1741,
  41369. bottom: 83/1879
  41370. }
  41371. },
  41372. },
  41373. [
  41374. {
  41375. name: "Normal",
  41376. height: math.unit(22 + 1/12, "feet"),
  41377. default: true
  41378. },
  41379. ]
  41380. ))
  41381. characterMakers.push(() => makeCharacter(
  41382. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41383. {
  41384. front: {
  41385. height: math.unit(20, "feet"),
  41386. name: "Front",
  41387. image: {
  41388. source: "./media/characters/astra/front.svg",
  41389. extra: 1850/1714,
  41390. bottom: 106/1956
  41391. }
  41392. },
  41393. frontUndressed: {
  41394. height: math.unit(20, "feet"),
  41395. name: "Front (Undressed)",
  41396. image: {
  41397. source: "./media/characters/astra/front-undressed.svg",
  41398. extra: 1926/1749,
  41399. bottom: 0/1926
  41400. }
  41401. },
  41402. hand: {
  41403. height: math.unit(1.53, "feet"),
  41404. name: "Hand",
  41405. image: {
  41406. source: "./media/characters/astra/hand.svg"
  41407. }
  41408. },
  41409. paw: {
  41410. height: math.unit(1.53, "feet"),
  41411. name: "Paw",
  41412. image: {
  41413. source: "./media/characters/astra/paw.svg"
  41414. }
  41415. },
  41416. },
  41417. [
  41418. {
  41419. name: "Smallest",
  41420. height: math.unit(20, "feet")
  41421. },
  41422. {
  41423. name: "Normal",
  41424. height: math.unit(1e9, "miles"),
  41425. default: true
  41426. },
  41427. {
  41428. name: "Larger",
  41429. height: math.unit(5, "multiverses")
  41430. },
  41431. {
  41432. name: "Largest",
  41433. height: math.unit(1e9, "multiverses")
  41434. },
  41435. ]
  41436. ))
  41437. characterMakers.push(() => makeCharacter(
  41438. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41439. {
  41440. front: {
  41441. height: math.unit(8, "feet"),
  41442. name: "Front",
  41443. image: {
  41444. source: "./media/characters/breanna/front.svg",
  41445. extra: 1912/1632,
  41446. bottom: 33/1945
  41447. }
  41448. },
  41449. },
  41450. [
  41451. {
  41452. name: "Smallest",
  41453. height: math.unit(8, "feet")
  41454. },
  41455. {
  41456. name: "Normal",
  41457. height: math.unit(1, "mile"),
  41458. default: true
  41459. },
  41460. {
  41461. name: "Maximum",
  41462. height: math.unit(1500000000000, "lightyears")
  41463. },
  41464. ]
  41465. ))
  41466. characterMakers.push(() => makeCharacter(
  41467. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41468. {
  41469. front: {
  41470. height: math.unit(5 + 11/12, "feet"),
  41471. weight: math.unit(155, "lb"),
  41472. name: "Front",
  41473. image: {
  41474. source: "./media/characters/cai/front.svg",
  41475. extra: 1823/1702,
  41476. bottom: 32/1855
  41477. }
  41478. },
  41479. back: {
  41480. height: math.unit(5 + 11/12, "feet"),
  41481. weight: math.unit(155, "lb"),
  41482. name: "Back",
  41483. image: {
  41484. source: "./media/characters/cai/back.svg",
  41485. extra: 1809/1708,
  41486. bottom: 31/1840
  41487. }
  41488. },
  41489. },
  41490. [
  41491. {
  41492. name: "Normal",
  41493. height: math.unit(5 + 11/12, "feet"),
  41494. default: true
  41495. },
  41496. {
  41497. name: "Big",
  41498. height: math.unit(15, "feet")
  41499. },
  41500. {
  41501. name: "Macro",
  41502. height: math.unit(200, "feet")
  41503. },
  41504. ]
  41505. ))
  41506. characterMakers.push(() => makeCharacter(
  41507. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41508. {
  41509. front: {
  41510. height: math.unit(5 + 6/12, "feet"),
  41511. weight: math.unit(160, "lb"),
  41512. name: "Front",
  41513. image: {
  41514. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41515. extra: 1227/1174,
  41516. bottom: 37/1264
  41517. }
  41518. },
  41519. },
  41520. [
  41521. {
  41522. name: "Macro",
  41523. height: math.unit(444, "meters"),
  41524. default: true
  41525. },
  41526. ]
  41527. ))
  41528. characterMakers.push(() => makeCharacter(
  41529. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41530. {
  41531. front: {
  41532. height: math.unit(18 + 7/12, "feet"),
  41533. name: "Front",
  41534. image: {
  41535. source: "./media/characters/rex/front.svg",
  41536. extra: 1941/1807,
  41537. bottom: 66/2007
  41538. }
  41539. },
  41540. back: {
  41541. height: math.unit(18 + 7/12, "feet"),
  41542. name: "Back",
  41543. image: {
  41544. source: "./media/characters/rex/back.svg",
  41545. extra: 1937/1822,
  41546. bottom: 42/1979
  41547. }
  41548. },
  41549. boot: {
  41550. height: math.unit(3.45, "feet"),
  41551. name: "Boot",
  41552. image: {
  41553. source: "./media/characters/rex/boot.svg"
  41554. }
  41555. },
  41556. paw: {
  41557. height: math.unit(4.17, "feet"),
  41558. name: "Paw",
  41559. image: {
  41560. source: "./media/characters/rex/paw.svg"
  41561. }
  41562. },
  41563. head: {
  41564. height: math.unit(6.728, "feet"),
  41565. name: "Head",
  41566. image: {
  41567. source: "./media/characters/rex/head.svg"
  41568. }
  41569. },
  41570. },
  41571. [
  41572. {
  41573. name: "Nano",
  41574. height: math.unit(18 + 7/12, "feet")
  41575. },
  41576. {
  41577. name: "Micro",
  41578. height: math.unit(1.5, "megameters")
  41579. },
  41580. {
  41581. name: "Normal",
  41582. height: math.unit(440, "megameters"),
  41583. default: true
  41584. },
  41585. {
  41586. name: "Macro",
  41587. height: math.unit(2.5, "gigameters")
  41588. },
  41589. {
  41590. name: "Gigamacro",
  41591. height: math.unit(2, "galaxies")
  41592. },
  41593. ]
  41594. ))
  41595. characterMakers.push(() => makeCharacter(
  41596. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41597. {
  41598. side: {
  41599. height: math.unit(32, "feet"),
  41600. weight: math.unit(250000, "lb"),
  41601. name: "Side",
  41602. image: {
  41603. source: "./media/characters/silverwing/side.svg",
  41604. extra: 1100/1019,
  41605. bottom: 204/1304
  41606. }
  41607. },
  41608. },
  41609. [
  41610. {
  41611. name: "Normal",
  41612. height: math.unit(32, "feet"),
  41613. default: true
  41614. },
  41615. ]
  41616. ))
  41617. characterMakers.push(() => makeCharacter(
  41618. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41619. {
  41620. front: {
  41621. height: math.unit(6 + 6/12, "feet"),
  41622. weight: math.unit(350, "lb"),
  41623. name: "Front",
  41624. image: {
  41625. source: "./media/characters/tristan-hawthorne/front.svg",
  41626. extra: 1159/1124,
  41627. bottom: 37/1196
  41628. }
  41629. },
  41630. },
  41631. [
  41632. {
  41633. name: "Normal",
  41634. height: math.unit(6 + 6/12, "feet"),
  41635. default: true
  41636. },
  41637. ]
  41638. ))
  41639. characterMakers.push(() => makeCharacter(
  41640. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41641. {
  41642. front: {
  41643. height: math.unit(5 + 11/12, "feet"),
  41644. weight: math.unit(190, "lb"),
  41645. name: "Front",
  41646. image: {
  41647. source: "./media/characters/mizu/front.svg",
  41648. extra: 1988/1788,
  41649. bottom: 14/2002
  41650. }
  41651. },
  41652. },
  41653. [
  41654. {
  41655. name: "Normal",
  41656. height: math.unit(5 + 11/12, "feet"),
  41657. default: true
  41658. },
  41659. ]
  41660. ))
  41661. characterMakers.push(() => makeCharacter(
  41662. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41663. {
  41664. front: {
  41665. height: math.unit(1.7, "feet"),
  41666. weight: math.unit(50, "lb"),
  41667. name: "Front",
  41668. image: {
  41669. source: "./media/characters/dechroma/front.svg",
  41670. extra: 1095/859,
  41671. bottom: 64/1159
  41672. }
  41673. },
  41674. },
  41675. [
  41676. {
  41677. name: "Normal",
  41678. height: math.unit(1.7, "feet"),
  41679. default: true
  41680. },
  41681. ]
  41682. ))
  41683. characterMakers.push(() => makeCharacter(
  41684. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41685. {
  41686. side: {
  41687. height: math.unit(30, "feet"),
  41688. name: "Side",
  41689. image: {
  41690. source: "./media/characters/veluren-thanazel/side.svg",
  41691. extra: 1611/633,
  41692. bottom: 118/1729
  41693. }
  41694. },
  41695. front: {
  41696. height: math.unit(30, "feet"),
  41697. name: "Front",
  41698. image: {
  41699. source: "./media/characters/veluren-thanazel/front.svg",
  41700. extra: 1486/636,
  41701. bottom: 238/1724
  41702. }
  41703. },
  41704. head: {
  41705. height: math.unit(21.4, "feet"),
  41706. name: "Head",
  41707. image: {
  41708. source: "./media/characters/veluren-thanazel/head.svg"
  41709. }
  41710. },
  41711. genitals: {
  41712. height: math.unit(19.4, "feet"),
  41713. name: "Genitals",
  41714. image: {
  41715. source: "./media/characters/veluren-thanazel/genitals.svg"
  41716. }
  41717. },
  41718. },
  41719. [
  41720. {
  41721. name: "Social",
  41722. height: math.unit(6, "feet")
  41723. },
  41724. {
  41725. name: "Play",
  41726. height: math.unit(12, "feet")
  41727. },
  41728. {
  41729. name: "True",
  41730. height: math.unit(30, "feet"),
  41731. default: true
  41732. },
  41733. ]
  41734. ))
  41735. characterMakers.push(() => makeCharacter(
  41736. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41737. {
  41738. front: {
  41739. height: math.unit(7 + 6/12, "feet"),
  41740. weight: math.unit(500, "kg"),
  41741. name: "Front",
  41742. image: {
  41743. source: "./media/characters/arcturas/front.svg",
  41744. extra: 1700/1500,
  41745. bottom: 145/1845
  41746. }
  41747. },
  41748. },
  41749. [
  41750. {
  41751. name: "Normal",
  41752. height: math.unit(7 + 6/12, "feet"),
  41753. default: true
  41754. },
  41755. ]
  41756. ))
  41757. characterMakers.push(() => makeCharacter(
  41758. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41759. {
  41760. side: {
  41761. height: math.unit(6, "feet"),
  41762. weight: math.unit(2, "tons"),
  41763. name: "Side",
  41764. image: {
  41765. source: "./media/characters/vitaen/side.svg",
  41766. extra: 1157/617,
  41767. bottom: 122/1279
  41768. }
  41769. },
  41770. },
  41771. [
  41772. {
  41773. name: "Normal",
  41774. height: math.unit(6, "feet"),
  41775. default: true
  41776. },
  41777. ]
  41778. ))
  41779. characterMakers.push(() => makeCharacter(
  41780. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41781. {
  41782. front: {
  41783. height: math.unit(19, "feet"),
  41784. name: "Front",
  41785. image: {
  41786. source: "./media/characters/fia-dreamweaver/front.svg",
  41787. extra: 1630/1504,
  41788. bottom: 25/1655
  41789. }
  41790. },
  41791. },
  41792. [
  41793. {
  41794. name: "Normal",
  41795. height: math.unit(19, "feet"),
  41796. default: true
  41797. },
  41798. ]
  41799. ))
  41800. characterMakers.push(() => makeCharacter(
  41801. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41802. {
  41803. front: {
  41804. height: math.unit(5 + 4/12, "feet"),
  41805. name: "Front",
  41806. image: {
  41807. source: "./media/characters/artan/front.svg",
  41808. extra: 1618/1535,
  41809. bottom: 46/1664
  41810. }
  41811. },
  41812. back: {
  41813. height: math.unit(5 + 4/12, "feet"),
  41814. name: "Back",
  41815. image: {
  41816. source: "./media/characters/artan/back.svg",
  41817. extra: 1618/1543,
  41818. bottom: 31/1649
  41819. }
  41820. },
  41821. },
  41822. [
  41823. {
  41824. name: "Normal",
  41825. height: math.unit(5 + 4/12, "feet"),
  41826. default: true
  41827. },
  41828. ]
  41829. ))
  41830. characterMakers.push(() => makeCharacter(
  41831. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41832. {
  41833. side: {
  41834. height: math.unit(182, "cm"),
  41835. weight: math.unit(1000, "lb"),
  41836. name: "Side",
  41837. image: {
  41838. source: "./media/characters/silver-dragon/side.svg",
  41839. extra: 710/287,
  41840. bottom: 88/798
  41841. }
  41842. },
  41843. },
  41844. [
  41845. {
  41846. name: "Normal",
  41847. height: math.unit(182, "cm"),
  41848. default: true
  41849. },
  41850. ]
  41851. ))
  41852. characterMakers.push(() => makeCharacter(
  41853. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41854. {
  41855. side: {
  41856. height: math.unit(6 + 6/12, "feet"),
  41857. weight: math.unit(1.5, "tons"),
  41858. name: "Side",
  41859. image: {
  41860. source: "./media/characters/zephyr/side.svg",
  41861. extra: 1433/586,
  41862. bottom: 109/1542
  41863. }
  41864. },
  41865. },
  41866. [
  41867. {
  41868. name: "Normal",
  41869. height: math.unit(6 + 6/12, "feet"),
  41870. default: true
  41871. },
  41872. ]
  41873. ))
  41874. characterMakers.push(() => makeCharacter(
  41875. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41876. {
  41877. side: {
  41878. height: math.unit(1, "feet"),
  41879. name: "Side",
  41880. image: {
  41881. source: "./media/characters/vixye/side.svg",
  41882. extra: 632/541,
  41883. bottom: 0/632
  41884. }
  41885. },
  41886. },
  41887. [
  41888. {
  41889. name: "Normal",
  41890. height: math.unit(1, "feet"),
  41891. default: true
  41892. },
  41893. {
  41894. name: "True",
  41895. height: math.unit(1e15, "multiverses")
  41896. },
  41897. ]
  41898. ))
  41899. characterMakers.push(() => makeCharacter(
  41900. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41901. {
  41902. front: {
  41903. height: math.unit(8 + 2/12, "feet"),
  41904. weight: math.unit(650, "lb"),
  41905. name: "Front",
  41906. image: {
  41907. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41908. extra: 1174/1137,
  41909. bottom: 82/1256
  41910. }
  41911. },
  41912. back: {
  41913. height: math.unit(8 + 2/12, "feet"),
  41914. weight: math.unit(650, "lb"),
  41915. name: "Back",
  41916. image: {
  41917. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41918. extra: 1204/1157,
  41919. bottom: 46/1250
  41920. }
  41921. },
  41922. },
  41923. [
  41924. {
  41925. name: "Wildform",
  41926. height: math.unit(8 + 2/12, "feet"),
  41927. default: true
  41928. },
  41929. ]
  41930. ))
  41931. characterMakers.push(() => makeCharacter(
  41932. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41933. {
  41934. front: {
  41935. height: math.unit(18, "feet"),
  41936. name: "Front",
  41937. image: {
  41938. source: "./media/characters/cyphin/front.svg",
  41939. extra: 970/886,
  41940. bottom: 42/1012
  41941. }
  41942. },
  41943. back: {
  41944. height: math.unit(18, "feet"),
  41945. name: "Back",
  41946. image: {
  41947. source: "./media/characters/cyphin/back.svg",
  41948. extra: 1009/894,
  41949. bottom: 24/1033
  41950. }
  41951. },
  41952. head: {
  41953. height: math.unit(5.05, "feet"),
  41954. name: "Head",
  41955. image: {
  41956. source: "./media/characters/cyphin/head.svg"
  41957. }
  41958. },
  41959. tailbud: {
  41960. height: math.unit(5, "feet"),
  41961. name: "Tailbud",
  41962. image: {
  41963. source: "./media/characters/cyphin/tailbud.svg"
  41964. }
  41965. },
  41966. },
  41967. [
  41968. ]
  41969. ))
  41970. characterMakers.push(() => makeCharacter(
  41971. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41972. {
  41973. side: {
  41974. height: math.unit(10, "feet"),
  41975. weight: math.unit(6, "tons"),
  41976. name: "Side",
  41977. image: {
  41978. source: "./media/characters/raijin/side.svg",
  41979. extra: 1529/613,
  41980. bottom: 337/1866
  41981. }
  41982. },
  41983. },
  41984. [
  41985. {
  41986. name: "Normal",
  41987. height: math.unit(10, "feet"),
  41988. default: true
  41989. },
  41990. ]
  41991. ))
  41992. characterMakers.push(() => makeCharacter(
  41993. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41994. {
  41995. side: {
  41996. height: math.unit(9, "feet"),
  41997. name: "Side",
  41998. image: {
  41999. source: "./media/characters/nilghais/side.svg",
  42000. extra: 1047/744,
  42001. bottom: 91/1138
  42002. }
  42003. },
  42004. head: {
  42005. height: math.unit(3.14, "feet"),
  42006. name: "Head",
  42007. image: {
  42008. source: "./media/characters/nilghais/head.svg"
  42009. }
  42010. },
  42011. mouth: {
  42012. height: math.unit(4.6, "feet"),
  42013. name: "Mouth",
  42014. image: {
  42015. source: "./media/characters/nilghais/mouth.svg"
  42016. }
  42017. },
  42018. wings: {
  42019. height: math.unit(24, "feet"),
  42020. name: "Wings",
  42021. image: {
  42022. source: "./media/characters/nilghais/wings.svg"
  42023. }
  42024. },
  42025. ass: {
  42026. height: math.unit(6.12, "feet"),
  42027. name: "Ass",
  42028. image: {
  42029. source: "./media/characters/nilghais/ass.svg"
  42030. }
  42031. },
  42032. },
  42033. [
  42034. {
  42035. name: "Normal",
  42036. height: math.unit(9, "feet"),
  42037. default: true
  42038. },
  42039. ]
  42040. ))
  42041. characterMakers.push(() => makeCharacter(
  42042. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42043. {
  42044. regular: {
  42045. height: math.unit(16 + 2/12, "feet"),
  42046. weight: math.unit(2300, "lb"),
  42047. name: "Regular",
  42048. image: {
  42049. source: "./media/characters/zolgar/regular.svg",
  42050. extra: 1246/1004,
  42051. bottom: 124/1370
  42052. }
  42053. },
  42054. boxers: {
  42055. height: math.unit(16 + 2/12, "feet"),
  42056. weight: math.unit(2300, "lb"),
  42057. name: "Boxers",
  42058. image: {
  42059. source: "./media/characters/zolgar/boxers.svg",
  42060. extra: 1246/1004,
  42061. bottom: 124/1370
  42062. }
  42063. },
  42064. armored: {
  42065. height: math.unit(16 + 2/12, "feet"),
  42066. weight: math.unit(2300, "lb"),
  42067. name: "Armored",
  42068. image: {
  42069. source: "./media/characters/zolgar/armored.svg",
  42070. extra: 1246/1004,
  42071. bottom: 124/1370
  42072. }
  42073. },
  42074. goth: {
  42075. height: math.unit(16 + 2/12, "feet"),
  42076. weight: math.unit(2300, "lb"),
  42077. name: "Goth",
  42078. image: {
  42079. source: "./media/characters/zolgar/goth.svg",
  42080. extra: 1246/1004,
  42081. bottom: 124/1370
  42082. }
  42083. },
  42084. },
  42085. [
  42086. {
  42087. name: "Shrunken Down",
  42088. height: math.unit(9 + 2/12, "feet")
  42089. },
  42090. {
  42091. name: "Normal",
  42092. height: math.unit(16 + 2/12, "feet"),
  42093. default: true
  42094. },
  42095. ]
  42096. ))
  42097. characterMakers.push(() => makeCharacter(
  42098. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42099. {
  42100. front: {
  42101. height: math.unit(6, "feet"),
  42102. weight: math.unit(168, "lb"),
  42103. name: "Front",
  42104. image: {
  42105. source: "./media/characters/luca/front.svg",
  42106. extra: 841/667,
  42107. bottom: 102/943
  42108. }
  42109. },
  42110. },
  42111. [
  42112. {
  42113. name: "Normal",
  42114. height: math.unit(6, "feet"),
  42115. default: true
  42116. },
  42117. ]
  42118. ))
  42119. characterMakers.push(() => makeCharacter(
  42120. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42121. {
  42122. side: {
  42123. height: math.unit(7 + 3/12, "feet"),
  42124. weight: math.unit(312, "lb"),
  42125. name: "Side",
  42126. image: {
  42127. source: "./media/characters/zezo/side.svg",
  42128. extra: 1192/1067,
  42129. bottom: 63/1255
  42130. }
  42131. },
  42132. },
  42133. [
  42134. {
  42135. name: "Normal",
  42136. height: math.unit(7 + 3/12, "feet"),
  42137. default: true
  42138. },
  42139. ]
  42140. ))
  42141. characterMakers.push(() => makeCharacter(
  42142. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42143. {
  42144. front: {
  42145. height: math.unit(5 + 5/12, "feet"),
  42146. weight: math.unit(170, "lb"),
  42147. name: "Front",
  42148. image: {
  42149. source: "./media/characters/mayso/front.svg",
  42150. extra: 1215/1108,
  42151. bottom: 16/1231
  42152. }
  42153. },
  42154. },
  42155. [
  42156. {
  42157. name: "Normal",
  42158. height: math.unit(5 + 5/12, "feet"),
  42159. default: true
  42160. },
  42161. ]
  42162. ))
  42163. characterMakers.push(() => makeCharacter(
  42164. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42165. {
  42166. front: {
  42167. height: math.unit(4 + 3/12, "feet"),
  42168. weight: math.unit(80, "lb"),
  42169. name: "Front",
  42170. image: {
  42171. source: "./media/characters/hess/front.svg",
  42172. extra: 1200/1123,
  42173. bottom: 16/1216
  42174. }
  42175. },
  42176. },
  42177. [
  42178. {
  42179. name: "Normal",
  42180. height: math.unit(4 + 3/12, "feet"),
  42181. default: true
  42182. },
  42183. ]
  42184. ))
  42185. characterMakers.push(() => makeCharacter(
  42186. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42187. {
  42188. front: {
  42189. height: math.unit(1.9, "meters"),
  42190. name: "Front",
  42191. image: {
  42192. source: "./media/characters/ashgar/front.svg",
  42193. extra: 1177/1146,
  42194. bottom: 99/1276
  42195. }
  42196. },
  42197. back: {
  42198. height: math.unit(1.9, "meters"),
  42199. name: "Back",
  42200. image: {
  42201. source: "./media/characters/ashgar/back.svg",
  42202. extra: 1201/1183,
  42203. bottom: 53/1254
  42204. }
  42205. },
  42206. feral: {
  42207. height: math.unit(1.4, "meters"),
  42208. name: "Feral",
  42209. image: {
  42210. source: "./media/characters/ashgar/feral.svg",
  42211. extra: 370/345,
  42212. bottom: 45/415
  42213. }
  42214. },
  42215. },
  42216. [
  42217. {
  42218. name: "Normal",
  42219. height: math.unit(1.9, "meters"),
  42220. default: true
  42221. },
  42222. ]
  42223. ))
  42224. characterMakers.push(() => makeCharacter(
  42225. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42226. {
  42227. regular: {
  42228. height: math.unit(6, "feet"),
  42229. weight: math.unit(220, "lb"),
  42230. name: "Regular",
  42231. image: {
  42232. source: "./media/characters/phillip/regular.svg",
  42233. extra: 1373/1277,
  42234. bottom: 75/1448
  42235. }
  42236. },
  42237. dressed: {
  42238. height: math.unit(6, "feet"),
  42239. weight: math.unit(220, "lb"),
  42240. name: "Dressed",
  42241. image: {
  42242. source: "./media/characters/phillip/dressed.svg",
  42243. extra: 1373/1277,
  42244. bottom: 75/1448
  42245. }
  42246. },
  42247. paw: {
  42248. height: math.unit(1.44, "feet"),
  42249. name: "Paw",
  42250. image: {
  42251. source: "./media/characters/phillip/paw.svg"
  42252. }
  42253. },
  42254. },
  42255. [
  42256. {
  42257. name: "Normal",
  42258. height: math.unit(6, "feet"),
  42259. default: true
  42260. },
  42261. ]
  42262. ))
  42263. characterMakers.push(() => makeCharacter(
  42264. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42265. {
  42266. side: {
  42267. height: math.unit(42, "feet"),
  42268. name: "Side",
  42269. image: {
  42270. source: "./media/characters/uvula/side.svg",
  42271. extra: 683/586,
  42272. bottom: 60/743
  42273. }
  42274. },
  42275. front: {
  42276. height: math.unit(42, "feet"),
  42277. name: "Front",
  42278. image: {
  42279. source: "./media/characters/uvula/front.svg",
  42280. extra: 705/613,
  42281. bottom: 54/759
  42282. }
  42283. },
  42284. maw: {
  42285. height: math.unit(23.5, "feet"),
  42286. name: "Maw",
  42287. image: {
  42288. source: "./media/characters/uvula/maw.svg"
  42289. }
  42290. },
  42291. },
  42292. [
  42293. {
  42294. name: "Original Size",
  42295. height: math.unit(14, "inches")
  42296. },
  42297. {
  42298. name: "Human Size",
  42299. height: math.unit(6, "feet")
  42300. },
  42301. {
  42302. name: "Big",
  42303. height: math.unit(42, "feet"),
  42304. default: true
  42305. },
  42306. {
  42307. name: "Bigger",
  42308. height: math.unit(100, "feet")
  42309. },
  42310. ]
  42311. ))
  42312. characterMakers.push(() => makeCharacter(
  42313. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42314. {
  42315. front: {
  42316. height: math.unit(5 + 11/12, "feet"),
  42317. name: "Front",
  42318. image: {
  42319. source: "./media/characters/lannah/front.svg",
  42320. extra: 1208/1113,
  42321. bottom: 97/1305
  42322. }
  42323. },
  42324. },
  42325. [
  42326. {
  42327. name: "Normal",
  42328. height: math.unit(5 + 11/12, "feet"),
  42329. default: true
  42330. },
  42331. ]
  42332. ))
  42333. characterMakers.push(() => makeCharacter(
  42334. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42335. {
  42336. front: {
  42337. height: math.unit(6 + 3/12, "feet"),
  42338. weight: math.unit(3.5, "tons"),
  42339. name: "Front",
  42340. image: {
  42341. source: "./media/characters/emberflame/front.svg",
  42342. extra: 1198/672,
  42343. bottom: 82/1280
  42344. }
  42345. },
  42346. side: {
  42347. height: math.unit(6 + 3/12, "feet"),
  42348. weight: math.unit(3.5, "tons"),
  42349. name: "Side",
  42350. image: {
  42351. source: "./media/characters/emberflame/side.svg",
  42352. extra: 938/527,
  42353. bottom: 56/994
  42354. }
  42355. },
  42356. },
  42357. [
  42358. {
  42359. name: "Normal",
  42360. height: math.unit(6 + 3/12, "feet"),
  42361. default: true
  42362. },
  42363. ]
  42364. ))
  42365. characterMakers.push(() => makeCharacter(
  42366. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42367. {
  42368. side: {
  42369. height: math.unit(17.5, "feet"),
  42370. weight: math.unit(35, "tons"),
  42371. name: "Side",
  42372. image: {
  42373. source: "./media/characters/sophie-ambrose/side.svg",
  42374. extra: 1573/1242,
  42375. bottom: 71/1644
  42376. }
  42377. },
  42378. maw: {
  42379. height: math.unit(7.4, "feet"),
  42380. name: "Maw",
  42381. image: {
  42382. source: "./media/characters/sophie-ambrose/maw.svg"
  42383. }
  42384. },
  42385. },
  42386. [
  42387. {
  42388. name: "Normal",
  42389. height: math.unit(17.5, "feet"),
  42390. default: true
  42391. },
  42392. ]
  42393. ))
  42394. characterMakers.push(() => makeCharacter(
  42395. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42396. {
  42397. front: {
  42398. height: math.unit(280, "feet"),
  42399. weight: math.unit(550, "tons"),
  42400. name: "Front",
  42401. image: {
  42402. source: "./media/characters/king-mugi/front.svg",
  42403. extra: 1102/947,
  42404. bottom: 104/1206
  42405. }
  42406. },
  42407. },
  42408. [
  42409. {
  42410. name: "King Mugi",
  42411. height: math.unit(280, "feet"),
  42412. default: true
  42413. },
  42414. ]
  42415. ))
  42416. characterMakers.push(() => makeCharacter(
  42417. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42418. {
  42419. front: {
  42420. height: math.unit(64, "meters"),
  42421. name: "Front",
  42422. image: {
  42423. source: "./media/characters/nova-fox/front.svg",
  42424. extra: 1310/1246,
  42425. bottom: 65/1375
  42426. }
  42427. },
  42428. },
  42429. [
  42430. {
  42431. name: "Macro",
  42432. height: math.unit(64, "meters"),
  42433. default: true
  42434. },
  42435. ]
  42436. ))
  42437. characterMakers.push(() => makeCharacter(
  42438. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42439. {
  42440. front: {
  42441. height: math.unit(6 + 3/12, "feet"),
  42442. weight: math.unit(170, "lb"),
  42443. name: "Front",
  42444. image: {
  42445. source: "./media/characters/sam-bat/front.svg",
  42446. extra: 1601/1411,
  42447. bottom: 125/1726
  42448. }
  42449. },
  42450. back: {
  42451. height: math.unit(6 + 3/12, "feet"),
  42452. weight: math.unit(170, "lb"),
  42453. name: "Back",
  42454. image: {
  42455. source: "./media/characters/sam-bat/back.svg",
  42456. extra: 1577/1405,
  42457. bottom: 58/1635
  42458. }
  42459. },
  42460. },
  42461. [
  42462. {
  42463. name: "Normal",
  42464. height: math.unit(6 + 3/12, "feet"),
  42465. default: true
  42466. },
  42467. ]
  42468. ))
  42469. characterMakers.push(() => makeCharacter(
  42470. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42471. {
  42472. front: {
  42473. height: math.unit(59, "feet"),
  42474. weight: math.unit(40000, "lb"),
  42475. name: "Front",
  42476. image: {
  42477. source: "./media/characters/inari/front.svg",
  42478. extra: 1884/1350,
  42479. bottom: 95/1979
  42480. }
  42481. },
  42482. },
  42483. [
  42484. {
  42485. name: "Gigantamax",
  42486. height: math.unit(59, "feet"),
  42487. default: true
  42488. },
  42489. ]
  42490. ))
  42491. characterMakers.push(() => makeCharacter(
  42492. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42493. {
  42494. front: {
  42495. height: math.unit(5 + 8/12, "feet"),
  42496. name: "Front",
  42497. image: {
  42498. source: "./media/characters/elizabeth/front.svg",
  42499. extra: 1395/1298,
  42500. bottom: 54/1449
  42501. }
  42502. },
  42503. mouth: {
  42504. height: math.unit(1.97, "feet"),
  42505. name: "Mouth",
  42506. image: {
  42507. source: "./media/characters/elizabeth/mouth.svg"
  42508. }
  42509. },
  42510. foot: {
  42511. height: math.unit(1.17, "feet"),
  42512. name: "Foot",
  42513. image: {
  42514. source: "./media/characters/elizabeth/foot.svg"
  42515. }
  42516. },
  42517. },
  42518. [
  42519. {
  42520. name: "Normal",
  42521. height: math.unit(5 + 8/12, "feet"),
  42522. default: true
  42523. },
  42524. {
  42525. name: "Minimacro",
  42526. height: math.unit(18, "feet")
  42527. },
  42528. {
  42529. name: "Macro",
  42530. height: math.unit(180, "feet")
  42531. },
  42532. ]
  42533. ))
  42534. characterMakers.push(() => makeCharacter(
  42535. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42536. {
  42537. front: {
  42538. height: math.unit(5 + 2/12, "feet"),
  42539. name: "Front",
  42540. image: {
  42541. source: "./media/characters/october-gossamer/front.svg",
  42542. extra: 505/454,
  42543. bottom: 7/512
  42544. }
  42545. },
  42546. back: {
  42547. height: math.unit(5 + 2/12, "feet"),
  42548. name: "Back",
  42549. image: {
  42550. source: "./media/characters/october-gossamer/back.svg",
  42551. extra: 501/454,
  42552. bottom: 11/512
  42553. }
  42554. },
  42555. },
  42556. [
  42557. {
  42558. name: "Normal",
  42559. height: math.unit(5 + 2/12, "feet"),
  42560. default: true
  42561. },
  42562. ]
  42563. ))
  42564. characterMakers.push(() => makeCharacter(
  42565. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42566. {
  42567. front: {
  42568. height: math.unit(5, "feet"),
  42569. name: "Front",
  42570. image: {
  42571. source: "./media/characters/epiglottis/front.svg",
  42572. extra: 923/849,
  42573. bottom: 17/940
  42574. }
  42575. },
  42576. },
  42577. [
  42578. {
  42579. name: "Original Size",
  42580. height: math.unit(10, "inches")
  42581. },
  42582. {
  42583. name: "Human Size",
  42584. height: math.unit(5, "feet"),
  42585. default: true
  42586. },
  42587. {
  42588. name: "Big",
  42589. height: math.unit(25, "feet")
  42590. },
  42591. {
  42592. name: "Bigger",
  42593. height: math.unit(50, "feet")
  42594. },
  42595. {
  42596. name: "oh lawd",
  42597. height: math.unit(75, "feet")
  42598. },
  42599. ]
  42600. ))
  42601. characterMakers.push(() => makeCharacter(
  42602. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42603. {
  42604. front: {
  42605. height: math.unit(2 + 4/12, "feet"),
  42606. weight: math.unit(60, "lb"),
  42607. name: "Front",
  42608. image: {
  42609. source: "./media/characters/lerm/front.svg",
  42610. extra: 796/790,
  42611. bottom: 79/875
  42612. }
  42613. },
  42614. },
  42615. [
  42616. {
  42617. name: "Normal",
  42618. height: math.unit(2 + 4/12, "feet"),
  42619. default: true
  42620. },
  42621. ]
  42622. ))
  42623. characterMakers.push(() => makeCharacter(
  42624. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42625. {
  42626. front: {
  42627. height: math.unit(5.5, "feet"),
  42628. weight: math.unit(130, "lb"),
  42629. name: "Front",
  42630. image: {
  42631. source: "./media/characters/xena-nebadon/front.svg",
  42632. extra: 1828/1730,
  42633. bottom: 79/1907
  42634. }
  42635. },
  42636. },
  42637. [
  42638. {
  42639. name: "Tiny Puppy",
  42640. height: math.unit(3, "inches")
  42641. },
  42642. {
  42643. name: "Normal",
  42644. height: math.unit(5.5, "feet"),
  42645. default: true
  42646. },
  42647. {
  42648. name: "Lotta Lady",
  42649. height: math.unit(12, "feet")
  42650. },
  42651. {
  42652. name: "Pretty Big",
  42653. height: math.unit(100, "feet")
  42654. },
  42655. {
  42656. name: "Big",
  42657. height: math.unit(500, "feet")
  42658. },
  42659. {
  42660. name: "Skyscraper Toys",
  42661. height: math.unit(2500, "feet")
  42662. },
  42663. {
  42664. name: "Plane Catcher",
  42665. height: math.unit(8, "miles")
  42666. },
  42667. {
  42668. name: "Planet Toys",
  42669. height: math.unit(15, "earths")
  42670. },
  42671. {
  42672. name: "Stardust",
  42673. height: math.unit(0.25, "galaxies")
  42674. },
  42675. {
  42676. name: "Snacks",
  42677. height: math.unit(70, "universes")
  42678. },
  42679. ]
  42680. ))
  42681. characterMakers.push(() => makeCharacter(
  42682. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42683. {
  42684. front: {
  42685. height: math.unit(1.6, "meters"),
  42686. weight: math.unit(60, "kg"),
  42687. name: "Front",
  42688. image: {
  42689. source: "./media/characters/bounty/front.svg",
  42690. extra: 1426/1308,
  42691. bottom: 15/1441
  42692. }
  42693. },
  42694. back: {
  42695. height: math.unit(1.6, "meters"),
  42696. weight: math.unit(60, "kg"),
  42697. name: "Back",
  42698. image: {
  42699. source: "./media/characters/bounty/back.svg",
  42700. extra: 1417/1307,
  42701. bottom: 8/1425
  42702. }
  42703. },
  42704. },
  42705. [
  42706. {
  42707. name: "Normal",
  42708. height: math.unit(1.6, "meters"),
  42709. default: true
  42710. },
  42711. {
  42712. name: "Macro",
  42713. height: math.unit(300, "meters")
  42714. },
  42715. ]
  42716. ))
  42717. characterMakers.push(() => makeCharacter(
  42718. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42719. {
  42720. front: {
  42721. height: math.unit(2 + 8/12, "feet"),
  42722. weight: math.unit(15, "lb"),
  42723. name: "Front",
  42724. image: {
  42725. source: "./media/characters/mochi/front.svg",
  42726. extra: 1022/852,
  42727. bottom: 435/1457
  42728. }
  42729. },
  42730. back: {
  42731. height: math.unit(2 + 8/12, "feet"),
  42732. weight: math.unit(15, "lb"),
  42733. name: "Back",
  42734. image: {
  42735. source: "./media/characters/mochi/back.svg",
  42736. extra: 1335/1119,
  42737. bottom: 39/1374
  42738. }
  42739. },
  42740. bird: {
  42741. height: math.unit(2 + 8/12, "feet"),
  42742. weight: math.unit(15, "lb"),
  42743. name: "Bird",
  42744. image: {
  42745. source: "./media/characters/mochi/bird.svg",
  42746. extra: 1251/1113,
  42747. bottom: 178/1429
  42748. }
  42749. },
  42750. kaiju: {
  42751. height: math.unit(154, "feet"),
  42752. weight: math.unit(1e7, "lb"),
  42753. name: "Kaiju",
  42754. image: {
  42755. source: "./media/characters/mochi/kaiju.svg",
  42756. extra: 460/324,
  42757. bottom: 40/500
  42758. }
  42759. },
  42760. head: {
  42761. height: math.unit(1.21, "feet"),
  42762. name: "Head",
  42763. image: {
  42764. source: "./media/characters/mochi/head.svg"
  42765. }
  42766. },
  42767. alternateTail: {
  42768. height: math.unit(2 + 8/12, "feet"),
  42769. weight: math.unit(45, "lb"),
  42770. name: "Alternate Tail",
  42771. image: {
  42772. source: "./media/characters/mochi/alternate-tail.svg",
  42773. extra: 139/76,
  42774. bottom: 45/184
  42775. }
  42776. },
  42777. },
  42778. [
  42779. {
  42780. name: "Micro",
  42781. height: math.unit(2, "inches")
  42782. },
  42783. {
  42784. name: "Normal",
  42785. height: math.unit(2 + 8/12, "feet"),
  42786. default: true
  42787. },
  42788. {
  42789. name: "Macro",
  42790. height: math.unit(106, "feet")
  42791. },
  42792. ]
  42793. ))
  42794. characterMakers.push(() => makeCharacter(
  42795. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42796. {
  42797. front: {
  42798. height: math.unit(5.67, "feet"),
  42799. weight: math.unit(135, "lb"),
  42800. name: "Front",
  42801. image: {
  42802. source: "./media/characters/sarel/front.svg",
  42803. extra: 865/788,
  42804. bottom: 97/962
  42805. }
  42806. },
  42807. back: {
  42808. height: math.unit(5.67, "feet"),
  42809. weight: math.unit(135, "lb"),
  42810. name: "Back",
  42811. image: {
  42812. source: "./media/characters/sarel/back.svg",
  42813. extra: 857/777,
  42814. bottom: 32/889
  42815. }
  42816. },
  42817. chozoan: {
  42818. height: math.unit(5.67, "feet"),
  42819. weight: math.unit(135, "lb"),
  42820. name: "Chozoan",
  42821. image: {
  42822. source: "./media/characters/sarel/chozoan.svg",
  42823. extra: 865/788,
  42824. bottom: 97/962
  42825. }
  42826. },
  42827. current: {
  42828. height: math.unit(5.67, "feet"),
  42829. weight: math.unit(135, "lb"),
  42830. name: "Current",
  42831. image: {
  42832. source: "./media/characters/sarel/current.svg",
  42833. extra: 865/788,
  42834. bottom: 97/962
  42835. }
  42836. },
  42837. head: {
  42838. height: math.unit(1.77, "feet"),
  42839. name: "Head",
  42840. image: {
  42841. source: "./media/characters/sarel/head.svg"
  42842. }
  42843. },
  42844. claws: {
  42845. height: math.unit(1.8, "feet"),
  42846. name: "Claws",
  42847. image: {
  42848. source: "./media/characters/sarel/claws.svg"
  42849. }
  42850. },
  42851. clawsAlt: {
  42852. height: math.unit(1.8, "feet"),
  42853. name: "Claws-alt",
  42854. image: {
  42855. source: "./media/characters/sarel/claws-alt.svg"
  42856. }
  42857. },
  42858. },
  42859. [
  42860. {
  42861. name: "Normal",
  42862. height: math.unit(5.67, "feet"),
  42863. default: true
  42864. },
  42865. ]
  42866. ))
  42867. characterMakers.push(() => makeCharacter(
  42868. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42869. {
  42870. front: {
  42871. height: math.unit(5500, "feet"),
  42872. name: "Front",
  42873. image: {
  42874. source: "./media/characters/alyonia/front.svg",
  42875. extra: 1200/1135,
  42876. bottom: 29/1229
  42877. }
  42878. },
  42879. back: {
  42880. height: math.unit(5500, "feet"),
  42881. name: "Back",
  42882. image: {
  42883. source: "./media/characters/alyonia/back.svg",
  42884. extra: 1205/1138,
  42885. bottom: 10/1215
  42886. }
  42887. },
  42888. },
  42889. [
  42890. {
  42891. name: "Small",
  42892. height: math.unit(10, "feet")
  42893. },
  42894. {
  42895. name: "Macro",
  42896. height: math.unit(500, "feet")
  42897. },
  42898. {
  42899. name: "Mega Macro",
  42900. height: math.unit(5500, "feet"),
  42901. default: true
  42902. },
  42903. {
  42904. name: "Mega Macro+",
  42905. height: math.unit(500000, "feet")
  42906. },
  42907. {
  42908. name: "Giga Macro",
  42909. height: math.unit(3000, "miles")
  42910. },
  42911. {
  42912. name: "Tera Macro",
  42913. height: math.unit(2.8e6, "miles")
  42914. },
  42915. {
  42916. name: "Galactic",
  42917. height: math.unit(120000, "lightyears")
  42918. },
  42919. ]
  42920. ))
  42921. characterMakers.push(() => makeCharacter(
  42922. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42923. {
  42924. werewolf: {
  42925. height: math.unit(8, "feet"),
  42926. weight: math.unit(425, "lb"),
  42927. name: "Werewolf",
  42928. image: {
  42929. source: "./media/characters/autumn/werewolf.svg",
  42930. extra: 2154/2031,
  42931. bottom: 160/2314
  42932. }
  42933. },
  42934. human: {
  42935. height: math.unit(5 + 8/12, "feet"),
  42936. weight: math.unit(150, "lb"),
  42937. name: "Human",
  42938. image: {
  42939. source: "./media/characters/autumn/human.svg",
  42940. extra: 1200/1149,
  42941. bottom: 30/1230
  42942. }
  42943. },
  42944. },
  42945. [
  42946. {
  42947. name: "Normal",
  42948. height: math.unit(8, "feet"),
  42949. default: true
  42950. },
  42951. ]
  42952. ))
  42953. characterMakers.push(() => makeCharacter(
  42954. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42955. {
  42956. front: {
  42957. height: math.unit(8 + 5/12, "feet"),
  42958. weight: math.unit(825, "lb"),
  42959. name: "Front",
  42960. image: {
  42961. source: "./media/characters/cobalt-charizard/front.svg",
  42962. extra: 1268/1155,
  42963. bottom: 122/1390
  42964. }
  42965. },
  42966. side: {
  42967. height: math.unit(8 + 5/12, "feet"),
  42968. weight: math.unit(825, "lb"),
  42969. name: "Side",
  42970. image: {
  42971. source: "./media/characters/cobalt-charizard/side.svg",
  42972. extra: 1348/1257,
  42973. bottom: 58/1406
  42974. }
  42975. },
  42976. gMax: {
  42977. height: math.unit(134 + 11/12, "feet"),
  42978. name: "G-Max",
  42979. image: {
  42980. source: "./media/characters/cobalt-charizard/g-max.svg",
  42981. extra: 1835/1541,
  42982. bottom: 151/1986
  42983. }
  42984. },
  42985. },
  42986. [
  42987. {
  42988. name: "Normal",
  42989. height: math.unit(8 + 5/12, "feet"),
  42990. default: true
  42991. },
  42992. ]
  42993. ))
  42994. characterMakers.push(() => makeCharacter(
  42995. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42996. {
  42997. front: {
  42998. height: math.unit(6 + 3/12, "feet"),
  42999. weight: math.unit(210, "lb"),
  43000. name: "Front",
  43001. image: {
  43002. source: "./media/characters/stella/front.svg",
  43003. extra: 3549/3335,
  43004. bottom: 51/3600
  43005. }
  43006. },
  43007. },
  43008. [
  43009. {
  43010. name: "Normal",
  43011. height: math.unit(6 + 3/12, "feet"),
  43012. default: true
  43013. },
  43014. ]
  43015. ))
  43016. characterMakers.push(() => makeCharacter(
  43017. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43018. {
  43019. front: {
  43020. height: math.unit(5, "feet"),
  43021. weight: math.unit(90, "lb"),
  43022. name: "Front",
  43023. image: {
  43024. source: "./media/characters/riley-bishop/front.svg",
  43025. extra: 1450/1428,
  43026. bottom: 152/1602
  43027. }
  43028. },
  43029. },
  43030. [
  43031. {
  43032. name: "Normal",
  43033. height: math.unit(5, "feet"),
  43034. default: true
  43035. },
  43036. ]
  43037. ))
  43038. characterMakers.push(() => makeCharacter(
  43039. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43040. {
  43041. side: {
  43042. height: math.unit(8 + 2/12, "feet"),
  43043. weight: math.unit(500, "kg"),
  43044. name: "Side",
  43045. image: {
  43046. source: "./media/characters/theo-arcanine/side.svg",
  43047. extra: 1342/1074,
  43048. bottom: 111/1453
  43049. }
  43050. },
  43051. },
  43052. [
  43053. {
  43054. name: "Normal",
  43055. height: math.unit(8 + 2/12, "feet"),
  43056. default: true
  43057. },
  43058. ]
  43059. ))
  43060. characterMakers.push(() => makeCharacter(
  43061. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43062. {
  43063. front: {
  43064. height: math.unit(4, "feet"),
  43065. name: "Front",
  43066. image: {
  43067. source: "./media/characters/kali/front.svg",
  43068. extra: 1921/1357,
  43069. bottom: 70/1991
  43070. }
  43071. },
  43072. },
  43073. [
  43074. {
  43075. name: "Normal",
  43076. height: math.unit(4, "feet"),
  43077. default: true
  43078. },
  43079. {
  43080. name: "Macro",
  43081. height: math.unit(32, "meters")
  43082. },
  43083. {
  43084. name: "Macro+",
  43085. height: math.unit(150, "meters")
  43086. },
  43087. {
  43088. name: "Megamacro",
  43089. height: math.unit(7500, "meters")
  43090. },
  43091. {
  43092. name: "Megamacro+",
  43093. height: math.unit(80, "kilometers")
  43094. },
  43095. ]
  43096. ))
  43097. characterMakers.push(() => makeCharacter(
  43098. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43099. {
  43100. side: {
  43101. height: math.unit(5 + 11/12, "feet"),
  43102. weight: math.unit(236, "lb"),
  43103. name: "Side",
  43104. image: {
  43105. source: "./media/characters/gapp/side.svg",
  43106. extra: 775/340,
  43107. bottom: 58/833
  43108. }
  43109. },
  43110. mouth: {
  43111. height: math.unit(2.98, "feet"),
  43112. name: "Mouth",
  43113. image: {
  43114. source: "./media/characters/gapp/mouth.svg"
  43115. }
  43116. },
  43117. },
  43118. [
  43119. {
  43120. name: "Normal",
  43121. height: math.unit(5 + 1/12, "feet"),
  43122. default: true
  43123. },
  43124. ]
  43125. ))
  43126. characterMakers.push(() => makeCharacter(
  43127. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43128. {
  43129. front: {
  43130. height: math.unit(6, "feet"),
  43131. name: "Front",
  43132. image: {
  43133. source: "./media/characters/persephone/front.svg",
  43134. extra: 1895/1717,
  43135. bottom: 96/1991
  43136. }
  43137. },
  43138. back: {
  43139. height: math.unit(6, "feet"),
  43140. name: "Back",
  43141. image: {
  43142. source: "./media/characters/persephone/back.svg",
  43143. extra: 1868/1679,
  43144. bottom: 26/1894
  43145. }
  43146. },
  43147. casual: {
  43148. height: math.unit(6, "feet"),
  43149. name: "Casual",
  43150. image: {
  43151. source: "./media/characters/persephone/casual.svg",
  43152. extra: 1713/1541,
  43153. bottom: 76/1789
  43154. }
  43155. },
  43156. },
  43157. [
  43158. {
  43159. name: "Human Size",
  43160. height: math.unit(6, "feet")
  43161. },
  43162. {
  43163. name: "Big Steppy",
  43164. height: math.unit(600, "meters"),
  43165. default: true
  43166. },
  43167. {
  43168. name: "Galaxy Brain",
  43169. height: math.unit(1, "zettameter")
  43170. },
  43171. ]
  43172. ))
  43173. characterMakers.push(() => makeCharacter(
  43174. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43175. {
  43176. front: {
  43177. height: math.unit(1.85, "meters"),
  43178. name: "Front",
  43179. image: {
  43180. source: "./media/characters/riley-foxthing/front.svg",
  43181. extra: 1495/1354,
  43182. bottom: 122/1617
  43183. }
  43184. },
  43185. frontAlt: {
  43186. height: math.unit(1.85, "meters"),
  43187. name: "Front (Alt)",
  43188. image: {
  43189. source: "./media/characters/riley-foxthing/front-alt.svg",
  43190. extra: 1572/1389,
  43191. bottom: 116/1688
  43192. }
  43193. },
  43194. },
  43195. [
  43196. {
  43197. name: "Normal Sized",
  43198. height: math.unit(1.85, "meters"),
  43199. default: true
  43200. },
  43201. {
  43202. name: "Quite Sizable",
  43203. height: math.unit(5, "meters")
  43204. },
  43205. {
  43206. name: "Rather Large",
  43207. height: math.unit(20, "meters")
  43208. },
  43209. {
  43210. name: "Macro",
  43211. height: math.unit(450, "meters")
  43212. },
  43213. {
  43214. name: "Giga",
  43215. height: math.unit(5, "km")
  43216. },
  43217. ]
  43218. ))
  43219. characterMakers.push(() => makeCharacter(
  43220. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43221. {
  43222. front: {
  43223. height: math.unit(6, "feet"),
  43224. weight: math.unit(200, "lb"),
  43225. name: "Front",
  43226. image: {
  43227. source: "./media/characters/blizzard/front.svg",
  43228. extra: 1136/990,
  43229. bottom: 136/1272
  43230. }
  43231. },
  43232. back: {
  43233. height: math.unit(6, "feet"),
  43234. weight: math.unit(200, "lb"),
  43235. name: "Back",
  43236. image: {
  43237. source: "./media/characters/blizzard/back.svg",
  43238. extra: 1175/1034,
  43239. bottom: 97/1272
  43240. }
  43241. },
  43242. sitting: {
  43243. height: math.unit(3.725, "feet"),
  43244. weight: math.unit(200, "lb"),
  43245. name: "Sitting",
  43246. image: {
  43247. source: "./media/characters/blizzard/sitting.svg",
  43248. extra: 581/485,
  43249. bottom: 90/671
  43250. }
  43251. },
  43252. frontWizard: {
  43253. height: math.unit(7.9, "feet"),
  43254. weight: math.unit(200, "lb"),
  43255. name: "Front (Wizard)",
  43256. image: {
  43257. source: "./media/characters/blizzard/front-wizard.svg"
  43258. }
  43259. },
  43260. backWizard: {
  43261. height: math.unit(7.9, "feet"),
  43262. weight: math.unit(200, "lb"),
  43263. name: "Back (Wizard)",
  43264. image: {
  43265. source: "./media/characters/blizzard/back-wizard.svg"
  43266. }
  43267. },
  43268. frontNsfw: {
  43269. height: math.unit(6, "feet"),
  43270. weight: math.unit(200, "lb"),
  43271. name: "Front (NSFW)",
  43272. image: {
  43273. source: "./media/characters/blizzard/front-nsfw.svg",
  43274. extra: 1136/990,
  43275. bottom: 136/1272
  43276. }
  43277. },
  43278. backNsfw: {
  43279. height: math.unit(6, "feet"),
  43280. weight: math.unit(200, "lb"),
  43281. name: "Back (NSFW)",
  43282. image: {
  43283. source: "./media/characters/blizzard/back-nsfw.svg",
  43284. extra: 1175/1034,
  43285. bottom: 97/1272
  43286. }
  43287. },
  43288. sittingNsfw: {
  43289. height: math.unit(3.725, "feet"),
  43290. weight: math.unit(200, "lb"),
  43291. name: "Sitting (NSFW)",
  43292. image: {
  43293. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43294. extra: 581/485,
  43295. bottom: 90/671
  43296. }
  43297. },
  43298. wizardFrontNsfw: {
  43299. height: math.unit(7.9, "feet"),
  43300. weight: math.unit(200, "lb"),
  43301. name: "Wizard (Front, NSFW)",
  43302. image: {
  43303. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43304. }
  43305. },
  43306. },
  43307. [
  43308. {
  43309. name: "Normal",
  43310. height: math.unit(6, "feet"),
  43311. default: true
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43317. {
  43318. front: {
  43319. height: math.unit(5 + 2/12, "feet"),
  43320. name: "Front",
  43321. image: {
  43322. source: "./media/characters/lumi/front.svg",
  43323. extra: 1328/1268,
  43324. bottom: 103/1431
  43325. }
  43326. },
  43327. back: {
  43328. height: math.unit(5 + 2/12, "feet"),
  43329. name: "Back",
  43330. image: {
  43331. source: "./media/characters/lumi/back.svg",
  43332. extra: 1381/1327,
  43333. bottom: 43/1424
  43334. }
  43335. },
  43336. },
  43337. [
  43338. {
  43339. name: "Normal",
  43340. height: math.unit(5 + 2/12, "feet"),
  43341. default: true
  43342. },
  43343. ]
  43344. ))
  43345. characterMakers.push(() => makeCharacter(
  43346. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43347. {
  43348. front: {
  43349. height: math.unit(5 + 9/12, "feet"),
  43350. name: "Front",
  43351. image: {
  43352. source: "./media/characters/aliya-cotton/front.svg",
  43353. extra: 577/564,
  43354. bottom: 29/606
  43355. }
  43356. },
  43357. },
  43358. [
  43359. {
  43360. name: "Normal",
  43361. height: math.unit(5 + 9/12, "feet"),
  43362. default: true
  43363. },
  43364. ]
  43365. ))
  43366. characterMakers.push(() => makeCharacter(
  43367. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43368. {
  43369. front: {
  43370. height: math.unit(2.7, "meters"),
  43371. weight: math.unit(25000, "lb"),
  43372. name: "Front",
  43373. image: {
  43374. source: "./media/characters/noah-luxray/front.svg",
  43375. extra: 1644/825,
  43376. bottom: 339/1983
  43377. }
  43378. },
  43379. side: {
  43380. height: math.unit(2.97, "meters"),
  43381. weight: math.unit(25000, "lb"),
  43382. name: "Side",
  43383. image: {
  43384. source: "./media/characters/noah-luxray/side.svg",
  43385. extra: 1319/650,
  43386. bottom: 163/1482
  43387. }
  43388. },
  43389. dick: {
  43390. height: math.unit(7.4, "feet"),
  43391. weight: math.unit(2500, "lb"),
  43392. name: "Dick",
  43393. image: {
  43394. source: "./media/characters/noah-luxray/dick.svg"
  43395. }
  43396. },
  43397. dickAlt: {
  43398. height: math.unit(10.83, "feet"),
  43399. weight: math.unit(2500, "lb"),
  43400. name: "Dick-alt",
  43401. image: {
  43402. source: "./media/characters/noah-luxray/dick-alt.svg"
  43403. }
  43404. },
  43405. },
  43406. [
  43407. {
  43408. name: "BIG",
  43409. height: math.unit(2.7, "meters"),
  43410. default: true
  43411. },
  43412. ]
  43413. ))
  43414. characterMakers.push(() => makeCharacter(
  43415. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43416. {
  43417. standing: {
  43418. height: math.unit(183, "cm"),
  43419. weight: math.unit(68, "kg"),
  43420. name: "Standing",
  43421. image: {
  43422. source: "./media/characters/arion/standing.svg",
  43423. extra: 1869/1807,
  43424. bottom: 93/1962
  43425. }
  43426. },
  43427. reclining: {
  43428. height: math.unit(70.5, "cm"),
  43429. weight: math.unit(68, "lb"),
  43430. name: "Reclining",
  43431. image: {
  43432. source: "./media/characters/arion/reclining.svg",
  43433. extra: 937/870,
  43434. bottom: 63/1000
  43435. }
  43436. },
  43437. },
  43438. [
  43439. {
  43440. name: "Colossus Size, Low",
  43441. height: math.unit(33, "meters"),
  43442. default: true
  43443. },
  43444. {
  43445. name: "Colossus Size, Mid",
  43446. height: math.unit(52, "meters")
  43447. },
  43448. {
  43449. name: "Colossus Size, High",
  43450. height: math.unit(60, "meters")
  43451. },
  43452. {
  43453. name: "Titan Size, Low",
  43454. height: math.unit(91, "meters"),
  43455. },
  43456. {
  43457. name: "Titan Size, Mid",
  43458. height: math.unit(122, "meters")
  43459. },
  43460. {
  43461. name: "Titan Size, High",
  43462. height: math.unit(162, "meters")
  43463. },
  43464. ]
  43465. ))
  43466. characterMakers.push(() => makeCharacter(
  43467. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43468. {
  43469. front: {
  43470. height: math.unit(53, "meters"),
  43471. name: "Front",
  43472. image: {
  43473. source: "./media/characters/stellar-marbey/front.svg",
  43474. extra: 1913/1805,
  43475. bottom: 92/2005
  43476. }
  43477. },
  43478. back: {
  43479. height: math.unit(53, "meters"),
  43480. name: "Back",
  43481. image: {
  43482. source: "./media/characters/stellar-marbey/back.svg",
  43483. extra: 1960/1851,
  43484. bottom: 28/1988
  43485. }
  43486. },
  43487. mouth: {
  43488. height: math.unit(3.5, "meters"),
  43489. name: "Mouth",
  43490. image: {
  43491. source: "./media/characters/stellar-marbey/mouth.svg"
  43492. }
  43493. },
  43494. },
  43495. [
  43496. {
  43497. name: "Macro",
  43498. height: math.unit(53, "meters"),
  43499. default: true
  43500. },
  43501. ]
  43502. ))
  43503. characterMakers.push(() => makeCharacter(
  43504. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43505. {
  43506. front: {
  43507. height: math.unit(8 + 1/12, "feet"),
  43508. weight: math.unit(233, "lb"),
  43509. name: "Front",
  43510. image: {
  43511. source: "./media/characters/matsu/front.svg",
  43512. extra: 832/772,
  43513. bottom: 40/872
  43514. }
  43515. },
  43516. back: {
  43517. height: math.unit(8 + 1/12, "feet"),
  43518. weight: math.unit(233, "lb"),
  43519. name: "Back",
  43520. image: {
  43521. source: "./media/characters/matsu/back.svg",
  43522. extra: 839/780,
  43523. bottom: 47/886
  43524. }
  43525. },
  43526. },
  43527. [
  43528. {
  43529. name: "Normal",
  43530. height: math.unit(8 + 1/12, "feet"),
  43531. default: true
  43532. },
  43533. ]
  43534. ))
  43535. characterMakers.push(() => makeCharacter(
  43536. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43537. {
  43538. front: {
  43539. height: math.unit(4, "feet"),
  43540. weight: math.unit(148, "lb"),
  43541. name: "Front",
  43542. image: {
  43543. source: "./media/characters/thiz/front.svg",
  43544. extra: 1913/1748,
  43545. bottom: 62/1975
  43546. }
  43547. },
  43548. },
  43549. [
  43550. {
  43551. name: "Normal",
  43552. height: math.unit(4, "feet"),
  43553. default: true
  43554. },
  43555. ]
  43556. ))
  43557. characterMakers.push(() => makeCharacter(
  43558. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43559. {
  43560. front: {
  43561. height: math.unit(7 + 6/12, "feet"),
  43562. weight: math.unit(267, "lb"),
  43563. name: "Front",
  43564. image: {
  43565. source: "./media/characters/marcel/front.svg",
  43566. extra: 1221/1096,
  43567. bottom: 76/1297
  43568. }
  43569. },
  43570. },
  43571. [
  43572. {
  43573. name: "Normal",
  43574. height: math.unit(7 + 6/12, "feet"),
  43575. default: true
  43576. },
  43577. ]
  43578. ))
  43579. characterMakers.push(() => makeCharacter(
  43580. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43581. {
  43582. side: {
  43583. height: math.unit(42, "meters"),
  43584. name: "Side",
  43585. image: {
  43586. source: "./media/characters/flake/side.svg",
  43587. extra: 1525/1306,
  43588. bottom: 209/1734
  43589. }
  43590. },
  43591. },
  43592. [
  43593. {
  43594. name: "Normal",
  43595. height: math.unit(42, "meters"),
  43596. default: true
  43597. },
  43598. ]
  43599. ))
  43600. characterMakers.push(() => makeCharacter(
  43601. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43602. {
  43603. dressed: {
  43604. height: math.unit(6 + 4/12, "feet"),
  43605. weight: math.unit(520, "lb"),
  43606. name: "Dressed",
  43607. image: {
  43608. source: "./media/characters/someonne/dressed.svg",
  43609. extra: 1020/1010,
  43610. bottom: 178/1198
  43611. }
  43612. },
  43613. undressed: {
  43614. height: math.unit(6 + 4/12, "feet"),
  43615. weight: math.unit(520, "lb"),
  43616. name: "Undressed",
  43617. image: {
  43618. source: "./media/characters/someonne/undressed.svg",
  43619. extra: 1019/1014,
  43620. bottom: 169/1188
  43621. }
  43622. },
  43623. },
  43624. [
  43625. {
  43626. name: "Normal",
  43627. height: math.unit(6 + 4/12, "feet"),
  43628. default: true
  43629. },
  43630. ]
  43631. ))
  43632. characterMakers.push(() => makeCharacter(
  43633. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43634. {
  43635. front: {
  43636. height: math.unit(3, "feet"),
  43637. weight: math.unit(30, "lb"),
  43638. name: "Front",
  43639. image: {
  43640. source: "./media/characters/till/front.svg",
  43641. extra: 892/823,
  43642. bottom: 55/947
  43643. }
  43644. },
  43645. },
  43646. [
  43647. {
  43648. name: "Normal",
  43649. height: math.unit(3, "feet"),
  43650. default: true
  43651. },
  43652. ]
  43653. ))
  43654. characterMakers.push(() => makeCharacter(
  43655. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43656. {
  43657. front: {
  43658. height: math.unit(9 + 8/12, "feet"),
  43659. weight: math.unit(800, "lb"),
  43660. name: "Front",
  43661. image: {
  43662. source: "./media/characters/sydney-heki/front.svg",
  43663. extra: 1360/1300,
  43664. bottom: 22/1382
  43665. }
  43666. },
  43667. back: {
  43668. height: math.unit(9 + 8/12, "feet"),
  43669. weight: math.unit(800, "lb"),
  43670. name: "Back",
  43671. image: {
  43672. source: "./media/characters/sydney-heki/back.svg",
  43673. extra: 1356/1293,
  43674. bottom: 12/1368
  43675. }
  43676. },
  43677. frontDressed: {
  43678. height: math.unit(9 + 8/12, "feet"),
  43679. weight: math.unit(800, "lb"),
  43680. name: "Front-dressed",
  43681. image: {
  43682. source: "./media/characters/sydney-heki/front-dressed.svg",
  43683. extra: 1360/1300,
  43684. bottom: 22/1382
  43685. }
  43686. },
  43687. },
  43688. [
  43689. {
  43690. name: "Normal",
  43691. height: math.unit(9 + 8/12, "feet"),
  43692. default: true
  43693. },
  43694. {
  43695. name: "Macro",
  43696. height: math.unit(500, "feet")
  43697. },
  43698. {
  43699. name: "Megamacro",
  43700. height: math.unit(3.6, "miles")
  43701. },
  43702. ]
  43703. ))
  43704. characterMakers.push(() => makeCharacter(
  43705. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43706. {
  43707. front: {
  43708. height: math.unit(200, "cm"),
  43709. weight: math.unit(250, "lb"),
  43710. name: "Front",
  43711. image: {
  43712. source: "./media/characters/fowler-karlsson/front.svg",
  43713. extra: 897/845,
  43714. bottom: 123/1020
  43715. }
  43716. },
  43717. back: {
  43718. height: math.unit(200, "cm"),
  43719. weight: math.unit(250, "lb"),
  43720. name: "Back",
  43721. image: {
  43722. source: "./media/characters/fowler-karlsson/back.svg",
  43723. extra: 999/944,
  43724. bottom: 26/1025
  43725. }
  43726. },
  43727. dick: {
  43728. height: math.unit(1.92, "feet"),
  43729. weight: math.unit(150, "lb"),
  43730. name: "Dick",
  43731. image: {
  43732. source: "./media/characters/fowler-karlsson/dick.svg"
  43733. }
  43734. },
  43735. },
  43736. [
  43737. {
  43738. name: "Normal",
  43739. height: math.unit(200, "cm"),
  43740. default: true
  43741. },
  43742. {
  43743. name: "Smaller Macro",
  43744. height: math.unit(90, "m")
  43745. },
  43746. {
  43747. name: "Macro",
  43748. height: math.unit(150, "m")
  43749. },
  43750. {
  43751. name: "Bigger Macro",
  43752. height: math.unit(300, "m")
  43753. },
  43754. ]
  43755. ))
  43756. characterMakers.push(() => makeCharacter(
  43757. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43758. {
  43759. side: {
  43760. height: math.unit(8 + 2/12, "feet"),
  43761. weight: math.unit(1, "tonne"),
  43762. name: "Side",
  43763. image: {
  43764. source: "./media/characters/rylide/side.svg",
  43765. extra: 1318/1034,
  43766. bottom: 106/1424
  43767. }
  43768. },
  43769. sitting: {
  43770. height: math.unit(303, "cm"),
  43771. weight: math.unit(1, "tonne"),
  43772. name: "Sitting",
  43773. image: {
  43774. source: "./media/characters/rylide/sitting.svg",
  43775. extra: 1303/1103,
  43776. bottom: 36/1339
  43777. }
  43778. },
  43779. },
  43780. [
  43781. {
  43782. name: "Normal",
  43783. height: math.unit(8 + 2/12, "feet"),
  43784. default: true
  43785. },
  43786. ]
  43787. ))
  43788. characterMakers.push(() => makeCharacter(
  43789. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43790. {
  43791. front: {
  43792. height: math.unit(5 + 10/12, "feet"),
  43793. weight: math.unit(160, "lb"),
  43794. name: "Front",
  43795. image: {
  43796. source: "./media/characters/pudask/front.svg",
  43797. extra: 1616/1590,
  43798. bottom: 161/1777
  43799. }
  43800. },
  43801. },
  43802. [
  43803. {
  43804. name: "Ferret Height",
  43805. height: math.unit(2 + 5/12, "feet")
  43806. },
  43807. {
  43808. name: "Canon Height",
  43809. height: math.unit(5 + 10/12, "feet"),
  43810. default: true
  43811. },
  43812. ]
  43813. ))
  43814. characterMakers.push(() => makeCharacter(
  43815. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43816. {
  43817. front: {
  43818. height: math.unit(3 + 6/12, "feet"),
  43819. weight: math.unit(60, "lb"),
  43820. name: "Front",
  43821. image: {
  43822. source: "./media/characters/ramita/front.svg",
  43823. extra: 1402/1232,
  43824. bottom: 62/1464
  43825. }
  43826. },
  43827. dressed: {
  43828. height: math.unit(3 + 6/12, "feet"),
  43829. weight: math.unit(60, "lb"),
  43830. name: "Dressed",
  43831. image: {
  43832. source: "./media/characters/ramita/dressed.svg",
  43833. extra: 1534/1249,
  43834. bottom: 50/1584
  43835. }
  43836. },
  43837. },
  43838. [
  43839. {
  43840. name: "Normal",
  43841. height: math.unit(3 + 6/12, "feet"),
  43842. default: true
  43843. },
  43844. ]
  43845. ))
  43846. characterMakers.push(() => makeCharacter(
  43847. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43848. {
  43849. front: {
  43850. height: math.unit(8, "feet"),
  43851. name: "Front",
  43852. image: {
  43853. source: "./media/characters/ark/front.svg",
  43854. extra: 772/693,
  43855. bottom: 45/817
  43856. }
  43857. },
  43858. },
  43859. [
  43860. {
  43861. name: "Normal",
  43862. height: math.unit(8, "feet"),
  43863. default: true
  43864. },
  43865. ]
  43866. ))
  43867. characterMakers.push(() => makeCharacter(
  43868. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43869. {
  43870. front: {
  43871. height: math.unit(6, "feet"),
  43872. weight: math.unit(250, "lb"),
  43873. volume: math.unit(5/8, "gallons"),
  43874. name: "Front",
  43875. image: {
  43876. source: "./media/characters/ludwig-horn/front.svg",
  43877. extra: 1782/1635,
  43878. bottom: 96/1878
  43879. }
  43880. },
  43881. back: {
  43882. height: math.unit(6, "feet"),
  43883. weight: math.unit(250, "lb"),
  43884. volume: math.unit(5/8, "gallons"),
  43885. name: "Back",
  43886. image: {
  43887. source: "./media/characters/ludwig-horn/back.svg",
  43888. extra: 1874/1729,
  43889. bottom: 27/1901
  43890. }
  43891. },
  43892. dick: {
  43893. height: math.unit(1.05, "feet"),
  43894. weight: math.unit(15, "lb"),
  43895. volume: math.unit(5/8, "gallons"),
  43896. name: "Dick",
  43897. image: {
  43898. source: "./media/characters/ludwig-horn/dick.svg"
  43899. }
  43900. },
  43901. },
  43902. [
  43903. {
  43904. name: "Small",
  43905. height: math.unit(6, "feet")
  43906. },
  43907. {
  43908. name: "Typical",
  43909. height: math.unit(12, "feet"),
  43910. default: true
  43911. },
  43912. {
  43913. name: "Building",
  43914. height: math.unit(80, "feet")
  43915. },
  43916. {
  43917. name: "Town",
  43918. height: math.unit(800, "feet")
  43919. },
  43920. {
  43921. name: "Kingdom",
  43922. height: math.unit(80000, "feet")
  43923. },
  43924. {
  43925. name: "Planet",
  43926. height: math.unit(8000000, "feet")
  43927. },
  43928. {
  43929. name: "Universe",
  43930. height: math.unit(8000000000, "feet")
  43931. },
  43932. {
  43933. name: "Transcended",
  43934. height: math.unit(8e27, "feet")
  43935. },
  43936. ]
  43937. ))
  43938. characterMakers.push(() => makeCharacter(
  43939. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43940. {
  43941. front: {
  43942. height: math.unit(5, "feet"),
  43943. weight: math.unit(50, "kg"),
  43944. name: "Front",
  43945. image: {
  43946. source: "./media/characters/biot-avery/front.svg",
  43947. extra: 1295/1232,
  43948. bottom: 86/1381
  43949. }
  43950. },
  43951. },
  43952. [
  43953. {
  43954. name: "Normal",
  43955. height: math.unit(5, "feet"),
  43956. default: true
  43957. },
  43958. ]
  43959. ))
  43960. characterMakers.push(() => makeCharacter(
  43961. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43962. {
  43963. front: {
  43964. height: math.unit(6, "feet"),
  43965. name: "Front",
  43966. image: {
  43967. source: "./media/characters/kitsune-kiro/front.svg",
  43968. extra: 1270/1158,
  43969. bottom: 42/1312
  43970. }
  43971. },
  43972. frontAlt: {
  43973. height: math.unit(6, "feet"),
  43974. name: "Front-alt",
  43975. image: {
  43976. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43977. extra: 1130/1081,
  43978. bottom: 36/1166
  43979. }
  43980. },
  43981. },
  43982. [
  43983. {
  43984. name: "Smol",
  43985. height: math.unit(3, "feet")
  43986. },
  43987. {
  43988. name: "Normal",
  43989. height: math.unit(6, "feet"),
  43990. default: true
  43991. },
  43992. ]
  43993. ))
  43994. characterMakers.push(() => makeCharacter(
  43995. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43996. {
  43997. front: {
  43998. height: math.unit(6, "feet"),
  43999. weight: math.unit(125, "lb"),
  44000. name: "Front",
  44001. image: {
  44002. source: "./media/characters/jack-thatcher/front.svg",
  44003. extra: 1474/1370,
  44004. bottom: 26/1500
  44005. }
  44006. },
  44007. back: {
  44008. height: math.unit(6, "feet"),
  44009. weight: math.unit(125, "lb"),
  44010. name: "Back",
  44011. image: {
  44012. source: "./media/characters/jack-thatcher/back.svg",
  44013. extra: 1489/1384,
  44014. bottom: 18/1507
  44015. }
  44016. },
  44017. },
  44018. [
  44019. {
  44020. name: "Normal",
  44021. height: math.unit(6, "feet"),
  44022. default: true
  44023. },
  44024. {
  44025. name: "Macro",
  44026. height: math.unit(75, "feet")
  44027. },
  44028. {
  44029. name: "Macro-er",
  44030. height: math.unit(250, "feet")
  44031. },
  44032. ]
  44033. ))
  44034. characterMakers.push(() => makeCharacter(
  44035. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44036. {
  44037. front: {
  44038. height: math.unit(7, "feet"),
  44039. weight: math.unit(110, "kg"),
  44040. name: "Front",
  44041. image: {
  44042. source: "./media/characters/max-hyper/front.svg",
  44043. extra: 1969/1881,
  44044. bottom: 49/2018
  44045. }
  44046. },
  44047. },
  44048. [
  44049. {
  44050. name: "Normal",
  44051. height: math.unit(7, "feet"),
  44052. default: true
  44053. },
  44054. ]
  44055. ))
  44056. characterMakers.push(() => makeCharacter(
  44057. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44058. {
  44059. front: {
  44060. height: math.unit(5 + 5/12, "feet"),
  44061. weight: math.unit(160, "lb"),
  44062. name: "Front",
  44063. image: {
  44064. source: "./media/characters/spook/front.svg",
  44065. extra: 794/791,
  44066. bottom: 54/848
  44067. }
  44068. },
  44069. back: {
  44070. height: math.unit(5 + 5/12, "feet"),
  44071. weight: math.unit(160, "lb"),
  44072. name: "Back",
  44073. image: {
  44074. source: "./media/characters/spook/back.svg",
  44075. extra: 812/798,
  44076. bottom: 32/844
  44077. }
  44078. },
  44079. },
  44080. [
  44081. {
  44082. name: "Normal",
  44083. height: math.unit(5 + 5/12, "feet"),
  44084. default: true
  44085. },
  44086. ]
  44087. ))
  44088. characterMakers.push(() => makeCharacter(
  44089. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44090. {
  44091. front: {
  44092. height: math.unit(18, "feet"),
  44093. name: "Front",
  44094. image: {
  44095. source: "./media/characters/xeaduulix/front.svg",
  44096. extra: 1380/1166,
  44097. bottom: 110/1490
  44098. }
  44099. },
  44100. back: {
  44101. height: math.unit(18, "feet"),
  44102. name: "Back",
  44103. image: {
  44104. source: "./media/characters/xeaduulix/back.svg",
  44105. extra: 1592/1170,
  44106. bottom: 128/1720
  44107. }
  44108. },
  44109. frontNsfw: {
  44110. height: math.unit(18, "feet"),
  44111. name: "Front (NSFW)",
  44112. image: {
  44113. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44114. extra: 1380/1166,
  44115. bottom: 110/1490
  44116. }
  44117. },
  44118. backNsfw: {
  44119. height: math.unit(18, "feet"),
  44120. name: "Back (NSFW)",
  44121. image: {
  44122. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44123. extra: 1592/1170,
  44124. bottom: 128/1720
  44125. }
  44126. },
  44127. },
  44128. [
  44129. {
  44130. name: "Normal",
  44131. height: math.unit(18, "feet"),
  44132. default: true
  44133. },
  44134. ]
  44135. ))
  44136. characterMakers.push(() => makeCharacter(
  44137. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44138. {
  44139. spreadWings: {
  44140. height: math.unit(20, "feet"),
  44141. name: "Spread Wings",
  44142. image: {
  44143. source: "./media/characters/fledge/spread-wings.svg",
  44144. extra: 693/635,
  44145. bottom: 26/719
  44146. }
  44147. },
  44148. front: {
  44149. height: math.unit(20, "feet"),
  44150. name: "Front",
  44151. image: {
  44152. source: "./media/characters/fledge/front.svg",
  44153. extra: 684/637,
  44154. bottom: 18/702
  44155. }
  44156. },
  44157. frontAlt: {
  44158. height: math.unit(20, "feet"),
  44159. name: "Front (Alt)",
  44160. image: {
  44161. source: "./media/characters/fledge/front-alt.svg",
  44162. extra: 708/664,
  44163. bottom: 13/721
  44164. }
  44165. },
  44166. back: {
  44167. height: math.unit(20, "feet"),
  44168. name: "Back",
  44169. image: {
  44170. source: "./media/characters/fledge/back.svg",
  44171. extra: 718/634,
  44172. bottom: 22/740
  44173. }
  44174. },
  44175. head: {
  44176. height: math.unit(5.55, "feet"),
  44177. name: "Head",
  44178. image: {
  44179. source: "./media/characters/fledge/head.svg"
  44180. }
  44181. },
  44182. headAlt: {
  44183. height: math.unit(5.1, "feet"),
  44184. name: "Head (Alt)",
  44185. image: {
  44186. source: "./media/characters/fledge/head-alt.svg"
  44187. }
  44188. },
  44189. },
  44190. [
  44191. {
  44192. name: "Small",
  44193. height: math.unit(6 + 2/12, "feet")
  44194. },
  44195. {
  44196. name: "Big",
  44197. height: math.unit(20, "feet"),
  44198. default: true
  44199. },
  44200. {
  44201. name: "Giant",
  44202. height: math.unit(100, "feet")
  44203. },
  44204. {
  44205. name: "Macro",
  44206. height: math.unit(200, "feet")
  44207. },
  44208. ]
  44209. ))
  44210. characterMakers.push(() => makeCharacter(
  44211. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44212. {
  44213. front: {
  44214. height: math.unit(1, "meter"),
  44215. name: "Front",
  44216. image: {
  44217. source: "./media/characters/atlas-morenai/front.svg",
  44218. extra: 1275/1043,
  44219. bottom: 19/1294
  44220. }
  44221. },
  44222. back: {
  44223. height: math.unit(1, "meter"),
  44224. name: "Back",
  44225. image: {
  44226. source: "./media/characters/atlas-morenai/back.svg",
  44227. extra: 1141/1001,
  44228. bottom: 25/1166
  44229. }
  44230. },
  44231. },
  44232. [
  44233. {
  44234. name: "Normal",
  44235. height: math.unit(1, "meter"),
  44236. default: true
  44237. },
  44238. {
  44239. name: "Magic-Infused",
  44240. height: math.unit(5, "meters")
  44241. },
  44242. ]
  44243. ))
  44244. characterMakers.push(() => makeCharacter(
  44245. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44246. {
  44247. front: {
  44248. height: math.unit(5, "meters"),
  44249. name: "Front",
  44250. image: {
  44251. source: "./media/characters/cintia/front.svg",
  44252. extra: 1312/1228,
  44253. bottom: 38/1350
  44254. }
  44255. },
  44256. back: {
  44257. height: math.unit(5, "meters"),
  44258. name: "Back",
  44259. image: {
  44260. source: "./media/characters/cintia/back.svg",
  44261. extra: 1260/1166,
  44262. bottom: 98/1358
  44263. }
  44264. },
  44265. frontDick: {
  44266. height: math.unit(5, "meters"),
  44267. name: "Front (Dick)",
  44268. image: {
  44269. source: "./media/characters/cintia/front-dick.svg",
  44270. extra: 1312/1228,
  44271. bottom: 38/1350
  44272. }
  44273. },
  44274. backDick: {
  44275. height: math.unit(5, "meters"),
  44276. name: "Back (Dick)",
  44277. image: {
  44278. source: "./media/characters/cintia/back-dick.svg",
  44279. extra: 1260/1166,
  44280. bottom: 98/1358
  44281. }
  44282. },
  44283. bust: {
  44284. height: math.unit(1.97, "meters"),
  44285. name: "Bust",
  44286. image: {
  44287. source: "./media/characters/cintia/bust.svg",
  44288. extra: 617/565,
  44289. bottom: 0/617
  44290. }
  44291. },
  44292. },
  44293. [
  44294. {
  44295. name: "Normal",
  44296. height: math.unit(5, "meters"),
  44297. default: true
  44298. },
  44299. ]
  44300. ))
  44301. characterMakers.push(() => makeCharacter(
  44302. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44303. {
  44304. side: {
  44305. height: math.unit(100, "feet"),
  44306. name: "Side",
  44307. image: {
  44308. source: "./media/characters/denora/side.svg",
  44309. extra: 875/803,
  44310. bottom: 9/884
  44311. }
  44312. },
  44313. },
  44314. [
  44315. {
  44316. name: "Standard",
  44317. height: math.unit(100, "feet"),
  44318. default: true
  44319. },
  44320. {
  44321. name: "Grand",
  44322. height: math.unit(1000, "feet")
  44323. },
  44324. {
  44325. name: "Conquering",
  44326. height: math.unit(10000, "feet")
  44327. },
  44328. ]
  44329. ))
  44330. characterMakers.push(() => makeCharacter(
  44331. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44332. {
  44333. dressed: {
  44334. height: math.unit(8 + 5/12, "feet"),
  44335. weight: math.unit(700, "lb"),
  44336. name: "Dressed",
  44337. image: {
  44338. source: "./media/characters/kiva/dressed.svg",
  44339. extra: 1102/1055,
  44340. bottom: 60/1162
  44341. }
  44342. },
  44343. nude: {
  44344. height: math.unit(8 + 5/12, "feet"),
  44345. weight: math.unit(700, "lb"),
  44346. name: "Nude",
  44347. image: {
  44348. source: "./media/characters/kiva/nude.svg",
  44349. extra: 1102/1055,
  44350. bottom: 60/1162
  44351. }
  44352. },
  44353. },
  44354. [
  44355. {
  44356. name: "Base Height",
  44357. height: math.unit(8 + 5/12, "feet"),
  44358. default: true
  44359. },
  44360. {
  44361. name: "Macro",
  44362. height: math.unit(100, "feet")
  44363. },
  44364. {
  44365. name: "Max",
  44366. height: math.unit(3280, "feet")
  44367. },
  44368. ]
  44369. ))
  44370. characterMakers.push(() => makeCharacter(
  44371. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44372. {
  44373. front: {
  44374. height: math.unit(6 + 8/12, "feet"),
  44375. weight: math.unit(250, "lb"),
  44376. name: "Front",
  44377. image: {
  44378. source: "./media/characters/ztragon/front.svg",
  44379. extra: 1825/1684,
  44380. bottom: 98/1923
  44381. }
  44382. },
  44383. },
  44384. [
  44385. {
  44386. name: "Normal",
  44387. height: math.unit(6 + 8/12, "feet"),
  44388. default: true
  44389. },
  44390. {
  44391. name: "Macro",
  44392. height: math.unit(80, "feet")
  44393. },
  44394. ]
  44395. ))
  44396. characterMakers.push(() => makeCharacter(
  44397. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44398. {
  44399. front: {
  44400. height: math.unit(10.4, "feet"),
  44401. weight: math.unit(2, "tons"),
  44402. name: "Front",
  44403. image: {
  44404. source: "./media/characters/yesenia/front.svg",
  44405. extra: 1479/1474,
  44406. bottom: 233/1712
  44407. }
  44408. },
  44409. },
  44410. [
  44411. {
  44412. name: "Normal",
  44413. height: math.unit(10.4, "feet"),
  44414. default: true
  44415. },
  44416. ]
  44417. ))
  44418. characterMakers.push(() => makeCharacter(
  44419. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44420. {
  44421. normal: {
  44422. height: math.unit(6 + 1/12, "feet"),
  44423. weight: math.unit(180, "lb"),
  44424. name: "Normal",
  44425. image: {
  44426. source: "./media/characters/leanne-lycheborne/normal.svg",
  44427. extra: 1748/1660,
  44428. bottom: 98/1846
  44429. }
  44430. },
  44431. were: {
  44432. height: math.unit(12, "feet"),
  44433. weight: math.unit(1600, "lb"),
  44434. name: "Were",
  44435. image: {
  44436. source: "./media/characters/leanne-lycheborne/were.svg",
  44437. extra: 1485/1432,
  44438. bottom: 66/1551
  44439. }
  44440. },
  44441. },
  44442. [
  44443. {
  44444. name: "Normal",
  44445. height: math.unit(6 + 1/12, "feet"),
  44446. default: true
  44447. },
  44448. ]
  44449. ))
  44450. characterMakers.push(() => makeCharacter(
  44451. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44452. {
  44453. side: {
  44454. height: math.unit(13, "feet"),
  44455. name: "Side",
  44456. image: {
  44457. source: "./media/characters/kira-tyler/side.svg",
  44458. extra: 693/393,
  44459. bottom: 58/751
  44460. }
  44461. },
  44462. },
  44463. [
  44464. {
  44465. name: "Normal",
  44466. height: math.unit(13, "feet"),
  44467. default: true
  44468. },
  44469. ]
  44470. ))
  44471. characterMakers.push(() => makeCharacter(
  44472. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44473. {
  44474. front: {
  44475. height: math.unit(10.3, "feet"),
  44476. weight: math.unit(150, "lb"),
  44477. name: "Front",
  44478. image: {
  44479. source: "./media/characters/blaze/front.svg",
  44480. extra: 1378/1286,
  44481. bottom: 172/1550
  44482. }
  44483. },
  44484. },
  44485. [
  44486. {
  44487. name: "Normal",
  44488. height: math.unit(10.3, "feet"),
  44489. default: true
  44490. },
  44491. ]
  44492. ))
  44493. characterMakers.push(() => makeCharacter(
  44494. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44495. {
  44496. side: {
  44497. height: math.unit(2, "meters"),
  44498. weight: math.unit(400, "kg"),
  44499. name: "Side",
  44500. image: {
  44501. source: "./media/characters/anu/side.svg",
  44502. extra: 506/394,
  44503. bottom: 18/524
  44504. }
  44505. },
  44506. },
  44507. [
  44508. {
  44509. name: "Humanoid",
  44510. height: math.unit(2, "meters")
  44511. },
  44512. {
  44513. name: "Normal",
  44514. height: math.unit(5, "meters"),
  44515. default: true
  44516. },
  44517. ]
  44518. ))
  44519. characterMakers.push(() => makeCharacter(
  44520. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44521. {
  44522. front: {
  44523. height: math.unit(5 + 5/12, "feet"),
  44524. weight: math.unit(170, "lb"),
  44525. name: "Front",
  44526. image: {
  44527. source: "./media/characters/synx-the-lynx/front.svg",
  44528. extra: 1893/1745,
  44529. bottom: 17/1910
  44530. }
  44531. },
  44532. side: {
  44533. height: math.unit(5 + 5/12, "feet"),
  44534. weight: math.unit(170, "lb"),
  44535. name: "Side",
  44536. image: {
  44537. source: "./media/characters/synx-the-lynx/side.svg",
  44538. extra: 1884/1740,
  44539. bottom: 39/1923
  44540. }
  44541. },
  44542. back: {
  44543. height: math.unit(5 + 5/12, "feet"),
  44544. weight: math.unit(170, "lb"),
  44545. name: "Back",
  44546. image: {
  44547. source: "./media/characters/synx-the-lynx/back.svg",
  44548. extra: 1903/1755,
  44549. bottom: 14/1917
  44550. }
  44551. },
  44552. },
  44553. [
  44554. {
  44555. name: "Normal",
  44556. height: math.unit(5 + 5/12, "feet"),
  44557. default: true
  44558. },
  44559. ]
  44560. ))
  44561. characterMakers.push(() => makeCharacter(
  44562. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44563. {
  44564. back: {
  44565. height: math.unit(15, "feet"),
  44566. name: "Back",
  44567. image: {
  44568. source: "./media/characters/nadezda-fex/back.svg",
  44569. extra: 1695/1481,
  44570. bottom: 25/1720
  44571. }
  44572. },
  44573. },
  44574. [
  44575. {
  44576. name: "Normal",
  44577. height: math.unit(15, "feet"),
  44578. default: true
  44579. },
  44580. {
  44581. name: "Macro",
  44582. height: math.unit(2.5, "miles")
  44583. },
  44584. {
  44585. name: "Goddess",
  44586. height: math.unit(2, "multiverses")
  44587. },
  44588. ]
  44589. ))
  44590. characterMakers.push(() => makeCharacter(
  44591. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44592. {
  44593. front: {
  44594. height: math.unit(216, "cm"),
  44595. name: "Front",
  44596. image: {
  44597. source: "./media/characters/lev/front.svg",
  44598. extra: 1728/1670,
  44599. bottom: 82/1810
  44600. }
  44601. },
  44602. back: {
  44603. height: math.unit(216, "cm"),
  44604. name: "Back",
  44605. image: {
  44606. source: "./media/characters/lev/back.svg",
  44607. extra: 1738/1675,
  44608. bottom: 24/1762
  44609. }
  44610. },
  44611. dressed: {
  44612. height: math.unit(216, "cm"),
  44613. name: "Dressed",
  44614. image: {
  44615. source: "./media/characters/lev/dressed.svg",
  44616. extra: 1397/1351,
  44617. bottom: 73/1470
  44618. }
  44619. },
  44620. head: {
  44621. height: math.unit(0.51, "meter"),
  44622. name: "Head",
  44623. image: {
  44624. source: "./media/characters/lev/head.svg"
  44625. }
  44626. },
  44627. },
  44628. [
  44629. {
  44630. name: "Normal",
  44631. height: math.unit(216, "cm"),
  44632. default: true
  44633. },
  44634. {
  44635. name: "Relatively Macro",
  44636. height: math.unit(80, "meters")
  44637. },
  44638. {
  44639. name: "Megamacro",
  44640. height: math.unit(21600, "meters")
  44641. },
  44642. {
  44643. name: "Megamacro+",
  44644. height: math.unit(64800, "meters")
  44645. },
  44646. ]
  44647. ))
  44648. characterMakers.push(() => makeCharacter(
  44649. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44650. {
  44651. front: {
  44652. height: math.unit(2, "meters"),
  44653. weight: math.unit(80, "kg"),
  44654. name: "Front",
  44655. image: {
  44656. source: "./media/characters/moka/front.svg",
  44657. extra: 1337/1255,
  44658. bottom: 58/1395
  44659. }
  44660. },
  44661. },
  44662. [
  44663. {
  44664. name: "Micro",
  44665. height: math.unit(15, "cm")
  44666. },
  44667. {
  44668. name: "Normal",
  44669. height: math.unit(2, "meters"),
  44670. default: true
  44671. },
  44672. {
  44673. name: "Macro",
  44674. height: math.unit(20, "meters"),
  44675. },
  44676. ]
  44677. ))
  44678. characterMakers.push(() => makeCharacter(
  44679. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44680. {
  44681. front: {
  44682. height: math.unit(9, "feet"),
  44683. weight: math.unit(240, "lb"),
  44684. name: "Front",
  44685. image: {
  44686. source: "./media/characters/kuzco/front.svg",
  44687. extra: 1593/1487,
  44688. bottom: 32/1625
  44689. }
  44690. },
  44691. side: {
  44692. height: math.unit(9, "feet"),
  44693. weight: math.unit(240, "lb"),
  44694. name: "Side",
  44695. image: {
  44696. source: "./media/characters/kuzco/side.svg",
  44697. extra: 1575/1485,
  44698. bottom: 30/1605
  44699. }
  44700. },
  44701. back: {
  44702. height: math.unit(9, "feet"),
  44703. weight: math.unit(240, "lb"),
  44704. name: "Back",
  44705. image: {
  44706. source: "./media/characters/kuzco/back.svg",
  44707. extra: 1603/1514,
  44708. bottom: 14/1617
  44709. }
  44710. },
  44711. },
  44712. [
  44713. {
  44714. name: "Normal",
  44715. height: math.unit(9, "feet"),
  44716. default: true
  44717. },
  44718. ]
  44719. ))
  44720. characterMakers.push(() => makeCharacter(
  44721. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44722. {
  44723. side: {
  44724. height: math.unit(2, "meters"),
  44725. weight: math.unit(300, "kg"),
  44726. name: "Side",
  44727. image: {
  44728. source: "./media/characters/ceruleus/side.svg",
  44729. extra: 1068/974,
  44730. bottom: 126/1194
  44731. }
  44732. },
  44733. },
  44734. [
  44735. {
  44736. name: "Normal",
  44737. height: math.unit(16, "meters"),
  44738. default: true
  44739. },
  44740. ]
  44741. ))
  44742. characterMakers.push(() => makeCharacter(
  44743. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44744. {
  44745. front: {
  44746. height: math.unit(9, "feet"),
  44747. weight: math.unit(500, "kg"),
  44748. name: "Front",
  44749. image: {
  44750. source: "./media/characters/acouya/front.svg",
  44751. extra: 1660/1473,
  44752. bottom: 28/1688
  44753. }
  44754. },
  44755. },
  44756. [
  44757. {
  44758. name: "Normal",
  44759. height: math.unit(9, "feet"),
  44760. default: true
  44761. },
  44762. ]
  44763. ))
  44764. characterMakers.push(() => makeCharacter(
  44765. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44766. {
  44767. front: {
  44768. height: math.unit(5 + 6/12, "feet"),
  44769. weight: math.unit(195, "lb"),
  44770. name: "Front",
  44771. image: {
  44772. source: "./media/characters/vant/front.svg",
  44773. extra: 1396/1320,
  44774. bottom: 20/1416
  44775. }
  44776. },
  44777. back: {
  44778. height: math.unit(5 + 6/12, "feet"),
  44779. weight: math.unit(195, "lb"),
  44780. name: "Back",
  44781. image: {
  44782. source: "./media/characters/vant/back.svg",
  44783. extra: 1396/1320,
  44784. bottom: 20/1416
  44785. }
  44786. },
  44787. maw: {
  44788. height: math.unit(0.75, "feet"),
  44789. name: "Maw",
  44790. image: {
  44791. source: "./media/characters/vant/maw.svg"
  44792. }
  44793. },
  44794. paw: {
  44795. height: math.unit(1.07, "feet"),
  44796. name: "Paw",
  44797. image: {
  44798. source: "./media/characters/vant/paw.svg"
  44799. }
  44800. },
  44801. },
  44802. [
  44803. {
  44804. name: "Micro",
  44805. height: math.unit(0.25, "inches")
  44806. },
  44807. {
  44808. name: "Normal",
  44809. height: math.unit(5 + 6/12, "feet"),
  44810. default: true
  44811. },
  44812. {
  44813. name: "Macro",
  44814. height: math.unit(75, "feet")
  44815. },
  44816. ]
  44817. ))
  44818. characterMakers.push(() => makeCharacter(
  44819. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44820. {
  44821. front: {
  44822. height: math.unit(30, "meters"),
  44823. weight: math.unit(363, "tons"),
  44824. name: "Front",
  44825. image: {
  44826. source: "./media/characters/ahra/front.svg",
  44827. extra: 1914/1814,
  44828. bottom: 46/1960
  44829. }
  44830. },
  44831. },
  44832. [
  44833. {
  44834. name: "Macro",
  44835. height: math.unit(30, "meters"),
  44836. default: true
  44837. },
  44838. ]
  44839. ))
  44840. characterMakers.push(() => makeCharacter(
  44841. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44842. {
  44843. undressed: {
  44844. height: math.unit(2, "m"),
  44845. weight: math.unit(250, "kg"),
  44846. name: "Undressed",
  44847. image: {
  44848. source: "./media/characters/coriander/undressed.svg",
  44849. extra: 1757/1606,
  44850. bottom: 107/1864
  44851. }
  44852. },
  44853. dressed: {
  44854. height: math.unit(2, "m"),
  44855. weight: math.unit(250, "kg"),
  44856. name: "Dressed",
  44857. image: {
  44858. source: "./media/characters/coriander/dressed.svg",
  44859. extra: 1757/1606,
  44860. bottom: 107/1864
  44861. }
  44862. },
  44863. },
  44864. [
  44865. {
  44866. name: "Normal",
  44867. height: math.unit(4, "meters"),
  44868. default: true
  44869. },
  44870. {
  44871. name: "XL",
  44872. height: math.unit(6, "meters")
  44873. },
  44874. {
  44875. name: "XXL",
  44876. height: math.unit(8, "meters")
  44877. },
  44878. ]
  44879. ))
  44880. characterMakers.push(() => makeCharacter(
  44881. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44882. {
  44883. front: {
  44884. height: math.unit(6, "feet"),
  44885. name: "Front",
  44886. image: {
  44887. source: "./media/characters/syrinx/front.svg",
  44888. extra: 1557/1259,
  44889. bottom: 171/1728
  44890. }
  44891. },
  44892. },
  44893. [
  44894. {
  44895. name: "Normal",
  44896. height: math.unit(6 + 3/12, "feet"),
  44897. default: true
  44898. },
  44899. ]
  44900. ))
  44901. characterMakers.push(() => makeCharacter(
  44902. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44903. {
  44904. front: {
  44905. height: math.unit(11 + 6/12, "feet"),
  44906. weight: math.unit(1.5, "tons"),
  44907. name: "Front",
  44908. image: {
  44909. source: "./media/characters/bor/front.svg",
  44910. extra: 1189/1109,
  44911. bottom: 170/1359
  44912. }
  44913. },
  44914. },
  44915. [
  44916. {
  44917. name: "Normal",
  44918. height: math.unit(11 + 6/12, "feet"),
  44919. default: true
  44920. },
  44921. {
  44922. name: "Macro",
  44923. height: math.unit(32 + 9/12, "feet")
  44924. },
  44925. ]
  44926. ))
  44927. characterMakers.push(() => makeCharacter(
  44928. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44929. {
  44930. anthro: {
  44931. height: math.unit(9, "feet"),
  44932. weight: math.unit(2076, "lb"),
  44933. name: "Anthro",
  44934. image: {
  44935. source: "./media/characters/abacus/anthro.svg",
  44936. extra: 1540/1494,
  44937. bottom: 233/1773
  44938. }
  44939. },
  44940. pigeon: {
  44941. height: math.unit(1, "feet"),
  44942. name: "Pigeon",
  44943. image: {
  44944. source: "./media/characters/abacus/pigeon.svg",
  44945. extra: 528/525,
  44946. bottom: 46/574
  44947. }
  44948. },
  44949. },
  44950. [
  44951. {
  44952. name: "Normal",
  44953. height: math.unit(9, "feet"),
  44954. default: true
  44955. },
  44956. ]
  44957. ))
  44958. characterMakers.push(() => makeCharacter(
  44959. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44960. {
  44961. side: {
  44962. height: math.unit(6, "feet"),
  44963. name: "Side",
  44964. image: {
  44965. source: "./media/characters/delkhan/side.svg",
  44966. extra: 1884/1786,
  44967. bottom: 308/2192
  44968. }
  44969. },
  44970. head: {
  44971. height: math.unit(3.38, "feet"),
  44972. name: "Head",
  44973. image: {
  44974. source: "./media/characters/delkhan/head.svg"
  44975. }
  44976. },
  44977. },
  44978. [
  44979. {
  44980. name: "Normal",
  44981. height: math.unit(72, "feet"),
  44982. default: true
  44983. },
  44984. {
  44985. name: "Giant",
  44986. height: math.unit(172, "feet")
  44987. },
  44988. ]
  44989. ))
  44990. characterMakers.push(() => makeCharacter(
  44991. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44992. {
  44993. standing: {
  44994. height: math.unit(6, "feet"),
  44995. name: "Standing",
  44996. image: {
  44997. source: "./media/characters/euchidat/standing.svg",
  44998. extra: 1612/1553,
  44999. bottom: 116/1728
  45000. }
  45001. },
  45002. leaning: {
  45003. height: math.unit(6, "feet"),
  45004. name: "Leaning",
  45005. image: {
  45006. source: "./media/characters/euchidat/leaning.svg",
  45007. extra: 1719/1674,
  45008. bottom: 27/1746
  45009. }
  45010. },
  45011. },
  45012. [
  45013. {
  45014. name: "Normal",
  45015. height: math.unit(175, "feet"),
  45016. default: true
  45017. },
  45018. {
  45019. name: "Megamacro",
  45020. height: math.unit(190, "miles")
  45021. },
  45022. {
  45023. name: "Gigamacro",
  45024. height: math.unit(190000, "miles")
  45025. },
  45026. ]
  45027. ))
  45028. characterMakers.push(() => makeCharacter(
  45029. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45030. {
  45031. front: {
  45032. height: math.unit(6, "feet"),
  45033. weight: math.unit(150, "lb"),
  45034. name: "Front",
  45035. image: {
  45036. source: "./media/characters/rebecca-stack/front.svg",
  45037. extra: 1256/1201,
  45038. bottom: 18/1274
  45039. }
  45040. },
  45041. },
  45042. [
  45043. {
  45044. name: "Normal",
  45045. height: math.unit(5 + 8/12, "feet"),
  45046. default: true
  45047. },
  45048. {
  45049. name: "Demolitionist",
  45050. height: math.unit(200, "feet")
  45051. },
  45052. {
  45053. name: "Out of Control",
  45054. height: math.unit(2, "miles")
  45055. },
  45056. {
  45057. name: "Giga",
  45058. height: math.unit(7200, "miles")
  45059. },
  45060. ]
  45061. ))
  45062. characterMakers.push(() => makeCharacter(
  45063. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45064. {
  45065. front: {
  45066. height: math.unit(6, "feet"),
  45067. weight: math.unit(150, "lb"),
  45068. name: "Front",
  45069. image: {
  45070. source: "./media/characters/jenny-cartwright/front.svg",
  45071. extra: 1384/1376,
  45072. bottom: 58/1442
  45073. }
  45074. },
  45075. },
  45076. [
  45077. {
  45078. name: "Normal",
  45079. height: math.unit(6 + 7/12, "feet"),
  45080. default: true
  45081. },
  45082. {
  45083. name: "Librarian",
  45084. height: math.unit(55, "feet")
  45085. },
  45086. {
  45087. name: "Sightseer",
  45088. height: math.unit(50, "miles")
  45089. },
  45090. {
  45091. name: "Giga",
  45092. height: math.unit(30000, "miles")
  45093. },
  45094. ]
  45095. ))
  45096. characterMakers.push(() => makeCharacter(
  45097. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45098. {
  45099. nude: {
  45100. height: math.unit(8, "feet"),
  45101. weight: math.unit(225, "lb"),
  45102. name: "Nude",
  45103. image: {
  45104. source: "./media/characters/marvy/nude.svg",
  45105. extra: 1900/1683,
  45106. bottom: 89/1989
  45107. }
  45108. },
  45109. dressed: {
  45110. height: math.unit(8, "feet"),
  45111. weight: math.unit(225, "lb"),
  45112. name: "Dressed",
  45113. image: {
  45114. source: "./media/characters/marvy/dressed.svg",
  45115. extra: 1900/1683,
  45116. bottom: 89/1989
  45117. }
  45118. },
  45119. head: {
  45120. height: math.unit(2.85, "feet"),
  45121. name: "Head",
  45122. image: {
  45123. source: "./media/characters/marvy/head.svg"
  45124. }
  45125. },
  45126. },
  45127. [
  45128. {
  45129. name: "Normal",
  45130. height: math.unit(8, "feet"),
  45131. default: true
  45132. },
  45133. ]
  45134. ))
  45135. characterMakers.push(() => makeCharacter(
  45136. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45137. {
  45138. front: {
  45139. height: math.unit(8, "feet"),
  45140. weight: math.unit(250, "lb"),
  45141. name: "Front",
  45142. image: {
  45143. source: "./media/characters/leah/front.svg",
  45144. extra: 1257/1149,
  45145. bottom: 109/1366
  45146. }
  45147. },
  45148. },
  45149. [
  45150. {
  45151. name: "Normal",
  45152. height: math.unit(8, "feet"),
  45153. default: true
  45154. },
  45155. {
  45156. name: "Minimacro",
  45157. height: math.unit(40, "feet")
  45158. },
  45159. {
  45160. name: "Macro",
  45161. height: math.unit(124, "feet")
  45162. },
  45163. {
  45164. name: "Megamacro",
  45165. height: math.unit(850, "feet")
  45166. },
  45167. ]
  45168. ))
  45169. characterMakers.push(() => makeCharacter(
  45170. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45171. {
  45172. side: {
  45173. height: math.unit(13 + 6/12, "feet"),
  45174. weight: math.unit(3200, "lb"),
  45175. name: "Side",
  45176. image: {
  45177. source: "./media/characters/alvir/side.svg",
  45178. extra: 896/589,
  45179. bottom: 26/922
  45180. }
  45181. },
  45182. },
  45183. [
  45184. {
  45185. name: "Normal",
  45186. height: math.unit(13 + 6/12, "feet"),
  45187. default: true
  45188. },
  45189. ]
  45190. ))
  45191. characterMakers.push(() => makeCharacter(
  45192. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45193. {
  45194. front: {
  45195. height: math.unit(5 + 4/12, "feet"),
  45196. weight: math.unit(236, "lb"),
  45197. name: "Front",
  45198. image: {
  45199. source: "./media/characters/zaina-khalil/front.svg",
  45200. extra: 1533/1485,
  45201. bottom: 94/1627
  45202. }
  45203. },
  45204. side: {
  45205. height: math.unit(5 + 4/12, "feet"),
  45206. weight: math.unit(236, "lb"),
  45207. name: "Side",
  45208. image: {
  45209. source: "./media/characters/zaina-khalil/side.svg",
  45210. extra: 1537/1498,
  45211. bottom: 66/1603
  45212. }
  45213. },
  45214. back: {
  45215. height: math.unit(5 + 4/12, "feet"),
  45216. weight: math.unit(236, "lb"),
  45217. name: "Back",
  45218. image: {
  45219. source: "./media/characters/zaina-khalil/back.svg",
  45220. extra: 1546/1494,
  45221. bottom: 89/1635
  45222. }
  45223. },
  45224. },
  45225. [
  45226. {
  45227. name: "Normal",
  45228. height: math.unit(5 + 4/12, "feet"),
  45229. default: true
  45230. },
  45231. ]
  45232. ))
  45233. characterMakers.push(() => makeCharacter(
  45234. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45235. {
  45236. side: {
  45237. height: math.unit(12, "feet"),
  45238. weight: math.unit(4000, "lb"),
  45239. name: "Side",
  45240. image: {
  45241. source: "./media/characters/terry/side.svg",
  45242. extra: 1518/1439,
  45243. bottom: 149/1667
  45244. }
  45245. },
  45246. },
  45247. [
  45248. {
  45249. name: "Normal",
  45250. height: math.unit(12, "feet"),
  45251. default: true
  45252. },
  45253. ]
  45254. ))
  45255. characterMakers.push(() => makeCharacter(
  45256. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45257. {
  45258. front: {
  45259. height: math.unit(12, "feet"),
  45260. weight: math.unit(1500, "lb"),
  45261. name: "Front",
  45262. image: {
  45263. source: "./media/characters/kahea/front.svg",
  45264. extra: 1722/1617,
  45265. bottom: 179/1901
  45266. }
  45267. },
  45268. },
  45269. [
  45270. {
  45271. name: "Normal",
  45272. height: math.unit(12, "feet"),
  45273. default: true
  45274. },
  45275. ]
  45276. ))
  45277. characterMakers.push(() => makeCharacter(
  45278. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45279. {
  45280. demonFront: {
  45281. height: math.unit(36, "feet"),
  45282. name: "Front",
  45283. image: {
  45284. source: "./media/characters/alex-xuria/demon-front.svg",
  45285. extra: 1705/1673,
  45286. bottom: 198/1903
  45287. },
  45288. form: "demon",
  45289. default: true
  45290. },
  45291. demonBack: {
  45292. height: math.unit(36, "feet"),
  45293. name: "Back",
  45294. image: {
  45295. source: "./media/characters/alex-xuria/demon-back.svg",
  45296. extra: 1725/1693,
  45297. bottom: 70/1795
  45298. },
  45299. form: "demon"
  45300. },
  45301. demonHead: {
  45302. height: math.unit(2.14, "meters"),
  45303. name: "Head",
  45304. image: {
  45305. source: "./media/characters/alex-xuria/demon-head.svg"
  45306. },
  45307. form: "demon"
  45308. },
  45309. demonHand: {
  45310. height: math.unit(1.61, "meters"),
  45311. name: "Hand",
  45312. image: {
  45313. source: "./media/characters/alex-xuria/demon-hand.svg"
  45314. },
  45315. form: "demon"
  45316. },
  45317. demonPaw: {
  45318. height: math.unit(1.35, "meters"),
  45319. name: "Paw",
  45320. image: {
  45321. source: "./media/characters/alex-xuria/demon-paw.svg"
  45322. },
  45323. form: "demon"
  45324. },
  45325. demonFoot: {
  45326. height: math.unit(2.2, "meters"),
  45327. name: "Foot",
  45328. image: {
  45329. source: "./media/characters/alex-xuria/demon-foot.svg"
  45330. },
  45331. form: "demon"
  45332. },
  45333. demonCock: {
  45334. height: math.unit(1.74, "meters"),
  45335. name: "Cock",
  45336. image: {
  45337. source: "./media/characters/alex-xuria/demon-cock.svg"
  45338. },
  45339. form: "demon"
  45340. },
  45341. demonTailClosed: {
  45342. height: math.unit(1.47, "meters"),
  45343. name: "Tail (Closed)",
  45344. image: {
  45345. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45346. },
  45347. form: "demon"
  45348. },
  45349. demonTailOpen: {
  45350. height: math.unit(2.85, "meters"),
  45351. name: "Tail (Open)",
  45352. image: {
  45353. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45354. },
  45355. form: "demon"
  45356. },
  45357. incubusFront: {
  45358. height: math.unit(12, "feet"),
  45359. name: "Front",
  45360. image: {
  45361. source: "./media/characters/alex-xuria/incubus-front.svg",
  45362. extra: 1754/1677,
  45363. bottom: 125/1879
  45364. },
  45365. form: "incubus",
  45366. default: true
  45367. },
  45368. incubusBack: {
  45369. height: math.unit(12, "feet"),
  45370. name: "Back",
  45371. image: {
  45372. source: "./media/characters/alex-xuria/incubus-back.svg",
  45373. extra: 1702/1647,
  45374. bottom: 30/1732
  45375. },
  45376. form: "incubus"
  45377. },
  45378. incubusHead: {
  45379. height: math.unit(3.45, "feet"),
  45380. name: "Head",
  45381. image: {
  45382. source: "./media/characters/alex-xuria/incubus-head.svg"
  45383. },
  45384. form: "incubus"
  45385. },
  45386. rabbitFront: {
  45387. height: math.unit(6, "feet"),
  45388. name: "Front",
  45389. image: {
  45390. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45391. extra: 1369/1349,
  45392. bottom: 45/1414
  45393. },
  45394. form: "rabbit",
  45395. default: true
  45396. },
  45397. rabbitSide: {
  45398. height: math.unit(6, "feet"),
  45399. name: "Side",
  45400. image: {
  45401. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45402. extra: 1370/1356,
  45403. bottom: 37/1407
  45404. },
  45405. form: "rabbit"
  45406. },
  45407. rabbitBack: {
  45408. height: math.unit(6, "feet"),
  45409. name: "Back",
  45410. image: {
  45411. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45412. extra: 1375/1358,
  45413. bottom: 43/1418
  45414. },
  45415. form: "rabbit"
  45416. },
  45417. },
  45418. [
  45419. {
  45420. name: "Normal",
  45421. height: math.unit(6, "feet"),
  45422. default: true,
  45423. form: "rabbit"
  45424. },
  45425. {
  45426. name: "Incubus",
  45427. height: math.unit(12, "feet"),
  45428. default: true,
  45429. form: "incubus"
  45430. },
  45431. {
  45432. name: "Demon",
  45433. height: math.unit(36, "feet"),
  45434. default: true,
  45435. form: "demon"
  45436. }
  45437. ],
  45438. {
  45439. "demon": {
  45440. name: "Demon",
  45441. default: true
  45442. },
  45443. "incubus": {
  45444. name: "Incubus",
  45445. },
  45446. "rabbit": {
  45447. name: "Rabbit"
  45448. }
  45449. }
  45450. ))
  45451. characterMakers.push(() => makeCharacter(
  45452. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45453. {
  45454. front: {
  45455. height: math.unit(7 + 5/12, "feet"),
  45456. weight: math.unit(510, "lb"),
  45457. name: "Front",
  45458. image: {
  45459. source: "./media/characters/syrup/front.svg",
  45460. extra: 932/916,
  45461. bottom: 26/958
  45462. }
  45463. },
  45464. },
  45465. [
  45466. {
  45467. name: "Normal",
  45468. height: math.unit(7 + 5/12, "feet"),
  45469. default: true
  45470. },
  45471. {
  45472. name: "Big",
  45473. height: math.unit(50, "feet")
  45474. },
  45475. {
  45476. name: "Macro",
  45477. height: math.unit(300, "feet")
  45478. },
  45479. {
  45480. name: "Megamacro",
  45481. height: math.unit(1, "mile")
  45482. },
  45483. ]
  45484. ))
  45485. characterMakers.push(() => makeCharacter(
  45486. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45487. {
  45488. front: {
  45489. height: math.unit(6 + 9/12, "feet"),
  45490. name: "Front",
  45491. image: {
  45492. source: "./media/characters/zeimne/front.svg",
  45493. extra: 1969/1806,
  45494. bottom: 53/2022
  45495. }
  45496. },
  45497. },
  45498. [
  45499. {
  45500. name: "Normal",
  45501. height: math.unit(6 + 9/12, "feet"),
  45502. default: true
  45503. },
  45504. {
  45505. name: "Giant",
  45506. height: math.unit(550, "feet")
  45507. },
  45508. {
  45509. name: "Mega",
  45510. height: math.unit(3, "miles")
  45511. },
  45512. {
  45513. name: "Giga",
  45514. height: math.unit(250, "miles")
  45515. },
  45516. {
  45517. name: "Tera",
  45518. height: math.unit(1, "AU")
  45519. },
  45520. ]
  45521. ))
  45522. characterMakers.push(() => makeCharacter(
  45523. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45524. {
  45525. front: {
  45526. height: math.unit(5 + 2/12, "feet"),
  45527. name: "Front",
  45528. image: {
  45529. source: "./media/characters/grar/front.svg",
  45530. extra: 1331/1119,
  45531. bottom: 60/1391
  45532. }
  45533. },
  45534. back: {
  45535. height: math.unit(5 + 2/12, "feet"),
  45536. name: "Back",
  45537. image: {
  45538. source: "./media/characters/grar/back.svg",
  45539. extra: 1385/1169,
  45540. bottom: 23/1408
  45541. }
  45542. },
  45543. },
  45544. [
  45545. {
  45546. name: "Normal",
  45547. height: math.unit(5 + 2/12, "feet"),
  45548. default: true
  45549. },
  45550. ]
  45551. ))
  45552. characterMakers.push(() => makeCharacter(
  45553. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45554. {
  45555. front: {
  45556. height: math.unit(13 + 7/12, "feet"),
  45557. weight: math.unit(2200, "lb"),
  45558. name: "Front",
  45559. image: {
  45560. source: "./media/characters/endraya/front.svg",
  45561. extra: 1289/1215,
  45562. bottom: 50/1339
  45563. }
  45564. },
  45565. nude: {
  45566. height: math.unit(13 + 7/12, "feet"),
  45567. weight: math.unit(2200, "lb"),
  45568. name: "Nude",
  45569. image: {
  45570. source: "./media/characters/endraya/nude.svg",
  45571. extra: 1247/1171,
  45572. bottom: 40/1287
  45573. }
  45574. },
  45575. head: {
  45576. height: math.unit(2.6, "feet"),
  45577. name: "Head",
  45578. image: {
  45579. source: "./media/characters/endraya/head.svg"
  45580. }
  45581. },
  45582. slit: {
  45583. height: math.unit(3.4, "feet"),
  45584. name: "Slit",
  45585. image: {
  45586. source: "./media/characters/endraya/slit.svg"
  45587. }
  45588. },
  45589. },
  45590. [
  45591. {
  45592. name: "Normal",
  45593. height: math.unit(13 + 7/12, "feet"),
  45594. default: true
  45595. },
  45596. {
  45597. name: "Macro",
  45598. height: math.unit(200, "feet")
  45599. },
  45600. ]
  45601. ))
  45602. characterMakers.push(() => makeCharacter(
  45603. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45604. {
  45605. front: {
  45606. height: math.unit(412, "meters"),
  45607. name: "Front",
  45608. image: {
  45609. source: "./media/characters/rodryana/front.svg",
  45610. extra: 2002/1921,
  45611. bottom: 53/2055
  45612. }
  45613. },
  45614. back: {
  45615. height: math.unit(412, "meters"),
  45616. name: "Back",
  45617. image: {
  45618. source: "./media/characters/rodryana/back.svg",
  45619. extra: 1993/1926,
  45620. bottom: 48/2041
  45621. }
  45622. },
  45623. maw: {
  45624. height: math.unit(45, "meters"),
  45625. name: "Maw",
  45626. image: {
  45627. source: "./media/characters/rodryana/maw.svg"
  45628. }
  45629. },
  45630. slit: {
  45631. height: math.unit(72, "meters"),
  45632. name: "Slit",
  45633. image: {
  45634. source: "./media/characters/rodryana/slit.svg"
  45635. }
  45636. },
  45637. },
  45638. [
  45639. {
  45640. name: "Macro",
  45641. height: math.unit(412, "meters"),
  45642. default: true
  45643. },
  45644. ]
  45645. ))
  45646. characterMakers.push(() => makeCharacter(
  45647. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45648. {
  45649. front: {
  45650. height: math.unit(6, "feet"),
  45651. weight: math.unit(1000, "lb"),
  45652. name: "Front",
  45653. image: {
  45654. source: "./media/characters/asaya/front.svg",
  45655. extra: 1460/1200,
  45656. bottom: 71/1531
  45657. }
  45658. },
  45659. },
  45660. [
  45661. {
  45662. name: "Normal",
  45663. height: math.unit(8, "km"),
  45664. default: true
  45665. },
  45666. ]
  45667. ))
  45668. characterMakers.push(() => makeCharacter(
  45669. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45670. {
  45671. front: {
  45672. height: math.unit(3.5, "meters"),
  45673. name: "Front",
  45674. image: {
  45675. source: "./media/characters/sarzu-and-israz/front.svg",
  45676. extra: 1570/1558,
  45677. bottom: 150/1720
  45678. },
  45679. },
  45680. back: {
  45681. height: math.unit(3.5, "meters"),
  45682. name: "Back",
  45683. image: {
  45684. source: "./media/characters/sarzu-and-israz/back.svg",
  45685. extra: 1523/1509,
  45686. bottom: 132/1655
  45687. },
  45688. },
  45689. frontFemale: {
  45690. height: math.unit(3.5, "meters"),
  45691. name: "Front (Female)",
  45692. image: {
  45693. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45694. extra: 1570/1558,
  45695. bottom: 150/1720
  45696. },
  45697. },
  45698. frontHerm: {
  45699. height: math.unit(3.5, "meters"),
  45700. name: "Front (Herm)",
  45701. image: {
  45702. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45703. extra: 1570/1558,
  45704. bottom: 150/1720
  45705. },
  45706. },
  45707. },
  45708. [
  45709. {
  45710. name: "Normal",
  45711. height: math.unit(3.5, "meters"),
  45712. default: true,
  45713. },
  45714. {
  45715. name: "Macro",
  45716. height: math.unit(65.5, "meters"),
  45717. },
  45718. ],
  45719. ))
  45720. characterMakers.push(() => makeCharacter(
  45721. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45722. {
  45723. front: {
  45724. height: math.unit(6, "feet"),
  45725. weight: math.unit(250, "lb"),
  45726. name: "Front",
  45727. image: {
  45728. source: "./media/characters/zenimma/front.svg",
  45729. extra: 1346/1320,
  45730. bottom: 58/1404
  45731. }
  45732. },
  45733. back: {
  45734. height: math.unit(6, "feet"),
  45735. weight: math.unit(250, "lb"),
  45736. name: "Back",
  45737. image: {
  45738. source: "./media/characters/zenimma/back.svg",
  45739. extra: 1324/1308,
  45740. bottom: 44/1368
  45741. }
  45742. },
  45743. dick: {
  45744. height: math.unit(1.44, "feet"),
  45745. name: "Dick",
  45746. image: {
  45747. source: "./media/characters/zenimma/dick.svg"
  45748. }
  45749. },
  45750. },
  45751. [
  45752. {
  45753. name: "Canon Height",
  45754. height: math.unit(66, "miles"),
  45755. default: true
  45756. },
  45757. ]
  45758. ))
  45759. characterMakers.push(() => makeCharacter(
  45760. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45761. {
  45762. nude: {
  45763. height: math.unit(6, "feet"),
  45764. weight: math.unit(150, "lb"),
  45765. name: "Nude",
  45766. image: {
  45767. source: "./media/characters/shavon/nude.svg",
  45768. extra: 1242/1096,
  45769. bottom: 98/1340
  45770. }
  45771. },
  45772. dressed: {
  45773. height: math.unit(6, "feet"),
  45774. weight: math.unit(150, "lb"),
  45775. name: "Dressed",
  45776. image: {
  45777. source: "./media/characters/shavon/dressed.svg",
  45778. extra: 1242/1096,
  45779. bottom: 98/1340
  45780. }
  45781. },
  45782. },
  45783. [
  45784. {
  45785. name: "Macro",
  45786. height: math.unit(255, "feet"),
  45787. default: true
  45788. },
  45789. ]
  45790. ))
  45791. characterMakers.push(() => makeCharacter(
  45792. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45793. {
  45794. front: {
  45795. height: math.unit(6, "feet"),
  45796. name: "Front",
  45797. image: {
  45798. source: "./media/characters/steph/front.svg",
  45799. extra: 1430/1330,
  45800. bottom: 54/1484
  45801. }
  45802. },
  45803. },
  45804. [
  45805. {
  45806. name: "Normal",
  45807. height: math.unit(6, "feet"),
  45808. default: true
  45809. },
  45810. ]
  45811. ))
  45812. characterMakers.push(() => makeCharacter(
  45813. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45814. {
  45815. front: {
  45816. height: math.unit(9, "feet"),
  45817. weight: math.unit(400, "lb"),
  45818. name: "Front",
  45819. image: {
  45820. source: "./media/characters/kil'aman/front.svg",
  45821. extra: 1210/1159,
  45822. bottom: 109/1319
  45823. }
  45824. },
  45825. head: {
  45826. height: math.unit(2.14, "feet"),
  45827. name: "Head",
  45828. image: {
  45829. source: "./media/characters/kil'aman/head.svg"
  45830. }
  45831. },
  45832. maw: {
  45833. height: math.unit(1.21, "feet"),
  45834. name: "Maw",
  45835. image: {
  45836. source: "./media/characters/kil'aman/maw.svg"
  45837. }
  45838. },
  45839. foot: {
  45840. height: math.unit(1.7, "feet"),
  45841. name: "Foot",
  45842. image: {
  45843. source: "./media/characters/kil'aman/foot.svg"
  45844. }
  45845. },
  45846. dick: {
  45847. height: math.unit(2.1, "feet"),
  45848. name: "Dick",
  45849. image: {
  45850. source: "./media/characters/kil'aman/dick.svg"
  45851. }
  45852. },
  45853. },
  45854. [
  45855. {
  45856. name: "Normal",
  45857. height: math.unit(9, "feet")
  45858. },
  45859. {
  45860. name: "Canon Height",
  45861. height: math.unit(10, "miles"),
  45862. default: true
  45863. },
  45864. {
  45865. name: "Maximum",
  45866. height: math.unit(6e9, "miles")
  45867. },
  45868. ]
  45869. ))
  45870. characterMakers.push(() => makeCharacter(
  45871. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45872. {
  45873. front: {
  45874. height: math.unit(90, "feet"),
  45875. weight: math.unit(675000, "lb"),
  45876. name: "Front",
  45877. image: {
  45878. source: "./media/characters/qadan/front.svg",
  45879. extra: 1012/1004,
  45880. bottom: 78/1090
  45881. }
  45882. },
  45883. back: {
  45884. height: math.unit(90, "feet"),
  45885. weight: math.unit(675000, "lb"),
  45886. name: "Back",
  45887. image: {
  45888. source: "./media/characters/qadan/back.svg",
  45889. extra: 1042/1031,
  45890. bottom: 55/1097
  45891. }
  45892. },
  45893. armored: {
  45894. height: math.unit(90, "feet"),
  45895. weight: math.unit(675000, "lb"),
  45896. name: "Armored",
  45897. image: {
  45898. source: "./media/characters/qadan/armored.svg",
  45899. extra: 1047/1037,
  45900. bottom: 48/1095
  45901. }
  45902. },
  45903. },
  45904. [
  45905. {
  45906. name: "Normal",
  45907. height: math.unit(90, "feet"),
  45908. default: true
  45909. },
  45910. ]
  45911. ))
  45912. characterMakers.push(() => makeCharacter(
  45913. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  45914. {
  45915. front: {
  45916. height: math.unit(6, "feet"),
  45917. weight: math.unit(225, "lb"),
  45918. name: "Front",
  45919. image: {
  45920. source: "./media/characters/brooke/front.svg",
  45921. extra: 1050/1010,
  45922. bottom: 66/1116
  45923. }
  45924. },
  45925. back: {
  45926. height: math.unit(6, "feet"),
  45927. weight: math.unit(225, "lb"),
  45928. name: "Back",
  45929. image: {
  45930. source: "./media/characters/brooke/back.svg",
  45931. extra: 1053/1013,
  45932. bottom: 41/1094
  45933. }
  45934. },
  45935. dressed: {
  45936. height: math.unit(6, "feet"),
  45937. weight: math.unit(225, "lb"),
  45938. name: "Dressed",
  45939. image: {
  45940. source: "./media/characters/brooke/dressed.svg",
  45941. extra: 1050/1010,
  45942. bottom: 66/1116
  45943. }
  45944. },
  45945. },
  45946. [
  45947. {
  45948. name: "Canon Height",
  45949. height: math.unit(500, "miles"),
  45950. default: true
  45951. },
  45952. ]
  45953. ))
  45954. characterMakers.push(() => makeCharacter(
  45955. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  45956. {
  45957. front: {
  45958. height: math.unit(6 + 2/12, "feet"),
  45959. weight: math.unit(210, "lb"),
  45960. name: "Front",
  45961. image: {
  45962. source: "./media/characters/wubs/front.svg",
  45963. extra: 1345/1325,
  45964. bottom: 70/1415
  45965. }
  45966. },
  45967. back: {
  45968. height: math.unit(6 + 2/12, "feet"),
  45969. weight: math.unit(210, "lb"),
  45970. name: "Back",
  45971. image: {
  45972. source: "./media/characters/wubs/back.svg",
  45973. extra: 1296/1275,
  45974. bottom: 58/1354
  45975. }
  45976. },
  45977. },
  45978. [
  45979. {
  45980. name: "Normal",
  45981. height: math.unit(6 + 2/12, "feet"),
  45982. default: true
  45983. },
  45984. {
  45985. name: "Macro",
  45986. height: math.unit(1000, "feet")
  45987. },
  45988. {
  45989. name: "Megamacro",
  45990. height: math.unit(1, "mile")
  45991. },
  45992. ]
  45993. ))
  45994. characterMakers.push(() => makeCharacter(
  45995. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  45996. {
  45997. front: {
  45998. height: math.unit(4, "feet"),
  45999. weight: math.unit(120, "lb"),
  46000. name: "Front",
  46001. image: {
  46002. source: "./media/characters/blue/front.svg",
  46003. extra: 1636/1525,
  46004. bottom: 43/1679
  46005. }
  46006. },
  46007. back: {
  46008. height: math.unit(4, "feet"),
  46009. weight: math.unit(120, "lb"),
  46010. name: "Back",
  46011. image: {
  46012. source: "./media/characters/blue/back.svg",
  46013. extra: 1660/1560,
  46014. bottom: 57/1717
  46015. }
  46016. },
  46017. paws: {
  46018. height: math.unit(0.826, "feet"),
  46019. name: "Paws",
  46020. image: {
  46021. source: "./media/characters/blue/paws.svg"
  46022. }
  46023. },
  46024. },
  46025. [
  46026. {
  46027. name: "Micro",
  46028. height: math.unit(3, "inches")
  46029. },
  46030. {
  46031. name: "Normal",
  46032. height: math.unit(4, "feet"),
  46033. default: true
  46034. },
  46035. {
  46036. name: "Femenine Form",
  46037. height: math.unit(14, "feet")
  46038. },
  46039. {
  46040. name: "Werebat Form",
  46041. height: math.unit(18, "feet")
  46042. },
  46043. ]
  46044. ))
  46045. characterMakers.push(() => makeCharacter(
  46046. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46047. {
  46048. female: {
  46049. height: math.unit(7 + 4/12, "feet"),
  46050. weight: math.unit(243, "lb"),
  46051. name: "Female",
  46052. image: {
  46053. source: "./media/characters/kaya/female.svg",
  46054. extra: 975/898,
  46055. bottom: 34/1009
  46056. }
  46057. },
  46058. herm: {
  46059. height: math.unit(7 + 4/12, "feet"),
  46060. weight: math.unit(243, "lb"),
  46061. name: "Herm",
  46062. image: {
  46063. source: "./media/characters/kaya/herm.svg",
  46064. extra: 975/898,
  46065. bottom: 34/1009
  46066. }
  46067. },
  46068. },
  46069. [
  46070. {
  46071. name: "Normal",
  46072. height: math.unit(7 + 4/12, "feet"),
  46073. default: true
  46074. },
  46075. ]
  46076. ))
  46077. characterMakers.push(() => makeCharacter(
  46078. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46079. {
  46080. female: {
  46081. height: math.unit(9 + 4/12, "feet"),
  46082. weight: math.unit(398, "lb"),
  46083. name: "Female",
  46084. image: {
  46085. source: "./media/characters/kassandra/female.svg",
  46086. extra: 908/839,
  46087. bottom: 61/969
  46088. }
  46089. },
  46090. intersex: {
  46091. height: math.unit(9 + 4/12, "feet"),
  46092. weight: math.unit(398, "lb"),
  46093. name: "Intersex",
  46094. image: {
  46095. source: "./media/characters/kassandra/intersex.svg",
  46096. extra: 908/839,
  46097. bottom: 61/969
  46098. }
  46099. },
  46100. },
  46101. [
  46102. {
  46103. name: "Normal",
  46104. height: math.unit(9 + 4/12, "feet"),
  46105. default: true
  46106. },
  46107. ]
  46108. ))
  46109. characterMakers.push(() => makeCharacter(
  46110. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46111. {
  46112. front: {
  46113. height: math.unit(3, "meters"),
  46114. name: "Front",
  46115. image: {
  46116. source: "./media/characters/amy/front.svg",
  46117. extra: 1380/1343,
  46118. bottom: 70/1450
  46119. }
  46120. },
  46121. back: {
  46122. height: math.unit(3, "meters"),
  46123. name: "Back",
  46124. image: {
  46125. source: "./media/characters/amy/back.svg",
  46126. extra: 1380/1347,
  46127. bottom: 66/1446
  46128. }
  46129. },
  46130. },
  46131. [
  46132. {
  46133. name: "Normal",
  46134. height: math.unit(3, "meters"),
  46135. default: true
  46136. },
  46137. ]
  46138. ))
  46139. characterMakers.push(() => makeCharacter(
  46140. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46141. {
  46142. side: {
  46143. height: math.unit(47, "cm"),
  46144. weight: math.unit(10.8, "kg"),
  46145. name: "Side",
  46146. image: {
  46147. source: "./media/characters/alphaschakal/side.svg",
  46148. extra: 1058/568,
  46149. bottom: 62/1120
  46150. }
  46151. },
  46152. back: {
  46153. height: math.unit(78, "cm"),
  46154. weight: math.unit(10.8, "kg"),
  46155. name: "Back",
  46156. image: {
  46157. source: "./media/characters/alphaschakal/back.svg",
  46158. extra: 1102/942,
  46159. bottom: 185/1287
  46160. }
  46161. },
  46162. head: {
  46163. height: math.unit(28, "cm"),
  46164. name: "Head",
  46165. image: {
  46166. source: "./media/characters/alphaschakal/head.svg",
  46167. extra: 696/508,
  46168. bottom: 0/696
  46169. }
  46170. },
  46171. paw: {
  46172. height: math.unit(16, "cm"),
  46173. name: "Paw",
  46174. image: {
  46175. source: "./media/characters/alphaschakal/paw.svg"
  46176. }
  46177. },
  46178. },
  46179. [
  46180. {
  46181. name: "Normal",
  46182. height: math.unit(47, "cm"),
  46183. default: true
  46184. },
  46185. {
  46186. name: "Macro",
  46187. height: math.unit(340, "cm")
  46188. },
  46189. ]
  46190. ))
  46191. characterMakers.push(() => makeCharacter(
  46192. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46193. {
  46194. front: {
  46195. height: math.unit(36, "earths"),
  46196. name: "Front",
  46197. image: {
  46198. source: "./media/characters/ecobyss/front.svg",
  46199. extra: 1282/1215,
  46200. bottom: 11/1293
  46201. }
  46202. },
  46203. back: {
  46204. height: math.unit(36, "earths"),
  46205. name: "Back",
  46206. image: {
  46207. source: "./media/characters/ecobyss/back.svg",
  46208. extra: 1291/1222,
  46209. bottom: 8/1299
  46210. }
  46211. },
  46212. },
  46213. [
  46214. {
  46215. name: "Normal",
  46216. height: math.unit(36, "earths"),
  46217. default: true
  46218. },
  46219. ]
  46220. ))
  46221. characterMakers.push(() => makeCharacter(
  46222. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46223. {
  46224. front: {
  46225. height: math.unit(12, "feet"),
  46226. name: "Front",
  46227. image: {
  46228. source: "./media/characters/vasuk/front.svg",
  46229. extra: 1326/1207,
  46230. bottom: 64/1390
  46231. }
  46232. },
  46233. },
  46234. [
  46235. {
  46236. name: "Normal",
  46237. height: math.unit(12, "feet"),
  46238. default: true
  46239. },
  46240. ]
  46241. ))
  46242. characterMakers.push(() => makeCharacter(
  46243. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46244. {
  46245. side: {
  46246. height: math.unit(100, "feet"),
  46247. name: "Side",
  46248. image: {
  46249. source: "./media/characters/linneaus/side.svg",
  46250. extra: 987/807,
  46251. bottom: 47/1034
  46252. }
  46253. },
  46254. },
  46255. [
  46256. {
  46257. name: "Macro",
  46258. height: math.unit(100, "feet"),
  46259. default: true
  46260. },
  46261. ]
  46262. ))
  46263. characterMakers.push(() => makeCharacter(
  46264. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46265. {
  46266. front: {
  46267. height: math.unit(8, "feet"),
  46268. weight: math.unit(1200, "lb"),
  46269. name: "Front",
  46270. image: {
  46271. source: "./media/characters/nyterious-daligdig/front.svg",
  46272. extra: 1284/1094,
  46273. bottom: 84/1368
  46274. }
  46275. },
  46276. back: {
  46277. height: math.unit(8, "feet"),
  46278. weight: math.unit(1200, "lb"),
  46279. name: "Back",
  46280. image: {
  46281. source: "./media/characters/nyterious-daligdig/back.svg",
  46282. extra: 1301/1121,
  46283. bottom: 129/1430
  46284. }
  46285. },
  46286. mouth: {
  46287. height: math.unit(1.464, "feet"),
  46288. name: "Mouth",
  46289. image: {
  46290. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46291. }
  46292. },
  46293. },
  46294. [
  46295. {
  46296. name: "Small",
  46297. height: math.unit(8, "feet"),
  46298. default: true
  46299. },
  46300. {
  46301. name: "Normal",
  46302. height: math.unit(15, "feet")
  46303. },
  46304. {
  46305. name: "Macro",
  46306. height: math.unit(90, "feet")
  46307. },
  46308. ]
  46309. ))
  46310. characterMakers.push(() => makeCharacter(
  46311. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46312. {
  46313. front: {
  46314. height: math.unit(7 + 4/12, "feet"),
  46315. weight: math.unit(252, "lb"),
  46316. name: "Front",
  46317. image: {
  46318. source: "./media/characters/bandel/front.svg",
  46319. extra: 1946/1775,
  46320. bottom: 26/1972
  46321. }
  46322. },
  46323. back: {
  46324. height: math.unit(7 + 4/12, "feet"),
  46325. weight: math.unit(252, "lb"),
  46326. name: "Back",
  46327. image: {
  46328. source: "./media/characters/bandel/back.svg",
  46329. extra: 1940/1770,
  46330. bottom: 25/1965
  46331. }
  46332. },
  46333. maw: {
  46334. height: math.unit(2.15, "feet"),
  46335. name: "Maw",
  46336. image: {
  46337. source: "./media/characters/bandel/maw.svg"
  46338. }
  46339. },
  46340. stomach: {
  46341. height: math.unit(1.95, "feet"),
  46342. name: "Stomach",
  46343. image: {
  46344. source: "./media/characters/bandel/stomach.svg"
  46345. }
  46346. },
  46347. },
  46348. [
  46349. {
  46350. name: "Normal",
  46351. height: math.unit(7 + 4/12, "feet"),
  46352. default: true
  46353. },
  46354. ]
  46355. ))
  46356. characterMakers.push(() => makeCharacter(
  46357. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46358. {
  46359. front: {
  46360. height: math.unit(10 + 5/12, "feet"),
  46361. weight: math.unit(773.5, "kg"),
  46362. name: "Front",
  46363. image: {
  46364. source: "./media/characters/zed/front.svg",
  46365. extra: 987/941,
  46366. bottom: 52/1039
  46367. }
  46368. },
  46369. },
  46370. [
  46371. {
  46372. name: "Short",
  46373. height: math.unit(5 + 4/12, "feet")
  46374. },
  46375. {
  46376. name: "Average",
  46377. height: math.unit(10 + 5/12, "feet"),
  46378. default: true
  46379. },
  46380. {
  46381. name: "Mini-Macro",
  46382. height: math.unit(24 + 9/12, "feet")
  46383. },
  46384. {
  46385. name: "Macro",
  46386. height: math.unit(249, "feet")
  46387. },
  46388. {
  46389. name: "Mega-Macro",
  46390. height: math.unit(12490, "feet")
  46391. },
  46392. {
  46393. name: "Giga-Macro",
  46394. height: math.unit(24.9, "miles")
  46395. },
  46396. {
  46397. name: "Tera-Macro",
  46398. height: math.unit(24900, "miles")
  46399. },
  46400. {
  46401. name: "Cosmic Scale",
  46402. height: math.unit(38.9, "lightyears")
  46403. },
  46404. {
  46405. name: "Universal Scale",
  46406. height: math.unit(138e12, "lightyears")
  46407. },
  46408. ]
  46409. ))
  46410. characterMakers.push(() => makeCharacter(
  46411. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46412. {
  46413. front: {
  46414. height: math.unit(1561, "inches"),
  46415. name: "Front",
  46416. image: {
  46417. source: "./media/characters/ivan/front.svg",
  46418. extra: 1126/1071,
  46419. bottom: 26/1152
  46420. }
  46421. },
  46422. back: {
  46423. height: math.unit(1561, "inches"),
  46424. name: "Back",
  46425. image: {
  46426. source: "./media/characters/ivan/back.svg",
  46427. extra: 1134/1079,
  46428. bottom: 30/1164
  46429. }
  46430. },
  46431. },
  46432. [
  46433. {
  46434. name: "Normal",
  46435. height: math.unit(1561, "inches"),
  46436. default: true
  46437. },
  46438. ]
  46439. ))
  46440. characterMakers.push(() => makeCharacter(
  46441. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46442. {
  46443. front: {
  46444. height: math.unit(5 + 7/12, "feet"),
  46445. weight: math.unit(150, "lb"),
  46446. name: "Front",
  46447. image: {
  46448. source: "./media/characters/robin-arctic-hare/front.svg",
  46449. extra: 1148/974,
  46450. bottom: 20/1168
  46451. }
  46452. },
  46453. },
  46454. [
  46455. {
  46456. name: "Normal",
  46457. height: math.unit(5 + 7/12, "feet"),
  46458. default: true
  46459. },
  46460. ]
  46461. ))
  46462. characterMakers.push(() => makeCharacter(
  46463. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46464. {
  46465. side: {
  46466. height: math.unit(5, "feet"),
  46467. name: "Side",
  46468. image: {
  46469. source: "./media/characters/birch/side.svg",
  46470. extra: 985/796,
  46471. bottom: 111/1096
  46472. }
  46473. },
  46474. },
  46475. [
  46476. {
  46477. name: "Normal",
  46478. height: math.unit(5, "feet"),
  46479. default: true
  46480. },
  46481. ]
  46482. ))
  46483. characterMakers.push(() => makeCharacter(
  46484. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46485. {
  46486. front: {
  46487. height: math.unit(4, "feet"),
  46488. name: "Front",
  46489. image: {
  46490. source: "./media/characters/rasp/front.svg",
  46491. extra: 561/478,
  46492. bottom: 74/635
  46493. }
  46494. },
  46495. },
  46496. [
  46497. {
  46498. name: "Normal",
  46499. height: math.unit(4, "feet"),
  46500. default: true
  46501. },
  46502. ]
  46503. ))
  46504. characterMakers.push(() => makeCharacter(
  46505. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  46506. {
  46507. front: {
  46508. height: math.unit(4 + 6/12, "feet"),
  46509. name: "Front",
  46510. image: {
  46511. source: "./media/characters/agatha/front.svg",
  46512. extra: 947/933,
  46513. bottom: 42/989
  46514. }
  46515. },
  46516. back: {
  46517. height: math.unit(4 + 6/12, "feet"),
  46518. name: "Back",
  46519. image: {
  46520. source: "./media/characters/agatha/back.svg",
  46521. extra: 935/922,
  46522. bottom: 48/983
  46523. }
  46524. },
  46525. },
  46526. [
  46527. {
  46528. name: "Normal",
  46529. height: math.unit(4 + 6 /12, "feet"),
  46530. default: true
  46531. },
  46532. {
  46533. name: "Max Size",
  46534. height: math.unit(500, "feet")
  46535. },
  46536. ]
  46537. ))
  46538. characterMakers.push(() => makeCharacter(
  46539. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  46540. {
  46541. side: {
  46542. height: math.unit(30, "feet"),
  46543. name: "Side",
  46544. image: {
  46545. source: "./media/characters/roggy/side.svg",
  46546. extra: 909/643,
  46547. bottom: 63/972
  46548. }
  46549. },
  46550. lounging: {
  46551. height: math.unit(20, "feet"),
  46552. name: "Lounging",
  46553. image: {
  46554. source: "./media/characters/roggy/lounging.svg",
  46555. extra: 643/479,
  46556. bottom: 145/788
  46557. }
  46558. },
  46559. handpaw: {
  46560. height: math.unit(13.1, "feet"),
  46561. name: "Handpaw",
  46562. image: {
  46563. source: "./media/characters/roggy/handpaw.svg"
  46564. }
  46565. },
  46566. footpaw: {
  46567. height: math.unit(15.8, "feet"),
  46568. name: "Footpaw",
  46569. image: {
  46570. source: "./media/characters/roggy/footpaw.svg"
  46571. }
  46572. },
  46573. },
  46574. [
  46575. {
  46576. name: "Menacing",
  46577. height: math.unit(30, "feet"),
  46578. default: true
  46579. },
  46580. ]
  46581. ))
  46582. //characters
  46583. function makeCharacters() {
  46584. const results = [];
  46585. characterMakers.forEach(character => {
  46586. results.push(character());
  46587. });
  46588. return results;
  46589. }