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

48197 строки
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. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. }
  1888. //species
  1889. function getSpeciesInfo(speciesList) {
  1890. let result = new Set();
  1891. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1892. result.add(entry)
  1893. });
  1894. return Array.from(result);
  1895. };
  1896. function getSpeciesInfoHelper(species) {
  1897. if (!speciesData[species]) {
  1898. console.warn(species + " doesn't exist");
  1899. return [];
  1900. }
  1901. if (speciesData[species].parents) {
  1902. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1903. } else {
  1904. return [species];
  1905. }
  1906. }
  1907. characterMakers.push(() => makeCharacter(
  1908. {
  1909. name: "Fen",
  1910. species: ["crux"],
  1911. description: {
  1912. title: "Bio",
  1913. text: "Very furry. Sheds on everything."
  1914. },
  1915. tags: [
  1916. "anthro",
  1917. "goo"
  1918. ]
  1919. },
  1920. {
  1921. front: {
  1922. height: math.unit(12, "feet"),
  1923. weight: math.unit(2400, "lb"),
  1924. name: "Front",
  1925. image: {
  1926. source: "./media/characters/fen/front.svg",
  1927. extra: 1804/1562,
  1928. bottom: 205/2009
  1929. }
  1930. },
  1931. diving: {
  1932. height: math.unit(4.9, "meters"),
  1933. weight: math.unit(2400, "lb"),
  1934. name: "Diving",
  1935. image: {
  1936. source: "./media/characters/fen/diving.svg"
  1937. }
  1938. },
  1939. goo: {
  1940. height: math.unit(12, "feet"),
  1941. weight: math.unit(3000, "lb"),
  1942. capacity: math.unit(6, "people"),
  1943. name: "Goo",
  1944. image: {
  1945. source: "./media/characters/fen/goo.svg",
  1946. extra: 1307/1071,
  1947. bottom: 134/1441
  1948. }
  1949. },
  1950. maw: {
  1951. height: math.unit(5.03, "feet"),
  1952. name: "Maw",
  1953. image: {
  1954. source: "./media/characters/fen/maw.svg"
  1955. }
  1956. },
  1957. gooCeiling: {
  1958. height: math.unit(6.6, "feet"),
  1959. weight: math.unit(3000, "lb"),
  1960. capacity: math.unit(6, "people"),
  1961. name: "Goo (Ceiling)",
  1962. image: {
  1963. source: "./media/characters/fen/goo-ceiling.svg"
  1964. }
  1965. },
  1966. back: {
  1967. height: math.unit(12, "feet"),
  1968. weight: math.unit(2400, "lb"),
  1969. name: "Back",
  1970. image: {
  1971. source: "./media/characters/fen/back.svg",
  1972. },
  1973. info: {
  1974. description: {
  1975. mode: "append",
  1976. text: "\n\nHe is not currently looking at you."
  1977. }
  1978. }
  1979. },
  1980. full: {
  1981. height: math.unit(1.6, "meter"),
  1982. weight: math.unit(3200, "lb"),
  1983. name: "Full",
  1984. image: {
  1985. source: "./media/characters/fen/full.svg",
  1986. extra: 1133/859,
  1987. bottom: 145/1278
  1988. },
  1989. info: {
  1990. description: {
  1991. mode: "append",
  1992. text: "\n\nMunch."
  1993. }
  1994. }
  1995. },
  1996. gooLounging: {
  1997. height: math.unit(4.53, "feet"),
  1998. weight: math.unit(3000, "lb"),
  1999. capacity: math.unit(6, "people"),
  2000. name: "Goo (Lounging)",
  2001. image: {
  2002. source: "./media/characters/fen/goo.svg",
  2003. bottom: 116 / 613
  2004. }
  2005. },
  2006. lounging: {
  2007. height: math.unit(10.52, "feet"),
  2008. weight: math.unit(2400, "lb"),
  2009. name: "Lounging",
  2010. image: {
  2011. source: "./media/characters/fen/lounging.svg"
  2012. }
  2013. },
  2014. },
  2015. [
  2016. {
  2017. name: "Small",
  2018. height: math.unit(2.2428, "meter")
  2019. },
  2020. {
  2021. name: "Normal",
  2022. height: math.unit(12, "feet"),
  2023. default: true,
  2024. },
  2025. {
  2026. name: "Big",
  2027. height: math.unit(20, "feet")
  2028. },
  2029. {
  2030. name: "Minimacro",
  2031. height: math.unit(40, "feet"),
  2032. info: {
  2033. description: {
  2034. mode: "append",
  2035. text: "\n\nTOO DAMN BIG"
  2036. }
  2037. }
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(100, "feet"),
  2042. info: {
  2043. description: {
  2044. mode: "append",
  2045. text: "\n\nTOO DAMN BIG"
  2046. }
  2047. }
  2048. },
  2049. {
  2050. name: "Megamacro",
  2051. height: math.unit(2, "miles")
  2052. },
  2053. {
  2054. name: "Gigamacro",
  2055. height: math.unit(10, "earths")
  2056. },
  2057. ]
  2058. ))
  2059. characterMakers.push(() => makeCharacter(
  2060. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2061. {
  2062. front: {
  2063. height: math.unit(183, "cm"),
  2064. weight: math.unit(80, "kg"),
  2065. name: "Front",
  2066. image: {
  2067. source: "./media/characters/sofia-fluttertail/front.svg",
  2068. bottom: 0.01,
  2069. extra: 2154 / 2081
  2070. }
  2071. },
  2072. frontAlt: {
  2073. height: math.unit(183, "cm"),
  2074. weight: math.unit(80, "kg"),
  2075. name: "Front (alt)",
  2076. image: {
  2077. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2078. }
  2079. },
  2080. back: {
  2081. height: math.unit(183, "cm"),
  2082. weight: math.unit(80, "kg"),
  2083. name: "Back",
  2084. image: {
  2085. source: "./media/characters/sofia-fluttertail/back.svg"
  2086. }
  2087. },
  2088. kneeling: {
  2089. height: math.unit(125, "cm"),
  2090. weight: math.unit(80, "kg"),
  2091. name: "Kneeling",
  2092. image: {
  2093. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2094. extra: 1033 / 977,
  2095. bottom: 23.7 / 1057
  2096. }
  2097. },
  2098. maw: {
  2099. height: math.unit(183 / 5, "cm"),
  2100. name: "Maw",
  2101. image: {
  2102. source: "./media/characters/sofia-fluttertail/maw.svg"
  2103. }
  2104. },
  2105. mawcloseup: {
  2106. height: math.unit(183 / 5 * 0.41, "cm"),
  2107. name: "Maw (Closeup)",
  2108. image: {
  2109. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2110. }
  2111. },
  2112. paws: {
  2113. height: math.unit(1.17, "feet"),
  2114. name: "Paws",
  2115. image: {
  2116. source: "./media/characters/sofia-fluttertail/paws.svg",
  2117. extra: 851 / 851,
  2118. bottom: 17 / 868
  2119. }
  2120. },
  2121. },
  2122. [
  2123. {
  2124. name: "Normal",
  2125. height: math.unit(1.83, "meter")
  2126. },
  2127. {
  2128. name: "Size Thief",
  2129. height: math.unit(18, "feet")
  2130. },
  2131. {
  2132. name: "50 Foot Collie",
  2133. height: math.unit(50, "feet")
  2134. },
  2135. {
  2136. name: "Macro",
  2137. height: math.unit(96, "feet"),
  2138. default: true
  2139. },
  2140. {
  2141. name: "Megamerger",
  2142. height: math.unit(650, "feet")
  2143. },
  2144. ]
  2145. ))
  2146. characterMakers.push(() => makeCharacter(
  2147. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2148. {
  2149. front: {
  2150. height: math.unit(7, "feet"),
  2151. weight: math.unit(100, "kg"),
  2152. name: "Front",
  2153. image: {
  2154. source: "./media/characters/march/front.svg",
  2155. extra: 1992/1851,
  2156. bottom: 39/2031
  2157. }
  2158. },
  2159. foot: {
  2160. height: math.unit(0.9, "feet"),
  2161. name: "Foot",
  2162. image: {
  2163. source: "./media/characters/march/foot.svg"
  2164. }
  2165. },
  2166. },
  2167. [
  2168. {
  2169. name: "Normal",
  2170. height: math.unit(7.9, "feet")
  2171. },
  2172. {
  2173. name: "Macro",
  2174. height: math.unit(220, "meters")
  2175. },
  2176. {
  2177. name: "Megamacro",
  2178. height: math.unit(2.98, "km"),
  2179. default: true
  2180. },
  2181. {
  2182. name: "Gigamacro",
  2183. height: math.unit(15963, "km")
  2184. },
  2185. {
  2186. name: "Teramacro",
  2187. height: math.unit(2980000000, "km")
  2188. },
  2189. {
  2190. name: "Examacro",
  2191. height: math.unit(250, "parsecs")
  2192. },
  2193. ]
  2194. ))
  2195. characterMakers.push(() => makeCharacter(
  2196. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2197. {
  2198. front: {
  2199. height: math.unit(6, "feet"),
  2200. weight: math.unit(60, "kg"),
  2201. name: "Front",
  2202. image: {
  2203. source: "./media/characters/noir/front.svg",
  2204. extra: 1,
  2205. bottom: 0.032
  2206. }
  2207. },
  2208. },
  2209. [
  2210. {
  2211. name: "Normal",
  2212. height: math.unit(6.6, "feet")
  2213. },
  2214. {
  2215. name: "Macro",
  2216. height: math.unit(500, "feet")
  2217. },
  2218. {
  2219. name: "Megamacro",
  2220. height: math.unit(2.5, "km"),
  2221. default: true
  2222. },
  2223. {
  2224. name: "Gigamacro",
  2225. height: math.unit(22500, "km")
  2226. },
  2227. {
  2228. name: "Teramacro",
  2229. height: math.unit(2500000000, "km")
  2230. },
  2231. {
  2232. name: "Examacro",
  2233. height: math.unit(200, "parsecs")
  2234. },
  2235. ]
  2236. ))
  2237. characterMakers.push(() => makeCharacter(
  2238. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2239. {
  2240. front: {
  2241. height: math.unit(7, "feet"),
  2242. weight: math.unit(100, "kg"),
  2243. name: "Front",
  2244. image: {
  2245. source: "./media/characters/okuri/front.svg",
  2246. extra: 1,
  2247. bottom: 0.037
  2248. }
  2249. },
  2250. back: {
  2251. height: math.unit(7, "feet"),
  2252. weight: math.unit(100, "kg"),
  2253. name: "Back",
  2254. image: {
  2255. source: "./media/characters/okuri/back.svg",
  2256. extra: 1,
  2257. bottom: 0.007
  2258. }
  2259. },
  2260. },
  2261. [
  2262. {
  2263. name: "Megamacro",
  2264. height: math.unit(100, "miles"),
  2265. default: true
  2266. },
  2267. ]
  2268. ))
  2269. characterMakers.push(() => makeCharacter(
  2270. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2271. {
  2272. front: {
  2273. height: math.unit(7, "feet"),
  2274. weight: math.unit(100, "kg"),
  2275. name: "Front",
  2276. image: {
  2277. source: "./media/characters/manny/front.svg",
  2278. extra: 1,
  2279. bottom: 0.06
  2280. }
  2281. },
  2282. back: {
  2283. height: math.unit(7, "feet"),
  2284. weight: math.unit(100, "kg"),
  2285. name: "Back",
  2286. image: {
  2287. source: "./media/characters/manny/back.svg",
  2288. extra: 1,
  2289. bottom: 0.014
  2290. }
  2291. },
  2292. },
  2293. [
  2294. {
  2295. name: "Normal",
  2296. height: math.unit(7, "feet"),
  2297. },
  2298. {
  2299. name: "Macro",
  2300. height: math.unit(78, "feet"),
  2301. default: true
  2302. },
  2303. {
  2304. name: "Macro+",
  2305. height: math.unit(300, "meters")
  2306. },
  2307. {
  2308. name: "Macro++",
  2309. height: math.unit(2400, "meters")
  2310. },
  2311. {
  2312. name: "Megamacro",
  2313. height: math.unit(5167, "meters")
  2314. },
  2315. {
  2316. name: "Gigamacro",
  2317. height: math.unit(41769, "miles")
  2318. },
  2319. ]
  2320. ))
  2321. characterMakers.push(() => makeCharacter(
  2322. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2323. {
  2324. front: {
  2325. height: math.unit(7, "feet"),
  2326. weight: math.unit(100, "kg"),
  2327. name: "Front",
  2328. image: {
  2329. source: "./media/characters/adake/front-1.svg"
  2330. }
  2331. },
  2332. frontAlt: {
  2333. height: math.unit(7, "feet"),
  2334. weight: math.unit(100, "kg"),
  2335. name: "Front (Alt)",
  2336. image: {
  2337. source: "./media/characters/adake/front-2.svg",
  2338. extra: 1,
  2339. bottom: 0.01
  2340. }
  2341. },
  2342. back: {
  2343. height: math.unit(7, "feet"),
  2344. weight: math.unit(100, "kg"),
  2345. name: "Back",
  2346. image: {
  2347. source: "./media/characters/adake/back.svg",
  2348. }
  2349. },
  2350. kneel: {
  2351. height: math.unit(5.385, "feet"),
  2352. weight: math.unit(100, "kg"),
  2353. name: "Kneeling",
  2354. image: {
  2355. source: "./media/characters/adake/kneel.svg",
  2356. bottom: 0.052
  2357. }
  2358. },
  2359. },
  2360. [
  2361. {
  2362. name: "Normal",
  2363. height: math.unit(7, "feet"),
  2364. },
  2365. {
  2366. name: "Macro",
  2367. height: math.unit(78, "feet"),
  2368. default: true
  2369. },
  2370. {
  2371. name: "Macro+",
  2372. height: math.unit(300, "meters")
  2373. },
  2374. {
  2375. name: "Macro++",
  2376. height: math.unit(2400, "meters")
  2377. },
  2378. {
  2379. name: "Megamacro",
  2380. height: math.unit(5167, "meters")
  2381. },
  2382. {
  2383. name: "Gigamacro",
  2384. height: math.unit(41769, "miles")
  2385. },
  2386. ]
  2387. ))
  2388. characterMakers.push(() => makeCharacter(
  2389. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2390. {
  2391. front: {
  2392. height: math.unit(1.65, "meters"),
  2393. weight: math.unit(50, "kg"),
  2394. name: "Front",
  2395. image: {
  2396. source: "./media/characters/elijah/front.svg",
  2397. extra: 858 / 830,
  2398. bottom: 95.5 / 953.8559
  2399. }
  2400. },
  2401. back: {
  2402. height: math.unit(1.65, "meters"),
  2403. weight: math.unit(50, "kg"),
  2404. name: "Back",
  2405. image: {
  2406. source: "./media/characters/elijah/back.svg",
  2407. extra: 895 / 850,
  2408. bottom: 5.3 / 897.956
  2409. }
  2410. },
  2411. frontNsfw: {
  2412. height: math.unit(1.65, "meters"),
  2413. weight: math.unit(50, "kg"),
  2414. name: "Front (NSFW)",
  2415. image: {
  2416. source: "./media/characters/elijah/front-nsfw.svg",
  2417. extra: 858 / 830,
  2418. bottom: 95.5 / 953.8559
  2419. }
  2420. },
  2421. backNsfw: {
  2422. height: math.unit(1.65, "meters"),
  2423. weight: math.unit(50, "kg"),
  2424. name: "Back (NSFW)",
  2425. image: {
  2426. source: "./media/characters/elijah/back-nsfw.svg",
  2427. extra: 895 / 850,
  2428. bottom: 5.3 / 897.956
  2429. }
  2430. },
  2431. dick: {
  2432. height: math.unit(1, "feet"),
  2433. name: "Dick",
  2434. image: {
  2435. source: "./media/characters/elijah/dick.svg"
  2436. }
  2437. },
  2438. beakOpen: {
  2439. height: math.unit(1.25, "feet"),
  2440. name: "Beak (Open)",
  2441. image: {
  2442. source: "./media/characters/elijah/beak-open.svg"
  2443. }
  2444. },
  2445. beakShut: {
  2446. height: math.unit(1.25, "feet"),
  2447. name: "Beak (Shut)",
  2448. image: {
  2449. source: "./media/characters/elijah/beak-shut.svg"
  2450. }
  2451. },
  2452. footFlexing: {
  2453. height: math.unit(1.61, "feet"),
  2454. name: "Foot (Flexing)",
  2455. image: {
  2456. source: "./media/characters/elijah/foot-flexing.svg"
  2457. }
  2458. },
  2459. footStepping: {
  2460. height: math.unit(1.44, "feet"),
  2461. name: "Foot (Stepping)",
  2462. image: {
  2463. source: "./media/characters/elijah/foot-stepping.svg"
  2464. }
  2465. },
  2466. plantigradeLeg: {
  2467. height: math.unit(2.34, "feet"),
  2468. name: "Plantigrade Leg",
  2469. image: {
  2470. source: "./media/characters/elijah/plantigrade-leg.svg"
  2471. }
  2472. },
  2473. plantigradeFootLeft: {
  2474. height: math.unit(0.9, "feet"),
  2475. name: "Plantigrade Foot (Left)",
  2476. image: {
  2477. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2478. }
  2479. },
  2480. plantigradeFootRight: {
  2481. height: math.unit(0.9, "feet"),
  2482. name: "Plantigrade Foot (Right)",
  2483. image: {
  2484. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2485. }
  2486. },
  2487. },
  2488. [
  2489. {
  2490. name: "Normal",
  2491. height: math.unit(1.65, "meters")
  2492. },
  2493. {
  2494. name: "Macro",
  2495. height: math.unit(55, "meters"),
  2496. default: true
  2497. },
  2498. {
  2499. name: "Macro+",
  2500. height: math.unit(105, "meters")
  2501. },
  2502. ]
  2503. ))
  2504. characterMakers.push(() => makeCharacter(
  2505. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2506. {
  2507. front: {
  2508. height: math.unit(7 + 2/12, "feet"),
  2509. weight: math.unit(320, "kg"),
  2510. name: "Front",
  2511. image: {
  2512. source: "./media/characters/rai/front.svg",
  2513. extra: 1802/1696,
  2514. bottom: 68/1870
  2515. }
  2516. },
  2517. frontDressed: {
  2518. height: math.unit(7 + 2/12, "feet"),
  2519. weight: math.unit(320, "kg"),
  2520. name: "Front (Dressed)",
  2521. image: {
  2522. source: "./media/characters/rai/front-dressed.svg",
  2523. extra: 1802/1696,
  2524. bottom: 68/1870
  2525. }
  2526. },
  2527. side: {
  2528. height: math.unit(7 + 2/12, "feet"),
  2529. weight: math.unit(320, "kg"),
  2530. name: "Side",
  2531. image: {
  2532. source: "./media/characters/rai/side.svg",
  2533. extra: 1789/1710,
  2534. bottom: 115/1904
  2535. }
  2536. },
  2537. back: {
  2538. height: math.unit(7 + 2/12, "feet"),
  2539. weight: math.unit(320, "kg"),
  2540. name: "Back",
  2541. image: {
  2542. source: "./media/characters/rai/back.svg",
  2543. extra: 1770/1707,
  2544. bottom: 28/1798
  2545. }
  2546. },
  2547. feral: {
  2548. height: math.unit(9.5, "feet"),
  2549. weight: math.unit(640, "kg"),
  2550. name: "Feral",
  2551. image: {
  2552. source: "./media/characters/rai/feral.svg",
  2553. extra: 945/553,
  2554. bottom: 176/1121
  2555. }
  2556. },
  2557. dragon: {
  2558. height: math.unit(23, "feet"),
  2559. weight: math.unit(50000, "lb"),
  2560. name: "Dragon",
  2561. image: {
  2562. source: "./media/characters/rai/dragon.svg",
  2563. extra: 2498 / 2030,
  2564. bottom: 85.2 / 2584
  2565. }
  2566. },
  2567. maw: {
  2568. height: math.unit(1.69, "feet"),
  2569. name: "Maw",
  2570. image: {
  2571. source: "./media/characters/rai/maw.svg"
  2572. }
  2573. },
  2574. },
  2575. [
  2576. {
  2577. name: "Normal",
  2578. height: math.unit(7 + 2/12, "feet")
  2579. },
  2580. {
  2581. name: "Big",
  2582. height: math.unit(11, "feet")
  2583. },
  2584. {
  2585. name: "Macro",
  2586. height: math.unit(302, "feet"),
  2587. default: true
  2588. },
  2589. ]
  2590. ))
  2591. characterMakers.push(() => makeCharacter(
  2592. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2593. {
  2594. frontDressed: {
  2595. height: math.unit(216, "feet"),
  2596. weight: math.unit(7000000, "lb"),
  2597. name: "Front (Dressed)",
  2598. image: {
  2599. source: "./media/characters/jazzy/front-dressed.svg",
  2600. extra: 2738 / 2651,
  2601. bottom: 41.8 / 2786
  2602. }
  2603. },
  2604. backDressed: {
  2605. height: math.unit(216, "feet"),
  2606. weight: math.unit(7000000, "lb"),
  2607. name: "Back (Dressed)",
  2608. image: {
  2609. source: "./media/characters/jazzy/back-dressed.svg",
  2610. extra: 2775 / 2673,
  2611. bottom: 36.8 / 2817
  2612. }
  2613. },
  2614. front: {
  2615. height: math.unit(216, "feet"),
  2616. weight: math.unit(7000000, "lb"),
  2617. name: "Front",
  2618. image: {
  2619. source: "./media/characters/jazzy/front.svg",
  2620. extra: 2738 / 2651,
  2621. bottom: 41.8 / 2786
  2622. }
  2623. },
  2624. back: {
  2625. height: math.unit(216, "feet"),
  2626. weight: math.unit(7000000, "lb"),
  2627. name: "Back",
  2628. image: {
  2629. source: "./media/characters/jazzy/back.svg",
  2630. extra: 2775 / 2673,
  2631. bottom: 36.8 / 2817
  2632. }
  2633. },
  2634. maw: {
  2635. height: math.unit(20, "feet"),
  2636. name: "Maw",
  2637. image: {
  2638. source: "./media/characters/jazzy/maw.svg"
  2639. }
  2640. },
  2641. paws: {
  2642. height: math.unit(27.5, "feet"),
  2643. name: "Paws",
  2644. image: {
  2645. source: "./media/characters/jazzy/paws.svg"
  2646. }
  2647. },
  2648. eye: {
  2649. height: math.unit(4.4, "feet"),
  2650. name: "Eye",
  2651. image: {
  2652. source: "./media/characters/jazzy/eye.svg"
  2653. }
  2654. },
  2655. droneOffense: {
  2656. height: math.unit(9.5, "inches"),
  2657. name: "Drone (Offense)",
  2658. image: {
  2659. source: "./media/characters/jazzy/drone-offense.svg"
  2660. }
  2661. },
  2662. droneRecon: {
  2663. height: math.unit(9.5, "inches"),
  2664. name: "Drone (Recon)",
  2665. image: {
  2666. source: "./media/characters/jazzy/drone-recon.svg"
  2667. }
  2668. },
  2669. droneDefense: {
  2670. height: math.unit(9.5, "inches"),
  2671. name: "Drone (Defense)",
  2672. image: {
  2673. source: "./media/characters/jazzy/drone-defense.svg"
  2674. }
  2675. },
  2676. },
  2677. [
  2678. {
  2679. name: "Macro",
  2680. height: math.unit(216, "feet"),
  2681. default: true
  2682. },
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2687. {
  2688. front: {
  2689. height: math.unit(9 + 6/12, "feet"),
  2690. weight: math.unit(700, "lb"),
  2691. name: "Front",
  2692. image: {
  2693. source: "./media/characters/flamm/front.svg",
  2694. extra: 1751/1632,
  2695. bottom: 46/1797
  2696. }
  2697. },
  2698. buff: {
  2699. height: math.unit(9 + 6/12, "feet"),
  2700. weight: math.unit(950, "lb"),
  2701. name: "Buff",
  2702. image: {
  2703. source: "./media/characters/flamm/buff.svg",
  2704. extra: 3018/2874,
  2705. bottom: 221/3239
  2706. }
  2707. },
  2708. },
  2709. [
  2710. {
  2711. name: "Normal",
  2712. height: math.unit(9.5, "feet")
  2713. },
  2714. {
  2715. name: "Macro",
  2716. height: math.unit(200, "feet"),
  2717. default: true
  2718. },
  2719. ]
  2720. ))
  2721. characterMakers.push(() => makeCharacter(
  2722. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2723. {
  2724. front: {
  2725. height: math.unit(5 + 3/12, "feet"),
  2726. weight: math.unit(60, "kg"),
  2727. name: "Front",
  2728. image: {
  2729. source: "./media/characters/zephiro/front.svg",
  2730. extra: 2309 / 2162,
  2731. bottom: 0.069
  2732. }
  2733. },
  2734. side: {
  2735. height: math.unit(5 + 3/12, "feet"),
  2736. weight: math.unit(60, "kg"),
  2737. name: "Side",
  2738. image: {
  2739. source: "./media/characters/zephiro/side.svg",
  2740. extra: 2403 / 2279,
  2741. bottom: 0.015
  2742. }
  2743. },
  2744. back: {
  2745. height: math.unit(5 + 3/12, "feet"),
  2746. weight: math.unit(60, "kg"),
  2747. name: "Back",
  2748. image: {
  2749. source: "./media/characters/zephiro/back.svg",
  2750. extra: 2373 / 2244,
  2751. bottom: 0.013
  2752. }
  2753. },
  2754. hand: {
  2755. height: math.unit(0.68, "feet"),
  2756. name: "Hand",
  2757. image: {
  2758. source: "./media/characters/zephiro/hand.svg"
  2759. }
  2760. },
  2761. paw: {
  2762. height: math.unit(1, "feet"),
  2763. name: "Paw",
  2764. image: {
  2765. source: "./media/characters/zephiro/paw.svg"
  2766. }
  2767. },
  2768. beans: {
  2769. height: math.unit(0.93, "feet"),
  2770. name: "Beans",
  2771. image: {
  2772. source: "./media/characters/zephiro/beans.svg"
  2773. }
  2774. },
  2775. },
  2776. [
  2777. {
  2778. name: "Micro",
  2779. height: math.unit(3, "inches")
  2780. },
  2781. {
  2782. name: "Normal",
  2783. height: math.unit(5 + 3 / 12, "feet"),
  2784. default: true
  2785. },
  2786. {
  2787. name: "Macro",
  2788. height: math.unit(118, "feet")
  2789. },
  2790. ]
  2791. ))
  2792. characterMakers.push(() => makeCharacter(
  2793. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2794. {
  2795. front: {
  2796. height: math.unit(5, "feet"),
  2797. weight: math.unit(90, "kg"),
  2798. name: "Front",
  2799. image: {
  2800. source: "./media/characters/fory/front.svg",
  2801. extra: 2862 / 2674,
  2802. bottom: 180 / 3043.8
  2803. }
  2804. },
  2805. back: {
  2806. height: math.unit(5, "feet"),
  2807. weight: math.unit(90, "kg"),
  2808. name: "Back",
  2809. image: {
  2810. source: "./media/characters/fory/back.svg",
  2811. extra: 2962 / 2791,
  2812. bottom: 106 / 3071.8
  2813. }
  2814. },
  2815. foot: {
  2816. height: math.unit(2.14, "feet"),
  2817. name: "Foot",
  2818. image: {
  2819. source: "./media/characters/fory/foot.svg"
  2820. }
  2821. },
  2822. },
  2823. [
  2824. {
  2825. name: "Normal",
  2826. height: math.unit(5, "feet")
  2827. },
  2828. {
  2829. name: "Macro",
  2830. height: math.unit(50, "feet"),
  2831. default: true
  2832. },
  2833. {
  2834. name: "Megamacro",
  2835. height: math.unit(10, "miles")
  2836. },
  2837. {
  2838. name: "Gigamacro",
  2839. height: math.unit(5, "earths")
  2840. },
  2841. ]
  2842. ))
  2843. characterMakers.push(() => makeCharacter(
  2844. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2845. {
  2846. front: {
  2847. height: math.unit(7, "feet"),
  2848. weight: math.unit(90, "kg"),
  2849. name: "Front",
  2850. image: {
  2851. source: "./media/characters/kurrikage/front.svg",
  2852. extra: 1845/1733,
  2853. bottom: 119/1964
  2854. }
  2855. },
  2856. back: {
  2857. height: math.unit(7, "feet"),
  2858. weight: math.unit(90, "kg"),
  2859. name: "Back",
  2860. image: {
  2861. source: "./media/characters/kurrikage/back.svg",
  2862. extra: 1790/1677,
  2863. bottom: 61/1851
  2864. }
  2865. },
  2866. dressed: {
  2867. height: math.unit(7, "feet"),
  2868. weight: math.unit(90, "kg"),
  2869. name: "Dressed",
  2870. image: {
  2871. source: "./media/characters/kurrikage/dressed.svg",
  2872. extra: 1845/1733,
  2873. bottom: 119/1964
  2874. }
  2875. },
  2876. foot: {
  2877. height: math.unit(1.5, "feet"),
  2878. name: "Foot",
  2879. image: {
  2880. source: "./media/characters/kurrikage/foot.svg"
  2881. }
  2882. },
  2883. staff: {
  2884. height: math.unit(6.7, "feet"),
  2885. name: "Staff",
  2886. image: {
  2887. source: "./media/characters/kurrikage/staff.svg"
  2888. }
  2889. },
  2890. peek: {
  2891. height: math.unit(1.05, "feet"),
  2892. name: "Peeking",
  2893. image: {
  2894. source: "./media/characters/kurrikage/peek.svg",
  2895. bottom: 0.08
  2896. }
  2897. },
  2898. },
  2899. [
  2900. {
  2901. name: "Normal",
  2902. height: math.unit(12, "feet"),
  2903. default: true
  2904. },
  2905. {
  2906. name: "Big",
  2907. height: math.unit(20, "feet")
  2908. },
  2909. {
  2910. name: "Macro",
  2911. height: math.unit(500, "feet")
  2912. },
  2913. {
  2914. name: "Megamacro",
  2915. height: math.unit(20, "miles")
  2916. },
  2917. ]
  2918. ))
  2919. characterMakers.push(() => makeCharacter(
  2920. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2921. {
  2922. front: {
  2923. height: math.unit(6, "feet"),
  2924. weight: math.unit(75, "kg"),
  2925. name: "Front",
  2926. image: {
  2927. source: "./media/characters/shingo/front.svg",
  2928. extra: 1900/1825,
  2929. bottom: 82/1982
  2930. }
  2931. },
  2932. side: {
  2933. height: math.unit(6, "feet"),
  2934. weight: math.unit(75, "kg"),
  2935. name: "Side",
  2936. image: {
  2937. source: "./media/characters/shingo/side.svg",
  2938. extra: 1930/1865,
  2939. bottom: 16/1946
  2940. }
  2941. },
  2942. back: {
  2943. height: math.unit(6, "feet"),
  2944. weight: math.unit(75, "kg"),
  2945. name: "Back",
  2946. image: {
  2947. source: "./media/characters/shingo/back.svg",
  2948. extra: 1922/1852,
  2949. bottom: 16/1938
  2950. }
  2951. },
  2952. frontDressed: {
  2953. height: math.unit(6, "feet"),
  2954. weight: math.unit(150, "lb"),
  2955. name: "Front-dressed",
  2956. image: {
  2957. source: "./media/characters/shingo/front-dressed.svg",
  2958. extra: 1900/1825,
  2959. bottom: 82/1982
  2960. }
  2961. },
  2962. paw: {
  2963. height: math.unit(1.29, "feet"),
  2964. name: "Paw",
  2965. image: {
  2966. source: "./media/characters/shingo/paw.svg"
  2967. }
  2968. },
  2969. hand: {
  2970. height: math.unit(1.07, "feet"),
  2971. name: "Hand",
  2972. image: {
  2973. source: "./media/characters/shingo/hand.svg"
  2974. }
  2975. },
  2976. frontAlt: {
  2977. height: math.unit(6, "feet"),
  2978. weight: math.unit(75, "kg"),
  2979. name: "Front (Alt)",
  2980. image: {
  2981. source: "./media/characters/shingo/front-alt.svg",
  2982. extra: 3511 / 3338,
  2983. bottom: 0.005
  2984. }
  2985. },
  2986. frontAlt2: {
  2987. height: math.unit(6, "feet"),
  2988. weight: math.unit(75, "kg"),
  2989. name: "Front (Alt 2)",
  2990. image: {
  2991. source: "./media/characters/shingo/front-alt-2.svg",
  2992. extra: 706/681,
  2993. bottom: 11/717
  2994. }
  2995. },
  2996. pawAlt: {
  2997. height: math.unit(1, "feet"),
  2998. name: "Paw (Alt)",
  2999. image: {
  3000. source: "./media/characters/shingo/paw-alt.svg"
  3001. }
  3002. },
  3003. },
  3004. [
  3005. {
  3006. name: "Micro",
  3007. height: math.unit(4, "inches")
  3008. },
  3009. {
  3010. name: "Normal",
  3011. height: math.unit(6, "feet"),
  3012. default: true
  3013. },
  3014. {
  3015. name: "Macro",
  3016. height: math.unit(108, "feet")
  3017. },
  3018. {
  3019. name: "Macro+",
  3020. height: math.unit(1500, "feet")
  3021. },
  3022. ]
  3023. ))
  3024. characterMakers.push(() => makeCharacter(
  3025. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3026. {
  3027. side: {
  3028. height: math.unit(6, "feet"),
  3029. weight: math.unit(75, "kg"),
  3030. name: "Side",
  3031. image: {
  3032. source: "./media/characters/aigey/side.svg"
  3033. }
  3034. },
  3035. },
  3036. [
  3037. {
  3038. name: "Macro",
  3039. height: math.unit(200, "feet"),
  3040. default: true
  3041. },
  3042. {
  3043. name: "Megamacro",
  3044. height: math.unit(100, "miles")
  3045. },
  3046. ]
  3047. )
  3048. )
  3049. characterMakers.push(() => makeCharacter(
  3050. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3051. {
  3052. front: {
  3053. height: math.unit(5 + 5 / 12, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Front",
  3056. image: {
  3057. source: "./media/characters/natasha/front.svg",
  3058. extra: 859 / 824,
  3059. bottom: 23 / 879.6
  3060. }
  3061. },
  3062. frontNsfw: {
  3063. height: math.unit(5 + 5 / 12, "feet"),
  3064. weight: math.unit(75, "kg"),
  3065. name: "Front (NSFW)",
  3066. image: {
  3067. source: "./media/characters/natasha/front-nsfw.svg",
  3068. extra: 859 / 824,
  3069. bottom: 23 / 879.6
  3070. }
  3071. },
  3072. frontErect: {
  3073. height: math.unit(5 + 5 / 12, "feet"),
  3074. weight: math.unit(75, "kg"),
  3075. name: "Front (Erect)",
  3076. image: {
  3077. source: "./media/characters/natasha/front-erect.svg",
  3078. extra: 859 / 824,
  3079. bottom: 23 / 879.6
  3080. }
  3081. },
  3082. back: {
  3083. height: math.unit(5 + 5 / 12, "feet"),
  3084. weight: math.unit(75, "kg"),
  3085. name: "Back",
  3086. image: {
  3087. source: "./media/characters/natasha/back.svg",
  3088. extra: 887.9 / 852.6,
  3089. bottom: 9.7 / 896.4
  3090. }
  3091. },
  3092. backAlt: {
  3093. height: math.unit(5 + 5 / 12, "feet"),
  3094. weight: math.unit(75, "kg"),
  3095. name: "Back (Alt)",
  3096. image: {
  3097. source: "./media/characters/natasha/back-alt.svg",
  3098. extra: 1236.7 / 1192,
  3099. bottom: 22.3 / 1258.2
  3100. }
  3101. },
  3102. dick: {
  3103. height: math.unit(1.772, "feet"),
  3104. name: "Dick",
  3105. image: {
  3106. source: "./media/characters/natasha/dick.svg"
  3107. }
  3108. },
  3109. paw: {
  3110. height: math.unit(0.250, "meters"),
  3111. name: "Paw",
  3112. image: {
  3113. source: "./media/characters/natasha/paw.svg"
  3114. }
  3115. },
  3116. },
  3117. [
  3118. {
  3119. name: "Normal",
  3120. height: math.unit(5 + 5 / 12, "feet")
  3121. },
  3122. {
  3123. name: "Large",
  3124. height: math.unit(12, "feet")
  3125. },
  3126. {
  3127. name: "Macro",
  3128. height: math.unit(100, "feet"),
  3129. default: true
  3130. },
  3131. {
  3132. name: "Macro+",
  3133. height: math.unit(260, "feet")
  3134. },
  3135. {
  3136. name: "Macro++",
  3137. height: math.unit(1, "mile")
  3138. },
  3139. ]
  3140. ))
  3141. characterMakers.push(() => makeCharacter(
  3142. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3143. {
  3144. front: {
  3145. height: math.unit(6, "feet"),
  3146. weight: math.unit(75, "kg"),
  3147. name: "Front",
  3148. image: {
  3149. source: "./media/characters/malik/front.svg"
  3150. }
  3151. },
  3152. side: {
  3153. height: math.unit(6, "feet"),
  3154. weight: math.unit(75, "kg"),
  3155. name: "Side",
  3156. image: {
  3157. source: "./media/characters/malik/side.svg",
  3158. extra: 1.1539
  3159. }
  3160. },
  3161. back: {
  3162. height: math.unit(6, "feet"),
  3163. weight: math.unit(75, "kg"),
  3164. name: "Back",
  3165. image: {
  3166. source: "./media/characters/malik/back.svg"
  3167. }
  3168. },
  3169. },
  3170. [
  3171. {
  3172. name: "Macro",
  3173. height: math.unit(156, "feet"),
  3174. default: true
  3175. },
  3176. {
  3177. name: "Macro+",
  3178. height: math.unit(1188, "feet")
  3179. },
  3180. ]
  3181. ))
  3182. characterMakers.push(() => makeCharacter(
  3183. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3184. {
  3185. front: {
  3186. height: math.unit(6, "feet"),
  3187. weight: math.unit(75, "kg"),
  3188. name: "Front",
  3189. image: {
  3190. source: "./media/characters/sefer/front.svg",
  3191. extra: 848 / 659,
  3192. bottom: 28.3 / 876.442
  3193. }
  3194. },
  3195. back: {
  3196. height: math.unit(6, "feet"),
  3197. weight: math.unit(75, "kg"),
  3198. name: "Back",
  3199. image: {
  3200. source: "./media/characters/sefer/back.svg",
  3201. extra: 864 / 695,
  3202. bottom: 10 / 871
  3203. }
  3204. },
  3205. frontDressed: {
  3206. height: math.unit(6, "feet"),
  3207. weight: math.unit(75, "kg"),
  3208. name: "Front (Dressed)",
  3209. image: {
  3210. source: "./media/characters/sefer/front-dressed.svg",
  3211. extra: 839 / 653,
  3212. bottom: 37.6 / 878
  3213. }
  3214. },
  3215. },
  3216. [
  3217. {
  3218. name: "Normal",
  3219. height: math.unit(6, "feet"),
  3220. default: true
  3221. },
  3222. ]
  3223. ))
  3224. characterMakers.push(() => makeCharacter(
  3225. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3226. {
  3227. body: {
  3228. height: math.unit(2.2428, "meter"),
  3229. weight: math.unit(124.738, "kg"),
  3230. name: "Body",
  3231. image: {
  3232. extra: 1225 / 1050,
  3233. source: "./media/characters/north/front.svg"
  3234. }
  3235. }
  3236. },
  3237. [
  3238. {
  3239. name: "Micro",
  3240. height: math.unit(4, "inches")
  3241. },
  3242. {
  3243. name: "Macro",
  3244. height: math.unit(63, "meters")
  3245. },
  3246. {
  3247. name: "Megamacro",
  3248. height: math.unit(101, "miles"),
  3249. default: true
  3250. }
  3251. ]
  3252. ))
  3253. characterMakers.push(() => makeCharacter(
  3254. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3255. {
  3256. angled: {
  3257. height: math.unit(4, "meter"),
  3258. weight: math.unit(150, "kg"),
  3259. name: "Angled",
  3260. image: {
  3261. source: "./media/characters/talan/angled-sfw.svg",
  3262. bottom: 29 / 3734
  3263. }
  3264. },
  3265. angledNsfw: {
  3266. height: math.unit(4, "meter"),
  3267. weight: math.unit(150, "kg"),
  3268. name: "Angled (NSFW)",
  3269. image: {
  3270. source: "./media/characters/talan/angled-nsfw.svg",
  3271. bottom: 29 / 3734
  3272. }
  3273. },
  3274. frontNsfw: {
  3275. height: math.unit(4, "meter"),
  3276. weight: math.unit(150, "kg"),
  3277. name: "Front (NSFW)",
  3278. image: {
  3279. source: "./media/characters/talan/front-nsfw.svg",
  3280. bottom: 29 / 3734
  3281. }
  3282. },
  3283. sideNsfw: {
  3284. height: math.unit(4, "meter"),
  3285. weight: math.unit(150, "kg"),
  3286. name: "Side (NSFW)",
  3287. image: {
  3288. source: "./media/characters/talan/side-nsfw.svg",
  3289. bottom: 29 / 3734
  3290. }
  3291. },
  3292. back: {
  3293. height: math.unit(4, "meter"),
  3294. weight: math.unit(150, "kg"),
  3295. name: "Back",
  3296. image: {
  3297. source: "./media/characters/talan/back.svg"
  3298. }
  3299. },
  3300. dickBottom: {
  3301. height: math.unit(0.621, "meter"),
  3302. name: "Dick (Bottom)",
  3303. image: {
  3304. source: "./media/characters/talan/dick-bottom.svg"
  3305. }
  3306. },
  3307. dickTop: {
  3308. height: math.unit(0.621, "meter"),
  3309. name: "Dick (Top)",
  3310. image: {
  3311. source: "./media/characters/talan/dick-top.svg"
  3312. }
  3313. },
  3314. dickSide: {
  3315. height: math.unit(0.305, "meter"),
  3316. name: "Dick (Side)",
  3317. image: {
  3318. source: "./media/characters/talan/dick-side.svg"
  3319. }
  3320. },
  3321. dickFront: {
  3322. height: math.unit(0.305, "meter"),
  3323. name: "Dick (Front)",
  3324. image: {
  3325. source: "./media/characters/talan/dick-front.svg"
  3326. }
  3327. },
  3328. },
  3329. [
  3330. {
  3331. name: "Normal",
  3332. height: math.unit(4, "meters")
  3333. },
  3334. {
  3335. name: "Macro",
  3336. height: math.unit(100, "meters")
  3337. },
  3338. {
  3339. name: "Megamacro",
  3340. height: math.unit(2, "miles"),
  3341. default: true
  3342. },
  3343. {
  3344. name: "Gigamacro",
  3345. height: math.unit(5000, "miles")
  3346. },
  3347. {
  3348. name: "Teramacro",
  3349. height: math.unit(100, "parsecs")
  3350. }
  3351. ]
  3352. ))
  3353. characterMakers.push(() => makeCharacter(
  3354. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3355. {
  3356. front: {
  3357. height: math.unit(2, "meter"),
  3358. weight: math.unit(90, "kg"),
  3359. name: "Front",
  3360. image: {
  3361. source: "./media/characters/gael'rathus/front.svg"
  3362. }
  3363. },
  3364. frontAlt: {
  3365. height: math.unit(2, "meter"),
  3366. weight: math.unit(90, "kg"),
  3367. name: "Front (alt)",
  3368. image: {
  3369. source: "./media/characters/gael'rathus/front-alt.svg"
  3370. }
  3371. },
  3372. frontAlt2: {
  3373. height: math.unit(2, "meter"),
  3374. weight: math.unit(90, "kg"),
  3375. name: "Front (alt 2)",
  3376. image: {
  3377. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3378. }
  3379. }
  3380. },
  3381. [
  3382. {
  3383. name: "Normal",
  3384. height: math.unit(9, "feet"),
  3385. default: true
  3386. },
  3387. {
  3388. name: "Large",
  3389. height: math.unit(25, "feet")
  3390. },
  3391. {
  3392. name: "Macro",
  3393. height: math.unit(0.25, "miles")
  3394. },
  3395. {
  3396. name: "Megamacro",
  3397. height: math.unit(10, "miles")
  3398. }
  3399. ]
  3400. ))
  3401. characterMakers.push(() => makeCharacter(
  3402. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3403. {
  3404. side: {
  3405. height: math.unit(2, "meter"),
  3406. weight: math.unit(140, "kg"),
  3407. name: "Side",
  3408. image: {
  3409. source: "./media/characters/sosha/side.svg",
  3410. bottom: 0.042
  3411. }
  3412. },
  3413. },
  3414. [
  3415. {
  3416. name: "Normal",
  3417. height: math.unit(12, "feet"),
  3418. default: true
  3419. }
  3420. ]
  3421. ))
  3422. characterMakers.push(() => makeCharacter(
  3423. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3424. {
  3425. side: {
  3426. height: math.unit(5 + 5 / 12, "feet"),
  3427. weight: math.unit(170, "kg"),
  3428. name: "Side",
  3429. image: {
  3430. source: "./media/characters/runnola/side.svg",
  3431. extra: 741 / 448,
  3432. bottom: 0.05
  3433. }
  3434. },
  3435. },
  3436. [
  3437. {
  3438. name: "Small",
  3439. height: math.unit(3, "feet")
  3440. },
  3441. {
  3442. name: "Normal",
  3443. height: math.unit(5 + 5 / 12, "feet"),
  3444. default: true
  3445. },
  3446. {
  3447. name: "Big",
  3448. height: math.unit(10, "feet")
  3449. },
  3450. ]
  3451. ))
  3452. characterMakers.push(() => makeCharacter(
  3453. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3454. {
  3455. front: {
  3456. height: math.unit(2, "meter"),
  3457. weight: math.unit(50, "kg"),
  3458. name: "Front",
  3459. image: {
  3460. source: "./media/characters/kurribird/front.svg",
  3461. bottom: 0.015
  3462. }
  3463. },
  3464. frontAlt: {
  3465. height: math.unit(1.5, "meter"),
  3466. weight: math.unit(50, "kg"),
  3467. name: "Front (Alt)",
  3468. image: {
  3469. source: "./media/characters/kurribird/front-alt.svg",
  3470. extra: 1.45
  3471. }
  3472. },
  3473. },
  3474. [
  3475. {
  3476. name: "Normal",
  3477. height: math.unit(7, "feet")
  3478. },
  3479. {
  3480. name: "Big",
  3481. height: math.unit(12, "feet"),
  3482. default: true
  3483. },
  3484. {
  3485. name: "Macro",
  3486. height: math.unit(1500, "feet")
  3487. },
  3488. {
  3489. name: "Megamacro",
  3490. height: math.unit(2, "miles")
  3491. }
  3492. ]
  3493. ))
  3494. characterMakers.push(() => makeCharacter(
  3495. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3496. {
  3497. front: {
  3498. height: math.unit(2, "meter"),
  3499. weight: math.unit(80, "kg"),
  3500. name: "Front",
  3501. image: {
  3502. source: "./media/characters/elbial/front.svg",
  3503. extra: 1643 / 1556,
  3504. bottom: 60.2 / 1696
  3505. }
  3506. },
  3507. side: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(80, "kg"),
  3510. name: "Side",
  3511. image: {
  3512. source: "./media/characters/elbial/side.svg",
  3513. extra: 1601/1528,
  3514. bottom: 97/1698
  3515. }
  3516. },
  3517. back: {
  3518. height: math.unit(2, "meter"),
  3519. weight: math.unit(80, "kg"),
  3520. name: "Back",
  3521. image: {
  3522. source: "./media/characters/elbial/back.svg",
  3523. extra: 1653/1569,
  3524. bottom: 20/1673
  3525. }
  3526. },
  3527. frontDressed: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(80, "kg"),
  3530. name: "Front (Dressed)",
  3531. image: {
  3532. source: "./media/characters/elbial/front-dressed.svg",
  3533. extra: 1638/1569,
  3534. bottom: 70/1708
  3535. }
  3536. },
  3537. genitals: {
  3538. height: math.unit(2 / 3.367, "meter"),
  3539. name: "Genitals",
  3540. image: {
  3541. source: "./media/characters/elbial/genitals.svg"
  3542. }
  3543. },
  3544. },
  3545. [
  3546. {
  3547. name: "Large",
  3548. height: math.unit(100, "feet")
  3549. },
  3550. {
  3551. name: "Macro",
  3552. height: math.unit(500, "feet"),
  3553. default: true
  3554. },
  3555. {
  3556. name: "Megamacro",
  3557. height: math.unit(10, "miles")
  3558. },
  3559. {
  3560. name: "Gigamacro",
  3561. height: math.unit(25000, "miles")
  3562. },
  3563. {
  3564. name: "Full-Size",
  3565. height: math.unit(8000000, "gigaparsecs")
  3566. }
  3567. ]
  3568. ))
  3569. characterMakers.push(() => makeCharacter(
  3570. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3571. {
  3572. front: {
  3573. height: math.unit(2, "meter"),
  3574. weight: math.unit(60, "kg"),
  3575. name: "Front",
  3576. image: {
  3577. source: "./media/characters/noah/front.svg"
  3578. }
  3579. },
  3580. talons: {
  3581. height: math.unit(0.315, "meter"),
  3582. name: "Talons",
  3583. image: {
  3584. source: "./media/characters/noah/talons.svg"
  3585. }
  3586. }
  3587. },
  3588. [
  3589. {
  3590. name: "Large",
  3591. height: math.unit(50, "feet")
  3592. },
  3593. {
  3594. name: "Macro",
  3595. height: math.unit(750, "feet"),
  3596. default: true
  3597. },
  3598. {
  3599. name: "Megamacro",
  3600. height: math.unit(50, "miles")
  3601. },
  3602. {
  3603. name: "Gigamacro",
  3604. height: math.unit(100000, "miles")
  3605. },
  3606. {
  3607. name: "Full-Size",
  3608. height: math.unit(3000000000, "miles")
  3609. }
  3610. ]
  3611. ))
  3612. characterMakers.push(() => makeCharacter(
  3613. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3614. {
  3615. front: {
  3616. height: math.unit(2, "meter"),
  3617. weight: math.unit(80, "kg"),
  3618. name: "Front",
  3619. image: {
  3620. source: "./media/characters/natalya/front.svg"
  3621. }
  3622. },
  3623. back: {
  3624. height: math.unit(2, "meter"),
  3625. weight: math.unit(80, "kg"),
  3626. name: "Back",
  3627. image: {
  3628. source: "./media/characters/natalya/back.svg"
  3629. }
  3630. }
  3631. },
  3632. [
  3633. {
  3634. name: "Normal",
  3635. height: math.unit(150, "feet"),
  3636. default: true
  3637. },
  3638. {
  3639. name: "Megamacro",
  3640. height: math.unit(5, "miles")
  3641. },
  3642. {
  3643. name: "Full-Size",
  3644. height: math.unit(600, "kiloparsecs")
  3645. }
  3646. ]
  3647. ))
  3648. characterMakers.push(() => makeCharacter(
  3649. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3650. {
  3651. front: {
  3652. height: math.unit(2, "meter"),
  3653. weight: math.unit(50, "kg"),
  3654. name: "Front",
  3655. image: {
  3656. source: "./media/characters/erestrebah/front.svg",
  3657. extra: 1262/1162,
  3658. bottom: 96/1358
  3659. }
  3660. },
  3661. back: {
  3662. height: math.unit(2, "meter"),
  3663. weight: math.unit(50, "kg"),
  3664. name: "Back",
  3665. image: {
  3666. source: "./media/characters/erestrebah/back.svg",
  3667. extra: 1257/1139,
  3668. bottom: 13/1270
  3669. }
  3670. },
  3671. wing: {
  3672. height: math.unit(2, "meter"),
  3673. weight: math.unit(50, "kg"),
  3674. name: "Wing",
  3675. image: {
  3676. source: "./media/characters/erestrebah/wing.svg",
  3677. extra: 1262/1162,
  3678. bottom: 96/1358
  3679. }
  3680. },
  3681. mouth: {
  3682. height: math.unit(0.39, "feet"),
  3683. name: "Mouth",
  3684. image: {
  3685. source: "./media/characters/erestrebah/mouth.svg"
  3686. }
  3687. }
  3688. },
  3689. [
  3690. {
  3691. name: "Normal",
  3692. height: math.unit(10, "feet")
  3693. },
  3694. {
  3695. name: "Large",
  3696. height: math.unit(50, "feet"),
  3697. default: true
  3698. },
  3699. {
  3700. name: "Macro",
  3701. height: math.unit(300, "feet")
  3702. },
  3703. {
  3704. name: "Macro+",
  3705. height: math.unit(750, "feet")
  3706. },
  3707. {
  3708. name: "Megamacro",
  3709. height: math.unit(3, "miles")
  3710. }
  3711. ]
  3712. ))
  3713. characterMakers.push(() => makeCharacter(
  3714. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3715. {
  3716. front: {
  3717. height: math.unit(2, "meter"),
  3718. weight: math.unit(80, "kg"),
  3719. name: "Front",
  3720. image: {
  3721. source: "./media/characters/jennifer/front.svg",
  3722. bottom: 0.11,
  3723. extra: 1.16
  3724. }
  3725. },
  3726. frontAlt: {
  3727. height: math.unit(2, "meter"),
  3728. weight: math.unit(80, "kg"),
  3729. name: "Front (Alt)",
  3730. image: {
  3731. source: "./media/characters/jennifer/front-alt.svg"
  3732. }
  3733. }
  3734. },
  3735. [
  3736. {
  3737. name: "Canon Height",
  3738. height: math.unit(120, "feet"),
  3739. default: true
  3740. },
  3741. {
  3742. name: "Macro+",
  3743. height: math.unit(300, "feet")
  3744. },
  3745. {
  3746. name: "Megamacro",
  3747. height: math.unit(20000, "feet")
  3748. }
  3749. ]
  3750. ))
  3751. characterMakers.push(() => makeCharacter(
  3752. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3753. {
  3754. front: {
  3755. height: math.unit(2, "meter"),
  3756. weight: math.unit(50, "kg"),
  3757. name: "Front",
  3758. image: {
  3759. source: "./media/characters/kalista/front.svg",
  3760. extra: 1314/1145,
  3761. bottom: 101/1415
  3762. }
  3763. },
  3764. back: {
  3765. height: math.unit(2, "meter"),
  3766. weight: math.unit(50, "kg"),
  3767. name: "Back",
  3768. image: {
  3769. source: "./media/characters/kalista/back.svg",
  3770. extra: 1366 / 1156,
  3771. bottom: 33.9 / 1362.78
  3772. }
  3773. }
  3774. },
  3775. [
  3776. {
  3777. name: "Uncomfortably Small",
  3778. height: math.unit(10, "feet")
  3779. },
  3780. {
  3781. name: "Small",
  3782. height: math.unit(30, "feet")
  3783. },
  3784. {
  3785. name: "Macro",
  3786. height: math.unit(100, "feet"),
  3787. default: true
  3788. },
  3789. {
  3790. name: "Macro+",
  3791. height: math.unit(2000, "feet")
  3792. },
  3793. {
  3794. name: "True Form",
  3795. height: math.unit(8924, "miles")
  3796. }
  3797. ]
  3798. ))
  3799. characterMakers.push(() => makeCharacter(
  3800. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3801. {
  3802. front: {
  3803. height: math.unit(2, "meter"),
  3804. weight: math.unit(120, "kg"),
  3805. name: "Front",
  3806. image: {
  3807. source: "./media/characters/ggv/front.svg"
  3808. }
  3809. },
  3810. side: {
  3811. height: math.unit(2, "meter"),
  3812. weight: math.unit(120, "kg"),
  3813. name: "Side",
  3814. image: {
  3815. source: "./media/characters/ggv/side.svg"
  3816. }
  3817. }
  3818. },
  3819. [
  3820. {
  3821. name: "Extremely Puny",
  3822. height: math.unit(9 + 5 / 12, "feet")
  3823. },
  3824. {
  3825. name: "Horribly Small",
  3826. height: math.unit(47.7, "miles"),
  3827. default: true
  3828. },
  3829. {
  3830. name: "Reasonably Sized",
  3831. height: math.unit(25000, "parsecs")
  3832. },
  3833. {
  3834. name: "Slightly Uncompressed",
  3835. height: math.unit(7.77e31, "parsecs")
  3836. },
  3837. {
  3838. name: "Omniversal",
  3839. height: math.unit(1e300, "meters")
  3840. },
  3841. ]
  3842. ))
  3843. characterMakers.push(() => makeCharacter(
  3844. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3845. {
  3846. front: {
  3847. height: math.unit(2, "meter"),
  3848. weight: math.unit(75, "lb"),
  3849. name: "Front",
  3850. image: {
  3851. source: "./media/characters/napalm/front.svg"
  3852. }
  3853. },
  3854. back: {
  3855. height: math.unit(2, "meter"),
  3856. weight: math.unit(75, "lb"),
  3857. name: "Back",
  3858. image: {
  3859. source: "./media/characters/napalm/back.svg"
  3860. }
  3861. }
  3862. },
  3863. [
  3864. {
  3865. name: "Standard",
  3866. height: math.unit(55, "feet"),
  3867. default: true
  3868. }
  3869. ]
  3870. ))
  3871. characterMakers.push(() => makeCharacter(
  3872. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3873. {
  3874. front: {
  3875. height: math.unit(7 + 5 / 6, "feet"),
  3876. weight: math.unit(325, "lb"),
  3877. name: "Front",
  3878. image: {
  3879. source: "./media/characters/asana/front.svg",
  3880. extra: 1133 / 1060,
  3881. bottom: 15.2 / 1148.6
  3882. }
  3883. },
  3884. back: {
  3885. height: math.unit(7 + 5 / 6, "feet"),
  3886. weight: math.unit(325, "lb"),
  3887. name: "Back",
  3888. image: {
  3889. source: "./media/characters/asana/back.svg",
  3890. extra: 1114 / 1043,
  3891. bottom: 5 / 1120
  3892. }
  3893. },
  3894. dressedDark: {
  3895. height: math.unit(7 + 5 / 6, "feet"),
  3896. weight: math.unit(325, "lb"),
  3897. name: "Dressed (Dark)",
  3898. image: {
  3899. source: "./media/characters/asana/dressed-dark.svg",
  3900. extra: 1133 / 1060,
  3901. bottom: 15.2 / 1148.6
  3902. }
  3903. },
  3904. dressedLight: {
  3905. height: math.unit(7 + 5 / 6, "feet"),
  3906. weight: math.unit(325, "lb"),
  3907. name: "Dressed (Light)",
  3908. image: {
  3909. source: "./media/characters/asana/dressed-light.svg",
  3910. extra: 1133 / 1060,
  3911. bottom: 15.2 / 1148.6
  3912. }
  3913. },
  3914. },
  3915. [
  3916. {
  3917. name: "Standard",
  3918. height: math.unit(7 + 5 / 6, "feet"),
  3919. default: true
  3920. },
  3921. {
  3922. name: "Large",
  3923. height: math.unit(10, "meters")
  3924. },
  3925. {
  3926. name: "Macro",
  3927. height: math.unit(2500, "meters")
  3928. },
  3929. {
  3930. name: "Megamacro",
  3931. height: math.unit(5e6, "meters")
  3932. },
  3933. {
  3934. name: "Examacro",
  3935. height: math.unit(5e12, "lightyears")
  3936. },
  3937. {
  3938. name: "Max Size",
  3939. height: math.unit(1e31, "lightyears")
  3940. }
  3941. ]
  3942. ))
  3943. characterMakers.push(() => makeCharacter(
  3944. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3945. {
  3946. front: {
  3947. height: math.unit(2, "meter"),
  3948. weight: math.unit(60, "kg"),
  3949. name: "Front",
  3950. image: {
  3951. source: "./media/characters/ebony/front.svg",
  3952. bottom: 0.03,
  3953. extra: 1045 / 810 + 0.03
  3954. }
  3955. },
  3956. side: {
  3957. height: math.unit(2, "meter"),
  3958. weight: math.unit(60, "kg"),
  3959. name: "Side",
  3960. image: {
  3961. source: "./media/characters/ebony/side.svg",
  3962. bottom: 0.03,
  3963. extra: 1045 / 810 + 0.03
  3964. }
  3965. },
  3966. back: {
  3967. height: math.unit(2, "meter"),
  3968. weight: math.unit(60, "kg"),
  3969. name: "Back",
  3970. image: {
  3971. source: "./media/characters/ebony/back.svg",
  3972. bottom: 0.01,
  3973. extra: 1045 / 810 + 0.01
  3974. }
  3975. },
  3976. },
  3977. [
  3978. // TODO check why I did this lol
  3979. {
  3980. name: "Standard",
  3981. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3982. default: true
  3983. },
  3984. {
  3985. name: "Macro",
  3986. height: math.unit(200, "feet")
  3987. },
  3988. {
  3989. name: "Gigamacro",
  3990. height: math.unit(13000, "km")
  3991. }
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3996. {
  3997. front: {
  3998. height: math.unit(6, "feet"),
  3999. weight: math.unit(175, "lb"),
  4000. name: "Front",
  4001. image: {
  4002. source: "./media/characters/mountain/front.svg",
  4003. extra: 972 / 955,
  4004. bottom: 64 / 1036.6
  4005. }
  4006. },
  4007. back: {
  4008. height: math.unit(6, "feet"),
  4009. weight: math.unit(175, "lb"),
  4010. name: "Back",
  4011. image: {
  4012. source: "./media/characters/mountain/back.svg",
  4013. extra: 970 / 950,
  4014. bottom: 28.25 / 999
  4015. }
  4016. },
  4017. },
  4018. [
  4019. {
  4020. name: "Large",
  4021. height: math.unit(20, "meters")
  4022. },
  4023. {
  4024. name: "Macro",
  4025. height: math.unit(300, "meters")
  4026. },
  4027. {
  4028. name: "Gigamacro",
  4029. height: math.unit(10000, "km"),
  4030. default: true
  4031. },
  4032. {
  4033. name: "Examacro",
  4034. height: math.unit(10e9, "lightyears")
  4035. }
  4036. ]
  4037. ))
  4038. characterMakers.push(() => makeCharacter(
  4039. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4040. {
  4041. front: {
  4042. height: math.unit(8, "feet"),
  4043. weight: math.unit(500, "lb"),
  4044. name: "Front",
  4045. image: {
  4046. source: "./media/characters/rick/front.svg"
  4047. }
  4048. }
  4049. },
  4050. [
  4051. {
  4052. name: "Normal",
  4053. height: math.unit(8, "feet"),
  4054. default: true
  4055. },
  4056. {
  4057. name: "Macro",
  4058. height: math.unit(5, "km")
  4059. }
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4064. {
  4065. front: {
  4066. height: math.unit(8, "feet"),
  4067. weight: math.unit(120, "lb"),
  4068. name: "Front",
  4069. image: {
  4070. source: "./media/characters/ona/front.svg"
  4071. }
  4072. },
  4073. frontAlt: {
  4074. height: math.unit(8, "feet"),
  4075. weight: math.unit(120, "lb"),
  4076. name: "Front (Alt)",
  4077. image: {
  4078. source: "./media/characters/ona/front-alt.svg"
  4079. }
  4080. },
  4081. back: {
  4082. height: math.unit(8, "feet"),
  4083. weight: math.unit(120, "lb"),
  4084. name: "Back",
  4085. image: {
  4086. source: "./media/characters/ona/back.svg"
  4087. }
  4088. },
  4089. foot: {
  4090. height: math.unit(1.1, "feet"),
  4091. name: "Foot",
  4092. image: {
  4093. source: "./media/characters/ona/foot.svg"
  4094. }
  4095. }
  4096. },
  4097. [
  4098. {
  4099. name: "Megamacro",
  4100. height: math.unit(70, "km"),
  4101. default: true
  4102. },
  4103. {
  4104. name: "Gigamacro",
  4105. height: math.unit(681818, "miles")
  4106. },
  4107. {
  4108. name: "Examacro",
  4109. height: math.unit(3800000, "lightyears")
  4110. },
  4111. ]
  4112. ))
  4113. characterMakers.push(() => makeCharacter(
  4114. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4115. {
  4116. front: {
  4117. height: math.unit(12, "feet"),
  4118. weight: math.unit(3000, "lb"),
  4119. name: "Front",
  4120. image: {
  4121. source: "./media/characters/mech/front.svg",
  4122. extra: 2900 / 2770,
  4123. bottom: 110 / 3010
  4124. }
  4125. },
  4126. back: {
  4127. height: math.unit(12, "feet"),
  4128. weight: math.unit(3000, "lb"),
  4129. name: "Back",
  4130. image: {
  4131. source: "./media/characters/mech/back.svg",
  4132. extra: 3011 / 2890,
  4133. bottom: 94 / 3105
  4134. }
  4135. },
  4136. maw: {
  4137. height: math.unit(3.07, "feet"),
  4138. name: "Maw",
  4139. image: {
  4140. source: "./media/characters/mech/maw.svg"
  4141. }
  4142. },
  4143. head: {
  4144. height: math.unit(2.82, "feet"),
  4145. name: "Head",
  4146. image: {
  4147. source: "./media/characters/mech/head.svg"
  4148. }
  4149. },
  4150. dick: {
  4151. height: math.unit(1.43, "feet"),
  4152. name: "Dick",
  4153. image: {
  4154. source: "./media/characters/mech/dick.svg"
  4155. }
  4156. },
  4157. },
  4158. [
  4159. {
  4160. name: "Normal",
  4161. height: math.unit(12, "feet")
  4162. },
  4163. {
  4164. name: "Macro",
  4165. height: math.unit(300, "feet"),
  4166. default: true
  4167. },
  4168. {
  4169. name: "Macro+",
  4170. height: math.unit(1500, "feet")
  4171. },
  4172. ]
  4173. ))
  4174. characterMakers.push(() => makeCharacter(
  4175. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4176. {
  4177. front: {
  4178. height: math.unit(1.3, "meter"),
  4179. weight: math.unit(30, "kg"),
  4180. name: "Front",
  4181. image: {
  4182. source: "./media/characters/gregory/front.svg",
  4183. }
  4184. }
  4185. },
  4186. [
  4187. {
  4188. name: "Normal",
  4189. height: math.unit(1.3, "meter"),
  4190. default: true
  4191. },
  4192. {
  4193. name: "Macro",
  4194. height: math.unit(20, "meter")
  4195. }
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4200. {
  4201. front: {
  4202. height: math.unit(2.8, "meter"),
  4203. weight: math.unit(200, "kg"),
  4204. name: "Front",
  4205. image: {
  4206. source: "./media/characters/elory/front.svg",
  4207. }
  4208. }
  4209. },
  4210. [
  4211. {
  4212. name: "Normal",
  4213. height: math.unit(2.8, "meter"),
  4214. default: true
  4215. },
  4216. {
  4217. name: "Macro",
  4218. height: math.unit(38, "meter")
  4219. }
  4220. ]
  4221. ))
  4222. characterMakers.push(() => makeCharacter(
  4223. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4224. {
  4225. front: {
  4226. height: math.unit(470, "feet"),
  4227. weight: math.unit(924, "tons"),
  4228. name: "Front",
  4229. image: {
  4230. source: "./media/characters/angelpatamon/front.svg",
  4231. }
  4232. }
  4233. },
  4234. [
  4235. {
  4236. name: "Normal",
  4237. height: math.unit(470, "feet"),
  4238. default: true
  4239. },
  4240. {
  4241. name: "Deity Size I",
  4242. height: math.unit(28651.2, "km")
  4243. },
  4244. {
  4245. name: "Deity Size II",
  4246. height: math.unit(171907.2, "km")
  4247. }
  4248. ]
  4249. ))
  4250. characterMakers.push(() => makeCharacter(
  4251. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4252. {
  4253. side: {
  4254. height: math.unit(7.2, "meter"),
  4255. weight: math.unit(8.2, "tons"),
  4256. name: "Side",
  4257. image: {
  4258. source: "./media/characters/cryae/side.svg",
  4259. extra: 3500 / 1500
  4260. }
  4261. }
  4262. },
  4263. [
  4264. {
  4265. name: "Normal",
  4266. height: math.unit(7.2, "meter"),
  4267. default: true
  4268. }
  4269. ]
  4270. ))
  4271. characterMakers.push(() => makeCharacter(
  4272. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4273. {
  4274. front: {
  4275. height: math.unit(6, "feet"),
  4276. weight: math.unit(175, "lb"),
  4277. name: "Front",
  4278. image: {
  4279. source: "./media/characters/xera/front.svg",
  4280. extra: 2377 / 1972,
  4281. bottom: 75.5 / 2452
  4282. }
  4283. },
  4284. side: {
  4285. height: math.unit(6, "feet"),
  4286. weight: math.unit(175, "lb"),
  4287. name: "Side",
  4288. image: {
  4289. source: "./media/characters/xera/side.svg",
  4290. extra: 2345 / 2019,
  4291. bottom: 39.7 / 2384
  4292. }
  4293. },
  4294. back: {
  4295. height: math.unit(6, "feet"),
  4296. weight: math.unit(175, "lb"),
  4297. name: "Back",
  4298. image: {
  4299. source: "./media/characters/xera/back.svg",
  4300. extra: 2095 / 1984,
  4301. bottom: 67 / 2166
  4302. }
  4303. },
  4304. },
  4305. [
  4306. {
  4307. name: "Small",
  4308. height: math.unit(10, "feet")
  4309. },
  4310. {
  4311. name: "Macro",
  4312. height: math.unit(500, "meters"),
  4313. default: true
  4314. },
  4315. {
  4316. name: "Macro+",
  4317. height: math.unit(10, "km")
  4318. },
  4319. {
  4320. name: "Gigamacro",
  4321. height: math.unit(25000, "km")
  4322. },
  4323. {
  4324. name: "Teramacro",
  4325. height: math.unit(3e6, "km")
  4326. }
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4331. {
  4332. front: {
  4333. height: math.unit(6, "feet"),
  4334. weight: math.unit(175, "lb"),
  4335. name: "Front",
  4336. image: {
  4337. source: "./media/characters/nebula/front.svg",
  4338. extra: 2566 / 2362,
  4339. bottom: 81 / 2644
  4340. }
  4341. }
  4342. },
  4343. [
  4344. {
  4345. name: "Small",
  4346. height: math.unit(4.5, "meters")
  4347. },
  4348. {
  4349. name: "Macro",
  4350. height: math.unit(1500, "meters"),
  4351. default: true
  4352. },
  4353. {
  4354. name: "Megamacro",
  4355. height: math.unit(150, "km")
  4356. },
  4357. {
  4358. name: "Gigamacro",
  4359. height: math.unit(27000, "km")
  4360. }
  4361. ]
  4362. ))
  4363. characterMakers.push(() => makeCharacter(
  4364. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4365. {
  4366. front: {
  4367. height: math.unit(6, "feet"),
  4368. weight: math.unit(225, "lb"),
  4369. name: "Front",
  4370. image: {
  4371. source: "./media/characters/abysgar/front.svg"
  4372. }
  4373. }
  4374. },
  4375. [
  4376. {
  4377. name: "Small",
  4378. height: math.unit(4.5, "meters")
  4379. },
  4380. {
  4381. name: "Macro",
  4382. height: math.unit(1250, "meters"),
  4383. default: true
  4384. },
  4385. {
  4386. name: "Megamacro",
  4387. height: math.unit(125, "km")
  4388. },
  4389. {
  4390. name: "Gigamacro",
  4391. height: math.unit(26000, "km")
  4392. }
  4393. ]
  4394. ))
  4395. characterMakers.push(() => makeCharacter(
  4396. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4397. {
  4398. front: {
  4399. height: math.unit(6, "feet"),
  4400. weight: math.unit(180, "lb"),
  4401. name: "Front",
  4402. image: {
  4403. source: "./media/characters/yakuz/front.svg"
  4404. }
  4405. }
  4406. },
  4407. [
  4408. {
  4409. name: "Small",
  4410. height: math.unit(5, "meters")
  4411. },
  4412. {
  4413. name: "Macro",
  4414. height: math.unit(1500, "meters"),
  4415. default: true
  4416. },
  4417. {
  4418. name: "Megamacro",
  4419. height: math.unit(200, "km")
  4420. },
  4421. {
  4422. name: "Gigamacro",
  4423. height: math.unit(100000, "km")
  4424. }
  4425. ]
  4426. ))
  4427. characterMakers.push(() => makeCharacter(
  4428. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4429. {
  4430. front: {
  4431. height: math.unit(6, "feet"),
  4432. weight: math.unit(175, "lb"),
  4433. name: "Front",
  4434. image: {
  4435. source: "./media/characters/mirova/front.svg",
  4436. extra: 3334 / 3071,
  4437. bottom: 42 / 3375.6
  4438. }
  4439. }
  4440. },
  4441. [
  4442. {
  4443. name: "Small",
  4444. height: math.unit(5, "meters")
  4445. },
  4446. {
  4447. name: "Macro",
  4448. height: math.unit(900, "meters"),
  4449. default: true
  4450. },
  4451. {
  4452. name: "Megamacro",
  4453. height: math.unit(135, "km")
  4454. },
  4455. {
  4456. name: "Gigamacro",
  4457. height: math.unit(20000, "km")
  4458. }
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4463. {
  4464. side: {
  4465. height: math.unit(28.35, "feet"),
  4466. weight: math.unit(99.75, "tons"),
  4467. name: "Side",
  4468. image: {
  4469. source: "./media/characters/asana-mech/side.svg",
  4470. extra: 923 / 699,
  4471. bottom: 50 / 975
  4472. }
  4473. },
  4474. chaingun: {
  4475. height: math.unit(7, "feet"),
  4476. weight: math.unit(2400, "lb"),
  4477. name: "Chaingun",
  4478. image: {
  4479. source: "./media/characters/asana-mech/chaingun.svg"
  4480. }
  4481. },
  4482. laser: {
  4483. height: math.unit(7.12, "feet"),
  4484. weight: math.unit(2000, "lb"),
  4485. name: "Laser",
  4486. image: {
  4487. source: "./media/characters/asana-mech/laser.svg"
  4488. }
  4489. },
  4490. },
  4491. [
  4492. {
  4493. name: "Normal",
  4494. height: math.unit(28.35, "feet"),
  4495. default: true
  4496. },
  4497. {
  4498. name: "Macro",
  4499. height: math.unit(2500, "feet")
  4500. },
  4501. {
  4502. name: "Megamacro",
  4503. height: math.unit(25, "miles")
  4504. },
  4505. {
  4506. name: "Examacro",
  4507. height: math.unit(6e8, "lightyears")
  4508. },
  4509. ]
  4510. ))
  4511. characterMakers.push(() => makeCharacter(
  4512. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4513. {
  4514. front: {
  4515. height: math.unit(5, "meters"),
  4516. weight: math.unit(1000, "kg"),
  4517. name: "Front",
  4518. image: {
  4519. source: "./media/characters/asche/front.svg",
  4520. extra: 1258 / 1190,
  4521. bottom: 47 / 1305
  4522. }
  4523. },
  4524. frontUnderwear: {
  4525. height: math.unit(5, "meters"),
  4526. weight: math.unit(1000, "kg"),
  4527. name: "Front (Underwear)",
  4528. image: {
  4529. source: "./media/characters/asche/front-underwear.svg",
  4530. extra: 1258 / 1190,
  4531. bottom: 47 / 1305
  4532. }
  4533. },
  4534. frontDressed: {
  4535. height: math.unit(5, "meters"),
  4536. weight: math.unit(1000, "kg"),
  4537. name: "Front (Dressed)",
  4538. image: {
  4539. source: "./media/characters/asche/front-dressed.svg",
  4540. extra: 1258 / 1190,
  4541. bottom: 47 / 1305
  4542. }
  4543. },
  4544. frontArmor: {
  4545. height: math.unit(5, "meters"),
  4546. weight: math.unit(1000, "kg"),
  4547. name: "Front (Armored)",
  4548. image: {
  4549. source: "./media/characters/asche/front-armored.svg",
  4550. extra: 1374 / 1308,
  4551. bottom: 23 / 1397
  4552. }
  4553. },
  4554. mp724: {
  4555. height: math.unit(0.96, "meters"),
  4556. weight: math.unit(38, "kg"),
  4557. name: "H&K MP724",
  4558. image: {
  4559. source: "./media/characters/asche/h&k-mp724.svg"
  4560. }
  4561. },
  4562. side: {
  4563. height: math.unit(5, "meters"),
  4564. weight: math.unit(1000, "kg"),
  4565. name: "Side",
  4566. image: {
  4567. source: "./media/characters/asche/side.svg",
  4568. extra: 1717 / 1609,
  4569. bottom: 0.005
  4570. }
  4571. },
  4572. back: {
  4573. height: math.unit(5, "meters"),
  4574. weight: math.unit(1000, "kg"),
  4575. name: "Back",
  4576. image: {
  4577. source: "./media/characters/asche/back.svg",
  4578. extra: 1570 / 1501
  4579. }
  4580. },
  4581. },
  4582. [
  4583. {
  4584. name: "DEFCON 5",
  4585. height: math.unit(5, "meters")
  4586. },
  4587. {
  4588. name: "DEFCON 4",
  4589. height: math.unit(500, "meters"),
  4590. default: true
  4591. },
  4592. {
  4593. name: "DEFCON 3",
  4594. height: math.unit(5, "km")
  4595. },
  4596. {
  4597. name: "DEFCON 2",
  4598. height: math.unit(500, "km")
  4599. },
  4600. {
  4601. name: "DEFCON 1",
  4602. height: math.unit(500000, "km")
  4603. },
  4604. {
  4605. name: "DEFCON 0",
  4606. height: math.unit(3, "gigaparsecs")
  4607. },
  4608. ]
  4609. ))
  4610. characterMakers.push(() => makeCharacter(
  4611. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4612. {
  4613. front: {
  4614. height: math.unit(2, "meters"),
  4615. weight: math.unit(76, "kg"),
  4616. name: "Front",
  4617. image: {
  4618. source: "./media/characters/gale/front.svg"
  4619. }
  4620. },
  4621. frontAlt1: {
  4622. height: math.unit(2, "meters"),
  4623. weight: math.unit(76, "kg"),
  4624. name: "Front (Alt 1)",
  4625. image: {
  4626. source: "./media/characters/gale/front-alt-1.svg"
  4627. }
  4628. },
  4629. frontAlt2: {
  4630. height: math.unit(2, "meters"),
  4631. weight: math.unit(76, "kg"),
  4632. name: "Front (Alt 2)",
  4633. image: {
  4634. source: "./media/characters/gale/front-alt-2.svg"
  4635. }
  4636. },
  4637. },
  4638. [
  4639. {
  4640. name: "Normal",
  4641. height: math.unit(7, "feet")
  4642. },
  4643. {
  4644. name: "Macro",
  4645. height: math.unit(150, "feet"),
  4646. default: true
  4647. },
  4648. {
  4649. name: "Macro+",
  4650. height: math.unit(300, "feet")
  4651. },
  4652. ]
  4653. ))
  4654. characterMakers.push(() => makeCharacter(
  4655. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4656. {
  4657. front: {
  4658. height: math.unit(5 + 10/12, "feet"),
  4659. weight: math.unit(67, "kg"),
  4660. name: "Front",
  4661. image: {
  4662. source: "./media/characters/draylen/front.svg",
  4663. extra: 832/777,
  4664. bottom: 85/917
  4665. }
  4666. }
  4667. },
  4668. [
  4669. {
  4670. name: "Normal",
  4671. height: math.unit(5 + 10/12, "feet")
  4672. },
  4673. {
  4674. name: "Macro",
  4675. height: math.unit(150, "feet"),
  4676. default: true
  4677. }
  4678. ]
  4679. ))
  4680. characterMakers.push(() => makeCharacter(
  4681. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4682. {
  4683. front: {
  4684. height: math.unit(7 + 9 / 12, "feet"),
  4685. weight: math.unit(379, "lbs"),
  4686. name: "Front",
  4687. image: {
  4688. source: "./media/characters/chez/front.svg"
  4689. }
  4690. },
  4691. side: {
  4692. height: math.unit(7 + 9 / 12, "feet"),
  4693. weight: math.unit(379, "lbs"),
  4694. name: "Side",
  4695. image: {
  4696. source: "./media/characters/chez/side.svg"
  4697. }
  4698. }
  4699. },
  4700. [
  4701. {
  4702. name: "Normal",
  4703. height: math.unit(7 + 9 / 12, "feet"),
  4704. default: true
  4705. },
  4706. {
  4707. name: "God King",
  4708. height: math.unit(9750000, "meters")
  4709. }
  4710. ]
  4711. ))
  4712. characterMakers.push(() => makeCharacter(
  4713. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4714. {
  4715. front: {
  4716. height: math.unit(6, "feet"),
  4717. weight: math.unit(275, "lbs"),
  4718. name: "Front",
  4719. image: {
  4720. source: "./media/characters/kaylum/front.svg",
  4721. bottom: 0.01,
  4722. extra: 1166 / 1031
  4723. }
  4724. },
  4725. frontWingless: {
  4726. height: math.unit(6, "feet"),
  4727. weight: math.unit(275, "lbs"),
  4728. name: "Front (Wingless)",
  4729. image: {
  4730. source: "./media/characters/kaylum/front-wingless.svg",
  4731. bottom: 0.01,
  4732. extra: 1117 / 1031
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Normal",
  4739. height: math.unit(3.05, "meters")
  4740. },
  4741. {
  4742. name: "Master",
  4743. height: math.unit(5.5, "meters")
  4744. },
  4745. {
  4746. name: "Rampage",
  4747. height: math.unit(19, "meters")
  4748. },
  4749. {
  4750. name: "Macro Lite",
  4751. height: math.unit(37, "meters")
  4752. },
  4753. {
  4754. name: "Hyper Predator",
  4755. height: math.unit(61, "meters")
  4756. },
  4757. {
  4758. name: "Macro",
  4759. height: math.unit(138, "meters"),
  4760. default: true
  4761. }
  4762. ]
  4763. ))
  4764. characterMakers.push(() => makeCharacter(
  4765. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4766. {
  4767. front: {
  4768. height: math.unit(6, "feet"),
  4769. weight: math.unit(150, "lbs"),
  4770. name: "Front",
  4771. image: {
  4772. source: "./media/characters/geta/front.svg"
  4773. }
  4774. }
  4775. },
  4776. [
  4777. {
  4778. name: "Micro",
  4779. height: math.unit(3, "inches"),
  4780. default: true
  4781. },
  4782. {
  4783. name: "Normal",
  4784. height: math.unit(5 + 5 / 12, "feet")
  4785. }
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(6, "feet"),
  4793. weight: math.unit(300, "lbs"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/tyrnn/front.svg"
  4797. }
  4798. }
  4799. },
  4800. [
  4801. {
  4802. name: "Main Height",
  4803. height: math.unit(355, "feet"),
  4804. default: true
  4805. },
  4806. {
  4807. name: "Fave. Height",
  4808. height: math.unit(2400, "feet")
  4809. }
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4814. {
  4815. front: {
  4816. height: math.unit(6, "feet"),
  4817. weight: math.unit(300, "lbs"),
  4818. name: "Front",
  4819. image: {
  4820. source: "./media/characters/appledectomy/front.svg"
  4821. }
  4822. }
  4823. },
  4824. [
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(2500, "feet")
  4828. },
  4829. {
  4830. name: "Megamacro",
  4831. height: math.unit(50, "miles"),
  4832. default: true
  4833. },
  4834. {
  4835. name: "Gigamacro",
  4836. height: math.unit(5000, "miles")
  4837. },
  4838. {
  4839. name: "Teramacro",
  4840. height: math.unit(250000, "miles")
  4841. },
  4842. ]
  4843. ))
  4844. characterMakers.push(() => makeCharacter(
  4845. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4846. {
  4847. front: {
  4848. height: math.unit(6, "feet"),
  4849. weight: math.unit(200, "lbs"),
  4850. name: "Front",
  4851. image: {
  4852. source: "./media/characters/vulpes/front.svg",
  4853. extra: 573 / 543,
  4854. bottom: 0.033
  4855. }
  4856. },
  4857. side: {
  4858. height: math.unit(6, "feet"),
  4859. weight: math.unit(200, "lbs"),
  4860. name: "Side",
  4861. image: {
  4862. source: "./media/characters/vulpes/side.svg",
  4863. extra: 577 / 549,
  4864. bottom: 11 / 588
  4865. }
  4866. },
  4867. back: {
  4868. height: math.unit(6, "feet"),
  4869. weight: math.unit(200, "lbs"),
  4870. name: "Back",
  4871. image: {
  4872. source: "./media/characters/vulpes/back.svg",
  4873. extra: 573 / 549,
  4874. bottom: 20 / 593
  4875. }
  4876. },
  4877. feet: {
  4878. height: math.unit(1.276, "feet"),
  4879. name: "Feet",
  4880. image: {
  4881. source: "./media/characters/vulpes/feet.svg"
  4882. }
  4883. },
  4884. maw: {
  4885. height: math.unit(1.18, "feet"),
  4886. name: "Maw",
  4887. image: {
  4888. source: "./media/characters/vulpes/maw.svg"
  4889. }
  4890. },
  4891. },
  4892. [
  4893. {
  4894. name: "Micro",
  4895. height: math.unit(2, "inches")
  4896. },
  4897. {
  4898. name: "Normal",
  4899. height: math.unit(6.3, "feet")
  4900. },
  4901. {
  4902. name: "Macro",
  4903. height: math.unit(850, "feet")
  4904. },
  4905. {
  4906. name: "Megamacro",
  4907. height: math.unit(7500, "feet"),
  4908. default: true
  4909. },
  4910. {
  4911. name: "Gigamacro",
  4912. height: math.unit(570000, "miles")
  4913. }
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4918. {
  4919. front: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(210, "lbs"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/rain-fallen/front.svg"
  4925. }
  4926. },
  4927. side: {
  4928. height: math.unit(6, "feet"),
  4929. weight: math.unit(210, "lbs"),
  4930. name: "Side",
  4931. image: {
  4932. source: "./media/characters/rain-fallen/side.svg"
  4933. }
  4934. },
  4935. back: {
  4936. height: math.unit(6, "feet"),
  4937. weight: math.unit(210, "lbs"),
  4938. name: "Back",
  4939. image: {
  4940. source: "./media/characters/rain-fallen/back.svg"
  4941. }
  4942. },
  4943. feral: {
  4944. height: math.unit(9, "feet"),
  4945. weight: math.unit(700, "lbs"),
  4946. name: "Feral",
  4947. image: {
  4948. source: "./media/characters/rain-fallen/feral.svg"
  4949. }
  4950. },
  4951. },
  4952. [
  4953. {
  4954. name: "Meddling with Mortals",
  4955. height: math.unit(8 + 8/12, "feet")
  4956. },
  4957. {
  4958. name: "Normal",
  4959. height: math.unit(5, "meter")
  4960. },
  4961. {
  4962. name: "Macro",
  4963. height: math.unit(150, "meter"),
  4964. default: true
  4965. },
  4966. {
  4967. name: "Megamacro",
  4968. height: math.unit(278e6, "meter")
  4969. },
  4970. {
  4971. name: "Gigamacro",
  4972. height: math.unit(2e9, "meter")
  4973. },
  4974. {
  4975. name: "Teramacro",
  4976. height: math.unit(8e12, "meter")
  4977. },
  4978. {
  4979. name: "Devourer",
  4980. height: math.unit(14, "zettameters")
  4981. },
  4982. {
  4983. name: "Scarlet King",
  4984. height: math.unit(18, "yottameters")
  4985. },
  4986. {
  4987. name: "Void",
  4988. height: math.unit(1e88, "yottameters")
  4989. }
  4990. ]
  4991. ))
  4992. characterMakers.push(() => makeCharacter(
  4993. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4994. {
  4995. standing: {
  4996. height: math.unit(6, "feet"),
  4997. weight: math.unit(180, "lbs"),
  4998. name: "Standing",
  4999. image: {
  5000. source: "./media/characters/zaakira/standing.svg",
  5001. extra: 1599/1504,
  5002. bottom: 39/1638
  5003. }
  5004. },
  5005. laying: {
  5006. height: math.unit(3, "feet"),
  5007. weight: math.unit(180, "lbs"),
  5008. name: "Laying",
  5009. image: {
  5010. source: "./media/characters/zaakira/laying.svg"
  5011. }
  5012. },
  5013. },
  5014. [
  5015. {
  5016. name: "Normal",
  5017. height: math.unit(12, "feet")
  5018. },
  5019. {
  5020. name: "Macro",
  5021. height: math.unit(279, "feet"),
  5022. default: true
  5023. }
  5024. ]
  5025. ))
  5026. characterMakers.push(() => makeCharacter(
  5027. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5028. {
  5029. femSfw: {
  5030. height: math.unit(8, "feet"),
  5031. weight: math.unit(350, "lb"),
  5032. name: "Fem",
  5033. image: {
  5034. source: "./media/characters/sigvald/fem-sfw.svg",
  5035. extra: 182 / 164,
  5036. bottom: 8.7 / 190.5
  5037. }
  5038. },
  5039. femNsfw: {
  5040. height: math.unit(8, "feet"),
  5041. weight: math.unit(350, "lb"),
  5042. name: "Fem (NSFW)",
  5043. image: {
  5044. source: "./media/characters/sigvald/fem-nsfw.svg",
  5045. extra: 182 / 164,
  5046. bottom: 8.7 / 190.5
  5047. }
  5048. },
  5049. maleNsfw: {
  5050. height: math.unit(8, "feet"),
  5051. weight: math.unit(350, "lb"),
  5052. name: "Male (NSFW)",
  5053. image: {
  5054. source: "./media/characters/sigvald/male-nsfw.svg",
  5055. extra: 182 / 164,
  5056. bottom: 8.7 / 190.5
  5057. }
  5058. },
  5059. hermNsfw: {
  5060. height: math.unit(8, "feet"),
  5061. weight: math.unit(350, "lb"),
  5062. name: "Herm (NSFW)",
  5063. image: {
  5064. source: "./media/characters/sigvald/herm-nsfw.svg",
  5065. extra: 182 / 164,
  5066. bottom: 8.7 / 190.5
  5067. }
  5068. },
  5069. dick: {
  5070. height: math.unit(2.36, "feet"),
  5071. name: "Dick",
  5072. image: {
  5073. source: "./media/characters/sigvald/dick.svg"
  5074. }
  5075. },
  5076. eye: {
  5077. height: math.unit(0.31, "feet"),
  5078. name: "Eye",
  5079. image: {
  5080. source: "./media/characters/sigvald/eye.svg"
  5081. }
  5082. },
  5083. mouth: {
  5084. height: math.unit(0.92, "feet"),
  5085. name: "Mouth",
  5086. image: {
  5087. source: "./media/characters/sigvald/mouth.svg"
  5088. }
  5089. },
  5090. paws: {
  5091. height: math.unit(2.2, "feet"),
  5092. name: "Paws",
  5093. image: {
  5094. source: "./media/characters/sigvald/paws.svg"
  5095. }
  5096. }
  5097. },
  5098. [
  5099. {
  5100. name: "Normal",
  5101. height: math.unit(8, "feet")
  5102. },
  5103. {
  5104. name: "Large",
  5105. height: math.unit(12, "feet")
  5106. },
  5107. {
  5108. name: "Larger",
  5109. height: math.unit(20, "feet")
  5110. },
  5111. {
  5112. name: "Macro",
  5113. height: math.unit(150, "feet")
  5114. },
  5115. {
  5116. name: "Macro+",
  5117. height: math.unit(200, "feet"),
  5118. default: true
  5119. },
  5120. ]
  5121. ))
  5122. characterMakers.push(() => makeCharacter(
  5123. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5124. {
  5125. side: {
  5126. height: math.unit(12, "feet"),
  5127. weight: math.unit(2000, "kg"),
  5128. name: "Side",
  5129. image: {
  5130. source: "./media/characters/scott/side.svg",
  5131. extra: 754 / 724,
  5132. bottom: 0.069
  5133. }
  5134. },
  5135. upright: {
  5136. height: math.unit(12, "feet"),
  5137. weight: math.unit(2000, "kg"),
  5138. name: "Upright",
  5139. image: {
  5140. source: "./media/characters/scott/upright.svg",
  5141. extra: 3881 / 3722,
  5142. bottom: 0.05
  5143. }
  5144. },
  5145. },
  5146. [
  5147. {
  5148. name: "Normal",
  5149. height: math.unit(12, "feet"),
  5150. default: true
  5151. },
  5152. ]
  5153. ))
  5154. characterMakers.push(() => makeCharacter(
  5155. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5156. {
  5157. side: {
  5158. height: math.unit(8, "meters"),
  5159. weight: math.unit(84755, "lbs"),
  5160. name: "Side",
  5161. image: {
  5162. source: "./media/characters/tobias/side.svg",
  5163. extra: 1474 / 1096,
  5164. bottom: 38.9 / 1513.1235
  5165. }
  5166. },
  5167. },
  5168. [
  5169. {
  5170. name: "Normal",
  5171. height: math.unit(8, "meters"),
  5172. default: true
  5173. },
  5174. ]
  5175. ))
  5176. characterMakers.push(() => makeCharacter(
  5177. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5178. {
  5179. front: {
  5180. height: math.unit(5.5, "feet"),
  5181. weight: math.unit(400, "lbs"),
  5182. name: "Front",
  5183. image: {
  5184. source: "./media/characters/kieran/front.svg",
  5185. extra: 2694 / 2364,
  5186. bottom: 217 / 2908
  5187. }
  5188. },
  5189. side: {
  5190. height: math.unit(5.5, "feet"),
  5191. weight: math.unit(400, "lbs"),
  5192. name: "Side",
  5193. image: {
  5194. source: "./media/characters/kieran/side.svg",
  5195. extra: 875 / 777,
  5196. bottom: 84.6 / 959
  5197. }
  5198. },
  5199. },
  5200. [
  5201. {
  5202. name: "Normal",
  5203. height: math.unit(5.5, "feet"),
  5204. default: true
  5205. },
  5206. ]
  5207. ))
  5208. characterMakers.push(() => makeCharacter(
  5209. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5210. {
  5211. side: {
  5212. height: math.unit(2, "meters"),
  5213. weight: math.unit(70, "kg"),
  5214. name: "Side",
  5215. image: {
  5216. source: "./media/characters/sanya/side.svg",
  5217. bottom: 0.02,
  5218. extra: 1.02
  5219. }
  5220. },
  5221. },
  5222. [
  5223. {
  5224. name: "Small",
  5225. height: math.unit(2, "meters")
  5226. },
  5227. {
  5228. name: "Normal",
  5229. height: math.unit(3, "meters")
  5230. },
  5231. {
  5232. name: "Macro",
  5233. height: math.unit(16, "meters"),
  5234. default: true
  5235. },
  5236. ]
  5237. ))
  5238. characterMakers.push(() => makeCharacter(
  5239. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5240. {
  5241. front: {
  5242. height: math.unit(2, "meters"),
  5243. weight: math.unit(120, "kg"),
  5244. name: "Front",
  5245. image: {
  5246. source: "./media/characters/miranda/front.svg",
  5247. extra: 195 / 185,
  5248. bottom: 10.9 / 206.5
  5249. }
  5250. },
  5251. back: {
  5252. height: math.unit(2, "meters"),
  5253. weight: math.unit(120, "kg"),
  5254. name: "Back",
  5255. image: {
  5256. source: "./media/characters/miranda/back.svg",
  5257. extra: 201 / 193,
  5258. bottom: 2.3 / 203.7
  5259. }
  5260. },
  5261. },
  5262. [
  5263. {
  5264. name: "Normal",
  5265. height: math.unit(10, "feet"),
  5266. default: true
  5267. }
  5268. ]
  5269. ))
  5270. characterMakers.push(() => makeCharacter(
  5271. { name: "James", species: ["deer"], tags: ["anthro"] },
  5272. {
  5273. side: {
  5274. height: math.unit(2, "meters"),
  5275. weight: math.unit(100, "kg"),
  5276. name: "Front",
  5277. image: {
  5278. source: "./media/characters/james/front.svg",
  5279. extra: 10 / 8.5
  5280. }
  5281. },
  5282. },
  5283. [
  5284. {
  5285. name: "Normal",
  5286. height: math.unit(8.5, "feet"),
  5287. default: true
  5288. }
  5289. ]
  5290. ))
  5291. characterMakers.push(() => makeCharacter(
  5292. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5293. {
  5294. side: {
  5295. height: math.unit(9.5, "feet"),
  5296. weight: math.unit(2500, "lbs"),
  5297. name: "Side",
  5298. image: {
  5299. source: "./media/characters/heather/side.svg"
  5300. }
  5301. },
  5302. },
  5303. [
  5304. {
  5305. name: "Normal",
  5306. height: math.unit(9.5, "feet"),
  5307. default: true
  5308. }
  5309. ]
  5310. ))
  5311. characterMakers.push(() => makeCharacter(
  5312. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5313. {
  5314. side: {
  5315. height: math.unit(6.5, "feet"),
  5316. weight: math.unit(400, "lbs"),
  5317. name: "Side",
  5318. image: {
  5319. source: "./media/characters/lukas/side.svg",
  5320. extra: 7.25 / 6.5
  5321. }
  5322. },
  5323. },
  5324. [
  5325. {
  5326. name: "Normal",
  5327. height: math.unit(6.5, "feet"),
  5328. default: true
  5329. }
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5334. {
  5335. side: {
  5336. height: math.unit(5, "feet"),
  5337. weight: math.unit(3000, "lbs"),
  5338. name: "Side",
  5339. image: {
  5340. source: "./media/characters/louise/side.svg"
  5341. }
  5342. },
  5343. },
  5344. [
  5345. {
  5346. name: "Normal",
  5347. height: math.unit(5, "feet"),
  5348. default: true
  5349. }
  5350. ]
  5351. ))
  5352. characterMakers.push(() => makeCharacter(
  5353. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5354. {
  5355. side: {
  5356. height: math.unit(6, "feet"),
  5357. weight: math.unit(150, "lbs"),
  5358. name: "Side",
  5359. image: {
  5360. source: "./media/characters/ramona/side.svg",
  5361. extra: 871/854,
  5362. bottom: 41/912
  5363. }
  5364. },
  5365. },
  5366. [
  5367. {
  5368. name: "Normal",
  5369. height: math.unit(5.3, "meters"),
  5370. default: true
  5371. },
  5372. {
  5373. name: "Macro",
  5374. height: math.unit(20, "stories")
  5375. },
  5376. {
  5377. name: "Macro+",
  5378. height: math.unit(50, "stories")
  5379. },
  5380. ]
  5381. ))
  5382. characterMakers.push(() => makeCharacter(
  5383. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5384. {
  5385. standing: {
  5386. height: math.unit(5.75, "feet"),
  5387. weight: math.unit(160, "lbs"),
  5388. name: "Standing",
  5389. image: {
  5390. source: "./media/characters/deerpuff/standing.svg",
  5391. extra: 682 / 624
  5392. }
  5393. },
  5394. sitting: {
  5395. height: math.unit(5.75 / 1.79, "feet"),
  5396. weight: math.unit(160, "lbs"),
  5397. name: "Sitting",
  5398. image: {
  5399. source: "./media/characters/deerpuff/sitting.svg",
  5400. bottom: 44 / 400,
  5401. extra: 1
  5402. }
  5403. },
  5404. taurLaying: {
  5405. height: math.unit(6, "feet"),
  5406. weight: math.unit(400, "lbs"),
  5407. name: "Taur (Laying)",
  5408. image: {
  5409. source: "./media/characters/deerpuff/taur-laying.svg"
  5410. }
  5411. },
  5412. },
  5413. [
  5414. {
  5415. name: "Puffball",
  5416. height: math.unit(6, "inches")
  5417. },
  5418. {
  5419. name: "Normalpuff",
  5420. height: math.unit(5.75, "feet")
  5421. },
  5422. {
  5423. name: "Macropuff",
  5424. height: math.unit(1500, "feet"),
  5425. default: true
  5426. },
  5427. {
  5428. name: "Megapuff",
  5429. height: math.unit(500, "miles")
  5430. },
  5431. {
  5432. name: "Gigapuff",
  5433. height: math.unit(250000, "miles")
  5434. },
  5435. {
  5436. name: "Omegapuff",
  5437. height: math.unit(1000, "lightyears")
  5438. },
  5439. ]
  5440. ))
  5441. characterMakers.push(() => makeCharacter(
  5442. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5443. {
  5444. stomping: {
  5445. height: math.unit(6, "feet"),
  5446. weight: math.unit(170, "lbs"),
  5447. name: "Stomping",
  5448. image: {
  5449. source: "./media/characters/vivian/stomping.svg"
  5450. }
  5451. },
  5452. sitting: {
  5453. height: math.unit(6 / 1.75, "feet"),
  5454. weight: math.unit(170, "lbs"),
  5455. name: "Sitting",
  5456. image: {
  5457. source: "./media/characters/vivian/sitting.svg",
  5458. bottom: 1 / 6.4,
  5459. extra: 1,
  5460. }
  5461. },
  5462. },
  5463. [
  5464. {
  5465. name: "Normal",
  5466. height: math.unit(7, "feet"),
  5467. default: true
  5468. },
  5469. {
  5470. name: "Macro",
  5471. height: math.unit(10, "stories")
  5472. },
  5473. {
  5474. name: "Macro+",
  5475. height: math.unit(30, "stories")
  5476. },
  5477. {
  5478. name: "Megamacro",
  5479. height: math.unit(10, "miles")
  5480. },
  5481. {
  5482. name: "Megamacro+",
  5483. height: math.unit(2750000, "meters")
  5484. },
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5489. {
  5490. front: {
  5491. height: math.unit(6, "feet"),
  5492. weight: math.unit(160, "lbs"),
  5493. name: "Front",
  5494. image: {
  5495. source: "./media/characters/prince/front.svg",
  5496. extra: 3400 / 3000
  5497. }
  5498. },
  5499. jumping: {
  5500. height: math.unit(6, "feet"),
  5501. weight: math.unit(160, "lbs"),
  5502. name: "Jumping",
  5503. image: {
  5504. source: "./media/characters/prince/jump.svg",
  5505. extra: 2555 / 2134
  5506. }
  5507. },
  5508. },
  5509. [
  5510. {
  5511. name: "Normal",
  5512. height: math.unit(7.75, "feet"),
  5513. default: true
  5514. },
  5515. {
  5516. name: "Not cute",
  5517. height: math.unit(17, "feet")
  5518. },
  5519. {
  5520. name: "I said NOT",
  5521. height: math.unit(91, "feet")
  5522. },
  5523. {
  5524. name: "Please stop",
  5525. height: math.unit(560, "feet")
  5526. },
  5527. {
  5528. name: "What have you done",
  5529. height: math.unit(2200, "feet")
  5530. },
  5531. {
  5532. name: "Deer God",
  5533. height: math.unit(3.6, "miles")
  5534. },
  5535. ]
  5536. ))
  5537. characterMakers.push(() => makeCharacter(
  5538. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5539. {
  5540. standing: {
  5541. height: math.unit(6, "feet"),
  5542. weight: math.unit(300, "lbs"),
  5543. name: "Standing",
  5544. image: {
  5545. source: "./media/characters/psymon/standing.svg",
  5546. extra: 1888 / 1810,
  5547. bottom: 0.05
  5548. }
  5549. },
  5550. slithering: {
  5551. height: math.unit(6, "feet"),
  5552. weight: math.unit(300, "lbs"),
  5553. name: "Slithering",
  5554. image: {
  5555. source: "./media/characters/psymon/slithering.svg",
  5556. extra: 1330 / 1224
  5557. }
  5558. },
  5559. slitheringAlt: {
  5560. height: math.unit(6, "feet"),
  5561. weight: math.unit(300, "lbs"),
  5562. name: "Slithering (Alt)",
  5563. image: {
  5564. source: "./media/characters/psymon/slithering-alt.svg",
  5565. extra: 1330 / 1224
  5566. }
  5567. },
  5568. },
  5569. [
  5570. {
  5571. name: "Normal",
  5572. height: math.unit(11.25, "feet"),
  5573. default: true
  5574. },
  5575. {
  5576. name: "Large",
  5577. height: math.unit(27, "feet")
  5578. },
  5579. {
  5580. name: "Giant",
  5581. height: math.unit(87, "feet")
  5582. },
  5583. {
  5584. name: "Macro",
  5585. height: math.unit(365, "feet")
  5586. },
  5587. {
  5588. name: "Megamacro",
  5589. height: math.unit(3, "miles")
  5590. },
  5591. {
  5592. name: "World Serpent",
  5593. height: math.unit(8000, "miles")
  5594. },
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(6, "feet"),
  5602. weight: math.unit(180, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/daimos/front.svg",
  5606. extra: 4160 / 3897,
  5607. bottom: 0.021
  5608. }
  5609. }
  5610. },
  5611. [
  5612. {
  5613. name: "Normal",
  5614. height: math.unit(8, "feet"),
  5615. default: true
  5616. },
  5617. {
  5618. name: "Big Dog",
  5619. height: math.unit(22, "feet")
  5620. },
  5621. {
  5622. name: "Macro",
  5623. height: math.unit(127, "feet")
  5624. },
  5625. {
  5626. name: "Megamacro",
  5627. height: math.unit(3600, "feet")
  5628. },
  5629. ]
  5630. ))
  5631. characterMakers.push(() => makeCharacter(
  5632. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5633. {
  5634. side: {
  5635. height: math.unit(6, "feet"),
  5636. weight: math.unit(180, "lbs"),
  5637. name: "Side",
  5638. image: {
  5639. source: "./media/characters/blake/side.svg",
  5640. extra: 1212 / 1120,
  5641. bottom: 0.05
  5642. }
  5643. },
  5644. crouched: {
  5645. height: math.unit(6 * 0.57, "feet"),
  5646. weight: math.unit(180, "lbs"),
  5647. name: "Crouched",
  5648. image: {
  5649. source: "./media/characters/blake/crouched.svg",
  5650. extra: 840 / 587,
  5651. bottom: 0.04
  5652. }
  5653. },
  5654. bent: {
  5655. height: math.unit(6 * 0.75, "feet"),
  5656. weight: math.unit(180, "lbs"),
  5657. name: "Bent",
  5658. image: {
  5659. source: "./media/characters/blake/bent.svg",
  5660. extra: 592 / 544,
  5661. bottom: 0.035
  5662. }
  5663. },
  5664. },
  5665. [
  5666. {
  5667. name: "Normal",
  5668. height: math.unit(8 + 1 / 6, "feet"),
  5669. default: true
  5670. },
  5671. {
  5672. name: "Big Backside",
  5673. height: math.unit(37, "feet")
  5674. },
  5675. {
  5676. name: "Subway Shredder",
  5677. height: math.unit(72, "feet")
  5678. },
  5679. {
  5680. name: "City Carver",
  5681. height: math.unit(1675, "feet")
  5682. },
  5683. {
  5684. name: "Tectonic Tweaker",
  5685. height: math.unit(2300, "miles")
  5686. },
  5687. ]
  5688. ))
  5689. characterMakers.push(() => makeCharacter(
  5690. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5691. {
  5692. front: {
  5693. height: math.unit(6, "feet"),
  5694. weight: math.unit(180, "lbs"),
  5695. name: "Front",
  5696. image: {
  5697. source: "./media/characters/guisetto/front.svg",
  5698. extra: 856 / 817,
  5699. bottom: 0.06
  5700. }
  5701. },
  5702. airborne: {
  5703. height: math.unit(6, "feet"),
  5704. weight: math.unit(180, "lbs"),
  5705. name: "Airborne",
  5706. image: {
  5707. source: "./media/characters/guisetto/airborne.svg",
  5708. extra: 584 / 525
  5709. }
  5710. },
  5711. },
  5712. [
  5713. {
  5714. name: "Normal",
  5715. height: math.unit(10 + 11 / 12, "feet"),
  5716. default: true
  5717. },
  5718. {
  5719. name: "Large",
  5720. height: math.unit(35, "feet")
  5721. },
  5722. {
  5723. name: "Macro",
  5724. height: math.unit(475, "feet")
  5725. },
  5726. ]
  5727. ))
  5728. characterMakers.push(() => makeCharacter(
  5729. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5730. {
  5731. front: {
  5732. height: math.unit(6, "feet"),
  5733. weight: math.unit(180, "lbs"),
  5734. name: "Front",
  5735. image: {
  5736. source: "./media/characters/luxor/front.svg",
  5737. extra: 2940 / 2152
  5738. }
  5739. },
  5740. back: {
  5741. height: math.unit(6, "feet"),
  5742. weight: math.unit(180, "lbs"),
  5743. name: "Back",
  5744. image: {
  5745. source: "./media/characters/luxor/back.svg",
  5746. extra: 1083 / 960
  5747. }
  5748. },
  5749. },
  5750. [
  5751. {
  5752. name: "Normal",
  5753. height: math.unit(5 + 5 / 6, "feet"),
  5754. default: true
  5755. },
  5756. {
  5757. name: "Lamp",
  5758. height: math.unit(50, "feet")
  5759. },
  5760. {
  5761. name: "Lämp",
  5762. height: math.unit(300, "feet")
  5763. },
  5764. {
  5765. name: "The sun is a lamp",
  5766. height: math.unit(250000, "miles")
  5767. },
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5772. {
  5773. front: {
  5774. height: math.unit(6, "feet"),
  5775. weight: math.unit(50, "lbs"),
  5776. name: "Front",
  5777. image: {
  5778. source: "./media/characters/huoyan/front.svg"
  5779. }
  5780. },
  5781. side: {
  5782. height: math.unit(6, "feet"),
  5783. weight: math.unit(180, "lbs"),
  5784. name: "Side",
  5785. image: {
  5786. source: "./media/characters/huoyan/side.svg"
  5787. }
  5788. },
  5789. },
  5790. [
  5791. {
  5792. name: "Chef",
  5793. height: math.unit(9, "feet")
  5794. },
  5795. {
  5796. name: "Normal",
  5797. height: math.unit(65, "feet"),
  5798. default: true
  5799. },
  5800. {
  5801. name: "Macro",
  5802. height: math.unit(780, "feet")
  5803. },
  5804. {
  5805. name: "Flaming Mountain",
  5806. height: math.unit(4.8, "miles")
  5807. },
  5808. {
  5809. name: "Celestial",
  5810. height: math.unit(765000, "miles")
  5811. },
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5816. {
  5817. front: {
  5818. height: math.unit(5 + 3 / 4, "feet"),
  5819. weight: math.unit(120, "lbs"),
  5820. name: "Front",
  5821. image: {
  5822. source: "./media/characters/tails/front.svg"
  5823. }
  5824. }
  5825. },
  5826. [
  5827. {
  5828. name: "Normal",
  5829. height: math.unit(5 + 3 / 4, "feet"),
  5830. default: true
  5831. }
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5836. {
  5837. front: {
  5838. height: math.unit(4, "feet"),
  5839. weight: math.unit(50, "lbs"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/rainy/front.svg"
  5843. }
  5844. }
  5845. },
  5846. [
  5847. {
  5848. name: "Macro",
  5849. height: math.unit(800, "feet"),
  5850. default: true
  5851. }
  5852. ]
  5853. ))
  5854. characterMakers.push(() => makeCharacter(
  5855. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5856. {
  5857. front: {
  5858. height: math.unit(6, "feet"),
  5859. weight: math.unit(150, "lbs"),
  5860. name: "Front",
  5861. image: {
  5862. source: "./media/characters/rainier/front.svg"
  5863. }
  5864. }
  5865. },
  5866. [
  5867. {
  5868. name: "Micro",
  5869. height: math.unit(2, "mm"),
  5870. default: true
  5871. }
  5872. ]
  5873. ))
  5874. characterMakers.push(() => makeCharacter(
  5875. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5876. {
  5877. front: {
  5878. height: math.unit(8 + 4/12, "feet"),
  5879. name: "Front",
  5880. image: {
  5881. source: "./media/characters/andy-renard/front.svg",
  5882. extra: 1839/1726,
  5883. bottom: 134/1973
  5884. }
  5885. },
  5886. back: {
  5887. height: math.unit(8 + 4/12, "feet"),
  5888. name: "Back",
  5889. image: {
  5890. source: "./media/characters/andy-renard/back.svg",
  5891. extra: 1838/1710,
  5892. bottom: 105/1943
  5893. }
  5894. },
  5895. },
  5896. [
  5897. {
  5898. name: "Tall",
  5899. height: math.unit(8 + 4/12, "feet")
  5900. },
  5901. {
  5902. name: "Mini Macro",
  5903. height: math.unit(15, "feet"),
  5904. default: true
  5905. },
  5906. {
  5907. name: "Macro",
  5908. height: math.unit(100, "feet")
  5909. },
  5910. {
  5911. name: "Mega Macro",
  5912. height: math.unit(1000, "feet")
  5913. },
  5914. {
  5915. name: "Giga Macro",
  5916. height: math.unit(10, "miles")
  5917. },
  5918. {
  5919. name: "God Macro",
  5920. height: math.unit(1, "multiverse")
  5921. },
  5922. ]
  5923. ))
  5924. characterMakers.push(() => makeCharacter(
  5925. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5926. {
  5927. front: {
  5928. height: math.unit(6, "feet"),
  5929. weight: math.unit(210, "lbs"),
  5930. name: "Front",
  5931. image: {
  5932. source: "./media/characters/cimmaron/front-sfw.svg",
  5933. extra: 701 / 676,
  5934. bottom: 0.046
  5935. }
  5936. },
  5937. back: {
  5938. height: math.unit(6, "feet"),
  5939. weight: math.unit(210, "lbs"),
  5940. name: "Back",
  5941. image: {
  5942. source: "./media/characters/cimmaron/back-sfw.svg",
  5943. extra: 701 / 676,
  5944. bottom: 0.046
  5945. }
  5946. },
  5947. frontNsfw: {
  5948. height: math.unit(6, "feet"),
  5949. weight: math.unit(210, "lbs"),
  5950. name: "Front (NSFW)",
  5951. image: {
  5952. source: "./media/characters/cimmaron/front-nsfw.svg",
  5953. extra: 701 / 676,
  5954. bottom: 0.046
  5955. }
  5956. },
  5957. backNsfw: {
  5958. height: math.unit(6, "feet"),
  5959. weight: math.unit(210, "lbs"),
  5960. name: "Back (NSFW)",
  5961. image: {
  5962. source: "./media/characters/cimmaron/back-nsfw.svg",
  5963. extra: 701 / 676,
  5964. bottom: 0.046
  5965. }
  5966. },
  5967. dick: {
  5968. height: math.unit(1.714, "feet"),
  5969. name: "Dick",
  5970. image: {
  5971. source: "./media/characters/cimmaron/dick.svg"
  5972. }
  5973. },
  5974. },
  5975. [
  5976. {
  5977. name: "Normal",
  5978. height: math.unit(6, "feet"),
  5979. default: true
  5980. },
  5981. {
  5982. name: "Macro Mayor",
  5983. height: math.unit(350, "meters")
  5984. },
  5985. ]
  5986. ))
  5987. characterMakers.push(() => makeCharacter(
  5988. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5989. {
  5990. front: {
  5991. height: math.unit(6, "feet"),
  5992. weight: math.unit(200, "lbs"),
  5993. name: "Front",
  5994. image: {
  5995. source: "./media/characters/akari/front.svg",
  5996. extra: 962 / 901,
  5997. bottom: 0.04
  5998. }
  5999. }
  6000. },
  6001. [
  6002. {
  6003. name: "Micro",
  6004. height: math.unit(5, "inches"),
  6005. default: true
  6006. },
  6007. {
  6008. name: "Normal",
  6009. height: math.unit(7, "feet")
  6010. },
  6011. ]
  6012. ))
  6013. characterMakers.push(() => makeCharacter(
  6014. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6015. {
  6016. front: {
  6017. height: math.unit(6, "feet"),
  6018. weight: math.unit(140, "lbs"),
  6019. name: "Front",
  6020. image: {
  6021. source: "./media/characters/cynosura/front.svg",
  6022. extra: 896 / 847
  6023. }
  6024. },
  6025. back: {
  6026. height: math.unit(6, "feet"),
  6027. weight: math.unit(140, "lbs"),
  6028. name: "Back",
  6029. image: {
  6030. source: "./media/characters/cynosura/back.svg",
  6031. extra: 1365 / 1250
  6032. }
  6033. },
  6034. },
  6035. [
  6036. {
  6037. name: "Micro",
  6038. height: math.unit(4, "inches")
  6039. },
  6040. {
  6041. name: "Normal",
  6042. height: math.unit(5.75, "feet"),
  6043. default: true
  6044. },
  6045. {
  6046. name: "Tall",
  6047. height: math.unit(10, "feet")
  6048. },
  6049. {
  6050. name: "Big",
  6051. height: math.unit(20, "feet")
  6052. },
  6053. {
  6054. name: "Macro",
  6055. height: math.unit(50, "feet")
  6056. },
  6057. ]
  6058. ))
  6059. characterMakers.push(() => makeCharacter(
  6060. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6061. {
  6062. front: {
  6063. height: math.unit(13 + 2/12, "feet"),
  6064. weight: math.unit(800, "kg"),
  6065. name: "Front",
  6066. image: {
  6067. source: "./media/characters/gin/front.svg",
  6068. extra: 1312/1191,
  6069. bottom: 45/1357
  6070. }
  6071. },
  6072. mouth: {
  6073. height: math.unit(2.39 * 1.8, "feet"),
  6074. name: "Mouth",
  6075. image: {
  6076. source: "./media/characters/gin/mouth.svg"
  6077. }
  6078. },
  6079. hand: {
  6080. height: math.unit(1.57 * 2.19, "feet"),
  6081. name: "Hand",
  6082. image: {
  6083. source: "./media/characters/gin/hand.svg"
  6084. }
  6085. },
  6086. foot: {
  6087. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6088. name: "Foot",
  6089. image: {
  6090. source: "./media/characters/gin/foot.svg"
  6091. }
  6092. },
  6093. sole: {
  6094. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6095. name: "Sole",
  6096. image: {
  6097. source: "./media/characters/gin/sole.svg"
  6098. }
  6099. },
  6100. },
  6101. [
  6102. {
  6103. name: "Very Small",
  6104. height: math.unit(13 + 2 / 12, "feet")
  6105. },
  6106. {
  6107. name: "Micro",
  6108. height: math.unit(600, "miles")
  6109. },
  6110. {
  6111. name: "Regular",
  6112. height: math.unit(20, "earths"),
  6113. default: true
  6114. },
  6115. {
  6116. name: "Macro",
  6117. height: math.unit(2.2, "solarradii")
  6118. },
  6119. {
  6120. name: "Teramacro",
  6121. height: math.unit(1.2, "galaxies")
  6122. },
  6123. {
  6124. name: "Omegamacro",
  6125. height: math.unit(200, "universes")
  6126. },
  6127. ]
  6128. ))
  6129. characterMakers.push(() => makeCharacter(
  6130. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6131. {
  6132. front: {
  6133. height: math.unit(6 + 1 / 6, "feet"),
  6134. weight: math.unit(178, "lbs"),
  6135. name: "Front",
  6136. image: {
  6137. source: "./media/characters/guy/front.svg"
  6138. }
  6139. }
  6140. },
  6141. [
  6142. {
  6143. name: "Normal",
  6144. height: math.unit(6 + 1 / 6, "feet"),
  6145. default: true
  6146. },
  6147. {
  6148. name: "Large",
  6149. height: math.unit(25 + 7 / 12, "feet")
  6150. },
  6151. {
  6152. name: "Macro",
  6153. height: math.unit(60 + 9 / 12, "feet")
  6154. },
  6155. {
  6156. name: "Macro+",
  6157. height: math.unit(246, "feet")
  6158. },
  6159. {
  6160. name: "Macro++",
  6161. height: math.unit(878, "feet")
  6162. }
  6163. ]
  6164. ))
  6165. characterMakers.push(() => makeCharacter(
  6166. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6167. {
  6168. front: {
  6169. height: math.unit(9, "feet"),
  6170. weight: math.unit(800, "lbs"),
  6171. name: "Front",
  6172. image: {
  6173. source: "./media/characters/tiberius/front.svg",
  6174. extra: 2295 / 2071
  6175. }
  6176. },
  6177. back: {
  6178. height: math.unit(9, "feet"),
  6179. weight: math.unit(800, "lbs"),
  6180. name: "Back",
  6181. image: {
  6182. source: "./media/characters/tiberius/back.svg",
  6183. extra: 2373 / 2160
  6184. }
  6185. },
  6186. },
  6187. [
  6188. {
  6189. name: "Normal",
  6190. height: math.unit(9, "feet"),
  6191. default: true
  6192. }
  6193. ]
  6194. ))
  6195. characterMakers.push(() => makeCharacter(
  6196. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6197. {
  6198. front: {
  6199. height: math.unit(6, "feet"),
  6200. weight: math.unit(600, "lbs"),
  6201. name: "Front",
  6202. image: {
  6203. source: "./media/characters/surgo/front.svg",
  6204. extra: 3591 / 2227
  6205. }
  6206. },
  6207. back: {
  6208. height: math.unit(6, "feet"),
  6209. weight: math.unit(600, "lbs"),
  6210. name: "Back",
  6211. image: {
  6212. source: "./media/characters/surgo/back.svg",
  6213. extra: 3557 / 2228
  6214. }
  6215. },
  6216. laying: {
  6217. height: math.unit(6 * 0.85, "feet"),
  6218. weight: math.unit(600, "lbs"),
  6219. name: "Laying",
  6220. image: {
  6221. source: "./media/characters/surgo/laying.svg"
  6222. }
  6223. },
  6224. },
  6225. [
  6226. {
  6227. name: "Normal",
  6228. height: math.unit(6, "feet"),
  6229. default: true
  6230. }
  6231. ]
  6232. ))
  6233. characterMakers.push(() => makeCharacter(
  6234. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6235. {
  6236. side: {
  6237. height: math.unit(6, "feet"),
  6238. weight: math.unit(150, "lbs"),
  6239. name: "Side",
  6240. image: {
  6241. source: "./media/characters/cibus/side.svg",
  6242. extra: 800 / 400
  6243. }
  6244. },
  6245. },
  6246. [
  6247. {
  6248. name: "Normal",
  6249. height: math.unit(6, "feet"),
  6250. default: true
  6251. }
  6252. ]
  6253. ))
  6254. characterMakers.push(() => makeCharacter(
  6255. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6256. {
  6257. front: {
  6258. height: math.unit(6, "feet"),
  6259. weight: math.unit(240, "lbs"),
  6260. name: "Front",
  6261. image: {
  6262. source: "./media/characters/nibbles/front.svg"
  6263. }
  6264. },
  6265. side: {
  6266. height: math.unit(6, "feet"),
  6267. weight: math.unit(240, "lbs"),
  6268. name: "Side",
  6269. image: {
  6270. source: "./media/characters/nibbles/side.svg"
  6271. }
  6272. },
  6273. },
  6274. [
  6275. {
  6276. name: "Normal",
  6277. height: math.unit(9, "feet"),
  6278. default: true
  6279. }
  6280. ]
  6281. ))
  6282. characterMakers.push(() => makeCharacter(
  6283. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6284. {
  6285. side: {
  6286. height: math.unit(5 + 1 / 6, "feet"),
  6287. weight: math.unit(130, "lbs"),
  6288. name: "Side",
  6289. image: {
  6290. source: "./media/characters/rikky/side.svg",
  6291. extra: 851 / 801
  6292. }
  6293. },
  6294. },
  6295. [
  6296. {
  6297. name: "Normal",
  6298. height: math.unit(5 + 1 / 6, "feet")
  6299. },
  6300. {
  6301. name: "Macro",
  6302. height: math.unit(152, "feet"),
  6303. default: true
  6304. },
  6305. {
  6306. name: "Megamacro",
  6307. height: math.unit(7, "miles")
  6308. }
  6309. ]
  6310. ))
  6311. characterMakers.push(() => makeCharacter(
  6312. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6313. {
  6314. side: {
  6315. height: math.unit(370, "cm"),
  6316. weight: math.unit(350, "lbs"),
  6317. name: "Side",
  6318. image: {
  6319. source: "./media/characters/malfressa/side.svg"
  6320. }
  6321. },
  6322. walking: {
  6323. height: math.unit(370, "cm"),
  6324. weight: math.unit(350, "lbs"),
  6325. name: "Walking",
  6326. image: {
  6327. source: "./media/characters/malfressa/walking.svg"
  6328. }
  6329. },
  6330. feral: {
  6331. height: math.unit(2500, "cm"),
  6332. weight: math.unit(100000, "lbs"),
  6333. name: "Feral",
  6334. image: {
  6335. source: "./media/characters/malfressa/feral.svg",
  6336. extra: 2108 / 837,
  6337. bottom: 0.02
  6338. }
  6339. },
  6340. },
  6341. [
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(370, "cm")
  6345. },
  6346. {
  6347. name: "Macro",
  6348. height: math.unit(300, "meters"),
  6349. default: true
  6350. }
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6355. {
  6356. front: {
  6357. height: math.unit(6, "feet"),
  6358. weight: math.unit(60, "kg"),
  6359. name: "Front",
  6360. image: {
  6361. source: "./media/characters/jaro/front.svg",
  6362. extra: 845/817,
  6363. bottom: 45/890
  6364. }
  6365. },
  6366. back: {
  6367. height: math.unit(6, "feet"),
  6368. weight: math.unit(60, "kg"),
  6369. name: "Back",
  6370. image: {
  6371. source: "./media/characters/jaro/back.svg",
  6372. extra: 847/817,
  6373. bottom: 34/881
  6374. }
  6375. },
  6376. },
  6377. [
  6378. {
  6379. name: "Micro",
  6380. height: math.unit(7, "inches")
  6381. },
  6382. {
  6383. name: "Normal",
  6384. height: math.unit(5.5, "feet"),
  6385. default: true
  6386. },
  6387. {
  6388. name: "Minimacro",
  6389. height: math.unit(20, "feet")
  6390. },
  6391. {
  6392. name: "Macro",
  6393. height: math.unit(200, "meters")
  6394. }
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6399. {
  6400. front: {
  6401. height: math.unit(6, "feet"),
  6402. weight: math.unit(195, "lb"),
  6403. name: "Front",
  6404. image: {
  6405. source: "./media/characters/rogue/front.svg"
  6406. }
  6407. },
  6408. },
  6409. [
  6410. {
  6411. name: "Macro",
  6412. height: math.unit(90, "feet"),
  6413. default: true
  6414. },
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(5 + 8 / 12, "feet"),
  6422. weight: math.unit(140, "lb"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/piper/front.svg",
  6426. extra: 3948/3655,
  6427. bottom: 0/3948
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Micro",
  6434. height: math.unit(2, "inches")
  6435. },
  6436. {
  6437. name: "Normal",
  6438. height: math.unit(5 + 8 / 12, "feet")
  6439. },
  6440. {
  6441. name: "Macro",
  6442. height: math.unit(250, "feet"),
  6443. default: true
  6444. },
  6445. {
  6446. name: "Megamacro",
  6447. height: math.unit(7, "miles")
  6448. },
  6449. ]
  6450. ))
  6451. characterMakers.push(() => makeCharacter(
  6452. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6453. {
  6454. front: {
  6455. height: math.unit(6, "feet"),
  6456. weight: math.unit(220, "lb"),
  6457. name: "Front",
  6458. image: {
  6459. source: "./media/characters/gemini/front.svg"
  6460. }
  6461. },
  6462. back: {
  6463. height: math.unit(6, "feet"),
  6464. weight: math.unit(220, "lb"),
  6465. name: "Back",
  6466. image: {
  6467. source: "./media/characters/gemini/back.svg"
  6468. }
  6469. },
  6470. kneeling: {
  6471. height: math.unit(6 / 1.5, "feet"),
  6472. weight: math.unit(220, "lb"),
  6473. name: "Kneeling",
  6474. image: {
  6475. source: "./media/characters/gemini/kneeling.svg",
  6476. bottom: 0.02
  6477. }
  6478. },
  6479. },
  6480. [
  6481. {
  6482. name: "Macro",
  6483. height: math.unit(300, "meters"),
  6484. default: true
  6485. },
  6486. {
  6487. name: "Megamacro",
  6488. height: math.unit(6900, "meters")
  6489. },
  6490. ]
  6491. ))
  6492. characterMakers.push(() => makeCharacter(
  6493. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6494. {
  6495. anthro: {
  6496. height: math.unit(2.35, "meters"),
  6497. weight: math.unit(73, "kg"),
  6498. name: "Anthro",
  6499. image: {
  6500. source: "./media/characters/alicia/anthro.svg",
  6501. extra: 2571 / 2385,
  6502. bottom: 75 / 2648
  6503. }
  6504. },
  6505. paw: {
  6506. height: math.unit(1.32, "feet"),
  6507. name: "Paw",
  6508. image: {
  6509. source: "./media/characters/alicia/paw.svg"
  6510. }
  6511. },
  6512. feral: {
  6513. height: math.unit(1.69, "meters"),
  6514. weight: math.unit(73, "kg"),
  6515. name: "Feral",
  6516. image: {
  6517. source: "./media/characters/alicia/feral.svg",
  6518. extra: 2123 / 1715,
  6519. bottom: 222 / 2349
  6520. }
  6521. },
  6522. },
  6523. [
  6524. {
  6525. name: "Normal",
  6526. height: math.unit(2.35, "meters")
  6527. },
  6528. {
  6529. name: "Macro",
  6530. height: math.unit(60, "meters"),
  6531. default: true
  6532. },
  6533. {
  6534. name: "Megamacro",
  6535. height: math.unit(10000, "kilometers")
  6536. },
  6537. ]
  6538. ))
  6539. characterMakers.push(() => makeCharacter(
  6540. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6541. {
  6542. front: {
  6543. height: math.unit(7, "feet"),
  6544. weight: math.unit(250, "lbs"),
  6545. name: "Front",
  6546. image: {
  6547. source: "./media/characters/archy/front.svg"
  6548. }
  6549. }
  6550. },
  6551. [
  6552. {
  6553. name: "Micro",
  6554. height: math.unit(1, "inch")
  6555. },
  6556. {
  6557. name: "Shorty",
  6558. height: math.unit(5, "feet")
  6559. },
  6560. {
  6561. name: "Normal",
  6562. height: math.unit(7, "feet")
  6563. },
  6564. {
  6565. name: "Macro",
  6566. height: math.unit(600, "meters"),
  6567. default: true
  6568. },
  6569. {
  6570. name: "Megamacro",
  6571. height: math.unit(1, "mile")
  6572. },
  6573. ]
  6574. ))
  6575. characterMakers.push(() => makeCharacter(
  6576. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6577. {
  6578. front: {
  6579. height: math.unit(1.65, "meters"),
  6580. weight: math.unit(74, "kg"),
  6581. name: "Front",
  6582. image: {
  6583. source: "./media/characters/berri/front.svg",
  6584. extra: 857 / 837,
  6585. bottom: 18 / 877
  6586. }
  6587. },
  6588. bum: {
  6589. height: math.unit(1.46, "feet"),
  6590. name: "Bum",
  6591. image: {
  6592. source: "./media/characters/berri/bum.svg"
  6593. }
  6594. },
  6595. mouth: {
  6596. height: math.unit(0.44, "feet"),
  6597. name: "Mouth",
  6598. image: {
  6599. source: "./media/characters/berri/mouth.svg"
  6600. }
  6601. },
  6602. paw: {
  6603. height: math.unit(0.826, "feet"),
  6604. name: "Paw",
  6605. image: {
  6606. source: "./media/characters/berri/paw.svg"
  6607. }
  6608. },
  6609. },
  6610. [
  6611. {
  6612. name: "Normal",
  6613. height: math.unit(1.65, "meters")
  6614. },
  6615. {
  6616. name: "Macro",
  6617. height: math.unit(60, "m"),
  6618. default: true
  6619. },
  6620. {
  6621. name: "Megamacro",
  6622. height: math.unit(9.213, "km")
  6623. },
  6624. {
  6625. name: "Planet Eater",
  6626. height: math.unit(489, "megameters")
  6627. },
  6628. {
  6629. name: "Teramacro",
  6630. height: math.unit(2471635000000, "meters")
  6631. },
  6632. {
  6633. name: "Examacro",
  6634. height: math.unit(8.0624e+26, "meters")
  6635. }
  6636. ]
  6637. ))
  6638. characterMakers.push(() => makeCharacter(
  6639. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6640. {
  6641. front: {
  6642. height: math.unit(1.72, "meters"),
  6643. weight: math.unit(68, "kg"),
  6644. name: "Front",
  6645. image: {
  6646. source: "./media/characters/lexi/front.svg"
  6647. }
  6648. }
  6649. },
  6650. [
  6651. {
  6652. name: "Very Smol",
  6653. height: math.unit(10, "mm")
  6654. },
  6655. {
  6656. name: "Micro",
  6657. height: math.unit(6.8, "cm"),
  6658. default: true
  6659. },
  6660. {
  6661. name: "Normal",
  6662. height: math.unit(1.72, "m")
  6663. }
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6668. {
  6669. front: {
  6670. height: math.unit(1.69, "meters"),
  6671. weight: math.unit(68, "kg"),
  6672. name: "Front",
  6673. image: {
  6674. source: "./media/characters/martin/front.svg",
  6675. extra: 596 / 581
  6676. }
  6677. }
  6678. },
  6679. [
  6680. {
  6681. name: "Micro",
  6682. height: math.unit(6.85, "cm"),
  6683. default: true
  6684. },
  6685. {
  6686. name: "Normal",
  6687. height: math.unit(1.69, "m")
  6688. }
  6689. ]
  6690. ))
  6691. characterMakers.push(() => makeCharacter(
  6692. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6693. {
  6694. front: {
  6695. height: math.unit(1.69, "meters"),
  6696. weight: math.unit(68, "kg"),
  6697. name: "Front",
  6698. image: {
  6699. source: "./media/characters/juno/front.svg"
  6700. }
  6701. }
  6702. },
  6703. [
  6704. {
  6705. name: "Micro",
  6706. height: math.unit(7, "cm")
  6707. },
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(1.89, "m")
  6711. },
  6712. {
  6713. name: "Macro",
  6714. height: math.unit(353, "meters"),
  6715. default: true
  6716. }
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(1.93, "meters"),
  6724. weight: math.unit(83, "kg"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/samantha/front.svg"
  6728. }
  6729. },
  6730. frontClothed: {
  6731. height: math.unit(1.93, "meters"),
  6732. weight: math.unit(83, "kg"),
  6733. name: "Front (Clothed)",
  6734. image: {
  6735. source: "./media/characters/samantha/front-clothed.svg"
  6736. }
  6737. },
  6738. back: {
  6739. height: math.unit(1.93, "meters"),
  6740. weight: math.unit(83, "kg"),
  6741. name: "Back",
  6742. image: {
  6743. source: "./media/characters/samantha/back.svg"
  6744. }
  6745. },
  6746. },
  6747. [
  6748. {
  6749. name: "Normal",
  6750. height: math.unit(1.93, "m")
  6751. },
  6752. {
  6753. name: "Macro",
  6754. height: math.unit(74, "meters"),
  6755. default: true
  6756. },
  6757. {
  6758. name: "Macro+",
  6759. height: math.unit(223, "meters"),
  6760. },
  6761. {
  6762. name: "Megamacro",
  6763. height: math.unit(8381, "meters"),
  6764. },
  6765. {
  6766. name: "Megamacro+",
  6767. height: math.unit(12000, "kilometers")
  6768. },
  6769. ]
  6770. ))
  6771. characterMakers.push(() => makeCharacter(
  6772. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6773. {
  6774. front: {
  6775. height: math.unit(1.92, "meters"),
  6776. weight: math.unit(80, "kg"),
  6777. name: "Front",
  6778. image: {
  6779. source: "./media/characters/dr-clay/front.svg"
  6780. }
  6781. },
  6782. frontClothed: {
  6783. height: math.unit(1.92, "meters"),
  6784. weight: math.unit(80, "kg"),
  6785. name: "Front (Clothed)",
  6786. image: {
  6787. source: "./media/characters/dr-clay/front-clothed.svg"
  6788. }
  6789. }
  6790. },
  6791. [
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(1.92, "m")
  6795. },
  6796. {
  6797. name: "Macro",
  6798. height: math.unit(214, "meters"),
  6799. default: true
  6800. },
  6801. {
  6802. name: "Macro+",
  6803. height: math.unit(12.237, "meters"),
  6804. },
  6805. {
  6806. name: "Megamacro",
  6807. height: math.unit(557, "megameters"),
  6808. },
  6809. {
  6810. name: "Unimaginable",
  6811. height: math.unit(120e9, "lightyears")
  6812. },
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6817. {
  6818. front: {
  6819. height: math.unit(2, "meters"),
  6820. weight: math.unit(80, "kg"),
  6821. name: "Front",
  6822. image: {
  6823. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6824. }
  6825. }
  6826. },
  6827. [
  6828. {
  6829. name: "Teramacro",
  6830. height: math.unit(500000, "lightyears"),
  6831. default: true
  6832. },
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6837. {
  6838. crux: {
  6839. height: math.unit(2, "meters"),
  6840. weight: math.unit(150, "kg"),
  6841. name: "Crux",
  6842. image: {
  6843. source: "./media/characters/vemus/crux.svg",
  6844. extra: 1074/936,
  6845. bottom: 23/1097
  6846. }
  6847. },
  6848. skunkTanuki: {
  6849. height: math.unit(2, "meters"),
  6850. weight: math.unit(150, "kg"),
  6851. name: "Skunk-Tanuki",
  6852. image: {
  6853. source: "./media/characters/vemus/skunk-tanuki.svg",
  6854. extra: 926/893,
  6855. bottom: 20/946
  6856. }
  6857. },
  6858. },
  6859. [
  6860. {
  6861. name: "Normal",
  6862. height: math.unit(3.75, "meters"),
  6863. default: true
  6864. },
  6865. {
  6866. name: "Big",
  6867. height: math.unit(8, "meters")
  6868. },
  6869. {
  6870. name: "Macro",
  6871. height: math.unit(100, "meters")
  6872. },
  6873. {
  6874. name: "Macro+",
  6875. height: math.unit(1500, "meters")
  6876. },
  6877. {
  6878. name: "Stellar",
  6879. height: math.unit(14e8, "meters")
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(2, "meters"),
  6888. weight: math.unit(70, "kg"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/beherit/front.svg",
  6892. extra: 1234/1109,
  6893. bottom: 55/1289
  6894. }
  6895. }
  6896. },
  6897. [
  6898. {
  6899. name: "Normal",
  6900. height: math.unit(6, "feet")
  6901. },
  6902. {
  6903. name: "Lorg",
  6904. height: math.unit(25, "feet"),
  6905. default: true
  6906. },
  6907. {
  6908. name: "Lorger",
  6909. height: math.unit(75, "feet")
  6910. },
  6911. {
  6912. name: "Macro",
  6913. height: math.unit(200, "meters")
  6914. },
  6915. ]
  6916. ))
  6917. characterMakers.push(() => makeCharacter(
  6918. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6919. {
  6920. front: {
  6921. height: math.unit(2, "meters"),
  6922. weight: math.unit(150, "kg"),
  6923. name: "Front",
  6924. image: {
  6925. source: "./media/characters/everett/front.svg",
  6926. extra: 1017/866,
  6927. bottom: 86/1103
  6928. }
  6929. },
  6930. paw: {
  6931. height: math.unit(2 / 3.6, "meters"),
  6932. name: "Paw",
  6933. image: {
  6934. source: "./media/characters/everett/paw.svg"
  6935. }
  6936. },
  6937. },
  6938. [
  6939. {
  6940. name: "Normal",
  6941. height: math.unit(15, "feet"),
  6942. default: true
  6943. },
  6944. {
  6945. name: "Lorg",
  6946. height: math.unit(70, "feet"),
  6947. default: true
  6948. },
  6949. {
  6950. name: "Lorger",
  6951. height: math.unit(250, "feet")
  6952. },
  6953. {
  6954. name: "Macro",
  6955. height: math.unit(500, "meters")
  6956. },
  6957. ]
  6958. ))
  6959. characterMakers.push(() => makeCharacter(
  6960. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6961. {
  6962. front: {
  6963. height: math.unit(2, "meters"),
  6964. weight: math.unit(86, "kg"),
  6965. name: "Front",
  6966. image: {
  6967. source: "./media/characters/rose/front.svg",
  6968. extra: 1785/1636,
  6969. bottom: 30/1815
  6970. }
  6971. },
  6972. frontSporty: {
  6973. height: math.unit(2, "meters"),
  6974. weight: math.unit(86, "kg"),
  6975. name: "Front (Sporty)",
  6976. image: {
  6977. source: "./media/characters/rose/front-sporty.svg",
  6978. extra: 350/335,
  6979. bottom: 10/360
  6980. }
  6981. },
  6982. frontAlt: {
  6983. height: math.unit(1.6, "meters"),
  6984. weight: math.unit(86, "kg"),
  6985. name: "Front (Alt)",
  6986. image: {
  6987. source: "./media/characters/rose/front-alt.svg",
  6988. extra: 299/283,
  6989. bottom: 3/302
  6990. }
  6991. },
  6992. plush: {
  6993. height: math.unit(2, "meters"),
  6994. weight: math.unit(86/3, "kg"),
  6995. name: "Plush",
  6996. image: {
  6997. source: "./media/characters/rose/plush.svg",
  6998. extra: 361/337,
  6999. bottom: 11/372
  7000. }
  7001. },
  7002. },
  7003. [
  7004. {
  7005. name: "True Micro",
  7006. height: math.unit(9, "cm")
  7007. },
  7008. {
  7009. name: "Micro",
  7010. height: math.unit(16, "cm")
  7011. },
  7012. {
  7013. name: "Normal",
  7014. height: math.unit(1.85, "meters"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Mini-Macro",
  7019. height: math.unit(5, "meters")
  7020. },
  7021. {
  7022. name: "Macro",
  7023. height: math.unit(15, "meters")
  7024. },
  7025. {
  7026. name: "True Macro",
  7027. height: math.unit(40, "meters")
  7028. },
  7029. {
  7030. name: "City Scale",
  7031. height: math.unit(1, "km")
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(2, "meters"),
  7040. weight: math.unit(350, "lbs"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/regal/front.svg"
  7044. }
  7045. },
  7046. back: {
  7047. height: math.unit(2, "meters"),
  7048. weight: math.unit(350, "lbs"),
  7049. name: "Back",
  7050. image: {
  7051. source: "./media/characters/regal/back.svg"
  7052. }
  7053. },
  7054. },
  7055. [
  7056. {
  7057. name: "Macro",
  7058. height: math.unit(350, "feet"),
  7059. default: true
  7060. }
  7061. ]
  7062. ))
  7063. characterMakers.push(() => makeCharacter(
  7064. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7065. {
  7066. front: {
  7067. height: math.unit(4 + 11 / 12, "feet"),
  7068. weight: math.unit(100, "lbs"),
  7069. name: "Front",
  7070. image: {
  7071. source: "./media/characters/opal/front.svg"
  7072. }
  7073. },
  7074. frontAlt: {
  7075. height: math.unit(4 + 11 / 12, "feet"),
  7076. weight: math.unit(100, "lbs"),
  7077. name: "Front (Alt)",
  7078. image: {
  7079. source: "./media/characters/opal/front-alt.svg"
  7080. }
  7081. },
  7082. },
  7083. [
  7084. {
  7085. name: "Small",
  7086. height: math.unit(4 + 11 / 12, "feet")
  7087. },
  7088. {
  7089. name: "Normal",
  7090. height: math.unit(20, "feet"),
  7091. default: true
  7092. },
  7093. {
  7094. name: "Macro",
  7095. height: math.unit(120, "feet")
  7096. },
  7097. {
  7098. name: "Megamacro",
  7099. height: math.unit(80, "miles")
  7100. },
  7101. {
  7102. name: "True Size",
  7103. height: math.unit(100000, "lightyears")
  7104. },
  7105. ]
  7106. ))
  7107. characterMakers.push(() => makeCharacter(
  7108. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7109. {
  7110. front: {
  7111. height: math.unit(6, "feet"),
  7112. weight: math.unit(200, "lbs"),
  7113. name: "Front",
  7114. image: {
  7115. source: "./media/characters/vector-wuff/front.svg"
  7116. }
  7117. }
  7118. },
  7119. [
  7120. {
  7121. name: "Normal",
  7122. height: math.unit(2.8, "meters")
  7123. },
  7124. {
  7125. name: "Macro",
  7126. height: math.unit(450, "meters"),
  7127. default: true
  7128. },
  7129. {
  7130. name: "Megamacro",
  7131. height: math.unit(15, "kilometers")
  7132. }
  7133. ]
  7134. ))
  7135. characterMakers.push(() => makeCharacter(
  7136. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7137. {
  7138. front: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(256, "lbs"),
  7141. name: "Front",
  7142. image: {
  7143. source: "./media/characters/dannik/front.svg"
  7144. }
  7145. }
  7146. },
  7147. [
  7148. {
  7149. name: "Macro",
  7150. height: math.unit(69.57, "meters"),
  7151. default: true
  7152. },
  7153. ]
  7154. ))
  7155. characterMakers.push(() => makeCharacter(
  7156. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7157. {
  7158. front: {
  7159. height: math.unit(6, "feet"),
  7160. weight: math.unit(120, "lbs"),
  7161. name: "Front",
  7162. image: {
  7163. source: "./media/characters/azura-saharah/front.svg"
  7164. }
  7165. },
  7166. back: {
  7167. height: math.unit(6, "feet"),
  7168. weight: math.unit(120, "lbs"),
  7169. name: "Back",
  7170. image: {
  7171. source: "./media/characters/azura-saharah/back.svg"
  7172. }
  7173. },
  7174. },
  7175. [
  7176. {
  7177. name: "Macro",
  7178. height: math.unit(100, "feet"),
  7179. default: true
  7180. },
  7181. ]
  7182. ))
  7183. characterMakers.push(() => makeCharacter(
  7184. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7185. {
  7186. side: {
  7187. height: math.unit(5 + 4 / 12, "feet"),
  7188. weight: math.unit(163, "lbs"),
  7189. name: "Side",
  7190. image: {
  7191. source: "./media/characters/kennedy/side.svg"
  7192. }
  7193. }
  7194. },
  7195. [
  7196. {
  7197. name: "Standard Doggo",
  7198. height: math.unit(5 + 4 / 12, "feet")
  7199. },
  7200. {
  7201. name: "Big Doggo",
  7202. height: math.unit(25 + 3 / 12, "feet"),
  7203. default: true
  7204. },
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(5 + 5/12, "feet"),
  7212. weight: math.unit(100, "lbs"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/odios-de-lunar/front.svg",
  7216. extra: 1468/1323,
  7217. bottom: 22/1490
  7218. }
  7219. }
  7220. },
  7221. [
  7222. {
  7223. name: "Micro",
  7224. height: math.unit(3, "inches")
  7225. },
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(5.5, "feet"),
  7229. default: true
  7230. },
  7231. {
  7232. name: "Macro",
  7233. height: math.unit(100, "feet")
  7234. },
  7235. ]
  7236. ))
  7237. characterMakers.push(() => makeCharacter(
  7238. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7239. {
  7240. back: {
  7241. height: math.unit(6, "feet"),
  7242. weight: math.unit(220, "lbs"),
  7243. name: "Back",
  7244. image: {
  7245. source: "./media/characters/mandake/back.svg"
  7246. }
  7247. }
  7248. },
  7249. [
  7250. {
  7251. name: "Normal",
  7252. height: math.unit(7, "feet"),
  7253. default: true
  7254. },
  7255. {
  7256. name: "Macro",
  7257. height: math.unit(78, "feet")
  7258. },
  7259. {
  7260. name: "Macro+",
  7261. height: math.unit(300, "meters")
  7262. },
  7263. {
  7264. name: "Macro++",
  7265. height: math.unit(2400, "feet")
  7266. },
  7267. {
  7268. name: "Megamacro",
  7269. height: math.unit(5167, "meters")
  7270. },
  7271. {
  7272. name: "Gigamacro",
  7273. height: math.unit(41769, "miles")
  7274. },
  7275. ]
  7276. ))
  7277. characterMakers.push(() => makeCharacter(
  7278. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7279. {
  7280. front: {
  7281. height: math.unit(6, "feet"),
  7282. weight: math.unit(120, "lbs"),
  7283. name: "Front",
  7284. image: {
  7285. source: "./media/characters/yozey/front.svg"
  7286. }
  7287. },
  7288. frontAlt: {
  7289. height: math.unit(6, "feet"),
  7290. weight: math.unit(120, "lbs"),
  7291. name: "Front (Alt)",
  7292. image: {
  7293. source: "./media/characters/yozey/front-alt.svg"
  7294. }
  7295. },
  7296. side: {
  7297. height: math.unit(6, "feet"),
  7298. weight: math.unit(120, "lbs"),
  7299. name: "Side",
  7300. image: {
  7301. source: "./media/characters/yozey/side.svg"
  7302. }
  7303. },
  7304. },
  7305. [
  7306. {
  7307. name: "Micro",
  7308. height: math.unit(3, "inches"),
  7309. default: true
  7310. },
  7311. {
  7312. name: "Normal",
  7313. height: math.unit(6, "feet")
  7314. }
  7315. ]
  7316. ))
  7317. characterMakers.push(() => makeCharacter(
  7318. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7319. {
  7320. front: {
  7321. height: math.unit(6, "feet"),
  7322. weight: math.unit(103, "lbs"),
  7323. name: "Front",
  7324. image: {
  7325. source: "./media/characters/valeska-voss/front.svg"
  7326. }
  7327. }
  7328. },
  7329. [
  7330. {
  7331. name: "Mini-Sized Sub",
  7332. height: math.unit(3.1, "inches")
  7333. },
  7334. {
  7335. name: "Mid-Sized Sub",
  7336. height: math.unit(6.2, "inches")
  7337. },
  7338. {
  7339. name: "Full-Sized Sub",
  7340. height: math.unit(9.3, "inches")
  7341. },
  7342. {
  7343. name: "Normal",
  7344. height: math.unit(5 + 2 / 12, "foot"),
  7345. default: true
  7346. },
  7347. ]
  7348. ))
  7349. characterMakers.push(() => makeCharacter(
  7350. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7351. {
  7352. front: {
  7353. height: math.unit(6, "feet"),
  7354. weight: math.unit(160, "lbs"),
  7355. name: "Front",
  7356. image: {
  7357. source: "./media/characters/gene-zeta/front.svg",
  7358. extra: 3006 / 2826,
  7359. bottom: 182 / 3188
  7360. }
  7361. }
  7362. },
  7363. [
  7364. {
  7365. name: "Micro",
  7366. height: math.unit(6, "inches")
  7367. },
  7368. {
  7369. name: "Normal",
  7370. height: math.unit(5 + 11 / 12, "foot"),
  7371. default: true
  7372. },
  7373. {
  7374. name: "Macro",
  7375. height: math.unit(140, "feet")
  7376. },
  7377. {
  7378. name: "Supercharged",
  7379. height: math.unit(2500, "feet")
  7380. },
  7381. ]
  7382. ))
  7383. characterMakers.push(() => makeCharacter(
  7384. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7385. {
  7386. front: {
  7387. height: math.unit(6, "feet"),
  7388. weight: math.unit(350, "lbs"),
  7389. name: "Front",
  7390. image: {
  7391. source: "./media/characters/razinox/front.svg",
  7392. extra: 1686 / 1548,
  7393. bottom: 28.2 / 1868
  7394. }
  7395. },
  7396. back: {
  7397. height: math.unit(6, "feet"),
  7398. weight: math.unit(350, "lbs"),
  7399. name: "Back",
  7400. image: {
  7401. source: "./media/characters/razinox/back.svg",
  7402. extra: 1660 / 1590,
  7403. bottom: 15 / 1665
  7404. }
  7405. },
  7406. },
  7407. [
  7408. {
  7409. name: "Normal",
  7410. height: math.unit(10 + 8 / 12, "foot")
  7411. },
  7412. {
  7413. name: "Minimacro",
  7414. height: math.unit(15, "foot")
  7415. },
  7416. {
  7417. name: "Macro",
  7418. height: math.unit(60, "foot"),
  7419. default: true
  7420. },
  7421. {
  7422. name: "Megamacro",
  7423. height: math.unit(5, "miles")
  7424. },
  7425. {
  7426. name: "Gigamacro",
  7427. height: math.unit(6000, "miles")
  7428. },
  7429. ]
  7430. ))
  7431. characterMakers.push(() => makeCharacter(
  7432. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7433. {
  7434. front: {
  7435. height: math.unit(6, "feet"),
  7436. weight: math.unit(150, "lbs"),
  7437. name: "Front",
  7438. image: {
  7439. source: "./media/characters/cobalt/front.svg"
  7440. }
  7441. }
  7442. },
  7443. [
  7444. {
  7445. name: "Normal",
  7446. height: math.unit(8 + 1 / 12, "foot")
  7447. },
  7448. {
  7449. name: "Macro",
  7450. height: math.unit(111, "foot"),
  7451. default: true
  7452. },
  7453. {
  7454. name: "Supracosmic",
  7455. height: math.unit(1e42, "feet")
  7456. },
  7457. ]
  7458. ))
  7459. characterMakers.push(() => makeCharacter(
  7460. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7461. {
  7462. front: {
  7463. height: math.unit(6, "feet"),
  7464. weight: math.unit(140, "lbs"),
  7465. name: "Front",
  7466. image: {
  7467. source: "./media/characters/amanda/front.svg"
  7468. }
  7469. }
  7470. },
  7471. [
  7472. {
  7473. name: "Micro",
  7474. height: math.unit(5, "inches"),
  7475. default: true
  7476. },
  7477. ]
  7478. ))
  7479. characterMakers.push(() => makeCharacter(
  7480. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7481. {
  7482. front: {
  7483. height: math.unit(2.75, "meters"),
  7484. weight: math.unit(1200, "lb"),
  7485. name: "Front",
  7486. image: {
  7487. source: "./media/characters/teal/front.svg",
  7488. extra: 2463 / 2320,
  7489. bottom: 166 / 2629
  7490. }
  7491. },
  7492. back: {
  7493. height: math.unit(2.75, "meters"),
  7494. weight: math.unit(1200, "lb"),
  7495. name: "Back",
  7496. image: {
  7497. source: "./media/characters/teal/back.svg",
  7498. extra: 2580 / 2489,
  7499. bottom: 151 / 2731
  7500. }
  7501. },
  7502. sitting: {
  7503. height: math.unit(1.9, "meters"),
  7504. weight: math.unit(1200, "lb"),
  7505. name: "Sitting",
  7506. image: {
  7507. source: "./media/characters/teal/sitting.svg",
  7508. extra: 623 / 590,
  7509. bottom: 121 / 744
  7510. }
  7511. },
  7512. standing: {
  7513. height: math.unit(2.75, "meters"),
  7514. weight: math.unit(1200, "lb"),
  7515. name: "Standing",
  7516. image: {
  7517. source: "./media/characters/teal/standing.svg",
  7518. extra: 923 / 893,
  7519. bottom: 60 / 983
  7520. }
  7521. },
  7522. stretching: {
  7523. height: math.unit(3.65, "meters"),
  7524. weight: math.unit(1200, "lb"),
  7525. name: "Stretching",
  7526. image: {
  7527. source: "./media/characters/teal/stretching.svg",
  7528. extra: 1276 / 1244,
  7529. bottom: 0 / 1276
  7530. }
  7531. },
  7532. legged: {
  7533. height: math.unit(1.3, "meters"),
  7534. weight: math.unit(100, "lb"),
  7535. name: "Legged",
  7536. image: {
  7537. source: "./media/characters/teal/legged.svg",
  7538. extra: 462 / 437,
  7539. bottom: 24 / 486
  7540. }
  7541. },
  7542. naga: {
  7543. height: math.unit(5.4, "meters"),
  7544. weight: math.unit(4000, "lb"),
  7545. name: "Naga",
  7546. image: {
  7547. source: "./media/characters/teal/naga.svg",
  7548. extra: 1902 / 1858,
  7549. bottom: 0 / 1902
  7550. }
  7551. },
  7552. hand: {
  7553. height: math.unit(0.52, "meters"),
  7554. name: "Hand",
  7555. image: {
  7556. source: "./media/characters/teal/hand.svg"
  7557. }
  7558. },
  7559. maw: {
  7560. height: math.unit(0.43, "meters"),
  7561. name: "Maw",
  7562. image: {
  7563. source: "./media/characters/teal/maw.svg"
  7564. }
  7565. },
  7566. slit: {
  7567. height: math.unit(0.25, "meters"),
  7568. name: "Slit",
  7569. image: {
  7570. source: "./media/characters/teal/slit.svg"
  7571. }
  7572. },
  7573. },
  7574. [
  7575. {
  7576. name: "Normal",
  7577. height: math.unit(2.75, "meters"),
  7578. default: true
  7579. },
  7580. {
  7581. name: "Macro",
  7582. height: math.unit(300, "feet")
  7583. },
  7584. {
  7585. name: "Macro+",
  7586. height: math.unit(2000, "feet")
  7587. },
  7588. ]
  7589. ))
  7590. characterMakers.push(() => makeCharacter(
  7591. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7592. {
  7593. frontCat: {
  7594. height: math.unit(6, "feet"),
  7595. weight: math.unit(180, "lbs"),
  7596. name: "Front (Cat)",
  7597. image: {
  7598. source: "./media/characters/ravin-amulet/front-cat.svg"
  7599. }
  7600. },
  7601. frontCatAlt: {
  7602. height: math.unit(6, "feet"),
  7603. weight: math.unit(180, "lbs"),
  7604. name: "Front (Alt, Cat)",
  7605. image: {
  7606. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7607. }
  7608. },
  7609. frontWerewolf: {
  7610. height: math.unit(6 * 1.2, "feet"),
  7611. weight: math.unit(225, "lbs"),
  7612. name: "Front (Werewolf)",
  7613. image: {
  7614. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7615. }
  7616. },
  7617. backWerewolf: {
  7618. height: math.unit(6 * 1.2, "feet"),
  7619. weight: math.unit(225, "lbs"),
  7620. name: "Back (Werewolf)",
  7621. image: {
  7622. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7623. }
  7624. },
  7625. },
  7626. [
  7627. {
  7628. name: "Nano",
  7629. height: math.unit(1, "micrometer")
  7630. },
  7631. {
  7632. name: "Micro",
  7633. height: math.unit(1, "inch")
  7634. },
  7635. {
  7636. name: "Normal",
  7637. height: math.unit(6, "feet"),
  7638. default: true
  7639. },
  7640. {
  7641. name: "Macro",
  7642. height: math.unit(60, "feet")
  7643. }
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7648. {
  7649. front: {
  7650. height: math.unit(6, "feet"),
  7651. weight: math.unit(165, "lbs"),
  7652. name: "Front",
  7653. image: {
  7654. source: "./media/characters/fluoresce/front.svg"
  7655. }
  7656. }
  7657. },
  7658. [
  7659. {
  7660. name: "Micro",
  7661. height: math.unit(6, "cm")
  7662. },
  7663. {
  7664. name: "Normal",
  7665. height: math.unit(5 + 7 / 12, "feet"),
  7666. default: true
  7667. },
  7668. {
  7669. name: "Macro",
  7670. height: math.unit(56, "feet")
  7671. },
  7672. {
  7673. name: "Megamacro",
  7674. height: math.unit(1.9, "miles")
  7675. },
  7676. ]
  7677. ))
  7678. characterMakers.push(() => makeCharacter(
  7679. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7680. {
  7681. front: {
  7682. height: math.unit(9 + 6 / 12, "feet"),
  7683. weight: math.unit(523, "lbs"),
  7684. name: "Side",
  7685. image: {
  7686. source: "./media/characters/aurora/side.svg"
  7687. }
  7688. }
  7689. },
  7690. [
  7691. {
  7692. name: "Normal",
  7693. height: math.unit(9 + 6 / 12, "feet")
  7694. },
  7695. {
  7696. name: "Macro",
  7697. height: math.unit(96, "feet"),
  7698. default: true
  7699. },
  7700. {
  7701. name: "Macro+",
  7702. height: math.unit(243, "feet")
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7708. {
  7709. front: {
  7710. height: math.unit(194, "cm"),
  7711. weight: math.unit(90, "kg"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/ranek/front.svg"
  7715. }
  7716. },
  7717. side: {
  7718. height: math.unit(194, "cm"),
  7719. weight: math.unit(90, "kg"),
  7720. name: "Side",
  7721. image: {
  7722. source: "./media/characters/ranek/side.svg"
  7723. }
  7724. },
  7725. back: {
  7726. height: math.unit(194, "cm"),
  7727. weight: math.unit(90, "kg"),
  7728. name: "Back",
  7729. image: {
  7730. source: "./media/characters/ranek/back.svg"
  7731. }
  7732. },
  7733. feral: {
  7734. height: math.unit(30, "cm"),
  7735. weight: math.unit(1.6, "lbs"),
  7736. name: "Feral",
  7737. image: {
  7738. source: "./media/characters/ranek/feral.svg"
  7739. }
  7740. },
  7741. },
  7742. [
  7743. {
  7744. name: "Normal",
  7745. height: math.unit(194, "cm"),
  7746. default: true
  7747. },
  7748. {
  7749. name: "Macro",
  7750. height: math.unit(100, "meters")
  7751. },
  7752. ]
  7753. ))
  7754. characterMakers.push(() => makeCharacter(
  7755. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7756. {
  7757. front: {
  7758. height: math.unit(5 + 6 / 12, "feet"),
  7759. weight: math.unit(153, "lbs"),
  7760. name: "Front",
  7761. image: {
  7762. source: "./media/characters/andrew-cooper/front.svg"
  7763. }
  7764. },
  7765. },
  7766. [
  7767. {
  7768. name: "Nano",
  7769. height: math.unit(1, "mm")
  7770. },
  7771. {
  7772. name: "Micro",
  7773. height: math.unit(2, "inches")
  7774. },
  7775. {
  7776. name: "Normal",
  7777. height: math.unit(5 + 6 / 12, "feet"),
  7778. default: true
  7779. }
  7780. ]
  7781. ))
  7782. characterMakers.push(() => makeCharacter(
  7783. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7784. {
  7785. front: {
  7786. height: math.unit(6, "feet"),
  7787. weight: math.unit(180, "lbs"),
  7788. name: "Front",
  7789. image: {
  7790. source: "./media/characters/akane-sato/front.svg",
  7791. extra: 1219 / 1140
  7792. }
  7793. },
  7794. back: {
  7795. height: math.unit(6, "feet"),
  7796. weight: math.unit(180, "lbs"),
  7797. name: "Back",
  7798. image: {
  7799. source: "./media/characters/akane-sato/back.svg",
  7800. extra: 1219 / 1170
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(2.5, "meters")
  7808. },
  7809. {
  7810. name: "Macro",
  7811. height: math.unit(250, "meters"),
  7812. default: true
  7813. },
  7814. {
  7815. name: "Megamacro",
  7816. height: math.unit(25, "km")
  7817. },
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7822. {
  7823. front: {
  7824. height: math.unit(6, "feet"),
  7825. weight: math.unit(65, "kg"),
  7826. name: "Front",
  7827. image: {
  7828. source: "./media/characters/rook/front.svg",
  7829. extra: 960 / 950
  7830. }
  7831. }
  7832. },
  7833. [
  7834. {
  7835. name: "Normal",
  7836. height: math.unit(8.8, "feet")
  7837. },
  7838. {
  7839. name: "Macro",
  7840. height: math.unit(88, "feet"),
  7841. default: true
  7842. },
  7843. {
  7844. name: "Megamacro",
  7845. height: math.unit(8, "miles")
  7846. },
  7847. ]
  7848. ))
  7849. characterMakers.push(() => makeCharacter(
  7850. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7851. {
  7852. front: {
  7853. height: math.unit(12 + 2 / 12, "feet"),
  7854. weight: math.unit(808, "lbs"),
  7855. name: "Front",
  7856. image: {
  7857. source: "./media/characters/prodigy/front.svg"
  7858. }
  7859. }
  7860. },
  7861. [
  7862. {
  7863. name: "Normal",
  7864. height: math.unit(12 + 2 / 12, "feet"),
  7865. default: true
  7866. },
  7867. {
  7868. name: "Macro",
  7869. height: math.unit(143, "feet")
  7870. },
  7871. {
  7872. name: "Macro+",
  7873. height: math.unit(400, "feet")
  7874. },
  7875. ]
  7876. ))
  7877. characterMakers.push(() => makeCharacter(
  7878. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7879. {
  7880. front: {
  7881. height: math.unit(6, "feet"),
  7882. weight: math.unit(225, "lbs"),
  7883. name: "Front",
  7884. image: {
  7885. source: "./media/characters/daniel/front.svg"
  7886. }
  7887. },
  7888. leaning: {
  7889. height: math.unit(6, "feet"),
  7890. weight: math.unit(225, "lbs"),
  7891. name: "Leaning",
  7892. image: {
  7893. source: "./media/characters/daniel/leaning.svg"
  7894. }
  7895. },
  7896. },
  7897. [
  7898. {
  7899. name: "Macro",
  7900. height: math.unit(1000, "feet"),
  7901. default: true
  7902. },
  7903. ]
  7904. ))
  7905. characterMakers.push(() => makeCharacter(
  7906. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7907. {
  7908. front: {
  7909. height: math.unit(6, "feet"),
  7910. weight: math.unit(88, "lbs"),
  7911. name: "Front",
  7912. image: {
  7913. source: "./media/characters/chiros/front.svg",
  7914. extra: 306 / 226
  7915. }
  7916. },
  7917. side: {
  7918. height: math.unit(6, "feet"),
  7919. weight: math.unit(88, "lbs"),
  7920. name: "Side",
  7921. image: {
  7922. source: "./media/characters/chiros/side.svg",
  7923. extra: 306 / 226
  7924. }
  7925. },
  7926. },
  7927. [
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(6, "cm"),
  7931. default: true
  7932. },
  7933. ]
  7934. ))
  7935. characterMakers.push(() => makeCharacter(
  7936. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7937. {
  7938. front: {
  7939. height: math.unit(6, "feet"),
  7940. weight: math.unit(100, "lbs"),
  7941. name: "Front",
  7942. image: {
  7943. source: "./media/characters/selka/front.svg",
  7944. extra: 947 / 887
  7945. }
  7946. }
  7947. },
  7948. [
  7949. {
  7950. name: "Normal",
  7951. height: math.unit(5, "cm"),
  7952. default: true
  7953. },
  7954. ]
  7955. ))
  7956. characterMakers.push(() => makeCharacter(
  7957. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7958. {
  7959. front: {
  7960. height: math.unit(8 + 3 / 12, "feet"),
  7961. weight: math.unit(424, "lbs"),
  7962. name: "Front",
  7963. image: {
  7964. source: "./media/characters/verin/front.svg",
  7965. extra: 1845 / 1550
  7966. }
  7967. },
  7968. frontArmored: {
  7969. height: math.unit(8 + 3 / 12, "feet"),
  7970. weight: math.unit(424, "lbs"),
  7971. name: "Front (Armored)",
  7972. image: {
  7973. source: "./media/characters/verin/front-armor.svg",
  7974. extra: 1845 / 1550,
  7975. bottom: 0.01
  7976. }
  7977. },
  7978. back: {
  7979. height: math.unit(8 + 3 / 12, "feet"),
  7980. weight: math.unit(424, "lbs"),
  7981. name: "Back",
  7982. image: {
  7983. source: "./media/characters/verin/back.svg",
  7984. bottom: 0.1,
  7985. extra: 1
  7986. }
  7987. },
  7988. foot: {
  7989. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7990. name: "Foot",
  7991. image: {
  7992. source: "./media/characters/verin/foot.svg"
  7993. }
  7994. },
  7995. },
  7996. [
  7997. {
  7998. name: "Normal",
  7999. height: math.unit(8 + 3 / 12, "feet")
  8000. },
  8001. {
  8002. name: "Minimacro",
  8003. height: math.unit(21, "feet"),
  8004. default: true
  8005. },
  8006. {
  8007. name: "Macro",
  8008. height: math.unit(626, "feet")
  8009. },
  8010. ]
  8011. ))
  8012. characterMakers.push(() => makeCharacter(
  8013. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8014. {
  8015. front: {
  8016. height: math.unit(2.718, "meters"),
  8017. weight: math.unit(150, "lbs"),
  8018. name: "Front",
  8019. image: {
  8020. source: "./media/characters/sovrim-terraquian/front.svg",
  8021. extra: 1752/1689,
  8022. bottom: 36/1788
  8023. }
  8024. },
  8025. back: {
  8026. height: math.unit(2.718, "meters"),
  8027. weight: math.unit(150, "lbs"),
  8028. name: "Back",
  8029. image: {
  8030. source: "./media/characters/sovrim-terraquian/back.svg",
  8031. extra: 1698/1657,
  8032. bottom: 58/1756
  8033. }
  8034. },
  8035. tongue: {
  8036. height: math.unit(2.865, "feet"),
  8037. name: "Tongue",
  8038. image: {
  8039. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8040. }
  8041. },
  8042. hand: {
  8043. height: math.unit(1.61, "feet"),
  8044. name: "Hand",
  8045. image: {
  8046. source: "./media/characters/sovrim-terraquian/hand.svg"
  8047. }
  8048. },
  8049. foot: {
  8050. height: math.unit(1.05, "feet"),
  8051. name: "Foot",
  8052. image: {
  8053. source: "./media/characters/sovrim-terraquian/foot.svg"
  8054. }
  8055. },
  8056. footAlt: {
  8057. height: math.unit(0.88, "feet"),
  8058. name: "Foot (Alt)",
  8059. image: {
  8060. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8061. }
  8062. },
  8063. },
  8064. [
  8065. {
  8066. name: "Micro",
  8067. height: math.unit(2, "inches")
  8068. },
  8069. {
  8070. name: "Small",
  8071. height: math.unit(1, "meter")
  8072. },
  8073. {
  8074. name: "Normal",
  8075. height: math.unit(Math.E, "meters"),
  8076. default: true
  8077. },
  8078. {
  8079. name: "Macro",
  8080. height: math.unit(20, "meters")
  8081. },
  8082. {
  8083. name: "Macro+",
  8084. height: math.unit(400, "meters")
  8085. },
  8086. ]
  8087. ))
  8088. characterMakers.push(() => makeCharacter(
  8089. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8090. {
  8091. front: {
  8092. height: math.unit(7, "feet"),
  8093. weight: math.unit(489, "lbs"),
  8094. name: "Front",
  8095. image: {
  8096. source: "./media/characters/reece-silvermane/front.svg",
  8097. bottom: 0.02,
  8098. extra: 1
  8099. }
  8100. },
  8101. },
  8102. [
  8103. {
  8104. name: "Macro",
  8105. height: math.unit(1.5, "miles"),
  8106. default: true
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8112. {
  8113. front: {
  8114. height: math.unit(6, "feet"),
  8115. weight: math.unit(78, "kg"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/kane/front.svg",
  8119. extra: 978 / 899
  8120. }
  8121. },
  8122. },
  8123. [
  8124. {
  8125. name: "Normal",
  8126. height: math.unit(2.1, "m"),
  8127. },
  8128. {
  8129. name: "Macro",
  8130. height: math.unit(1, "km"),
  8131. default: true
  8132. },
  8133. ]
  8134. ))
  8135. characterMakers.push(() => makeCharacter(
  8136. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8137. {
  8138. front: {
  8139. height: math.unit(6, "feet"),
  8140. weight: math.unit(200, "kg"),
  8141. name: "Front",
  8142. image: {
  8143. source: "./media/characters/tegon/front.svg",
  8144. bottom: 0.01,
  8145. extra: 1
  8146. }
  8147. },
  8148. },
  8149. [
  8150. {
  8151. name: "Micro",
  8152. height: math.unit(1, "inch")
  8153. },
  8154. {
  8155. name: "Normal",
  8156. height: math.unit(6 + 3 / 12, "feet"),
  8157. default: true
  8158. },
  8159. {
  8160. name: "Macro",
  8161. height: math.unit(300, "feet")
  8162. },
  8163. {
  8164. name: "Megamacro",
  8165. height: math.unit(69, "miles")
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8171. {
  8172. side: {
  8173. height: math.unit(6, "feet"),
  8174. weight: math.unit(2304, "lbs"),
  8175. name: "Side",
  8176. image: {
  8177. source: "./media/characters/arcturax/side.svg",
  8178. extra: 790 / 376,
  8179. bottom: 0.01
  8180. }
  8181. },
  8182. },
  8183. [
  8184. {
  8185. name: "Micro",
  8186. height: math.unit(2, "inch")
  8187. },
  8188. {
  8189. name: "Normal",
  8190. height: math.unit(6, "feet")
  8191. },
  8192. {
  8193. name: "Macro",
  8194. height: math.unit(39, "feet"),
  8195. default: true
  8196. },
  8197. {
  8198. name: "Megamacro",
  8199. height: math.unit(7, "miles")
  8200. },
  8201. ]
  8202. ))
  8203. characterMakers.push(() => makeCharacter(
  8204. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8205. {
  8206. front: {
  8207. height: math.unit(6, "feet"),
  8208. weight: math.unit(50, "lbs"),
  8209. name: "Front",
  8210. image: {
  8211. source: "./media/characters/sentri/front.svg",
  8212. extra: 1750 / 1570,
  8213. bottom: 0.025
  8214. }
  8215. },
  8216. frontAlt: {
  8217. height: math.unit(6, "feet"),
  8218. weight: math.unit(50, "lbs"),
  8219. name: "Front (Alt)",
  8220. image: {
  8221. source: "./media/characters/sentri/front-alt.svg",
  8222. extra: 1750 / 1570,
  8223. bottom: 0.025
  8224. }
  8225. },
  8226. },
  8227. [
  8228. {
  8229. name: "Normal",
  8230. height: math.unit(15, "feet"),
  8231. default: true
  8232. },
  8233. {
  8234. name: "Macro",
  8235. height: math.unit(2500, "feet")
  8236. }
  8237. ]
  8238. ))
  8239. characterMakers.push(() => makeCharacter(
  8240. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8241. {
  8242. front: {
  8243. height: math.unit(5 + 8 / 12, "feet"),
  8244. weight: math.unit(130, "lbs"),
  8245. name: "Front",
  8246. image: {
  8247. source: "./media/characters/corvin/front.svg",
  8248. extra: 1803 / 1629
  8249. }
  8250. },
  8251. frontShirt: {
  8252. height: math.unit(5 + 8 / 12, "feet"),
  8253. weight: math.unit(130, "lbs"),
  8254. name: "Front (Shirt)",
  8255. image: {
  8256. source: "./media/characters/corvin/front-shirt.svg",
  8257. extra: 1803 / 1629
  8258. }
  8259. },
  8260. frontPoncho: {
  8261. height: math.unit(5 + 8 / 12, "feet"),
  8262. weight: math.unit(130, "lbs"),
  8263. name: "Front (Poncho)",
  8264. image: {
  8265. source: "./media/characters/corvin/front-poncho.svg",
  8266. extra: 1803 / 1629
  8267. }
  8268. },
  8269. side: {
  8270. height: math.unit(5 + 8 / 12, "feet"),
  8271. weight: math.unit(130, "lbs"),
  8272. name: "Side",
  8273. image: {
  8274. source: "./media/characters/corvin/side.svg",
  8275. extra: 1012 / 945
  8276. }
  8277. },
  8278. back: {
  8279. height: math.unit(5 + 8 / 12, "feet"),
  8280. weight: math.unit(130, "lbs"),
  8281. name: "Back",
  8282. image: {
  8283. source: "./media/characters/corvin/back.svg",
  8284. extra: 1803 / 1629
  8285. }
  8286. },
  8287. },
  8288. [
  8289. {
  8290. name: "Micro",
  8291. height: math.unit(3, "inches")
  8292. },
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(5 + 8 / 12, "feet")
  8296. },
  8297. {
  8298. name: "Macro",
  8299. height: math.unit(300, "feet"),
  8300. default: true
  8301. },
  8302. {
  8303. name: "Megamacro",
  8304. height: math.unit(500, "miles")
  8305. }
  8306. ]
  8307. ))
  8308. characterMakers.push(() => makeCharacter(
  8309. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8310. {
  8311. front: {
  8312. height: math.unit(6, "feet"),
  8313. weight: math.unit(135, "lbs"),
  8314. name: "Front",
  8315. image: {
  8316. source: "./media/characters/q/front.svg",
  8317. extra: 854 / 752,
  8318. bottom: 0.005
  8319. }
  8320. },
  8321. back: {
  8322. height: math.unit(6, "feet"),
  8323. weight: math.unit(130, "lbs"),
  8324. name: "Back",
  8325. image: {
  8326. source: "./media/characters/q/back.svg",
  8327. extra: 854 / 752
  8328. }
  8329. },
  8330. },
  8331. [
  8332. {
  8333. name: "Macro",
  8334. height: math.unit(90, "feet"),
  8335. default: true
  8336. },
  8337. {
  8338. name: "Extra Macro",
  8339. height: math.unit(300, "feet"),
  8340. },
  8341. {
  8342. name: "BIG WALF",
  8343. height: math.unit(750, "feet"),
  8344. },
  8345. ]
  8346. ))
  8347. characterMakers.push(() => makeCharacter(
  8348. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8349. {
  8350. front: {
  8351. height: math.unit(6, "feet"),
  8352. weight: math.unit(150, "lbs"),
  8353. name: "Front",
  8354. image: {
  8355. source: "./media/characters/carley/front.svg",
  8356. extra: 3927 / 3540,
  8357. bottom: 29.2 / 735
  8358. }
  8359. }
  8360. },
  8361. [
  8362. {
  8363. name: "Normal",
  8364. height: math.unit(6 + 3 / 12, "feet")
  8365. },
  8366. {
  8367. name: "Macro",
  8368. height: math.unit(185, "feet"),
  8369. default: true
  8370. },
  8371. {
  8372. name: "Megamacro",
  8373. height: math.unit(8, "miles"),
  8374. },
  8375. ]
  8376. ))
  8377. characterMakers.push(() => makeCharacter(
  8378. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8379. {
  8380. front: {
  8381. height: math.unit(3, "feet"),
  8382. weight: math.unit(28, "lbs"),
  8383. name: "Front",
  8384. image: {
  8385. source: "./media/characters/citrine/front.svg"
  8386. }
  8387. }
  8388. },
  8389. [
  8390. {
  8391. name: "Normal",
  8392. height: math.unit(3, "feet"),
  8393. default: true
  8394. }
  8395. ]
  8396. ))
  8397. characterMakers.push(() => makeCharacter(
  8398. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8399. {
  8400. front: {
  8401. height: math.unit(14, "feet"),
  8402. weight: math.unit(1450, "kg"),
  8403. capacity: math.unit(15, "people"),
  8404. name: "Front",
  8405. image: {
  8406. source: "./media/characters/aura-starwind/front.svg",
  8407. extra: 1440/1327,
  8408. bottom: 11/1451
  8409. }
  8410. },
  8411. side: {
  8412. height: math.unit(14, "feet"),
  8413. weight: math.unit(1450, "kg"),
  8414. capacity: math.unit(15, "people"),
  8415. name: "Side",
  8416. image: {
  8417. source: "./media/characters/aura-starwind/side.svg",
  8418. extra: 1654 / 1497
  8419. }
  8420. },
  8421. taur: {
  8422. height: math.unit(18, "feet"),
  8423. weight: math.unit(5500, "kg"),
  8424. capacity: math.unit(50, "people"),
  8425. name: "Taur",
  8426. image: {
  8427. source: "./media/characters/aura-starwind/taur.svg",
  8428. extra: 1760 / 1650
  8429. }
  8430. },
  8431. feral: {
  8432. height: math.unit(46, "feet"),
  8433. weight: math.unit(25000, "kg"),
  8434. capacity: math.unit(120, "people"),
  8435. name: "Feral",
  8436. image: {
  8437. source: "./media/characters/aura-starwind/feral.svg"
  8438. }
  8439. },
  8440. },
  8441. [
  8442. {
  8443. name: "Normal",
  8444. height: math.unit(14, "feet"),
  8445. default: true
  8446. },
  8447. {
  8448. name: "Macro",
  8449. height: math.unit(50, "meters")
  8450. },
  8451. {
  8452. name: "Megamacro",
  8453. height: math.unit(5000, "meters")
  8454. },
  8455. {
  8456. name: "Gigamacro",
  8457. height: math.unit(100000, "kilometers")
  8458. },
  8459. ]
  8460. ))
  8461. characterMakers.push(() => makeCharacter(
  8462. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8463. {
  8464. front: {
  8465. height: math.unit(2 + 7 / 12, "feet"),
  8466. weight: math.unit(32, "lbs"),
  8467. name: "Front",
  8468. image: {
  8469. source: "./media/characters/rivet/front.svg",
  8470. extra: 1716 / 1658,
  8471. bottom: 0.03
  8472. }
  8473. },
  8474. foot: {
  8475. height: math.unit(0.551, "feet"),
  8476. name: "Rivet's Foot",
  8477. image: {
  8478. source: "./media/characters/rivet/foot.svg"
  8479. },
  8480. rename: true
  8481. }
  8482. },
  8483. [
  8484. {
  8485. name: "Micro",
  8486. height: math.unit(1.5, "inches"),
  8487. },
  8488. {
  8489. name: "Normal",
  8490. height: math.unit(2 + 7 / 12, "feet"),
  8491. default: true
  8492. },
  8493. {
  8494. name: "Macro",
  8495. height: math.unit(85, "feet")
  8496. },
  8497. {
  8498. name: "Megamacro",
  8499. height: math.unit(2.2, "km")
  8500. }
  8501. ]
  8502. ))
  8503. characterMakers.push(() => makeCharacter(
  8504. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8505. {
  8506. front: {
  8507. height: math.unit(5 + 9 / 12, "feet"),
  8508. weight: math.unit(150, "lbs"),
  8509. name: "Front",
  8510. image: {
  8511. source: "./media/characters/coffee/front.svg",
  8512. extra: 3666 / 3032,
  8513. bottom: 0.04
  8514. }
  8515. },
  8516. foot: {
  8517. height: math.unit(1.29, "feet"),
  8518. name: "Foot",
  8519. image: {
  8520. source: "./media/characters/coffee/foot.svg"
  8521. }
  8522. },
  8523. },
  8524. [
  8525. {
  8526. name: "Micro",
  8527. height: math.unit(2, "inches"),
  8528. },
  8529. {
  8530. name: "Normal",
  8531. height: math.unit(5 + 9 / 12, "feet"),
  8532. default: true
  8533. },
  8534. {
  8535. name: "Macro",
  8536. height: math.unit(800, "feet")
  8537. },
  8538. {
  8539. name: "Megamacro",
  8540. height: math.unit(25, "miles")
  8541. }
  8542. ]
  8543. ))
  8544. characterMakers.push(() => makeCharacter(
  8545. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8546. {
  8547. front: {
  8548. height: math.unit(6, "feet"),
  8549. weight: math.unit(200, "lbs"),
  8550. name: "Front",
  8551. image: {
  8552. source: "./media/characters/chari-gal/front.svg",
  8553. extra: 1568 / 1385,
  8554. bottom: 0.047
  8555. }
  8556. },
  8557. gigantamax: {
  8558. height: math.unit(6 * 16, "feet"),
  8559. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8560. name: "Gigantamax",
  8561. image: {
  8562. source: "./media/characters/chari-gal/gigantamax.svg",
  8563. extra: 1124 / 888,
  8564. bottom: 0.03
  8565. }
  8566. },
  8567. },
  8568. [
  8569. {
  8570. name: "Normal",
  8571. height: math.unit(5 + 7 / 12, "feet")
  8572. },
  8573. {
  8574. name: "Macro",
  8575. height: math.unit(200, "feet"),
  8576. default: true
  8577. }
  8578. ]
  8579. ))
  8580. characterMakers.push(() => makeCharacter(
  8581. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8582. {
  8583. front: {
  8584. height: math.unit(6, "feet"),
  8585. weight: math.unit(150, "lbs"),
  8586. name: "Front",
  8587. image: {
  8588. source: "./media/characters/nova/front.svg",
  8589. extra: 5000 / 4722,
  8590. bottom: 0.02
  8591. }
  8592. }
  8593. },
  8594. [
  8595. {
  8596. name: "Micro-",
  8597. height: math.unit(0.8, "inches")
  8598. },
  8599. {
  8600. name: "Micro",
  8601. height: math.unit(2, "inches"),
  8602. default: true
  8603. },
  8604. ]
  8605. ))
  8606. characterMakers.push(() => makeCharacter(
  8607. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8608. {
  8609. front: {
  8610. height: math.unit(3 + 1 / 12, "feet"),
  8611. weight: math.unit(21.7, "lbs"),
  8612. name: "Front",
  8613. image: {
  8614. source: "./media/characters/argent/front.svg",
  8615. extra: 1471 / 1331,
  8616. bottom: 100.8 / 1575.5
  8617. }
  8618. }
  8619. },
  8620. [
  8621. {
  8622. name: "Micro",
  8623. height: math.unit(2, "inches")
  8624. },
  8625. {
  8626. name: "Normal",
  8627. height: math.unit(3 + 1 / 12, "feet"),
  8628. default: true
  8629. },
  8630. {
  8631. name: "Macro",
  8632. height: math.unit(120, "feet")
  8633. },
  8634. ]
  8635. ))
  8636. characterMakers.push(() => makeCharacter(
  8637. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8638. {
  8639. lamp: {
  8640. height: math.unit(7 * 1559 / 989, "feet"),
  8641. name: "Magic Lamp",
  8642. image: {
  8643. source: "./media/characters/mira-al-cul/lamp.svg",
  8644. extra: 1617 / 1559
  8645. }
  8646. },
  8647. front: {
  8648. height: math.unit(7, "feet"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/mira-al-cul/front.svg",
  8652. extra: 1044 / 990
  8653. }
  8654. },
  8655. },
  8656. [
  8657. {
  8658. name: "Heavily Restricted",
  8659. height: math.unit(7 * 1559 / 989, "feet")
  8660. },
  8661. {
  8662. name: "Freshly Freed",
  8663. height: math.unit(50 * 1559 / 989, "feet")
  8664. },
  8665. {
  8666. name: "World Encompassing",
  8667. height: math.unit(10000 * 1559 / 989, "miles")
  8668. },
  8669. {
  8670. name: "Galactic",
  8671. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8672. },
  8673. {
  8674. name: "Palmed Universe",
  8675. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8676. default: true
  8677. },
  8678. {
  8679. name: "Multiversal Matriarch",
  8680. height: math.unit(8.87e10, "yottameters")
  8681. },
  8682. {
  8683. name: "Void Mother",
  8684. height: math.unit(3.14e110, "yottaparsecs")
  8685. },
  8686. {
  8687. name: "Toying with Transcendence",
  8688. height: math.unit(1e307, "meters")
  8689. },
  8690. ]
  8691. ))
  8692. characterMakers.push(() => makeCharacter(
  8693. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8694. {
  8695. front: {
  8696. height: math.unit(17 + 1 / 12, "feet"),
  8697. weight: math.unit(476.2 * 5, "lbs"),
  8698. name: "Front",
  8699. image: {
  8700. source: "./media/characters/kuro-shi-uchū/front.svg",
  8701. extra: 2329 / 1835,
  8702. bottom: 0.02
  8703. }
  8704. },
  8705. },
  8706. [
  8707. {
  8708. name: "Micro",
  8709. height: math.unit(2, "inches")
  8710. },
  8711. {
  8712. name: "Normal",
  8713. height: math.unit(12, "meters")
  8714. },
  8715. {
  8716. name: "Planetary",
  8717. height: math.unit(0.00929, "AU"),
  8718. default: true
  8719. },
  8720. {
  8721. name: "Universal",
  8722. height: math.unit(20, "gigaparsecs")
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(5 + 2 / 12, "feet"),
  8731. weight: math.unit(120, "lbs"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/katherine/front.svg",
  8735. extra: 2075 / 1969
  8736. }
  8737. },
  8738. dress: {
  8739. height: math.unit(5 + 2 / 12, "feet"),
  8740. weight: math.unit(120, "lbs"),
  8741. name: "Dress",
  8742. image: {
  8743. source: "./media/characters/katherine/dress.svg",
  8744. extra: 2258 / 2064
  8745. }
  8746. },
  8747. },
  8748. [
  8749. {
  8750. name: "Micro",
  8751. height: math.unit(1, "inches"),
  8752. default: true
  8753. },
  8754. {
  8755. name: "Normal",
  8756. height: math.unit(5 + 2 / 12, "feet")
  8757. },
  8758. {
  8759. name: "Macro",
  8760. height: math.unit(100, "meters")
  8761. },
  8762. {
  8763. name: "Megamacro",
  8764. height: math.unit(80, "miles")
  8765. },
  8766. ]
  8767. ))
  8768. characterMakers.push(() => makeCharacter(
  8769. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8770. {
  8771. front: {
  8772. height: math.unit(7 + 8 / 12, "feet"),
  8773. weight: math.unit(250, "lbs"),
  8774. name: "Front",
  8775. image: {
  8776. source: "./media/characters/yevis/front.svg",
  8777. extra: 1938 / 1755
  8778. }
  8779. }
  8780. },
  8781. [
  8782. {
  8783. name: "Mortal",
  8784. height: math.unit(7 + 8 / 12, "feet")
  8785. },
  8786. {
  8787. name: "Battle",
  8788. height: math.unit(25 + 11 / 12, "feet")
  8789. },
  8790. {
  8791. name: "Wrath",
  8792. height: math.unit(1654 + 11 / 12, "feet")
  8793. },
  8794. {
  8795. name: "Planet Destroyer",
  8796. height: math.unit(12000, "miles")
  8797. },
  8798. {
  8799. name: "Galaxy Conqueror",
  8800. height: math.unit(1.45, "zettameters"),
  8801. default: true
  8802. },
  8803. {
  8804. name: "Universal War",
  8805. height: math.unit(184, "gigaparsecs")
  8806. },
  8807. {
  8808. name: "Eternity War",
  8809. height: math.unit(1.98e55, "yottaparsecs")
  8810. },
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8815. {
  8816. front: {
  8817. height: math.unit(5 + 8 / 12, "feet"),
  8818. weight: math.unit(63, "kg"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/xavier/front.svg",
  8822. extra: 944 / 883
  8823. }
  8824. },
  8825. frontStretch: {
  8826. height: math.unit(5 + 8 / 12, "feet"),
  8827. weight: math.unit(63, "kg"),
  8828. name: "Stretching",
  8829. image: {
  8830. source: "./media/characters/xavier/front-stretch.svg",
  8831. extra: 962 / 820
  8832. }
  8833. },
  8834. },
  8835. [
  8836. {
  8837. name: "Normal",
  8838. height: math.unit(5 + 8 / 12, "feet")
  8839. },
  8840. {
  8841. name: "Macro",
  8842. height: math.unit(100, "meters"),
  8843. default: true
  8844. },
  8845. {
  8846. name: "McLargeHuge",
  8847. height: math.unit(10, "miles")
  8848. },
  8849. ]
  8850. ))
  8851. characterMakers.push(() => makeCharacter(
  8852. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8853. {
  8854. front: {
  8855. height: math.unit(5 + 5 / 12, "feet"),
  8856. weight: math.unit(150, "lb"),
  8857. name: "Front",
  8858. image: {
  8859. source: "./media/characters/joshii/front.svg",
  8860. extra: 765 / 653,
  8861. bottom: 51 / 816
  8862. }
  8863. },
  8864. foot: {
  8865. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8866. name: "Foot",
  8867. image: {
  8868. source: "./media/characters/joshii/foot.svg"
  8869. }
  8870. },
  8871. },
  8872. [
  8873. {
  8874. name: "Micro",
  8875. height: math.unit(2, "inches"),
  8876. default: true
  8877. },
  8878. {
  8879. name: "Normal",
  8880. height: math.unit(5 + 5 / 12, "feet")
  8881. },
  8882. {
  8883. name: "Macro",
  8884. height: math.unit(785, "feet")
  8885. },
  8886. {
  8887. name: "Megamacro",
  8888. height: math.unit(24.5, "miles")
  8889. },
  8890. ]
  8891. ))
  8892. characterMakers.push(() => makeCharacter(
  8893. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8894. {
  8895. front: {
  8896. height: math.unit(6, "feet"),
  8897. weight: math.unit(150, "lb"),
  8898. name: "Front",
  8899. image: {
  8900. source: "./media/characters/goddess-elizabeth/front.svg",
  8901. extra: 1800 / 1525,
  8902. bottom: 0.005
  8903. }
  8904. },
  8905. foot: {
  8906. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8907. name: "Foot",
  8908. image: {
  8909. source: "./media/characters/goddess-elizabeth/foot.svg"
  8910. }
  8911. },
  8912. mouth: {
  8913. height: math.unit(6, "feet"),
  8914. name: "Mouth",
  8915. image: {
  8916. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8917. }
  8918. },
  8919. },
  8920. [
  8921. {
  8922. name: "Micro",
  8923. height: math.unit(12, "feet")
  8924. },
  8925. {
  8926. name: "Normal",
  8927. height: math.unit(80, "miles"),
  8928. default: true
  8929. },
  8930. {
  8931. name: "Macro",
  8932. height: math.unit(15000, "parsecs")
  8933. },
  8934. ]
  8935. ))
  8936. characterMakers.push(() => makeCharacter(
  8937. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8938. {
  8939. front: {
  8940. height: math.unit(5 + 9 / 12, "feet"),
  8941. weight: math.unit(144, "lb"),
  8942. name: "Front",
  8943. image: {
  8944. source: "./media/characters/kara/front.svg"
  8945. }
  8946. },
  8947. feet: {
  8948. height: math.unit(6 / 6.765, "feet"),
  8949. name: "Kara's Feet",
  8950. rename: true,
  8951. image: {
  8952. source: "./media/characters/kara/feet.svg"
  8953. }
  8954. },
  8955. },
  8956. [
  8957. {
  8958. name: "Normal",
  8959. height: math.unit(5 + 9 / 12, "feet")
  8960. },
  8961. {
  8962. name: "Macro",
  8963. height: math.unit(174, "feet"),
  8964. default: true
  8965. },
  8966. ]
  8967. ))
  8968. characterMakers.push(() => makeCharacter(
  8969. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8970. {
  8971. front: {
  8972. height: math.unit(18, "feet"),
  8973. weight: math.unit(4050, "lb"),
  8974. name: "Front",
  8975. image: {
  8976. source: "./media/characters/tyrone/front.svg",
  8977. extra: 2405 / 2270,
  8978. bottom: 182 / 2587
  8979. }
  8980. },
  8981. },
  8982. [
  8983. {
  8984. name: "Normal",
  8985. height: math.unit(18, "feet"),
  8986. default: true
  8987. },
  8988. {
  8989. name: "Macro",
  8990. height: math.unit(300, "feet")
  8991. },
  8992. {
  8993. name: "Megamacro",
  8994. height: math.unit(15, "km")
  8995. },
  8996. {
  8997. name: "Gigamacro",
  8998. height: math.unit(500, "km")
  8999. },
  9000. {
  9001. name: "Teramacro",
  9002. height: math.unit(0.5, "gigameters")
  9003. },
  9004. {
  9005. name: "Omnimacro",
  9006. height: math.unit(1e252, "yottauniverse")
  9007. },
  9008. ]
  9009. ))
  9010. characterMakers.push(() => makeCharacter(
  9011. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9012. {
  9013. front: {
  9014. height: math.unit(7 + 8 / 12, "feet"),
  9015. weight: math.unit(120, "lb"),
  9016. name: "Front",
  9017. image: {
  9018. source: "./media/characters/danny/front.svg",
  9019. extra: 1490 / 1350
  9020. }
  9021. },
  9022. back: {
  9023. height: math.unit(7 + 8 / 12, "feet"),
  9024. weight: math.unit(120, "lb"),
  9025. name: "Back",
  9026. image: {
  9027. source: "./media/characters/danny/back.svg",
  9028. extra: 1490 / 1350
  9029. }
  9030. },
  9031. },
  9032. [
  9033. {
  9034. name: "Normal",
  9035. height: math.unit(7 + 8 / 12, "feet"),
  9036. default: true
  9037. },
  9038. ]
  9039. ))
  9040. characterMakers.push(() => makeCharacter(
  9041. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9042. {
  9043. front: {
  9044. height: math.unit(3.5, "inches"),
  9045. weight: math.unit(19, "grams"),
  9046. name: "Front",
  9047. image: {
  9048. source: "./media/characters/mallow/front.svg",
  9049. extra: 471 / 431
  9050. }
  9051. },
  9052. back: {
  9053. height: math.unit(3.5, "inches"),
  9054. weight: math.unit(19, "grams"),
  9055. name: "Back",
  9056. image: {
  9057. source: "./media/characters/mallow/back.svg",
  9058. extra: 471 / 431
  9059. }
  9060. },
  9061. },
  9062. [
  9063. {
  9064. name: "Normal",
  9065. height: math.unit(3.5, "inches"),
  9066. default: true
  9067. },
  9068. ]
  9069. ))
  9070. characterMakers.push(() => makeCharacter(
  9071. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9072. {
  9073. front: {
  9074. height: math.unit(9, "feet"),
  9075. weight: math.unit(230, "kg"),
  9076. name: "Front",
  9077. image: {
  9078. source: "./media/characters/starry-aqua/front.svg"
  9079. }
  9080. },
  9081. back: {
  9082. height: math.unit(9, "feet"),
  9083. weight: math.unit(230, "kg"),
  9084. name: "Back",
  9085. image: {
  9086. source: "./media/characters/starry-aqua/back.svg"
  9087. }
  9088. },
  9089. hand: {
  9090. height: math.unit(9 * 0.1168, "feet"),
  9091. name: "Hand",
  9092. image: {
  9093. source: "./media/characters/starry-aqua/hand.svg"
  9094. }
  9095. },
  9096. foot: {
  9097. height: math.unit(9 * 0.18, "feet"),
  9098. name: "Foot",
  9099. image: {
  9100. source: "./media/characters/starry-aqua/foot.svg"
  9101. }
  9102. }
  9103. },
  9104. [
  9105. {
  9106. name: "Micro",
  9107. height: math.unit(3, "inches")
  9108. },
  9109. {
  9110. name: "Normal",
  9111. height: math.unit(9, "feet")
  9112. },
  9113. {
  9114. name: "Macro",
  9115. height: math.unit(300, "feet"),
  9116. default: true
  9117. },
  9118. {
  9119. name: "Megamacro",
  9120. height: math.unit(3200, "feet")
  9121. }
  9122. ]
  9123. ))
  9124. characterMakers.push(() => makeCharacter(
  9125. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9126. {
  9127. front: {
  9128. height: math.unit(15, "feet"),
  9129. weight: math.unit(5026, "lb"),
  9130. name: "Front",
  9131. image: {
  9132. source: "./media/characters/luka-towers/front.svg",
  9133. extra: 1269/1133,
  9134. bottom: 51/1320
  9135. }
  9136. },
  9137. },
  9138. [
  9139. {
  9140. name: "Normal",
  9141. height: math.unit(15, "feet"),
  9142. default: true
  9143. },
  9144. {
  9145. name: "Minimacro",
  9146. height: math.unit(25, "feet")
  9147. },
  9148. {
  9149. name: "Macro",
  9150. height: math.unit(320, "feet")
  9151. },
  9152. {
  9153. name: "Megamacro",
  9154. height: math.unit(35000, "feet")
  9155. },
  9156. {
  9157. name: "Gigamacro",
  9158. height: math.unit(4000, "miles")
  9159. },
  9160. {
  9161. name: "Teramacro",
  9162. height: math.unit(15000, "miles")
  9163. },
  9164. ]
  9165. ))
  9166. characterMakers.push(() => makeCharacter(
  9167. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9168. {
  9169. front: {
  9170. height: math.unit(6, "feet"),
  9171. weight: math.unit(150, "lb"),
  9172. name: "Front",
  9173. image: {
  9174. source: "./media/characters/natalie-nightring/front.svg",
  9175. extra: 1,
  9176. bottom: 0.06
  9177. }
  9178. },
  9179. },
  9180. [
  9181. {
  9182. name: "Uh Oh",
  9183. height: math.unit(0.1, "mm")
  9184. },
  9185. {
  9186. name: "Small",
  9187. height: math.unit(3, "inches")
  9188. },
  9189. {
  9190. name: "Human Scale",
  9191. height: math.unit(6, "feet")
  9192. },
  9193. {
  9194. name: "Librarian",
  9195. height: math.unit(50, "feet"),
  9196. default: true
  9197. },
  9198. {
  9199. name: "Immense",
  9200. height: math.unit(200, "miles")
  9201. },
  9202. ]
  9203. ))
  9204. characterMakers.push(() => makeCharacter(
  9205. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9206. {
  9207. front: {
  9208. height: math.unit(6, "feet"),
  9209. weight: math.unit(180, "lbs"),
  9210. name: "Front",
  9211. image: {
  9212. source: "./media/characters/danni-rosie/front.svg",
  9213. extra: 1260 / 1128,
  9214. bottom: 0.022
  9215. }
  9216. },
  9217. },
  9218. [
  9219. {
  9220. name: "Micro",
  9221. height: math.unit(2, "inches"),
  9222. default: true
  9223. },
  9224. ]
  9225. ))
  9226. characterMakers.push(() => makeCharacter(
  9227. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9228. {
  9229. front: {
  9230. height: math.unit(5 + 9 / 12, "feet"),
  9231. weight: math.unit(220, "lb"),
  9232. name: "Front",
  9233. image: {
  9234. source: "./media/characters/samantha-kruse/front.svg",
  9235. extra: (985 / 935),
  9236. bottom: 0.03
  9237. }
  9238. },
  9239. frontUndressed: {
  9240. height: math.unit(5 + 9 / 12, "feet"),
  9241. weight: math.unit(220, "lb"),
  9242. name: "Front (Undressed)",
  9243. image: {
  9244. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9245. extra: (973 / 923),
  9246. bottom: 0.025
  9247. }
  9248. },
  9249. fat: {
  9250. height: math.unit(5 + 9 / 12, "feet"),
  9251. weight: math.unit(900, "lb"),
  9252. name: "Front (Fat)",
  9253. image: {
  9254. source: "./media/characters/samantha-kruse/fat.svg",
  9255. extra: 2688 / 2561
  9256. }
  9257. },
  9258. },
  9259. [
  9260. {
  9261. name: "Normal",
  9262. height: math.unit(5 + 9 / 12, "feet"),
  9263. default: true
  9264. }
  9265. ]
  9266. ))
  9267. characterMakers.push(() => makeCharacter(
  9268. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9269. {
  9270. back: {
  9271. height: math.unit(5 + 4 / 12, "feet"),
  9272. weight: math.unit(4963, "lb"),
  9273. name: "Back",
  9274. image: {
  9275. source: "./media/characters/amelia-rosie/back.svg",
  9276. extra: 1113 / 963,
  9277. bottom: 0.01
  9278. }
  9279. },
  9280. },
  9281. [
  9282. {
  9283. name: "Level 0",
  9284. height: math.unit(5 + 4 / 12, "feet")
  9285. },
  9286. {
  9287. name: "Level 1",
  9288. height: math.unit(164597, "feet"),
  9289. default: true
  9290. },
  9291. {
  9292. name: "Level 2",
  9293. height: math.unit(956243, "miles")
  9294. },
  9295. {
  9296. name: "Level 3",
  9297. height: math.unit(29421709423, "miles")
  9298. },
  9299. {
  9300. name: "Level 4",
  9301. height: math.unit(154, "lightyears")
  9302. },
  9303. {
  9304. name: "Level 5",
  9305. height: math.unit(4738272, "lightyears")
  9306. },
  9307. {
  9308. name: "Level 6",
  9309. height: math.unit(145787152896, "lightyears")
  9310. },
  9311. ]
  9312. ))
  9313. characterMakers.push(() => makeCharacter(
  9314. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9315. {
  9316. front: {
  9317. height: math.unit(5 + 11 / 12, "feet"),
  9318. weight: math.unit(65, "kg"),
  9319. name: "Front",
  9320. image: {
  9321. source: "./media/characters/rook-kitara/front.svg",
  9322. extra: 1347 / 1274,
  9323. bottom: 0.005
  9324. }
  9325. },
  9326. },
  9327. [
  9328. {
  9329. name: "Totally Unfair",
  9330. height: math.unit(1.8, "mm")
  9331. },
  9332. {
  9333. name: "Lap Rookie",
  9334. height: math.unit(1.4, "feet")
  9335. },
  9336. {
  9337. name: "Normal",
  9338. height: math.unit(5 + 11 / 12, "feet"),
  9339. default: true
  9340. },
  9341. {
  9342. name: "How Did This Happen",
  9343. height: math.unit(80, "miles")
  9344. }
  9345. ]
  9346. ))
  9347. characterMakers.push(() => makeCharacter(
  9348. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9349. {
  9350. front: {
  9351. height: math.unit(7, "feet"),
  9352. weight: math.unit(300, "lb"),
  9353. name: "Front",
  9354. image: {
  9355. source: "./media/characters/pisces/front.svg",
  9356. extra: 2255 / 2115,
  9357. bottom: 0.03
  9358. }
  9359. },
  9360. back: {
  9361. height: math.unit(7, "feet"),
  9362. weight: math.unit(300, "lb"),
  9363. name: "Back",
  9364. image: {
  9365. source: "./media/characters/pisces/back.svg",
  9366. extra: 2146 / 2055,
  9367. bottom: 0.04
  9368. }
  9369. },
  9370. },
  9371. [
  9372. {
  9373. name: "Normal",
  9374. height: math.unit(7, "feet"),
  9375. default: true
  9376. },
  9377. {
  9378. name: "Swimming Pool",
  9379. height: math.unit(12.2, "meters")
  9380. },
  9381. {
  9382. name: "Olympic Swimming Pool",
  9383. height: math.unit(56.3, "meters")
  9384. },
  9385. {
  9386. name: "Lake Superior",
  9387. height: math.unit(93900, "meters")
  9388. },
  9389. {
  9390. name: "Mediterranean Sea",
  9391. height: math.unit(644457, "meters")
  9392. },
  9393. {
  9394. name: "World's Oceans",
  9395. height: math.unit(4567491, "meters")
  9396. },
  9397. ]
  9398. ))
  9399. characterMakers.push(() => makeCharacter(
  9400. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9401. {
  9402. front: {
  9403. height: math.unit(2.3, "meters"),
  9404. weight: math.unit(120, "kg"),
  9405. name: "Front",
  9406. image: {
  9407. source: "./media/characters/zelas/front.svg"
  9408. }
  9409. },
  9410. side: {
  9411. height: math.unit(2.3, "meters"),
  9412. weight: math.unit(120, "kg"),
  9413. name: "Side",
  9414. image: {
  9415. source: "./media/characters/zelas/side.svg"
  9416. }
  9417. },
  9418. back: {
  9419. height: math.unit(2.3, "meters"),
  9420. weight: math.unit(120, "kg"),
  9421. name: "Back",
  9422. image: {
  9423. source: "./media/characters/zelas/back.svg"
  9424. }
  9425. },
  9426. foot: {
  9427. height: math.unit(1.116, "feet"),
  9428. name: "Foot",
  9429. image: {
  9430. source: "./media/characters/zelas/foot.svg"
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Normal",
  9437. height: math.unit(2.3, "meters")
  9438. },
  9439. {
  9440. name: "Macro",
  9441. height: math.unit(30, "meters"),
  9442. default: true
  9443. },
  9444. ]
  9445. ))
  9446. characterMakers.push(() => makeCharacter(
  9447. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9448. {
  9449. front: {
  9450. height: math.unit(1, "inch"),
  9451. weight: math.unit(0.21, "grams"),
  9452. name: "Front",
  9453. image: {
  9454. source: "./media/characters/talbot/front.svg",
  9455. extra: 594 / 544
  9456. }
  9457. },
  9458. },
  9459. [
  9460. {
  9461. name: "Micro",
  9462. height: math.unit(1, "inch"),
  9463. default: true
  9464. },
  9465. ]
  9466. ))
  9467. characterMakers.push(() => makeCharacter(
  9468. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9469. {
  9470. front: {
  9471. height: math.unit(3 + 3 / 12, "feet"),
  9472. weight: math.unit(51.8, "lb"),
  9473. name: "Front",
  9474. image: {
  9475. source: "./media/characters/fliss/front.svg",
  9476. extra: 840 / 640
  9477. }
  9478. },
  9479. },
  9480. [
  9481. {
  9482. name: "Teeny Tiny",
  9483. height: math.unit(1, "mm")
  9484. },
  9485. {
  9486. name: "Small",
  9487. height: math.unit(1, "inch"),
  9488. default: true
  9489. },
  9490. {
  9491. name: "Standard Sylveon",
  9492. height: math.unit(3 + 3 / 12, "feet")
  9493. },
  9494. {
  9495. name: "Large Nuisance",
  9496. height: math.unit(33, "feet")
  9497. },
  9498. {
  9499. name: "City Filler",
  9500. height: math.unit(3000, "feet")
  9501. },
  9502. {
  9503. name: "New Horizon",
  9504. height: math.unit(6000, "miles")
  9505. },
  9506. ]
  9507. ))
  9508. characterMakers.push(() => makeCharacter(
  9509. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9510. {
  9511. front: {
  9512. height: math.unit(5, "cm"),
  9513. weight: math.unit(1.94, "g"),
  9514. name: "Front",
  9515. image: {
  9516. source: "./media/characters/fleta/front.svg",
  9517. extra: 835 / 803
  9518. }
  9519. },
  9520. back: {
  9521. height: math.unit(5, "cm"),
  9522. weight: math.unit(1.94, "g"),
  9523. name: "Back",
  9524. image: {
  9525. source: "./media/characters/fleta/back.svg",
  9526. extra: 835 / 803
  9527. }
  9528. },
  9529. },
  9530. [
  9531. {
  9532. name: "Micro",
  9533. height: math.unit(5, "cm"),
  9534. default: true
  9535. },
  9536. ]
  9537. ))
  9538. characterMakers.push(() => makeCharacter(
  9539. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9540. {
  9541. front: {
  9542. height: math.unit(6, "feet"),
  9543. weight: math.unit(225, "lb"),
  9544. name: "Front",
  9545. image: {
  9546. source: "./media/characters/dominic/front.svg",
  9547. extra: 1770 / 1620,
  9548. bottom: 0.025
  9549. }
  9550. },
  9551. back: {
  9552. height: math.unit(6, "feet"),
  9553. weight: math.unit(225, "lb"),
  9554. name: "Back",
  9555. image: {
  9556. source: "./media/characters/dominic/back.svg",
  9557. extra: 1745 / 1620,
  9558. bottom: 0.065
  9559. }
  9560. },
  9561. },
  9562. [
  9563. {
  9564. name: "Nano",
  9565. height: math.unit(0.1, "mm")
  9566. },
  9567. {
  9568. name: "Micro-",
  9569. height: math.unit(1, "mm")
  9570. },
  9571. {
  9572. name: "Micro",
  9573. height: math.unit(4, "inches")
  9574. },
  9575. {
  9576. name: "Normal",
  9577. height: math.unit(6 + 4 / 12, "feet"),
  9578. default: true
  9579. },
  9580. {
  9581. name: "Macro",
  9582. height: math.unit(115, "feet")
  9583. },
  9584. {
  9585. name: "Macro+",
  9586. height: math.unit(955, "feet")
  9587. },
  9588. {
  9589. name: "Megamacro",
  9590. height: math.unit(8990, "feet")
  9591. },
  9592. {
  9593. name: "Gigmacro",
  9594. height: math.unit(9310, "miles")
  9595. },
  9596. {
  9597. name: "Teramacro",
  9598. height: math.unit(1567005010, "miles")
  9599. },
  9600. {
  9601. name: "Examacro",
  9602. height: math.unit(1425, "parsecs")
  9603. },
  9604. ]
  9605. ))
  9606. characterMakers.push(() => makeCharacter(
  9607. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9608. {
  9609. front: {
  9610. height: math.unit(400, "feet"),
  9611. weight: math.unit(44444444, "lb"),
  9612. name: "Front",
  9613. image: {
  9614. source: "./media/characters/major-colonel/front.svg"
  9615. }
  9616. },
  9617. back: {
  9618. height: math.unit(400, "feet"),
  9619. weight: math.unit(44444444, "lb"),
  9620. name: "Back",
  9621. image: {
  9622. source: "./media/characters/major-colonel/back.svg"
  9623. }
  9624. },
  9625. },
  9626. [
  9627. {
  9628. name: "Macro",
  9629. height: math.unit(400, "feet"),
  9630. default: true
  9631. },
  9632. ]
  9633. ))
  9634. characterMakers.push(() => makeCharacter(
  9635. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9636. {
  9637. catFront: {
  9638. height: math.unit(6, "feet"),
  9639. weight: math.unit(120, "lb"),
  9640. name: "Front (Cat Side)",
  9641. image: {
  9642. source: "./media/characters/axel-lycan/cat-front.svg",
  9643. extra: 430 / 402,
  9644. bottom: 43 / 472.35
  9645. }
  9646. },
  9647. catBack: {
  9648. height: math.unit(6, "feet"),
  9649. weight: math.unit(120, "lb"),
  9650. name: "Back (Cat Side)",
  9651. image: {
  9652. source: "./media/characters/axel-lycan/cat-back.svg",
  9653. extra: 447 / 419,
  9654. bottom: 23.3 / 469
  9655. }
  9656. },
  9657. wolfFront: {
  9658. height: math.unit(6, "feet"),
  9659. weight: math.unit(120, "lb"),
  9660. name: "Front (Wolf Side)",
  9661. image: {
  9662. source: "./media/characters/axel-lycan/wolf-front.svg",
  9663. extra: 485 / 456,
  9664. bottom: 19 / 504
  9665. }
  9666. },
  9667. wolfBack: {
  9668. height: math.unit(6, "feet"),
  9669. weight: math.unit(120, "lb"),
  9670. name: "Back (Wolf Side)",
  9671. image: {
  9672. source: "./media/characters/axel-lycan/wolf-back.svg",
  9673. extra: 475 / 438,
  9674. bottom: 39.2 / 514
  9675. }
  9676. },
  9677. },
  9678. [
  9679. {
  9680. name: "Macro",
  9681. height: math.unit(1, "km"),
  9682. default: true
  9683. },
  9684. ]
  9685. ))
  9686. characterMakers.push(() => makeCharacter(
  9687. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9688. {
  9689. front: {
  9690. height: math.unit(5 + 9 / 12, "feet"),
  9691. weight: math.unit(175, "lb"),
  9692. name: "Front",
  9693. image: {
  9694. source: "./media/characters/vanrel-hyena/front.svg",
  9695. extra: 1086 / 1010,
  9696. bottom: 0.04
  9697. }
  9698. },
  9699. },
  9700. [
  9701. {
  9702. name: "Normal",
  9703. height: math.unit(5 + 9 / 12, "feet"),
  9704. default: true
  9705. },
  9706. ]
  9707. ))
  9708. characterMakers.push(() => makeCharacter(
  9709. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9710. {
  9711. front: {
  9712. height: math.unit(6, "feet"),
  9713. weight: math.unit(103, "lb"),
  9714. name: "Front",
  9715. image: {
  9716. source: "./media/characters/abbott-absol/front.svg",
  9717. extra: 2010 / 1842
  9718. }
  9719. },
  9720. },
  9721. [
  9722. {
  9723. name: "Megamicro",
  9724. height: math.unit(0.1, "mm")
  9725. },
  9726. {
  9727. name: "Micro",
  9728. height: math.unit(1, "inch")
  9729. },
  9730. {
  9731. name: "Normal",
  9732. height: math.unit(6, "feet"),
  9733. default: true
  9734. },
  9735. ]
  9736. ))
  9737. characterMakers.push(() => makeCharacter(
  9738. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9739. {
  9740. front: {
  9741. height: math.unit(6, "feet"),
  9742. weight: math.unit(264, "lb"),
  9743. name: "Front",
  9744. image: {
  9745. source: "./media/characters/hector/front.svg",
  9746. extra: 2280 / 2130,
  9747. bottom: 0.07
  9748. }
  9749. },
  9750. },
  9751. [
  9752. {
  9753. name: "Normal",
  9754. height: math.unit(12.25, "foot"),
  9755. default: true
  9756. },
  9757. {
  9758. name: "Macro",
  9759. height: math.unit(160, "feet")
  9760. },
  9761. ]
  9762. ))
  9763. characterMakers.push(() => makeCharacter(
  9764. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9765. {
  9766. front: {
  9767. height: math.unit(6, "feet"),
  9768. weight: math.unit(150, "lb"),
  9769. name: "Front",
  9770. image: {
  9771. source: "./media/characters/sal/front.svg",
  9772. extra: 1846 / 1699,
  9773. bottom: 0.04
  9774. }
  9775. },
  9776. },
  9777. [
  9778. {
  9779. name: "Megamacro",
  9780. height: math.unit(10, "miles"),
  9781. default: true
  9782. },
  9783. ]
  9784. ))
  9785. characterMakers.push(() => makeCharacter(
  9786. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9787. {
  9788. front: {
  9789. height: math.unit(3, "meters"),
  9790. weight: math.unit(450, "kg"),
  9791. name: "front",
  9792. image: {
  9793. source: "./media/characters/ranger/front.svg",
  9794. extra: 2401 / 2243,
  9795. bottom: 0.05
  9796. }
  9797. },
  9798. },
  9799. [
  9800. {
  9801. name: "Normal",
  9802. height: math.unit(3, "meters"),
  9803. default: true
  9804. },
  9805. ]
  9806. ))
  9807. characterMakers.push(() => makeCharacter(
  9808. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9809. {
  9810. front: {
  9811. height: math.unit(14, "feet"),
  9812. weight: math.unit(800, "kg"),
  9813. name: "Front",
  9814. image: {
  9815. source: "./media/characters/theresa/front.svg",
  9816. extra: 3575 / 3346,
  9817. bottom: 0.03
  9818. }
  9819. },
  9820. },
  9821. [
  9822. {
  9823. name: "Normal",
  9824. height: math.unit(14, "feet"),
  9825. default: true
  9826. },
  9827. ]
  9828. ))
  9829. characterMakers.push(() => makeCharacter(
  9830. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9831. {
  9832. front: {
  9833. height: math.unit(6, "feet"),
  9834. weight: math.unit(3, "kg"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/ine/front.svg",
  9838. extra: 678 / 539,
  9839. bottom: 0.023
  9840. }
  9841. },
  9842. },
  9843. [
  9844. {
  9845. name: "Normal",
  9846. height: math.unit(2.265, "feet"),
  9847. default: true
  9848. },
  9849. ]
  9850. ))
  9851. characterMakers.push(() => makeCharacter(
  9852. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9853. {
  9854. front: {
  9855. height: math.unit(5, "feet"),
  9856. weight: math.unit(30, "kg"),
  9857. name: "Front",
  9858. image: {
  9859. source: "./media/characters/vial/front.svg",
  9860. extra: 1365 / 1277,
  9861. bottom: 0.04
  9862. }
  9863. },
  9864. },
  9865. [
  9866. {
  9867. name: "Normal",
  9868. height: math.unit(5, "feet"),
  9869. default: true
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9875. {
  9876. side: {
  9877. height: math.unit(3.4, "meters"),
  9878. weight: math.unit(1000, "lb"),
  9879. name: "Side",
  9880. image: {
  9881. source: "./media/characters/rovoska/side.svg",
  9882. extra: 4403 / 1515
  9883. }
  9884. },
  9885. },
  9886. [
  9887. {
  9888. name: "Normal",
  9889. height: math.unit(3.4, "meters"),
  9890. default: true
  9891. },
  9892. ]
  9893. ))
  9894. characterMakers.push(() => makeCharacter(
  9895. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9896. {
  9897. front: {
  9898. height: math.unit(8, "feet"),
  9899. weight: math.unit(315, "lb"),
  9900. name: "Front",
  9901. image: {
  9902. source: "./media/characters/gunner-rotthbauer/front.svg"
  9903. }
  9904. },
  9905. back: {
  9906. height: math.unit(8, "feet"),
  9907. weight: math.unit(315, "lb"),
  9908. name: "Back",
  9909. image: {
  9910. source: "./media/characters/gunner-rotthbauer/back.svg"
  9911. }
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Micro",
  9917. height: math.unit(3.5, "inches")
  9918. },
  9919. {
  9920. name: "Normal",
  9921. height: math.unit(8, "feet"),
  9922. default: true
  9923. },
  9924. {
  9925. name: "Macro",
  9926. height: math.unit(250, "feet")
  9927. },
  9928. {
  9929. name: "Megamacro",
  9930. height: math.unit(1, "AU")
  9931. },
  9932. ]
  9933. ))
  9934. characterMakers.push(() => makeCharacter(
  9935. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9936. {
  9937. front: {
  9938. height: math.unit(5 + 5 / 12, "feet"),
  9939. weight: math.unit(140, "lb"),
  9940. name: "Front",
  9941. image: {
  9942. source: "./media/characters/allatia/front.svg",
  9943. extra: 1227 / 1180,
  9944. bottom: 0.027
  9945. }
  9946. },
  9947. },
  9948. [
  9949. {
  9950. name: "Normal",
  9951. height: math.unit(5 + 5 / 12, "feet")
  9952. },
  9953. {
  9954. name: "Macro",
  9955. height: math.unit(250, "feet"),
  9956. default: true
  9957. },
  9958. {
  9959. name: "Megamacro",
  9960. height: math.unit(8, "miles")
  9961. }
  9962. ]
  9963. ))
  9964. characterMakers.push(() => makeCharacter(
  9965. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9966. {
  9967. front: {
  9968. height: math.unit(6, "feet"),
  9969. weight: math.unit(120, "lb"),
  9970. name: "Front",
  9971. image: {
  9972. source: "./media/characters/tene/front.svg",
  9973. extra: 1728 / 1578,
  9974. bottom: 0.022
  9975. }
  9976. },
  9977. stomping: {
  9978. height: math.unit(2.025, "meters"),
  9979. weight: math.unit(120, "lb"),
  9980. name: "Stomping",
  9981. image: {
  9982. source: "./media/characters/tene/stomping.svg",
  9983. extra: 938 / 873,
  9984. bottom: 0.01
  9985. }
  9986. },
  9987. sitting: {
  9988. height: math.unit(1, "meter"),
  9989. weight: math.unit(120, "lb"),
  9990. name: "Sitting",
  9991. image: {
  9992. source: "./media/characters/tene/sitting.svg",
  9993. extra: 437 / 415,
  9994. bottom: 0.1
  9995. }
  9996. },
  9997. feral: {
  9998. height: math.unit(3.9, "feet"),
  9999. weight: math.unit(250, "lb"),
  10000. name: "Feral",
  10001. image: {
  10002. source: "./media/characters/tene/feral.svg",
  10003. extra: 717 / 458,
  10004. bottom: 0.179
  10005. }
  10006. },
  10007. },
  10008. [
  10009. {
  10010. name: "Normal",
  10011. height: math.unit(6, "feet")
  10012. },
  10013. {
  10014. name: "Macro",
  10015. height: math.unit(300, "feet"),
  10016. default: true
  10017. },
  10018. {
  10019. name: "Megamacro",
  10020. height: math.unit(5, "miles")
  10021. },
  10022. ]
  10023. ))
  10024. characterMakers.push(() => makeCharacter(
  10025. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10026. {
  10027. side: {
  10028. height: math.unit(6, "feet"),
  10029. name: "Side",
  10030. image: {
  10031. source: "./media/characters/evander/side.svg",
  10032. extra: 877 / 477
  10033. }
  10034. },
  10035. },
  10036. [
  10037. {
  10038. name: "Normal",
  10039. height: math.unit(0.83, "meters"),
  10040. default: true
  10041. },
  10042. ]
  10043. ))
  10044. characterMakers.push(() => makeCharacter(
  10045. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10046. {
  10047. front: {
  10048. height: math.unit(12, "feet"),
  10049. weight: math.unit(1000, "lb"),
  10050. name: "Front",
  10051. image: {
  10052. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10053. extra: 1762 / 1611
  10054. }
  10055. },
  10056. back: {
  10057. height: math.unit(12, "feet"),
  10058. weight: math.unit(1000, "lb"),
  10059. name: "Back",
  10060. image: {
  10061. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10062. extra: 1762 / 1611
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Normal",
  10069. height: math.unit(12, "feet"),
  10070. default: true
  10071. },
  10072. {
  10073. name: "Kaiju",
  10074. height: math.unit(150, "feet")
  10075. },
  10076. ]
  10077. ))
  10078. characterMakers.push(() => makeCharacter(
  10079. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10080. {
  10081. front: {
  10082. height: math.unit(6, "feet"),
  10083. weight: math.unit(150, "lb"),
  10084. name: "Front",
  10085. image: {
  10086. source: "./media/characters/zero-alurus/front.svg"
  10087. }
  10088. },
  10089. back: {
  10090. height: math.unit(6, "feet"),
  10091. weight: math.unit(150, "lb"),
  10092. name: "Back",
  10093. image: {
  10094. source: "./media/characters/zero-alurus/back.svg"
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Normal",
  10101. height: math.unit(5 + 10 / 12, "feet")
  10102. },
  10103. {
  10104. name: "Macro",
  10105. height: math.unit(60, "feet"),
  10106. default: true
  10107. },
  10108. {
  10109. name: "Macro+",
  10110. height: math.unit(450, "feet")
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(6, "feet"),
  10119. weight: math.unit(200, "lb"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/mega-shi/front.svg",
  10123. extra: 1279 / 1250,
  10124. bottom: 0.02
  10125. }
  10126. },
  10127. back: {
  10128. height: math.unit(6, "feet"),
  10129. weight: math.unit(200, "lb"),
  10130. name: "Back",
  10131. image: {
  10132. source: "./media/characters/mega-shi/back.svg",
  10133. extra: 1279 / 1250,
  10134. bottom: 0.02
  10135. }
  10136. },
  10137. },
  10138. [
  10139. {
  10140. name: "Micro",
  10141. height: math.unit(16 + 6 / 12, "feet")
  10142. },
  10143. {
  10144. name: "Third Dimension",
  10145. height: math.unit(40, "meters")
  10146. },
  10147. {
  10148. name: "Normal",
  10149. height: math.unit(660, "feet"),
  10150. default: true
  10151. },
  10152. {
  10153. name: "Megamacro",
  10154. height: math.unit(10, "miles")
  10155. },
  10156. {
  10157. name: "Planetary Launch",
  10158. height: math.unit(500, "miles")
  10159. },
  10160. {
  10161. name: "Interstellar",
  10162. height: math.unit(1e9, "miles")
  10163. },
  10164. {
  10165. name: "Leaving the Universe",
  10166. height: math.unit(1, "gigaparsec")
  10167. },
  10168. {
  10169. name: "Travelling Universes",
  10170. height: math.unit(30e15, "parsecs")
  10171. },
  10172. ]
  10173. ))
  10174. characterMakers.push(() => makeCharacter(
  10175. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10176. {
  10177. front: {
  10178. height: math.unit(5 + 4/12, "feet"),
  10179. weight: math.unit(120, "lb"),
  10180. name: "Front",
  10181. image: {
  10182. source: "./media/characters/odyssey/front.svg",
  10183. extra: 1747/1571,
  10184. bottom: 47/1794
  10185. }
  10186. },
  10187. side: {
  10188. height: math.unit(5.1, "feet"),
  10189. weight: math.unit(120, "lb"),
  10190. name: "Side",
  10191. image: {
  10192. source: "./media/characters/odyssey/side.svg",
  10193. extra: 1847/1619,
  10194. bottom: 47/1894
  10195. }
  10196. },
  10197. lounging: {
  10198. height: math.unit(1.464, "feet"),
  10199. weight: math.unit(120, "lb"),
  10200. name: "Lounging",
  10201. image: {
  10202. source: "./media/characters/odyssey/lounging.svg",
  10203. extra: 1235/837,
  10204. bottom: 551/1786
  10205. }
  10206. },
  10207. },
  10208. [
  10209. {
  10210. name: "Normal",
  10211. height: math.unit(5 + 4 / 12, "feet")
  10212. },
  10213. {
  10214. name: "Macro",
  10215. height: math.unit(1, "km")
  10216. },
  10217. {
  10218. name: "Megamacro",
  10219. height: math.unit(3000, "km")
  10220. },
  10221. {
  10222. name: "Gigamacro",
  10223. height: math.unit(1, "AU"),
  10224. default: true
  10225. },
  10226. {
  10227. name: "Omniversal",
  10228. height: math.unit(100e14, "lightyears")
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10234. {
  10235. front: {
  10236. height: math.unit(6, "feet"),
  10237. weight: math.unit(300, "lb"),
  10238. name: "Front",
  10239. image: {
  10240. source: "./media/characters/mekuto/front.svg",
  10241. extra: 921 / 832,
  10242. bottom: 0.03
  10243. }
  10244. },
  10245. hand: {
  10246. height: math.unit(6 / 10.24, "feet"),
  10247. name: "Hand",
  10248. image: {
  10249. source: "./media/characters/mekuto/hand.svg"
  10250. }
  10251. },
  10252. foot: {
  10253. height: math.unit(6 / 5.05, "feet"),
  10254. name: "Foot",
  10255. image: {
  10256. source: "./media/characters/mekuto/foot.svg"
  10257. }
  10258. },
  10259. },
  10260. [
  10261. {
  10262. name: "Minimicro",
  10263. height: math.unit(0.2, "inches")
  10264. },
  10265. {
  10266. name: "Micro",
  10267. height: math.unit(1.5, "inches")
  10268. },
  10269. {
  10270. name: "Normal",
  10271. height: math.unit(5 + 11 / 12, "feet"),
  10272. default: true
  10273. },
  10274. {
  10275. name: "Minimacro",
  10276. height: math.unit(17 + 9 / 12, "feet")
  10277. },
  10278. {
  10279. name: "Macro",
  10280. height: math.unit(177.5, "feet")
  10281. },
  10282. {
  10283. name: "Megamacro",
  10284. height: math.unit(152, "miles")
  10285. },
  10286. ]
  10287. ))
  10288. characterMakers.push(() => makeCharacter(
  10289. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10290. {
  10291. front: {
  10292. height: math.unit(6.5, "inches"),
  10293. weight: math.unit(13, "oz"),
  10294. name: "Front",
  10295. image: {
  10296. source: "./media/characters/dafydd-tomos/front.svg",
  10297. extra: 2990 / 2603,
  10298. bottom: 0.03
  10299. }
  10300. },
  10301. },
  10302. [
  10303. {
  10304. name: "Micro",
  10305. height: math.unit(6.5, "inches"),
  10306. default: true
  10307. },
  10308. ]
  10309. ))
  10310. characterMakers.push(() => makeCharacter(
  10311. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10312. {
  10313. front: {
  10314. height: math.unit(6, "feet"),
  10315. weight: math.unit(150, "lb"),
  10316. name: "Front",
  10317. image: {
  10318. source: "./media/characters/splinter/front.svg",
  10319. extra: 2990 / 2882,
  10320. bottom: 0.04
  10321. }
  10322. },
  10323. back: {
  10324. height: math.unit(6, "feet"),
  10325. weight: math.unit(150, "lb"),
  10326. name: "Back",
  10327. image: {
  10328. source: "./media/characters/splinter/back.svg",
  10329. extra: 2990 / 2882,
  10330. bottom: 0.04
  10331. }
  10332. },
  10333. },
  10334. [
  10335. {
  10336. name: "Normal",
  10337. height: math.unit(6, "feet")
  10338. },
  10339. {
  10340. name: "Macro",
  10341. height: math.unit(230, "meters"),
  10342. default: true
  10343. },
  10344. ]
  10345. ))
  10346. characterMakers.push(() => makeCharacter(
  10347. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10348. {
  10349. front: {
  10350. height: math.unit(4 + 10 / 12, "feet"),
  10351. weight: math.unit(480, "lb"),
  10352. name: "Front",
  10353. image: {
  10354. source: "./media/characters/snow-gabumon/front.svg",
  10355. extra: 1140 / 963,
  10356. bottom: 0.058
  10357. }
  10358. },
  10359. back: {
  10360. height: math.unit(4 + 10 / 12, "feet"),
  10361. weight: math.unit(480, "lb"),
  10362. name: "Back",
  10363. image: {
  10364. source: "./media/characters/snow-gabumon/back.svg",
  10365. extra: 1115 / 962,
  10366. bottom: 0.041
  10367. }
  10368. },
  10369. frontUndresed: {
  10370. height: math.unit(4 + 10 / 12, "feet"),
  10371. weight: math.unit(480, "lb"),
  10372. name: "Front (Undressed)",
  10373. image: {
  10374. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10375. extra: 1061 / 960,
  10376. bottom: 0.045
  10377. }
  10378. },
  10379. },
  10380. [
  10381. {
  10382. name: "Micro",
  10383. height: math.unit(1, "inch")
  10384. },
  10385. {
  10386. name: "Normal",
  10387. height: math.unit(4 + 10 / 12, "feet"),
  10388. default: true
  10389. },
  10390. {
  10391. name: "Macro",
  10392. height: math.unit(200, "feet")
  10393. },
  10394. {
  10395. name: "Megamacro",
  10396. height: math.unit(120, "miles")
  10397. },
  10398. {
  10399. name: "Gigamacro",
  10400. height: math.unit(9800, "miles")
  10401. },
  10402. ]
  10403. ))
  10404. characterMakers.push(() => makeCharacter(
  10405. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10406. {
  10407. front: {
  10408. height: math.unit(1.7, "meters"),
  10409. weight: math.unit(140, "lb"),
  10410. name: "Front",
  10411. image: {
  10412. source: "./media/characters/moody/front.svg",
  10413. extra: 3226 / 3007,
  10414. bottom: 0.087
  10415. }
  10416. },
  10417. },
  10418. [
  10419. {
  10420. name: "Micro",
  10421. height: math.unit(1, "mm")
  10422. },
  10423. {
  10424. name: "Normal",
  10425. height: math.unit(1.7, "meters"),
  10426. default: true
  10427. },
  10428. {
  10429. name: "Macro",
  10430. height: math.unit(80, "meters")
  10431. },
  10432. {
  10433. name: "Macro+",
  10434. height: math.unit(500, "meters")
  10435. },
  10436. ]
  10437. ))
  10438. characterMakers.push(() => makeCharacter(
  10439. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10440. {
  10441. front: {
  10442. height: math.unit(6, "feet"),
  10443. weight: math.unit(150, "lb"),
  10444. name: "Front",
  10445. image: {
  10446. source: "./media/characters/zyas/front.svg",
  10447. extra: 1180 / 1120,
  10448. bottom: 0.045
  10449. }
  10450. },
  10451. },
  10452. [
  10453. {
  10454. name: "Normal",
  10455. height: math.unit(10, "feet"),
  10456. default: true
  10457. },
  10458. {
  10459. name: "Macro",
  10460. height: math.unit(500, "feet")
  10461. },
  10462. {
  10463. name: "Megamacro",
  10464. height: math.unit(5, "miles")
  10465. },
  10466. {
  10467. name: "Teramacro",
  10468. height: math.unit(150000, "miles")
  10469. },
  10470. ]
  10471. ))
  10472. characterMakers.push(() => makeCharacter(
  10473. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10474. {
  10475. front: {
  10476. height: math.unit(6, "feet"),
  10477. weight: math.unit(150, "lb"),
  10478. name: "Front",
  10479. image: {
  10480. source: "./media/characters/cuon/front.svg",
  10481. extra: 1390 / 1320,
  10482. bottom: 0.008
  10483. }
  10484. },
  10485. },
  10486. [
  10487. {
  10488. name: "Micro",
  10489. height: math.unit(3, "inches")
  10490. },
  10491. {
  10492. name: "Normal",
  10493. height: math.unit(18 + 9 / 12, "feet"),
  10494. default: true
  10495. },
  10496. {
  10497. name: "Macro",
  10498. height: math.unit(360, "feet")
  10499. },
  10500. {
  10501. name: "Megamacro",
  10502. height: math.unit(360, "miles")
  10503. },
  10504. ]
  10505. ))
  10506. characterMakers.push(() => makeCharacter(
  10507. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10508. {
  10509. front: {
  10510. height: math.unit(2.4, "meters"),
  10511. weight: math.unit(70, "kg"),
  10512. name: "Front",
  10513. image: {
  10514. source: "./media/characters/nyanuxk/front.svg",
  10515. extra: 1172 / 1084,
  10516. bottom: 0.065
  10517. }
  10518. },
  10519. side: {
  10520. height: math.unit(2.4, "meters"),
  10521. weight: math.unit(70, "kg"),
  10522. name: "Side",
  10523. image: {
  10524. source: "./media/characters/nyanuxk/side.svg",
  10525. extra: 1190 / 1132,
  10526. bottom: 0.007
  10527. }
  10528. },
  10529. back: {
  10530. height: math.unit(2.4, "meters"),
  10531. weight: math.unit(70, "kg"),
  10532. name: "Back",
  10533. image: {
  10534. source: "./media/characters/nyanuxk/back.svg",
  10535. extra: 1200 / 1141,
  10536. bottom: 0.015
  10537. }
  10538. },
  10539. foot: {
  10540. height: math.unit(0.52, "meters"),
  10541. name: "Foot",
  10542. image: {
  10543. source: "./media/characters/nyanuxk/foot.svg"
  10544. }
  10545. },
  10546. },
  10547. [
  10548. {
  10549. name: "Micro",
  10550. height: math.unit(2, "cm")
  10551. },
  10552. {
  10553. name: "Normal",
  10554. height: math.unit(2.4, "meters"),
  10555. default: true
  10556. },
  10557. {
  10558. name: "Smaller Macro",
  10559. height: math.unit(120, "meters")
  10560. },
  10561. {
  10562. name: "Bigger Macro",
  10563. height: math.unit(1.2, "km")
  10564. },
  10565. {
  10566. name: "Megamacro",
  10567. height: math.unit(15, "kilometers")
  10568. },
  10569. {
  10570. name: "Gigamacro",
  10571. height: math.unit(2000, "km")
  10572. },
  10573. {
  10574. name: "Teramacro",
  10575. height: math.unit(500000, "km")
  10576. },
  10577. ]
  10578. ))
  10579. characterMakers.push(() => makeCharacter(
  10580. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10581. {
  10582. side: {
  10583. height: math.unit(6, "feet"),
  10584. name: "Side",
  10585. image: {
  10586. source: "./media/characters/ailbhe/side.svg",
  10587. extra: 757 / 464,
  10588. bottom: 0.041
  10589. }
  10590. },
  10591. },
  10592. [
  10593. {
  10594. name: "Normal",
  10595. height: math.unit(1.07, "meters"),
  10596. default: true
  10597. },
  10598. ]
  10599. ))
  10600. characterMakers.push(() => makeCharacter(
  10601. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10602. {
  10603. front: {
  10604. height: math.unit(6, "feet"),
  10605. weight: math.unit(120, "kg"),
  10606. name: "Front",
  10607. image: {
  10608. source: "./media/characters/zevulfius/front.svg",
  10609. extra: 965 / 903
  10610. }
  10611. },
  10612. side: {
  10613. height: math.unit(6, "feet"),
  10614. weight: math.unit(120, "kg"),
  10615. name: "Side",
  10616. image: {
  10617. source: "./media/characters/zevulfius/side.svg",
  10618. extra: 939 / 900
  10619. }
  10620. },
  10621. back: {
  10622. height: math.unit(6, "feet"),
  10623. weight: math.unit(120, "kg"),
  10624. name: "Back",
  10625. image: {
  10626. source: "./media/characters/zevulfius/back.svg",
  10627. extra: 918 / 854,
  10628. bottom: 0.005
  10629. }
  10630. },
  10631. foot: {
  10632. height: math.unit(6 / 3.72, "feet"),
  10633. name: "Foot",
  10634. image: {
  10635. source: "./media/characters/zevulfius/foot.svg"
  10636. }
  10637. },
  10638. },
  10639. [
  10640. {
  10641. name: "Macro",
  10642. height: math.unit(750, "meters")
  10643. },
  10644. {
  10645. name: "Megamacro",
  10646. height: math.unit(20, "km"),
  10647. default: true
  10648. },
  10649. {
  10650. name: "Gigamacro",
  10651. height: math.unit(2000, "km")
  10652. },
  10653. {
  10654. name: "Teramacro",
  10655. height: math.unit(250000, "km")
  10656. },
  10657. ]
  10658. ))
  10659. characterMakers.push(() => makeCharacter(
  10660. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10661. {
  10662. front: {
  10663. height: math.unit(100, "feet"),
  10664. weight: math.unit(350, "kg"),
  10665. name: "Front",
  10666. image: {
  10667. source: "./media/characters/rikes/front.svg",
  10668. extra: 1565 / 1483,
  10669. bottom: 0.017
  10670. }
  10671. },
  10672. },
  10673. [
  10674. {
  10675. name: "Macro",
  10676. height: math.unit(100, "feet"),
  10677. default: true
  10678. },
  10679. ]
  10680. ))
  10681. characterMakers.push(() => makeCharacter(
  10682. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10683. {
  10684. front: {
  10685. height: math.unit(8, "feet"),
  10686. weight: math.unit(356, "lb"),
  10687. name: "Front",
  10688. image: {
  10689. source: "./media/characters/adam-silver-mane/front.svg",
  10690. extra: 1036/937,
  10691. bottom: 63/1099
  10692. }
  10693. },
  10694. side: {
  10695. height: math.unit(8, "feet"),
  10696. weight: math.unit(356, "lb"),
  10697. name: "Side",
  10698. image: {
  10699. source: "./media/characters/adam-silver-mane/side.svg",
  10700. extra: 997/901,
  10701. bottom: 59/1056
  10702. }
  10703. },
  10704. frontNsfw: {
  10705. height: math.unit(8, "feet"),
  10706. weight: math.unit(356, "lb"),
  10707. name: "Front (NSFW)",
  10708. image: {
  10709. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10710. extra: 1036/937,
  10711. bottom: 63/1099
  10712. }
  10713. },
  10714. sideNsfw: {
  10715. height: math.unit(8, "feet"),
  10716. weight: math.unit(356, "lb"),
  10717. name: "Side (NSFW)",
  10718. image: {
  10719. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10720. extra: 997/901,
  10721. bottom: 59/1056
  10722. }
  10723. },
  10724. dick: {
  10725. height: math.unit(2.1, "feet"),
  10726. name: "Dick",
  10727. image: {
  10728. source: "./media/characters/adam-silver-mane/dick.svg"
  10729. }
  10730. },
  10731. taur: {
  10732. height: math.unit(16, "feet"),
  10733. weight: math.unit(1500, "kg"),
  10734. name: "Taur",
  10735. image: {
  10736. source: "./media/characters/adam-silver-mane/taur.svg",
  10737. extra: 1713 / 1571,
  10738. bottom: 0.01
  10739. }
  10740. },
  10741. },
  10742. [
  10743. {
  10744. name: "Normal",
  10745. height: math.unit(8, "feet")
  10746. },
  10747. {
  10748. name: "Minimacro",
  10749. height: math.unit(80, "feet")
  10750. },
  10751. {
  10752. name: "MDA",
  10753. height: math.unit(80, "meters")
  10754. },
  10755. {
  10756. name: "Macro",
  10757. height: math.unit(800, "feet"),
  10758. default: true
  10759. },
  10760. {
  10761. name: "Megamacro",
  10762. height: math.unit(8000, "feet")
  10763. },
  10764. {
  10765. name: "Gigamacro",
  10766. height: math.unit(800, "miles")
  10767. },
  10768. {
  10769. name: "Teramacro",
  10770. height: math.unit(80000, "miles")
  10771. },
  10772. {
  10773. name: "Celestial",
  10774. height: math.unit(8e6, "miles")
  10775. },
  10776. {
  10777. name: "Star Dragon",
  10778. height: math.unit(800000, "parsecs")
  10779. },
  10780. {
  10781. name: "Godly",
  10782. height: math.unit(800, "teraparsecs")
  10783. },
  10784. ]
  10785. ))
  10786. characterMakers.push(() => makeCharacter(
  10787. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10788. {
  10789. front: {
  10790. height: math.unit(6, "feet"),
  10791. weight: math.unit(150, "lb"),
  10792. name: "Front",
  10793. image: {
  10794. source: "./media/characters/ky'owin/front.svg",
  10795. extra: 3888 / 3068,
  10796. bottom: 0.015
  10797. }
  10798. },
  10799. },
  10800. [
  10801. {
  10802. name: "Normal",
  10803. height: math.unit(6 + 8 / 12, "feet")
  10804. },
  10805. {
  10806. name: "Large",
  10807. height: math.unit(68, "feet")
  10808. },
  10809. {
  10810. name: "Macro",
  10811. height: math.unit(132, "feet")
  10812. },
  10813. {
  10814. name: "Macro+",
  10815. height: math.unit(340, "feet")
  10816. },
  10817. {
  10818. name: "Macro++",
  10819. height: math.unit(680, "feet"),
  10820. default: true
  10821. },
  10822. {
  10823. name: "Megamacro",
  10824. height: math.unit(1, "mile")
  10825. },
  10826. {
  10827. name: "Megamacro+",
  10828. height: math.unit(10, "miles")
  10829. },
  10830. ]
  10831. ))
  10832. characterMakers.push(() => makeCharacter(
  10833. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10834. {
  10835. front: {
  10836. height: math.unit(4, "feet"),
  10837. weight: math.unit(50, "lb"),
  10838. name: "Front",
  10839. image: {
  10840. source: "./media/characters/mal/front.svg",
  10841. extra: 785 / 724,
  10842. bottom: 0.07
  10843. }
  10844. },
  10845. },
  10846. [
  10847. {
  10848. name: "Micro",
  10849. height: math.unit(4, "inches")
  10850. },
  10851. {
  10852. name: "Normal",
  10853. height: math.unit(4, "feet"),
  10854. default: true
  10855. },
  10856. {
  10857. name: "Macro",
  10858. height: math.unit(200, "feet")
  10859. },
  10860. ]
  10861. ))
  10862. characterMakers.push(() => makeCharacter(
  10863. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10864. {
  10865. front: {
  10866. height: math.unit(6, "feet"),
  10867. weight: math.unit(150, "lb"),
  10868. name: "Front",
  10869. image: {
  10870. source: "./media/characters/jordan-deware/front.svg",
  10871. extra: 1191 / 1012
  10872. }
  10873. },
  10874. },
  10875. [
  10876. {
  10877. name: "Nano",
  10878. height: math.unit(0.01, "mm")
  10879. },
  10880. {
  10881. name: "Minimicro",
  10882. height: math.unit(1, "mm")
  10883. },
  10884. {
  10885. name: "Micro",
  10886. height: math.unit(0.5, "inches")
  10887. },
  10888. {
  10889. name: "Normal",
  10890. height: math.unit(4, "feet"),
  10891. default: true
  10892. },
  10893. {
  10894. name: "Minimacro",
  10895. height: math.unit(40, "meters")
  10896. },
  10897. {
  10898. name: "Small Macro",
  10899. height: math.unit(400, "meters")
  10900. },
  10901. {
  10902. name: "Macro",
  10903. height: math.unit(4, "miles")
  10904. },
  10905. {
  10906. name: "Megamacro",
  10907. height: math.unit(40, "miles")
  10908. },
  10909. {
  10910. name: "Megamacro+",
  10911. height: math.unit(400, "miles")
  10912. },
  10913. {
  10914. name: "Gigamacro",
  10915. height: math.unit(400000, "miles")
  10916. },
  10917. ]
  10918. ))
  10919. characterMakers.push(() => makeCharacter(
  10920. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10921. {
  10922. side: {
  10923. height: math.unit(6, "feet"),
  10924. weight: math.unit(150, "lb"),
  10925. name: "Side",
  10926. image: {
  10927. source: "./media/characters/kimiko/side.svg",
  10928. extra: 600 / 358
  10929. }
  10930. },
  10931. },
  10932. [
  10933. {
  10934. name: "Normal",
  10935. height: math.unit(15, "feet"),
  10936. default: true
  10937. },
  10938. {
  10939. name: "Macro",
  10940. height: math.unit(220, "feet")
  10941. },
  10942. {
  10943. name: "Macro+",
  10944. height: math.unit(1450, "feet")
  10945. },
  10946. {
  10947. name: "Megamacro",
  10948. height: math.unit(11500, "feet")
  10949. },
  10950. {
  10951. name: "Gigamacro",
  10952. height: math.unit(9500, "miles")
  10953. },
  10954. {
  10955. name: "Teramacro",
  10956. height: math.unit(2208005005, "miles")
  10957. },
  10958. {
  10959. name: "Examacro",
  10960. height: math.unit(2750, "parsecs")
  10961. },
  10962. {
  10963. name: "Zettamacro",
  10964. height: math.unit(101500, "parsecs")
  10965. },
  10966. ]
  10967. ))
  10968. characterMakers.push(() => makeCharacter(
  10969. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10970. {
  10971. front: {
  10972. height: math.unit(6, "feet"),
  10973. weight: math.unit(70, "kg"),
  10974. name: "Front",
  10975. image: {
  10976. source: "./media/characters/andrew-sleepy/front.svg"
  10977. }
  10978. },
  10979. side: {
  10980. height: math.unit(6, "feet"),
  10981. weight: math.unit(70, "kg"),
  10982. name: "Side",
  10983. image: {
  10984. source: "./media/characters/andrew-sleepy/side.svg"
  10985. }
  10986. },
  10987. },
  10988. [
  10989. {
  10990. name: "Micro",
  10991. height: math.unit(1, "mm"),
  10992. default: true
  10993. },
  10994. ]
  10995. ))
  10996. characterMakers.push(() => makeCharacter(
  10997. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10998. {
  10999. front: {
  11000. height: math.unit(6, "feet"),
  11001. weight: math.unit(150, "lb"),
  11002. name: "Front",
  11003. image: {
  11004. source: "./media/characters/judio/front.svg",
  11005. extra: 1258 / 1110
  11006. }
  11007. },
  11008. },
  11009. [
  11010. {
  11011. name: "Normal",
  11012. height: math.unit(5 + 6 / 12, "feet")
  11013. },
  11014. {
  11015. name: "Macro",
  11016. height: math.unit(1000, "feet"),
  11017. default: true
  11018. },
  11019. {
  11020. name: "Megamacro",
  11021. height: math.unit(10, "miles")
  11022. },
  11023. ]
  11024. ))
  11025. characterMakers.push(() => makeCharacter(
  11026. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11027. {
  11028. front: {
  11029. height: math.unit(6, "feet"),
  11030. weight: math.unit(68, "kg"),
  11031. name: "Front",
  11032. image: {
  11033. source: "./media/characters/nomaxice/front.svg",
  11034. extra: 1498 / 1073,
  11035. bottom: 0.075
  11036. }
  11037. },
  11038. foot: {
  11039. height: math.unit(1.1, "feet"),
  11040. name: "Foot",
  11041. image: {
  11042. source: "./media/characters/nomaxice/foot.svg"
  11043. }
  11044. },
  11045. },
  11046. [
  11047. {
  11048. name: "Micro",
  11049. height: math.unit(8, "cm")
  11050. },
  11051. {
  11052. name: "Norm",
  11053. height: math.unit(1.82, "m")
  11054. },
  11055. {
  11056. name: "Norm+",
  11057. height: math.unit(8.8, "feet")
  11058. },
  11059. {
  11060. name: "Big",
  11061. height: math.unit(8, "meters"),
  11062. default: true
  11063. },
  11064. {
  11065. name: "Macro",
  11066. height: math.unit(18, "meters")
  11067. },
  11068. {
  11069. name: "Macro+",
  11070. height: math.unit(88, "meters")
  11071. },
  11072. ]
  11073. ))
  11074. characterMakers.push(() => makeCharacter(
  11075. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11076. {
  11077. front: {
  11078. height: math.unit(12, "feet"),
  11079. weight: math.unit(1.5, "tons"),
  11080. name: "Front",
  11081. image: {
  11082. source: "./media/characters/dydros/front.svg",
  11083. extra: 863 / 800,
  11084. bottom: 0.015
  11085. }
  11086. },
  11087. back: {
  11088. height: math.unit(12, "feet"),
  11089. weight: math.unit(1.5, "tons"),
  11090. name: "Back",
  11091. image: {
  11092. source: "./media/characters/dydros/back.svg",
  11093. extra: 900 / 843,
  11094. bottom: 0.005
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Normal",
  11101. height: math.unit(12, "feet"),
  11102. default: true
  11103. },
  11104. ]
  11105. ))
  11106. characterMakers.push(() => makeCharacter(
  11107. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11108. {
  11109. front: {
  11110. height: math.unit(6, "feet"),
  11111. weight: math.unit(100, "kg"),
  11112. name: "Front",
  11113. image: {
  11114. source: "./media/characters/riggi/front.svg",
  11115. extra: 5787 / 5303
  11116. }
  11117. },
  11118. hyper: {
  11119. height: math.unit(6 * 5 / 3, "feet"),
  11120. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11121. name: "Hyper",
  11122. image: {
  11123. source: "./media/characters/riggi/hyper.svg",
  11124. extra: 3595 / 3485
  11125. }
  11126. },
  11127. },
  11128. [
  11129. {
  11130. name: "Small Macro",
  11131. height: math.unit(50, "feet")
  11132. },
  11133. {
  11134. name: "Default",
  11135. height: math.unit(200, "feet"),
  11136. default: true
  11137. },
  11138. {
  11139. name: "Loom",
  11140. height: math.unit(10000, "feet")
  11141. },
  11142. {
  11143. name: "Cruising Altitude",
  11144. height: math.unit(30000, "feet")
  11145. },
  11146. {
  11147. name: "Megamacro",
  11148. height: math.unit(100, "miles")
  11149. },
  11150. {
  11151. name: "Continent Sized",
  11152. height: math.unit(2800, "miles")
  11153. },
  11154. {
  11155. name: "Earth Sized",
  11156. height: math.unit(8000, "miles")
  11157. },
  11158. ]
  11159. ))
  11160. characterMakers.push(() => makeCharacter(
  11161. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11162. {
  11163. front: {
  11164. height: math.unit(6, "feet"),
  11165. weight: math.unit(250, "lb"),
  11166. name: "Front",
  11167. image: {
  11168. source: "./media/characters/alexi/front.svg",
  11169. extra: 3483 / 3291,
  11170. bottom: 0.04
  11171. }
  11172. },
  11173. back: {
  11174. height: math.unit(6, "feet"),
  11175. weight: math.unit(250, "lb"),
  11176. name: "Back",
  11177. image: {
  11178. source: "./media/characters/alexi/back.svg",
  11179. extra: 3533 / 3356,
  11180. bottom: 0.021
  11181. }
  11182. },
  11183. frontTransforming: {
  11184. height: math.unit(8.58, "feet"),
  11185. weight: math.unit(1300, "lb"),
  11186. name: "Transforming",
  11187. image: {
  11188. source: "./media/characters/alexi/front-transforming.svg",
  11189. extra: 437 / 409,
  11190. bottom: 19 / 458.66
  11191. }
  11192. },
  11193. frontTransformed: {
  11194. height: math.unit(12.5, "feet"),
  11195. weight: math.unit(4000, "lb"),
  11196. name: "Transformed",
  11197. image: {
  11198. source: "./media/characters/alexi/front-transformed.svg",
  11199. extra: 639 / 614,
  11200. bottom: 30.55 / 671
  11201. }
  11202. },
  11203. },
  11204. [
  11205. {
  11206. name: "Normal",
  11207. height: math.unit(14, "feet"),
  11208. default: true
  11209. },
  11210. {
  11211. name: "Minimacro",
  11212. height: math.unit(30, "meters")
  11213. },
  11214. {
  11215. name: "Macro",
  11216. height: math.unit(500, "meters")
  11217. },
  11218. {
  11219. name: "Megamacro",
  11220. height: math.unit(9000, "km")
  11221. },
  11222. {
  11223. name: "Teramacro",
  11224. height: math.unit(384000, "km")
  11225. },
  11226. ]
  11227. ))
  11228. characterMakers.push(() => makeCharacter(
  11229. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11230. {
  11231. front: {
  11232. height: math.unit(6, "feet"),
  11233. weight: math.unit(150, "lb"),
  11234. name: "Front",
  11235. image: {
  11236. source: "./media/characters/kayroo/front.svg",
  11237. extra: 1153 / 1038,
  11238. bottom: 0.06
  11239. }
  11240. },
  11241. foot: {
  11242. height: math.unit(6, "feet"),
  11243. weight: math.unit(150, "lb"),
  11244. name: "Foot",
  11245. image: {
  11246. source: "./media/characters/kayroo/foot.svg"
  11247. }
  11248. },
  11249. },
  11250. [
  11251. {
  11252. name: "Normal",
  11253. height: math.unit(8, "feet"),
  11254. default: true
  11255. },
  11256. {
  11257. name: "Minimacro",
  11258. height: math.unit(250, "feet")
  11259. },
  11260. {
  11261. name: "Macro",
  11262. height: math.unit(2800, "feet")
  11263. },
  11264. {
  11265. name: "Megamacro",
  11266. height: math.unit(5200, "feet")
  11267. },
  11268. {
  11269. name: "Gigamacro",
  11270. height: math.unit(27000, "feet")
  11271. },
  11272. {
  11273. name: "Omega",
  11274. height: math.unit(45000, "feet")
  11275. },
  11276. ]
  11277. ))
  11278. characterMakers.push(() => makeCharacter(
  11279. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11280. {
  11281. front: {
  11282. height: math.unit(18, "feet"),
  11283. weight: math.unit(5800, "lb"),
  11284. name: "Front",
  11285. image: {
  11286. source: "./media/characters/rhys/front.svg",
  11287. extra: 3386 / 3090,
  11288. bottom: 0.07
  11289. }
  11290. },
  11291. },
  11292. [
  11293. {
  11294. name: "Normal",
  11295. height: math.unit(18, "feet"),
  11296. default: true
  11297. },
  11298. {
  11299. name: "Working Size",
  11300. height: math.unit(200, "feet")
  11301. },
  11302. {
  11303. name: "Demolition Size",
  11304. height: math.unit(2000, "feet")
  11305. },
  11306. {
  11307. name: "Maximum Licensed Size",
  11308. height: math.unit(5, "miles")
  11309. },
  11310. {
  11311. name: "Maximum Observed Size",
  11312. height: math.unit(10, "yottameters")
  11313. },
  11314. ]
  11315. ))
  11316. characterMakers.push(() => makeCharacter(
  11317. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11318. {
  11319. front: {
  11320. height: math.unit(6, "feet"),
  11321. weight: math.unit(250, "lb"),
  11322. name: "Front",
  11323. image: {
  11324. source: "./media/characters/toto/front.svg",
  11325. extra: 527 / 479,
  11326. bottom: 0.05
  11327. }
  11328. },
  11329. },
  11330. [
  11331. {
  11332. name: "Micro",
  11333. height: math.unit(3, "feet")
  11334. },
  11335. {
  11336. name: "Normal",
  11337. height: math.unit(10, "feet")
  11338. },
  11339. {
  11340. name: "Macro",
  11341. height: math.unit(150, "feet"),
  11342. default: true
  11343. },
  11344. {
  11345. name: "Megamacro",
  11346. height: math.unit(1200, "feet")
  11347. },
  11348. ]
  11349. ))
  11350. characterMakers.push(() => makeCharacter(
  11351. { name: "King", species: ["lion"], tags: ["anthro"] },
  11352. {
  11353. back: {
  11354. height: math.unit(6, "feet"),
  11355. weight: math.unit(150, "lb"),
  11356. name: "Back",
  11357. image: {
  11358. source: "./media/characters/king/back.svg"
  11359. }
  11360. },
  11361. },
  11362. [
  11363. {
  11364. name: "Micro",
  11365. height: math.unit(2, "inches")
  11366. },
  11367. {
  11368. name: "Normal",
  11369. height: math.unit(8, "feet")
  11370. },
  11371. {
  11372. name: "Macro",
  11373. height: math.unit(200, "feet"),
  11374. default: true
  11375. },
  11376. {
  11377. name: "Megamacro",
  11378. height: math.unit(50, "miles")
  11379. },
  11380. ]
  11381. ))
  11382. characterMakers.push(() => makeCharacter(
  11383. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11384. {
  11385. front: {
  11386. height: math.unit(11, "feet"),
  11387. weight: math.unit(1400, "lb"),
  11388. name: "Front",
  11389. image: {
  11390. source: "./media/characters/cordite/front.svg",
  11391. extra: 1919/1827,
  11392. bottom: 40/1959
  11393. }
  11394. },
  11395. side: {
  11396. height: math.unit(11, "feet"),
  11397. weight: math.unit(1400, "lb"),
  11398. name: "Side",
  11399. image: {
  11400. source: "./media/characters/cordite/side.svg",
  11401. extra: 1908/1793,
  11402. bottom: 38/1946
  11403. }
  11404. },
  11405. back: {
  11406. height: math.unit(11, "feet"),
  11407. weight: math.unit(1400, "lb"),
  11408. name: "Back",
  11409. image: {
  11410. source: "./media/characters/cordite/back.svg",
  11411. extra: 1938/1837,
  11412. bottom: 10/1948
  11413. }
  11414. },
  11415. feral: {
  11416. height: math.unit(2, "feet"),
  11417. weight: math.unit(90, "lb"),
  11418. name: "Feral",
  11419. image: {
  11420. source: "./media/characters/cordite/feral.svg",
  11421. extra: 1260 / 755,
  11422. bottom: 0.05
  11423. }
  11424. },
  11425. },
  11426. [
  11427. {
  11428. name: "Normal",
  11429. height: math.unit(11, "feet"),
  11430. default: true
  11431. },
  11432. ]
  11433. ))
  11434. characterMakers.push(() => makeCharacter(
  11435. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11436. {
  11437. front: {
  11438. height: math.unit(6, "feet"),
  11439. weight: math.unit(150, "lb"),
  11440. name: "Front",
  11441. image: {
  11442. source: "./media/characters/pianostrong/front.svg",
  11443. extra: 6577 / 6254,
  11444. bottom: 0.02
  11445. }
  11446. },
  11447. side: {
  11448. height: math.unit(6, "feet"),
  11449. weight: math.unit(150, "lb"),
  11450. name: "Side",
  11451. image: {
  11452. source: "./media/characters/pianostrong/side.svg",
  11453. extra: 6106 / 5730
  11454. }
  11455. },
  11456. back: {
  11457. height: math.unit(6, "feet"),
  11458. weight: math.unit(150, "lb"),
  11459. name: "Back",
  11460. image: {
  11461. source: "./media/characters/pianostrong/back.svg",
  11462. extra: 6085 / 5733,
  11463. bottom: 0.01
  11464. }
  11465. },
  11466. },
  11467. [
  11468. {
  11469. name: "Macro",
  11470. height: math.unit(100, "feet")
  11471. },
  11472. {
  11473. name: "Macro+",
  11474. height: math.unit(300, "feet"),
  11475. default: true
  11476. },
  11477. {
  11478. name: "Macro++",
  11479. height: math.unit(1000, "feet")
  11480. },
  11481. ]
  11482. ))
  11483. characterMakers.push(() => makeCharacter(
  11484. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11485. {
  11486. front: {
  11487. height: math.unit(6, "feet"),
  11488. weight: math.unit(150, "lb"),
  11489. name: "Front",
  11490. image: {
  11491. source: "./media/characters/kona/front.svg",
  11492. extra: 2960 / 2629,
  11493. bottom: 0.005
  11494. }
  11495. },
  11496. },
  11497. [
  11498. {
  11499. name: "Normal",
  11500. height: math.unit(11 + 8 / 12, "feet")
  11501. },
  11502. {
  11503. name: "Macro",
  11504. height: math.unit(850, "feet"),
  11505. default: true
  11506. },
  11507. {
  11508. name: "Macro+",
  11509. height: math.unit(1.5, "km"),
  11510. default: true
  11511. },
  11512. {
  11513. name: "Megamacro",
  11514. height: math.unit(80, "miles")
  11515. },
  11516. {
  11517. name: "Gigamacro",
  11518. height: math.unit(3500, "miles")
  11519. },
  11520. ]
  11521. ))
  11522. characterMakers.push(() => makeCharacter(
  11523. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11524. {
  11525. side: {
  11526. height: math.unit(1.9, "meters"),
  11527. weight: math.unit(326, "kg"),
  11528. name: "Side",
  11529. image: {
  11530. source: "./media/characters/levi/side.svg",
  11531. extra: 1704 / 1334,
  11532. bottom: 0.02
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(1.9, "meters"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Macro",
  11544. height: math.unit(20, "meters")
  11545. },
  11546. {
  11547. name: "Macro+",
  11548. height: math.unit(200, "meters")
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(2, "km")
  11553. },
  11554. {
  11555. name: "Megamacro+",
  11556. height: math.unit(20, "km")
  11557. },
  11558. {
  11559. name: "Gigamacro",
  11560. height: math.unit(2500, "km")
  11561. },
  11562. {
  11563. name: "Gigamacro+",
  11564. height: math.unit(120000, "km")
  11565. },
  11566. {
  11567. name: "Teramacro",
  11568. height: math.unit(7.77e6, "km")
  11569. },
  11570. ]
  11571. ))
  11572. characterMakers.push(() => makeCharacter(
  11573. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11574. {
  11575. front: {
  11576. height: math.unit(6 + 4/12, "feet"),
  11577. weight: math.unit(190, "lb"),
  11578. name: "Front",
  11579. image: {
  11580. source: "./media/characters/bmc/front.svg",
  11581. extra: 1626/1472,
  11582. bottom: 79/1705
  11583. }
  11584. },
  11585. back: {
  11586. height: math.unit(6 + 4/12, "feet"),
  11587. weight: math.unit(190, "lb"),
  11588. name: "Back",
  11589. image: {
  11590. source: "./media/characters/bmc/back.svg",
  11591. extra: 1640/1479,
  11592. bottom: 45/1685
  11593. }
  11594. },
  11595. frontArmor: {
  11596. height: math.unit(6 + 4/12, "feet"),
  11597. weight: math.unit(190, "lb"),
  11598. name: "Front-armor",
  11599. image: {
  11600. source: "./media/characters/bmc/front-armor.svg",
  11601. extra: 1538/1468,
  11602. bottom: 79/1617
  11603. }
  11604. },
  11605. },
  11606. [
  11607. {
  11608. name: "Human-sized",
  11609. height: math.unit(6 + 4 / 12, "feet")
  11610. },
  11611. {
  11612. name: "Interactive Size",
  11613. height: math.unit(25, "feet")
  11614. },
  11615. {
  11616. name: "Small",
  11617. height: math.unit(250, "feet")
  11618. },
  11619. {
  11620. name: "Normal",
  11621. height: math.unit(1250, "feet"),
  11622. default: true
  11623. },
  11624. {
  11625. name: "Good Day",
  11626. height: math.unit(88, "miles")
  11627. },
  11628. {
  11629. name: "Largest Measured Size",
  11630. height: math.unit(105.960, "galaxies")
  11631. },
  11632. ]
  11633. ))
  11634. characterMakers.push(() => makeCharacter(
  11635. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11636. {
  11637. front: {
  11638. height: math.unit(20, "feet"),
  11639. weight: math.unit(2016, "kg"),
  11640. name: "Front",
  11641. image: {
  11642. source: "./media/characters/sven-the-kaiju/front.svg",
  11643. extra: 1277/1250,
  11644. bottom: 35/1312
  11645. }
  11646. },
  11647. mouth: {
  11648. height: math.unit(1.85, "feet"),
  11649. name: "Mouth",
  11650. image: {
  11651. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11652. }
  11653. },
  11654. },
  11655. [
  11656. {
  11657. name: "Fairy",
  11658. height: math.unit(6, "inches")
  11659. },
  11660. {
  11661. name: "Normal",
  11662. height: math.unit(20, "feet"),
  11663. default: true
  11664. },
  11665. {
  11666. name: "Rampage",
  11667. height: math.unit(200, "feet")
  11668. },
  11669. {
  11670. name: "Archfey Forest Guardian",
  11671. height: math.unit(1, "mile")
  11672. },
  11673. ]
  11674. ))
  11675. characterMakers.push(() => makeCharacter(
  11676. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11677. {
  11678. front: {
  11679. height: math.unit(4, "meters"),
  11680. weight: math.unit(2, "tons"),
  11681. name: "Front",
  11682. image: {
  11683. source: "./media/characters/marik/front.svg",
  11684. extra: 1057 / 1003,
  11685. bottom: 0.08
  11686. }
  11687. },
  11688. },
  11689. [
  11690. {
  11691. name: "Normal",
  11692. height: math.unit(4, "meters"),
  11693. default: true
  11694. },
  11695. {
  11696. name: "Macro",
  11697. height: math.unit(20, "meters")
  11698. },
  11699. {
  11700. name: "Megamacro",
  11701. height: math.unit(50, "km")
  11702. },
  11703. {
  11704. name: "Gigamacro",
  11705. height: math.unit(100, "km")
  11706. },
  11707. {
  11708. name: "Alpha Macro",
  11709. height: math.unit(7.88e7, "yottameters")
  11710. },
  11711. ]
  11712. ))
  11713. characterMakers.push(() => makeCharacter(
  11714. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11715. {
  11716. front: {
  11717. height: math.unit(6, "feet"),
  11718. weight: math.unit(110, "lb"),
  11719. name: "Front",
  11720. image: {
  11721. source: "./media/characters/mel/front.svg",
  11722. extra: 736 / 617,
  11723. bottom: 0.017
  11724. }
  11725. },
  11726. },
  11727. [
  11728. {
  11729. name: "Pico",
  11730. height: math.unit(3, "pm")
  11731. },
  11732. {
  11733. name: "Nano",
  11734. height: math.unit(3, "nm")
  11735. },
  11736. {
  11737. name: "Micro",
  11738. height: math.unit(0.3, "mm"),
  11739. default: true
  11740. },
  11741. {
  11742. name: "Micro+",
  11743. height: math.unit(3, "mm")
  11744. },
  11745. {
  11746. name: "Normal",
  11747. height: math.unit(5 + 10.5 / 12, "feet")
  11748. },
  11749. ]
  11750. ))
  11751. characterMakers.push(() => makeCharacter(
  11752. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11753. {
  11754. kaiju: {
  11755. height: math.unit(1.75, "meters"),
  11756. weight: math.unit(55, "kg"),
  11757. name: "Kaiju",
  11758. image: {
  11759. source: "./media/characters/lykonous/kaiju.svg",
  11760. extra: 1055 / 946,
  11761. bottom: 0.135
  11762. }
  11763. },
  11764. },
  11765. [
  11766. {
  11767. name: "Normal",
  11768. height: math.unit(2.5, "meters"),
  11769. default: true
  11770. },
  11771. {
  11772. name: "Kaiju Dragon",
  11773. height: math.unit(60, "meters")
  11774. },
  11775. {
  11776. name: "Mega Kaiju",
  11777. height: math.unit(120, "km")
  11778. },
  11779. {
  11780. name: "Giga Kaiju",
  11781. height: math.unit(200, "megameters")
  11782. },
  11783. {
  11784. name: "Terra Kaiju",
  11785. height: math.unit(400, "gigameters")
  11786. },
  11787. {
  11788. name: "Kaiju Dragon God",
  11789. height: math.unit(13000, "exaparsecs")
  11790. },
  11791. ]
  11792. ))
  11793. characterMakers.push(() => makeCharacter(
  11794. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11795. {
  11796. front: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(150, "lb"),
  11799. name: "Front",
  11800. image: {
  11801. source: "./media/characters/blü/front.svg",
  11802. extra: 1883 / 1564,
  11803. bottom: 0.031
  11804. }
  11805. },
  11806. },
  11807. [
  11808. {
  11809. name: "Normal",
  11810. height: math.unit(13, "feet"),
  11811. default: true
  11812. },
  11813. {
  11814. name: "Big Boi",
  11815. height: math.unit(150, "meters")
  11816. },
  11817. {
  11818. name: "Mini Stomper",
  11819. height: math.unit(300, "meters")
  11820. },
  11821. {
  11822. name: "Macro",
  11823. height: math.unit(1000, "meters")
  11824. },
  11825. {
  11826. name: "Megamacro",
  11827. height: math.unit(11000, "meters")
  11828. },
  11829. {
  11830. name: "Gigamacro",
  11831. height: math.unit(11000, "km")
  11832. },
  11833. {
  11834. name: "Teramacro",
  11835. height: math.unit(420000, "km")
  11836. },
  11837. {
  11838. name: "Examacro",
  11839. height: math.unit(120, "parsecs")
  11840. },
  11841. {
  11842. name: "God Tho",
  11843. height: math.unit(98000000000, "parsecs")
  11844. },
  11845. ]
  11846. ))
  11847. characterMakers.push(() => makeCharacter(
  11848. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11849. {
  11850. taurFront: {
  11851. height: math.unit(6, "feet"),
  11852. weight: math.unit(200, "lb"),
  11853. name: "Taur (Front)",
  11854. image: {
  11855. source: "./media/characters/scales/taur-front.svg",
  11856. extra: 1,
  11857. bottom: 0.05
  11858. }
  11859. },
  11860. taurBack: {
  11861. height: math.unit(6, "feet"),
  11862. weight: math.unit(200, "lb"),
  11863. name: "Taur (Back)",
  11864. image: {
  11865. source: "./media/characters/scales/taur-back.svg",
  11866. extra: 1,
  11867. bottom: 0.08
  11868. }
  11869. },
  11870. anthro: {
  11871. height: math.unit(6 * 7 / 12, "feet"),
  11872. weight: math.unit(100, "lb"),
  11873. name: "Anthro",
  11874. image: {
  11875. source: "./media/characters/scales/anthro.svg",
  11876. extra: 1,
  11877. bottom: 0.06
  11878. }
  11879. },
  11880. },
  11881. [
  11882. {
  11883. name: "Normal",
  11884. height: math.unit(12, "feet"),
  11885. default: true
  11886. },
  11887. ]
  11888. ))
  11889. characterMakers.push(() => makeCharacter(
  11890. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11891. {
  11892. front: {
  11893. height: math.unit(6, "feet"),
  11894. weight: math.unit(150, "lb"),
  11895. name: "Front",
  11896. image: {
  11897. source: "./media/characters/koragos/front.svg",
  11898. extra: 841 / 794,
  11899. bottom: 0.035
  11900. }
  11901. },
  11902. back: {
  11903. height: math.unit(6, "feet"),
  11904. weight: math.unit(150, "lb"),
  11905. name: "Back",
  11906. image: {
  11907. source: "./media/characters/koragos/back.svg",
  11908. extra: 841 / 810,
  11909. bottom: 0.022
  11910. }
  11911. },
  11912. },
  11913. [
  11914. {
  11915. name: "Normal",
  11916. height: math.unit(6 + 11 / 12, "feet"),
  11917. default: true
  11918. },
  11919. {
  11920. name: "Macro",
  11921. height: math.unit(490, "feet")
  11922. },
  11923. {
  11924. name: "Megamacro",
  11925. height: math.unit(10, "miles")
  11926. },
  11927. {
  11928. name: "Gigamacro",
  11929. height: math.unit(50, "miles")
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11935. {
  11936. front: {
  11937. height: math.unit(6, "feet"),
  11938. weight: math.unit(250, "lb"),
  11939. name: "Front",
  11940. image: {
  11941. source: "./media/characters/xylrem/front.svg",
  11942. extra: 3323 / 3050,
  11943. bottom: 0.065
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Micro",
  11950. height: math.unit(4, "feet")
  11951. },
  11952. {
  11953. name: "Normal",
  11954. height: math.unit(16, "feet"),
  11955. default: true
  11956. },
  11957. {
  11958. name: "Macro",
  11959. height: math.unit(2720, "feet")
  11960. },
  11961. {
  11962. name: "Megamacro",
  11963. height: math.unit(25000, "miles")
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11969. {
  11970. front: {
  11971. height: math.unit(8, "feet"),
  11972. weight: math.unit(250, "kg"),
  11973. name: "Front",
  11974. image: {
  11975. source: "./media/characters/ikideru/front.svg",
  11976. extra: 930 / 870,
  11977. bottom: 0.087
  11978. }
  11979. },
  11980. back: {
  11981. height: math.unit(8, "feet"),
  11982. weight: math.unit(250, "kg"),
  11983. name: "Back",
  11984. image: {
  11985. source: "./media/characters/ikideru/back.svg",
  11986. extra: 919 / 852,
  11987. bottom: 0.055
  11988. }
  11989. },
  11990. },
  11991. [
  11992. {
  11993. name: "Rare",
  11994. height: math.unit(8, "feet"),
  11995. default: true
  11996. },
  11997. {
  11998. name: "Playful Loom",
  11999. height: math.unit(80, "feet")
  12000. },
  12001. {
  12002. name: "City Leaner",
  12003. height: math.unit(230, "feet")
  12004. },
  12005. {
  12006. name: "Megamacro",
  12007. height: math.unit(2500, "feet")
  12008. },
  12009. {
  12010. name: "Gigamacro",
  12011. height: math.unit(26400, "feet")
  12012. },
  12013. {
  12014. name: "Tectonic Shifter",
  12015. height: math.unit(1.7, "megameters")
  12016. },
  12017. {
  12018. name: "Planet Carer",
  12019. height: math.unit(21, "megameters")
  12020. },
  12021. {
  12022. name: "God",
  12023. height: math.unit(11157.22, "parsecs")
  12024. },
  12025. ]
  12026. ))
  12027. characterMakers.push(() => makeCharacter(
  12028. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12029. {
  12030. front: {
  12031. height: math.unit(6, "feet"),
  12032. weight: math.unit(120, "lb"),
  12033. name: "Front",
  12034. image: {
  12035. source: "./media/characters/neo/front.svg"
  12036. }
  12037. },
  12038. },
  12039. [
  12040. {
  12041. name: "Micro",
  12042. height: math.unit(2, "inches"),
  12043. default: true
  12044. },
  12045. {
  12046. name: "Human Size",
  12047. height: math.unit(5 + 8 / 12, "feet")
  12048. },
  12049. ]
  12050. ))
  12051. characterMakers.push(() => makeCharacter(
  12052. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12053. {
  12054. front: {
  12055. height: math.unit(13 + 10 / 12, "feet"),
  12056. weight: math.unit(5320, "lb"),
  12057. name: "Front",
  12058. image: {
  12059. source: "./media/characters/chauncey-chantz/front.svg",
  12060. extra: 1587 / 1435,
  12061. bottom: 0.02
  12062. }
  12063. },
  12064. },
  12065. [
  12066. {
  12067. name: "Normal",
  12068. height: math.unit(13 + 10 / 12, "feet"),
  12069. default: true
  12070. },
  12071. {
  12072. name: "Macro",
  12073. height: math.unit(45, "feet")
  12074. },
  12075. {
  12076. name: "Megamacro",
  12077. height: math.unit(250, "miles")
  12078. },
  12079. {
  12080. name: "Planetary",
  12081. height: math.unit(10000, "miles")
  12082. },
  12083. {
  12084. name: "Galactic",
  12085. height: math.unit(40000, "parsecs")
  12086. },
  12087. {
  12088. name: "Universal",
  12089. height: math.unit(1, "yottameter")
  12090. },
  12091. ]
  12092. ))
  12093. characterMakers.push(() => makeCharacter(
  12094. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12095. {
  12096. front: {
  12097. height: math.unit(6, "feet"),
  12098. weight: math.unit(150, "lb"),
  12099. name: "Front",
  12100. image: {
  12101. source: "./media/characters/epifox/front.svg",
  12102. extra: 1,
  12103. bottom: 0.075
  12104. }
  12105. },
  12106. },
  12107. [
  12108. {
  12109. name: "Micro",
  12110. height: math.unit(6, "inches")
  12111. },
  12112. {
  12113. name: "Normal",
  12114. height: math.unit(12, "feet"),
  12115. default: true
  12116. },
  12117. {
  12118. name: "Macro",
  12119. height: math.unit(3810, "feet")
  12120. },
  12121. {
  12122. name: "Megamacro",
  12123. height: math.unit(500, "miles")
  12124. },
  12125. ]
  12126. ))
  12127. characterMakers.push(() => makeCharacter(
  12128. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12129. {
  12130. front: {
  12131. height: math.unit(1.8796, "m"),
  12132. weight: math.unit(230, "lb"),
  12133. name: "Front",
  12134. image: {
  12135. source: "./media/characters/colin-t/front.svg",
  12136. extra: 1272 / 1193,
  12137. bottom: 0.07
  12138. }
  12139. },
  12140. },
  12141. [
  12142. {
  12143. name: "Micro",
  12144. height: math.unit(0.571, "meters")
  12145. },
  12146. {
  12147. name: "Normal",
  12148. height: math.unit(1.8796, "meters"),
  12149. default: true
  12150. },
  12151. {
  12152. name: "Tall",
  12153. height: math.unit(4, "meters")
  12154. },
  12155. {
  12156. name: "Macro",
  12157. height: math.unit(67.241, "meters")
  12158. },
  12159. {
  12160. name: "Megamacro",
  12161. height: math.unit(371.856, "meters")
  12162. },
  12163. {
  12164. name: "Planetary",
  12165. height: math.unit(12631.5689, "km")
  12166. },
  12167. ]
  12168. ))
  12169. characterMakers.push(() => makeCharacter(
  12170. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12171. {
  12172. front: {
  12173. height: math.unit(1.85, "meters"),
  12174. weight: math.unit(80, "kg"),
  12175. name: "Front",
  12176. image: {
  12177. source: "./media/characters/matvei/front.svg",
  12178. extra: 614 / 594,
  12179. bottom: 0.01
  12180. }
  12181. },
  12182. },
  12183. [
  12184. {
  12185. name: "Normal",
  12186. height: math.unit(1.85, "meters"),
  12187. default: true
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12193. {
  12194. front: {
  12195. height: math.unit(5 + 9 / 12, "feet"),
  12196. weight: math.unit(70, "lb"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/quincy/front.svg",
  12200. extra: 3041 / 2751
  12201. }
  12202. },
  12203. back: {
  12204. height: math.unit(5 + 9 / 12, "feet"),
  12205. weight: math.unit(70, "lb"),
  12206. name: "Back",
  12207. image: {
  12208. source: "./media/characters/quincy/back.svg",
  12209. extra: 3041 / 2751
  12210. }
  12211. },
  12212. flying: {
  12213. height: math.unit(5 + 4 / 12, "feet"),
  12214. weight: math.unit(70, "lb"),
  12215. name: "Flying",
  12216. image: {
  12217. source: "./media/characters/quincy/flying.svg",
  12218. extra: 1044 / 930
  12219. }
  12220. },
  12221. },
  12222. [
  12223. {
  12224. name: "Micro",
  12225. height: math.unit(3, "cm")
  12226. },
  12227. {
  12228. name: "Normal",
  12229. height: math.unit(5 + 9 / 12, "feet")
  12230. },
  12231. {
  12232. name: "Macro",
  12233. height: math.unit(200, "meters"),
  12234. default: true
  12235. },
  12236. {
  12237. name: "Megamacro",
  12238. height: math.unit(1000, "meters")
  12239. },
  12240. ]
  12241. ))
  12242. characterMakers.push(() => makeCharacter(
  12243. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12244. {
  12245. front: {
  12246. height: math.unit(3 + 11/12, "feet"),
  12247. weight: math.unit(50, "lb"),
  12248. name: "Front",
  12249. image: {
  12250. source: "./media/characters/vanrel/front.svg",
  12251. extra: 1104/949,
  12252. bottom: 52/1156
  12253. }
  12254. },
  12255. back: {
  12256. height: math.unit(3 + 11/12, "feet"),
  12257. weight: math.unit(50, "lb"),
  12258. name: "Back",
  12259. image: {
  12260. source: "./media/characters/vanrel/back.svg",
  12261. extra: 1119/976,
  12262. bottom: 37/1156
  12263. }
  12264. },
  12265. tome: {
  12266. height: math.unit(1.35, "feet"),
  12267. weight: math.unit(10, "lb"),
  12268. name: "Vanrel's Tome",
  12269. rename: true,
  12270. image: {
  12271. source: "./media/characters/vanrel/tome.svg"
  12272. }
  12273. },
  12274. beans: {
  12275. height: math.unit(0.89, "feet"),
  12276. name: "Beans",
  12277. image: {
  12278. source: "./media/characters/vanrel/beans.svg"
  12279. }
  12280. },
  12281. },
  12282. [
  12283. {
  12284. name: "Normal",
  12285. height: math.unit(3 + 11/12, "feet"),
  12286. default: true
  12287. },
  12288. ]
  12289. ))
  12290. characterMakers.push(() => makeCharacter(
  12291. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12292. {
  12293. front: {
  12294. height: math.unit(7 + 5 / 12, "feet"),
  12295. name: "Front",
  12296. image: {
  12297. source: "./media/characters/kuiper-vanrel/front.svg",
  12298. extra: 1219/1169,
  12299. bottom: 69/1288
  12300. }
  12301. },
  12302. back: {
  12303. height: math.unit(7 + 5 / 12, "feet"),
  12304. name: "Back",
  12305. image: {
  12306. source: "./media/characters/kuiper-vanrel/back.svg",
  12307. extra: 1236/1193,
  12308. bottom: 27/1263
  12309. }
  12310. },
  12311. foot: {
  12312. height: math.unit(0.55, "meters"),
  12313. name: "Foot",
  12314. image: {
  12315. source: "./media/characters/kuiper-vanrel/foot.svg",
  12316. }
  12317. },
  12318. battle: {
  12319. height: math.unit(6.824, "feet"),
  12320. name: "Battle",
  12321. image: {
  12322. source: "./media/characters/kuiper-vanrel/battle.svg",
  12323. extra: 1466 / 1327,
  12324. bottom: 29 / 1492.5
  12325. }
  12326. },
  12327. meerkui: {
  12328. height: math.unit(18, "inches"),
  12329. name: "Meerkui",
  12330. image: {
  12331. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12332. extra: 1354/1289,
  12333. bottom: 69/1423
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(7 + 5 / 12, "feet"),
  12341. default: true
  12342. },
  12343. ]
  12344. ))
  12345. characterMakers.push(() => makeCharacter(
  12346. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12347. {
  12348. front: {
  12349. height: math.unit(8 + 5 / 12, "feet"),
  12350. name: "Front",
  12351. image: {
  12352. source: "./media/characters/keset-vanrel/front.svg",
  12353. extra: 1231/1148,
  12354. bottom: 82/1313
  12355. }
  12356. },
  12357. back: {
  12358. height: math.unit(8 + 5 / 12, "feet"),
  12359. name: "Back",
  12360. image: {
  12361. source: "./media/characters/keset-vanrel/back.svg",
  12362. extra: 1240/1174,
  12363. bottom: 33/1273
  12364. }
  12365. },
  12366. hand: {
  12367. height: math.unit(0.6, "meters"),
  12368. name: "Hand",
  12369. image: {
  12370. source: "./media/characters/keset-vanrel/hand.svg"
  12371. }
  12372. },
  12373. foot: {
  12374. height: math.unit(0.94978, "meters"),
  12375. name: "Foot",
  12376. image: {
  12377. source: "./media/characters/keset-vanrel/foot.svg"
  12378. }
  12379. },
  12380. battle: {
  12381. height: math.unit(7.408, "feet"),
  12382. name: "Battle",
  12383. image: {
  12384. source: "./media/characters/keset-vanrel/battle.svg",
  12385. extra: 1890 / 1386,
  12386. bottom: 73.28 / 1970
  12387. }
  12388. },
  12389. },
  12390. [
  12391. {
  12392. name: "Normal",
  12393. height: math.unit(8 + 5 / 12, "feet"),
  12394. default: true
  12395. },
  12396. ]
  12397. ))
  12398. characterMakers.push(() => makeCharacter(
  12399. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12400. {
  12401. front: {
  12402. height: math.unit(6, "feet"),
  12403. weight: math.unit(150, "lb"),
  12404. name: "Front",
  12405. image: {
  12406. source: "./media/characters/neos/front.svg",
  12407. extra: 1696 / 992,
  12408. bottom: 0.14
  12409. }
  12410. },
  12411. },
  12412. [
  12413. {
  12414. name: "Normal",
  12415. height: math.unit(54, "cm"),
  12416. default: true
  12417. },
  12418. {
  12419. name: "Macro",
  12420. height: math.unit(100, "m")
  12421. },
  12422. {
  12423. name: "Megamacro",
  12424. height: math.unit(10, "km")
  12425. },
  12426. {
  12427. name: "Megamacro+",
  12428. height: math.unit(100, "km")
  12429. },
  12430. {
  12431. name: "Gigamacro",
  12432. height: math.unit(100, "Mm")
  12433. },
  12434. {
  12435. name: "Teramacro",
  12436. height: math.unit(100, "Gm")
  12437. },
  12438. {
  12439. name: "Examacro",
  12440. height: math.unit(100, "Em")
  12441. },
  12442. {
  12443. name: "Godly",
  12444. height: math.unit(10000, "Ym")
  12445. },
  12446. {
  12447. name: "Beyond Godly",
  12448. height: math.unit(25, "multiverses")
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12454. {
  12455. feminine: {
  12456. height: math.unit(5, "feet"),
  12457. weight: math.unit(100, "lb"),
  12458. name: "Feminine",
  12459. image: {
  12460. source: "./media/characters/sammy-mouse/feminine.svg",
  12461. extra: 2526 / 2425,
  12462. bottom: 0.123
  12463. }
  12464. },
  12465. masculine: {
  12466. height: math.unit(5, "feet"),
  12467. weight: math.unit(100, "lb"),
  12468. name: "Masculine",
  12469. image: {
  12470. source: "./media/characters/sammy-mouse/masculine.svg",
  12471. extra: 2526 / 2425,
  12472. bottom: 0.123
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Micro",
  12479. height: math.unit(5, "inches")
  12480. },
  12481. {
  12482. name: "Normal",
  12483. height: math.unit(5, "feet"),
  12484. default: true
  12485. },
  12486. {
  12487. name: "Macro",
  12488. height: math.unit(60, "feet")
  12489. },
  12490. ]
  12491. ))
  12492. characterMakers.push(() => makeCharacter(
  12493. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12494. {
  12495. front: {
  12496. height: math.unit(4, "feet"),
  12497. weight: math.unit(50, "lb"),
  12498. name: "Front",
  12499. image: {
  12500. source: "./media/characters/kole/front.svg",
  12501. extra: 1423 / 1303,
  12502. bottom: 0.025
  12503. }
  12504. },
  12505. back: {
  12506. height: math.unit(4, "feet"),
  12507. weight: math.unit(50, "lb"),
  12508. name: "Back",
  12509. image: {
  12510. source: "./media/characters/kole/back.svg",
  12511. extra: 1426 / 1280,
  12512. bottom: 0.02
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Normal",
  12519. height: math.unit(4, "feet"),
  12520. default: true
  12521. },
  12522. ]
  12523. ))
  12524. characterMakers.push(() => makeCharacter(
  12525. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12526. {
  12527. front: {
  12528. height: math.unit(2.5, "feet"),
  12529. weight: math.unit(32, "lb"),
  12530. name: "Front",
  12531. image: {
  12532. source: "./media/characters/rufran/front.svg",
  12533. extra: 1313/885,
  12534. bottom: 94/1407
  12535. }
  12536. },
  12537. side: {
  12538. height: math.unit(2.5, "feet"),
  12539. weight: math.unit(32, "lb"),
  12540. name: "Side",
  12541. image: {
  12542. source: "./media/characters/rufran/side.svg",
  12543. extra: 1109/852,
  12544. bottom: 118/1227
  12545. }
  12546. },
  12547. back: {
  12548. height: math.unit(2.5, "feet"),
  12549. weight: math.unit(32, "lb"),
  12550. name: "Back",
  12551. image: {
  12552. source: "./media/characters/rufran/back.svg",
  12553. extra: 1280/878,
  12554. bottom: 131/1411
  12555. }
  12556. },
  12557. mouth: {
  12558. height: math.unit(1.13, "feet"),
  12559. name: "Mouth",
  12560. image: {
  12561. source: "./media/characters/rufran/mouth.svg"
  12562. }
  12563. },
  12564. foot: {
  12565. height: math.unit(1.33, "feet"),
  12566. name: "Foot",
  12567. image: {
  12568. source: "./media/characters/rufran/foot.svg"
  12569. }
  12570. },
  12571. koboldFront: {
  12572. height: math.unit(2 + 6 / 12, "feet"),
  12573. weight: math.unit(20, "lb"),
  12574. name: "Front (Kobold)",
  12575. image: {
  12576. source: "./media/characters/rufran/kobold-front.svg",
  12577. extra: 2041 / 1839,
  12578. bottom: 0.055
  12579. }
  12580. },
  12581. koboldBack: {
  12582. height: math.unit(2 + 6 / 12, "feet"),
  12583. weight: math.unit(20, "lb"),
  12584. name: "Back (Kobold)",
  12585. image: {
  12586. source: "./media/characters/rufran/kobold-back.svg",
  12587. extra: 2054 / 1839,
  12588. bottom: 0.01
  12589. }
  12590. },
  12591. koboldHand: {
  12592. height: math.unit(0.2166, "meters"),
  12593. name: "Hand (Kobold)",
  12594. image: {
  12595. source: "./media/characters/rufran/kobold-hand.svg"
  12596. }
  12597. },
  12598. koboldFoot: {
  12599. height: math.unit(0.185, "meters"),
  12600. name: "Foot (Kobold)",
  12601. image: {
  12602. source: "./media/characters/rufran/kobold-foot.svg"
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Micro",
  12609. height: math.unit(1, "inch")
  12610. },
  12611. {
  12612. name: "Normal",
  12613. height: math.unit(2 + 6 / 12, "feet"),
  12614. default: true
  12615. },
  12616. {
  12617. name: "Big",
  12618. height: math.unit(60, "feet")
  12619. },
  12620. {
  12621. name: "Macro",
  12622. height: math.unit(325, "feet")
  12623. },
  12624. ]
  12625. ))
  12626. characterMakers.push(() => makeCharacter(
  12627. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12628. {
  12629. front: {
  12630. height: math.unit(0.3, "meters"),
  12631. weight: math.unit(3.5, "kg"),
  12632. name: "Front",
  12633. image: {
  12634. source: "./media/characters/chip/front.svg",
  12635. extra: 748 / 674
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Micro",
  12642. height: math.unit(1, "inch"),
  12643. default: true
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12649. {
  12650. side: {
  12651. height: math.unit(2.3, "meters"),
  12652. weight: math.unit(3500, "lb"),
  12653. name: "Side",
  12654. image: {
  12655. source: "./media/characters/torvid/side.svg",
  12656. extra: 1972 / 722,
  12657. bottom: 0.035
  12658. }
  12659. },
  12660. },
  12661. [
  12662. {
  12663. name: "Normal",
  12664. height: math.unit(2.3, "meters"),
  12665. default: true
  12666. },
  12667. ]
  12668. ))
  12669. characterMakers.push(() => makeCharacter(
  12670. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12671. {
  12672. front: {
  12673. height: math.unit(2, "meters"),
  12674. weight: math.unit(150.5, "kg"),
  12675. name: "Front",
  12676. image: {
  12677. source: "./media/characters/susan/front.svg",
  12678. extra: 693 / 635,
  12679. bottom: 0.05
  12680. }
  12681. },
  12682. },
  12683. [
  12684. {
  12685. name: "Megamacro",
  12686. height: math.unit(505, "miles"),
  12687. default: true
  12688. },
  12689. ]
  12690. ))
  12691. characterMakers.push(() => makeCharacter(
  12692. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12693. {
  12694. front: {
  12695. height: math.unit(6, "feet"),
  12696. weight: math.unit(150, "lb"),
  12697. name: "Front",
  12698. image: {
  12699. source: "./media/characters/raindrops/front.svg",
  12700. extra: 2655 / 2461,
  12701. bottom: 49 / 2705
  12702. }
  12703. },
  12704. back: {
  12705. height: math.unit(6, "feet"),
  12706. weight: math.unit(150, "lb"),
  12707. name: "Back",
  12708. image: {
  12709. source: "./media/characters/raindrops/back.svg",
  12710. extra: 2574 / 2400,
  12711. bottom: 65 / 2634
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Micro",
  12718. height: math.unit(6, "inches")
  12719. },
  12720. {
  12721. name: "Normal",
  12722. height: math.unit(6 + 2 / 12, "feet")
  12723. },
  12724. {
  12725. name: "Macro",
  12726. height: math.unit(131, "feet"),
  12727. default: true
  12728. },
  12729. {
  12730. name: "Megamacro",
  12731. height: math.unit(15, "miles")
  12732. },
  12733. {
  12734. name: "Gigamacro",
  12735. height: math.unit(4000, "miles")
  12736. },
  12737. {
  12738. name: "Teramacro",
  12739. height: math.unit(315000, "miles")
  12740. },
  12741. ]
  12742. ))
  12743. characterMakers.push(() => makeCharacter(
  12744. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12745. {
  12746. front: {
  12747. height: math.unit(2.794, "meters"),
  12748. weight: math.unit(325, "kg"),
  12749. name: "Front",
  12750. image: {
  12751. source: "./media/characters/tezwa/front.svg",
  12752. extra: 2083 / 1906,
  12753. bottom: 0.031
  12754. }
  12755. },
  12756. foot: {
  12757. height: math.unit(0.687, "meters"),
  12758. name: "Foot",
  12759. image: {
  12760. source: "./media/characters/tezwa/foot.svg"
  12761. }
  12762. },
  12763. },
  12764. [
  12765. {
  12766. name: "Normal",
  12767. height: math.unit(9 + 2 / 12, "feet"),
  12768. default: true
  12769. },
  12770. ]
  12771. ))
  12772. characterMakers.push(() => makeCharacter(
  12773. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12774. {
  12775. front: {
  12776. height: math.unit(58, "feet"),
  12777. weight: math.unit(89000, "lb"),
  12778. name: "Front",
  12779. image: {
  12780. source: "./media/characters/typhus/front.svg",
  12781. extra: 816 / 800,
  12782. bottom: 0.065
  12783. }
  12784. },
  12785. },
  12786. [
  12787. {
  12788. name: "Macro",
  12789. height: math.unit(58, "feet"),
  12790. default: true
  12791. },
  12792. ]
  12793. ))
  12794. characterMakers.push(() => makeCharacter(
  12795. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12796. {
  12797. front: {
  12798. height: math.unit(12, "feet"),
  12799. weight: math.unit(6, "tonnes"),
  12800. name: "Front",
  12801. image: {
  12802. source: "./media/characters/lyra-von-wulf/front.svg",
  12803. extra: 1,
  12804. bottom: 0.10
  12805. }
  12806. },
  12807. frontMecha: {
  12808. height: math.unit(12, "feet"),
  12809. weight: math.unit(12, "tonnes"),
  12810. name: "Front (Mecha)",
  12811. image: {
  12812. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12813. extra: 1,
  12814. bottom: 0.042
  12815. }
  12816. },
  12817. maw: {
  12818. height: math.unit(2.2, "feet"),
  12819. name: "Maw",
  12820. image: {
  12821. source: "./media/characters/lyra-von-wulf/maw.svg"
  12822. }
  12823. },
  12824. },
  12825. [
  12826. {
  12827. name: "Normal",
  12828. height: math.unit(12, "feet"),
  12829. default: true
  12830. },
  12831. {
  12832. name: "Classic",
  12833. height: math.unit(50, "feet")
  12834. },
  12835. {
  12836. name: "Macro",
  12837. height: math.unit(500, "feet")
  12838. },
  12839. {
  12840. name: "Megamacro",
  12841. height: math.unit(1, "mile")
  12842. },
  12843. {
  12844. name: "Gigamacro",
  12845. height: math.unit(400, "miles")
  12846. },
  12847. {
  12848. name: "Teramacro",
  12849. height: math.unit(22000, "miles")
  12850. },
  12851. {
  12852. name: "Solarmacro",
  12853. height: math.unit(8600000, "miles")
  12854. },
  12855. {
  12856. name: "Galactic",
  12857. height: math.unit(1057000, "lightyears")
  12858. },
  12859. ]
  12860. ))
  12861. characterMakers.push(() => makeCharacter(
  12862. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12863. {
  12864. front: {
  12865. height: math.unit(6 + 10 / 12, "feet"),
  12866. weight: math.unit(150, "lb"),
  12867. name: "Front",
  12868. image: {
  12869. source: "./media/characters/dixon/front.svg",
  12870. extra: 3361 / 3209,
  12871. bottom: 0.01
  12872. }
  12873. },
  12874. },
  12875. [
  12876. {
  12877. name: "Normal",
  12878. height: math.unit(6 + 10 / 12, "feet"),
  12879. default: true
  12880. },
  12881. {
  12882. name: "Big",
  12883. height: math.unit(12, "meters")
  12884. },
  12885. {
  12886. name: "Macro",
  12887. height: math.unit(500, "meters")
  12888. },
  12889. {
  12890. name: "Megamacro",
  12891. height: math.unit(2, "km")
  12892. },
  12893. ]
  12894. ))
  12895. characterMakers.push(() => makeCharacter(
  12896. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12897. {
  12898. front: {
  12899. height: math.unit(185, "cm"),
  12900. weight: math.unit(68, "kg"),
  12901. name: "Front",
  12902. image: {
  12903. source: "./media/characters/kauko/front.svg",
  12904. extra: 1455 / 1421,
  12905. bottom: 0.03
  12906. }
  12907. },
  12908. back: {
  12909. height: math.unit(185, "cm"),
  12910. weight: math.unit(68, "kg"),
  12911. name: "Back",
  12912. image: {
  12913. source: "./media/characters/kauko/back.svg",
  12914. extra: 1455 / 1421,
  12915. bottom: 0.004
  12916. }
  12917. },
  12918. },
  12919. [
  12920. {
  12921. name: "Normal",
  12922. height: math.unit(185, "cm"),
  12923. default: true
  12924. },
  12925. ]
  12926. ))
  12927. characterMakers.push(() => makeCharacter(
  12928. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12929. {
  12930. front: {
  12931. height: math.unit(6, "feet"),
  12932. weight: math.unit(150, "kg"),
  12933. name: "Front",
  12934. image: {
  12935. source: "./media/characters/varg/front.svg",
  12936. extra: 1108 / 1018,
  12937. bottom: 0.0375
  12938. }
  12939. },
  12940. },
  12941. [
  12942. {
  12943. name: "Normal",
  12944. height: math.unit(5, "meters")
  12945. },
  12946. {
  12947. name: "Macro",
  12948. height: math.unit(200, "meters")
  12949. },
  12950. {
  12951. name: "Megamacro",
  12952. height: math.unit(20, "kilometers")
  12953. },
  12954. {
  12955. name: "True Size",
  12956. height: math.unit(211, "km"),
  12957. default: true
  12958. },
  12959. {
  12960. name: "Gigamacro",
  12961. height: math.unit(1000, "km")
  12962. },
  12963. {
  12964. name: "Gigamacro+",
  12965. height: math.unit(8000, "km")
  12966. },
  12967. {
  12968. name: "Teramacro",
  12969. height: math.unit(1000000, "km")
  12970. },
  12971. ]
  12972. ))
  12973. characterMakers.push(() => makeCharacter(
  12974. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12975. {
  12976. front: {
  12977. height: math.unit(7 + 7 / 12, "feet"),
  12978. weight: math.unit(267, "lb"),
  12979. name: "Front",
  12980. image: {
  12981. source: "./media/characters/dayza/front.svg",
  12982. extra: 1262 / 1200,
  12983. bottom: 0.035
  12984. }
  12985. },
  12986. side: {
  12987. height: math.unit(7 + 7 / 12, "feet"),
  12988. weight: math.unit(267, "lb"),
  12989. name: "Side",
  12990. image: {
  12991. source: "./media/characters/dayza/side.svg",
  12992. extra: 1295 / 1245,
  12993. bottom: 0.05
  12994. }
  12995. },
  12996. back: {
  12997. height: math.unit(7 + 7 / 12, "feet"),
  12998. weight: math.unit(267, "lb"),
  12999. name: "Back",
  13000. image: {
  13001. source: "./media/characters/dayza/back.svg",
  13002. extra: 1241 / 1170
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Normal",
  13009. height: math.unit(7 + 7 / 12, "feet"),
  13010. default: true
  13011. },
  13012. {
  13013. name: "Macro",
  13014. height: math.unit(155, "feet")
  13015. },
  13016. ]
  13017. ))
  13018. characterMakers.push(() => makeCharacter(
  13019. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13020. {
  13021. front: {
  13022. height: math.unit(6 + 5 / 12, "feet"),
  13023. weight: math.unit(160, "lb"),
  13024. name: "Front",
  13025. image: {
  13026. source: "./media/characters/xanthos/front.svg",
  13027. extra: 1,
  13028. bottom: 0.04
  13029. }
  13030. },
  13031. back: {
  13032. height: math.unit(6 + 5 / 12, "feet"),
  13033. weight: math.unit(160, "lb"),
  13034. name: "Back",
  13035. image: {
  13036. source: "./media/characters/xanthos/back.svg",
  13037. extra: 1,
  13038. bottom: 0.03
  13039. }
  13040. },
  13041. hand: {
  13042. height: math.unit(0.928, "feet"),
  13043. name: "Hand",
  13044. image: {
  13045. source: "./media/characters/xanthos/hand.svg"
  13046. }
  13047. },
  13048. foot: {
  13049. height: math.unit(1.286, "feet"),
  13050. name: "Foot",
  13051. image: {
  13052. source: "./media/characters/xanthos/foot.svg"
  13053. }
  13054. },
  13055. },
  13056. [
  13057. {
  13058. name: "Normal",
  13059. height: math.unit(6 + 5 / 12, "feet"),
  13060. default: true
  13061. },
  13062. {
  13063. name: "Normal+",
  13064. height: math.unit(6, "meters")
  13065. },
  13066. {
  13067. name: "Macro",
  13068. height: math.unit(40, "feet")
  13069. },
  13070. {
  13071. name: "Macro+",
  13072. height: math.unit(200, "meters")
  13073. },
  13074. {
  13075. name: "Megamacro",
  13076. height: math.unit(20, "km")
  13077. },
  13078. {
  13079. name: "Megamacro+",
  13080. height: math.unit(100, "km")
  13081. },
  13082. {
  13083. name: "Gigamacro",
  13084. height: math.unit(200, "megameters")
  13085. },
  13086. {
  13087. name: "Gigamacro+",
  13088. height: math.unit(1.5, "gigameters")
  13089. },
  13090. ]
  13091. ))
  13092. characterMakers.push(() => makeCharacter(
  13093. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13094. {
  13095. front: {
  13096. height: math.unit(6 + 3 / 12, "feet"),
  13097. weight: math.unit(215, "lb"),
  13098. name: "Front",
  13099. image: {
  13100. source: "./media/characters/grynn/front.svg",
  13101. extra: 4627 / 4209,
  13102. bottom: 0.047
  13103. }
  13104. },
  13105. },
  13106. [
  13107. {
  13108. name: "Micro",
  13109. height: math.unit(6, "inches")
  13110. },
  13111. {
  13112. name: "Normal",
  13113. height: math.unit(6 + 3 / 12, "feet"),
  13114. default: true
  13115. },
  13116. {
  13117. name: "Big",
  13118. height: math.unit(104, "feet")
  13119. },
  13120. {
  13121. name: "Macro",
  13122. height: math.unit(944, "feet")
  13123. },
  13124. {
  13125. name: "Macro+",
  13126. height: math.unit(9480, "feet")
  13127. },
  13128. {
  13129. name: "Megamacro",
  13130. height: math.unit(78752, "feet")
  13131. },
  13132. {
  13133. name: "Megamacro+",
  13134. height: math.unit(630128, "feet")
  13135. },
  13136. {
  13137. name: "Megamacro++",
  13138. height: math.unit(3150695, "feet")
  13139. },
  13140. ]
  13141. ))
  13142. characterMakers.push(() => makeCharacter(
  13143. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13144. {
  13145. front: {
  13146. height: math.unit(7 + 5 / 12, "feet"),
  13147. weight: math.unit(450, "lb"),
  13148. name: "Front",
  13149. image: {
  13150. source: "./media/characters/mocha-aura/front.svg",
  13151. extra: 1907 / 1817,
  13152. bottom: 0.04
  13153. }
  13154. },
  13155. back: {
  13156. height: math.unit(7 + 5 / 12, "feet"),
  13157. weight: math.unit(450, "lb"),
  13158. name: "Back",
  13159. image: {
  13160. source: "./media/characters/mocha-aura/back.svg",
  13161. extra: 1900 / 1825,
  13162. bottom: 0.045
  13163. }
  13164. },
  13165. },
  13166. [
  13167. {
  13168. name: "Nano",
  13169. height: math.unit(1, "nm")
  13170. },
  13171. {
  13172. name: "Megamicro",
  13173. height: math.unit(1, "mm")
  13174. },
  13175. {
  13176. name: "Micro",
  13177. height: math.unit(3, "inches")
  13178. },
  13179. {
  13180. name: "Normal",
  13181. height: math.unit(7 + 5 / 12, "feet"),
  13182. default: true
  13183. },
  13184. {
  13185. name: "Macro",
  13186. height: math.unit(30, "feet")
  13187. },
  13188. {
  13189. name: "Megamacro",
  13190. height: math.unit(3500, "feet")
  13191. },
  13192. {
  13193. name: "Teramacro",
  13194. height: math.unit(500000, "miles")
  13195. },
  13196. {
  13197. name: "Petamacro",
  13198. height: math.unit(50000000000000000, "parsecs")
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13204. {
  13205. front: {
  13206. height: math.unit(6, "feet"),
  13207. weight: math.unit(150, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/ilisha-devya/front.svg",
  13211. extra: 1053/1049,
  13212. bottom: 270/1323
  13213. }
  13214. },
  13215. back: {
  13216. height: math.unit(6, "feet"),
  13217. weight: math.unit(150, "lb"),
  13218. name: "Back",
  13219. image: {
  13220. source: "./media/characters/ilisha-devya/back.svg",
  13221. extra: 1131/1128,
  13222. bottom: 39/1170
  13223. }
  13224. },
  13225. },
  13226. [
  13227. {
  13228. name: "Macro",
  13229. height: math.unit(500, "feet"),
  13230. default: true
  13231. },
  13232. {
  13233. name: "Megamacro",
  13234. height: math.unit(10, "miles")
  13235. },
  13236. {
  13237. name: "Gigamacro",
  13238. height: math.unit(100000, "miles")
  13239. },
  13240. {
  13241. name: "Examacro",
  13242. height: math.unit(1e9, "lightyears")
  13243. },
  13244. {
  13245. name: "Omniversal",
  13246. height: math.unit(1e33, "lightyears")
  13247. },
  13248. {
  13249. name: "Beyond Infinite",
  13250. height: math.unit(1e100, "lightyears")
  13251. },
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13256. {
  13257. Side: {
  13258. height: math.unit(6, "feet"),
  13259. weight: math.unit(150, "lb"),
  13260. name: "Side",
  13261. image: {
  13262. source: "./media/characters/mira/side.svg",
  13263. extra: 900 / 799,
  13264. bottom: 0.02
  13265. }
  13266. },
  13267. },
  13268. [
  13269. {
  13270. name: "Human Size",
  13271. height: math.unit(6, "feet")
  13272. },
  13273. {
  13274. name: "Macro",
  13275. height: math.unit(100, "feet"),
  13276. default: true
  13277. },
  13278. {
  13279. name: "Megamacro",
  13280. height: math.unit(10, "miles")
  13281. },
  13282. {
  13283. name: "Gigamacro",
  13284. height: math.unit(25000, "miles")
  13285. },
  13286. {
  13287. name: "Teramacro",
  13288. height: math.unit(300, "AU")
  13289. },
  13290. {
  13291. name: "Full Size",
  13292. height: math.unit(4.5e10, "lightyears")
  13293. },
  13294. ]
  13295. ))
  13296. characterMakers.push(() => makeCharacter(
  13297. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13298. {
  13299. front: {
  13300. height: math.unit(6, "feet"),
  13301. weight: math.unit(150, "lb"),
  13302. name: "Front",
  13303. image: {
  13304. source: "./media/characters/holly/front.svg",
  13305. extra: 639 / 606
  13306. }
  13307. },
  13308. back: {
  13309. height: math.unit(6, "feet"),
  13310. weight: math.unit(150, "lb"),
  13311. name: "Back",
  13312. image: {
  13313. source: "./media/characters/holly/back.svg",
  13314. extra: 623 / 598
  13315. }
  13316. },
  13317. frontWorking: {
  13318. height: math.unit(6, "feet"),
  13319. weight: math.unit(150, "lb"),
  13320. name: "Front (Working)",
  13321. image: {
  13322. source: "./media/characters/holly/front-working.svg",
  13323. extra: 607 / 577,
  13324. bottom: 0.048
  13325. }
  13326. },
  13327. },
  13328. [
  13329. {
  13330. name: "Normal",
  13331. height: math.unit(12 + 3 / 12, "feet"),
  13332. default: true
  13333. },
  13334. ]
  13335. ))
  13336. characterMakers.push(() => makeCharacter(
  13337. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13338. {
  13339. front: {
  13340. height: math.unit(6, "feet"),
  13341. weight: math.unit(150, "lb"),
  13342. name: "Front",
  13343. image: {
  13344. source: "./media/characters/porter/front.svg",
  13345. extra: 1,
  13346. bottom: 0.01
  13347. }
  13348. },
  13349. frontRobes: {
  13350. height: math.unit(6, "feet"),
  13351. weight: math.unit(150, "lb"),
  13352. name: "Front (Robes)",
  13353. image: {
  13354. source: "./media/characters/porter/front-robes.svg",
  13355. extra: 1.01,
  13356. bottom: 0.01
  13357. }
  13358. },
  13359. },
  13360. [
  13361. {
  13362. name: "Normal",
  13363. height: math.unit(11 + 9 / 12, "feet"),
  13364. default: true
  13365. },
  13366. ]
  13367. ))
  13368. characterMakers.push(() => makeCharacter(
  13369. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13370. {
  13371. legendary: {
  13372. height: math.unit(6, "feet"),
  13373. weight: math.unit(150, "lb"),
  13374. name: "Legendary",
  13375. image: {
  13376. source: "./media/characters/lucy/legendary.svg",
  13377. extra: 1355 / 1100,
  13378. bottom: 0.045
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Legendary",
  13385. height: math.unit(86882 * 2, "miles"),
  13386. default: true
  13387. },
  13388. ]
  13389. ))
  13390. characterMakers.push(() => makeCharacter(
  13391. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13392. {
  13393. front: {
  13394. height: math.unit(6, "feet"),
  13395. weight: math.unit(150, "lb"),
  13396. name: "Front",
  13397. image: {
  13398. source: "./media/characters/drusilla/front.svg",
  13399. extra: 678 / 635,
  13400. bottom: 0.03
  13401. }
  13402. },
  13403. back: {
  13404. height: math.unit(6, "feet"),
  13405. weight: math.unit(150, "lb"),
  13406. name: "Back",
  13407. image: {
  13408. source: "./media/characters/drusilla/back.svg",
  13409. extra: 678 / 635,
  13410. bottom: 0.005
  13411. }
  13412. },
  13413. },
  13414. [
  13415. {
  13416. name: "Macro",
  13417. height: math.unit(100, "feet")
  13418. },
  13419. {
  13420. name: "Canon Height",
  13421. height: math.unit(2000, "feet"),
  13422. default: true
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(6, "feet"),
  13431. weight: math.unit(180, "lb"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/renard-thatch/front.svg",
  13435. extra: 2411 / 2275,
  13436. bottom: 0.01
  13437. }
  13438. },
  13439. frontPosing: {
  13440. height: math.unit(6, "feet"),
  13441. weight: math.unit(180, "lb"),
  13442. name: "Front (Posing)",
  13443. image: {
  13444. source: "./media/characters/renard-thatch/front-posing.svg",
  13445. extra: 2381 / 2261,
  13446. bottom: 0.01
  13447. }
  13448. },
  13449. back: {
  13450. height: math.unit(6, "feet"),
  13451. weight: math.unit(180, "lb"),
  13452. name: "Back",
  13453. image: {
  13454. source: "./media/characters/renard-thatch/back.svg",
  13455. extra: 2428 / 2288
  13456. }
  13457. },
  13458. },
  13459. [
  13460. {
  13461. name: "Micro",
  13462. height: math.unit(3, "inches")
  13463. },
  13464. {
  13465. name: "Default",
  13466. height: math.unit(6, "feet"),
  13467. default: true
  13468. },
  13469. {
  13470. name: "Macro",
  13471. height: math.unit(75, "feet")
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13477. {
  13478. front: {
  13479. height: math.unit(1450, "feet"),
  13480. weight: math.unit(1.21e6, "tons"),
  13481. name: "Front",
  13482. image: {
  13483. source: "./media/characters/sekvra/front.svg",
  13484. extra: 1193/1190,
  13485. bottom: 78/1271
  13486. }
  13487. },
  13488. side: {
  13489. height: math.unit(1450, "feet"),
  13490. weight: math.unit(1.21e6, "tons"),
  13491. name: "Side",
  13492. image: {
  13493. source: "./media/characters/sekvra/side.svg",
  13494. extra: 1193/1190,
  13495. bottom: 52/1245
  13496. }
  13497. },
  13498. back: {
  13499. height: math.unit(1450, "feet"),
  13500. weight: math.unit(1.21e6, "tons"),
  13501. name: "Back",
  13502. image: {
  13503. source: "./media/characters/sekvra/back.svg",
  13504. extra: 1219/1216,
  13505. bottom: 21/1240
  13506. }
  13507. },
  13508. frontClothed: {
  13509. height: math.unit(1450, "feet"),
  13510. weight: math.unit(1.21e6, "tons"),
  13511. name: "Front (Clothed)",
  13512. image: {
  13513. source: "./media/characters/sekvra/front-clothed.svg",
  13514. extra: 1192/1189,
  13515. bottom: 79/1271
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Macro",
  13522. height: math.unit(1450, "feet"),
  13523. default: true
  13524. },
  13525. {
  13526. name: "Megamacro",
  13527. height: math.unit(15000, "feet")
  13528. },
  13529. ]
  13530. ))
  13531. characterMakers.push(() => makeCharacter(
  13532. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13533. {
  13534. front: {
  13535. height: math.unit(6, "feet"),
  13536. weight: math.unit(150, "lb"),
  13537. name: "Front",
  13538. image: {
  13539. source: "./media/characters/carmine/front.svg",
  13540. extra: 1,
  13541. bottom: 0.035
  13542. }
  13543. },
  13544. frontArmor: {
  13545. height: math.unit(6, "feet"),
  13546. weight: math.unit(150, "lb"),
  13547. name: "Front (Armor)",
  13548. image: {
  13549. source: "./media/characters/carmine/front-armor.svg",
  13550. extra: 1,
  13551. bottom: 0.035
  13552. }
  13553. },
  13554. },
  13555. [
  13556. {
  13557. name: "Large",
  13558. height: math.unit(1, "mile")
  13559. },
  13560. {
  13561. name: "Huge",
  13562. height: math.unit(40, "miles"),
  13563. default: true
  13564. },
  13565. {
  13566. name: "Colossal",
  13567. height: math.unit(2500, "miles")
  13568. },
  13569. ]
  13570. ))
  13571. characterMakers.push(() => makeCharacter(
  13572. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13573. {
  13574. front: {
  13575. height: math.unit(6, "feet"),
  13576. weight: math.unit(150, "lb"),
  13577. name: "Front",
  13578. image: {
  13579. source: "./media/characters/elyssia/front.svg",
  13580. extra: 2201 / 2035,
  13581. bottom: 0.05
  13582. }
  13583. },
  13584. frontClothed: {
  13585. height: math.unit(6, "feet"),
  13586. weight: math.unit(150, "lb"),
  13587. name: "Front (Clothed)",
  13588. image: {
  13589. source: "./media/characters/elyssia/front-clothed.svg",
  13590. extra: 2201 / 2035,
  13591. bottom: 0.05
  13592. }
  13593. },
  13594. back: {
  13595. height: math.unit(6, "feet"),
  13596. weight: math.unit(150, "lb"),
  13597. name: "Back",
  13598. image: {
  13599. source: "./media/characters/elyssia/back.svg",
  13600. extra: 2201 / 2035,
  13601. bottom: 0.013
  13602. }
  13603. },
  13604. },
  13605. [
  13606. {
  13607. name: "Smaller",
  13608. height: math.unit(150, "feet")
  13609. },
  13610. {
  13611. name: "Standard",
  13612. height: math.unit(1400, "feet"),
  13613. default: true
  13614. },
  13615. {
  13616. name: "Distracted",
  13617. height: math.unit(15000, "feet")
  13618. },
  13619. ]
  13620. ))
  13621. characterMakers.push(() => makeCharacter(
  13622. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13623. {
  13624. front: {
  13625. height: math.unit(7 + 4/12, "feet"),
  13626. weight: math.unit(690, "lb"),
  13627. name: "Front",
  13628. image: {
  13629. source: "./media/characters/geno-maxwell/front.svg",
  13630. extra: 984/856,
  13631. bottom: 87/1071
  13632. }
  13633. },
  13634. back: {
  13635. height: math.unit(7 + 4/12, "feet"),
  13636. weight: math.unit(690, "lb"),
  13637. name: "Back",
  13638. image: {
  13639. source: "./media/characters/geno-maxwell/back.svg",
  13640. extra: 981/854,
  13641. bottom: 57/1038
  13642. }
  13643. },
  13644. frontCostume: {
  13645. height: math.unit(7 + 4/12, "feet"),
  13646. weight: math.unit(690, "lb"),
  13647. name: "Front (Costume)",
  13648. image: {
  13649. source: "./media/characters/geno-maxwell/front-costume.svg",
  13650. extra: 984/856,
  13651. bottom: 87/1071
  13652. }
  13653. },
  13654. backcostume: {
  13655. height: math.unit(7 + 4/12, "feet"),
  13656. weight: math.unit(690, "lb"),
  13657. name: "Back (Costume)",
  13658. image: {
  13659. source: "./media/characters/geno-maxwell/back-costume.svg",
  13660. extra: 981/854,
  13661. bottom: 57/1038
  13662. }
  13663. },
  13664. },
  13665. [
  13666. {
  13667. name: "Micro",
  13668. height: math.unit(3, "inches")
  13669. },
  13670. {
  13671. name: "Normal",
  13672. height: math.unit(7 + 4 / 12, "feet"),
  13673. default: true
  13674. },
  13675. {
  13676. name: "Macro",
  13677. height: math.unit(220, "feet")
  13678. },
  13679. {
  13680. name: "Megamacro",
  13681. height: math.unit(11, "miles")
  13682. },
  13683. ]
  13684. ))
  13685. characterMakers.push(() => makeCharacter(
  13686. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13687. {
  13688. front: {
  13689. height: math.unit(7 + 4/12, "feet"),
  13690. weight: math.unit(750, "lb"),
  13691. name: "Front",
  13692. image: {
  13693. source: "./media/characters/regena-maxwell/front.svg",
  13694. extra: 984/856,
  13695. bottom: 87/1071
  13696. }
  13697. },
  13698. back: {
  13699. height: math.unit(7 + 4/12, "feet"),
  13700. weight: math.unit(750, "lb"),
  13701. name: "Back",
  13702. image: {
  13703. source: "./media/characters/regena-maxwell/back.svg",
  13704. extra: 981/854,
  13705. bottom: 57/1038
  13706. }
  13707. },
  13708. frontCostume: {
  13709. height: math.unit(7 + 4/12, "feet"),
  13710. weight: math.unit(750, "lb"),
  13711. name: "Front (Costume)",
  13712. image: {
  13713. source: "./media/characters/regena-maxwell/front-costume.svg",
  13714. extra: 984/856,
  13715. bottom: 87/1071
  13716. }
  13717. },
  13718. backcostume: {
  13719. height: math.unit(7 + 4/12, "feet"),
  13720. weight: math.unit(750, "lb"),
  13721. name: "Back (Costume)",
  13722. image: {
  13723. source: "./media/characters/regena-maxwell/back-costume.svg",
  13724. extra: 981/854,
  13725. bottom: 57/1038
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Normal",
  13732. height: math.unit(7 + 4 / 12, "feet"),
  13733. default: true
  13734. },
  13735. {
  13736. name: "Macro",
  13737. height: math.unit(220, "feet")
  13738. },
  13739. {
  13740. name: "Megamacro",
  13741. height: math.unit(11, "miles")
  13742. },
  13743. ]
  13744. ))
  13745. characterMakers.push(() => makeCharacter(
  13746. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13747. {
  13748. front: {
  13749. height: math.unit(6, "feet"),
  13750. weight: math.unit(150, "lb"),
  13751. name: "Front",
  13752. image: {
  13753. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13754. extra: 860 / 690,
  13755. bottom: 0.03
  13756. }
  13757. },
  13758. },
  13759. [
  13760. {
  13761. name: "Normal",
  13762. height: math.unit(1.7, "meters"),
  13763. default: true
  13764. },
  13765. ]
  13766. ))
  13767. characterMakers.push(() => makeCharacter(
  13768. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13769. {
  13770. front: {
  13771. height: math.unit(6, "feet"),
  13772. weight: math.unit(150, "lb"),
  13773. name: "Front",
  13774. image: {
  13775. source: "./media/characters/quilly/front.svg",
  13776. extra: 890 / 776
  13777. }
  13778. },
  13779. },
  13780. [
  13781. {
  13782. name: "Gigamacro",
  13783. height: math.unit(404090, "miles"),
  13784. default: true
  13785. },
  13786. ]
  13787. ))
  13788. characterMakers.push(() => makeCharacter(
  13789. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13790. {
  13791. front: {
  13792. height: math.unit(7 + 8 / 12, "feet"),
  13793. weight: math.unit(350, "lb"),
  13794. name: "Front",
  13795. image: {
  13796. source: "./media/characters/tempest/front.svg",
  13797. extra: 1175 / 1086,
  13798. bottom: 0.02
  13799. }
  13800. },
  13801. },
  13802. [
  13803. {
  13804. name: "Normal",
  13805. height: math.unit(7 + 8 / 12, "feet"),
  13806. default: true
  13807. },
  13808. ]
  13809. ))
  13810. characterMakers.push(() => makeCharacter(
  13811. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13812. {
  13813. side: {
  13814. height: math.unit(4 + 5 / 12, "feet"),
  13815. weight: math.unit(80, "lb"),
  13816. name: "Side",
  13817. image: {
  13818. source: "./media/characters/rodger/side.svg",
  13819. extra: 1235 / 1118
  13820. }
  13821. },
  13822. },
  13823. [
  13824. {
  13825. name: "Micro",
  13826. height: math.unit(1, "inch")
  13827. },
  13828. {
  13829. name: "Normal",
  13830. height: math.unit(4 + 5 / 12, "feet"),
  13831. default: true
  13832. },
  13833. {
  13834. name: "Macro",
  13835. height: math.unit(120, "feet")
  13836. },
  13837. ]
  13838. ))
  13839. characterMakers.push(() => makeCharacter(
  13840. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13841. {
  13842. front: {
  13843. height: math.unit(6, "feet"),
  13844. weight: math.unit(150, "lb"),
  13845. name: "Front",
  13846. image: {
  13847. source: "./media/characters/danyel/front.svg",
  13848. extra: 1185 / 1123,
  13849. bottom: 0.05
  13850. }
  13851. },
  13852. },
  13853. [
  13854. {
  13855. name: "Shrunken",
  13856. height: math.unit(0.5, "mm")
  13857. },
  13858. {
  13859. name: "Micro",
  13860. height: math.unit(1, "mm"),
  13861. default: true
  13862. },
  13863. {
  13864. name: "Upsized",
  13865. height: math.unit(5 + 5 / 12, "feet")
  13866. },
  13867. ]
  13868. ))
  13869. characterMakers.push(() => makeCharacter(
  13870. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13871. {
  13872. front: {
  13873. height: math.unit(5 + 6 / 12, "feet"),
  13874. weight: math.unit(200, "lb"),
  13875. name: "Front",
  13876. image: {
  13877. source: "./media/characters/vivian-bijoux/front.svg",
  13878. extra: 1217/1209,
  13879. bottom: 76/1293
  13880. }
  13881. },
  13882. back: {
  13883. height: math.unit(5 + 6 / 12, "feet"),
  13884. weight: math.unit(200, "lb"),
  13885. name: "Back",
  13886. image: {
  13887. source: "./media/characters/vivian-bijoux/back.svg",
  13888. extra: 1214/1208,
  13889. bottom: 51/1265
  13890. }
  13891. },
  13892. dressed: {
  13893. height: math.unit(5 + 6 / 12, "feet"),
  13894. weight: math.unit(200, "lb"),
  13895. name: "Dressed",
  13896. image: {
  13897. source: "./media/characters/vivian-bijoux/dressed.svg",
  13898. extra: 1217/1209,
  13899. bottom: 76/1293
  13900. }
  13901. },
  13902. },
  13903. [
  13904. {
  13905. name: "Normal",
  13906. height: math.unit(5 + 6 / 12, "feet"),
  13907. default: true
  13908. },
  13909. {
  13910. name: "Bad Dream",
  13911. height: math.unit(500, "feet")
  13912. },
  13913. {
  13914. name: "Nightmare",
  13915. height: math.unit(500, "miles")
  13916. },
  13917. ]
  13918. ))
  13919. characterMakers.push(() => makeCharacter(
  13920. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13921. {
  13922. front: {
  13923. height: math.unit(6 + 1 / 12, "feet"),
  13924. weight: math.unit(260, "lb"),
  13925. name: "Front",
  13926. image: {
  13927. source: "./media/characters/zeta/front.svg",
  13928. extra: 1968 / 1889,
  13929. bottom: 0.06
  13930. }
  13931. },
  13932. back: {
  13933. height: math.unit(6 + 1 / 12, "feet"),
  13934. weight: math.unit(260, "lb"),
  13935. name: "Back",
  13936. image: {
  13937. source: "./media/characters/zeta/back.svg",
  13938. extra: 1944 / 1858,
  13939. bottom: 0.03
  13940. }
  13941. },
  13942. hand: {
  13943. height: math.unit(1.112, "feet"),
  13944. name: "Hand",
  13945. image: {
  13946. source: "./media/characters/zeta/hand.svg"
  13947. }
  13948. },
  13949. foot: {
  13950. height: math.unit(1.48, "feet"),
  13951. name: "Foot",
  13952. image: {
  13953. source: "./media/characters/zeta/foot.svg"
  13954. }
  13955. },
  13956. },
  13957. [
  13958. {
  13959. name: "Micro",
  13960. height: math.unit(6, "inches")
  13961. },
  13962. {
  13963. name: "Normal",
  13964. height: math.unit(6 + 1 / 12, "feet"),
  13965. default: true
  13966. },
  13967. {
  13968. name: "Macro",
  13969. height: math.unit(20, "feet")
  13970. },
  13971. ]
  13972. ))
  13973. characterMakers.push(() => makeCharacter(
  13974. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13975. {
  13976. front: {
  13977. height: math.unit(6, "feet"),
  13978. weight: math.unit(150, "lb"),
  13979. name: "Front",
  13980. image: {
  13981. source: "./media/characters/jamie-larsen/front.svg",
  13982. extra: 962 / 933,
  13983. bottom: 0.02
  13984. }
  13985. },
  13986. back: {
  13987. height: math.unit(6, "feet"),
  13988. weight: math.unit(150, "lb"),
  13989. name: "Back",
  13990. image: {
  13991. source: "./media/characters/jamie-larsen/back.svg",
  13992. extra: 997 / 946
  13993. }
  13994. },
  13995. },
  13996. [
  13997. {
  13998. name: "Macro",
  13999. height: math.unit(28 + 7 / 12, "feet"),
  14000. default: true
  14001. },
  14002. {
  14003. name: "Macro+",
  14004. height: math.unit(180, "feet")
  14005. },
  14006. {
  14007. name: "Megamacro",
  14008. height: math.unit(10, "miles")
  14009. },
  14010. {
  14011. name: "Gigamacro",
  14012. height: math.unit(200000, "miles")
  14013. },
  14014. ]
  14015. ))
  14016. characterMakers.push(() => makeCharacter(
  14017. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14018. {
  14019. front: {
  14020. height: math.unit(6, "feet"),
  14021. weight: math.unit(120, "lb"),
  14022. name: "Front",
  14023. image: {
  14024. source: "./media/characters/vance/front.svg",
  14025. extra: 1980 / 1890,
  14026. bottom: 0.09
  14027. }
  14028. },
  14029. back: {
  14030. height: math.unit(6, "feet"),
  14031. weight: math.unit(120, "lb"),
  14032. name: "Back",
  14033. image: {
  14034. source: "./media/characters/vance/back.svg",
  14035. extra: 2081 / 1994,
  14036. bottom: 0.014
  14037. }
  14038. },
  14039. hand: {
  14040. height: math.unit(0.88, "feet"),
  14041. name: "Hand",
  14042. image: {
  14043. source: "./media/characters/vance/hand.svg"
  14044. }
  14045. },
  14046. foot: {
  14047. height: math.unit(0.64, "feet"),
  14048. name: "Foot",
  14049. image: {
  14050. source: "./media/characters/vance/foot.svg"
  14051. }
  14052. },
  14053. },
  14054. [
  14055. {
  14056. name: "Small",
  14057. height: math.unit(90, "feet"),
  14058. default: true
  14059. },
  14060. {
  14061. name: "Macro",
  14062. height: math.unit(100, "meters")
  14063. },
  14064. {
  14065. name: "Megamacro",
  14066. height: math.unit(15, "miles")
  14067. },
  14068. ]
  14069. ))
  14070. characterMakers.push(() => makeCharacter(
  14071. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14072. {
  14073. front: {
  14074. height: math.unit(6, "feet"),
  14075. weight: math.unit(180, "lb"),
  14076. name: "Front",
  14077. image: {
  14078. source: "./media/characters/xochitl/front.svg",
  14079. extra: 2297 / 2261,
  14080. bottom: 0.065
  14081. }
  14082. },
  14083. back: {
  14084. height: math.unit(6, "feet"),
  14085. weight: math.unit(180, "lb"),
  14086. name: "Back",
  14087. image: {
  14088. source: "./media/characters/xochitl/back.svg",
  14089. extra: 2386 / 2354,
  14090. bottom: 0.01
  14091. }
  14092. },
  14093. foot: {
  14094. height: math.unit(6 / 5 * 1.15, "feet"),
  14095. weight: math.unit(150, "lb"),
  14096. name: "Foot",
  14097. image: {
  14098. source: "./media/characters/xochitl/foot.svg"
  14099. }
  14100. },
  14101. },
  14102. [
  14103. {
  14104. name: "Macro",
  14105. height: math.unit(80, "feet")
  14106. },
  14107. {
  14108. name: "Macro+",
  14109. height: math.unit(400, "feet"),
  14110. default: true
  14111. },
  14112. {
  14113. name: "Gigamacro",
  14114. height: math.unit(80000, "miles")
  14115. },
  14116. {
  14117. name: "Gigamacro+",
  14118. height: math.unit(400000, "miles")
  14119. },
  14120. {
  14121. name: "Teramacro",
  14122. height: math.unit(300, "AU")
  14123. },
  14124. ]
  14125. ))
  14126. characterMakers.push(() => makeCharacter(
  14127. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14128. {
  14129. front: {
  14130. height: math.unit(6, "feet"),
  14131. weight: math.unit(150, "lb"),
  14132. name: "Front",
  14133. image: {
  14134. source: "./media/characters/vincent/front.svg",
  14135. extra: 1130 / 1080,
  14136. bottom: 0.055
  14137. }
  14138. },
  14139. beak: {
  14140. height: math.unit(6 * 0.1, "feet"),
  14141. name: "Beak",
  14142. image: {
  14143. source: "./media/characters/vincent/beak.svg"
  14144. }
  14145. },
  14146. hand: {
  14147. height: math.unit(6 * 0.85, "feet"),
  14148. weight: math.unit(150, "lb"),
  14149. name: "Hand",
  14150. image: {
  14151. source: "./media/characters/vincent/hand.svg"
  14152. }
  14153. },
  14154. foot: {
  14155. height: math.unit(6 * 0.19, "feet"),
  14156. weight: math.unit(150, "lb"),
  14157. name: "Foot",
  14158. image: {
  14159. source: "./media/characters/vincent/foot.svg"
  14160. }
  14161. },
  14162. },
  14163. [
  14164. {
  14165. name: "Base",
  14166. height: math.unit(6 + 5 / 12, "feet"),
  14167. default: true
  14168. },
  14169. {
  14170. name: "Macro",
  14171. height: math.unit(300, "feet")
  14172. },
  14173. {
  14174. name: "Megamacro",
  14175. height: math.unit(2, "miles")
  14176. },
  14177. {
  14178. name: "Gigamacro",
  14179. height: math.unit(1000, "miles")
  14180. },
  14181. ]
  14182. ))
  14183. characterMakers.push(() => makeCharacter(
  14184. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14185. {
  14186. front: {
  14187. height: math.unit(2, "meters"),
  14188. weight: math.unit(500, "kg"),
  14189. name: "Front",
  14190. image: {
  14191. source: "./media/characters/coatl/front.svg",
  14192. extra: 3948 / 3500,
  14193. bottom: 0.082
  14194. }
  14195. },
  14196. },
  14197. [
  14198. {
  14199. name: "Normal",
  14200. height: math.unit(4, "meters")
  14201. },
  14202. {
  14203. name: "Macro",
  14204. height: math.unit(100, "meters"),
  14205. default: true
  14206. },
  14207. {
  14208. name: "Macro+",
  14209. height: math.unit(300, "meters")
  14210. },
  14211. {
  14212. name: "Megamacro",
  14213. height: math.unit(3, "gigameters")
  14214. },
  14215. {
  14216. name: "Megamacro+",
  14217. height: math.unit(300, "terameters")
  14218. },
  14219. {
  14220. name: "Megamacro++",
  14221. height: math.unit(3, "lightyears")
  14222. },
  14223. ]
  14224. ))
  14225. characterMakers.push(() => makeCharacter(
  14226. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14227. {
  14228. front: {
  14229. height: math.unit(6, "feet"),
  14230. weight: math.unit(50, "kg"),
  14231. name: "front",
  14232. image: {
  14233. source: "./media/characters/shiroryu/front.svg",
  14234. extra: 1990 / 1935
  14235. }
  14236. },
  14237. },
  14238. [
  14239. {
  14240. name: "Mortal Mingling",
  14241. height: math.unit(3, "meters")
  14242. },
  14243. {
  14244. name: "Kaiju-ish",
  14245. height: math.unit(250, "meters")
  14246. },
  14247. {
  14248. name: "Somewhat Godly",
  14249. height: math.unit(400, "km"),
  14250. default: true
  14251. },
  14252. {
  14253. name: "Planetary",
  14254. height: math.unit(300, "megameters")
  14255. },
  14256. {
  14257. name: "Galaxy-dwarfing",
  14258. height: math.unit(450, "kiloparsecs")
  14259. },
  14260. {
  14261. name: "Universe Eater",
  14262. height: math.unit(150, "gigaparsecs")
  14263. },
  14264. {
  14265. name: "Almost Immeasurable",
  14266. height: math.unit(1.3e266, "yottaparsecs")
  14267. },
  14268. ]
  14269. ))
  14270. characterMakers.push(() => makeCharacter(
  14271. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14272. {
  14273. front: {
  14274. height: math.unit(6, "feet"),
  14275. weight: math.unit(150, "lb"),
  14276. name: "Front",
  14277. image: {
  14278. source: "./media/characters/umeko/front.svg",
  14279. extra: 1,
  14280. bottom: 0.019
  14281. }
  14282. },
  14283. frontArmored: {
  14284. height: math.unit(6, "feet"),
  14285. weight: math.unit(150, "lb"),
  14286. name: "Front (Armored)",
  14287. image: {
  14288. source: "./media/characters/umeko/front-armored.svg",
  14289. extra: 1,
  14290. bottom: 0.021
  14291. }
  14292. },
  14293. },
  14294. [
  14295. {
  14296. name: "Macro",
  14297. height: math.unit(220, "feet"),
  14298. default: true
  14299. },
  14300. {
  14301. name: "Guardian Dragon",
  14302. height: math.unit(50, "miles")
  14303. },
  14304. {
  14305. name: "Cosmic",
  14306. height: math.unit(800000, "miles")
  14307. },
  14308. ]
  14309. ))
  14310. characterMakers.push(() => makeCharacter(
  14311. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14312. {
  14313. front: {
  14314. height: math.unit(6, "feet"),
  14315. weight: math.unit(150, "lb"),
  14316. name: "Front",
  14317. image: {
  14318. source: "./media/characters/cassidy/front.svg",
  14319. extra: 810/808,
  14320. bottom: 41/851
  14321. }
  14322. },
  14323. },
  14324. [
  14325. {
  14326. name: "Canon Height",
  14327. height: math.unit(120, "feet"),
  14328. default: true
  14329. },
  14330. {
  14331. name: "Macro+",
  14332. height: math.unit(400, "feet")
  14333. },
  14334. {
  14335. name: "Macro++",
  14336. height: math.unit(4000, "feet")
  14337. },
  14338. {
  14339. name: "Megamacro",
  14340. height: math.unit(3, "miles")
  14341. },
  14342. ]
  14343. ))
  14344. characterMakers.push(() => makeCharacter(
  14345. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14346. {
  14347. front: {
  14348. height: math.unit(6, "feet"),
  14349. weight: math.unit(150, "lb"),
  14350. name: "Front",
  14351. image: {
  14352. source: "./media/characters/isaac/front.svg",
  14353. extra: 896 / 815,
  14354. bottom: 0.11
  14355. }
  14356. },
  14357. },
  14358. [
  14359. {
  14360. name: "Human Size",
  14361. height: math.unit(8, "feet"),
  14362. default: true
  14363. },
  14364. {
  14365. name: "Macro",
  14366. height: math.unit(400, "feet")
  14367. },
  14368. {
  14369. name: "Megamacro",
  14370. height: math.unit(50, "miles")
  14371. },
  14372. {
  14373. name: "Canon Height",
  14374. height: math.unit(200, "AU")
  14375. },
  14376. ]
  14377. ))
  14378. characterMakers.push(() => makeCharacter(
  14379. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14380. {
  14381. front: {
  14382. height: math.unit(6, "feet"),
  14383. weight: math.unit(72, "kg"),
  14384. name: "Front",
  14385. image: {
  14386. source: "./media/characters/sleekit/front.svg",
  14387. extra: 4693 / 4487,
  14388. bottom: 0.012
  14389. }
  14390. },
  14391. },
  14392. [
  14393. {
  14394. name: "Minimum Height",
  14395. height: math.unit(10, "meters")
  14396. },
  14397. {
  14398. name: "Smaller",
  14399. height: math.unit(25, "meters")
  14400. },
  14401. {
  14402. name: "Larger",
  14403. height: math.unit(38, "meters"),
  14404. default: true
  14405. },
  14406. {
  14407. name: "Maximum height",
  14408. height: math.unit(100, "meters")
  14409. },
  14410. ]
  14411. ))
  14412. characterMakers.push(() => makeCharacter(
  14413. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14414. {
  14415. front: {
  14416. height: math.unit(6, "feet"),
  14417. weight: math.unit(150, "lb"),
  14418. name: "Front",
  14419. image: {
  14420. source: "./media/characters/nillia/front.svg",
  14421. extra: 2195 / 2037,
  14422. bottom: 0.005
  14423. }
  14424. },
  14425. back: {
  14426. height: math.unit(6, "feet"),
  14427. weight: math.unit(150, "lb"),
  14428. name: "Back",
  14429. image: {
  14430. source: "./media/characters/nillia/back.svg",
  14431. extra: 2195 / 2037,
  14432. bottom: 0.005
  14433. }
  14434. },
  14435. },
  14436. [
  14437. {
  14438. name: "Canon Height",
  14439. height: math.unit(489, "feet"),
  14440. default: true
  14441. }
  14442. ]
  14443. ))
  14444. characterMakers.push(() => makeCharacter(
  14445. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14446. {
  14447. front: {
  14448. height: math.unit(6, "feet"),
  14449. weight: math.unit(150, "lb"),
  14450. name: "Front",
  14451. image: {
  14452. source: "./media/characters/mesmyriza/front.svg",
  14453. extra: 2067 / 1784,
  14454. bottom: 0.035
  14455. }
  14456. },
  14457. foot: {
  14458. height: math.unit(6 / (250 / 35), "feet"),
  14459. name: "Foot",
  14460. image: {
  14461. source: "./media/characters/mesmyriza/foot.svg"
  14462. }
  14463. },
  14464. },
  14465. [
  14466. {
  14467. name: "Macro",
  14468. height: math.unit(457, "meters"),
  14469. default: true
  14470. },
  14471. {
  14472. name: "Megamacro",
  14473. height: math.unit(8, "megameters")
  14474. },
  14475. ]
  14476. ))
  14477. characterMakers.push(() => makeCharacter(
  14478. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14479. {
  14480. front: {
  14481. height: math.unit(6, "feet"),
  14482. weight: math.unit(250, "lb"),
  14483. name: "Front",
  14484. image: {
  14485. source: "./media/characters/saudade/front.svg",
  14486. extra: 1172 / 1139,
  14487. bottom: 0.035
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Micro",
  14494. height: math.unit(3, "inches")
  14495. },
  14496. {
  14497. name: "Normal",
  14498. height: math.unit(6, "feet"),
  14499. default: true
  14500. },
  14501. {
  14502. name: "Macro",
  14503. height: math.unit(50, "feet")
  14504. },
  14505. {
  14506. name: "Megamacro",
  14507. height: math.unit(2800, "feet")
  14508. },
  14509. ]
  14510. ))
  14511. characterMakers.push(() => makeCharacter(
  14512. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14513. {
  14514. front: {
  14515. height: math.unit(5 + 4 / 12, "feet"),
  14516. weight: math.unit(100, "lb"),
  14517. name: "Front",
  14518. image: {
  14519. source: "./media/characters/keireer/front.svg",
  14520. extra: 716 / 666,
  14521. bottom: 0.05
  14522. }
  14523. },
  14524. },
  14525. [
  14526. {
  14527. name: "Normal",
  14528. height: math.unit(5 + 4 / 12, "feet"),
  14529. default: true
  14530. },
  14531. ]
  14532. ))
  14533. characterMakers.push(() => makeCharacter(
  14534. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14535. {
  14536. front: {
  14537. height: math.unit(6, "feet"),
  14538. weight: math.unit(90, "kg"),
  14539. name: "Front",
  14540. image: {
  14541. source: "./media/characters/mirja/front.svg",
  14542. extra: 1789 / 1683,
  14543. bottom: 0.05
  14544. }
  14545. },
  14546. frontDressed: {
  14547. height: math.unit(6, "feet"),
  14548. weight: math.unit(90, "lb"),
  14549. name: "Front (Dressed)",
  14550. image: {
  14551. source: "./media/characters/mirja/front-dressed.svg",
  14552. extra: 1789 / 1683,
  14553. bottom: 0.05
  14554. }
  14555. },
  14556. back: {
  14557. height: math.unit(6, "feet"),
  14558. weight: math.unit(90, "lb"),
  14559. name: "Back",
  14560. image: {
  14561. source: "./media/characters/mirja/back.svg",
  14562. extra: 953 / 917,
  14563. bottom: 0.017
  14564. }
  14565. },
  14566. },
  14567. [
  14568. {
  14569. name: "\"Incognito\"",
  14570. height: math.unit(3, "meters")
  14571. },
  14572. {
  14573. name: "Strolling Size",
  14574. height: math.unit(15, "km")
  14575. },
  14576. {
  14577. name: "Larger Strolling Size",
  14578. height: math.unit(400, "km")
  14579. },
  14580. {
  14581. name: "Preferred Size",
  14582. height: math.unit(5000, "km")
  14583. },
  14584. {
  14585. name: "True Size",
  14586. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14587. default: true
  14588. },
  14589. ]
  14590. ))
  14591. characterMakers.push(() => makeCharacter(
  14592. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14593. {
  14594. front: {
  14595. height: math.unit(15, "feet"),
  14596. weight: math.unit(880, "kg"),
  14597. name: "Front",
  14598. image: {
  14599. source: "./media/characters/nightraver/front.svg",
  14600. extra: 2444 / 2160,
  14601. bottom: 0.027
  14602. }
  14603. },
  14604. back: {
  14605. height: math.unit(15, "feet"),
  14606. weight: math.unit(880, "kg"),
  14607. name: "Back",
  14608. image: {
  14609. source: "./media/characters/nightraver/back.svg",
  14610. extra: 2309 / 2180,
  14611. bottom: 0.005
  14612. }
  14613. },
  14614. sole: {
  14615. height: math.unit(2.878, "feet"),
  14616. name: "Sole",
  14617. image: {
  14618. source: "./media/characters/nightraver/sole.svg"
  14619. }
  14620. },
  14621. foot: {
  14622. height: math.unit(2.285, "feet"),
  14623. name: "Foot",
  14624. image: {
  14625. source: "./media/characters/nightraver/foot.svg"
  14626. }
  14627. },
  14628. maw: {
  14629. height: math.unit(2.67, "feet"),
  14630. name: "Maw",
  14631. image: {
  14632. source: "./media/characters/nightraver/maw.svg"
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Micro",
  14639. height: math.unit(1, "cm")
  14640. },
  14641. {
  14642. name: "Normal",
  14643. height: math.unit(15, "feet"),
  14644. default: true
  14645. },
  14646. {
  14647. name: "Macro",
  14648. height: math.unit(300, "feet")
  14649. },
  14650. {
  14651. name: "Megamacro",
  14652. height: math.unit(300, "miles")
  14653. },
  14654. {
  14655. name: "Gigamacro",
  14656. height: math.unit(10000, "miles")
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14662. {
  14663. side: {
  14664. height: math.unit(2, "inches"),
  14665. weight: math.unit(5, "grams"),
  14666. name: "Side",
  14667. image: {
  14668. source: "./media/characters/arc/side.svg"
  14669. }
  14670. },
  14671. },
  14672. [
  14673. {
  14674. name: "Micro",
  14675. height: math.unit(2, "inches"),
  14676. default: true
  14677. },
  14678. ]
  14679. ))
  14680. characterMakers.push(() => makeCharacter(
  14681. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14682. {
  14683. front: {
  14684. height: math.unit(1.1938, "meters"),
  14685. weight: math.unit(54, "kg"),
  14686. name: "Front",
  14687. image: {
  14688. source: "./media/characters/nebula-shahar/front.svg",
  14689. extra: 1642 / 1436,
  14690. bottom: 0.06
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Megamicro",
  14697. height: math.unit(0.3, "mm")
  14698. },
  14699. {
  14700. name: "Micro",
  14701. height: math.unit(3, "cm")
  14702. },
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(138, "cm"),
  14706. default: true
  14707. },
  14708. {
  14709. name: "Macro",
  14710. height: math.unit(30, "m")
  14711. },
  14712. ]
  14713. ))
  14714. characterMakers.push(() => makeCharacter(
  14715. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14716. {
  14717. front: {
  14718. height: math.unit(5.24, "feet"),
  14719. weight: math.unit(150, "lb"),
  14720. name: "Front",
  14721. image: {
  14722. source: "./media/characters/shayla/front.svg",
  14723. extra: 1512 / 1414,
  14724. bottom: 0.01
  14725. }
  14726. },
  14727. back: {
  14728. height: math.unit(5.24, "feet"),
  14729. weight: math.unit(150, "lb"),
  14730. name: "Back",
  14731. image: {
  14732. source: "./media/characters/shayla/back.svg",
  14733. extra: 1512 / 1414
  14734. }
  14735. },
  14736. hand: {
  14737. height: math.unit(0.7781496062992126, "feet"),
  14738. name: "Hand",
  14739. image: {
  14740. source: "./media/characters/shayla/hand.svg"
  14741. }
  14742. },
  14743. foot: {
  14744. height: math.unit(1.4206036745406823, "feet"),
  14745. name: "Foot",
  14746. image: {
  14747. source: "./media/characters/shayla/foot.svg"
  14748. }
  14749. },
  14750. },
  14751. [
  14752. {
  14753. name: "Micro",
  14754. height: math.unit(0.32, "feet")
  14755. },
  14756. {
  14757. name: "Normal",
  14758. height: math.unit(5.24, "feet"),
  14759. default: true
  14760. },
  14761. {
  14762. name: "Macro",
  14763. height: math.unit(492.12, "feet")
  14764. },
  14765. {
  14766. name: "Megamacro",
  14767. height: math.unit(186.41, "miles")
  14768. },
  14769. ]
  14770. ))
  14771. characterMakers.push(() => makeCharacter(
  14772. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14773. {
  14774. front: {
  14775. height: math.unit(2.2, "m"),
  14776. weight: math.unit(120, "kg"),
  14777. name: "Front",
  14778. image: {
  14779. source: "./media/characters/pia-jr/front.svg",
  14780. extra: 1000 / 970,
  14781. bottom: 0.035
  14782. }
  14783. },
  14784. hand: {
  14785. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14786. name: "Hand",
  14787. image: {
  14788. source: "./media/characters/pia-jr/hand.svg"
  14789. }
  14790. },
  14791. paw: {
  14792. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14793. name: "Paw",
  14794. image: {
  14795. source: "./media/characters/pia-jr/paw.svg"
  14796. }
  14797. },
  14798. },
  14799. [
  14800. {
  14801. name: "Micro",
  14802. height: math.unit(1.2, "cm")
  14803. },
  14804. {
  14805. name: "Normal",
  14806. height: math.unit(2.2, "m"),
  14807. default: true
  14808. },
  14809. {
  14810. name: "Macro",
  14811. height: math.unit(180, "m")
  14812. },
  14813. {
  14814. name: "Megamacro",
  14815. height: math.unit(420, "km")
  14816. },
  14817. ]
  14818. ))
  14819. characterMakers.push(() => makeCharacter(
  14820. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14821. {
  14822. front: {
  14823. height: math.unit(2, "m"),
  14824. weight: math.unit(115, "kg"),
  14825. name: "Front",
  14826. image: {
  14827. source: "./media/characters/pia-sr/front.svg",
  14828. extra: 760 / 730,
  14829. bottom: 0.015
  14830. }
  14831. },
  14832. back: {
  14833. height: math.unit(2, "m"),
  14834. weight: math.unit(115, "kg"),
  14835. name: "Back",
  14836. image: {
  14837. source: "./media/characters/pia-sr/back.svg",
  14838. extra: 760 / 730,
  14839. bottom: 0.01
  14840. }
  14841. },
  14842. hand: {
  14843. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14844. name: "Hand",
  14845. image: {
  14846. source: "./media/characters/pia-sr/hand.svg"
  14847. }
  14848. },
  14849. foot: {
  14850. height: math.unit(1.83, "feet"),
  14851. name: "Foot",
  14852. image: {
  14853. source: "./media/characters/pia-sr/foot.svg"
  14854. }
  14855. },
  14856. },
  14857. [
  14858. {
  14859. name: "Micro",
  14860. height: math.unit(88, "mm")
  14861. },
  14862. {
  14863. name: "Normal",
  14864. height: math.unit(2, "m"),
  14865. default: true
  14866. },
  14867. {
  14868. name: "Macro",
  14869. height: math.unit(200, "m")
  14870. },
  14871. {
  14872. name: "Megamacro",
  14873. height: math.unit(420, "km")
  14874. },
  14875. ]
  14876. ))
  14877. characterMakers.push(() => makeCharacter(
  14878. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14879. {
  14880. front: {
  14881. height: math.unit(8 + 2 / 12, "feet"),
  14882. weight: math.unit(300, "lb"),
  14883. name: "Front",
  14884. image: {
  14885. source: "./media/characters/kibibyte/front.svg",
  14886. extra: 2221 / 2098,
  14887. bottom: 0.04
  14888. }
  14889. },
  14890. },
  14891. [
  14892. {
  14893. name: "Normal",
  14894. height: math.unit(8 + 2 / 12, "feet"),
  14895. default: true
  14896. },
  14897. {
  14898. name: "Socialable Macro",
  14899. height: math.unit(50, "feet")
  14900. },
  14901. {
  14902. name: "Macro",
  14903. height: math.unit(300, "feet")
  14904. },
  14905. {
  14906. name: "Megamacro",
  14907. height: math.unit(500, "miles")
  14908. },
  14909. ]
  14910. ))
  14911. characterMakers.push(() => makeCharacter(
  14912. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14913. {
  14914. front: {
  14915. height: math.unit(6, "feet"),
  14916. weight: math.unit(150, "lb"),
  14917. name: "Front",
  14918. image: {
  14919. source: "./media/characters/felix/front.svg",
  14920. extra: 762 / 722,
  14921. bottom: 0.02
  14922. }
  14923. },
  14924. frontClothed: {
  14925. height: math.unit(6, "feet"),
  14926. weight: math.unit(150, "lb"),
  14927. name: "Front (Clothed)",
  14928. image: {
  14929. source: "./media/characters/felix/front-clothed.svg",
  14930. extra: 762 / 722,
  14931. bottom: 0.02
  14932. }
  14933. },
  14934. },
  14935. [
  14936. {
  14937. name: "Normal",
  14938. height: math.unit(6 + 8 / 12, "feet"),
  14939. default: true
  14940. },
  14941. {
  14942. name: "Macro",
  14943. height: math.unit(2600, "feet")
  14944. },
  14945. {
  14946. name: "Megamacro",
  14947. height: math.unit(450, "miles")
  14948. },
  14949. ]
  14950. ))
  14951. characterMakers.push(() => makeCharacter(
  14952. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14953. {
  14954. front: {
  14955. height: math.unit(6 + 1 / 12, "feet"),
  14956. weight: math.unit(250, "lb"),
  14957. name: "Front",
  14958. image: {
  14959. source: "./media/characters/tobo/front.svg",
  14960. extra: 608 / 586,
  14961. bottom: 0.023
  14962. }
  14963. },
  14964. back: {
  14965. height: math.unit(6 + 1 / 12, "feet"),
  14966. weight: math.unit(250, "lb"),
  14967. name: "Back",
  14968. image: {
  14969. source: "./media/characters/tobo/back.svg",
  14970. extra: 608 / 586
  14971. }
  14972. },
  14973. },
  14974. [
  14975. {
  14976. name: "Nano",
  14977. height: math.unit(2, "nm")
  14978. },
  14979. {
  14980. name: "Megamicro",
  14981. height: math.unit(0.1, "mm")
  14982. },
  14983. {
  14984. name: "Micro",
  14985. height: math.unit(1, "inch"),
  14986. default: true
  14987. },
  14988. {
  14989. name: "Human-sized",
  14990. height: math.unit(6 + 1 / 12, "feet")
  14991. },
  14992. {
  14993. name: "Macro",
  14994. height: math.unit(250, "feet")
  14995. },
  14996. {
  14997. name: "Megamacro",
  14998. height: math.unit(75, "miles")
  14999. },
  15000. {
  15001. name: "Texas-sized",
  15002. height: math.unit(750, "miles")
  15003. },
  15004. {
  15005. name: "Teramacro",
  15006. height: math.unit(50000, "miles")
  15007. },
  15008. ]
  15009. ))
  15010. characterMakers.push(() => makeCharacter(
  15011. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15012. {
  15013. front: {
  15014. height: math.unit(6, "feet"),
  15015. weight: math.unit(269, "lb"),
  15016. name: "Front",
  15017. image: {
  15018. source: "./media/characters/danny-kapowsky/front.svg",
  15019. extra: 766 / 736,
  15020. bottom: 0.044
  15021. }
  15022. },
  15023. back: {
  15024. height: math.unit(6, "feet"),
  15025. weight: math.unit(269, "lb"),
  15026. name: "Back",
  15027. image: {
  15028. source: "./media/characters/danny-kapowsky/back.svg",
  15029. extra: 797 / 760,
  15030. bottom: 0.025
  15031. }
  15032. },
  15033. },
  15034. [
  15035. {
  15036. name: "Macro",
  15037. height: math.unit(150, "feet"),
  15038. default: true
  15039. },
  15040. {
  15041. name: "Macro+",
  15042. height: math.unit(200, "feet")
  15043. },
  15044. {
  15045. name: "Macro++",
  15046. height: math.unit(300, "feet")
  15047. },
  15048. {
  15049. name: "Macro+++",
  15050. height: math.unit(400, "feet")
  15051. },
  15052. ]
  15053. ))
  15054. characterMakers.push(() => makeCharacter(
  15055. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15056. {
  15057. side: {
  15058. height: math.unit(6, "feet"),
  15059. weight: math.unit(170, "lb"),
  15060. name: "Side",
  15061. image: {
  15062. source: "./media/characters/finn/side.svg",
  15063. extra: 1953 / 1807,
  15064. bottom: 0.057
  15065. }
  15066. },
  15067. },
  15068. [
  15069. {
  15070. name: "Megamacro",
  15071. height: math.unit(14445, "feet"),
  15072. default: true
  15073. },
  15074. ]
  15075. ))
  15076. characterMakers.push(() => makeCharacter(
  15077. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15078. {
  15079. front: {
  15080. height: math.unit(5 + 6 / 12, "feet"),
  15081. weight: math.unit(125, "lb"),
  15082. name: "Front",
  15083. image: {
  15084. source: "./media/characters/roy/front.svg",
  15085. extra: 1,
  15086. bottom: 0.11
  15087. }
  15088. },
  15089. },
  15090. [
  15091. {
  15092. name: "Micro",
  15093. height: math.unit(3, "inches"),
  15094. default: true
  15095. },
  15096. {
  15097. name: "Normal",
  15098. height: math.unit(5 + 6 / 12, "feet")
  15099. },
  15100. {
  15101. name: "Lesser Macro",
  15102. height: math.unit(60, "feet")
  15103. },
  15104. {
  15105. name: "Greater Macro",
  15106. height: math.unit(120, "feet")
  15107. },
  15108. ]
  15109. ))
  15110. characterMakers.push(() => makeCharacter(
  15111. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15112. {
  15113. front: {
  15114. height: math.unit(6, "feet"),
  15115. weight: math.unit(100, "lb"),
  15116. name: "Front",
  15117. image: {
  15118. source: "./media/characters/aevsivs/front.svg",
  15119. extra: 1,
  15120. bottom: 0.03
  15121. }
  15122. },
  15123. back: {
  15124. height: math.unit(6, "feet"),
  15125. weight: math.unit(100, "lb"),
  15126. name: "Back",
  15127. image: {
  15128. source: "./media/characters/aevsivs/back.svg"
  15129. }
  15130. },
  15131. },
  15132. [
  15133. {
  15134. name: "Micro",
  15135. height: math.unit(2, "inches"),
  15136. default: true
  15137. },
  15138. {
  15139. name: "Normal",
  15140. height: math.unit(5, "feet")
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15146. {
  15147. front: {
  15148. height: math.unit(5 + 7 / 12, "feet"),
  15149. weight: math.unit(159, "lb"),
  15150. name: "Front",
  15151. image: {
  15152. source: "./media/characters/hildegard/front.svg",
  15153. extra: 289 / 269,
  15154. bottom: 7.63 / 297.8
  15155. }
  15156. },
  15157. back: {
  15158. height: math.unit(5 + 7 / 12, "feet"),
  15159. weight: math.unit(159, "lb"),
  15160. name: "Back",
  15161. image: {
  15162. source: "./media/characters/hildegard/back.svg",
  15163. extra: 280 / 260,
  15164. bottom: 2.3 / 282
  15165. }
  15166. },
  15167. },
  15168. [
  15169. {
  15170. name: "Normal",
  15171. height: math.unit(5 + 7 / 12, "feet"),
  15172. default: true
  15173. },
  15174. ]
  15175. ))
  15176. characterMakers.push(() => makeCharacter(
  15177. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15178. {
  15179. bernard: {
  15180. height: math.unit(2 + 7 / 12, "feet"),
  15181. weight: math.unit(66, "lb"),
  15182. name: "Bernard",
  15183. rename: true,
  15184. image: {
  15185. source: "./media/characters/bernard-wilder/bernard.svg",
  15186. extra: 192 / 128,
  15187. bottom: 0.05
  15188. }
  15189. },
  15190. wilder: {
  15191. height: math.unit(5 + 8 / 12, "feet"),
  15192. weight: math.unit(143, "lb"),
  15193. name: "Wilder",
  15194. rename: true,
  15195. image: {
  15196. source: "./media/characters/bernard-wilder/wilder.svg",
  15197. extra: 361 / 312,
  15198. bottom: 0.02
  15199. }
  15200. },
  15201. },
  15202. [
  15203. {
  15204. name: "Normal",
  15205. height: math.unit(2 + 7 / 12, "feet"),
  15206. default: true
  15207. },
  15208. ]
  15209. ))
  15210. characterMakers.push(() => makeCharacter(
  15211. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15212. {
  15213. anthro: {
  15214. height: math.unit(6 + 1 / 12, "feet"),
  15215. weight: math.unit(155, "lb"),
  15216. name: "Anthro",
  15217. image: {
  15218. source: "./media/characters/hearth/anthro.svg",
  15219. extra: 1178/1136,
  15220. bottom: 28/1206
  15221. }
  15222. },
  15223. feral: {
  15224. height: math.unit(3.78, "feet"),
  15225. weight: math.unit(35, "kg"),
  15226. name: "Feral",
  15227. image: {
  15228. source: "./media/characters/hearth/feral.svg",
  15229. extra: 153 / 135,
  15230. bottom: 0.03
  15231. }
  15232. },
  15233. },
  15234. [
  15235. {
  15236. name: "Normal",
  15237. height: math.unit(6 + 1 / 12, "feet"),
  15238. default: true
  15239. },
  15240. ]
  15241. ))
  15242. characterMakers.push(() => makeCharacter(
  15243. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15244. {
  15245. front: {
  15246. height: math.unit(6, "feet"),
  15247. weight: math.unit(182, "lb"),
  15248. name: "Front",
  15249. image: {
  15250. source: "./media/characters/ingrid/front.svg",
  15251. extra: 294 / 268,
  15252. bottom: 0.027
  15253. }
  15254. },
  15255. },
  15256. [
  15257. {
  15258. name: "Normal",
  15259. height: math.unit(6, "feet"),
  15260. default: true
  15261. },
  15262. ]
  15263. ))
  15264. characterMakers.push(() => makeCharacter(
  15265. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15266. {
  15267. eevee: {
  15268. height: math.unit(2 + 10 / 12, "feet"),
  15269. weight: math.unit(86, "lb"),
  15270. name: "Malgam",
  15271. image: {
  15272. source: "./media/characters/malgam/eevee.svg",
  15273. extra: 952/784,
  15274. bottom: 38/990
  15275. }
  15276. },
  15277. sylveon: {
  15278. height: math.unit(4, "feet"),
  15279. weight: math.unit(101, "lb"),
  15280. name: "Future Malgam",
  15281. rename: true,
  15282. image: {
  15283. source: "./media/characters/malgam/sylveon.svg",
  15284. extra: 371 / 325,
  15285. bottom: 0.015
  15286. }
  15287. },
  15288. gigantamax: {
  15289. height: math.unit(50, "feet"),
  15290. name: "Gigantamax Malgam",
  15291. rename: true,
  15292. image: {
  15293. source: "./media/characters/malgam/gigantamax.svg"
  15294. }
  15295. },
  15296. },
  15297. [
  15298. {
  15299. name: "Normal",
  15300. height: math.unit(2 + 10 / 12, "feet"),
  15301. default: true
  15302. },
  15303. ]
  15304. ))
  15305. characterMakers.push(() => makeCharacter(
  15306. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15307. {
  15308. front: {
  15309. height: math.unit(5 + 11 / 12, "feet"),
  15310. weight: math.unit(188, "lb"),
  15311. name: "Front",
  15312. image: {
  15313. source: "./media/characters/fleur/front.svg",
  15314. extra: 309 / 283,
  15315. bottom: 0.007
  15316. }
  15317. },
  15318. },
  15319. [
  15320. {
  15321. name: "Normal",
  15322. height: math.unit(5 + 11 / 12, "feet"),
  15323. default: true
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15329. {
  15330. front: {
  15331. height: math.unit(5 + 4 / 12, "feet"),
  15332. weight: math.unit(122, "lb"),
  15333. name: "Front",
  15334. image: {
  15335. source: "./media/characters/jude/front.svg",
  15336. extra: 288 / 273,
  15337. bottom: 0.03
  15338. }
  15339. },
  15340. },
  15341. [
  15342. {
  15343. name: "Normal",
  15344. height: math.unit(5 + 4 / 12, "feet"),
  15345. default: true
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(5 + 11 / 12, "feet"),
  15354. weight: math.unit(190, "lb"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/seara/front.svg",
  15358. extra: 1,
  15359. bottom: 0.05
  15360. }
  15361. },
  15362. },
  15363. [
  15364. {
  15365. name: "Normal",
  15366. height: math.unit(5 + 11 / 12, "feet"),
  15367. default: true
  15368. },
  15369. ]
  15370. ))
  15371. characterMakers.push(() => makeCharacter(
  15372. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15373. {
  15374. front: {
  15375. height: math.unit(16 + 5 / 12, "feet"),
  15376. weight: math.unit(524, "lb"),
  15377. name: "Front",
  15378. image: {
  15379. source: "./media/characters/caspian/front.svg",
  15380. extra: 1,
  15381. bottom: 0.04
  15382. }
  15383. },
  15384. },
  15385. [
  15386. {
  15387. name: "Normal",
  15388. height: math.unit(16 + 5 / 12, "feet"),
  15389. default: true
  15390. },
  15391. ]
  15392. ))
  15393. characterMakers.push(() => makeCharacter(
  15394. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15395. {
  15396. front: {
  15397. height: math.unit(5 + 7 / 12, "feet"),
  15398. weight: math.unit(170, "lb"),
  15399. name: "Front",
  15400. image: {
  15401. source: "./media/characters/mika/front.svg",
  15402. extra: 1,
  15403. bottom: 0.016
  15404. }
  15405. },
  15406. },
  15407. [
  15408. {
  15409. name: "Normal",
  15410. height: math.unit(5 + 7 / 12, "feet"),
  15411. default: true
  15412. },
  15413. ]
  15414. ))
  15415. characterMakers.push(() => makeCharacter(
  15416. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15417. {
  15418. front: {
  15419. height: math.unit(6 + 2 / 12, "feet"),
  15420. weight: math.unit(268, "lb"),
  15421. name: "Front",
  15422. image: {
  15423. source: "./media/characters/sol/front.svg",
  15424. extra: 247 / 231,
  15425. bottom: 0.05
  15426. }
  15427. },
  15428. },
  15429. [
  15430. {
  15431. name: "Normal",
  15432. height: math.unit(6 + 2 / 12, "feet"),
  15433. default: true
  15434. },
  15435. ]
  15436. ))
  15437. characterMakers.push(() => makeCharacter(
  15438. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15439. {
  15440. buizel: {
  15441. height: math.unit(2 + 5 / 12, "feet"),
  15442. weight: math.unit(87, "lb"),
  15443. name: "Front",
  15444. image: {
  15445. source: "./media/characters/umiko/buizel.svg",
  15446. extra: 172 / 157,
  15447. bottom: 0.01
  15448. },
  15449. form: "buizel",
  15450. default: true
  15451. },
  15452. floatzel: {
  15453. height: math.unit(5 + 9 / 12, "feet"),
  15454. weight: math.unit(250, "lb"),
  15455. name: "Front",
  15456. image: {
  15457. source: "./media/characters/umiko/floatzel.svg",
  15458. extra: 1076/1006,
  15459. bottom: 15/1091
  15460. },
  15461. form: "floatzel",
  15462. default: true
  15463. },
  15464. },
  15465. [
  15466. {
  15467. name: "Normal",
  15468. height: math.unit(2 + 5 / 12, "feet"),
  15469. form: "buizel",
  15470. default: true
  15471. },
  15472. {
  15473. name: "Normal",
  15474. height: math.unit(5 + 9 / 12, "feet"),
  15475. form: "floatzel",
  15476. default: true
  15477. },
  15478. ],
  15479. {
  15480. "buizel": {
  15481. name: "Buizel"
  15482. },
  15483. "floatzel": {
  15484. name: "Floatzel",
  15485. default: true
  15486. }
  15487. }
  15488. ))
  15489. characterMakers.push(() => makeCharacter(
  15490. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15491. {
  15492. front: {
  15493. height: math.unit(6 + 2 / 12, "feet"),
  15494. weight: math.unit(146, "lb"),
  15495. name: "Front",
  15496. image: {
  15497. source: "./media/characters/iliac/front.svg",
  15498. extra: 389 / 365,
  15499. bottom: 0.035
  15500. }
  15501. },
  15502. },
  15503. [
  15504. {
  15505. name: "Normal",
  15506. height: math.unit(6 + 2 / 12, "feet"),
  15507. default: true
  15508. },
  15509. ]
  15510. ))
  15511. characterMakers.push(() => makeCharacter(
  15512. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15513. {
  15514. front: {
  15515. height: math.unit(6, "feet"),
  15516. weight: math.unit(170, "lb"),
  15517. name: "Front",
  15518. image: {
  15519. source: "./media/characters/topaz/front.svg",
  15520. extra: 317 / 303,
  15521. bottom: 0.055
  15522. }
  15523. },
  15524. },
  15525. [
  15526. {
  15527. name: "Normal",
  15528. height: math.unit(6, "feet"),
  15529. default: true
  15530. },
  15531. ]
  15532. ))
  15533. characterMakers.push(() => makeCharacter(
  15534. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15535. {
  15536. front: {
  15537. height: math.unit(5 + 11 / 12, "feet"),
  15538. weight: math.unit(144, "lb"),
  15539. name: "Front",
  15540. image: {
  15541. source: "./media/characters/gabriel/front.svg",
  15542. extra: 285 / 262,
  15543. bottom: 0.004
  15544. }
  15545. },
  15546. },
  15547. [
  15548. {
  15549. name: "Normal",
  15550. height: math.unit(5 + 11 / 12, "feet"),
  15551. default: true
  15552. },
  15553. ]
  15554. ))
  15555. characterMakers.push(() => makeCharacter(
  15556. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15557. {
  15558. side: {
  15559. height: math.unit(6 + 5 / 12, "feet"),
  15560. weight: math.unit(300, "lb"),
  15561. name: "Side",
  15562. image: {
  15563. source: "./media/characters/tempest-suicune/side.svg",
  15564. extra: 195 / 154,
  15565. bottom: 0.04
  15566. }
  15567. },
  15568. },
  15569. [
  15570. {
  15571. name: "Normal",
  15572. height: math.unit(6 + 5 / 12, "feet"),
  15573. default: true
  15574. },
  15575. ]
  15576. ))
  15577. characterMakers.push(() => makeCharacter(
  15578. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15579. {
  15580. front: {
  15581. height: math.unit(7 + 2 / 12, "feet"),
  15582. weight: math.unit(322, "lb"),
  15583. name: "Front",
  15584. image: {
  15585. source: "./media/characters/vulcan/front.svg",
  15586. extra: 154 / 147,
  15587. bottom: 0.04
  15588. }
  15589. },
  15590. },
  15591. [
  15592. {
  15593. name: "Normal",
  15594. height: math.unit(7 + 2 / 12, "feet"),
  15595. default: true
  15596. },
  15597. ]
  15598. ))
  15599. characterMakers.push(() => makeCharacter(
  15600. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15601. {
  15602. front: {
  15603. height: math.unit(5 + 10 / 12, "feet"),
  15604. weight: math.unit(264, "lb"),
  15605. name: "Front",
  15606. image: {
  15607. source: "./media/characters/gault/front.svg",
  15608. extra: 161 / 140,
  15609. bottom: 0.028
  15610. }
  15611. },
  15612. },
  15613. [
  15614. {
  15615. name: "Normal",
  15616. height: math.unit(5 + 10 / 12, "feet"),
  15617. default: true
  15618. },
  15619. ]
  15620. ))
  15621. characterMakers.push(() => makeCharacter(
  15622. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15623. {
  15624. front: {
  15625. height: math.unit(6, "feet"),
  15626. weight: math.unit(150, "lb"),
  15627. name: "Front",
  15628. image: {
  15629. source: "./media/characters/shard/front.svg",
  15630. extra: 273 / 238,
  15631. bottom: 0.02
  15632. }
  15633. },
  15634. },
  15635. [
  15636. {
  15637. name: "Normal",
  15638. height: math.unit(3 + 6 / 12, "feet"),
  15639. default: true
  15640. },
  15641. ]
  15642. ))
  15643. characterMakers.push(() => makeCharacter(
  15644. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15645. {
  15646. front: {
  15647. height: math.unit(5 + 11 / 12, "feet"),
  15648. weight: math.unit(146, "lb"),
  15649. name: "Front",
  15650. image: {
  15651. source: "./media/characters/ashe/front.svg",
  15652. extra: 400 / 373,
  15653. bottom: 0.01
  15654. }
  15655. },
  15656. },
  15657. [
  15658. {
  15659. name: "Normal",
  15660. height: math.unit(5 + 11 / 12, "feet"),
  15661. default: true
  15662. },
  15663. ]
  15664. ))
  15665. characterMakers.push(() => makeCharacter(
  15666. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15667. {
  15668. front: {
  15669. height: math.unit(5 + 5 / 12, "feet"),
  15670. weight: math.unit(135, "lb"),
  15671. name: "Front",
  15672. image: {
  15673. source: "./media/characters/beatrix/front.svg",
  15674. extra: 392 / 379,
  15675. bottom: 0.01
  15676. }
  15677. },
  15678. },
  15679. [
  15680. {
  15681. name: "Normal",
  15682. height: math.unit(6, "feet"),
  15683. default: true
  15684. },
  15685. ]
  15686. ))
  15687. characterMakers.push(() => makeCharacter(
  15688. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15689. {
  15690. front: {
  15691. height: math.unit(6 + 2/12, "feet"),
  15692. weight: math.unit(135, "lb"),
  15693. name: "Front",
  15694. image: {
  15695. source: "./media/characters/ignatius/front.svg",
  15696. extra: 1380/1259,
  15697. bottom: 27/1407
  15698. }
  15699. },
  15700. },
  15701. [
  15702. {
  15703. name: "Normal",
  15704. height: math.unit(6 + 2/12, "feet"),
  15705. default: true
  15706. },
  15707. ]
  15708. ))
  15709. characterMakers.push(() => makeCharacter(
  15710. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15711. {
  15712. front: {
  15713. height: math.unit(6 + 2 / 12, "feet"),
  15714. weight: math.unit(138, "lb"),
  15715. name: "Front",
  15716. image: {
  15717. source: "./media/characters/mei-li/front.svg",
  15718. extra: 237 / 229,
  15719. bottom: 0.03
  15720. }
  15721. },
  15722. },
  15723. [
  15724. {
  15725. name: "Normal",
  15726. height: math.unit(6 + 2 / 12, "feet"),
  15727. default: true
  15728. },
  15729. ]
  15730. ))
  15731. characterMakers.push(() => makeCharacter(
  15732. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15733. {
  15734. front: {
  15735. height: math.unit(2 + 4 / 12, "feet"),
  15736. weight: math.unit(62, "lb"),
  15737. name: "Front",
  15738. image: {
  15739. source: "./media/characters/puru/front.svg",
  15740. extra: 206 / 149,
  15741. bottom: 0.06
  15742. }
  15743. },
  15744. },
  15745. [
  15746. {
  15747. name: "Normal",
  15748. height: math.unit(2 + 4 / 12, "feet"),
  15749. default: true
  15750. },
  15751. ]
  15752. ))
  15753. characterMakers.push(() => makeCharacter(
  15754. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15755. {
  15756. anthro: {
  15757. height: math.unit(5 + 8/12, "feet"),
  15758. weight: math.unit(200, "lb"),
  15759. energyNeed: math.unit(2000, "kcal"),
  15760. name: "Anthro",
  15761. image: {
  15762. source: "./media/characters/kee/anthro.svg",
  15763. extra: 3251/3184,
  15764. bottom: 250/3501
  15765. }
  15766. },
  15767. taur: {
  15768. height: math.unit(11, "feet"),
  15769. weight: math.unit(500, "lb"),
  15770. energyNeed: math.unit(5000, "kcal"),
  15771. name: "Taur",
  15772. image: {
  15773. source: "./media/characters/kee/taur.svg",
  15774. extra: 1362/1320,
  15775. bottom: 83/1445
  15776. }
  15777. },
  15778. },
  15779. [
  15780. {
  15781. name: "Normal",
  15782. height: math.unit(5 + 8/12, "feet"),
  15783. default: true
  15784. },
  15785. {
  15786. name: "Macro",
  15787. height: math.unit(35, "feet")
  15788. },
  15789. ]
  15790. ))
  15791. characterMakers.push(() => makeCharacter(
  15792. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15793. {
  15794. anthro: {
  15795. height: math.unit(7, "feet"),
  15796. weight: math.unit(190, "lb"),
  15797. name: "Anthro",
  15798. image: {
  15799. source: "./media/characters/cobalt-dracha/anthro.svg",
  15800. extra: 231 / 225,
  15801. bottom: 0.04
  15802. }
  15803. },
  15804. feral: {
  15805. height: math.unit(9 + 7 / 12, "feet"),
  15806. weight: math.unit(294, "lb"),
  15807. name: "Feral",
  15808. image: {
  15809. source: "./media/characters/cobalt-dracha/feral.svg",
  15810. extra: 692 / 633,
  15811. bottom: 0.05
  15812. }
  15813. },
  15814. },
  15815. [
  15816. {
  15817. name: "Normal",
  15818. height: math.unit(7, "feet"),
  15819. default: true
  15820. },
  15821. ]
  15822. ))
  15823. characterMakers.push(() => makeCharacter(
  15824. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15825. {
  15826. fallen: {
  15827. height: math.unit(11 + 8 / 12, "feet"),
  15828. weight: math.unit(485, "lb"),
  15829. name: "Java (Fallen)",
  15830. rename: true,
  15831. image: {
  15832. source: "./media/characters/java/fallen.svg",
  15833. extra: 226 / 208,
  15834. bottom: 0.005
  15835. }
  15836. },
  15837. godkin: {
  15838. height: math.unit(10 + 6 / 12, "feet"),
  15839. weight: math.unit(328, "lb"),
  15840. name: "Java (Godkin)",
  15841. rename: true,
  15842. image: {
  15843. source: "./media/characters/java/godkin.svg",
  15844. extra: 1104/1068,
  15845. bottom: 36/1140
  15846. }
  15847. },
  15848. },
  15849. [
  15850. {
  15851. name: "Normal",
  15852. height: math.unit(11 + 8 / 12, "feet"),
  15853. default: true
  15854. },
  15855. ]
  15856. ))
  15857. characterMakers.push(() => makeCharacter(
  15858. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15859. {
  15860. front: {
  15861. height: math.unit(5 + 9 / 12, "feet"),
  15862. weight: math.unit(170, "lb"),
  15863. name: "Front",
  15864. image: {
  15865. source: "./media/characters/purna/front.svg",
  15866. extra: 239 / 229,
  15867. bottom: 0.01
  15868. }
  15869. },
  15870. },
  15871. [
  15872. {
  15873. name: "Normal",
  15874. height: math.unit(5 + 9 / 12, "feet"),
  15875. default: true
  15876. },
  15877. ]
  15878. ))
  15879. characterMakers.push(() => makeCharacter(
  15880. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15881. {
  15882. front: {
  15883. height: math.unit(5 + 9 / 12, "feet"),
  15884. weight: math.unit(142, "lb"),
  15885. name: "Front",
  15886. image: {
  15887. source: "./media/characters/kuva/front.svg",
  15888. extra: 281 / 271,
  15889. bottom: 0.006
  15890. }
  15891. },
  15892. },
  15893. [
  15894. {
  15895. name: "Normal",
  15896. height: math.unit(5 + 9 / 12, "feet"),
  15897. default: true
  15898. },
  15899. ]
  15900. ))
  15901. characterMakers.push(() => makeCharacter(
  15902. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15903. {
  15904. anthro: {
  15905. height: math.unit(9 + 2 / 12, "feet"),
  15906. weight: math.unit(270, "lb"),
  15907. name: "Anthro",
  15908. image: {
  15909. source: "./media/characters/embra/anthro.svg",
  15910. extra: 200 / 187,
  15911. bottom: 0.02
  15912. }
  15913. },
  15914. feral: {
  15915. height: math.unit(18 + 8 / 12, "feet"),
  15916. weight: math.unit(576, "lb"),
  15917. name: "Feral",
  15918. image: {
  15919. source: "./media/characters/embra/feral.svg",
  15920. extra: 152 / 137,
  15921. bottom: 0.037
  15922. }
  15923. },
  15924. },
  15925. [
  15926. {
  15927. name: "Normal",
  15928. height: math.unit(9 + 2 / 12, "feet"),
  15929. default: true
  15930. },
  15931. ]
  15932. ))
  15933. characterMakers.push(() => makeCharacter(
  15934. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15935. {
  15936. anthro: {
  15937. height: math.unit(10 + 9 / 12, "feet"),
  15938. weight: math.unit(224, "lb"),
  15939. name: "Anthro",
  15940. image: {
  15941. source: "./media/characters/grottos/anthro.svg",
  15942. extra: 350 / 332,
  15943. bottom: 0.045
  15944. }
  15945. },
  15946. feral: {
  15947. height: math.unit(20 + 7 / 12, "feet"),
  15948. weight: math.unit(629, "lb"),
  15949. name: "Feral",
  15950. image: {
  15951. source: "./media/characters/grottos/feral.svg",
  15952. extra: 207 / 190,
  15953. bottom: 0.05
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(10 + 9 / 12, "feet"),
  15961. default: true
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15967. {
  15968. anthro: {
  15969. height: math.unit(9 + 6 / 12, "feet"),
  15970. weight: math.unit(298, "lb"),
  15971. name: "Anthro",
  15972. image: {
  15973. source: "./media/characters/frifna/anthro.svg",
  15974. extra: 282 / 269,
  15975. bottom: 0.015
  15976. }
  15977. },
  15978. feral: {
  15979. height: math.unit(16 + 2 / 12, "feet"),
  15980. weight: math.unit(624, "lb"),
  15981. name: "Feral",
  15982. image: {
  15983. source: "./media/characters/frifna/feral.svg"
  15984. }
  15985. },
  15986. },
  15987. [
  15988. {
  15989. name: "Normal",
  15990. height: math.unit(9 + 6 / 12, "feet"),
  15991. default: true
  15992. },
  15993. ]
  15994. ))
  15995. characterMakers.push(() => makeCharacter(
  15996. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15997. {
  15998. front: {
  15999. height: math.unit(6 + 2 / 12, "feet"),
  16000. weight: math.unit(168, "lb"),
  16001. name: "Front",
  16002. image: {
  16003. source: "./media/characters/elise/front.svg",
  16004. extra: 276 / 271
  16005. }
  16006. },
  16007. },
  16008. [
  16009. {
  16010. name: "Normal",
  16011. height: math.unit(6 + 2 / 12, "feet"),
  16012. default: true
  16013. },
  16014. ]
  16015. ))
  16016. characterMakers.push(() => makeCharacter(
  16017. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16018. {
  16019. front: {
  16020. height: math.unit(5 + 10 / 12, "feet"),
  16021. weight: math.unit(210, "lb"),
  16022. name: "Front",
  16023. image: {
  16024. source: "./media/characters/glade/front.svg",
  16025. extra: 258 / 247,
  16026. bottom: 0.008
  16027. }
  16028. },
  16029. },
  16030. [
  16031. {
  16032. name: "Normal",
  16033. height: math.unit(5 + 10 / 12, "feet"),
  16034. default: true
  16035. },
  16036. ]
  16037. ))
  16038. characterMakers.push(() => makeCharacter(
  16039. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16040. {
  16041. front: {
  16042. height: math.unit(5 + 10 / 12, "feet"),
  16043. weight: math.unit(129, "lb"),
  16044. name: "Front",
  16045. image: {
  16046. source: "./media/characters/rina/front.svg",
  16047. extra: 266 / 255,
  16048. bottom: 0.005
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(5 + 10 / 12, "feet"),
  16056. default: true
  16057. },
  16058. ]
  16059. ))
  16060. characterMakers.push(() => makeCharacter(
  16061. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16062. {
  16063. front: {
  16064. height: math.unit(6 + 1 / 12, "feet"),
  16065. weight: math.unit(192, "lb"),
  16066. name: "Front",
  16067. image: {
  16068. source: "./media/characters/veronica/front.svg",
  16069. extra: 319 / 309,
  16070. bottom: 0.005
  16071. }
  16072. },
  16073. },
  16074. [
  16075. {
  16076. name: "Normal",
  16077. height: math.unit(6 + 1 / 12, "feet"),
  16078. default: true
  16079. },
  16080. ]
  16081. ))
  16082. characterMakers.push(() => makeCharacter(
  16083. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16084. {
  16085. front: {
  16086. height: math.unit(9 + 3 / 12, "feet"),
  16087. weight: math.unit(1100, "lb"),
  16088. name: "Front",
  16089. image: {
  16090. source: "./media/characters/braxton/front.svg",
  16091. extra: 1057 / 984,
  16092. bottom: 0.05
  16093. }
  16094. },
  16095. },
  16096. [
  16097. {
  16098. name: "Normal",
  16099. height: math.unit(9 + 3 / 12, "feet")
  16100. },
  16101. {
  16102. name: "Giant",
  16103. height: math.unit(300, "feet"),
  16104. default: true
  16105. },
  16106. {
  16107. name: "Macro",
  16108. height: math.unit(700, "feet")
  16109. },
  16110. {
  16111. name: "Megamacro",
  16112. height: math.unit(6000, "feet")
  16113. },
  16114. ]
  16115. ))
  16116. characterMakers.push(() => makeCharacter(
  16117. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16118. {
  16119. front: {
  16120. height: math.unit(6 + 7 / 12, "feet"),
  16121. weight: math.unit(150, "lb"),
  16122. name: "Front",
  16123. image: {
  16124. source: "./media/characters/blue-feyonics/front.svg",
  16125. extra: 1403 / 1306,
  16126. bottom: 0.047
  16127. }
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Normal",
  16133. height: math.unit(6 + 7 / 12, "feet"),
  16134. default: true
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(1.8, "meters"),
  16143. weight: math.unit(60, "kg"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/maxwell/front.svg",
  16147. extra: 2060 / 1873
  16148. }
  16149. },
  16150. },
  16151. [
  16152. {
  16153. name: "Micro",
  16154. height: math.unit(1, "mm")
  16155. },
  16156. {
  16157. name: "Normal",
  16158. height: math.unit(1.8, "meter"),
  16159. default: true
  16160. },
  16161. {
  16162. name: "Macro",
  16163. height: math.unit(30, "meters")
  16164. },
  16165. {
  16166. name: "Megamacro",
  16167. height: math.unit(10, "km")
  16168. },
  16169. ]
  16170. ))
  16171. characterMakers.push(() => makeCharacter(
  16172. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16173. {
  16174. front: {
  16175. height: math.unit(6, "feet"),
  16176. weight: math.unit(150, "lb"),
  16177. name: "Front",
  16178. image: {
  16179. source: "./media/characters/jack/front.svg",
  16180. extra: 1754 / 1640,
  16181. bottom: 0.01
  16182. }
  16183. },
  16184. },
  16185. [
  16186. {
  16187. name: "Normal",
  16188. height: math.unit(80000, "feet"),
  16189. default: true
  16190. },
  16191. {
  16192. name: "Max size",
  16193. height: math.unit(10, "lightyears")
  16194. },
  16195. ]
  16196. ))
  16197. characterMakers.push(() => makeCharacter(
  16198. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16199. {
  16200. urban: {
  16201. height: math.unit(5, "feet"),
  16202. weight: math.unit(240, "lb"),
  16203. name: "Urban",
  16204. image: {
  16205. source: "./media/characters/cafat/urban.svg",
  16206. extra: 1223/1126,
  16207. bottom: 205/1428
  16208. }
  16209. },
  16210. summer: {
  16211. height: math.unit(5, "feet"),
  16212. weight: math.unit(240, "lb"),
  16213. name: "Summer",
  16214. image: {
  16215. source: "./media/characters/cafat/summer.svg",
  16216. extra: 1223/1126,
  16217. bottom: 205/1428
  16218. }
  16219. },
  16220. winter: {
  16221. height: math.unit(5, "feet"),
  16222. weight: math.unit(240, "lb"),
  16223. name: "Winter",
  16224. image: {
  16225. source: "./media/characters/cafat/winter.svg",
  16226. extra: 1223/1126,
  16227. bottom: 205/1428
  16228. }
  16229. },
  16230. lingerie: {
  16231. height: math.unit(5, "feet"),
  16232. weight: math.unit(240, "lb"),
  16233. name: "Lingerie",
  16234. image: {
  16235. source: "./media/characters/cafat/lingerie.svg",
  16236. extra: 1223/1126,
  16237. bottom: 205/1428
  16238. }
  16239. },
  16240. upright: {
  16241. height: math.unit(6.3, "feet"),
  16242. weight: math.unit(240, "lb"),
  16243. name: "Upright",
  16244. image: {
  16245. source: "./media/characters/cafat/upright.svg",
  16246. bottom: 0.01
  16247. }
  16248. },
  16249. uprightFull: {
  16250. height: math.unit(6.3, "feet"),
  16251. weight: math.unit(240, "lb"),
  16252. name: "Upright (Full)",
  16253. image: {
  16254. source: "./media/characters/cafat/upright-full.svg",
  16255. bottom: 0.01
  16256. }
  16257. },
  16258. },
  16259. [
  16260. {
  16261. name: "Small",
  16262. height: math.unit(5, "feet"),
  16263. default: true
  16264. },
  16265. {
  16266. name: "Large",
  16267. height: math.unit(13, "feet")
  16268. },
  16269. ]
  16270. ))
  16271. characterMakers.push(() => makeCharacter(
  16272. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16273. {
  16274. front: {
  16275. height: math.unit(6, "feet"),
  16276. weight: math.unit(150, "lb"),
  16277. name: "Front",
  16278. image: {
  16279. source: "./media/characters/verin-raharra/front.svg",
  16280. extra: 5019 / 4835,
  16281. bottom: 0.023
  16282. }
  16283. },
  16284. },
  16285. [
  16286. {
  16287. name: "Normal",
  16288. height: math.unit(7 + 5 / 12, "feet"),
  16289. default: true
  16290. },
  16291. {
  16292. name: "Upsized",
  16293. height: math.unit(20, "feet")
  16294. },
  16295. ]
  16296. ))
  16297. characterMakers.push(() => makeCharacter(
  16298. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16299. {
  16300. front: {
  16301. height: math.unit(7, "feet"),
  16302. weight: math.unit(230, "lb"),
  16303. name: "Front",
  16304. image: {
  16305. source: "./media/characters/nakata/front.svg",
  16306. extra: 1.005,
  16307. bottom: 0.01
  16308. }
  16309. },
  16310. },
  16311. [
  16312. {
  16313. name: "Normal",
  16314. height: math.unit(7, "feet"),
  16315. default: true
  16316. },
  16317. {
  16318. name: "Big",
  16319. height: math.unit(14, "feet")
  16320. },
  16321. {
  16322. name: "Macro",
  16323. height: math.unit(400, "feet")
  16324. },
  16325. ]
  16326. ))
  16327. characterMakers.push(() => makeCharacter(
  16328. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16329. {
  16330. front: {
  16331. height: math.unit(4.91, "feet"),
  16332. weight: math.unit(100, "lb"),
  16333. name: "Front",
  16334. image: {
  16335. source: "./media/characters/lily/front.svg",
  16336. extra: 1585 / 1415,
  16337. bottom: 0.02
  16338. }
  16339. },
  16340. },
  16341. [
  16342. {
  16343. name: "Normal",
  16344. height: math.unit(4.91, "feet"),
  16345. default: true
  16346. },
  16347. ]
  16348. ))
  16349. characterMakers.push(() => makeCharacter(
  16350. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16351. {
  16352. laying: {
  16353. height: math.unit(4 + 4 / 12, "feet"),
  16354. weight: math.unit(600, "lb"),
  16355. name: "Laying",
  16356. image: {
  16357. source: "./media/characters/sheila/laying.svg",
  16358. extra: 1333 / 1265,
  16359. bottom: 0.16
  16360. }
  16361. },
  16362. },
  16363. [
  16364. {
  16365. name: "Normal",
  16366. height: math.unit(4 + 4 / 12, "feet"),
  16367. default: true
  16368. },
  16369. ]
  16370. ))
  16371. characterMakers.push(() => makeCharacter(
  16372. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16373. {
  16374. front: {
  16375. height: math.unit(6, "feet"),
  16376. weight: math.unit(190, "lb"),
  16377. name: "Front",
  16378. image: {
  16379. source: "./media/characters/sax/front.svg",
  16380. extra: 1187 / 973,
  16381. bottom: 0.042
  16382. }
  16383. },
  16384. },
  16385. [
  16386. {
  16387. name: "Micro",
  16388. height: math.unit(4, "inches"),
  16389. default: true
  16390. },
  16391. ]
  16392. ))
  16393. characterMakers.push(() => makeCharacter(
  16394. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16395. {
  16396. front: {
  16397. height: math.unit(6, "feet"),
  16398. weight: math.unit(150, "lb"),
  16399. name: "Front",
  16400. image: {
  16401. source: "./media/characters/pandora/front.svg",
  16402. extra: 2720 / 2556,
  16403. bottom: 0.015
  16404. }
  16405. },
  16406. back: {
  16407. height: math.unit(6, "feet"),
  16408. weight: math.unit(150, "lb"),
  16409. name: "Back",
  16410. image: {
  16411. source: "./media/characters/pandora/back.svg",
  16412. extra: 2720 / 2556,
  16413. bottom: 0.01
  16414. }
  16415. },
  16416. beans: {
  16417. height: math.unit(6 / 8, "feet"),
  16418. name: "Beans",
  16419. image: {
  16420. source: "./media/characters/pandora/beans.svg"
  16421. }
  16422. },
  16423. collar: {
  16424. height: math.unit(0.31, "feet"),
  16425. name: "Collar",
  16426. image: {
  16427. source: "./media/characters/pandora/collar.svg"
  16428. }
  16429. },
  16430. skirt: {
  16431. height: math.unit(6, "feet"),
  16432. weight: math.unit(150, "lb"),
  16433. name: "Skirt",
  16434. image: {
  16435. source: "./media/characters/pandora/skirt.svg",
  16436. extra: 1622 / 1525,
  16437. bottom: 0.015
  16438. }
  16439. },
  16440. hoodie: {
  16441. height: math.unit(6, "feet"),
  16442. weight: math.unit(150, "lb"),
  16443. name: "Hoodie",
  16444. image: {
  16445. source: "./media/characters/pandora/hoodie.svg",
  16446. extra: 1622 / 1525,
  16447. bottom: 0.015
  16448. }
  16449. },
  16450. casual: {
  16451. height: math.unit(6, "feet"),
  16452. weight: math.unit(150, "lb"),
  16453. name: "Casual",
  16454. image: {
  16455. source: "./media/characters/pandora/casual.svg",
  16456. extra: 1622 / 1525,
  16457. bottom: 0.015
  16458. }
  16459. },
  16460. },
  16461. [
  16462. {
  16463. name: "Normal",
  16464. height: math.unit(6, "feet")
  16465. },
  16466. {
  16467. name: "Big Steppy",
  16468. height: math.unit(1, "km"),
  16469. default: true
  16470. },
  16471. {
  16472. name: "Galactic Steppy",
  16473. height: math.unit(2, "gigameters")
  16474. },
  16475. ]
  16476. ))
  16477. characterMakers.push(() => makeCharacter(
  16478. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16479. {
  16480. side: {
  16481. height: math.unit(10, "feet"),
  16482. weight: math.unit(800, "kg"),
  16483. name: "Side",
  16484. image: {
  16485. source: "./media/characters/venio-darcony/side.svg",
  16486. extra: 1373 / 1003,
  16487. bottom: 0.037
  16488. }
  16489. },
  16490. front: {
  16491. height: math.unit(19, "feet"),
  16492. weight: math.unit(800, "kg"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/venio-darcony/front.svg"
  16496. }
  16497. },
  16498. back: {
  16499. height: math.unit(19, "feet"),
  16500. weight: math.unit(800, "kg"),
  16501. name: "Back",
  16502. image: {
  16503. source: "./media/characters/venio-darcony/back.svg"
  16504. }
  16505. },
  16506. sideNsfw: {
  16507. height: math.unit(10, "feet"),
  16508. weight: math.unit(800, "kg"),
  16509. name: "Side (NSFW)",
  16510. image: {
  16511. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16512. extra: 1373 / 1003,
  16513. bottom: 0.037
  16514. }
  16515. },
  16516. frontNsfw: {
  16517. height: math.unit(19, "feet"),
  16518. weight: math.unit(800, "kg"),
  16519. name: "Front (NSFW)",
  16520. image: {
  16521. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16522. }
  16523. },
  16524. backNsfw: {
  16525. height: math.unit(19, "feet"),
  16526. weight: math.unit(800, "kg"),
  16527. name: "Back (NSFW)",
  16528. image: {
  16529. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16530. }
  16531. },
  16532. sideArmored: {
  16533. height: math.unit(10, "feet"),
  16534. weight: math.unit(800, "kg"),
  16535. name: "Side (Armored)",
  16536. image: {
  16537. source: "./media/characters/venio-darcony/side-armored.svg",
  16538. extra: 1373 / 1003,
  16539. bottom: 0.037
  16540. }
  16541. },
  16542. frontArmored: {
  16543. height: math.unit(19, "feet"),
  16544. weight: math.unit(900, "kg"),
  16545. name: "Front (Armored)",
  16546. image: {
  16547. source: "./media/characters/venio-darcony/front-armored.svg"
  16548. }
  16549. },
  16550. backArmored: {
  16551. height: math.unit(19, "feet"),
  16552. weight: math.unit(900, "kg"),
  16553. name: "Back (Armored)",
  16554. image: {
  16555. source: "./media/characters/venio-darcony/back-armored.svg"
  16556. }
  16557. },
  16558. sword: {
  16559. height: math.unit(10, "feet"),
  16560. weight: math.unit(50, "lb"),
  16561. name: "Sword",
  16562. image: {
  16563. source: "./media/characters/venio-darcony/sword.svg"
  16564. }
  16565. },
  16566. },
  16567. [
  16568. {
  16569. name: "Normal",
  16570. height: math.unit(10, "feet")
  16571. },
  16572. {
  16573. name: "Macro",
  16574. height: math.unit(130, "feet"),
  16575. default: true
  16576. },
  16577. {
  16578. name: "Macro+",
  16579. height: math.unit(240, "feet")
  16580. },
  16581. ]
  16582. ))
  16583. characterMakers.push(() => makeCharacter(
  16584. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16585. {
  16586. front: {
  16587. height: math.unit(6, "feet"),
  16588. weight: math.unit(150, "lb"),
  16589. name: "Front",
  16590. image: {
  16591. source: "./media/characters/veski/front.svg",
  16592. extra: 1299 / 1225,
  16593. bottom: 0.04
  16594. }
  16595. },
  16596. back: {
  16597. height: math.unit(6, "feet"),
  16598. weight: math.unit(150, "lb"),
  16599. name: "Back",
  16600. image: {
  16601. source: "./media/characters/veski/back.svg",
  16602. extra: 1299 / 1225,
  16603. bottom: 0.008
  16604. }
  16605. },
  16606. maw: {
  16607. height: math.unit(1.5 * 1.21, "feet"),
  16608. name: "Maw",
  16609. image: {
  16610. source: "./media/characters/veski/maw.svg"
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Macro",
  16617. height: math.unit(2, "km"),
  16618. default: true
  16619. },
  16620. ]
  16621. ))
  16622. characterMakers.push(() => makeCharacter(
  16623. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16624. {
  16625. front: {
  16626. height: math.unit(5 + 7 / 12, "feet"),
  16627. name: "Front",
  16628. image: {
  16629. source: "./media/characters/isabelle/front.svg",
  16630. extra: 2130 / 1976,
  16631. bottom: 0.05
  16632. }
  16633. },
  16634. },
  16635. [
  16636. {
  16637. name: "Supermicro",
  16638. height: math.unit(10, "micrometers")
  16639. },
  16640. {
  16641. name: "Micro",
  16642. height: math.unit(1, "inch")
  16643. },
  16644. {
  16645. name: "Tiny",
  16646. height: math.unit(5, "inches")
  16647. },
  16648. {
  16649. name: "Standard",
  16650. height: math.unit(5 + 7 / 12, "inches")
  16651. },
  16652. {
  16653. name: "Macro",
  16654. height: math.unit(80, "meters"),
  16655. default: true
  16656. },
  16657. {
  16658. name: "Megamacro",
  16659. height: math.unit(250, "meters")
  16660. },
  16661. {
  16662. name: "Gigamacro",
  16663. height: math.unit(5, "km")
  16664. },
  16665. {
  16666. name: "Cosmic",
  16667. height: math.unit(2.5e6, "miles")
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16673. {
  16674. front: {
  16675. height: math.unit(6, "feet"),
  16676. weight: math.unit(150, "lb"),
  16677. name: "Front",
  16678. image: {
  16679. source: "./media/characters/hanzo/front.svg",
  16680. extra: 374 / 344,
  16681. bottom: 0.02
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(8, "feet"),
  16689. default: true
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16695. {
  16696. front: {
  16697. height: math.unit(7, "feet"),
  16698. weight: math.unit(130, "lb"),
  16699. name: "Front",
  16700. image: {
  16701. source: "./media/characters/anna/front.svg",
  16702. extra: 169 / 145,
  16703. bottom: 0.06
  16704. }
  16705. },
  16706. full: {
  16707. height: math.unit(4.96, "feet"),
  16708. weight: math.unit(220, "lb"),
  16709. name: "Full",
  16710. image: {
  16711. source: "./media/characters/anna/full.svg",
  16712. extra: 138 / 114,
  16713. bottom: 0.15
  16714. }
  16715. },
  16716. tongue: {
  16717. height: math.unit(2.53, "feet"),
  16718. name: "Tongue",
  16719. image: {
  16720. source: "./media/characters/anna/tongue.svg"
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Normal",
  16727. height: math.unit(7, "feet"),
  16728. default: true
  16729. },
  16730. ]
  16731. ))
  16732. characterMakers.push(() => makeCharacter(
  16733. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16734. {
  16735. front: {
  16736. height: math.unit(7, "feet"),
  16737. weight: math.unit(150, "lb"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/ian-corvid/front.svg",
  16741. extra: 150 / 142,
  16742. bottom: 0.02
  16743. }
  16744. },
  16745. back: {
  16746. height: math.unit(7, "feet"),
  16747. weight: math.unit(150, "lb"),
  16748. name: "Back",
  16749. image: {
  16750. source: "./media/characters/ian-corvid/back.svg",
  16751. extra: 150 / 143,
  16752. bottom: 0.01
  16753. }
  16754. },
  16755. stomping: {
  16756. height: math.unit(7, "feet"),
  16757. weight: math.unit(150, "lb"),
  16758. name: "Stomping",
  16759. image: {
  16760. source: "./media/characters/ian-corvid/stomping.svg",
  16761. extra: 76 / 72
  16762. }
  16763. },
  16764. sitting: {
  16765. height: math.unit(7 / 1.8, "feet"),
  16766. weight: math.unit(150, "lb"),
  16767. name: "Sitting",
  16768. image: {
  16769. source: "./media/characters/ian-corvid/sitting.svg",
  16770. extra: 1400 / 1269,
  16771. bottom: 0.15
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Tiny Microw",
  16778. height: math.unit(1, "inch")
  16779. },
  16780. {
  16781. name: "Microw",
  16782. height: math.unit(6, "inches")
  16783. },
  16784. {
  16785. name: "Crow",
  16786. height: math.unit(7 + 1 / 12, "feet"),
  16787. default: true
  16788. },
  16789. {
  16790. name: "Macrow",
  16791. height: math.unit(176, "feet")
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16797. {
  16798. front: {
  16799. height: math.unit(5 + 7 / 12, "feet"),
  16800. weight: math.unit(147, "lb"),
  16801. name: "Front",
  16802. image: {
  16803. source: "./media/characters/natalie-kellon/front.svg",
  16804. extra: 1214 / 1141,
  16805. bottom: 0.02
  16806. }
  16807. },
  16808. },
  16809. [
  16810. {
  16811. name: "Micro",
  16812. height: math.unit(1 / 16, "inch")
  16813. },
  16814. {
  16815. name: "Tiny",
  16816. height: math.unit(4, "inches")
  16817. },
  16818. {
  16819. name: "Normal",
  16820. height: math.unit(5 + 7 / 12, "feet"),
  16821. default: true
  16822. },
  16823. {
  16824. name: "Amazon",
  16825. height: math.unit(12, "feet")
  16826. },
  16827. {
  16828. name: "Giantess",
  16829. height: math.unit(160, "meters")
  16830. },
  16831. {
  16832. name: "Titaness",
  16833. height: math.unit(800, "meters")
  16834. },
  16835. ]
  16836. ))
  16837. characterMakers.push(() => makeCharacter(
  16838. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16839. {
  16840. front: {
  16841. height: math.unit(6, "feet"),
  16842. weight: math.unit(150, "lb"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/alluria/front.svg",
  16846. extra: 806 / 738,
  16847. bottom: 0.01
  16848. }
  16849. },
  16850. side: {
  16851. height: math.unit(6, "feet"),
  16852. weight: math.unit(150, "lb"),
  16853. name: "Side",
  16854. image: {
  16855. source: "./media/characters/alluria/side.svg",
  16856. extra: 800 / 750,
  16857. }
  16858. },
  16859. back: {
  16860. height: math.unit(6, "feet"),
  16861. weight: math.unit(150, "lb"),
  16862. name: "Back",
  16863. image: {
  16864. source: "./media/characters/alluria/back.svg",
  16865. extra: 806 / 738,
  16866. }
  16867. },
  16868. frontMaid: {
  16869. height: math.unit(6, "feet"),
  16870. weight: math.unit(150, "lb"),
  16871. name: "Front (Maid)",
  16872. image: {
  16873. source: "./media/characters/alluria/front-maid.svg",
  16874. extra: 806 / 738,
  16875. bottom: 0.01
  16876. }
  16877. },
  16878. sideMaid: {
  16879. height: math.unit(6, "feet"),
  16880. weight: math.unit(150, "lb"),
  16881. name: "Side (Maid)",
  16882. image: {
  16883. source: "./media/characters/alluria/side-maid.svg",
  16884. extra: 800 / 750,
  16885. bottom: 0.005
  16886. }
  16887. },
  16888. backMaid: {
  16889. height: math.unit(6, "feet"),
  16890. weight: math.unit(150, "lb"),
  16891. name: "Back (Maid)",
  16892. image: {
  16893. source: "./media/characters/alluria/back-maid.svg",
  16894. extra: 806 / 738,
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Micro",
  16901. height: math.unit(6, "inches"),
  16902. default: true
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16908. {
  16909. front: {
  16910. height: math.unit(6, "feet"),
  16911. weight: math.unit(150, "lb"),
  16912. name: "Front",
  16913. image: {
  16914. source: "./media/characters/kyle/front.svg",
  16915. extra: 1069 / 962,
  16916. bottom: 77.228 / 1727.45
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Macro",
  16923. height: math.unit(150, "feet"),
  16924. default: true
  16925. },
  16926. ]
  16927. ))
  16928. characterMakers.push(() => makeCharacter(
  16929. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16930. {
  16931. front: {
  16932. height: math.unit(6, "feet"),
  16933. weight: math.unit(300, "lb"),
  16934. name: "Front",
  16935. image: {
  16936. source: "./media/characters/duncan/front.svg",
  16937. extra: 1650 / 1482,
  16938. bottom: 0.05
  16939. }
  16940. },
  16941. },
  16942. [
  16943. {
  16944. name: "Macro",
  16945. height: math.unit(100, "feet"),
  16946. default: true
  16947. },
  16948. ]
  16949. ))
  16950. characterMakers.push(() => makeCharacter(
  16951. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16952. {
  16953. front: {
  16954. height: math.unit(5 + 4 / 12, "feet"),
  16955. weight: math.unit(220, "lb"),
  16956. name: "Front",
  16957. image: {
  16958. source: "./media/characters/memory/front.svg",
  16959. extra: 3641 / 3545,
  16960. bottom: 0.03
  16961. }
  16962. },
  16963. back: {
  16964. height: math.unit(5 + 4 / 12, "feet"),
  16965. weight: math.unit(220, "lb"),
  16966. name: "Back",
  16967. image: {
  16968. source: "./media/characters/memory/back.svg",
  16969. extra: 3641 / 3545,
  16970. bottom: 0.025
  16971. }
  16972. },
  16973. frontSkirt: {
  16974. height: math.unit(5 + 4 / 12, "feet"),
  16975. weight: math.unit(220, "lb"),
  16976. name: "Front (Skirt)",
  16977. image: {
  16978. source: "./media/characters/memory/front-skirt.svg",
  16979. extra: 3641 / 3545,
  16980. bottom: 0.03
  16981. }
  16982. },
  16983. frontDress: {
  16984. height: math.unit(5 + 4 / 12, "feet"),
  16985. weight: math.unit(220, "lb"),
  16986. name: "Front (Dress)",
  16987. image: {
  16988. source: "./media/characters/memory/front-dress.svg",
  16989. extra: 3641 / 3545,
  16990. bottom: 0.03
  16991. }
  16992. },
  16993. },
  16994. [
  16995. {
  16996. name: "Micro",
  16997. height: math.unit(6, "inches"),
  16998. default: true
  16999. },
  17000. {
  17001. name: "Normal",
  17002. height: math.unit(5 + 4 / 12, "feet")
  17003. },
  17004. ]
  17005. ))
  17006. characterMakers.push(() => makeCharacter(
  17007. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17008. {
  17009. front: {
  17010. height: math.unit(4 + 11 / 12, "feet"),
  17011. weight: math.unit(100, "lb"),
  17012. name: "Front",
  17013. image: {
  17014. source: "./media/characters/luno/front.svg",
  17015. extra: 1535 / 1487,
  17016. bottom: 0.03
  17017. }
  17018. },
  17019. },
  17020. [
  17021. {
  17022. name: "Micro",
  17023. height: math.unit(3, "inches")
  17024. },
  17025. {
  17026. name: "Normal",
  17027. height: math.unit(4 + 11 / 12, "feet"),
  17028. default: true
  17029. },
  17030. {
  17031. name: "Macro",
  17032. height: math.unit(300, "feet")
  17033. },
  17034. {
  17035. name: "Megamacro",
  17036. height: math.unit(700, "miles")
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17042. {
  17043. front: {
  17044. height: math.unit(6 + 2 / 12, "feet"),
  17045. weight: math.unit(170, "lb"),
  17046. name: "Front",
  17047. image: {
  17048. source: "./media/characters/jamesy/front.svg",
  17049. extra: 440 / 382,
  17050. bottom: 0.005
  17051. }
  17052. },
  17053. },
  17054. [
  17055. {
  17056. name: "Micro",
  17057. height: math.unit(3, "inches")
  17058. },
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(6 + 2 / 12, "feet"),
  17062. default: true
  17063. },
  17064. {
  17065. name: "Macro",
  17066. height: math.unit(300, "feet")
  17067. },
  17068. {
  17069. name: "Megamacro",
  17070. height: math.unit(700, "miles")
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17076. {
  17077. front: {
  17078. height: math.unit(6, "feet"),
  17079. weight: math.unit(160, "lb"),
  17080. name: "Front",
  17081. image: {
  17082. source: "./media/characters/mark/front.svg",
  17083. extra: 3300 / 3100,
  17084. bottom: 136.42 / 3440.47
  17085. }
  17086. },
  17087. },
  17088. [
  17089. {
  17090. name: "Macro",
  17091. height: math.unit(120, "meters")
  17092. },
  17093. {
  17094. name: "Bigger Macro",
  17095. height: math.unit(350, "meters")
  17096. },
  17097. {
  17098. name: "Megamacro",
  17099. height: math.unit(8, "km"),
  17100. default: true
  17101. },
  17102. {
  17103. name: "Continental",
  17104. height: math.unit(4550, "km")
  17105. },
  17106. {
  17107. name: "Planetary",
  17108. height: math.unit(65000, "km")
  17109. },
  17110. ]
  17111. ))
  17112. characterMakers.push(() => makeCharacter(
  17113. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17114. {
  17115. front: {
  17116. height: math.unit(6, "feet"),
  17117. weight: math.unit(400, "lb"),
  17118. name: "Front",
  17119. image: {
  17120. source: "./media/characters/mac/front.svg",
  17121. extra: 1048 / 987.7,
  17122. bottom: 60 / 1107.6,
  17123. }
  17124. },
  17125. },
  17126. [
  17127. {
  17128. name: "Macro",
  17129. height: math.unit(500, "feet"),
  17130. default: true
  17131. },
  17132. ]
  17133. ))
  17134. characterMakers.push(() => makeCharacter(
  17135. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17136. {
  17137. front: {
  17138. height: math.unit(5 + 2 / 12, "feet"),
  17139. weight: math.unit(190, "lb"),
  17140. name: "Front",
  17141. image: {
  17142. source: "./media/characters/bari/front.svg",
  17143. extra: 3156 / 2880,
  17144. bottom: 0.03
  17145. }
  17146. },
  17147. back: {
  17148. height: math.unit(5 + 2 / 12, "feet"),
  17149. weight: math.unit(190, "lb"),
  17150. name: "Back",
  17151. image: {
  17152. source: "./media/characters/bari/back.svg",
  17153. extra: 3260 / 2834,
  17154. bottom: 0.025
  17155. }
  17156. },
  17157. frontPlush: {
  17158. height: math.unit(5 + 2 / 12, "feet"),
  17159. weight: math.unit(190, "lb"),
  17160. name: "Front (Plush)",
  17161. image: {
  17162. source: "./media/characters/bari/front-plush.svg",
  17163. extra: 1112 / 1061,
  17164. bottom: 0.002
  17165. }
  17166. },
  17167. },
  17168. [
  17169. {
  17170. name: "Micro",
  17171. height: math.unit(3, "inches")
  17172. },
  17173. {
  17174. name: "Normal",
  17175. height: math.unit(5 + 2 / 12, "feet"),
  17176. default: true
  17177. },
  17178. {
  17179. name: "Macro",
  17180. height: math.unit(20, "feet")
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17186. {
  17187. front: {
  17188. height: math.unit(6 + 1 / 12, "feet"),
  17189. weight: math.unit(275, "lb"),
  17190. name: "Front",
  17191. image: {
  17192. source: "./media/characters/hunter-misha-raven/front.svg"
  17193. }
  17194. },
  17195. },
  17196. [
  17197. {
  17198. name: "Mortal",
  17199. height: math.unit(6 + 1 / 12, "feet")
  17200. },
  17201. {
  17202. name: "Divine",
  17203. height: math.unit(1.12134e34, "parsecs"),
  17204. default: true
  17205. },
  17206. ]
  17207. ))
  17208. characterMakers.push(() => makeCharacter(
  17209. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17210. {
  17211. front: {
  17212. height: math.unit(6 + 3 / 12, "feet"),
  17213. weight: math.unit(220, "lb"),
  17214. name: "Front",
  17215. image: {
  17216. source: "./media/characters/max-calore/front.svg",
  17217. extra: 1700 / 1648,
  17218. bottom: 0.01
  17219. }
  17220. },
  17221. back: {
  17222. height: math.unit(6 + 3 / 12, "feet"),
  17223. weight: math.unit(220, "lb"),
  17224. name: "Back",
  17225. image: {
  17226. source: "./media/characters/max-calore/back.svg",
  17227. extra: 1700 / 1648,
  17228. bottom: 0.01
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(6 + 3 / 12, "feet"),
  17236. default: true
  17237. },
  17238. ]
  17239. ))
  17240. characterMakers.push(() => makeCharacter(
  17241. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17242. {
  17243. side: {
  17244. height: math.unit(2 + 8 / 12, "feet"),
  17245. weight: math.unit(99, "lb"),
  17246. name: "Side",
  17247. image: {
  17248. source: "./media/characters/aspen/side.svg",
  17249. extra: 152 / 138,
  17250. bottom: 0.032
  17251. }
  17252. },
  17253. },
  17254. [
  17255. {
  17256. name: "Normal",
  17257. height: math.unit(2 + 8 / 12, "feet"),
  17258. default: true
  17259. },
  17260. ]
  17261. ))
  17262. characterMakers.push(() => makeCharacter(
  17263. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17264. {
  17265. side: {
  17266. height: math.unit(3 + 2 / 12, "feet"),
  17267. weight: math.unit(224, "lb"),
  17268. name: "Side",
  17269. image: {
  17270. source: "./media/characters/sheila-feral-wolf/side.svg",
  17271. extra: 179 / 166,
  17272. bottom: 0.03
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(3 + 2 / 12, "feet"),
  17280. default: true
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17286. {
  17287. side: {
  17288. height: math.unit(1 + 9 / 12, "feet"),
  17289. weight: math.unit(38, "lb"),
  17290. name: "Side",
  17291. image: {
  17292. source: "./media/characters/michelle/side.svg",
  17293. extra: 147 / 136.7,
  17294. bottom: 0.03
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Normal",
  17301. height: math.unit(1 + 9 / 12, "feet"),
  17302. default: true
  17303. },
  17304. ]
  17305. ))
  17306. characterMakers.push(() => makeCharacter(
  17307. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17308. {
  17309. front: {
  17310. height: math.unit(1.54, "feet"),
  17311. weight: math.unit(50, "lb"),
  17312. name: "Front",
  17313. image: {
  17314. source: "./media/characters/nino/front.svg"
  17315. }
  17316. },
  17317. },
  17318. [
  17319. {
  17320. name: "Normal",
  17321. height: math.unit(1.54, "feet"),
  17322. default: true
  17323. },
  17324. ]
  17325. ))
  17326. characterMakers.push(() => makeCharacter(
  17327. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17328. {
  17329. front: {
  17330. height: math.unit(1.49, "feet"),
  17331. weight: math.unit(45, "lb"),
  17332. name: "Front",
  17333. image: {
  17334. source: "./media/characters/viola/front.svg"
  17335. }
  17336. },
  17337. },
  17338. [
  17339. {
  17340. name: "Normal",
  17341. height: math.unit(1.49, "feet"),
  17342. default: true
  17343. },
  17344. ]
  17345. ))
  17346. characterMakers.push(() => makeCharacter(
  17347. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17348. {
  17349. front: {
  17350. height: math.unit(6 + 5 / 12, "feet"),
  17351. weight: math.unit(580, "lb"),
  17352. name: "Front",
  17353. image: {
  17354. source: "./media/characters/atlas/front.svg",
  17355. extra: 298.5 / 290,
  17356. bottom: 0.015
  17357. }
  17358. },
  17359. },
  17360. [
  17361. {
  17362. name: "Normal",
  17363. height: math.unit(6 + 5 / 12, "feet"),
  17364. default: true
  17365. },
  17366. ]
  17367. ))
  17368. characterMakers.push(() => makeCharacter(
  17369. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17370. {
  17371. side: {
  17372. height: math.unit(15.6, "inches"),
  17373. weight: math.unit(10, "lb"),
  17374. name: "Side",
  17375. image: {
  17376. source: "./media/characters/davy/side.svg",
  17377. extra: 200 / 170,
  17378. bottom: 0.01
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(15.6, "inches"),
  17386. default: true
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17392. {
  17393. side: {
  17394. height: math.unit(4 + 8 / 12, "feet"),
  17395. weight: math.unit(166, "lb"),
  17396. name: "Side",
  17397. image: {
  17398. source: "./media/characters/fiona/side.svg",
  17399. extra: 232 / 220,
  17400. bottom: 0.03
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Normal",
  17407. height: math.unit(4 + 8 / 12, "feet"),
  17408. default: true
  17409. },
  17410. ]
  17411. ))
  17412. characterMakers.push(() => makeCharacter(
  17413. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17414. {
  17415. front: {
  17416. height: math.unit(26, "inches"),
  17417. weight: math.unit(35, "lb"),
  17418. name: "Front",
  17419. image: {
  17420. source: "./media/characters/lyla/front.svg",
  17421. bottom: 0.1
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(3, "feet"),
  17429. default: true
  17430. },
  17431. ]
  17432. ))
  17433. characterMakers.push(() => makeCharacter(
  17434. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17435. {
  17436. side: {
  17437. height: math.unit(1.8, "feet"),
  17438. weight: math.unit(44, "lb"),
  17439. name: "Side",
  17440. image: {
  17441. source: "./media/characters/perseus/side.svg",
  17442. bottom: 0.21
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Normal",
  17449. height: math.unit(1.8, "feet"),
  17450. default: true
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17456. {
  17457. side: {
  17458. height: math.unit(4 + 2 / 12, "feet"),
  17459. weight: math.unit(20, "lb"),
  17460. name: "Side",
  17461. image: {
  17462. source: "./media/characters/remus/side.svg"
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(4 + 2 / 12, "feet"),
  17470. default: true
  17471. },
  17472. ]
  17473. ))
  17474. characterMakers.push(() => makeCharacter(
  17475. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17476. {
  17477. front: {
  17478. height: math.unit(4 + 11 / 12, "feet"),
  17479. weight: math.unit(114, "lb"),
  17480. name: "Front",
  17481. image: {
  17482. source: "./media/characters/raf/front.svg",
  17483. extra: 1504/1339,
  17484. bottom: 26/1530
  17485. }
  17486. },
  17487. side: {
  17488. height: math.unit(4 + 11 / 12, "feet"),
  17489. weight: math.unit(114, "lb"),
  17490. name: "Side",
  17491. image: {
  17492. source: "./media/characters/raf/side.svg",
  17493. extra: 1466/1316,
  17494. bottom: 29/1495
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Micro",
  17501. height: math.unit(2, "inches")
  17502. },
  17503. {
  17504. name: "Normal",
  17505. height: math.unit(4 + 11 / 12, "feet"),
  17506. default: true
  17507. },
  17508. {
  17509. name: "Macro",
  17510. height: math.unit(70, "feet")
  17511. },
  17512. ]
  17513. ))
  17514. characterMakers.push(() => makeCharacter(
  17515. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17516. {
  17517. front: {
  17518. height: math.unit(1.5, "meters"),
  17519. weight: math.unit(68, "kg"),
  17520. name: "Front",
  17521. image: {
  17522. source: "./media/characters/liam-einarr/front.svg",
  17523. extra: 2822 / 2666
  17524. }
  17525. },
  17526. back: {
  17527. height: math.unit(1.5, "meters"),
  17528. weight: math.unit(68, "kg"),
  17529. name: "Back",
  17530. image: {
  17531. source: "./media/characters/liam-einarr/back.svg",
  17532. extra: 2822 / 2666,
  17533. bottom: 0.015
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Normal",
  17540. height: math.unit(1.5, "meters"),
  17541. default: true
  17542. },
  17543. {
  17544. name: "Macro",
  17545. height: math.unit(150, "meters")
  17546. },
  17547. {
  17548. name: "Megamacro",
  17549. height: math.unit(35, "km")
  17550. },
  17551. ]
  17552. ))
  17553. characterMakers.push(() => makeCharacter(
  17554. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17555. {
  17556. front: {
  17557. height: math.unit(6, "feet"),
  17558. weight: math.unit(75, "kg"),
  17559. name: "Front",
  17560. image: {
  17561. source: "./media/characters/linda/front.svg",
  17562. extra: 930 / 874,
  17563. bottom: 0.004
  17564. }
  17565. },
  17566. },
  17567. [
  17568. {
  17569. name: "Normal",
  17570. height: math.unit(6, "feet"),
  17571. default: true
  17572. },
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17577. {
  17578. front: {
  17579. height: math.unit(6 + 8 / 12, "feet"),
  17580. weight: math.unit(220, "lb"),
  17581. name: "Front",
  17582. image: {
  17583. source: "./media/characters/caylex/front.svg",
  17584. extra: 821 / 772,
  17585. bottom: 0.07
  17586. }
  17587. },
  17588. back: {
  17589. height: math.unit(6 + 8 / 12, "feet"),
  17590. weight: math.unit(220, "lb"),
  17591. name: "Back",
  17592. image: {
  17593. source: "./media/characters/caylex/back.svg",
  17594. extra: 821 / 772,
  17595. bottom: 0.022
  17596. }
  17597. },
  17598. hand: {
  17599. height: math.unit(1.25, "feet"),
  17600. name: "Hand",
  17601. image: {
  17602. source: "./media/characters/caylex/hand.svg"
  17603. }
  17604. },
  17605. foot: {
  17606. height: math.unit(1.6, "feet"),
  17607. name: "Foot",
  17608. image: {
  17609. source: "./media/characters/caylex/foot.svg"
  17610. }
  17611. },
  17612. armored: {
  17613. height: math.unit(6 + 8 / 12, "feet"),
  17614. weight: math.unit(250, "lb"),
  17615. name: "Armored",
  17616. image: {
  17617. source: "./media/characters/caylex/armored.svg",
  17618. extra: 1420 / 1310,
  17619. bottom: 0.045
  17620. }
  17621. },
  17622. },
  17623. [
  17624. {
  17625. name: "Normal",
  17626. height: math.unit(6 + 8 / 12, "feet"),
  17627. default: true
  17628. },
  17629. {
  17630. name: "Normal+",
  17631. height: math.unit(12, "feet")
  17632. },
  17633. ]
  17634. ))
  17635. characterMakers.push(() => makeCharacter(
  17636. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17637. {
  17638. front: {
  17639. height: math.unit(7 + 6 / 12, "feet"),
  17640. weight: math.unit(288, "lb"),
  17641. name: "Front",
  17642. image: {
  17643. source: "./media/characters/alana/front.svg",
  17644. extra: 679 / 653,
  17645. bottom: 22.5 / 701
  17646. }
  17647. },
  17648. },
  17649. [
  17650. {
  17651. name: "Normal",
  17652. height: math.unit(7 + 6 / 12, "feet")
  17653. },
  17654. {
  17655. name: "Large",
  17656. height: math.unit(50, "feet")
  17657. },
  17658. {
  17659. name: "Macro",
  17660. height: math.unit(100, "feet"),
  17661. default: true
  17662. },
  17663. {
  17664. name: "Macro+",
  17665. height: math.unit(200, "feet")
  17666. },
  17667. ]
  17668. ))
  17669. characterMakers.push(() => makeCharacter(
  17670. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17671. {
  17672. front: {
  17673. height: math.unit(6 + 1 / 12, "feet"),
  17674. weight: math.unit(210, "lb"),
  17675. name: "Front",
  17676. image: {
  17677. source: "./media/characters/hasani/front.svg",
  17678. extra: 244 / 232,
  17679. bottom: 0.01
  17680. }
  17681. },
  17682. back: {
  17683. height: math.unit(6 + 1 / 12, "feet"),
  17684. weight: math.unit(210, "lb"),
  17685. name: "Back",
  17686. image: {
  17687. source: "./media/characters/hasani/back.svg",
  17688. extra: 244 / 232,
  17689. bottom: 0.01
  17690. }
  17691. },
  17692. },
  17693. [
  17694. {
  17695. name: "Normal",
  17696. height: math.unit(6 + 1 / 12, "feet")
  17697. },
  17698. {
  17699. name: "Macro",
  17700. height: math.unit(175, "feet"),
  17701. default: true
  17702. },
  17703. ]
  17704. ))
  17705. characterMakers.push(() => makeCharacter(
  17706. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17707. {
  17708. front: {
  17709. height: math.unit(1.82, "meters"),
  17710. weight: math.unit(140, "lb"),
  17711. name: "Front",
  17712. image: {
  17713. source: "./media/characters/nita/front.svg",
  17714. extra: 2473 / 2363,
  17715. bottom: 0.01
  17716. }
  17717. },
  17718. },
  17719. [
  17720. {
  17721. name: "Normal",
  17722. height: math.unit(1.82, "m")
  17723. },
  17724. {
  17725. name: "Macro",
  17726. height: math.unit(300, "m")
  17727. },
  17728. {
  17729. name: "Mistake Canon",
  17730. height: math.unit(0.5, "miles"),
  17731. default: true
  17732. },
  17733. {
  17734. name: "Big Mistake",
  17735. height: math.unit(13, "miles")
  17736. },
  17737. {
  17738. name: "Playing God",
  17739. height: math.unit(2450, "miles")
  17740. },
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(4, "feet"),
  17748. weight: math.unit(120, "lb"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/shiriko/front.svg",
  17752. extra: 970/934,
  17753. bottom: 5/975
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(4, "feet"),
  17761. default: true
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17767. {
  17768. front: {
  17769. height: math.unit(6, "feet"),
  17770. name: "front",
  17771. image: {
  17772. source: "./media/characters/deja/front.svg",
  17773. extra: 926 / 840,
  17774. bottom: 0.07
  17775. }
  17776. },
  17777. },
  17778. [
  17779. {
  17780. name: "Planck Length",
  17781. height: math.unit(1.6e-35, "meters")
  17782. },
  17783. {
  17784. name: "Normal",
  17785. height: math.unit(30.48, "meters"),
  17786. default: true
  17787. },
  17788. {
  17789. name: "Universal",
  17790. height: math.unit(8.8e26, "meters")
  17791. },
  17792. ]
  17793. ))
  17794. characterMakers.push(() => makeCharacter(
  17795. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17796. {
  17797. side: {
  17798. height: math.unit(8, "feet"),
  17799. weight: math.unit(6300, "lb"),
  17800. name: "Side",
  17801. image: {
  17802. source: "./media/characters/anima/side.svg",
  17803. bottom: 0.035
  17804. }
  17805. },
  17806. },
  17807. [
  17808. {
  17809. name: "Normal",
  17810. height: math.unit(8, "feet"),
  17811. default: true
  17812. },
  17813. ]
  17814. ))
  17815. characterMakers.push(() => makeCharacter(
  17816. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17817. {
  17818. front: {
  17819. height: math.unit(8, "feet"),
  17820. weight: math.unit(350, "lb"),
  17821. name: "Front",
  17822. image: {
  17823. source: "./media/characters/bianca/front.svg",
  17824. extra: 234 / 225,
  17825. bottom: 0.03
  17826. }
  17827. },
  17828. },
  17829. [
  17830. {
  17831. name: "Normal",
  17832. height: math.unit(8, "feet"),
  17833. default: true
  17834. },
  17835. ]
  17836. ))
  17837. characterMakers.push(() => makeCharacter(
  17838. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17839. {
  17840. front: {
  17841. height: math.unit(6, "feet"),
  17842. weight: math.unit(150, "lb"),
  17843. name: "Front",
  17844. image: {
  17845. source: "./media/characters/adinia/front.svg",
  17846. extra: 1845 / 1672,
  17847. bottom: 0.02
  17848. }
  17849. },
  17850. back: {
  17851. height: math.unit(6, "feet"),
  17852. weight: math.unit(150, "lb"),
  17853. name: "Back",
  17854. image: {
  17855. source: "./media/characters/adinia/back.svg",
  17856. extra: 1845 / 1672,
  17857. bottom: 0.002
  17858. }
  17859. },
  17860. },
  17861. [
  17862. {
  17863. name: "Normal",
  17864. height: math.unit(11 + 5 / 12, "feet"),
  17865. default: true
  17866. },
  17867. ]
  17868. ))
  17869. characterMakers.push(() => makeCharacter(
  17870. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17871. {
  17872. front: {
  17873. height: math.unit(3, "meters"),
  17874. weight: math.unit(200, "kg"),
  17875. name: "Front",
  17876. image: {
  17877. source: "./media/characters/lykasa/front.svg",
  17878. extra: 1076 / 976,
  17879. bottom: 0.06
  17880. }
  17881. },
  17882. },
  17883. [
  17884. {
  17885. name: "Normal",
  17886. height: math.unit(3, "meters")
  17887. },
  17888. {
  17889. name: "Kaiju",
  17890. height: math.unit(120, "meters"),
  17891. default: true
  17892. },
  17893. {
  17894. name: "Mega Kaiju",
  17895. height: math.unit(240, "km")
  17896. },
  17897. {
  17898. name: "Giga Kaiju",
  17899. height: math.unit(400, "megameters")
  17900. },
  17901. {
  17902. name: "Tera Kaiju",
  17903. height: math.unit(800, "gigameters")
  17904. },
  17905. {
  17906. name: "Kaiju Dragon Goddess",
  17907. height: math.unit(26, "zettaparsecs")
  17908. },
  17909. ]
  17910. ))
  17911. characterMakers.push(() => makeCharacter(
  17912. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17913. {
  17914. side: {
  17915. height: math.unit(283 / 124 * 6, "feet"),
  17916. weight: math.unit(35000, "lb"),
  17917. name: "Side",
  17918. image: {
  17919. source: "./media/characters/malfaren/side.svg",
  17920. extra: 1310/529,
  17921. bottom: 24/1334
  17922. }
  17923. },
  17924. front: {
  17925. height: math.unit(22.36, "feet"),
  17926. weight: math.unit(35000, "lb"),
  17927. name: "Front",
  17928. image: {
  17929. source: "./media/characters/malfaren/front.svg",
  17930. extra: 1237/1115,
  17931. bottom: 32/1269
  17932. }
  17933. },
  17934. maw: {
  17935. height: math.unit(6.9, "feet"),
  17936. name: "Maw",
  17937. image: {
  17938. source: "./media/characters/malfaren/maw.svg"
  17939. }
  17940. },
  17941. dick: {
  17942. height: math.unit(6.19, "feet"),
  17943. name: "Dick",
  17944. image: {
  17945. source: "./media/characters/malfaren/dick.svg"
  17946. }
  17947. },
  17948. eye: {
  17949. height: math.unit(0.69, "feet"),
  17950. name: "Eye",
  17951. image: {
  17952. source: "./media/characters/malfaren/eye.svg"
  17953. }
  17954. },
  17955. },
  17956. [
  17957. {
  17958. name: "Big",
  17959. height: math.unit(283 / 162 * 6, "feet"),
  17960. },
  17961. {
  17962. name: "Bigger",
  17963. height: math.unit(283 / 124 * 6, "feet")
  17964. },
  17965. {
  17966. name: "Massive",
  17967. height: math.unit(283 / 92 * 6, "feet"),
  17968. default: true
  17969. },
  17970. {
  17971. name: "👀💦",
  17972. height: math.unit(283 / 73 * 6, "feet"),
  17973. },
  17974. ]
  17975. ))
  17976. characterMakers.push(() => makeCharacter(
  17977. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17978. {
  17979. front: {
  17980. height: math.unit(1.7, "m"),
  17981. weight: math.unit(70, "kg"),
  17982. name: "Front",
  17983. image: {
  17984. source: "./media/characters/kernel/front.svg",
  17985. extra: 222 / 210,
  17986. bottom: 0.007
  17987. }
  17988. },
  17989. },
  17990. [
  17991. {
  17992. name: "Nano",
  17993. height: math.unit(17, "micrometers")
  17994. },
  17995. {
  17996. name: "Micro",
  17997. height: math.unit(1.7, "mm")
  17998. },
  17999. {
  18000. name: "Small",
  18001. height: math.unit(1.7, "cm")
  18002. },
  18003. {
  18004. name: "Normal",
  18005. height: math.unit(1.7, "m"),
  18006. default: true
  18007. },
  18008. ]
  18009. ))
  18010. characterMakers.push(() => makeCharacter(
  18011. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18012. {
  18013. front: {
  18014. height: math.unit(1.75, "meters"),
  18015. weight: math.unit(65, "kg"),
  18016. name: "Front",
  18017. image: {
  18018. source: "./media/characters/jayne-folest/front.svg",
  18019. extra: 2115 / 2007,
  18020. bottom: 0.02
  18021. }
  18022. },
  18023. back: {
  18024. height: math.unit(1.75, "meters"),
  18025. weight: math.unit(65, "kg"),
  18026. name: "Back",
  18027. image: {
  18028. source: "./media/characters/jayne-folest/back.svg",
  18029. extra: 2115 / 2007,
  18030. bottom: 0.005
  18031. }
  18032. },
  18033. frontClothed: {
  18034. height: math.unit(1.75, "meters"),
  18035. weight: math.unit(65, "kg"),
  18036. name: "Front (Clothed)",
  18037. image: {
  18038. source: "./media/characters/jayne-folest/front-clothed.svg",
  18039. extra: 2115 / 2007,
  18040. bottom: 0.035
  18041. }
  18042. },
  18043. hand: {
  18044. height: math.unit(1 / 1.260, "feet"),
  18045. name: "Hand",
  18046. image: {
  18047. source: "./media/characters/jayne-folest/hand.svg"
  18048. }
  18049. },
  18050. foot: {
  18051. height: math.unit(1 / 0.918, "feet"),
  18052. name: "Foot",
  18053. image: {
  18054. source: "./media/characters/jayne-folest/foot.svg"
  18055. }
  18056. },
  18057. },
  18058. [
  18059. {
  18060. name: "Micro",
  18061. height: math.unit(4, "cm")
  18062. },
  18063. {
  18064. name: "Normal",
  18065. height: math.unit(1.75, "meters")
  18066. },
  18067. {
  18068. name: "Macro",
  18069. height: math.unit(47.5, "meters"),
  18070. default: true
  18071. },
  18072. ]
  18073. ))
  18074. characterMakers.push(() => makeCharacter(
  18075. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18076. {
  18077. front: {
  18078. height: math.unit(180, "cm"),
  18079. weight: math.unit(70, "kg"),
  18080. name: "Front",
  18081. image: {
  18082. source: "./media/characters/algier/front.svg",
  18083. extra: 596 / 572,
  18084. bottom: 0.04
  18085. }
  18086. },
  18087. back: {
  18088. height: math.unit(180, "cm"),
  18089. weight: math.unit(70, "kg"),
  18090. name: "Back",
  18091. image: {
  18092. source: "./media/characters/algier/back.svg",
  18093. extra: 596 / 572,
  18094. bottom: 0.025
  18095. }
  18096. },
  18097. frontdressed: {
  18098. height: math.unit(180, "cm"),
  18099. weight: math.unit(150, "kg"),
  18100. name: "Front-dressed",
  18101. image: {
  18102. source: "./media/characters/algier/front-dressed.svg",
  18103. extra: 596 / 572,
  18104. bottom: 0.038
  18105. }
  18106. },
  18107. },
  18108. [
  18109. {
  18110. name: "Micro",
  18111. height: math.unit(5, "cm")
  18112. },
  18113. {
  18114. name: "Normal",
  18115. height: math.unit(180, "cm"),
  18116. default: true
  18117. },
  18118. {
  18119. name: "Macro",
  18120. height: math.unit(64, "m")
  18121. },
  18122. ]
  18123. ))
  18124. characterMakers.push(() => makeCharacter(
  18125. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18126. {
  18127. upright: {
  18128. height: math.unit(7, "feet"),
  18129. weight: math.unit(300, "lb"),
  18130. name: "Upright",
  18131. image: {
  18132. source: "./media/characters/pretzel/upright.svg",
  18133. extra: 534 / 522,
  18134. bottom: 0.065
  18135. }
  18136. },
  18137. sprawling: {
  18138. height: math.unit(3.75, "feet"),
  18139. weight: math.unit(300, "lb"),
  18140. name: "Sprawling",
  18141. image: {
  18142. source: "./media/characters/pretzel/sprawling.svg",
  18143. extra: 314 / 281,
  18144. bottom: 0.1
  18145. }
  18146. },
  18147. tongue: {
  18148. height: math.unit(2, "feet"),
  18149. name: "Tongue",
  18150. image: {
  18151. source: "./media/characters/pretzel/tongue.svg"
  18152. }
  18153. },
  18154. },
  18155. [
  18156. {
  18157. name: "Normal",
  18158. height: math.unit(7, "feet"),
  18159. default: true
  18160. },
  18161. {
  18162. name: "Oversized",
  18163. height: math.unit(15, "feet")
  18164. },
  18165. {
  18166. name: "Huge",
  18167. height: math.unit(30, "feet")
  18168. },
  18169. {
  18170. name: "Macro",
  18171. height: math.unit(250, "feet")
  18172. },
  18173. ]
  18174. ))
  18175. characterMakers.push(() => makeCharacter(
  18176. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18177. {
  18178. sideFront: {
  18179. height: math.unit(5 + 2 / 12, "feet"),
  18180. weight: math.unit(120, "lb"),
  18181. name: "Front Side",
  18182. image: {
  18183. source: "./media/characters/roxi/side-front.svg",
  18184. extra: 2924 / 2717,
  18185. bottom: 0.08
  18186. }
  18187. },
  18188. sideBack: {
  18189. height: math.unit(5 + 2 / 12, "feet"),
  18190. weight: math.unit(120, "lb"),
  18191. name: "Back Side",
  18192. image: {
  18193. source: "./media/characters/roxi/side-back.svg",
  18194. extra: 2904 / 2693,
  18195. bottom: 0.06
  18196. }
  18197. },
  18198. front: {
  18199. height: math.unit(5 + 2 / 12, "feet"),
  18200. weight: math.unit(120, "lb"),
  18201. name: "Front",
  18202. image: {
  18203. source: "./media/characters/roxi/front.svg",
  18204. extra: 2028 / 1907,
  18205. bottom: 0.01
  18206. }
  18207. },
  18208. frontAlt: {
  18209. height: math.unit(5 + 2 / 12, "feet"),
  18210. weight: math.unit(120, "lb"),
  18211. name: "Front (Alt)",
  18212. image: {
  18213. source: "./media/characters/roxi/front-alt.svg",
  18214. extra: 1828 / 1798,
  18215. bottom: 0.01
  18216. }
  18217. },
  18218. sitting: {
  18219. height: math.unit(2.8, "feet"),
  18220. weight: math.unit(120, "lb"),
  18221. name: "Sitting",
  18222. image: {
  18223. source: "./media/characters/roxi/sitting.svg",
  18224. extra: 2660 / 2462,
  18225. bottom: 0.1
  18226. }
  18227. },
  18228. },
  18229. [
  18230. {
  18231. name: "Normal",
  18232. height: math.unit(5 + 2 / 12, "feet"),
  18233. default: true
  18234. },
  18235. ]
  18236. ))
  18237. characterMakers.push(() => makeCharacter(
  18238. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18239. {
  18240. side: {
  18241. height: math.unit(55, "feet"),
  18242. weight: math.unit(153, "tons"),
  18243. name: "Side",
  18244. image: {
  18245. source: "./media/characters/shadow/side.svg",
  18246. extra: 701 / 628,
  18247. bottom: 0.02
  18248. }
  18249. },
  18250. flying: {
  18251. height: math.unit(145, "feet"),
  18252. weight: math.unit(153, "tons"),
  18253. name: "Flying",
  18254. image: {
  18255. source: "./media/characters/shadow/flying.svg"
  18256. }
  18257. },
  18258. },
  18259. [
  18260. {
  18261. name: "Normal",
  18262. height: math.unit(55, "feet"),
  18263. default: true
  18264. },
  18265. ]
  18266. ))
  18267. characterMakers.push(() => makeCharacter(
  18268. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18269. {
  18270. front: {
  18271. height: math.unit(6, "feet"),
  18272. weight: math.unit(200, "lb"),
  18273. name: "Front",
  18274. image: {
  18275. source: "./media/characters/marcie/front.svg",
  18276. extra: 960 / 876,
  18277. bottom: 58 / 1017.87
  18278. }
  18279. },
  18280. },
  18281. [
  18282. {
  18283. name: "Macro",
  18284. height: math.unit(1, "mile"),
  18285. default: true
  18286. },
  18287. ]
  18288. ))
  18289. characterMakers.push(() => makeCharacter(
  18290. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18291. {
  18292. front: {
  18293. height: math.unit(7, "feet"),
  18294. weight: math.unit(200, "lb"),
  18295. name: "Front",
  18296. image: {
  18297. source: "./media/characters/kachina/front.svg",
  18298. extra: 1290.68 / 1119,
  18299. bottom: 36.5 / 1327.18
  18300. }
  18301. },
  18302. },
  18303. [
  18304. {
  18305. name: "Normal",
  18306. height: math.unit(7, "feet"),
  18307. default: true
  18308. },
  18309. ]
  18310. ))
  18311. characterMakers.push(() => makeCharacter(
  18312. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18313. {
  18314. looking: {
  18315. height: math.unit(2, "meters"),
  18316. weight: math.unit(300, "kg"),
  18317. name: "Looking",
  18318. image: {
  18319. source: "./media/characters/kash/looking.svg",
  18320. extra: 474 / 344,
  18321. bottom: 0.03
  18322. }
  18323. },
  18324. side: {
  18325. height: math.unit(2, "meters"),
  18326. weight: math.unit(300, "kg"),
  18327. name: "Side",
  18328. image: {
  18329. source: "./media/characters/kash/side.svg",
  18330. extra: 302 / 251,
  18331. bottom: 0.03
  18332. }
  18333. },
  18334. front: {
  18335. height: math.unit(2, "meters"),
  18336. weight: math.unit(300, "kg"),
  18337. name: "Front",
  18338. image: {
  18339. source: "./media/characters/kash/front.svg",
  18340. extra: 495 / 360,
  18341. bottom: 0.015
  18342. }
  18343. },
  18344. },
  18345. [
  18346. {
  18347. name: "Normal",
  18348. height: math.unit(2, "meters"),
  18349. default: true
  18350. },
  18351. {
  18352. name: "Big",
  18353. height: math.unit(3, "meters")
  18354. },
  18355. {
  18356. name: "Large",
  18357. height: math.unit(5, "meters")
  18358. },
  18359. ]
  18360. ))
  18361. characterMakers.push(() => makeCharacter(
  18362. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18363. {
  18364. feeding: {
  18365. height: math.unit(6.7, "feet"),
  18366. weight: math.unit(350, "lb"),
  18367. name: "Feeding",
  18368. image: {
  18369. source: "./media/characters/lalim/feeding.svg",
  18370. }
  18371. },
  18372. },
  18373. [
  18374. {
  18375. name: "Normal",
  18376. height: math.unit(6.7, "feet"),
  18377. default: true
  18378. },
  18379. ]
  18380. ))
  18381. characterMakers.push(() => makeCharacter(
  18382. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18383. {
  18384. front: {
  18385. height: math.unit(9.5, "feet"),
  18386. weight: math.unit(600, "lb"),
  18387. name: "Front",
  18388. image: {
  18389. source: "./media/characters/de'vout/front.svg",
  18390. extra: 1443 / 1328,
  18391. bottom: 0.025
  18392. }
  18393. },
  18394. back: {
  18395. height: math.unit(9.5, "feet"),
  18396. weight: math.unit(600, "lb"),
  18397. name: "Back",
  18398. image: {
  18399. source: "./media/characters/de'vout/back.svg",
  18400. extra: 1443 / 1328
  18401. }
  18402. },
  18403. frontDressed: {
  18404. height: math.unit(9.5, "feet"),
  18405. weight: math.unit(600, "lb"),
  18406. name: "Front (Dressed",
  18407. image: {
  18408. source: "./media/characters/de'vout/front-dressed.svg",
  18409. extra: 1443 / 1328,
  18410. bottom: 0.025
  18411. }
  18412. },
  18413. backDressed: {
  18414. height: math.unit(9.5, "feet"),
  18415. weight: math.unit(600, "lb"),
  18416. name: "Back (Dressed",
  18417. image: {
  18418. source: "./media/characters/de'vout/back-dressed.svg",
  18419. extra: 1443 / 1328
  18420. }
  18421. },
  18422. },
  18423. [
  18424. {
  18425. name: "Normal",
  18426. height: math.unit(9.5, "feet"),
  18427. default: true
  18428. },
  18429. ]
  18430. ))
  18431. characterMakers.push(() => makeCharacter(
  18432. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18433. {
  18434. front: {
  18435. height: math.unit(8, "feet"),
  18436. weight: math.unit(225, "lb"),
  18437. name: "Front",
  18438. image: {
  18439. source: "./media/characters/talana/front.svg",
  18440. extra: 1410 / 1300,
  18441. bottom: 0.015
  18442. }
  18443. },
  18444. frontDressed: {
  18445. height: math.unit(8, "feet"),
  18446. weight: math.unit(225, "lb"),
  18447. name: "Front (Dressed",
  18448. image: {
  18449. source: "./media/characters/talana/front-dressed.svg",
  18450. extra: 1410 / 1300,
  18451. bottom: 0.015
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(8, "feet"),
  18459. default: true
  18460. },
  18461. ]
  18462. ))
  18463. characterMakers.push(() => makeCharacter(
  18464. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18465. {
  18466. side: {
  18467. height: math.unit(7.2, "feet"),
  18468. weight: math.unit(150, "lb"),
  18469. name: "Side",
  18470. image: {
  18471. source: "./media/characters/xeauvok/side.svg",
  18472. extra: 1975 / 1523,
  18473. bottom: 0.07
  18474. }
  18475. },
  18476. },
  18477. [
  18478. {
  18479. name: "Normal",
  18480. height: math.unit(7.2, "feet"),
  18481. default: true
  18482. },
  18483. ]
  18484. ))
  18485. characterMakers.push(() => makeCharacter(
  18486. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18487. {
  18488. side: {
  18489. height: math.unit(10, "feet"),
  18490. weight: math.unit(900, "kg"),
  18491. name: "Side",
  18492. image: {
  18493. source: "./media/characters/zara/side.svg",
  18494. extra: 504 / 498
  18495. }
  18496. },
  18497. },
  18498. [
  18499. {
  18500. name: "Normal",
  18501. height: math.unit(10, "feet"),
  18502. default: true
  18503. },
  18504. ]
  18505. ))
  18506. characterMakers.push(() => makeCharacter(
  18507. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18508. {
  18509. side: {
  18510. height: math.unit(6, "feet"),
  18511. weight: math.unit(150, "lb"),
  18512. name: "Side",
  18513. image: {
  18514. source: "./media/characters/richard-dragon/side.svg",
  18515. extra: 845 / 340,
  18516. bottom: 0.017
  18517. }
  18518. },
  18519. maw: {
  18520. height: math.unit(2.97, "feet"),
  18521. name: "Maw",
  18522. image: {
  18523. source: "./media/characters/richard-dragon/maw.svg"
  18524. }
  18525. },
  18526. },
  18527. [
  18528. ]
  18529. ))
  18530. characterMakers.push(() => makeCharacter(
  18531. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18532. {
  18533. front: {
  18534. height: math.unit(4, "feet"),
  18535. weight: math.unit(100, "lb"),
  18536. name: "Front",
  18537. image: {
  18538. source: "./media/characters/richard-smeargle/front.svg",
  18539. extra: 2952 / 2820,
  18540. bottom: 0.028
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Normal",
  18547. height: math.unit(4, "feet"),
  18548. default: true
  18549. },
  18550. {
  18551. name: "Dynamax",
  18552. height: math.unit(20, "meters")
  18553. },
  18554. ]
  18555. ))
  18556. characterMakers.push(() => makeCharacter(
  18557. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18558. {
  18559. front: {
  18560. height: math.unit(6, "feet"),
  18561. weight: math.unit(110, "lb"),
  18562. name: "Front",
  18563. image: {
  18564. source: "./media/characters/klay/front.svg",
  18565. extra: 962 / 883,
  18566. bottom: 0.04
  18567. }
  18568. },
  18569. back: {
  18570. height: math.unit(6, "feet"),
  18571. weight: math.unit(110, "lb"),
  18572. name: "Back",
  18573. image: {
  18574. source: "./media/characters/klay/back.svg",
  18575. extra: 962 / 883
  18576. }
  18577. },
  18578. beans: {
  18579. height: math.unit(1.15, "feet"),
  18580. name: "Beans",
  18581. image: {
  18582. source: "./media/characters/klay/beans.svg"
  18583. }
  18584. },
  18585. },
  18586. [
  18587. {
  18588. name: "Micro",
  18589. height: math.unit(6, "inches")
  18590. },
  18591. {
  18592. name: "Mini",
  18593. height: math.unit(3, "feet")
  18594. },
  18595. {
  18596. name: "Normal",
  18597. height: math.unit(6, "feet"),
  18598. default: true
  18599. },
  18600. {
  18601. name: "Big",
  18602. height: math.unit(25, "feet")
  18603. },
  18604. {
  18605. name: "Macro",
  18606. height: math.unit(100, "feet")
  18607. },
  18608. {
  18609. name: "Megamacro",
  18610. height: math.unit(400, "feet")
  18611. },
  18612. ]
  18613. ))
  18614. characterMakers.push(() => makeCharacter(
  18615. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18616. {
  18617. front: {
  18618. height: math.unit(6, "feet"),
  18619. weight: math.unit(160, "lb"),
  18620. name: "Front",
  18621. image: {
  18622. source: "./media/characters/marcus/front.svg",
  18623. extra: 734 / 676,
  18624. bottom: 0.03
  18625. }
  18626. },
  18627. },
  18628. [
  18629. {
  18630. name: "Little",
  18631. height: math.unit(6, "feet")
  18632. },
  18633. {
  18634. name: "Normal",
  18635. height: math.unit(110, "feet"),
  18636. default: true
  18637. },
  18638. {
  18639. name: "Macro",
  18640. height: math.unit(250, "feet")
  18641. },
  18642. {
  18643. name: "Megamacro",
  18644. height: math.unit(1000, "feet")
  18645. },
  18646. ]
  18647. ))
  18648. characterMakers.push(() => makeCharacter(
  18649. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18650. {
  18651. front: {
  18652. height: math.unit(7, "feet"),
  18653. weight: math.unit(275, "lb"),
  18654. name: "Front",
  18655. image: {
  18656. source: "./media/characters/claude-delroute/front.svg",
  18657. extra: 902/827,
  18658. bottom: 26/928
  18659. }
  18660. },
  18661. side: {
  18662. height: math.unit(7, "feet"),
  18663. weight: math.unit(275, "lb"),
  18664. name: "Side",
  18665. image: {
  18666. source: "./media/characters/claude-delroute/side.svg",
  18667. extra: 908/853,
  18668. bottom: 16/924
  18669. }
  18670. },
  18671. back: {
  18672. height: math.unit(7, "feet"),
  18673. weight: math.unit(275, "lb"),
  18674. name: "Back",
  18675. image: {
  18676. source: "./media/characters/claude-delroute/back.svg",
  18677. extra: 911/829,
  18678. bottom: 18/929
  18679. }
  18680. },
  18681. maw: {
  18682. height: math.unit(0.6407, "meters"),
  18683. name: "Maw",
  18684. image: {
  18685. source: "./media/characters/claude-delroute/maw.svg"
  18686. }
  18687. },
  18688. },
  18689. [
  18690. {
  18691. name: "Normal",
  18692. height: math.unit(7, "feet"),
  18693. default: true
  18694. },
  18695. {
  18696. name: "Lorge",
  18697. height: math.unit(20, "feet")
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(8 + 4 / 12, "feet"),
  18706. weight: math.unit(600, "lb"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/dragonien/front.svg",
  18710. extra: 100 / 94,
  18711. bottom: 3.3 / 103.3445
  18712. }
  18713. },
  18714. back: {
  18715. height: math.unit(8 + 4 / 12, "feet"),
  18716. weight: math.unit(600, "lb"),
  18717. name: "Back",
  18718. image: {
  18719. source: "./media/characters/dragonien/back.svg",
  18720. extra: 776 / 746,
  18721. bottom: 6.4 / 782.0616
  18722. }
  18723. },
  18724. foot: {
  18725. height: math.unit(1.54, "feet"),
  18726. name: "Foot",
  18727. image: {
  18728. source: "./media/characters/dragonien/foot.svg",
  18729. }
  18730. },
  18731. },
  18732. [
  18733. {
  18734. name: "Normal",
  18735. height: math.unit(8 + 4 / 12, "feet"),
  18736. default: true
  18737. },
  18738. {
  18739. name: "Macro",
  18740. height: math.unit(200, "feet")
  18741. },
  18742. {
  18743. name: "Megamacro",
  18744. height: math.unit(1, "mile")
  18745. },
  18746. {
  18747. name: "Gigamacro",
  18748. height: math.unit(1000, "miles")
  18749. },
  18750. ]
  18751. ))
  18752. characterMakers.push(() => makeCharacter(
  18753. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18754. {
  18755. front: {
  18756. height: math.unit(5 + 2 / 12, "feet"),
  18757. weight: math.unit(110, "lb"),
  18758. name: "Front",
  18759. image: {
  18760. source: "./media/characters/desta/front.svg",
  18761. extra: 767 / 726,
  18762. bottom: 11.7 / 779
  18763. }
  18764. },
  18765. back: {
  18766. height: math.unit(5 + 2 / 12, "feet"),
  18767. weight: math.unit(110, "lb"),
  18768. name: "Back",
  18769. image: {
  18770. source: "./media/characters/desta/back.svg",
  18771. extra: 777 / 728,
  18772. bottom: 6 / 784
  18773. }
  18774. },
  18775. frontAlt: {
  18776. height: math.unit(5 + 2 / 12, "feet"),
  18777. weight: math.unit(110, "lb"),
  18778. name: "Front",
  18779. image: {
  18780. source: "./media/characters/desta/front-alt.svg",
  18781. extra: 1482 / 1417
  18782. }
  18783. },
  18784. side: {
  18785. height: math.unit(5 + 2 / 12, "feet"),
  18786. weight: math.unit(110, "lb"),
  18787. name: "Side",
  18788. image: {
  18789. source: "./media/characters/desta/side.svg",
  18790. extra: 2579 / 2491,
  18791. bottom: 0.053
  18792. }
  18793. },
  18794. },
  18795. [
  18796. {
  18797. name: "Micro",
  18798. height: math.unit(6, "inches")
  18799. },
  18800. {
  18801. name: "Normal",
  18802. height: math.unit(5 + 2 / 12, "feet"),
  18803. default: true
  18804. },
  18805. {
  18806. name: "Macro",
  18807. height: math.unit(62, "feet")
  18808. },
  18809. {
  18810. name: "Megamacro",
  18811. height: math.unit(1800, "feet")
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18817. {
  18818. front: {
  18819. height: math.unit(10, "feet"),
  18820. weight: math.unit(700, "lb"),
  18821. name: "Front",
  18822. image: {
  18823. source: "./media/characters/storm-alystar/front.svg",
  18824. extra: 2112 / 1898,
  18825. bottom: 0.034
  18826. }
  18827. },
  18828. },
  18829. [
  18830. {
  18831. name: "Micro",
  18832. height: math.unit(3.5, "inches")
  18833. },
  18834. {
  18835. name: "Normal",
  18836. height: math.unit(10, "feet"),
  18837. default: true
  18838. },
  18839. {
  18840. name: "Macro",
  18841. height: math.unit(400, "feet")
  18842. },
  18843. {
  18844. name: "Deific",
  18845. height: math.unit(60, "miles")
  18846. },
  18847. ]
  18848. ))
  18849. characterMakers.push(() => makeCharacter(
  18850. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18851. {
  18852. front: {
  18853. height: math.unit(2.35, "meters"),
  18854. weight: math.unit(119, "kg"),
  18855. name: "Front",
  18856. image: {
  18857. source: "./media/characters/ilia/front.svg",
  18858. extra: 1285 / 1255,
  18859. bottom: 0.06
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(2.35, "meters")
  18867. },
  18868. {
  18869. name: "Macro",
  18870. height: math.unit(140, "meters"),
  18871. default: true
  18872. },
  18873. {
  18874. name: "Megamacro",
  18875. height: math.unit(100, "miles")
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18881. {
  18882. front: {
  18883. height: math.unit(6 + 5 / 12, "feet"),
  18884. weight: math.unit(190, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/kingdead/front.svg",
  18888. extra: 1228 / 1177
  18889. }
  18890. },
  18891. },
  18892. [
  18893. {
  18894. name: "Micro",
  18895. height: math.unit(7, "inches")
  18896. },
  18897. {
  18898. name: "Normal",
  18899. height: math.unit(6 + 5 / 12, "feet")
  18900. },
  18901. {
  18902. name: "Macro",
  18903. height: math.unit(150, "feet"),
  18904. default: true
  18905. },
  18906. {
  18907. name: "Megamacro",
  18908. height: math.unit(200, "miles")
  18909. },
  18910. ]
  18911. ))
  18912. characterMakers.push(() => makeCharacter(
  18913. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18914. {
  18915. front: {
  18916. height: math.unit(8, "feet"),
  18917. weight: math.unit(600, "lb"),
  18918. name: "Front",
  18919. image: {
  18920. source: "./media/characters/kyrehx/front.svg",
  18921. extra: 1195 / 1095,
  18922. bottom: 0.034
  18923. }
  18924. },
  18925. },
  18926. [
  18927. {
  18928. name: "Micro",
  18929. height: math.unit(2, "inches")
  18930. },
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(8, "feet"),
  18934. default: true
  18935. },
  18936. {
  18937. name: "Macro",
  18938. height: math.unit(255, "feet")
  18939. },
  18940. ]
  18941. ))
  18942. characterMakers.push(() => makeCharacter(
  18943. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18944. {
  18945. front: {
  18946. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18947. weight: math.unit(184, "lb"),
  18948. name: "Front",
  18949. image: {
  18950. source: "./media/characters/xang/front.svg",
  18951. extra: 845 / 755
  18952. }
  18953. },
  18954. },
  18955. [
  18956. {
  18957. name: "Normal",
  18958. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18959. default: true
  18960. },
  18961. {
  18962. name: "Macro",
  18963. height: math.unit(0.935 * 146, "feet")
  18964. },
  18965. {
  18966. name: "Megamacro",
  18967. height: math.unit(0.935 * 3, "miles")
  18968. },
  18969. ]
  18970. ))
  18971. characterMakers.push(() => makeCharacter(
  18972. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18973. {
  18974. frontDressed: {
  18975. height: math.unit(5 + 7 / 12, "feet"),
  18976. weight: math.unit(140, "lb"),
  18977. name: "Front (Dressed)",
  18978. image: {
  18979. source: "./media/characters/doc-weardno/front-dressed.svg",
  18980. extra: 263 / 234
  18981. }
  18982. },
  18983. backDressed: {
  18984. height: math.unit(5 + 7 / 12, "feet"),
  18985. weight: math.unit(140, "lb"),
  18986. name: "Back (Dressed)",
  18987. image: {
  18988. source: "./media/characters/doc-weardno/back-dressed.svg",
  18989. extra: 266 / 238
  18990. }
  18991. },
  18992. front: {
  18993. height: math.unit(5 + 7 / 12, "feet"),
  18994. weight: math.unit(140, "lb"),
  18995. name: "Front",
  18996. image: {
  18997. source: "./media/characters/doc-weardno/front.svg",
  18998. extra: 254 / 233
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Micro",
  19005. height: math.unit(3, "inches")
  19006. },
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(5 + 7 / 12, "feet"),
  19010. default: true
  19011. },
  19012. {
  19013. name: "Macro",
  19014. height: math.unit(25, "feet")
  19015. },
  19016. {
  19017. name: "Megamacro",
  19018. height: math.unit(2, "miles")
  19019. },
  19020. ]
  19021. ))
  19022. characterMakers.push(() => makeCharacter(
  19023. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19024. {
  19025. front: {
  19026. height: math.unit(6 + 2 / 12, "feet"),
  19027. weight: math.unit(153, "lb"),
  19028. name: "Front",
  19029. image: {
  19030. source: "./media/characters/seth-whilst/front.svg",
  19031. bottom: 0.07
  19032. }
  19033. },
  19034. },
  19035. [
  19036. {
  19037. name: "Micro",
  19038. height: math.unit(5, "inches")
  19039. },
  19040. {
  19041. name: "Normal",
  19042. height: math.unit(6 + 2 / 12, "feet"),
  19043. default: true
  19044. },
  19045. ]
  19046. ))
  19047. characterMakers.push(() => makeCharacter(
  19048. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19049. {
  19050. front: {
  19051. height: math.unit(3, "inches"),
  19052. weight: math.unit(8, "grams"),
  19053. name: "Front",
  19054. image: {
  19055. source: "./media/characters/pocket-jabari/front.svg",
  19056. extra: 1024 / 974,
  19057. bottom: 0.039
  19058. }
  19059. },
  19060. },
  19061. [
  19062. {
  19063. name: "Minimicro",
  19064. height: math.unit(8, "mm")
  19065. },
  19066. {
  19067. name: "Micro",
  19068. height: math.unit(3, "inches"),
  19069. default: true
  19070. },
  19071. {
  19072. name: "Normal",
  19073. height: math.unit(3, "feet")
  19074. },
  19075. ]
  19076. ))
  19077. characterMakers.push(() => makeCharacter(
  19078. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19079. {
  19080. front: {
  19081. height: math.unit(15, "feet"),
  19082. weight: math.unit(3280, "lb"),
  19083. name: "Front",
  19084. image: {
  19085. source: "./media/characters/sapphy/front.svg",
  19086. extra: 671 / 577,
  19087. bottom: 0.085
  19088. }
  19089. },
  19090. back: {
  19091. height: math.unit(15, "feet"),
  19092. weight: math.unit(3280, "lb"),
  19093. name: "Back",
  19094. image: {
  19095. source: "./media/characters/sapphy/back.svg",
  19096. extra: 631 / 607,
  19097. bottom: 0.045
  19098. }
  19099. },
  19100. },
  19101. [
  19102. {
  19103. name: "Normal",
  19104. height: math.unit(15, "feet")
  19105. },
  19106. {
  19107. name: "Casual Macro",
  19108. height: math.unit(120, "feet")
  19109. },
  19110. {
  19111. name: "Macro",
  19112. height: math.unit(2150, "feet"),
  19113. default: true
  19114. },
  19115. {
  19116. name: "Megamacro",
  19117. height: math.unit(8, "miles")
  19118. },
  19119. {
  19120. name: "Galaxy Mom",
  19121. height: math.unit(6, "megalightyears")
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19127. {
  19128. front: {
  19129. height: math.unit(6, "feet"),
  19130. weight: math.unit(170, "lb"),
  19131. name: "Front",
  19132. image: {
  19133. source: "./media/characters/kiro/front.svg",
  19134. extra: 1064 / 1012,
  19135. bottom: 0.052
  19136. }
  19137. },
  19138. },
  19139. [
  19140. {
  19141. name: "Micro",
  19142. height: math.unit(6, "inches")
  19143. },
  19144. {
  19145. name: "Normal",
  19146. height: math.unit(6, "feet"),
  19147. default: true
  19148. },
  19149. {
  19150. name: "Macro",
  19151. height: math.unit(72, "feet")
  19152. },
  19153. ]
  19154. ))
  19155. characterMakers.push(() => makeCharacter(
  19156. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19157. {
  19158. front: {
  19159. height: math.unit(5 + 9 / 12, "feet"),
  19160. weight: math.unit(175, "lb"),
  19161. name: "Front",
  19162. image: {
  19163. source: "./media/characters/irishfox/front.svg",
  19164. extra: 1912 / 1680,
  19165. bottom: 0.02
  19166. }
  19167. },
  19168. },
  19169. [
  19170. {
  19171. name: "Nano",
  19172. height: math.unit(1, "mm")
  19173. },
  19174. {
  19175. name: "Micro",
  19176. height: math.unit(2, "inches")
  19177. },
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(5 + 9 / 12, "feet"),
  19181. default: true
  19182. },
  19183. {
  19184. name: "Macro",
  19185. height: math.unit(45, "feet")
  19186. },
  19187. ]
  19188. ))
  19189. characterMakers.push(() => makeCharacter(
  19190. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19191. {
  19192. front: {
  19193. height: math.unit(6 + 1 / 12, "feet"),
  19194. weight: math.unit(75, "lb"),
  19195. name: "Front",
  19196. image: {
  19197. source: "./media/characters/aronai-sieyes/front.svg",
  19198. extra: 1532/1450,
  19199. bottom: 42/1574
  19200. }
  19201. },
  19202. side: {
  19203. height: math.unit(6 + 1 / 12, "feet"),
  19204. weight: math.unit(75, "lb"),
  19205. name: "Side",
  19206. image: {
  19207. source: "./media/characters/aronai-sieyes/side.svg",
  19208. extra: 1422/1365,
  19209. bottom: 148/1570
  19210. }
  19211. },
  19212. back: {
  19213. height: math.unit(6 + 1 / 12, "feet"),
  19214. weight: math.unit(75, "lb"),
  19215. name: "Back",
  19216. image: {
  19217. source: "./media/characters/aronai-sieyes/back.svg",
  19218. extra: 1526/1464,
  19219. bottom: 51/1577
  19220. }
  19221. },
  19222. dressed: {
  19223. height: math.unit(6 + 1 / 12, "feet"),
  19224. weight: math.unit(75, "lb"),
  19225. name: "Dressed",
  19226. image: {
  19227. source: "./media/characters/aronai-sieyes/dressed.svg",
  19228. extra: 1559/1483,
  19229. bottom: 39/1598
  19230. }
  19231. },
  19232. slit: {
  19233. height: math.unit(1.3, "feet"),
  19234. name: "Slit",
  19235. image: {
  19236. source: "./media/characters/aronai-sieyes/slit.svg"
  19237. }
  19238. },
  19239. slitSpread: {
  19240. height: math.unit(0.9, "feet"),
  19241. name: "Slit (Spread)",
  19242. image: {
  19243. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19244. }
  19245. },
  19246. rump: {
  19247. height: math.unit(1.3, "feet"),
  19248. name: "Rump",
  19249. image: {
  19250. source: "./media/characters/aronai-sieyes/rump.svg"
  19251. }
  19252. },
  19253. maw: {
  19254. height: math.unit(1.25, "feet"),
  19255. name: "Maw",
  19256. image: {
  19257. source: "./media/characters/aronai-sieyes/maw.svg"
  19258. }
  19259. },
  19260. feral: {
  19261. height: math.unit(18, "feet"),
  19262. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19263. name: "Feral",
  19264. image: {
  19265. source: "./media/characters/aronai-sieyes/feral.svg",
  19266. extra: 1530 / 1240,
  19267. bottom: 0.035
  19268. }
  19269. },
  19270. },
  19271. [
  19272. {
  19273. name: "Micro",
  19274. height: math.unit(2, "inches")
  19275. },
  19276. {
  19277. name: "Normal",
  19278. height: math.unit(6 + 1 / 12, "feet"),
  19279. default: true
  19280. }
  19281. ]
  19282. ))
  19283. characterMakers.push(() => makeCharacter(
  19284. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19285. {
  19286. front: {
  19287. height: math.unit(12, "feet"),
  19288. weight: math.unit(410, "kg"),
  19289. name: "Front",
  19290. image: {
  19291. source: "./media/characters/xuna/front.svg",
  19292. extra: 2184 / 1980
  19293. }
  19294. },
  19295. side: {
  19296. height: math.unit(12, "feet"),
  19297. weight: math.unit(410, "kg"),
  19298. name: "Side",
  19299. image: {
  19300. source: "./media/characters/xuna/side.svg",
  19301. extra: 2184 / 1980
  19302. }
  19303. },
  19304. back: {
  19305. height: math.unit(12, "feet"),
  19306. weight: math.unit(410, "kg"),
  19307. name: "Back",
  19308. image: {
  19309. source: "./media/characters/xuna/back.svg",
  19310. extra: 2184 / 1980
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Nano glow",
  19317. height: math.unit(10, "nm")
  19318. },
  19319. {
  19320. name: "Micro floof",
  19321. height: math.unit(0.3, "m")
  19322. },
  19323. {
  19324. name: "Huggable softy boi",
  19325. height: math.unit(3.6576, "m"),
  19326. default: true
  19327. },
  19328. {
  19329. name: "Admirable floof",
  19330. height: math.unit(80, "meters")
  19331. },
  19332. {
  19333. name: "Gentle macro",
  19334. height: math.unit(300, "meters")
  19335. },
  19336. {
  19337. name: "Very careful floof",
  19338. height: math.unit(3200, "meters")
  19339. },
  19340. {
  19341. name: "The mega floof",
  19342. height: math.unit(36000, "meters")
  19343. },
  19344. {
  19345. name: "Giga-fur-Wicker",
  19346. height: math.unit(4800000, "meters")
  19347. },
  19348. {
  19349. name: "Licky world",
  19350. height: math.unit(20000000, "meters")
  19351. },
  19352. {
  19353. name: "Floofy cyan sun",
  19354. height: math.unit(1500000000, "meters")
  19355. },
  19356. {
  19357. name: "Milky Wicker",
  19358. height: math.unit(1000000000000000000000, "meters")
  19359. },
  19360. {
  19361. name: "The observing Wicker",
  19362. height: math.unit(999999999999999999999999999, "meters")
  19363. },
  19364. ]
  19365. ))
  19366. characterMakers.push(() => makeCharacter(
  19367. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19368. {
  19369. front: {
  19370. height: math.unit(5 + 9 / 12, "feet"),
  19371. weight: math.unit(150, "lb"),
  19372. name: "Front",
  19373. image: {
  19374. source: "./media/characters/arokha-sieyes/front.svg",
  19375. extra: 1425 / 1284,
  19376. bottom: 0.05
  19377. }
  19378. },
  19379. },
  19380. [
  19381. {
  19382. name: "Normal",
  19383. height: math.unit(5 + 9 / 12, "feet")
  19384. },
  19385. {
  19386. name: "Macro",
  19387. height: math.unit(30, "meters"),
  19388. default: true
  19389. },
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19394. {
  19395. front: {
  19396. height: math.unit(6, "feet"),
  19397. weight: math.unit(180, "lb"),
  19398. name: "Front",
  19399. image: {
  19400. source: "./media/characters/arokh-sieyes/front.svg",
  19401. extra: 1830 / 1769,
  19402. bottom: 0.01
  19403. }
  19404. },
  19405. },
  19406. [
  19407. {
  19408. name: "Normal",
  19409. height: math.unit(6, "feet")
  19410. },
  19411. {
  19412. name: "Macro",
  19413. height: math.unit(30, "meters"),
  19414. default: true
  19415. },
  19416. ]
  19417. ))
  19418. characterMakers.push(() => makeCharacter(
  19419. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19420. {
  19421. side: {
  19422. height: math.unit(13 + 1 / 12, "feet"),
  19423. weight: math.unit(8.5, "tonnes"),
  19424. name: "Side",
  19425. image: {
  19426. source: "./media/characters/goldeneye/side.svg",
  19427. extra: 1182 / 778,
  19428. bottom: 0.067
  19429. }
  19430. },
  19431. paw: {
  19432. height: math.unit(3.4, "feet"),
  19433. name: "Paw",
  19434. image: {
  19435. source: "./media/characters/goldeneye/paw.svg"
  19436. }
  19437. },
  19438. },
  19439. [
  19440. {
  19441. name: "Normal",
  19442. height: math.unit(13 + 1 / 12, "feet"),
  19443. default: true
  19444. },
  19445. ]
  19446. ))
  19447. characterMakers.push(() => makeCharacter(
  19448. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19449. {
  19450. front: {
  19451. height: math.unit(6 + 1 / 12, "feet"),
  19452. weight: math.unit(210, "lb"),
  19453. name: "Front",
  19454. image: {
  19455. source: "./media/characters/leonardo-lycheborne/front.svg",
  19456. extra: 776/723,
  19457. bottom: 34/810
  19458. }
  19459. },
  19460. side: {
  19461. height: math.unit(6 + 1 / 12, "feet"),
  19462. weight: math.unit(210, "lb"),
  19463. name: "Side",
  19464. image: {
  19465. source: "./media/characters/leonardo-lycheborne/side.svg",
  19466. extra: 780/728,
  19467. bottom: 12/792
  19468. }
  19469. },
  19470. back: {
  19471. height: math.unit(6 + 1 / 12, "feet"),
  19472. weight: math.unit(210, "lb"),
  19473. name: "Back",
  19474. image: {
  19475. source: "./media/characters/leonardo-lycheborne/back.svg",
  19476. extra: 775/721,
  19477. bottom: 17/792
  19478. }
  19479. },
  19480. hand: {
  19481. height: math.unit(1.08, "feet"),
  19482. name: "Hand",
  19483. image: {
  19484. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19485. }
  19486. },
  19487. foot: {
  19488. height: math.unit(1.32, "feet"),
  19489. name: "Foot",
  19490. image: {
  19491. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19492. }
  19493. },
  19494. maw: {
  19495. height: math.unit(1, "feet"),
  19496. name: "Maw",
  19497. image: {
  19498. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19499. }
  19500. },
  19501. were: {
  19502. height: math.unit(20, "feet"),
  19503. weight: math.unit(7800, "lb"),
  19504. name: "Were",
  19505. image: {
  19506. source: "./media/characters/leonardo-lycheborne/were.svg",
  19507. extra: 1224/1165,
  19508. bottom: 72/1296
  19509. }
  19510. },
  19511. feral: {
  19512. height: math.unit(7.5, "feet"),
  19513. weight: math.unit(600, "lb"),
  19514. name: "Feral",
  19515. image: {
  19516. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19517. extra: 797/702,
  19518. bottom: 139/936
  19519. }
  19520. },
  19521. taur: {
  19522. height: math.unit(11, "feet"),
  19523. weight: math.unit(3300, "lb"),
  19524. name: "Taur",
  19525. image: {
  19526. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19527. extra: 1271/1197,
  19528. bottom: 47/1318
  19529. }
  19530. },
  19531. barghest: {
  19532. height: math.unit(11, "feet"),
  19533. weight: math.unit(1300, "lb"),
  19534. name: "Barghest",
  19535. image: {
  19536. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19537. extra: 1291/1204,
  19538. bottom: 37/1328
  19539. }
  19540. },
  19541. dick: {
  19542. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19543. name: "Dick",
  19544. image: {
  19545. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19546. }
  19547. },
  19548. dickWere: {
  19549. height: math.unit((20) / 3.8, "feet"),
  19550. name: "Dick (Were)",
  19551. image: {
  19552. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19553. }
  19554. },
  19555. },
  19556. [
  19557. {
  19558. name: "Normal",
  19559. height: math.unit(6 + 1 / 12, "feet"),
  19560. default: true
  19561. },
  19562. ]
  19563. ))
  19564. characterMakers.push(() => makeCharacter(
  19565. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19566. {
  19567. front: {
  19568. height: math.unit(10, "feet"),
  19569. weight: math.unit(350, "lb"),
  19570. name: "Front",
  19571. image: {
  19572. source: "./media/characters/jet/front.svg",
  19573. extra: 2050 / 1980,
  19574. bottom: 0.013
  19575. }
  19576. },
  19577. back: {
  19578. height: math.unit(10, "feet"),
  19579. weight: math.unit(350, "lb"),
  19580. name: "Back",
  19581. image: {
  19582. source: "./media/characters/jet/back.svg",
  19583. extra: 2050 / 1980,
  19584. bottom: 0.013
  19585. }
  19586. },
  19587. },
  19588. [
  19589. {
  19590. name: "Micro",
  19591. height: math.unit(6, "inches")
  19592. },
  19593. {
  19594. name: "Normal",
  19595. height: math.unit(10, "feet"),
  19596. default: true
  19597. },
  19598. {
  19599. name: "Macro",
  19600. height: math.unit(100, "feet")
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19606. {
  19607. front: {
  19608. height: math.unit(15, "feet"),
  19609. weight: math.unit(2800, "lb"),
  19610. name: "Front",
  19611. image: {
  19612. source: "./media/characters/tanarath/front.svg",
  19613. extra: 2392 / 2220,
  19614. bottom: 0.03
  19615. }
  19616. },
  19617. back: {
  19618. height: math.unit(15, "feet"),
  19619. weight: math.unit(2800, "lb"),
  19620. name: "Back",
  19621. image: {
  19622. source: "./media/characters/tanarath/back.svg",
  19623. extra: 2392 / 2220,
  19624. bottom: 0.03
  19625. }
  19626. },
  19627. },
  19628. [
  19629. {
  19630. name: "Normal",
  19631. height: math.unit(15, "feet"),
  19632. default: true
  19633. },
  19634. ]
  19635. ))
  19636. characterMakers.push(() => makeCharacter(
  19637. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19638. {
  19639. front: {
  19640. height: math.unit(7 + 1 / 12, "feet"),
  19641. weight: math.unit(175, "lb"),
  19642. name: "Front",
  19643. image: {
  19644. source: "./media/characters/patty-cattybatty/front.svg",
  19645. extra: 908 / 874,
  19646. bottom: 0.025
  19647. }
  19648. },
  19649. },
  19650. [
  19651. {
  19652. name: "Micro",
  19653. height: math.unit(1, "inch")
  19654. },
  19655. {
  19656. name: "Normal",
  19657. height: math.unit(7 + 1 / 12, "feet")
  19658. },
  19659. {
  19660. name: "Mini Macro",
  19661. height: math.unit(155, "feet")
  19662. },
  19663. {
  19664. name: "Macro",
  19665. height: math.unit(1077, "feet")
  19666. },
  19667. {
  19668. name: "Mega Macro",
  19669. height: math.unit(47650, "feet"),
  19670. default: true
  19671. },
  19672. {
  19673. name: "Giga Macro",
  19674. height: math.unit(440, "miles")
  19675. },
  19676. {
  19677. name: "Tera Macro",
  19678. height: math.unit(8700, "miles")
  19679. },
  19680. {
  19681. name: "Planetary Macro",
  19682. height: math.unit(32700, "miles")
  19683. },
  19684. {
  19685. name: "Solar Macro",
  19686. height: math.unit(550000, "miles")
  19687. },
  19688. {
  19689. name: "Celestial Macro",
  19690. height: math.unit(2.5, "AU")
  19691. },
  19692. ]
  19693. ))
  19694. characterMakers.push(() => makeCharacter(
  19695. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19696. {
  19697. front: {
  19698. height: math.unit(4 + 5 / 12, "feet"),
  19699. weight: math.unit(90, "lb"),
  19700. name: "Front",
  19701. image: {
  19702. source: "./media/characters/cappu/front.svg",
  19703. extra: 1247 / 1152,
  19704. bottom: 0.012
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Normal",
  19711. height: math.unit(4 + 5 / 12, "feet"),
  19712. default: true
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19718. {
  19719. frontDressed: {
  19720. height: math.unit(70, "cm"),
  19721. weight: math.unit(6, "kg"),
  19722. name: "Front (Dressed)",
  19723. image: {
  19724. source: "./media/characters/sebi/front-dressed.svg",
  19725. extra: 713.5 / 686.5,
  19726. bottom: 0.003
  19727. }
  19728. },
  19729. front: {
  19730. height: math.unit(70, "cm"),
  19731. weight: math.unit(5, "kg"),
  19732. name: "Front",
  19733. image: {
  19734. source: "./media/characters/sebi/front.svg",
  19735. extra: 713.5 / 686.5,
  19736. bottom: 0.003
  19737. }
  19738. }
  19739. },
  19740. [
  19741. {
  19742. name: "Normal",
  19743. height: math.unit(70, "cm"),
  19744. default: true
  19745. },
  19746. {
  19747. name: "Macro",
  19748. height: math.unit(8, "meters")
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19754. {
  19755. front: {
  19756. height: math.unit(6, "feet"),
  19757. weight: math.unit(150, "lb"),
  19758. name: "Front",
  19759. image: {
  19760. source: "./media/characters/typhek/front.svg",
  19761. extra: 1948 / 1929,
  19762. bottom: 0.025
  19763. }
  19764. },
  19765. side: {
  19766. height: math.unit(6, "feet"),
  19767. weight: math.unit(150, "lb"),
  19768. name: "Side",
  19769. image: {
  19770. source: "./media/characters/typhek/side.svg",
  19771. extra: 2034 / 2010,
  19772. bottom: 0.003
  19773. }
  19774. },
  19775. back: {
  19776. height: math.unit(6, "feet"),
  19777. weight: math.unit(150, "lb"),
  19778. name: "Back",
  19779. image: {
  19780. source: "./media/characters/typhek/back.svg",
  19781. extra: 2005 / 1978,
  19782. bottom: 0.004
  19783. }
  19784. },
  19785. palm: {
  19786. height: math.unit(1.2, "feet"),
  19787. name: "Palm",
  19788. image: {
  19789. source: "./media/characters/typhek/palm.svg"
  19790. }
  19791. },
  19792. fist: {
  19793. height: math.unit(1.1, "feet"),
  19794. name: "Fist",
  19795. image: {
  19796. source: "./media/characters/typhek/fist.svg"
  19797. }
  19798. },
  19799. foot: {
  19800. height: math.unit(1.57, "feet"),
  19801. name: "Foot",
  19802. image: {
  19803. source: "./media/characters/typhek/foot.svg"
  19804. }
  19805. },
  19806. sole: {
  19807. height: math.unit(2.05, "feet"),
  19808. name: "Sole",
  19809. image: {
  19810. source: "./media/characters/typhek/sole.svg"
  19811. }
  19812. },
  19813. },
  19814. [
  19815. {
  19816. name: "Macro",
  19817. height: math.unit(40, "stories"),
  19818. default: true
  19819. },
  19820. {
  19821. name: "Megamacro",
  19822. height: math.unit(1, "mile")
  19823. },
  19824. {
  19825. name: "Gigamacro",
  19826. height: math.unit(4000, "solarradii")
  19827. },
  19828. {
  19829. name: "Universal",
  19830. height: math.unit(1.1, "universes")
  19831. }
  19832. ]
  19833. ))
  19834. characterMakers.push(() => makeCharacter(
  19835. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19836. {
  19837. side: {
  19838. height: math.unit(5 + 7 / 12, "feet"),
  19839. weight: math.unit(150, "lb"),
  19840. name: "Side",
  19841. image: {
  19842. source: "./media/characters/kassy/side.svg",
  19843. extra: 1280 / 1225,
  19844. bottom: 0.002
  19845. }
  19846. },
  19847. front: {
  19848. height: math.unit(5 + 7 / 12, "feet"),
  19849. weight: math.unit(150, "lb"),
  19850. name: "Front",
  19851. image: {
  19852. source: "./media/characters/kassy/front.svg",
  19853. extra: 1280 / 1225,
  19854. bottom: 0.025
  19855. }
  19856. },
  19857. back: {
  19858. height: math.unit(5 + 7 / 12, "feet"),
  19859. weight: math.unit(150, "lb"),
  19860. name: "Back",
  19861. image: {
  19862. source: "./media/characters/kassy/back.svg",
  19863. extra: 1280 / 1225,
  19864. bottom: 0.002
  19865. }
  19866. },
  19867. foot: {
  19868. height: math.unit(1.266, "feet"),
  19869. name: "Foot",
  19870. image: {
  19871. source: "./media/characters/kassy/foot.svg"
  19872. }
  19873. },
  19874. },
  19875. [
  19876. {
  19877. name: "Normal",
  19878. height: math.unit(5 + 7 / 12, "feet")
  19879. },
  19880. {
  19881. name: "Macro",
  19882. height: math.unit(137, "feet"),
  19883. default: true
  19884. },
  19885. {
  19886. name: "Megamacro",
  19887. height: math.unit(1, "mile")
  19888. },
  19889. ]
  19890. ))
  19891. characterMakers.push(() => makeCharacter(
  19892. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19893. {
  19894. front: {
  19895. height: math.unit(6 + 1 / 12, "feet"),
  19896. weight: math.unit(200, "lb"),
  19897. name: "Front",
  19898. image: {
  19899. source: "./media/characters/neil/front.svg",
  19900. extra: 1326 / 1250,
  19901. bottom: 0.023
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Normal",
  19908. height: math.unit(6 + 1 / 12, "feet"),
  19909. default: true
  19910. },
  19911. {
  19912. name: "Macro",
  19913. height: math.unit(200, "feet")
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19919. {
  19920. front: {
  19921. height: math.unit(5 + 9 / 12, "feet"),
  19922. weight: math.unit(190, "lb"),
  19923. name: "Front",
  19924. image: {
  19925. source: "./media/characters/atticus/front.svg",
  19926. extra: 2934 / 2785,
  19927. bottom: 0.025
  19928. }
  19929. },
  19930. },
  19931. [
  19932. {
  19933. name: "Normal",
  19934. height: math.unit(5 + 9 / 12, "feet"),
  19935. default: true
  19936. },
  19937. {
  19938. name: "Macro",
  19939. height: math.unit(180, "feet")
  19940. },
  19941. ]
  19942. ))
  19943. characterMakers.push(() => makeCharacter(
  19944. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19945. {
  19946. side: {
  19947. height: math.unit(9, "feet"),
  19948. weight: math.unit(650, "lb"),
  19949. name: "Side",
  19950. image: {
  19951. source: "./media/characters/milo/side.svg",
  19952. extra: 2644 / 2310,
  19953. bottom: 0.032
  19954. }
  19955. },
  19956. },
  19957. [
  19958. {
  19959. name: "Normal",
  19960. height: math.unit(9, "feet"),
  19961. default: true
  19962. },
  19963. {
  19964. name: "Macro",
  19965. height: math.unit(300, "feet")
  19966. },
  19967. ]
  19968. ))
  19969. characterMakers.push(() => makeCharacter(
  19970. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19971. {
  19972. side: {
  19973. height: math.unit(8, "meters"),
  19974. weight: math.unit(90000, "kg"),
  19975. name: "Side",
  19976. image: {
  19977. source: "./media/characters/ijzer/side.svg",
  19978. extra: 2756 / 1600,
  19979. bottom: 0.01
  19980. }
  19981. },
  19982. },
  19983. [
  19984. {
  19985. name: "Small",
  19986. height: math.unit(3, "meters")
  19987. },
  19988. {
  19989. name: "Normal",
  19990. height: math.unit(8, "meters"),
  19991. default: true
  19992. },
  19993. {
  19994. name: "Normal+",
  19995. height: math.unit(10, "meters")
  19996. },
  19997. {
  19998. name: "Bigger",
  19999. height: math.unit(24, "meters")
  20000. },
  20001. {
  20002. name: "Huge",
  20003. height: math.unit(80, "meters")
  20004. },
  20005. ]
  20006. ))
  20007. characterMakers.push(() => makeCharacter(
  20008. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20009. {
  20010. front: {
  20011. height: math.unit(6 + 2 / 12, "feet"),
  20012. weight: math.unit(153, "lb"),
  20013. name: "Front",
  20014. image: {
  20015. source: "./media/characters/luca-cervicum/front.svg",
  20016. extra: 370 / 327,
  20017. bottom: 0.015
  20018. }
  20019. },
  20020. back: {
  20021. height: math.unit(6 + 2 / 12, "feet"),
  20022. weight: math.unit(153, "lb"),
  20023. name: "Back",
  20024. image: {
  20025. source: "./media/characters/luca-cervicum/back.svg",
  20026. extra: 367 / 333,
  20027. bottom: 0.005
  20028. }
  20029. },
  20030. frontGear: {
  20031. height: math.unit(6 + 2 / 12, "feet"),
  20032. weight: math.unit(173, "lb"),
  20033. name: "Front (Gear)",
  20034. image: {
  20035. source: "./media/characters/luca-cervicum/front-gear.svg",
  20036. extra: 377 / 333,
  20037. bottom: 0.006
  20038. }
  20039. },
  20040. },
  20041. [
  20042. {
  20043. name: "Normal",
  20044. height: math.unit(6 + 2 / 12, "feet"),
  20045. default: true
  20046. },
  20047. ]
  20048. ))
  20049. characterMakers.push(() => makeCharacter(
  20050. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20051. {
  20052. front: {
  20053. height: math.unit(6 + 1 / 12, "feet"),
  20054. weight: math.unit(304, "lb"),
  20055. name: "Front",
  20056. image: {
  20057. source: "./media/characters/oliver/front.svg",
  20058. extra: 157 / 143,
  20059. bottom: 0.08
  20060. }
  20061. },
  20062. },
  20063. [
  20064. {
  20065. name: "Normal",
  20066. height: math.unit(6 + 1 / 12, "feet"),
  20067. default: true
  20068. },
  20069. ]
  20070. ))
  20071. characterMakers.push(() => makeCharacter(
  20072. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20073. {
  20074. front: {
  20075. height: math.unit(5 + 7 / 12, "feet"),
  20076. weight: math.unit(140, "lb"),
  20077. name: "Front",
  20078. image: {
  20079. source: "./media/characters/shane/front.svg",
  20080. extra: 304 / 289,
  20081. bottom: 0.005
  20082. }
  20083. },
  20084. },
  20085. [
  20086. {
  20087. name: "Normal",
  20088. height: math.unit(5 + 7 / 12, "feet"),
  20089. default: true
  20090. },
  20091. ]
  20092. ))
  20093. characterMakers.push(() => makeCharacter(
  20094. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20095. {
  20096. front: {
  20097. height: math.unit(5 + 9 / 12, "feet"),
  20098. weight: math.unit(178, "lb"),
  20099. name: "Front",
  20100. image: {
  20101. source: "./media/characters/shin/front.svg",
  20102. extra: 159 / 151,
  20103. bottom: 0.015
  20104. }
  20105. },
  20106. },
  20107. [
  20108. {
  20109. name: "Normal",
  20110. height: math.unit(5 + 9 / 12, "feet"),
  20111. default: true
  20112. },
  20113. ]
  20114. ))
  20115. characterMakers.push(() => makeCharacter(
  20116. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20117. {
  20118. front: {
  20119. height: math.unit(5 + 10 / 12, "feet"),
  20120. weight: math.unit(168, "lb"),
  20121. name: "Front",
  20122. image: {
  20123. source: "./media/characters/xerxes/front.svg",
  20124. extra: 282 / 260,
  20125. bottom: 0.045
  20126. }
  20127. },
  20128. },
  20129. [
  20130. {
  20131. name: "Normal",
  20132. height: math.unit(5 + 10 / 12, "feet"),
  20133. default: true
  20134. },
  20135. ]
  20136. ))
  20137. characterMakers.push(() => makeCharacter(
  20138. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20139. {
  20140. front: {
  20141. height: math.unit(6 + 7 / 12, "feet"),
  20142. weight: math.unit(208, "lb"),
  20143. name: "Front",
  20144. image: {
  20145. source: "./media/characters/chaska/front.svg",
  20146. extra: 332 / 319,
  20147. bottom: 0.015
  20148. }
  20149. },
  20150. },
  20151. [
  20152. {
  20153. name: "Normal",
  20154. height: math.unit(6 + 7 / 12, "feet"),
  20155. default: true
  20156. },
  20157. ]
  20158. ))
  20159. characterMakers.push(() => makeCharacter(
  20160. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20161. {
  20162. front: {
  20163. height: math.unit(5 + 8 / 12, "feet"),
  20164. weight: math.unit(208, "lb"),
  20165. name: "Front",
  20166. image: {
  20167. source: "./media/characters/enuk/front.svg",
  20168. extra: 437 / 406,
  20169. bottom: 0.02
  20170. }
  20171. },
  20172. },
  20173. [
  20174. {
  20175. name: "Normal",
  20176. height: math.unit(5 + 8 / 12, "feet"),
  20177. default: true
  20178. },
  20179. ]
  20180. ))
  20181. characterMakers.push(() => makeCharacter(
  20182. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20183. {
  20184. front: {
  20185. height: math.unit(5 + 10 / 12, "feet"),
  20186. weight: math.unit(252, "lb"),
  20187. name: "Front",
  20188. image: {
  20189. source: "./media/characters/bruun/front.svg",
  20190. extra: 197 / 187,
  20191. bottom: 0.012
  20192. }
  20193. },
  20194. },
  20195. [
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(5 + 10 / 12, "feet"),
  20199. default: true
  20200. },
  20201. ]
  20202. ))
  20203. characterMakers.push(() => makeCharacter(
  20204. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20205. {
  20206. front: {
  20207. height: math.unit(6 + 10 / 12, "feet"),
  20208. weight: math.unit(255, "lb"),
  20209. name: "Front",
  20210. image: {
  20211. source: "./media/characters/alexeev/front.svg",
  20212. extra: 213 / 200,
  20213. bottom: 0.05
  20214. }
  20215. },
  20216. },
  20217. [
  20218. {
  20219. name: "Normal",
  20220. height: math.unit(6 + 10 / 12, "feet"),
  20221. default: true
  20222. },
  20223. ]
  20224. ))
  20225. characterMakers.push(() => makeCharacter(
  20226. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20227. {
  20228. front: {
  20229. height: math.unit(2 + 8 / 12, "feet"),
  20230. weight: math.unit(22, "lb"),
  20231. name: "Front",
  20232. image: {
  20233. source: "./media/characters/evelyn/front.svg",
  20234. extra: 208 / 180
  20235. }
  20236. },
  20237. },
  20238. [
  20239. {
  20240. name: "Normal",
  20241. height: math.unit(2 + 8 / 12, "feet"),
  20242. default: true
  20243. },
  20244. ]
  20245. ))
  20246. characterMakers.push(() => makeCharacter(
  20247. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20248. {
  20249. front: {
  20250. height: math.unit(5 + 9 / 12, "feet"),
  20251. weight: math.unit(139, "lb"),
  20252. name: "Front",
  20253. image: {
  20254. source: "./media/characters/inca/front.svg",
  20255. extra: 294 / 291,
  20256. bottom: 0.03
  20257. }
  20258. },
  20259. },
  20260. [
  20261. {
  20262. name: "Normal",
  20263. height: math.unit(5 + 9 / 12, "feet"),
  20264. default: true
  20265. },
  20266. ]
  20267. ))
  20268. characterMakers.push(() => makeCharacter(
  20269. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20270. {
  20271. front: {
  20272. height: math.unit(6 + 3 / 12, "feet"),
  20273. weight: math.unit(185, "lb"),
  20274. name: "Front",
  20275. image: {
  20276. source: "./media/characters/mera/front.svg",
  20277. extra: 291 / 277,
  20278. bottom: 0.03
  20279. }
  20280. },
  20281. },
  20282. [
  20283. {
  20284. name: "Normal",
  20285. height: math.unit(6 + 3 / 12, "feet"),
  20286. default: true
  20287. },
  20288. ]
  20289. ))
  20290. characterMakers.push(() => makeCharacter(
  20291. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20292. {
  20293. front: {
  20294. height: math.unit(6 + 7 / 12, "feet"),
  20295. weight: math.unit(160, "lb"),
  20296. name: "Front",
  20297. image: {
  20298. source: "./media/characters/ceres/front.svg",
  20299. extra: 1023 / 950,
  20300. bottom: 0.027
  20301. }
  20302. },
  20303. back: {
  20304. height: math.unit(6 + 7 / 12, "feet"),
  20305. weight: math.unit(160, "lb"),
  20306. name: "Back",
  20307. image: {
  20308. source: "./media/characters/ceres/back.svg",
  20309. extra: 1023 / 950
  20310. }
  20311. },
  20312. },
  20313. [
  20314. {
  20315. name: "Normal",
  20316. height: math.unit(6 + 7 / 12, "feet"),
  20317. default: true
  20318. },
  20319. ]
  20320. ))
  20321. characterMakers.push(() => makeCharacter(
  20322. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20323. {
  20324. front: {
  20325. height: math.unit(5 + 10 / 12, "feet"),
  20326. weight: math.unit(150, "lb"),
  20327. name: "Front",
  20328. image: {
  20329. source: "./media/characters/kris/front.svg",
  20330. extra: 885 / 803,
  20331. bottom: 0.03
  20332. }
  20333. },
  20334. },
  20335. [
  20336. {
  20337. name: "Normal",
  20338. height: math.unit(5 + 10 / 12, "feet"),
  20339. default: true
  20340. },
  20341. ]
  20342. ))
  20343. characterMakers.push(() => makeCharacter(
  20344. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20345. {
  20346. front: {
  20347. height: math.unit(7, "feet"),
  20348. weight: math.unit(120, "kg"),
  20349. name: "Front",
  20350. image: {
  20351. source: "./media/characters/taluthus/front.svg",
  20352. extra: 903 / 833,
  20353. bottom: 0.015
  20354. }
  20355. },
  20356. },
  20357. [
  20358. {
  20359. name: "Normal",
  20360. height: math.unit(7, "feet"),
  20361. default: true
  20362. },
  20363. {
  20364. name: "Macro",
  20365. height: math.unit(300, "feet")
  20366. },
  20367. ]
  20368. ))
  20369. characterMakers.push(() => makeCharacter(
  20370. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20371. {
  20372. front: {
  20373. height: math.unit(5 + 9 / 12, "feet"),
  20374. weight: math.unit(145, "lb"),
  20375. name: "Front",
  20376. image: {
  20377. source: "./media/characters/dawn/front.svg",
  20378. extra: 2094 / 2016,
  20379. bottom: 0.025
  20380. }
  20381. },
  20382. back: {
  20383. height: math.unit(5 + 9 / 12, "feet"),
  20384. weight: math.unit(160, "lb"),
  20385. name: "Back",
  20386. image: {
  20387. source: "./media/characters/dawn/back.svg",
  20388. extra: 2112 / 2080,
  20389. bottom: 0.005
  20390. }
  20391. },
  20392. },
  20393. [
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(6 + 7 / 12, "feet"),
  20397. default: true
  20398. },
  20399. ]
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20403. {
  20404. anthro: {
  20405. height: math.unit(8 + 3 / 12, "feet"),
  20406. weight: math.unit(450, "lb"),
  20407. name: "Anthro",
  20408. image: {
  20409. source: "./media/characters/arador/anthro.svg",
  20410. extra: 1835 / 1718,
  20411. bottom: 0.025
  20412. }
  20413. },
  20414. feral: {
  20415. height: math.unit(4, "feet"),
  20416. weight: math.unit(200, "lb"),
  20417. name: "Feral",
  20418. image: {
  20419. source: "./media/characters/arador/feral.svg",
  20420. extra: 1683 / 1514,
  20421. bottom: 0.07
  20422. }
  20423. },
  20424. },
  20425. [
  20426. {
  20427. name: "Normal",
  20428. height: math.unit(8 + 3 / 12, "feet")
  20429. },
  20430. {
  20431. name: "Macro",
  20432. height: math.unit(82.5, "feet"),
  20433. default: true
  20434. },
  20435. ]
  20436. ))
  20437. characterMakers.push(() => makeCharacter(
  20438. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20439. {
  20440. front: {
  20441. height: math.unit(5 + 10 / 12, "feet"),
  20442. weight: math.unit(125, "lb"),
  20443. name: "Front",
  20444. image: {
  20445. source: "./media/characters/dharsi/front.svg",
  20446. extra: 716 / 630,
  20447. bottom: 0.035
  20448. }
  20449. },
  20450. },
  20451. [
  20452. {
  20453. name: "Nano",
  20454. height: math.unit(100, "nm")
  20455. },
  20456. {
  20457. name: "Micro",
  20458. height: math.unit(2, "inches")
  20459. },
  20460. {
  20461. name: "Normal",
  20462. height: math.unit(5 + 10 / 12, "feet"),
  20463. default: true
  20464. },
  20465. {
  20466. name: "Macro",
  20467. height: math.unit(1000, "feet")
  20468. },
  20469. {
  20470. name: "Megamacro",
  20471. height: math.unit(10, "miles")
  20472. },
  20473. {
  20474. name: "Gigamacro",
  20475. height: math.unit(3000, "miles")
  20476. },
  20477. {
  20478. name: "Teramacro",
  20479. height: math.unit(500000, "miles")
  20480. },
  20481. {
  20482. name: "Teramacro+",
  20483. height: math.unit(30, "galaxies")
  20484. },
  20485. ]
  20486. ))
  20487. characterMakers.push(() => makeCharacter(
  20488. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20489. {
  20490. front: {
  20491. height: math.unit(6, "feet"),
  20492. weight: math.unit(150, "lb"),
  20493. name: "Front",
  20494. image: {
  20495. source: "./media/characters/deathy/front.svg",
  20496. extra: 1552 / 1463,
  20497. bottom: 0.025
  20498. }
  20499. },
  20500. side: {
  20501. height: math.unit(6, "feet"),
  20502. weight: math.unit(150, "lb"),
  20503. name: "Side",
  20504. image: {
  20505. source: "./media/characters/deathy/side.svg",
  20506. extra: 1604 / 1455,
  20507. bottom: 0.025
  20508. }
  20509. },
  20510. back: {
  20511. height: math.unit(6, "feet"),
  20512. weight: math.unit(150, "lb"),
  20513. name: "Back",
  20514. image: {
  20515. source: "./media/characters/deathy/back.svg",
  20516. extra: 1580 / 1463,
  20517. bottom: 0.005
  20518. }
  20519. },
  20520. },
  20521. [
  20522. {
  20523. name: "Micro",
  20524. height: math.unit(5, "millimeters")
  20525. },
  20526. {
  20527. name: "Normal",
  20528. height: math.unit(6 + 5 / 12, "feet"),
  20529. default: true
  20530. },
  20531. ]
  20532. ))
  20533. characterMakers.push(() => makeCharacter(
  20534. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20535. {
  20536. front: {
  20537. height: math.unit(16, "feet"),
  20538. weight: math.unit(4000, "lb"),
  20539. name: "Front",
  20540. image: {
  20541. source: "./media/characters/juniper/front.svg",
  20542. bottom: 0.04
  20543. }
  20544. },
  20545. },
  20546. [
  20547. {
  20548. name: "Normal",
  20549. height: math.unit(16, "feet"),
  20550. default: true
  20551. },
  20552. ]
  20553. ))
  20554. characterMakers.push(() => makeCharacter(
  20555. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20556. {
  20557. front: {
  20558. height: math.unit(6, "feet"),
  20559. weight: math.unit(150, "lb"),
  20560. name: "Front",
  20561. image: {
  20562. source: "./media/characters/hipster/front.svg",
  20563. extra: 1312 / 1209,
  20564. bottom: 0.025
  20565. }
  20566. },
  20567. back: {
  20568. height: math.unit(6, "feet"),
  20569. weight: math.unit(150, "lb"),
  20570. name: "Back",
  20571. image: {
  20572. source: "./media/characters/hipster/back.svg",
  20573. extra: 1281 / 1196,
  20574. bottom: 0.01
  20575. }
  20576. },
  20577. },
  20578. [
  20579. {
  20580. name: "Micro",
  20581. height: math.unit(1, "mm")
  20582. },
  20583. {
  20584. name: "Normal",
  20585. height: math.unit(4, "inches"),
  20586. default: true
  20587. },
  20588. {
  20589. name: "Macro",
  20590. height: math.unit(500, "feet")
  20591. },
  20592. {
  20593. name: "Megamacro",
  20594. height: math.unit(1000, "miles")
  20595. },
  20596. ]
  20597. ))
  20598. characterMakers.push(() => makeCharacter(
  20599. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20600. {
  20601. front: {
  20602. height: math.unit(6, "feet"),
  20603. weight: math.unit(150, "lb"),
  20604. name: "Front",
  20605. image: {
  20606. source: "./media/characters/tendirmuldr/front.svg",
  20607. extra: 1878 / 1772,
  20608. bottom: 0.015
  20609. }
  20610. },
  20611. },
  20612. [
  20613. {
  20614. name: "Megamacro",
  20615. height: math.unit(1500, "miles"),
  20616. default: true
  20617. },
  20618. ]
  20619. ))
  20620. characterMakers.push(() => makeCharacter(
  20621. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20622. {
  20623. front: {
  20624. height: math.unit(14, "feet"),
  20625. weight: math.unit(12000, "lb"),
  20626. name: "Front",
  20627. image: {
  20628. source: "./media/characters/mort/front.svg",
  20629. extra: 365 / 318,
  20630. bottom: 0.01
  20631. }
  20632. },
  20633. side: {
  20634. height: math.unit(14, "feet"),
  20635. weight: math.unit(12000, "lb"),
  20636. name: "Side",
  20637. image: {
  20638. source: "./media/characters/mort/side.svg",
  20639. extra: 365 / 318,
  20640. bottom: 0.052
  20641. },
  20642. default: true
  20643. },
  20644. back: {
  20645. height: math.unit(14, "feet"),
  20646. weight: math.unit(12000, "lb"),
  20647. name: "Back",
  20648. image: {
  20649. source: "./media/characters/mort/back.svg",
  20650. extra: 371 / 332,
  20651. bottom: 0.18
  20652. }
  20653. },
  20654. },
  20655. [
  20656. {
  20657. name: "Normal",
  20658. height: math.unit(14, "feet"),
  20659. default: true
  20660. },
  20661. ]
  20662. ))
  20663. characterMakers.push(() => makeCharacter(
  20664. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20665. {
  20666. front: {
  20667. height: math.unit(8, "feet"),
  20668. weight: math.unit(1, "ton"),
  20669. name: "Front",
  20670. image: {
  20671. source: "./media/characters/lycoa/front.svg",
  20672. extra: 1836/1728,
  20673. bottom: 81/1917
  20674. }
  20675. },
  20676. back: {
  20677. height: math.unit(8, "feet"),
  20678. weight: math.unit(1, "ton"),
  20679. name: "Back",
  20680. image: {
  20681. source: "./media/characters/lycoa/back.svg",
  20682. extra: 1785/1720,
  20683. bottom: 91/1876
  20684. }
  20685. },
  20686. head: {
  20687. height: math.unit(1.6243, "feet"),
  20688. name: "Head",
  20689. image: {
  20690. source: "./media/characters/lycoa/head.svg",
  20691. extra: 1011/782,
  20692. bottom: 0/1011
  20693. }
  20694. },
  20695. tailmaw: {
  20696. height: math.unit(1.9, "feet"),
  20697. name: "Tailmaw",
  20698. image: {
  20699. source: "./media/characters/lycoa/tailmaw.svg"
  20700. }
  20701. },
  20702. tentacles: {
  20703. height: math.unit(2.1, "feet"),
  20704. name: "Tentacles",
  20705. image: {
  20706. source: "./media/characters/lycoa/tentacles.svg"
  20707. }
  20708. },
  20709. dick: {
  20710. height: math.unit(1.73, "feet"),
  20711. name: "Dick",
  20712. image: {
  20713. source: "./media/characters/lycoa/dick.svg"
  20714. }
  20715. },
  20716. },
  20717. [
  20718. {
  20719. name: "Normal",
  20720. height: math.unit(8, "feet"),
  20721. default: true
  20722. },
  20723. {
  20724. name: "Macro",
  20725. height: math.unit(30, "feet")
  20726. },
  20727. ]
  20728. ))
  20729. characterMakers.push(() => makeCharacter(
  20730. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20731. {
  20732. front: {
  20733. height: math.unit(4 + 2 / 12, "feet"),
  20734. weight: math.unit(70, "lb"),
  20735. name: "Front",
  20736. image: {
  20737. source: "./media/characters/naldara/front.svg",
  20738. extra: 1664/1387,
  20739. bottom: 81/1745
  20740. },
  20741. form: "anthro",
  20742. default: true
  20743. },
  20744. naga: {
  20745. height: math.unit(20, "feet"),
  20746. weight: math.unit(15000, "kg"),
  20747. name: "Front",
  20748. image: {
  20749. source: "./media/characters/naldara/naga.svg",
  20750. extra: 1590/1396,
  20751. bottom: 285/1875
  20752. },
  20753. form: "naga",
  20754. default: true
  20755. },
  20756. },
  20757. [
  20758. {
  20759. name: "Normal",
  20760. height: math.unit(4 + 2 / 12, "feet"),
  20761. form: "anthro",
  20762. default: true
  20763. },
  20764. {
  20765. name: "Normal",
  20766. height: math.unit(20, "feet"),
  20767. form: "naga",
  20768. default: true
  20769. },
  20770. ],
  20771. {
  20772. "anthro": {
  20773. name: "Anthro"
  20774. },
  20775. "naga": {
  20776. name: "Naga"
  20777. }
  20778. }
  20779. ))
  20780. characterMakers.push(() => makeCharacter(
  20781. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20782. {
  20783. front: {
  20784. height: math.unit(13 + 7 / 12, "feet"),
  20785. weight: math.unit(1500, "lb"),
  20786. name: "Front",
  20787. image: {
  20788. source: "./media/characters/briar/front.svg",
  20789. extra: 1223/1157,
  20790. bottom: 123/1346
  20791. }
  20792. },
  20793. },
  20794. [
  20795. {
  20796. name: "Normal",
  20797. height: math.unit(13 + 7 / 12, "feet"),
  20798. default: true
  20799. },
  20800. ]
  20801. ))
  20802. characterMakers.push(() => makeCharacter(
  20803. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20804. {
  20805. side: {
  20806. height: math.unit(16, "feet"),
  20807. weight: math.unit(500, "lb"),
  20808. name: "Side",
  20809. image: {
  20810. source: "./media/characters/vanguard/side.svg",
  20811. extra: 1022/914,
  20812. bottom: 30/1052
  20813. }
  20814. },
  20815. sideAlt: {
  20816. height: math.unit(10, "feet"),
  20817. weight: math.unit(500, "lb"),
  20818. name: "Side (Alt)",
  20819. image: {
  20820. source: "./media/characters/vanguard/side-alt.svg",
  20821. extra: 502 / 425,
  20822. bottom: 0.087
  20823. }
  20824. },
  20825. },
  20826. [
  20827. {
  20828. name: "Normal",
  20829. height: math.unit(17.71, "feet"),
  20830. default: true
  20831. },
  20832. ]
  20833. ))
  20834. characterMakers.push(() => makeCharacter(
  20835. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20836. {
  20837. front: {
  20838. height: math.unit(7.5, "feet"),
  20839. weight: math.unit(2, "lb"),
  20840. name: "Front",
  20841. image: {
  20842. source: "./media/characters/artemis/front.svg",
  20843. extra: 1192 / 1075,
  20844. bottom: 0.07
  20845. }
  20846. },
  20847. frontNsfw: {
  20848. height: math.unit(7.5, "feet"),
  20849. weight: math.unit(2, "lb"),
  20850. name: "Front (NSFW)",
  20851. image: {
  20852. source: "./media/characters/artemis/front-nsfw.svg",
  20853. extra: 1192 / 1075,
  20854. bottom: 0.07
  20855. }
  20856. },
  20857. frontNsfwer: {
  20858. height: math.unit(7.5, "feet"),
  20859. weight: math.unit(2, "lb"),
  20860. name: "Front (NSFW-er)",
  20861. image: {
  20862. source: "./media/characters/artemis/front-nsfwer.svg",
  20863. extra: 1192 / 1075,
  20864. bottom: 0.07
  20865. }
  20866. },
  20867. side: {
  20868. height: math.unit(7.5, "feet"),
  20869. weight: math.unit(2, "lb"),
  20870. name: "Side",
  20871. image: {
  20872. source: "./media/characters/artemis/side.svg",
  20873. extra: 1192 / 1075,
  20874. bottom: 0.07
  20875. }
  20876. },
  20877. sideNsfw: {
  20878. height: math.unit(7.5, "feet"),
  20879. weight: math.unit(2, "lb"),
  20880. name: "Side (NSFW)",
  20881. image: {
  20882. source: "./media/characters/artemis/side-nsfw.svg",
  20883. extra: 1192 / 1075,
  20884. bottom: 0.07
  20885. }
  20886. },
  20887. sideNsfwer: {
  20888. height: math.unit(7.5, "feet"),
  20889. weight: math.unit(2, "lb"),
  20890. name: "Side (NSFW-er)",
  20891. image: {
  20892. source: "./media/characters/artemis/side-nsfwer.svg",
  20893. extra: 1192 / 1075,
  20894. bottom: 0.07
  20895. }
  20896. },
  20897. maw: {
  20898. height: math.unit(1.1, "feet"),
  20899. name: "Maw",
  20900. image: {
  20901. source: "./media/characters/artemis/maw.svg"
  20902. }
  20903. },
  20904. stomach: {
  20905. height: math.unit(0.95, "feet"),
  20906. name: "Stomach",
  20907. image: {
  20908. source: "./media/characters/artemis/stomach.svg"
  20909. }
  20910. },
  20911. dickCanine: {
  20912. height: math.unit(1, "feet"),
  20913. name: "Dick (Canine)",
  20914. image: {
  20915. source: "./media/characters/artemis/dick-canine.svg"
  20916. }
  20917. },
  20918. dickEquine: {
  20919. height: math.unit(0.85, "feet"),
  20920. name: "Dick (Equine)",
  20921. image: {
  20922. source: "./media/characters/artemis/dick-equine.svg"
  20923. }
  20924. },
  20925. dickExotic: {
  20926. height: math.unit(0.85, "feet"),
  20927. name: "Dick (Exotic)",
  20928. image: {
  20929. source: "./media/characters/artemis/dick-exotic.svg"
  20930. }
  20931. },
  20932. },
  20933. [
  20934. {
  20935. name: "Normal",
  20936. height: math.unit(7.5, "feet"),
  20937. default: true
  20938. },
  20939. {
  20940. name: "Enlarged",
  20941. height: math.unit(12, "feet")
  20942. },
  20943. ]
  20944. ))
  20945. characterMakers.push(() => makeCharacter(
  20946. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20947. {
  20948. front: {
  20949. height: math.unit(5 + 3 / 12, "feet"),
  20950. weight: math.unit(160, "lb"),
  20951. name: "Front",
  20952. image: {
  20953. source: "./media/characters/kira/front.svg",
  20954. extra: 906 / 786,
  20955. bottom: 0.01
  20956. }
  20957. },
  20958. back: {
  20959. height: math.unit(5 + 3 / 12, "feet"),
  20960. weight: math.unit(160, "lb"),
  20961. name: "Back",
  20962. image: {
  20963. source: "./media/characters/kira/back.svg",
  20964. extra: 882 / 757,
  20965. bottom: 0.005
  20966. }
  20967. },
  20968. frontDressed: {
  20969. height: math.unit(5 + 3 / 12, "feet"),
  20970. weight: math.unit(160, "lb"),
  20971. name: "Front (Dressed)",
  20972. image: {
  20973. source: "./media/characters/kira/front-dressed.svg",
  20974. extra: 906 / 786,
  20975. bottom: 0.01
  20976. }
  20977. },
  20978. beans: {
  20979. height: math.unit(0.92, "feet"),
  20980. name: "Beans",
  20981. image: {
  20982. source: "./media/characters/kira/beans.svg"
  20983. }
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(5 + 3 / 12, "feet"),
  20990. default: true
  20991. },
  20992. ]
  20993. ))
  20994. characterMakers.push(() => makeCharacter(
  20995. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20996. {
  20997. front: {
  20998. height: math.unit(5 + 4 / 12, "feet"),
  20999. weight: math.unit(145, "lb"),
  21000. name: "Front",
  21001. image: {
  21002. source: "./media/characters/scramble/front.svg",
  21003. extra: 763 / 727,
  21004. bottom: 0.05
  21005. }
  21006. },
  21007. back: {
  21008. height: math.unit(5 + 4 / 12, "feet"),
  21009. weight: math.unit(145, "lb"),
  21010. name: "Back",
  21011. image: {
  21012. source: "./media/characters/scramble/back.svg",
  21013. extra: 826 / 737,
  21014. bottom: 0.002
  21015. }
  21016. },
  21017. },
  21018. [
  21019. {
  21020. name: "Normal",
  21021. height: math.unit(5 + 4 / 12, "feet"),
  21022. default: true
  21023. },
  21024. ]
  21025. ))
  21026. characterMakers.push(() => makeCharacter(
  21027. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21028. {
  21029. side: {
  21030. height: math.unit(6 + 2 / 12, "feet"),
  21031. weight: math.unit(190, "lb"),
  21032. name: "Side",
  21033. image: {
  21034. source: "./media/characters/biscuit/side.svg",
  21035. extra: 858 / 791,
  21036. bottom: 0.044
  21037. }
  21038. },
  21039. },
  21040. [
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(6 + 2 / 12, "feet"),
  21044. default: true
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21050. {
  21051. front: {
  21052. height: math.unit(5 + 2 / 12, "feet"),
  21053. weight: math.unit(120, "lb"),
  21054. name: "Front",
  21055. image: {
  21056. source: "./media/characters/poffin/front.svg",
  21057. extra: 786 / 680,
  21058. bottom: 0.005
  21059. }
  21060. },
  21061. },
  21062. [
  21063. {
  21064. name: "Normal",
  21065. height: math.unit(5 + 2 / 12, "feet"),
  21066. default: true
  21067. },
  21068. ]
  21069. ))
  21070. characterMakers.push(() => makeCharacter(
  21071. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21072. {
  21073. front: {
  21074. height: math.unit(6 + 3 / 12, "feet"),
  21075. weight: math.unit(519, "lb"),
  21076. name: "Front",
  21077. image: {
  21078. source: "./media/characters/dhari/front.svg",
  21079. extra: 1048 / 946,
  21080. bottom: 0.015
  21081. }
  21082. },
  21083. back: {
  21084. height: math.unit(6 + 3 / 12, "feet"),
  21085. weight: math.unit(519, "lb"),
  21086. name: "Back",
  21087. image: {
  21088. source: "./media/characters/dhari/back.svg",
  21089. extra: 1048 / 931,
  21090. bottom: 0.005
  21091. }
  21092. },
  21093. frontDressed: {
  21094. height: math.unit(6 + 3 / 12, "feet"),
  21095. weight: math.unit(519, "lb"),
  21096. name: "Front (Dressed)",
  21097. image: {
  21098. source: "./media/characters/dhari/front-dressed.svg",
  21099. extra: 1713 / 1546,
  21100. bottom: 0.02
  21101. }
  21102. },
  21103. backDressed: {
  21104. height: math.unit(6 + 3 / 12, "feet"),
  21105. weight: math.unit(519, "lb"),
  21106. name: "Back (Dressed)",
  21107. image: {
  21108. source: "./media/characters/dhari/back-dressed.svg",
  21109. extra: 1699 / 1537,
  21110. bottom: 0.01
  21111. }
  21112. },
  21113. maw: {
  21114. height: math.unit(0.95, "feet"),
  21115. name: "Maw",
  21116. image: {
  21117. source: "./media/characters/dhari/maw.svg"
  21118. }
  21119. },
  21120. wereFront: {
  21121. height: math.unit(12 + 8 / 12, "feet"),
  21122. weight: math.unit(4000, "lb"),
  21123. name: "Front (Were)",
  21124. image: {
  21125. source: "./media/characters/dhari/were-front.svg",
  21126. extra: 1065 / 969,
  21127. bottom: 0.015
  21128. }
  21129. },
  21130. wereBack: {
  21131. height: math.unit(12 + 8 / 12, "feet"),
  21132. weight: math.unit(4000, "lb"),
  21133. name: "Back (Were)",
  21134. image: {
  21135. source: "./media/characters/dhari/were-back.svg",
  21136. extra: 1065 / 969,
  21137. bottom: 0.012
  21138. }
  21139. },
  21140. wereMaw: {
  21141. height: math.unit(0.625, "meters"),
  21142. name: "Maw (Were)",
  21143. image: {
  21144. source: "./media/characters/dhari/were-maw.svg"
  21145. }
  21146. },
  21147. },
  21148. [
  21149. {
  21150. name: "Normal",
  21151. height: math.unit(6 + 3 / 12, "feet"),
  21152. default: true
  21153. },
  21154. ]
  21155. ))
  21156. characterMakers.push(() => makeCharacter(
  21157. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21158. {
  21159. anthro: {
  21160. height: math.unit(5 + 7 / 12, "feet"),
  21161. weight: math.unit(175, "lb"),
  21162. name: "Anthro",
  21163. image: {
  21164. source: "./media/characters/rena-dyne/anthro.svg",
  21165. extra: 1849 / 1785,
  21166. bottom: 0.005
  21167. }
  21168. },
  21169. taur: {
  21170. height: math.unit(15 + 6 / 12, "feet"),
  21171. weight: math.unit(8000, "lb"),
  21172. name: "Taur",
  21173. image: {
  21174. source: "./media/characters/rena-dyne/taur.svg",
  21175. extra: 2315 / 2234,
  21176. bottom: 0.033
  21177. }
  21178. },
  21179. },
  21180. [
  21181. {
  21182. name: "Normal",
  21183. height: math.unit(5 + 7 / 12, "feet"),
  21184. default: true
  21185. },
  21186. ]
  21187. ))
  21188. characterMakers.push(() => makeCharacter(
  21189. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21190. {
  21191. front: {
  21192. height: math.unit(8, "feet"),
  21193. weight: math.unit(600, "lb"),
  21194. name: "Front",
  21195. image: {
  21196. source: "./media/characters/weremeep/front.svg",
  21197. extra: 967 / 862,
  21198. bottom: 0.01
  21199. }
  21200. },
  21201. },
  21202. [
  21203. {
  21204. name: "Normal",
  21205. height: math.unit(8, "feet"),
  21206. default: true
  21207. },
  21208. {
  21209. name: "Lorg",
  21210. height: math.unit(12, "feet")
  21211. },
  21212. {
  21213. name: "Oh Lawd She Comin'",
  21214. height: math.unit(20, "feet")
  21215. },
  21216. ]
  21217. ))
  21218. characterMakers.push(() => makeCharacter(
  21219. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21220. {
  21221. front: {
  21222. height: math.unit(4, "feet"),
  21223. weight: math.unit(90, "lb"),
  21224. name: "Front",
  21225. image: {
  21226. source: "./media/characters/reza/front.svg",
  21227. extra: 1183 / 1111,
  21228. bottom: 0.017
  21229. }
  21230. },
  21231. back: {
  21232. height: math.unit(4, "feet"),
  21233. weight: math.unit(90, "lb"),
  21234. name: "Back",
  21235. image: {
  21236. source: "./media/characters/reza/back.svg",
  21237. extra: 1183 / 1111,
  21238. bottom: 0.01
  21239. }
  21240. },
  21241. drake: {
  21242. height: math.unit(30, "feet"),
  21243. weight: math.unit(246960, "lb"),
  21244. name: "Drake",
  21245. image: {
  21246. source: "./media/characters/reza/drake.svg",
  21247. extra: 2350 / 2024,
  21248. bottom: 60.7 / 2403
  21249. }
  21250. },
  21251. },
  21252. [
  21253. {
  21254. name: "Normal",
  21255. height: math.unit(4, "feet"),
  21256. default: true
  21257. },
  21258. ]
  21259. ))
  21260. characterMakers.push(() => makeCharacter(
  21261. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21262. {
  21263. side: {
  21264. height: math.unit(15, "feet"),
  21265. weight: math.unit(14, "tons"),
  21266. name: "Side",
  21267. image: {
  21268. source: "./media/characters/athea/side.svg",
  21269. extra: 960 / 540,
  21270. bottom: 0.003
  21271. }
  21272. },
  21273. sitting: {
  21274. height: math.unit(6 * 2.85, "feet"),
  21275. weight: math.unit(14, "tons"),
  21276. name: "Sitting",
  21277. image: {
  21278. source: "./media/characters/athea/sitting.svg",
  21279. extra: 621 / 581,
  21280. bottom: 0.075
  21281. }
  21282. },
  21283. maw: {
  21284. height: math.unit(7.59498031496063, "feet"),
  21285. name: "Maw",
  21286. image: {
  21287. source: "./media/characters/athea/maw.svg"
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Lap Cat",
  21294. height: math.unit(2.5, "feet")
  21295. },
  21296. {
  21297. name: "Minimacro",
  21298. height: math.unit(15, "feet"),
  21299. default: true
  21300. },
  21301. {
  21302. name: "Macro",
  21303. height: math.unit(120, "feet")
  21304. },
  21305. {
  21306. name: "Macro+",
  21307. height: math.unit(640, "feet")
  21308. },
  21309. {
  21310. name: "Colossus",
  21311. height: math.unit(2.2, "miles")
  21312. },
  21313. ]
  21314. ))
  21315. characterMakers.push(() => makeCharacter(
  21316. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21317. {
  21318. front: {
  21319. height: math.unit(8 + 8 / 12, "feet"),
  21320. weight: math.unit(130, "kg"),
  21321. name: "Front",
  21322. image: {
  21323. source: "./media/characters/seroko/front.svg",
  21324. extra: 1385 / 1280,
  21325. bottom: 0.025
  21326. }
  21327. },
  21328. back: {
  21329. height: math.unit(8 + 8 / 12, "feet"),
  21330. weight: math.unit(130, "kg"),
  21331. name: "Back",
  21332. image: {
  21333. source: "./media/characters/seroko/back.svg",
  21334. extra: 1369 / 1238,
  21335. bottom: 0.018
  21336. }
  21337. },
  21338. frontDressed: {
  21339. height: math.unit(8 + 8 / 12, "feet"),
  21340. weight: math.unit(130, "kg"),
  21341. name: "Front (Dressed)",
  21342. image: {
  21343. source: "./media/characters/seroko/front-dressed.svg",
  21344. extra: 1366 / 1275,
  21345. bottom: 0.03
  21346. }
  21347. },
  21348. },
  21349. [
  21350. {
  21351. name: "Normal",
  21352. height: math.unit(8 + 8 / 12, "feet"),
  21353. default: true
  21354. },
  21355. ]
  21356. ))
  21357. characterMakers.push(() => makeCharacter(
  21358. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21359. {
  21360. front: {
  21361. height: math.unit(5.5, "feet"),
  21362. weight: math.unit(160, "lb"),
  21363. name: "Front",
  21364. image: {
  21365. source: "./media/characters/quatzi/front.svg",
  21366. extra: 2346 / 2242,
  21367. bottom: 0.015
  21368. }
  21369. },
  21370. },
  21371. [
  21372. {
  21373. name: "Normal",
  21374. height: math.unit(5.5, "feet"),
  21375. default: true
  21376. },
  21377. {
  21378. name: "Big",
  21379. height: math.unit(7.7, "feet")
  21380. },
  21381. ]
  21382. ))
  21383. characterMakers.push(() => makeCharacter(
  21384. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21385. {
  21386. front: {
  21387. height: math.unit(5 + 11 / 12, "feet"),
  21388. weight: math.unit(180, "lb"),
  21389. name: "Front",
  21390. image: {
  21391. source: "./media/characters/sen/front.svg",
  21392. extra: 1321 / 1254,
  21393. bottom: 0.015
  21394. }
  21395. },
  21396. side: {
  21397. height: math.unit(5 + 11 / 12, "feet"),
  21398. weight: math.unit(180, "lb"),
  21399. name: "Side",
  21400. image: {
  21401. source: "./media/characters/sen/side.svg",
  21402. extra: 1321 / 1254,
  21403. bottom: 0.007
  21404. }
  21405. },
  21406. back: {
  21407. height: math.unit(5 + 11 / 12, "feet"),
  21408. weight: math.unit(180, "lb"),
  21409. name: "Back",
  21410. image: {
  21411. source: "./media/characters/sen/back.svg",
  21412. extra: 1321 / 1254
  21413. }
  21414. },
  21415. },
  21416. [
  21417. {
  21418. name: "Normal",
  21419. height: math.unit(5 + 11 / 12, "feet"),
  21420. default: true
  21421. },
  21422. ]
  21423. ))
  21424. characterMakers.push(() => makeCharacter(
  21425. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21426. {
  21427. front: {
  21428. height: math.unit(166.6, "cm"),
  21429. weight: math.unit(66.6, "kg"),
  21430. name: "Front",
  21431. image: {
  21432. source: "./media/characters/fruity/front.svg",
  21433. extra: 1510 / 1386,
  21434. bottom: 0.04
  21435. }
  21436. },
  21437. back: {
  21438. height: math.unit(166.6, "cm"),
  21439. weight: math.unit(66.6, "lb"),
  21440. name: "Back",
  21441. image: {
  21442. source: "./media/characters/fruity/back.svg",
  21443. extra: 1563 / 1435,
  21444. bottom: 0.005
  21445. }
  21446. },
  21447. },
  21448. [
  21449. {
  21450. name: "Normal",
  21451. height: math.unit(166.6, "cm"),
  21452. default: true
  21453. },
  21454. {
  21455. name: "Demonic",
  21456. height: math.unit(166.6, "feet")
  21457. },
  21458. ]
  21459. ))
  21460. characterMakers.push(() => makeCharacter(
  21461. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21462. {
  21463. side: {
  21464. height: math.unit(10, "feet"),
  21465. weight: math.unit(500, "lb"),
  21466. name: "Side",
  21467. image: {
  21468. source: "./media/characters/zost/side.svg",
  21469. extra: 2870/2533,
  21470. bottom: 252/3122
  21471. }
  21472. },
  21473. mawFront: {
  21474. height: math.unit(1.08, "meters"),
  21475. name: "Maw (Front)",
  21476. image: {
  21477. source: "./media/characters/zost/maw-front.svg"
  21478. }
  21479. },
  21480. mawSide: {
  21481. height: math.unit(2.66, "feet"),
  21482. name: "Maw (Side)",
  21483. image: {
  21484. source: "./media/characters/zost/maw-side.svg"
  21485. }
  21486. },
  21487. wingspan: {
  21488. height: math.unit(7.4, "feet"),
  21489. name: "Wingspan",
  21490. image: {
  21491. source: "./media/characters/zost/wingspan.svg"
  21492. }
  21493. },
  21494. },
  21495. [
  21496. {
  21497. name: "Normal",
  21498. height: math.unit(10, "feet"),
  21499. default: true
  21500. },
  21501. ]
  21502. ))
  21503. characterMakers.push(() => makeCharacter(
  21504. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21505. {
  21506. front: {
  21507. height: math.unit(5 + 4 / 12, "feet"),
  21508. weight: math.unit(120, "lb"),
  21509. name: "Front",
  21510. image: {
  21511. source: "./media/characters/luci/front.svg",
  21512. extra: 1985 / 1884,
  21513. bottom: 0.04
  21514. }
  21515. },
  21516. back: {
  21517. height: math.unit(5 + 4 / 12, "feet"),
  21518. weight: math.unit(120, "lb"),
  21519. name: "Back",
  21520. image: {
  21521. source: "./media/characters/luci/back.svg",
  21522. extra: 1892 / 1791,
  21523. bottom: 0.002
  21524. }
  21525. },
  21526. },
  21527. [
  21528. {
  21529. name: "Normal",
  21530. height: math.unit(5 + 4 / 12, "feet"),
  21531. default: true
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21537. {
  21538. front: {
  21539. height: math.unit(1500, "feet"),
  21540. weight: math.unit(3.8e6, "tons"),
  21541. name: "Front",
  21542. image: {
  21543. source: "./media/characters/2th/front.svg",
  21544. extra: 3489 / 3350,
  21545. bottom: 0.1
  21546. }
  21547. },
  21548. foot: {
  21549. height: math.unit(461, "feet"),
  21550. name: "Foot",
  21551. image: {
  21552. source: "./media/characters/2th/foot.svg"
  21553. }
  21554. },
  21555. },
  21556. [
  21557. {
  21558. name: "\"Micro\"",
  21559. height: math.unit(15 + 7 / 12, "feet")
  21560. },
  21561. {
  21562. name: "Normal",
  21563. height: math.unit(1500, "feet"),
  21564. default: true
  21565. },
  21566. {
  21567. name: "Macro",
  21568. height: math.unit(5000, "feet")
  21569. },
  21570. {
  21571. name: "Megamacro",
  21572. height: math.unit(15, "miles")
  21573. },
  21574. {
  21575. name: "Gigamacro",
  21576. height: math.unit(4000, "miles")
  21577. },
  21578. {
  21579. name: "Galactic",
  21580. height: math.unit(50, "AU")
  21581. },
  21582. ]
  21583. ))
  21584. characterMakers.push(() => makeCharacter(
  21585. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21586. {
  21587. front: {
  21588. height: math.unit(5 + 6 / 12, "feet"),
  21589. weight: math.unit(220, "lb"),
  21590. name: "Front",
  21591. image: {
  21592. source: "./media/characters/amethyst/front.svg",
  21593. extra: 2078 / 2040,
  21594. bottom: 0.045
  21595. }
  21596. },
  21597. back: {
  21598. height: math.unit(5 + 6 / 12, "feet"),
  21599. weight: math.unit(220, "lb"),
  21600. name: "Back",
  21601. image: {
  21602. source: "./media/characters/amethyst/back.svg",
  21603. extra: 2021 / 1989,
  21604. bottom: 0.02
  21605. }
  21606. },
  21607. },
  21608. [
  21609. {
  21610. name: "Normal",
  21611. height: math.unit(5 + 6 / 12, "feet"),
  21612. default: true
  21613. },
  21614. ]
  21615. ))
  21616. characterMakers.push(() => makeCharacter(
  21617. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21618. {
  21619. front: {
  21620. height: math.unit(4 + 11 / 12, "feet"),
  21621. weight: math.unit(120, "lb"),
  21622. name: "Front",
  21623. image: {
  21624. source: "./media/characters/yumi-akiyama/front.svg",
  21625. extra: 1327 / 1235,
  21626. bottom: 0.02
  21627. }
  21628. },
  21629. back: {
  21630. height: math.unit(4 + 11 / 12, "feet"),
  21631. weight: math.unit(120, "lb"),
  21632. name: "Back",
  21633. image: {
  21634. source: "./media/characters/yumi-akiyama/back.svg",
  21635. extra: 1287 / 1245,
  21636. bottom: 0.002
  21637. }
  21638. },
  21639. },
  21640. [
  21641. {
  21642. name: "Galactic",
  21643. height: math.unit(50, "galaxies"),
  21644. default: true
  21645. },
  21646. {
  21647. name: "Universal",
  21648. height: math.unit(100, "universes")
  21649. },
  21650. ]
  21651. ))
  21652. characterMakers.push(() => makeCharacter(
  21653. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21654. {
  21655. front: {
  21656. height: math.unit(8, "feet"),
  21657. weight: math.unit(500, "lb"),
  21658. name: "Front",
  21659. image: {
  21660. source: "./media/characters/rifter-yrmori/front.svg",
  21661. extra: 1180 / 1125,
  21662. bottom: 0.02
  21663. }
  21664. },
  21665. back: {
  21666. height: math.unit(8, "feet"),
  21667. weight: math.unit(500, "lb"),
  21668. name: "Back",
  21669. image: {
  21670. source: "./media/characters/rifter-yrmori/back.svg",
  21671. extra: 1190 / 1145,
  21672. bottom: 0.001
  21673. }
  21674. },
  21675. wings: {
  21676. height: math.unit(7.75, "feet"),
  21677. weight: math.unit(500, "lb"),
  21678. name: "Wings",
  21679. image: {
  21680. source: "./media/characters/rifter-yrmori/wings.svg",
  21681. extra: 1357 / 1285
  21682. }
  21683. },
  21684. maw: {
  21685. height: math.unit(0.8, "feet"),
  21686. name: "Maw",
  21687. image: {
  21688. source: "./media/characters/rifter-yrmori/maw.svg"
  21689. }
  21690. },
  21691. mawfront: {
  21692. height: math.unit(1.45, "feet"),
  21693. name: "Maw (Front)",
  21694. image: {
  21695. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21696. }
  21697. },
  21698. },
  21699. [
  21700. {
  21701. name: "Normal",
  21702. height: math.unit(8, "feet"),
  21703. default: true
  21704. },
  21705. {
  21706. name: "Macro",
  21707. height: math.unit(42, "meters")
  21708. },
  21709. ]
  21710. ))
  21711. characterMakers.push(() => makeCharacter(
  21712. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21713. {
  21714. were: {
  21715. height: math.unit(25 + 6 / 12, "feet"),
  21716. weight: math.unit(10000, "lb"),
  21717. name: "Were",
  21718. image: {
  21719. source: "./media/characters/tahajin/were.svg",
  21720. extra: 801 / 770,
  21721. bottom: 0.042
  21722. }
  21723. },
  21724. aquatic: {
  21725. height: math.unit(6 + 4 / 12, "feet"),
  21726. weight: math.unit(160, "lb"),
  21727. name: "Aquatic",
  21728. image: {
  21729. source: "./media/characters/tahajin/aquatic.svg",
  21730. extra: 572 / 542,
  21731. bottom: 0.04
  21732. }
  21733. },
  21734. chow: {
  21735. height: math.unit(8 + 11 / 12, "feet"),
  21736. weight: math.unit(450, "lb"),
  21737. name: "Chow",
  21738. image: {
  21739. source: "./media/characters/tahajin/chow.svg",
  21740. extra: 660 / 640,
  21741. bottom: 0.015
  21742. }
  21743. },
  21744. demiNaga: {
  21745. height: math.unit(6 + 8 / 12, "feet"),
  21746. weight: math.unit(300, "lb"),
  21747. name: "Demi Naga",
  21748. image: {
  21749. source: "./media/characters/tahajin/demi-naga.svg",
  21750. extra: 643 / 615,
  21751. bottom: 0.1
  21752. }
  21753. },
  21754. data: {
  21755. height: math.unit(5, "inches"),
  21756. weight: math.unit(0.1, "lb"),
  21757. name: "Data",
  21758. image: {
  21759. source: "./media/characters/tahajin/data.svg"
  21760. }
  21761. },
  21762. fluu: {
  21763. height: math.unit(5 + 7 / 12, "feet"),
  21764. weight: math.unit(140, "lb"),
  21765. name: "Fluu",
  21766. image: {
  21767. source: "./media/characters/tahajin/fluu.svg",
  21768. extra: 628 / 592,
  21769. bottom: 0.02
  21770. }
  21771. },
  21772. starWarrior: {
  21773. height: math.unit(4 + 5 / 12, "feet"),
  21774. weight: math.unit(50, "lb"),
  21775. name: "Star Warrior",
  21776. image: {
  21777. source: "./media/characters/tahajin/star-warrior.svg"
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(25 + 6 / 12, "feet"),
  21785. default: true
  21786. },
  21787. ]
  21788. ))
  21789. characterMakers.push(() => makeCharacter(
  21790. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21791. {
  21792. front: {
  21793. height: math.unit(8, "feet"),
  21794. weight: math.unit(350, "lb"),
  21795. name: "Front",
  21796. image: {
  21797. source: "./media/characters/gabira/front.svg",
  21798. extra: 608 / 580,
  21799. bottom: 0.03
  21800. }
  21801. },
  21802. back: {
  21803. height: math.unit(8, "feet"),
  21804. weight: math.unit(350, "lb"),
  21805. name: "Back",
  21806. image: {
  21807. source: "./media/characters/gabira/back.svg",
  21808. extra: 608 / 580,
  21809. bottom: 0.03
  21810. }
  21811. },
  21812. },
  21813. [
  21814. {
  21815. name: "Normal",
  21816. height: math.unit(8, "feet"),
  21817. default: true
  21818. },
  21819. ]
  21820. ))
  21821. characterMakers.push(() => makeCharacter(
  21822. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21823. {
  21824. front: {
  21825. height: math.unit(5 + 3 / 12, "feet"),
  21826. weight: math.unit(137, "lb"),
  21827. name: "Front",
  21828. image: {
  21829. source: "./media/characters/sasha-katraine/front.svg",
  21830. bottom: 0.045
  21831. }
  21832. },
  21833. },
  21834. [
  21835. {
  21836. name: "Micro",
  21837. height: math.unit(5, "inches")
  21838. },
  21839. {
  21840. name: "Normal",
  21841. height: math.unit(5 + 3 / 12, "feet"),
  21842. default: true
  21843. },
  21844. ]
  21845. ))
  21846. characterMakers.push(() => makeCharacter(
  21847. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21848. {
  21849. side: {
  21850. height: math.unit(4, "inches"),
  21851. weight: math.unit(200, "grams"),
  21852. name: "Side",
  21853. image: {
  21854. source: "./media/characters/der/side.svg",
  21855. extra: 719 / 400,
  21856. bottom: 30.6 / 749.9187
  21857. }
  21858. },
  21859. },
  21860. [
  21861. {
  21862. name: "Micro",
  21863. height: math.unit(4, "inches"),
  21864. default: true
  21865. },
  21866. ]
  21867. ))
  21868. characterMakers.push(() => makeCharacter(
  21869. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21870. {
  21871. side: {
  21872. height: math.unit(30, "meters"),
  21873. weight: math.unit(700, "tonnes"),
  21874. name: "Side",
  21875. image: {
  21876. source: "./media/characters/fixerdragon/side.svg",
  21877. extra: (1293.0514 - 116.03) / 1106.86,
  21878. bottom: 116.03 / 1293.0514
  21879. }
  21880. },
  21881. },
  21882. [
  21883. {
  21884. name: "Planck",
  21885. height: math.unit(1.6e-35, "meters")
  21886. },
  21887. {
  21888. name: "Micro",
  21889. height: math.unit(0.4, "meters")
  21890. },
  21891. {
  21892. name: "Normal",
  21893. height: math.unit(30, "meters"),
  21894. default: true
  21895. },
  21896. {
  21897. name: "Megamacro",
  21898. height: math.unit(1.2, "megameters")
  21899. },
  21900. {
  21901. name: "Teramacro",
  21902. height: math.unit(130, "terameters")
  21903. },
  21904. {
  21905. name: "Yottamacro",
  21906. height: math.unit(6200, "yottameters")
  21907. },
  21908. ]
  21909. ));
  21910. characterMakers.push(() => makeCharacter(
  21911. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21912. {
  21913. front: {
  21914. height: math.unit(8, "feet"),
  21915. weight: math.unit(250, "lb"),
  21916. name: "Front",
  21917. image: {
  21918. source: "./media/characters/kite/front.svg",
  21919. extra: 2796 / 2659,
  21920. bottom: 0.002
  21921. }
  21922. },
  21923. },
  21924. [
  21925. {
  21926. name: "Normal",
  21927. height: math.unit(8, "feet"),
  21928. default: true
  21929. },
  21930. {
  21931. name: "Macro",
  21932. height: math.unit(360, "feet")
  21933. },
  21934. {
  21935. name: "Megamacro",
  21936. height: math.unit(1500, "feet")
  21937. },
  21938. ]
  21939. ))
  21940. characterMakers.push(() => makeCharacter(
  21941. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21942. {
  21943. front: {
  21944. height: math.unit(5 + 11/12, "feet"),
  21945. weight: math.unit(170, "lb"),
  21946. name: "Front",
  21947. image: {
  21948. source: "./media/characters/poojawa-vynar/front.svg",
  21949. extra: 1735/1585,
  21950. bottom: 96/1831
  21951. }
  21952. },
  21953. back: {
  21954. height: math.unit(5 + 11/12, "feet"),
  21955. weight: math.unit(170, "lb"),
  21956. name: "Back",
  21957. image: {
  21958. source: "./media/characters/poojawa-vynar/back.svg",
  21959. extra: 1749/1607,
  21960. bottom: 28/1777
  21961. }
  21962. },
  21963. male: {
  21964. height: math.unit(5 + 11/12, "feet"),
  21965. weight: math.unit(170, "lb"),
  21966. name: "Male",
  21967. image: {
  21968. source: "./media/characters/poojawa-vynar/male.svg",
  21969. extra: 1855/1713,
  21970. bottom: 63/1918
  21971. }
  21972. },
  21973. taur: {
  21974. height: math.unit(5 + 11/12, "feet"),
  21975. weight: math.unit(170, "lb"),
  21976. name: "Taur",
  21977. image: {
  21978. source: "./media/characters/poojawa-vynar/taur.svg",
  21979. extra: 1151/1059,
  21980. bottom: 356/1507
  21981. }
  21982. },
  21983. frontDressed: {
  21984. height: math.unit(5 + 11/12, "feet"),
  21985. weight: math.unit(170, "lb"),
  21986. name: "Front (Dressed)",
  21987. image: {
  21988. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21989. extra: 1735/1585,
  21990. bottom: 96/1831
  21991. }
  21992. },
  21993. backDressed: {
  21994. height: math.unit(5 + 11/12, "feet"),
  21995. weight: math.unit(170, "lb"),
  21996. name: "Back (Dressed)",
  21997. image: {
  21998. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21999. extra: 1749/1607,
  22000. bottom: 28/1777
  22001. }
  22002. },
  22003. maleDressed: {
  22004. height: math.unit(5 + 11/12, "feet"),
  22005. weight: math.unit(170, "lb"),
  22006. name: "Male (Dressed)",
  22007. image: {
  22008. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22009. extra: 1855/1713,
  22010. bottom: 63/1918
  22011. }
  22012. },
  22013. taurDressed: {
  22014. height: math.unit(5 + 11/12, "feet"),
  22015. weight: math.unit(170, "lb"),
  22016. name: "Taur (Dressed)",
  22017. image: {
  22018. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22019. extra: 1151/1059,
  22020. bottom: 356/1507
  22021. }
  22022. },
  22023. maw: {
  22024. height: math.unit(1.46, "feet"),
  22025. name: "Maw",
  22026. image: {
  22027. source: "./media/characters/poojawa-vynar/maw.svg"
  22028. }
  22029. },
  22030. head: {
  22031. height: math.unit(2.34, "feet"),
  22032. name: "Head",
  22033. image: {
  22034. source: "./media/characters/poojawa-vynar/head.svg"
  22035. }
  22036. },
  22037. paw: {
  22038. height: math.unit(1.61, "feet"),
  22039. name: "Paw",
  22040. image: {
  22041. source: "./media/characters/poojawa-vynar/paw.svg"
  22042. }
  22043. },
  22044. pawToering: {
  22045. height: math.unit(1.72, "feet"),
  22046. name: "Paw (Toering)",
  22047. image: {
  22048. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22049. }
  22050. },
  22051. toering: {
  22052. height: math.unit(2.9, "inches"),
  22053. name: "Toering",
  22054. image: {
  22055. source: "./media/characters/poojawa-vynar/toering.svg"
  22056. }
  22057. },
  22058. shaft: {
  22059. height: math.unit(0.625, "feet"),
  22060. name: "Shaft",
  22061. image: {
  22062. source: "./media/characters/poojawa-vynar/shaft.svg"
  22063. }
  22064. },
  22065. spade: {
  22066. height: math.unit(0.42, "feet"),
  22067. name: "Spade",
  22068. image: {
  22069. source: "./media/characters/poojawa-vynar/spade.svg"
  22070. }
  22071. },
  22072. },
  22073. [
  22074. {
  22075. name: "Shortstack",
  22076. height: math.unit(4, "feet")
  22077. },
  22078. {
  22079. name: "Normal",
  22080. height: math.unit(5 + 11 / 12, "feet"),
  22081. default: true
  22082. },
  22083. {
  22084. name: "Tauric",
  22085. height: math.unit(4, "meters")
  22086. },
  22087. ]
  22088. ))
  22089. characterMakers.push(() => makeCharacter(
  22090. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22091. {
  22092. front: {
  22093. height: math.unit(293, "meters"),
  22094. weight: math.unit(70400, "tons"),
  22095. name: "Front",
  22096. image: {
  22097. source: "./media/characters/violette/front.svg",
  22098. extra: 1227 / 1180,
  22099. bottom: 0.005
  22100. }
  22101. },
  22102. back: {
  22103. height: math.unit(293, "meters"),
  22104. weight: math.unit(70400, "tons"),
  22105. name: "Back",
  22106. image: {
  22107. source: "./media/characters/violette/back.svg",
  22108. extra: 1227 / 1180,
  22109. bottom: 0.005
  22110. }
  22111. },
  22112. },
  22113. [
  22114. {
  22115. name: "Macro",
  22116. height: math.unit(293, "meters"),
  22117. default: true
  22118. },
  22119. ]
  22120. ))
  22121. characterMakers.push(() => makeCharacter(
  22122. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22123. {
  22124. front: {
  22125. height: math.unit(1050, "feet"),
  22126. weight: math.unit(200000, "tons"),
  22127. name: "Front",
  22128. image: {
  22129. source: "./media/characters/alessandra/front.svg",
  22130. extra: 960 / 912,
  22131. bottom: 0.06
  22132. }
  22133. },
  22134. },
  22135. [
  22136. {
  22137. name: "Macro",
  22138. height: math.unit(1050, "feet")
  22139. },
  22140. {
  22141. name: "Macro+",
  22142. height: math.unit(900, "meters"),
  22143. default: true
  22144. },
  22145. ]
  22146. ))
  22147. characterMakers.push(() => makeCharacter(
  22148. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22149. {
  22150. front: {
  22151. height: math.unit(5, "feet"),
  22152. weight: math.unit(187, "lb"),
  22153. name: "Front",
  22154. image: {
  22155. source: "./media/characters/person/front.svg",
  22156. extra: 3087 / 2945,
  22157. bottom: 91 / 3181
  22158. }
  22159. },
  22160. },
  22161. [
  22162. {
  22163. name: "Micro",
  22164. height: math.unit(3, "inches")
  22165. },
  22166. {
  22167. name: "Normal",
  22168. height: math.unit(5, "feet"),
  22169. default: true
  22170. },
  22171. {
  22172. name: "Macro",
  22173. height: math.unit(90, "feet")
  22174. },
  22175. {
  22176. name: "Max Size",
  22177. height: math.unit(280, "feet")
  22178. },
  22179. ]
  22180. ))
  22181. characterMakers.push(() => makeCharacter(
  22182. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22183. {
  22184. front: {
  22185. height: math.unit(4.5, "meters"),
  22186. weight: math.unit(3200, "lb"),
  22187. name: "Front",
  22188. image: {
  22189. source: "./media/characters/ty/front.svg",
  22190. extra: 1038 / 960,
  22191. bottom: 31.156 / 1068
  22192. }
  22193. },
  22194. back: {
  22195. height: math.unit(4.5, "meters"),
  22196. weight: math.unit(3200, "lb"),
  22197. name: "Back",
  22198. image: {
  22199. source: "./media/characters/ty/back.svg",
  22200. extra: 1044 / 966,
  22201. bottom: 7.48 / 1049
  22202. }
  22203. },
  22204. },
  22205. [
  22206. {
  22207. name: "Normal",
  22208. height: math.unit(4.5, "meters"),
  22209. default: true
  22210. },
  22211. ]
  22212. ))
  22213. characterMakers.push(() => makeCharacter(
  22214. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22215. {
  22216. front: {
  22217. height: math.unit(5 + 4 / 12, "feet"),
  22218. weight: math.unit(115, "lb"),
  22219. name: "Front",
  22220. image: {
  22221. source: "./media/characters/rocky/front.svg",
  22222. extra: 1012 / 975,
  22223. bottom: 54 / 1066
  22224. }
  22225. },
  22226. },
  22227. [
  22228. {
  22229. name: "Normal",
  22230. height: math.unit(5 + 4 / 12, "feet"),
  22231. default: true
  22232. },
  22233. ]
  22234. ))
  22235. characterMakers.push(() => makeCharacter(
  22236. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22237. {
  22238. upright: {
  22239. height: math.unit(6, "meters"),
  22240. weight: math.unit(4000, "kg"),
  22241. name: "Upright",
  22242. image: {
  22243. source: "./media/characters/ruin/upright.svg",
  22244. extra: 668 / 661,
  22245. bottom: 42 / 799.8396
  22246. }
  22247. },
  22248. },
  22249. [
  22250. {
  22251. name: "Normal",
  22252. height: math.unit(6, "meters"),
  22253. default: true
  22254. },
  22255. ]
  22256. ))
  22257. characterMakers.push(() => makeCharacter(
  22258. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22259. {
  22260. front: {
  22261. height: math.unit(5, "feet"),
  22262. weight: math.unit(106, "lb"),
  22263. name: "Front",
  22264. image: {
  22265. source: "./media/characters/robin/front.svg",
  22266. extra: 862 / 799,
  22267. bottom: 42.4 / 914.8856
  22268. }
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(5, "feet"),
  22275. default: true
  22276. },
  22277. ]
  22278. ))
  22279. characterMakers.push(() => makeCharacter(
  22280. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22281. {
  22282. side: {
  22283. height: math.unit(3, "feet"),
  22284. weight: math.unit(225, "lb"),
  22285. name: "Side",
  22286. image: {
  22287. source: "./media/characters/saian/side.svg",
  22288. extra: 566 / 356,
  22289. bottom: 79.7 / 643
  22290. }
  22291. },
  22292. maw: {
  22293. height: math.unit(2.85, "feet"),
  22294. name: "Maw",
  22295. image: {
  22296. source: "./media/characters/saian/maw.svg"
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Normal",
  22303. height: math.unit(3, "feet"),
  22304. default: true
  22305. },
  22306. ]
  22307. ))
  22308. characterMakers.push(() => makeCharacter(
  22309. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22310. {
  22311. side: {
  22312. height: math.unit(8, "feet"),
  22313. weight: math.unit(300, "lb"),
  22314. name: "Side",
  22315. image: {
  22316. source: "./media/characters/equus-silvermane/side.svg",
  22317. extra: 2176 / 2050,
  22318. bottom: 65.7 / 2245
  22319. }
  22320. },
  22321. front: {
  22322. height: math.unit(8, "feet"),
  22323. weight: math.unit(300, "lb"),
  22324. name: "Front",
  22325. image: {
  22326. source: "./media/characters/equus-silvermane/front.svg",
  22327. extra: 4633 / 4400,
  22328. bottom: 71.3 / 4706.915
  22329. }
  22330. },
  22331. sideStepping: {
  22332. height: math.unit(8, "feet"),
  22333. weight: math.unit(300, "lb"),
  22334. name: "Side (Stepping)",
  22335. image: {
  22336. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22337. extra: 1968 / 1860,
  22338. bottom: 16.4 / 1989
  22339. }
  22340. },
  22341. },
  22342. [
  22343. {
  22344. name: "Normal",
  22345. height: math.unit(8, "feet")
  22346. },
  22347. {
  22348. name: "Minimacro",
  22349. height: math.unit(75, "feet"),
  22350. default: true
  22351. },
  22352. {
  22353. name: "Macro",
  22354. height: math.unit(150, "feet")
  22355. },
  22356. {
  22357. name: "Macro+",
  22358. height: math.unit(1000, "feet")
  22359. },
  22360. {
  22361. name: "Megamacro",
  22362. height: math.unit(1, "mile")
  22363. },
  22364. ]
  22365. ))
  22366. characterMakers.push(() => makeCharacter(
  22367. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22368. {
  22369. side: {
  22370. height: math.unit(20, "feet"),
  22371. weight: math.unit(30000, "kg"),
  22372. name: "Side",
  22373. image: {
  22374. source: "./media/characters/windar/side.svg",
  22375. extra: 1491 / 1248,
  22376. bottom: 82.56 / 1568
  22377. }
  22378. },
  22379. },
  22380. [
  22381. {
  22382. name: "Normal",
  22383. height: math.unit(20, "feet"),
  22384. default: true
  22385. },
  22386. ]
  22387. ))
  22388. characterMakers.push(() => makeCharacter(
  22389. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22390. {
  22391. side: {
  22392. height: math.unit(15.66, "feet"),
  22393. weight: math.unit(150, "lb"),
  22394. name: "Side",
  22395. image: {
  22396. source: "./media/characters/melody/side.svg",
  22397. extra: 1097 / 944,
  22398. bottom: 11.8 / 1109
  22399. }
  22400. },
  22401. sideOutfit: {
  22402. height: math.unit(15.66, "feet"),
  22403. weight: math.unit(150, "lb"),
  22404. name: "Side (Outfit)",
  22405. image: {
  22406. source: "./media/characters/melody/side-outfit.svg",
  22407. extra: 1097 / 944,
  22408. bottom: 11.8 / 1109
  22409. }
  22410. },
  22411. },
  22412. [
  22413. {
  22414. name: "Normal",
  22415. height: math.unit(15.66, "feet"),
  22416. default: true
  22417. },
  22418. ]
  22419. ))
  22420. characterMakers.push(() => makeCharacter(
  22421. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22422. {
  22423. front: {
  22424. height: math.unit(8, "feet"),
  22425. weight: math.unit(325, "lb"),
  22426. name: "Front",
  22427. image: {
  22428. source: "./media/characters/windera/front.svg",
  22429. extra: 3180 / 2845,
  22430. bottom: 178 / 3365
  22431. }
  22432. },
  22433. },
  22434. [
  22435. {
  22436. name: "Normal",
  22437. height: math.unit(8, "feet"),
  22438. default: true
  22439. },
  22440. ]
  22441. ))
  22442. characterMakers.push(() => makeCharacter(
  22443. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22444. {
  22445. front: {
  22446. height: math.unit(28.75, "feet"),
  22447. weight: math.unit(2000, "kg"),
  22448. name: "Front",
  22449. image: {
  22450. source: "./media/characters/sonear/front.svg",
  22451. extra: 1041.1 / 964.9,
  22452. bottom: 53.7 / 1096.6
  22453. }
  22454. },
  22455. },
  22456. [
  22457. {
  22458. name: "Normal",
  22459. height: math.unit(28.75, "feet"),
  22460. default: true
  22461. },
  22462. ]
  22463. ))
  22464. characterMakers.push(() => makeCharacter(
  22465. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22466. {
  22467. side: {
  22468. height: math.unit(25.5, "feet"),
  22469. weight: math.unit(23000, "kg"),
  22470. name: "Side",
  22471. image: {
  22472. source: "./media/characters/kanara/side.svg"
  22473. }
  22474. },
  22475. },
  22476. [
  22477. {
  22478. name: "Normal",
  22479. height: math.unit(25.5, "feet"),
  22480. default: true
  22481. },
  22482. ]
  22483. ))
  22484. characterMakers.push(() => makeCharacter(
  22485. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22486. {
  22487. side: {
  22488. height: math.unit(10, "feet"),
  22489. weight: math.unit(1000, "kg"),
  22490. name: "Side",
  22491. image: {
  22492. source: "./media/characters/ereus/side.svg",
  22493. extra: 1157 / 959,
  22494. bottom: 153 / 1312.5
  22495. }
  22496. },
  22497. },
  22498. [
  22499. {
  22500. name: "Normal",
  22501. height: math.unit(10, "feet"),
  22502. default: true
  22503. },
  22504. ]
  22505. ))
  22506. characterMakers.push(() => makeCharacter(
  22507. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22508. {
  22509. side: {
  22510. height: math.unit(4.5, "feet"),
  22511. weight: math.unit(500, "lb"),
  22512. name: "Side",
  22513. image: {
  22514. source: "./media/characters/e-ter/side.svg",
  22515. extra: 1550 / 1248,
  22516. bottom: 146 / 1694
  22517. }
  22518. },
  22519. },
  22520. [
  22521. {
  22522. name: "Normal",
  22523. height: math.unit(4.5, "feet"),
  22524. default: true
  22525. },
  22526. ]
  22527. ))
  22528. characterMakers.push(() => makeCharacter(
  22529. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22530. {
  22531. side: {
  22532. height: math.unit(9.7, "feet"),
  22533. weight: math.unit(4000, "kg"),
  22534. name: "Side",
  22535. image: {
  22536. source: "./media/characters/yamie/side.svg"
  22537. }
  22538. },
  22539. },
  22540. [
  22541. {
  22542. name: "Normal",
  22543. height: math.unit(9.7, "feet"),
  22544. default: true
  22545. },
  22546. ]
  22547. ))
  22548. characterMakers.push(() => makeCharacter(
  22549. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22550. {
  22551. front: {
  22552. height: math.unit(50, "feet"),
  22553. weight: math.unit(50000, "kg"),
  22554. name: "Front",
  22555. image: {
  22556. source: "./media/characters/anders/front.svg",
  22557. extra: 570 / 539,
  22558. bottom: 14.7 / 586.7
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Large",
  22565. height: math.unit(50, "feet")
  22566. },
  22567. {
  22568. name: "Macro",
  22569. height: math.unit(2000, "feet"),
  22570. default: true
  22571. },
  22572. {
  22573. name: "Megamacro",
  22574. height: math.unit(12, "miles")
  22575. },
  22576. ]
  22577. ))
  22578. characterMakers.push(() => makeCharacter(
  22579. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22580. {
  22581. front: {
  22582. height: math.unit(7 + 2 / 12, "feet"),
  22583. weight: math.unit(300, "lb"),
  22584. name: "Front",
  22585. image: {
  22586. source: "./media/characters/reban/front.svg",
  22587. extra: 1287/1212,
  22588. bottom: 148/1435
  22589. }
  22590. },
  22591. head: {
  22592. height: math.unit(1.95, "feet"),
  22593. name: "Head",
  22594. image: {
  22595. source: "./media/characters/reban/head.svg"
  22596. }
  22597. },
  22598. maw: {
  22599. height: math.unit(0.95, "feet"),
  22600. name: "Maw",
  22601. image: {
  22602. source: "./media/characters/reban/maw.svg"
  22603. }
  22604. },
  22605. foot: {
  22606. height: math.unit(1.65, "feet"),
  22607. name: "Foot",
  22608. image: {
  22609. source: "./media/characters/reban/foot.svg"
  22610. }
  22611. },
  22612. dick: {
  22613. height: math.unit(7 / 5, "feet"),
  22614. name: "Dick",
  22615. image: {
  22616. source: "./media/characters/reban/dick.svg"
  22617. }
  22618. },
  22619. },
  22620. [
  22621. {
  22622. name: "Natural Height",
  22623. height: math.unit(7 + 2 / 12, "feet")
  22624. },
  22625. {
  22626. name: "Macro",
  22627. height: math.unit(500, "feet"),
  22628. default: true
  22629. },
  22630. {
  22631. name: "Canon Height",
  22632. height: math.unit(50, "AU")
  22633. },
  22634. ]
  22635. ))
  22636. characterMakers.push(() => makeCharacter(
  22637. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22638. {
  22639. front: {
  22640. height: math.unit(6, "feet"),
  22641. weight: math.unit(150, "lb"),
  22642. name: "Front",
  22643. image: {
  22644. source: "./media/characters/terrance-keayes/front.svg",
  22645. extra: 1.005,
  22646. bottom: 151 / 1615
  22647. }
  22648. },
  22649. side: {
  22650. height: math.unit(6, "feet"),
  22651. weight: math.unit(150, "lb"),
  22652. name: "Side",
  22653. image: {
  22654. source: "./media/characters/terrance-keayes/side.svg",
  22655. extra: 1.005,
  22656. bottom: 129.4 / 1544
  22657. }
  22658. },
  22659. back: {
  22660. height: math.unit(6, "feet"),
  22661. weight: math.unit(150, "lb"),
  22662. name: "Back",
  22663. image: {
  22664. source: "./media/characters/terrance-keayes/back.svg",
  22665. extra: 1.005,
  22666. bottom: 58.4 / 1557.3
  22667. }
  22668. },
  22669. dick: {
  22670. height: math.unit(6 * 0.208, "feet"),
  22671. name: "Dick",
  22672. image: {
  22673. source: "./media/characters/terrance-keayes/dick.svg"
  22674. }
  22675. },
  22676. },
  22677. [
  22678. {
  22679. name: "Canon Height",
  22680. height: math.unit(35, "miles"),
  22681. default: true
  22682. },
  22683. ]
  22684. ))
  22685. characterMakers.push(() => makeCharacter(
  22686. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22687. {
  22688. front: {
  22689. height: math.unit(6, "feet"),
  22690. weight: math.unit(150, "lb"),
  22691. name: "Front",
  22692. image: {
  22693. source: "./media/characters/ofelia/front.svg",
  22694. extra: 1130/1117,
  22695. bottom: 91/1221
  22696. }
  22697. },
  22698. back: {
  22699. height: math.unit(6, "feet"),
  22700. weight: math.unit(150, "lb"),
  22701. name: "Back",
  22702. image: {
  22703. source: "./media/characters/ofelia/back.svg",
  22704. extra: 1172/1159,
  22705. bottom: 28/1200
  22706. }
  22707. },
  22708. maw: {
  22709. height: math.unit(1, "feet"),
  22710. name: "Maw",
  22711. image: {
  22712. source: "./media/characters/ofelia/maw.svg"
  22713. }
  22714. },
  22715. foot: {
  22716. height: math.unit(1.949, "feet"),
  22717. name: "Foot",
  22718. image: {
  22719. source: "./media/characters/ofelia/foot.svg"
  22720. }
  22721. },
  22722. },
  22723. [
  22724. {
  22725. name: "Canon Height",
  22726. height: math.unit(2000, "miles"),
  22727. default: true
  22728. },
  22729. ]
  22730. ))
  22731. characterMakers.push(() => makeCharacter(
  22732. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22733. {
  22734. front: {
  22735. height: math.unit(6, "feet"),
  22736. weight: math.unit(150, "lb"),
  22737. name: "Front",
  22738. image: {
  22739. source: "./media/characters/samuel/front.svg",
  22740. extra: 265 / 258,
  22741. bottom: 2 / 266.1566
  22742. }
  22743. },
  22744. },
  22745. [
  22746. {
  22747. name: "Macro",
  22748. height: math.unit(100, "feet"),
  22749. default: true
  22750. },
  22751. {
  22752. name: "Full Size",
  22753. height: math.unit(1000, "miles")
  22754. },
  22755. ]
  22756. ))
  22757. characterMakers.push(() => makeCharacter(
  22758. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22759. {
  22760. front: {
  22761. height: math.unit(6, "feet"),
  22762. weight: math.unit(300, "lb"),
  22763. name: "Front",
  22764. image: {
  22765. source: "./media/characters/beishir-kiel/front.svg",
  22766. extra: 569 / 547,
  22767. bottom: 41.9 / 609
  22768. }
  22769. },
  22770. maw: {
  22771. height: math.unit(6 * 0.202, "feet"),
  22772. name: "Maw",
  22773. image: {
  22774. source: "./media/characters/beishir-kiel/maw.svg"
  22775. }
  22776. },
  22777. },
  22778. [
  22779. {
  22780. name: "Macro",
  22781. height: math.unit(300, "feet"),
  22782. default: true
  22783. },
  22784. ]
  22785. ))
  22786. characterMakers.push(() => makeCharacter(
  22787. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22788. {
  22789. front: {
  22790. height: math.unit(5 + 7/12, "feet"),
  22791. weight: math.unit(120, "lb"),
  22792. name: "Front",
  22793. image: {
  22794. source: "./media/characters/logan-grey/front.svg",
  22795. extra: 1836/1738,
  22796. bottom: 108/1944
  22797. }
  22798. },
  22799. back: {
  22800. height: math.unit(5 + 7/12, "feet"),
  22801. weight: math.unit(120, "lb"),
  22802. name: "Back",
  22803. image: {
  22804. source: "./media/characters/logan-grey/back.svg",
  22805. extra: 1880/1794,
  22806. bottom: 24/1904
  22807. }
  22808. },
  22809. frontSfw: {
  22810. height: math.unit(5 + 7/12, "feet"),
  22811. weight: math.unit(120, "lb"),
  22812. name: "Front (SFW)",
  22813. image: {
  22814. source: "./media/characters/logan-grey/front-sfw.svg",
  22815. extra: 1836/1738,
  22816. bottom: 108/1944
  22817. }
  22818. },
  22819. backSfw: {
  22820. height: math.unit(5 + 7/12, "feet"),
  22821. weight: math.unit(120, "lb"),
  22822. name: "Back (SFW)",
  22823. image: {
  22824. source: "./media/characters/logan-grey/back-sfw.svg",
  22825. extra: 1880/1794,
  22826. bottom: 24/1904
  22827. }
  22828. },
  22829. hands: {
  22830. height: math.unit(0.84, "feet"),
  22831. name: "Hands",
  22832. image: {
  22833. source: "./media/characters/logan-grey/hands.svg"
  22834. }
  22835. },
  22836. paws: {
  22837. height: math.unit(0.72, "feet"),
  22838. name: "Paws",
  22839. image: {
  22840. source: "./media/characters/logan-grey/paws.svg"
  22841. }
  22842. },
  22843. cock: {
  22844. height: math.unit(1.45, "feet"),
  22845. name: "Cock",
  22846. image: {
  22847. source: "./media/characters/logan-grey/cock.svg"
  22848. }
  22849. },
  22850. cockAlt: {
  22851. height: math.unit(1.437, "feet"),
  22852. name: "Cock (alt)",
  22853. image: {
  22854. source: "./media/characters/logan-grey/cock-alt.svg"
  22855. }
  22856. },
  22857. },
  22858. [
  22859. {
  22860. name: "Normal",
  22861. height: math.unit(5 + 8 / 12, "feet")
  22862. },
  22863. {
  22864. name: "The 500 Foot Femboy",
  22865. height: math.unit(500, "feet"),
  22866. default: true
  22867. },
  22868. {
  22869. name: "Megmacro",
  22870. height: math.unit(20, "miles")
  22871. },
  22872. ]
  22873. ))
  22874. characterMakers.push(() => makeCharacter(
  22875. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22876. {
  22877. front: {
  22878. height: math.unit(8 + 2 / 12, "feet"),
  22879. weight: math.unit(275, "lb"),
  22880. name: "Front",
  22881. image: {
  22882. source: "./media/characters/draganta/front.svg",
  22883. extra: 1177 / 1135,
  22884. bottom: 33.46 / 1212.1
  22885. }
  22886. },
  22887. },
  22888. [
  22889. {
  22890. name: "Normal",
  22891. height: math.unit(8 + 6 / 12, "feet"),
  22892. default: true
  22893. },
  22894. {
  22895. name: "Macro",
  22896. height: math.unit(150, "feet")
  22897. },
  22898. {
  22899. name: "Megamacro",
  22900. height: math.unit(1000, "miles")
  22901. },
  22902. ]
  22903. ))
  22904. characterMakers.push(() => makeCharacter(
  22905. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22906. {
  22907. front: {
  22908. height: math.unit(1.72, "m"),
  22909. weight: math.unit(80, "lb"),
  22910. name: "Front",
  22911. image: {
  22912. source: "./media/characters/voski/front.svg",
  22913. extra: 2076.22 / 2022.4,
  22914. bottom: 102.7 / 2177.3866
  22915. }
  22916. },
  22917. frontNsfw: {
  22918. height: math.unit(1.72, "m"),
  22919. weight: math.unit(80, "lb"),
  22920. name: "Front (NSFW)",
  22921. image: {
  22922. source: "./media/characters/voski/front-nsfw.svg",
  22923. extra: 2076.22 / 2022.4,
  22924. bottom: 102.7 / 2177.3866
  22925. }
  22926. },
  22927. back: {
  22928. height: math.unit(1.72, "m"),
  22929. weight: math.unit(80, "lb"),
  22930. name: "Back",
  22931. image: {
  22932. source: "./media/characters/voski/back.svg",
  22933. extra: 2104 / 2051,
  22934. bottom: 10.45 / 2113.63
  22935. }
  22936. },
  22937. },
  22938. [
  22939. {
  22940. name: "Normal",
  22941. height: math.unit(1.72, "m")
  22942. },
  22943. {
  22944. name: "Macro",
  22945. height: math.unit(55, "m"),
  22946. default: true
  22947. },
  22948. {
  22949. name: "Macro+",
  22950. height: math.unit(300, "m")
  22951. },
  22952. {
  22953. name: "Macro++",
  22954. height: math.unit(700, "m")
  22955. },
  22956. {
  22957. name: "Macro+++",
  22958. height: math.unit(4500, "m")
  22959. },
  22960. {
  22961. name: "Macro++++",
  22962. height: math.unit(45, "km")
  22963. },
  22964. {
  22965. name: "Macro+++++",
  22966. height: math.unit(1220, "km")
  22967. },
  22968. ]
  22969. ))
  22970. characterMakers.push(() => makeCharacter(
  22971. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22972. {
  22973. front: {
  22974. height: math.unit(2.3, "m"),
  22975. weight: math.unit(304, "kg"),
  22976. name: "Front",
  22977. image: {
  22978. source: "./media/characters/icowom-lee/front.svg",
  22979. extra: 985 / 955,
  22980. bottom: 25.4 / 1012
  22981. }
  22982. },
  22983. fronttentacles: {
  22984. height: math.unit(2.3, "m"),
  22985. weight: math.unit(304, "kg"),
  22986. name: "Front-tentacles",
  22987. image: {
  22988. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22989. extra: 985 / 955,
  22990. bottom: 25.4 / 1012
  22991. }
  22992. },
  22993. back: {
  22994. height: math.unit(2.3, "m"),
  22995. weight: math.unit(304, "kg"),
  22996. name: "Back",
  22997. image: {
  22998. source: "./media/characters/icowom-lee/back.svg",
  22999. extra: 975 / 954,
  23000. bottom: 9.5 / 985
  23001. }
  23002. },
  23003. backtentacles: {
  23004. height: math.unit(2.3, "m"),
  23005. weight: math.unit(304, "kg"),
  23006. name: "Back-tentacles",
  23007. image: {
  23008. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23009. extra: 975 / 954,
  23010. bottom: 9.5 / 985
  23011. }
  23012. },
  23013. frontDressed: {
  23014. height: math.unit(2.3, "m"),
  23015. weight: math.unit(304, "kg"),
  23016. name: "Front (Dressed)",
  23017. image: {
  23018. source: "./media/characters/icowom-lee/front-dressed.svg",
  23019. extra: 3076 / 2933,
  23020. bottom: 51.4 / 3125.1889
  23021. }
  23022. },
  23023. rump: {
  23024. height: math.unit(0.776, "meters"),
  23025. name: "Rump",
  23026. image: {
  23027. source: "./media/characters/icowom-lee/rump.svg"
  23028. }
  23029. },
  23030. genitals: {
  23031. height: math.unit(0.78, "meters"),
  23032. name: "Genitals",
  23033. image: {
  23034. source: "./media/characters/icowom-lee/genitals.svg"
  23035. }
  23036. },
  23037. },
  23038. [
  23039. {
  23040. name: "Normal",
  23041. height: math.unit(2.3, "meters"),
  23042. default: true
  23043. },
  23044. {
  23045. name: "Macro",
  23046. height: math.unit(94, "meters"),
  23047. default: true
  23048. },
  23049. ]
  23050. ))
  23051. characterMakers.push(() => makeCharacter(
  23052. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23053. {
  23054. front: {
  23055. height: math.unit(22, "meters"),
  23056. weight: math.unit(21000, "kg"),
  23057. name: "Front",
  23058. image: {
  23059. source: "./media/characters/shock-diamond/front.svg",
  23060. extra: 2204 / 2053,
  23061. bottom: 65 / 2239.47
  23062. }
  23063. },
  23064. frontNude: {
  23065. height: math.unit(22, "meters"),
  23066. weight: math.unit(21000, "kg"),
  23067. name: "Front (Nude)",
  23068. image: {
  23069. source: "./media/characters/shock-diamond/front-nude.svg",
  23070. extra: 2514 / 2285,
  23071. bottom: 13 / 2527.56
  23072. }
  23073. },
  23074. },
  23075. [
  23076. {
  23077. name: "Normal",
  23078. height: math.unit(3, "meters")
  23079. },
  23080. {
  23081. name: "Macro",
  23082. height: math.unit(22, "meters"),
  23083. default: true
  23084. },
  23085. ]
  23086. ))
  23087. characterMakers.push(() => makeCharacter(
  23088. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23089. {
  23090. front: {
  23091. height: math.unit(5 + 4 / 12, "feet"),
  23092. weight: math.unit(120, "lb"),
  23093. name: "Front",
  23094. image: {
  23095. source: "./media/characters/rory/front.svg",
  23096. extra: 1318/1241,
  23097. bottom: 42/1360
  23098. }
  23099. },
  23100. back: {
  23101. height: math.unit(5 + 4 / 12, "feet"),
  23102. weight: math.unit(120, "lb"),
  23103. name: "Back",
  23104. image: {
  23105. source: "./media/characters/rory/back.svg",
  23106. extra: 1318/1241,
  23107. bottom: 42/1360
  23108. }
  23109. },
  23110. butt: {
  23111. height: math.unit(1.74, "feet"),
  23112. name: "Butt",
  23113. image: {
  23114. source: "./media/characters/rory/butt.svg"
  23115. }
  23116. },
  23117. dick: {
  23118. height: math.unit(1.02, "feet"),
  23119. name: "Dick",
  23120. image: {
  23121. source: "./media/characters/rory/dick.svg"
  23122. }
  23123. },
  23124. paws: {
  23125. height: math.unit(1, "feet"),
  23126. name: "Paws",
  23127. image: {
  23128. source: "./media/characters/rory/paws.svg"
  23129. }
  23130. },
  23131. frontAlt: {
  23132. height: math.unit(5 + 4 / 12, "feet"),
  23133. weight: math.unit(120, "lb"),
  23134. name: "Front (Alt)",
  23135. image: {
  23136. source: "./media/characters/rory/front-alt.svg",
  23137. extra: 589 / 556,
  23138. bottom: 45.7 / 635.76
  23139. }
  23140. },
  23141. frontAltNude: {
  23142. height: math.unit(5 + 4 / 12, "feet"),
  23143. weight: math.unit(120, "lb"),
  23144. name: "Front (Alt, Nude)",
  23145. image: {
  23146. source: "./media/characters/rory/front-alt-nude.svg",
  23147. extra: 589 / 556,
  23148. bottom: 45.7 / 635.76
  23149. }
  23150. },
  23151. side: {
  23152. height: math.unit(5 + 4 / 12, "feet"),
  23153. weight: math.unit(120, "lb"),
  23154. name: "Side",
  23155. image: {
  23156. source: "./media/characters/rory/side.svg",
  23157. extra: 597 / 564,
  23158. bottom: 55 / 653
  23159. }
  23160. },
  23161. backAlt: {
  23162. height: math.unit(5 + 4 / 12, "feet"),
  23163. weight: math.unit(120, "lb"),
  23164. name: "Back (Alt)",
  23165. image: {
  23166. source: "./media/characters/rory/back-alt.svg",
  23167. extra: 620 / 585,
  23168. bottom: 8.86 / 630.43
  23169. }
  23170. },
  23171. dickAlt: {
  23172. height: math.unit(0.86, "feet"),
  23173. name: "Dick (Alt)",
  23174. image: {
  23175. source: "./media/characters/rory/dick-alt.svg"
  23176. }
  23177. },
  23178. },
  23179. [
  23180. {
  23181. name: "Normal",
  23182. height: math.unit(5 + 4 / 12, "feet"),
  23183. default: true
  23184. },
  23185. {
  23186. name: "Macro",
  23187. height: math.unit(100, "feet")
  23188. },
  23189. {
  23190. name: "Macro+",
  23191. height: math.unit(140, "feet")
  23192. },
  23193. {
  23194. name: "Macro++",
  23195. height: math.unit(300, "feet")
  23196. },
  23197. ]
  23198. ))
  23199. characterMakers.push(() => makeCharacter(
  23200. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23201. {
  23202. front: {
  23203. height: math.unit(5 + 9 / 12, "feet"),
  23204. weight: math.unit(190, "lb"),
  23205. name: "Front",
  23206. image: {
  23207. source: "./media/characters/sprisk/front.svg",
  23208. extra: 1225 / 1180,
  23209. bottom: 42.7 / 1266.4
  23210. }
  23211. },
  23212. frontNsfw: {
  23213. height: math.unit(5 + 9 / 12, "feet"),
  23214. weight: math.unit(190, "lb"),
  23215. name: "Front (NSFW)",
  23216. image: {
  23217. source: "./media/characters/sprisk/front-nsfw.svg",
  23218. extra: 1225 / 1180,
  23219. bottom: 42.7 / 1266.4
  23220. }
  23221. },
  23222. back: {
  23223. height: math.unit(5 + 9 / 12, "feet"),
  23224. weight: math.unit(190, "lb"),
  23225. name: "Back",
  23226. image: {
  23227. source: "./media/characters/sprisk/back.svg",
  23228. extra: 1247 / 1200,
  23229. bottom: 5.6 / 1253.04
  23230. }
  23231. },
  23232. },
  23233. [
  23234. {
  23235. name: "Tiny",
  23236. height: math.unit(2, "inches")
  23237. },
  23238. {
  23239. name: "Normal",
  23240. height: math.unit(5 + 9 / 12, "feet"),
  23241. default: true
  23242. },
  23243. {
  23244. name: "Mini Macro",
  23245. height: math.unit(18, "feet")
  23246. },
  23247. {
  23248. name: "Macro",
  23249. height: math.unit(100, "feet")
  23250. },
  23251. {
  23252. name: "MACRO",
  23253. height: math.unit(50, "miles")
  23254. },
  23255. {
  23256. name: "M A C R O",
  23257. height: math.unit(300, "miles")
  23258. },
  23259. ]
  23260. ))
  23261. characterMakers.push(() => makeCharacter(
  23262. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23263. {
  23264. side: {
  23265. height: math.unit(15.6, "meters"),
  23266. weight: math.unit(700000, "kg"),
  23267. name: "Side",
  23268. image: {
  23269. source: "./media/characters/bunsen/side.svg",
  23270. extra: 1644 / 358
  23271. }
  23272. },
  23273. foot: {
  23274. height: math.unit(1.611 * 1644 / 358, "meter"),
  23275. name: "Foot",
  23276. image: {
  23277. source: "./media/characters/bunsen/foot.svg"
  23278. }
  23279. },
  23280. },
  23281. [
  23282. {
  23283. name: "Small",
  23284. height: math.unit(10, "feet")
  23285. },
  23286. {
  23287. name: "Normal",
  23288. height: math.unit(15.6, "meters"),
  23289. default: true
  23290. },
  23291. ]
  23292. ))
  23293. characterMakers.push(() => makeCharacter(
  23294. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23295. {
  23296. front: {
  23297. height: math.unit(4 + 11 / 12, "feet"),
  23298. weight: math.unit(140, "lb"),
  23299. name: "Front",
  23300. image: {
  23301. source: "./media/characters/sesh/front.svg",
  23302. extra: 3420 / 3231,
  23303. bottom: 72 / 3949.5
  23304. }
  23305. },
  23306. },
  23307. [
  23308. {
  23309. name: "Normal",
  23310. height: math.unit(4 + 11 / 12, "feet")
  23311. },
  23312. {
  23313. name: "Grown",
  23314. height: math.unit(15, "feet"),
  23315. default: true
  23316. },
  23317. {
  23318. name: "Macro",
  23319. height: math.unit(1500, "feet")
  23320. },
  23321. {
  23322. name: "Megamacro",
  23323. height: math.unit(30, "miles")
  23324. },
  23325. {
  23326. name: "Continental",
  23327. height: math.unit(3000, "miles")
  23328. },
  23329. {
  23330. name: "Gravity Mass",
  23331. height: math.unit(300000, "miles")
  23332. },
  23333. {
  23334. name: "Planet Buster",
  23335. height: math.unit(30000000, "miles")
  23336. },
  23337. {
  23338. name: "Big",
  23339. height: math.unit(3000000000, "miles")
  23340. },
  23341. ]
  23342. ))
  23343. characterMakers.push(() => makeCharacter(
  23344. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23345. {
  23346. front: {
  23347. height: math.unit(9, "feet"),
  23348. weight: math.unit(350, "lb"),
  23349. name: "Front",
  23350. image: {
  23351. source: "./media/characters/pepper/front.svg",
  23352. extra: 1448 / 1312,
  23353. bottom: 9.4 / 1457.88
  23354. }
  23355. },
  23356. back: {
  23357. height: math.unit(9, "feet"),
  23358. weight: math.unit(350, "lb"),
  23359. name: "Back",
  23360. image: {
  23361. source: "./media/characters/pepper/back.svg",
  23362. extra: 1423 / 1300,
  23363. bottom: 4.6 / 1429
  23364. }
  23365. },
  23366. maw: {
  23367. height: math.unit(0.932, "feet"),
  23368. name: "Maw",
  23369. image: {
  23370. source: "./media/characters/pepper/maw.svg"
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(9, "feet"),
  23378. default: true
  23379. },
  23380. ]
  23381. ))
  23382. characterMakers.push(() => makeCharacter(
  23383. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23384. {
  23385. front: {
  23386. height: math.unit(6, "feet"),
  23387. weight: math.unit(150, "lb"),
  23388. name: "Front",
  23389. image: {
  23390. source: "./media/characters/maelstrom/front.svg",
  23391. extra: 2100 / 1883,
  23392. bottom: 94 / 2196.7
  23393. }
  23394. },
  23395. },
  23396. [
  23397. {
  23398. name: "Less Kaiju",
  23399. height: math.unit(200, "feet")
  23400. },
  23401. {
  23402. name: "Kaiju",
  23403. height: math.unit(400, "feet"),
  23404. default: true
  23405. },
  23406. {
  23407. name: "Kaiju-er",
  23408. height: math.unit(600, "feet")
  23409. },
  23410. ]
  23411. ))
  23412. characterMakers.push(() => makeCharacter(
  23413. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23414. {
  23415. front: {
  23416. height: math.unit(6 + 5 / 12, "feet"),
  23417. weight: math.unit(180, "lb"),
  23418. name: "Front",
  23419. image: {
  23420. source: "./media/characters/lexir/front.svg",
  23421. extra: 180 / 172,
  23422. bottom: 12 / 192
  23423. }
  23424. },
  23425. back: {
  23426. height: math.unit(6 + 5 / 12, "feet"),
  23427. weight: math.unit(180, "lb"),
  23428. name: "Back",
  23429. image: {
  23430. source: "./media/characters/lexir/back.svg",
  23431. extra: 183.84 / 175.5,
  23432. bottom: 3.1 / 187
  23433. }
  23434. },
  23435. },
  23436. [
  23437. {
  23438. name: "Very Smal",
  23439. height: math.unit(1, "nm")
  23440. },
  23441. {
  23442. name: "Normal",
  23443. height: math.unit(6 + 5 / 12, "feet"),
  23444. default: true
  23445. },
  23446. {
  23447. name: "Macro",
  23448. height: math.unit(1, "mile")
  23449. },
  23450. {
  23451. name: "Megamacro",
  23452. height: math.unit(50, "miles")
  23453. },
  23454. ]
  23455. ))
  23456. characterMakers.push(() => makeCharacter(
  23457. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23458. {
  23459. front: {
  23460. height: math.unit(1.5, "meters"),
  23461. weight: math.unit(100, "lb"),
  23462. name: "Front",
  23463. image: {
  23464. source: "./media/characters/maksio/front.svg",
  23465. extra: 1549 / 1531,
  23466. bottom: 123.7 / 1674.5429
  23467. }
  23468. },
  23469. back: {
  23470. height: math.unit(1.5, "meters"),
  23471. weight: math.unit(100, "lb"),
  23472. name: "Back",
  23473. image: {
  23474. source: "./media/characters/maksio/back.svg",
  23475. extra: 1541 / 1509,
  23476. bottom: 97 / 1639
  23477. }
  23478. },
  23479. hand: {
  23480. height: math.unit(0.621, "feet"),
  23481. name: "Hand",
  23482. image: {
  23483. source: "./media/characters/maksio/hand.svg"
  23484. }
  23485. },
  23486. foot: {
  23487. height: math.unit(1.611, "feet"),
  23488. name: "Foot",
  23489. image: {
  23490. source: "./media/characters/maksio/foot.svg"
  23491. }
  23492. },
  23493. },
  23494. [
  23495. {
  23496. name: "Shrunken",
  23497. height: math.unit(10, "cm")
  23498. },
  23499. {
  23500. name: "Normal",
  23501. height: math.unit(150, "cm"),
  23502. default: true
  23503. },
  23504. ]
  23505. ))
  23506. characterMakers.push(() => makeCharacter(
  23507. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23508. {
  23509. front: {
  23510. height: math.unit(100, "feet"),
  23511. name: "Front",
  23512. image: {
  23513. source: "./media/characters/erza-bear/front.svg",
  23514. extra: 2449 / 2390,
  23515. bottom: 46 / 2494
  23516. }
  23517. },
  23518. back: {
  23519. height: math.unit(100, "feet"),
  23520. name: "Back",
  23521. image: {
  23522. source: "./media/characters/erza-bear/back.svg",
  23523. extra: 2489 / 2430,
  23524. bottom: 85.4 / 2480
  23525. }
  23526. },
  23527. tail: {
  23528. height: math.unit(42, "feet"),
  23529. name: "Tail",
  23530. image: {
  23531. source: "./media/characters/erza-bear/tail.svg"
  23532. }
  23533. },
  23534. tongue: {
  23535. height: math.unit(8, "feet"),
  23536. name: "Tongue",
  23537. image: {
  23538. source: "./media/characters/erza-bear/tongue.svg"
  23539. }
  23540. },
  23541. dick: {
  23542. height: math.unit(10.5, "feet"),
  23543. name: "Dick",
  23544. image: {
  23545. source: "./media/characters/erza-bear/dick.svg"
  23546. }
  23547. },
  23548. dickVertical: {
  23549. height: math.unit(16.9, "feet"),
  23550. name: "Dick (Vertical)",
  23551. image: {
  23552. source: "./media/characters/erza-bear/dick-vertical.svg"
  23553. }
  23554. },
  23555. },
  23556. [
  23557. {
  23558. name: "Macro",
  23559. height: math.unit(100, "feet"),
  23560. default: true
  23561. },
  23562. ]
  23563. ))
  23564. characterMakers.push(() => makeCharacter(
  23565. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23566. {
  23567. front: {
  23568. height: math.unit(172, "cm"),
  23569. weight: math.unit(73, "kg"),
  23570. name: "Front",
  23571. image: {
  23572. source: "./media/characters/violet-flor/front.svg",
  23573. extra: 1530 / 1442,
  23574. bottom: 61.9 / 1588.8
  23575. }
  23576. },
  23577. back: {
  23578. height: math.unit(180, "cm"),
  23579. weight: math.unit(73, "kg"),
  23580. name: "Back",
  23581. image: {
  23582. source: "./media/characters/violet-flor/back.svg",
  23583. extra: 1692 / 1630,
  23584. bottom: 20 / 1712
  23585. }
  23586. },
  23587. },
  23588. [
  23589. {
  23590. name: "Normal",
  23591. height: math.unit(172, "cm"),
  23592. default: true
  23593. },
  23594. ]
  23595. ))
  23596. characterMakers.push(() => makeCharacter(
  23597. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23598. {
  23599. front: {
  23600. height: math.unit(6, "feet"),
  23601. weight: math.unit(220, "lb"),
  23602. name: "Front",
  23603. image: {
  23604. source: "./media/characters/lynn-rhea/front.svg",
  23605. extra: 310 / 273
  23606. }
  23607. },
  23608. back: {
  23609. height: math.unit(6, "feet"),
  23610. weight: math.unit(220, "lb"),
  23611. name: "Back",
  23612. image: {
  23613. source: "./media/characters/lynn-rhea/back.svg",
  23614. extra: 310 / 273
  23615. }
  23616. },
  23617. dicks: {
  23618. height: math.unit(0.9, "feet"),
  23619. name: "Dicks",
  23620. image: {
  23621. source: "./media/characters/lynn-rhea/dicks.svg"
  23622. }
  23623. },
  23624. slit: {
  23625. height: math.unit(0.4, "feet"),
  23626. name: "Slit",
  23627. image: {
  23628. source: "./media/characters/lynn-rhea/slit.svg"
  23629. }
  23630. },
  23631. },
  23632. [
  23633. {
  23634. name: "Micro",
  23635. height: math.unit(1, "inch")
  23636. },
  23637. {
  23638. name: "Macro",
  23639. height: math.unit(60, "feet"),
  23640. default: true
  23641. },
  23642. {
  23643. name: "Megamacro",
  23644. height: math.unit(2, "miles")
  23645. },
  23646. {
  23647. name: "Gigamacro",
  23648. height: math.unit(3, "earths")
  23649. },
  23650. {
  23651. name: "Galactic",
  23652. height: math.unit(0.8, "galaxies")
  23653. },
  23654. ]
  23655. ))
  23656. characterMakers.push(() => makeCharacter(
  23657. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23658. {
  23659. front: {
  23660. height: math.unit(1600, "feet"),
  23661. weight: math.unit(85758785169, "kg"),
  23662. name: "Front",
  23663. image: {
  23664. source: "./media/characters/valathos/front.svg",
  23665. extra: 1451 / 1339
  23666. }
  23667. },
  23668. },
  23669. [
  23670. {
  23671. name: "Macro",
  23672. height: math.unit(1600, "feet"),
  23673. default: true
  23674. },
  23675. ]
  23676. ))
  23677. characterMakers.push(() => makeCharacter(
  23678. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23679. {
  23680. front: {
  23681. height: math.unit(7 + 5 / 12, "feet"),
  23682. weight: math.unit(300, "lb"),
  23683. name: "Front",
  23684. image: {
  23685. source: "./media/characters/azula/front.svg",
  23686. extra: 3208 / 2880,
  23687. bottom: 80.2 / 3277
  23688. }
  23689. },
  23690. back: {
  23691. height: math.unit(7 + 5 / 12, "feet"),
  23692. weight: math.unit(300, "lb"),
  23693. name: "Back",
  23694. image: {
  23695. source: "./media/characters/azula/back.svg",
  23696. extra: 3169 / 2822,
  23697. bottom: 150.6 / 3321
  23698. }
  23699. },
  23700. },
  23701. [
  23702. {
  23703. name: "Normal",
  23704. height: math.unit(7 + 5 / 12, "feet"),
  23705. default: true
  23706. },
  23707. {
  23708. name: "Big",
  23709. height: math.unit(20, "feet")
  23710. },
  23711. ]
  23712. ))
  23713. characterMakers.push(() => makeCharacter(
  23714. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23715. {
  23716. front: {
  23717. height: math.unit(5 + 1 / 12, "feet"),
  23718. weight: math.unit(110, "lb"),
  23719. name: "Front",
  23720. image: {
  23721. source: "./media/characters/rupert/front.svg",
  23722. extra: 1549 / 1495,
  23723. bottom: 54.2 / 1604.4
  23724. }
  23725. },
  23726. },
  23727. [
  23728. {
  23729. name: "Normal",
  23730. height: math.unit(5 + 1 / 12, "feet"),
  23731. default: true
  23732. },
  23733. ]
  23734. ))
  23735. characterMakers.push(() => makeCharacter(
  23736. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23737. {
  23738. front: {
  23739. height: math.unit(8 + 4 / 12, "feet"),
  23740. weight: math.unit(350, "lb"),
  23741. name: "Front",
  23742. image: {
  23743. source: "./media/characters/sheera-castellar/front.svg",
  23744. extra: 1957 / 1894,
  23745. bottom: 26.97 / 1975.017
  23746. }
  23747. },
  23748. side: {
  23749. height: math.unit(8 + 4 / 12, "feet"),
  23750. weight: math.unit(350, "lb"),
  23751. name: "Side",
  23752. image: {
  23753. source: "./media/characters/sheera-castellar/side.svg",
  23754. extra: 1957 / 1894
  23755. }
  23756. },
  23757. back: {
  23758. height: math.unit(8 + 4 / 12, "feet"),
  23759. weight: math.unit(350, "lb"),
  23760. name: "Back",
  23761. image: {
  23762. source: "./media/characters/sheera-castellar/back.svg",
  23763. extra: 1957 / 1894
  23764. }
  23765. },
  23766. angled: {
  23767. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23768. weight: math.unit(350, "lb"),
  23769. name: "Angled",
  23770. image: {
  23771. source: "./media/characters/sheera-castellar/angled.svg",
  23772. extra: 1807 / 1707,
  23773. bottom: 68 / 1875
  23774. }
  23775. },
  23776. genitals: {
  23777. height: math.unit(2.2, "feet"),
  23778. name: "Genitals",
  23779. image: {
  23780. source: "./media/characters/sheera-castellar/genitals.svg"
  23781. }
  23782. },
  23783. taur: {
  23784. height: math.unit(10 + 6/12, "feet"),
  23785. name: "Taur",
  23786. image: {
  23787. source: "./media/characters/sheera-castellar/taur.svg",
  23788. extra: 2017/1909,
  23789. bottom: 185/2202
  23790. }
  23791. },
  23792. },
  23793. [
  23794. {
  23795. name: "Normal",
  23796. height: math.unit(8 + 4 / 12, "feet")
  23797. },
  23798. {
  23799. name: "Macro",
  23800. height: math.unit(150, "feet"),
  23801. default: true
  23802. },
  23803. {
  23804. name: "Macro+",
  23805. height: math.unit(800, "feet")
  23806. },
  23807. ]
  23808. ))
  23809. characterMakers.push(() => makeCharacter(
  23810. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23811. {
  23812. front: {
  23813. height: math.unit(6, "feet"),
  23814. weight: math.unit(150, "lb"),
  23815. name: "Front",
  23816. image: {
  23817. source: "./media/characters/jaipur/front.svg",
  23818. extra: 3860 / 3731,
  23819. bottom: 287 / 4140
  23820. }
  23821. },
  23822. back: {
  23823. height: math.unit(6, "feet"),
  23824. weight: math.unit(150, "lb"),
  23825. name: "Back",
  23826. image: {
  23827. source: "./media/characters/jaipur/back.svg",
  23828. extra: 4060 / 3930,
  23829. bottom: 151 / 4200
  23830. }
  23831. },
  23832. },
  23833. [
  23834. {
  23835. name: "Normal",
  23836. height: math.unit(1.85, "meters"),
  23837. default: true
  23838. },
  23839. {
  23840. name: "Macro",
  23841. height: math.unit(150, "meters")
  23842. },
  23843. {
  23844. name: "Macro+",
  23845. height: math.unit(0.5, "miles")
  23846. },
  23847. {
  23848. name: "Macro++",
  23849. height: math.unit(2.5, "miles")
  23850. },
  23851. {
  23852. name: "Macro+++",
  23853. height: math.unit(12, "miles")
  23854. },
  23855. {
  23856. name: "Macro++++",
  23857. height: math.unit(120, "miles")
  23858. },
  23859. {
  23860. name: "Macro+++++",
  23861. height: math.unit(1200, "miles")
  23862. },
  23863. ]
  23864. ))
  23865. characterMakers.push(() => makeCharacter(
  23866. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23867. {
  23868. front: {
  23869. height: math.unit(6, "feet"),
  23870. weight: math.unit(150, "lb"),
  23871. name: "Front",
  23872. image: {
  23873. source: "./media/characters/sheila-wolf/front.svg",
  23874. extra: 1931 / 1808,
  23875. bottom: 29.5 / 1960
  23876. }
  23877. },
  23878. dick: {
  23879. height: math.unit(1.464, "feet"),
  23880. name: "Dick",
  23881. image: {
  23882. source: "./media/characters/sheila-wolf/dick.svg"
  23883. }
  23884. },
  23885. muzzle: {
  23886. height: math.unit(0.513, "feet"),
  23887. name: "Muzzle",
  23888. image: {
  23889. source: "./media/characters/sheila-wolf/muzzle.svg"
  23890. }
  23891. },
  23892. },
  23893. [
  23894. {
  23895. name: "Macro",
  23896. height: math.unit(70, "feet"),
  23897. default: true
  23898. },
  23899. ]
  23900. ))
  23901. characterMakers.push(() => makeCharacter(
  23902. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23903. {
  23904. front: {
  23905. height: math.unit(32, "meters"),
  23906. weight: math.unit(300000, "kg"),
  23907. name: "Front",
  23908. image: {
  23909. source: "./media/characters/almor/front.svg",
  23910. extra: 1408 / 1322,
  23911. bottom: 94.6 / 1506.5
  23912. }
  23913. },
  23914. },
  23915. [
  23916. {
  23917. name: "Macro",
  23918. height: math.unit(32, "meters"),
  23919. default: true
  23920. },
  23921. ]
  23922. ))
  23923. characterMakers.push(() => makeCharacter(
  23924. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23925. {
  23926. front: {
  23927. height: math.unit(7, "feet"),
  23928. weight: math.unit(200, "lb"),
  23929. name: "Front",
  23930. image: {
  23931. source: "./media/characters/silver/front.svg",
  23932. extra: 472.1 / 450.5,
  23933. bottom: 26.5 / 499.424
  23934. }
  23935. },
  23936. },
  23937. [
  23938. {
  23939. name: "Normal",
  23940. height: math.unit(7, "feet"),
  23941. default: true
  23942. },
  23943. {
  23944. name: "Macro",
  23945. height: math.unit(800, "feet")
  23946. },
  23947. {
  23948. name: "Megamacro",
  23949. height: math.unit(250, "miles")
  23950. },
  23951. ]
  23952. ))
  23953. characterMakers.push(() => makeCharacter(
  23954. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23955. {
  23956. front: {
  23957. height: math.unit(6, "feet"),
  23958. weight: math.unit(150, "lb"),
  23959. name: "Front",
  23960. image: {
  23961. source: "./media/characters/pliskin/front.svg",
  23962. extra: 1469 / 1359,
  23963. bottom: 70 / 1540
  23964. }
  23965. },
  23966. },
  23967. [
  23968. {
  23969. name: "Micro",
  23970. height: math.unit(3, "inches")
  23971. },
  23972. {
  23973. name: "Normal",
  23974. height: math.unit(5 + 11 / 12, "feet"),
  23975. default: true
  23976. },
  23977. {
  23978. name: "Macro",
  23979. height: math.unit(120, "feet")
  23980. },
  23981. ]
  23982. ))
  23983. characterMakers.push(() => makeCharacter(
  23984. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23985. {
  23986. front: {
  23987. height: math.unit(6, "feet"),
  23988. weight: math.unit(150, "lb"),
  23989. name: "Front",
  23990. image: {
  23991. source: "./media/characters/sammy/front.svg",
  23992. extra: 1193 / 1089,
  23993. bottom: 30.5 / 1226
  23994. }
  23995. },
  23996. },
  23997. [
  23998. {
  23999. name: "Macro",
  24000. height: math.unit(1700, "feet"),
  24001. default: true
  24002. },
  24003. {
  24004. name: "Examacro",
  24005. height: math.unit(2.5e9, "lightyears")
  24006. },
  24007. ]
  24008. ))
  24009. characterMakers.push(() => makeCharacter(
  24010. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24011. {
  24012. front: {
  24013. height: math.unit(21, "meters"),
  24014. weight: math.unit(12, "tonnes"),
  24015. name: "Front",
  24016. image: {
  24017. source: "./media/characters/kuru/front.svg",
  24018. extra: 4301 / 3785,
  24019. bottom: 371.3 / 4691
  24020. }
  24021. },
  24022. },
  24023. [
  24024. {
  24025. name: "Macro",
  24026. height: math.unit(21, "meters"),
  24027. default: true
  24028. },
  24029. ]
  24030. ))
  24031. characterMakers.push(() => makeCharacter(
  24032. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24033. {
  24034. front: {
  24035. height: math.unit(23, "meters"),
  24036. weight: math.unit(12.2, "tonnes"),
  24037. name: "Front",
  24038. image: {
  24039. source: "./media/characters/rakka/front.svg",
  24040. extra: 4670 / 4169,
  24041. bottom: 301 / 4968.7
  24042. }
  24043. },
  24044. },
  24045. [
  24046. {
  24047. name: "Macro",
  24048. height: math.unit(23, "meters"),
  24049. default: true
  24050. },
  24051. ]
  24052. ))
  24053. characterMakers.push(() => makeCharacter(
  24054. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24055. {
  24056. front: {
  24057. height: math.unit(6, "feet"),
  24058. weight: math.unit(150, "lb"),
  24059. name: "Front",
  24060. image: {
  24061. source: "./media/characters/rhys-feline/front.svg",
  24062. extra: 2488 / 2308,
  24063. bottom: 35.67 / 2519.19
  24064. }
  24065. },
  24066. },
  24067. [
  24068. {
  24069. name: "Really Small",
  24070. height: math.unit(1, "nm")
  24071. },
  24072. {
  24073. name: "Micro",
  24074. height: math.unit(4, "inches")
  24075. },
  24076. {
  24077. name: "Normal",
  24078. height: math.unit(4 + 10 / 12, "feet"),
  24079. default: true
  24080. },
  24081. {
  24082. name: "Macro",
  24083. height: math.unit(100, "feet")
  24084. },
  24085. {
  24086. name: "Megamacto",
  24087. height: math.unit(50, "miles")
  24088. },
  24089. ]
  24090. ))
  24091. characterMakers.push(() => makeCharacter(
  24092. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24093. {
  24094. side: {
  24095. height: math.unit(30, "feet"),
  24096. weight: math.unit(35000, "kg"),
  24097. name: "Side",
  24098. image: {
  24099. source: "./media/characters/alydar/side.svg",
  24100. extra: 234 / 222,
  24101. bottom: 6.5 / 241
  24102. }
  24103. },
  24104. front: {
  24105. height: math.unit(30, "feet"),
  24106. weight: math.unit(35000, "kg"),
  24107. name: "Front",
  24108. image: {
  24109. source: "./media/characters/alydar/front.svg",
  24110. extra: 223.37 / 210.2,
  24111. bottom: 22.3 / 246.76
  24112. }
  24113. },
  24114. top: {
  24115. height: math.unit(64.54, "feet"),
  24116. weight: math.unit(35000, "kg"),
  24117. name: "Top",
  24118. image: {
  24119. source: "./media/characters/alydar/top.svg"
  24120. }
  24121. },
  24122. anthro: {
  24123. height: math.unit(30, "feet"),
  24124. weight: math.unit(9000, "kg"),
  24125. name: "Anthro",
  24126. image: {
  24127. source: "./media/characters/alydar/anthro.svg",
  24128. extra: 432 / 421,
  24129. bottom: 7.18 / 440
  24130. }
  24131. },
  24132. maw: {
  24133. height: math.unit(11.693, "feet"),
  24134. name: "Maw",
  24135. image: {
  24136. source: "./media/characters/alydar/maw.svg"
  24137. }
  24138. },
  24139. head: {
  24140. height: math.unit(11.693, "feet"),
  24141. name: "Head",
  24142. image: {
  24143. source: "./media/characters/alydar/head.svg"
  24144. }
  24145. },
  24146. headAlt: {
  24147. height: math.unit(12.861, "feet"),
  24148. name: "Head (Alt)",
  24149. image: {
  24150. source: "./media/characters/alydar/head-alt.svg"
  24151. }
  24152. },
  24153. wing: {
  24154. height: math.unit(20.712, "feet"),
  24155. name: "Wing",
  24156. image: {
  24157. source: "./media/characters/alydar/wing.svg"
  24158. }
  24159. },
  24160. wingFeather: {
  24161. height: math.unit(9.662, "feet"),
  24162. name: "Wing Feather",
  24163. image: {
  24164. source: "./media/characters/alydar/wing-feather.svg"
  24165. }
  24166. },
  24167. countourFeather: {
  24168. height: math.unit(4.154, "feet"),
  24169. name: "Contour Feather",
  24170. image: {
  24171. source: "./media/characters/alydar/contour-feather.svg"
  24172. }
  24173. },
  24174. },
  24175. [
  24176. {
  24177. name: "Diplomatic",
  24178. height: math.unit(13, "feet"),
  24179. default: true
  24180. },
  24181. {
  24182. name: "Small",
  24183. height: math.unit(30, "feet")
  24184. },
  24185. {
  24186. name: "Normal",
  24187. height: math.unit(95, "feet"),
  24188. default: true
  24189. },
  24190. {
  24191. name: "Large",
  24192. height: math.unit(285, "feet")
  24193. },
  24194. {
  24195. name: "Incomprehensible",
  24196. height: math.unit(450, "megameters")
  24197. },
  24198. ]
  24199. ))
  24200. characterMakers.push(() => makeCharacter(
  24201. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24202. {
  24203. side: {
  24204. height: math.unit(11, "feet"),
  24205. weight: math.unit(1750, "kg"),
  24206. name: "Side",
  24207. image: {
  24208. source: "./media/characters/selicia/side.svg",
  24209. extra: 440 / 396,
  24210. bottom: 24.8 / 465.979
  24211. }
  24212. },
  24213. maw: {
  24214. height: math.unit(4.665, "feet"),
  24215. name: "Maw",
  24216. image: {
  24217. source: "./media/characters/selicia/maw.svg"
  24218. }
  24219. },
  24220. },
  24221. [
  24222. {
  24223. name: "Normal",
  24224. height: math.unit(11, "feet"),
  24225. default: true
  24226. },
  24227. ]
  24228. ))
  24229. characterMakers.push(() => makeCharacter(
  24230. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24231. {
  24232. side: {
  24233. height: math.unit(2 + 6 / 12, "feet"),
  24234. weight: math.unit(30, "lb"),
  24235. name: "Side",
  24236. image: {
  24237. source: "./media/characters/layla/side.svg",
  24238. extra: 244 / 188,
  24239. bottom: 18.2 / 262.1
  24240. }
  24241. },
  24242. back: {
  24243. height: math.unit(2 + 6 / 12, "feet"),
  24244. weight: math.unit(30, "lb"),
  24245. name: "Back",
  24246. image: {
  24247. source: "./media/characters/layla/back.svg",
  24248. extra: 308 / 241.5,
  24249. bottom: 8.9 / 316.8
  24250. }
  24251. },
  24252. cumming: {
  24253. height: math.unit(2 + 6 / 12, "feet"),
  24254. weight: math.unit(30, "lb"),
  24255. name: "Cumming",
  24256. image: {
  24257. source: "./media/characters/layla/cumming.svg",
  24258. extra: 342 / 279,
  24259. bottom: 595 / 938
  24260. }
  24261. },
  24262. dickFlaccid: {
  24263. height: math.unit(2.595, "feet"),
  24264. name: "Flaccid Genitals",
  24265. image: {
  24266. source: "./media/characters/layla/dick-flaccid.svg"
  24267. }
  24268. },
  24269. dickErect: {
  24270. height: math.unit(2.359, "feet"),
  24271. name: "Erect Genitals",
  24272. image: {
  24273. source: "./media/characters/layla/dick-erect.svg"
  24274. }
  24275. },
  24276. dragon: {
  24277. height: math.unit(40, "feet"),
  24278. name: "Dragon",
  24279. image: {
  24280. source: "./media/characters/layla/dragon.svg",
  24281. extra: 610/535,
  24282. bottom: 367/977
  24283. }
  24284. },
  24285. taur: {
  24286. height: math.unit(30, "feet"),
  24287. name: "Taur",
  24288. image: {
  24289. source: "./media/characters/layla/taur.svg",
  24290. extra: 1268/1199,
  24291. bottom: 112/1380
  24292. }
  24293. },
  24294. },
  24295. [
  24296. {
  24297. name: "Micro",
  24298. height: math.unit(1, "inch")
  24299. },
  24300. {
  24301. name: "Small",
  24302. height: math.unit(1, "foot")
  24303. },
  24304. {
  24305. name: "Normal",
  24306. height: math.unit(2 + 6 / 12, "feet"),
  24307. default: true
  24308. },
  24309. {
  24310. name: "Macro",
  24311. height: math.unit(200, "feet")
  24312. },
  24313. {
  24314. name: "Megamacro",
  24315. height: math.unit(1000, "miles")
  24316. },
  24317. {
  24318. name: "Planetary",
  24319. height: math.unit(8000, "miles")
  24320. },
  24321. {
  24322. name: "True Layla",
  24323. height: math.unit(200000 * 7, "multiverses")
  24324. },
  24325. ]
  24326. ))
  24327. characterMakers.push(() => makeCharacter(
  24328. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24329. {
  24330. back: {
  24331. height: math.unit(10.5, "feet"),
  24332. weight: math.unit(800, "lb"),
  24333. name: "Back",
  24334. image: {
  24335. source: "./media/characters/knox/back.svg",
  24336. extra: 1486 / 1089,
  24337. bottom: 107 / 1601.4
  24338. }
  24339. },
  24340. side: {
  24341. height: math.unit(10.5, "feet"),
  24342. weight: math.unit(800, "lb"),
  24343. name: "Side",
  24344. image: {
  24345. source: "./media/characters/knox/side.svg",
  24346. extra: 244 / 218,
  24347. bottom: 14 / 260
  24348. }
  24349. },
  24350. },
  24351. [
  24352. {
  24353. name: "Compact",
  24354. height: math.unit(10.5, "feet"),
  24355. default: true
  24356. },
  24357. {
  24358. name: "Dynamax",
  24359. height: math.unit(210, "feet")
  24360. },
  24361. {
  24362. name: "Full Macro",
  24363. height: math.unit(850, "feet")
  24364. },
  24365. ]
  24366. ))
  24367. characterMakers.push(() => makeCharacter(
  24368. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24369. {
  24370. front: {
  24371. height: math.unit(28, "feet"),
  24372. weight: math.unit(10500, "lb"),
  24373. name: "Front",
  24374. image: {
  24375. source: "./media/characters/kayda/front.svg",
  24376. extra: 1536 / 1428,
  24377. bottom: 68.7 / 1603
  24378. }
  24379. },
  24380. back: {
  24381. height: math.unit(28, "feet"),
  24382. weight: math.unit(10500, "lb"),
  24383. name: "Back",
  24384. image: {
  24385. source: "./media/characters/kayda/back.svg",
  24386. extra: 1557 / 1464,
  24387. bottom: 39.5 / 1597.49
  24388. }
  24389. },
  24390. dick: {
  24391. height: math.unit(3.858, "feet"),
  24392. name: "Dick",
  24393. image: {
  24394. source: "./media/characters/kayda/dick.svg"
  24395. }
  24396. },
  24397. },
  24398. [
  24399. {
  24400. name: "Macro",
  24401. height: math.unit(28, "feet"),
  24402. default: true
  24403. },
  24404. ]
  24405. ))
  24406. characterMakers.push(() => makeCharacter(
  24407. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24408. {
  24409. front: {
  24410. height: math.unit(10 + 11 / 12, "feet"),
  24411. weight: math.unit(1400, "lb"),
  24412. name: "Front",
  24413. image: {
  24414. source: "./media/characters/brian/front.svg",
  24415. extra: 737 / 692,
  24416. bottom: 55.4 / 785
  24417. }
  24418. },
  24419. },
  24420. [
  24421. {
  24422. name: "Normal",
  24423. height: math.unit(10 + 11 / 12, "feet"),
  24424. default: true
  24425. },
  24426. ]
  24427. ))
  24428. characterMakers.push(() => makeCharacter(
  24429. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24430. {
  24431. front: {
  24432. height: math.unit(5 + 8 / 12, "feet"),
  24433. weight: math.unit(140, "lb"),
  24434. name: "Front",
  24435. image: {
  24436. source: "./media/characters/khemri/front.svg",
  24437. extra: 4780 / 4059,
  24438. bottom: 80.1 / 4859.25
  24439. }
  24440. },
  24441. },
  24442. [
  24443. {
  24444. name: "Micro",
  24445. height: math.unit(6, "inches")
  24446. },
  24447. {
  24448. name: "Normal",
  24449. height: math.unit(5 + 8 / 12, "feet"),
  24450. default: true
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24456. {
  24457. front: {
  24458. height: math.unit(13, "feet"),
  24459. weight: math.unit(1700, "lb"),
  24460. name: "Front",
  24461. image: {
  24462. source: "./media/characters/felix-braveheart/front.svg",
  24463. extra: 1222 / 1157,
  24464. bottom: 53.2 / 1280
  24465. }
  24466. },
  24467. back: {
  24468. height: math.unit(13, "feet"),
  24469. weight: math.unit(1700, "lb"),
  24470. name: "Back",
  24471. image: {
  24472. source: "./media/characters/felix-braveheart/back.svg",
  24473. extra: 1277 / 1203,
  24474. bottom: 50.2 / 1327
  24475. }
  24476. },
  24477. feral: {
  24478. height: math.unit(6, "feet"),
  24479. weight: math.unit(400, "lb"),
  24480. name: "Feral",
  24481. image: {
  24482. source: "./media/characters/felix-braveheart/feral.svg",
  24483. extra: 682 / 625,
  24484. bottom: 6.9 / 688
  24485. }
  24486. },
  24487. },
  24488. [
  24489. {
  24490. name: "Normal",
  24491. height: math.unit(13, "feet"),
  24492. default: true
  24493. },
  24494. ]
  24495. ))
  24496. characterMakers.push(() => makeCharacter(
  24497. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24498. {
  24499. side: {
  24500. height: math.unit(5 + 11 / 12, "feet"),
  24501. weight: math.unit(1400, "lb"),
  24502. name: "Side",
  24503. image: {
  24504. source: "./media/characters/shadow-blade/side.svg",
  24505. extra: 1726 / 1267,
  24506. bottom: 58.4 / 1785
  24507. }
  24508. },
  24509. },
  24510. [
  24511. {
  24512. name: "Normal",
  24513. height: math.unit(5 + 11 / 12, "feet"),
  24514. default: true
  24515. },
  24516. ]
  24517. ))
  24518. characterMakers.push(() => makeCharacter(
  24519. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24520. {
  24521. front: {
  24522. height: math.unit(1 + 6 / 12, "feet"),
  24523. weight: math.unit(25, "lb"),
  24524. name: "Front",
  24525. image: {
  24526. source: "./media/characters/karla-halldor/front.svg",
  24527. extra: 1459 / 1383,
  24528. bottom: 12 / 1472
  24529. }
  24530. },
  24531. },
  24532. [
  24533. {
  24534. name: "Normal",
  24535. height: math.unit(1 + 6 / 12, "feet"),
  24536. default: true
  24537. },
  24538. ]
  24539. ))
  24540. characterMakers.push(() => makeCharacter(
  24541. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24542. {
  24543. front: {
  24544. height: math.unit(6 + 2 / 12, "feet"),
  24545. weight: math.unit(160, "lb"),
  24546. name: "Front",
  24547. image: {
  24548. source: "./media/characters/ariam/front.svg",
  24549. extra: 1073/976,
  24550. bottom: 52/1125
  24551. }
  24552. },
  24553. back: {
  24554. height: math.unit(6 + 2/12, "feet"),
  24555. weight: math.unit(160, "lb"),
  24556. name: "Back",
  24557. image: {
  24558. source: "./media/characters/ariam/back.svg",
  24559. extra: 1103/1023,
  24560. bottom: 9/1112
  24561. }
  24562. },
  24563. dressed: {
  24564. height: math.unit(6 + 2/12, "feet"),
  24565. weight: math.unit(160, "lb"),
  24566. name: "Dressed",
  24567. image: {
  24568. source: "./media/characters/ariam/dressed.svg",
  24569. extra: 1099/1009,
  24570. bottom: 25/1124
  24571. }
  24572. },
  24573. squatting: {
  24574. height: math.unit(4.1, "feet"),
  24575. weight: math.unit(160, "lb"),
  24576. name: "Squatting",
  24577. image: {
  24578. source: "./media/characters/ariam/squatting.svg",
  24579. extra: 2617 / 2112,
  24580. bottom: 61.2 / 2681,
  24581. }
  24582. },
  24583. },
  24584. [
  24585. {
  24586. name: "Normal",
  24587. height: math.unit(6 + 2 / 12, "feet"),
  24588. default: true
  24589. },
  24590. {
  24591. name: "Normal+",
  24592. height: math.unit(4, "meters")
  24593. },
  24594. {
  24595. name: "Macro",
  24596. height: math.unit(50, "meters")
  24597. },
  24598. {
  24599. name: "Macro+",
  24600. height: math.unit(100, "meters")
  24601. },
  24602. {
  24603. name: "Megamacro",
  24604. height: math.unit(20, "km")
  24605. },
  24606. {
  24607. name: "Caretaker",
  24608. height: math.unit(444, "megameters")
  24609. },
  24610. ]
  24611. ))
  24612. characterMakers.push(() => makeCharacter(
  24613. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24614. {
  24615. front: {
  24616. height: math.unit(1.67, "meters"),
  24617. weight: math.unit(140, "lb"),
  24618. name: "Front",
  24619. image: {
  24620. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24621. extra: 438 / 410,
  24622. bottom: 0.75 / 439
  24623. }
  24624. },
  24625. },
  24626. [
  24627. {
  24628. name: "Shrunken",
  24629. height: math.unit(7.6, "cm")
  24630. },
  24631. {
  24632. name: "Human Scale",
  24633. height: math.unit(1.67, "meters")
  24634. },
  24635. {
  24636. name: "Wolxi Scale",
  24637. height: math.unit(36.7, "meters"),
  24638. default: true
  24639. },
  24640. ]
  24641. ))
  24642. characterMakers.push(() => makeCharacter(
  24643. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24644. {
  24645. front: {
  24646. height: math.unit(1.73, "meters"),
  24647. weight: math.unit(240, "lb"),
  24648. name: "Front",
  24649. image: {
  24650. source: "./media/characters/izue-two-mothers/front.svg",
  24651. extra: 469 / 437,
  24652. bottom: 1.24 / 470.6
  24653. }
  24654. },
  24655. },
  24656. [
  24657. {
  24658. name: "Shrunken",
  24659. height: math.unit(7.86, "cm")
  24660. },
  24661. {
  24662. name: "Human Scale",
  24663. height: math.unit(1.73, "meters")
  24664. },
  24665. {
  24666. name: "Wolxi Scale",
  24667. height: math.unit(38, "meters"),
  24668. default: true
  24669. },
  24670. ]
  24671. ))
  24672. characterMakers.push(() => makeCharacter(
  24673. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24674. {
  24675. front: {
  24676. height: math.unit(1.55, "meters"),
  24677. weight: math.unit(120, "lb"),
  24678. name: "Front",
  24679. image: {
  24680. source: "./media/characters/teeku-love-shack/front.svg",
  24681. extra: 387 / 362,
  24682. bottom: 1.51 / 388
  24683. }
  24684. },
  24685. },
  24686. [
  24687. {
  24688. name: "Shrunken",
  24689. height: math.unit(7, "cm")
  24690. },
  24691. {
  24692. name: "Human Scale",
  24693. height: math.unit(1.55, "meters")
  24694. },
  24695. {
  24696. name: "Wolxi Scale",
  24697. height: math.unit(34.1, "meters"),
  24698. default: true
  24699. },
  24700. ]
  24701. ))
  24702. characterMakers.push(() => makeCharacter(
  24703. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24704. {
  24705. front: {
  24706. height: math.unit(1.83, "meters"),
  24707. weight: math.unit(135, "lb"),
  24708. name: "Front",
  24709. image: {
  24710. source: "./media/characters/dejma-the-red/front.svg",
  24711. extra: 480 / 458,
  24712. bottom: 1.8 / 482
  24713. }
  24714. },
  24715. },
  24716. [
  24717. {
  24718. name: "Shrunken",
  24719. height: math.unit(8.3, "cm")
  24720. },
  24721. {
  24722. name: "Human Scale",
  24723. height: math.unit(1.83, "meters")
  24724. },
  24725. {
  24726. name: "Wolxi Scale",
  24727. height: math.unit(40, "meters"),
  24728. default: true
  24729. },
  24730. ]
  24731. ))
  24732. characterMakers.push(() => makeCharacter(
  24733. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24734. {
  24735. front: {
  24736. height: math.unit(1.78, "meters"),
  24737. weight: math.unit(65, "kg"),
  24738. name: "Front",
  24739. image: {
  24740. source: "./media/characters/aki/front.svg",
  24741. extra: 452 / 415
  24742. }
  24743. },
  24744. frontNsfw: {
  24745. height: math.unit(1.78, "meters"),
  24746. weight: math.unit(65, "kg"),
  24747. name: "Front (NSFW)",
  24748. image: {
  24749. source: "./media/characters/aki/front-nsfw.svg",
  24750. extra: 452 / 415
  24751. }
  24752. },
  24753. back: {
  24754. height: math.unit(1.78, "meters"),
  24755. weight: math.unit(65, "kg"),
  24756. name: "Back",
  24757. image: {
  24758. source: "./media/characters/aki/back.svg",
  24759. extra: 452 / 415
  24760. }
  24761. },
  24762. rump: {
  24763. height: math.unit(2.05, "feet"),
  24764. name: "Rump",
  24765. image: {
  24766. source: "./media/characters/aki/rump.svg"
  24767. }
  24768. },
  24769. dick: {
  24770. height: math.unit(0.95, "feet"),
  24771. name: "Dick",
  24772. image: {
  24773. source: "./media/characters/aki/dick.svg"
  24774. }
  24775. },
  24776. },
  24777. [
  24778. {
  24779. name: "Micro",
  24780. height: math.unit(15, "cm")
  24781. },
  24782. {
  24783. name: "Normal",
  24784. height: math.unit(178, "cm"),
  24785. default: true
  24786. },
  24787. {
  24788. name: "Macro",
  24789. height: math.unit(214, "m")
  24790. },
  24791. {
  24792. name: "Macro+",
  24793. height: math.unit(534, "m")
  24794. },
  24795. ]
  24796. ))
  24797. characterMakers.push(() => makeCharacter(
  24798. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24799. {
  24800. front: {
  24801. height: math.unit(5 + 5 / 12, "feet"),
  24802. weight: math.unit(120, "lb"),
  24803. name: "Front",
  24804. image: {
  24805. source: "./media/characters/ari/front.svg",
  24806. extra: 714.5 / 682,
  24807. bottom: 8 / 722.5
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Normal",
  24814. height: math.unit(5 + 5 / 12, "feet")
  24815. },
  24816. {
  24817. name: "Macro",
  24818. height: math.unit(100, "feet"),
  24819. default: true
  24820. },
  24821. {
  24822. name: "Megamacro",
  24823. height: math.unit(100, "miles")
  24824. },
  24825. {
  24826. name: "Gigamacro",
  24827. height: math.unit(80000, "miles")
  24828. },
  24829. ]
  24830. ))
  24831. characterMakers.push(() => makeCharacter(
  24832. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24833. {
  24834. side: {
  24835. height: math.unit(9, "feet"),
  24836. weight: math.unit(400, "kg"),
  24837. name: "Side",
  24838. image: {
  24839. source: "./media/characters/bolt/side.svg",
  24840. extra: 1126 / 896,
  24841. bottom: 60 / 1187.3,
  24842. }
  24843. },
  24844. },
  24845. [
  24846. {
  24847. name: "Micro",
  24848. height: math.unit(5, "inches")
  24849. },
  24850. {
  24851. name: "Normal",
  24852. height: math.unit(9, "feet"),
  24853. default: true
  24854. },
  24855. {
  24856. name: "Macro",
  24857. height: math.unit(700, "feet")
  24858. },
  24859. {
  24860. name: "Max Size",
  24861. height: math.unit(1.52e22, "yottameters")
  24862. },
  24863. ]
  24864. ))
  24865. characterMakers.push(() => makeCharacter(
  24866. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24867. {
  24868. front: {
  24869. height: math.unit(4.3, "meters"),
  24870. weight: math.unit(3, "tons"),
  24871. name: "Front",
  24872. image: {
  24873. source: "./media/characters/draekon-sylviar/front.svg",
  24874. extra: 2072/1512,
  24875. bottom: 74/2146
  24876. }
  24877. },
  24878. back: {
  24879. height: math.unit(4.3, "meters"),
  24880. weight: math.unit(3, "tons"),
  24881. name: "Back",
  24882. image: {
  24883. source: "./media/characters/draekon-sylviar/back.svg",
  24884. extra: 1639/1483,
  24885. bottom: 41/1680
  24886. }
  24887. },
  24888. feral: {
  24889. height: math.unit(1.15, "meters"),
  24890. weight: math.unit(3, "tons"),
  24891. name: "Feral",
  24892. image: {
  24893. source: "./media/characters/draekon-sylviar/feral.svg",
  24894. extra: 1033/395,
  24895. bottom: 130/1163
  24896. }
  24897. },
  24898. maw: {
  24899. height: math.unit(1.3, "meters"),
  24900. name: "Maw",
  24901. image: {
  24902. source: "./media/characters/draekon-sylviar/maw.svg"
  24903. }
  24904. },
  24905. mawSeparated: {
  24906. height: math.unit(1.53, "meters"),
  24907. name: "Separated Maw",
  24908. image: {
  24909. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  24910. }
  24911. },
  24912. tail: {
  24913. height: math.unit(1.15, "meters"),
  24914. name: "Tail",
  24915. image: {
  24916. source: "./media/characters/draekon-sylviar/tail.svg"
  24917. }
  24918. },
  24919. tailDick: {
  24920. height: math.unit(1.15, "meters"),
  24921. name: "Tail (Dick)",
  24922. image: {
  24923. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  24924. }
  24925. },
  24926. tailDickSeparated: {
  24927. height: math.unit(1.19, "meters"),
  24928. name: "Tail (Separated Dick)",
  24929. image: {
  24930. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  24931. }
  24932. },
  24933. slit: {
  24934. height: math.unit(1, "meters"),
  24935. name: "Slit",
  24936. image: {
  24937. source: "./media/characters/draekon-sylviar/slit.svg"
  24938. }
  24939. },
  24940. dick: {
  24941. height: math.unit(1.15, "meters"),
  24942. name: "Dick",
  24943. image: {
  24944. source: "./media/characters/draekon-sylviar/dick.svg"
  24945. }
  24946. },
  24947. dickSeparated: {
  24948. height: math.unit(1.1, "meters"),
  24949. name: "Separated Dick",
  24950. image: {
  24951. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24952. }
  24953. },
  24954. sheath: {
  24955. height: math.unit(1.15, "meters"),
  24956. name: "Sheath",
  24957. image: {
  24958. source: "./media/characters/draekon-sylviar/sheath.svg"
  24959. }
  24960. },
  24961. },
  24962. [
  24963. {
  24964. name: "Small",
  24965. height: math.unit(4.53 / 2, "meters"),
  24966. default: true
  24967. },
  24968. {
  24969. name: "Normal",
  24970. height: math.unit(4.53, "meters"),
  24971. default: true
  24972. },
  24973. {
  24974. name: "Large",
  24975. height: math.unit(4.53 * 2, "meters"),
  24976. },
  24977. ]
  24978. ))
  24979. characterMakers.push(() => makeCharacter(
  24980. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24981. {
  24982. front: {
  24983. height: math.unit(6 + 2 / 12, "feet"),
  24984. weight: math.unit(180, "lb"),
  24985. name: "Front",
  24986. image: {
  24987. source: "./media/characters/brawler/front.svg",
  24988. extra: 3301 / 3027,
  24989. bottom: 138 / 3439
  24990. }
  24991. },
  24992. },
  24993. [
  24994. {
  24995. name: "Normal",
  24996. height: math.unit(6 + 2 / 12, "feet"),
  24997. default: true
  24998. },
  24999. ]
  25000. ))
  25001. characterMakers.push(() => makeCharacter(
  25002. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25003. {
  25004. front: {
  25005. height: math.unit(11, "feet"),
  25006. weight: math.unit(1000, "lb"),
  25007. name: "Front",
  25008. image: {
  25009. source: "./media/characters/alex/front.svg",
  25010. bottom: 44.5 / 620
  25011. }
  25012. },
  25013. },
  25014. [
  25015. {
  25016. name: "Micro",
  25017. height: math.unit(5, "inches")
  25018. },
  25019. {
  25020. name: "Normal",
  25021. height: math.unit(11, "feet"),
  25022. default: true
  25023. },
  25024. {
  25025. name: "Macro",
  25026. height: math.unit(9.5e9, "feet")
  25027. },
  25028. {
  25029. name: "Max Size",
  25030. height: math.unit(1.4e283, "yottameters")
  25031. },
  25032. ]
  25033. ))
  25034. characterMakers.push(() => makeCharacter(
  25035. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25036. {
  25037. female: {
  25038. height: math.unit(29.9, "m"),
  25039. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25040. name: "Female",
  25041. image: {
  25042. source: "./media/characters/zenari/female.svg",
  25043. extra: 3281.6 / 3217,
  25044. bottom: 72.2 / 3353
  25045. }
  25046. },
  25047. male: {
  25048. height: math.unit(27.7, "m"),
  25049. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25050. name: "Male",
  25051. image: {
  25052. source: "./media/characters/zenari/male.svg",
  25053. extra: 3008 / 2991,
  25054. bottom: 54.6 / 3069
  25055. }
  25056. },
  25057. },
  25058. [
  25059. {
  25060. name: "Macro",
  25061. height: math.unit(29.7, "meters"),
  25062. default: true
  25063. },
  25064. ]
  25065. ))
  25066. characterMakers.push(() => makeCharacter(
  25067. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25068. {
  25069. female: {
  25070. height: math.unit(23.8, "m"),
  25071. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25072. name: "Female",
  25073. image: {
  25074. source: "./media/characters/mactarian/female.svg",
  25075. extra: 2662 / 2569,
  25076. bottom: 73 / 2736
  25077. }
  25078. },
  25079. male: {
  25080. height: math.unit(23.8, "m"),
  25081. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25082. name: "Male",
  25083. image: {
  25084. source: "./media/characters/mactarian/male.svg",
  25085. extra: 2673 / 2600,
  25086. bottom: 76 / 2750
  25087. }
  25088. },
  25089. },
  25090. [
  25091. {
  25092. name: "Macro",
  25093. height: math.unit(23.8, "meters"),
  25094. default: true
  25095. },
  25096. ]
  25097. ))
  25098. characterMakers.push(() => makeCharacter(
  25099. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25100. {
  25101. female: {
  25102. height: math.unit(19.3, "m"),
  25103. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25104. name: "Female",
  25105. image: {
  25106. source: "./media/characters/umok/female.svg",
  25107. extra: 2186 / 2078,
  25108. bottom: 87 / 2277
  25109. }
  25110. },
  25111. male: {
  25112. height: math.unit(19.5, "m"),
  25113. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25114. name: "Male",
  25115. image: {
  25116. source: "./media/characters/umok/male.svg",
  25117. extra: 2233 / 2140,
  25118. bottom: 24.4 / 2258
  25119. }
  25120. },
  25121. },
  25122. [
  25123. {
  25124. name: "Macro",
  25125. height: math.unit(19.3, "meters"),
  25126. default: true
  25127. },
  25128. ]
  25129. ))
  25130. characterMakers.push(() => makeCharacter(
  25131. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25132. {
  25133. female: {
  25134. height: math.unit(26.15, "m"),
  25135. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25136. name: "Female",
  25137. image: {
  25138. source: "./media/characters/joraxian/female.svg",
  25139. extra: 2912 / 2824,
  25140. bottom: 36 / 2956
  25141. }
  25142. },
  25143. male: {
  25144. height: math.unit(25.4, "m"),
  25145. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25146. name: "Male",
  25147. image: {
  25148. source: "./media/characters/joraxian/male.svg",
  25149. extra: 2877 / 2721,
  25150. bottom: 82 / 2967
  25151. }
  25152. },
  25153. },
  25154. [
  25155. {
  25156. name: "Macro",
  25157. height: math.unit(26.15, "meters"),
  25158. default: true
  25159. },
  25160. ]
  25161. ))
  25162. characterMakers.push(() => makeCharacter(
  25163. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25164. {
  25165. female: {
  25166. height: math.unit(21.6, "m"),
  25167. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25168. name: "Female",
  25169. image: {
  25170. source: "./media/characters/sthara/female.svg",
  25171. extra: 2516 / 2347,
  25172. bottom: 21.5 / 2537
  25173. }
  25174. },
  25175. male: {
  25176. height: math.unit(24, "m"),
  25177. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25178. name: "Male",
  25179. image: {
  25180. source: "./media/characters/sthara/male.svg",
  25181. extra: 2732 / 2607,
  25182. bottom: 23 / 2732
  25183. }
  25184. },
  25185. },
  25186. [
  25187. {
  25188. name: "Macro",
  25189. height: math.unit(21.6, "meters"),
  25190. default: true
  25191. },
  25192. ]
  25193. ))
  25194. characterMakers.push(() => makeCharacter(
  25195. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25196. {
  25197. front: {
  25198. height: math.unit(6 + 4 / 12, "feet"),
  25199. weight: math.unit(175, "lb"),
  25200. name: "Front",
  25201. image: {
  25202. source: "./media/characters/luka-bryzant/front.svg",
  25203. extra: 311 / 289,
  25204. bottom: 4 / 315
  25205. }
  25206. },
  25207. back: {
  25208. height: math.unit(6 + 4 / 12, "feet"),
  25209. weight: math.unit(175, "lb"),
  25210. name: "Back",
  25211. image: {
  25212. source: "./media/characters/luka-bryzant/back.svg",
  25213. extra: 311 / 289,
  25214. bottom: 3.8 / 313.7
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Micro",
  25221. height: math.unit(10, "inches")
  25222. },
  25223. {
  25224. name: "Normal",
  25225. height: math.unit(6 + 4 / 12, "feet"),
  25226. default: true
  25227. },
  25228. {
  25229. name: "Large",
  25230. height: math.unit(12, "feet")
  25231. },
  25232. ]
  25233. ))
  25234. characterMakers.push(() => makeCharacter(
  25235. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25236. {
  25237. front: {
  25238. height: math.unit(5 + 7 / 12, "feet"),
  25239. weight: math.unit(185, "lb"),
  25240. name: "Front",
  25241. image: {
  25242. source: "./media/characters/aman-aquila/front.svg",
  25243. extra: 1013 / 976,
  25244. bottom: 45.6 / 1057
  25245. }
  25246. },
  25247. side: {
  25248. height: math.unit(5 + 7 / 12, "feet"),
  25249. weight: math.unit(185, "lb"),
  25250. name: "Side",
  25251. image: {
  25252. source: "./media/characters/aman-aquila/side.svg",
  25253. extra: 1054 / 1011,
  25254. bottom: 15 / 1070
  25255. }
  25256. },
  25257. back: {
  25258. height: math.unit(5 + 7 / 12, "feet"),
  25259. weight: math.unit(185, "lb"),
  25260. name: "Back",
  25261. image: {
  25262. source: "./media/characters/aman-aquila/back.svg",
  25263. extra: 1026 / 970,
  25264. bottom: 12 / 1039
  25265. }
  25266. },
  25267. head: {
  25268. height: math.unit(1.211, "feet"),
  25269. name: "Head",
  25270. image: {
  25271. source: "./media/characters/aman-aquila/head.svg",
  25272. }
  25273. },
  25274. },
  25275. [
  25276. {
  25277. name: "Minimicro",
  25278. height: math.unit(0.057, "inches")
  25279. },
  25280. {
  25281. name: "Micro",
  25282. height: math.unit(7, "inches")
  25283. },
  25284. {
  25285. name: "Mini",
  25286. height: math.unit(3 + 7 / 12, "feet")
  25287. },
  25288. {
  25289. name: "Normal",
  25290. height: math.unit(5 + 7 / 12, "feet"),
  25291. default: true
  25292. },
  25293. {
  25294. name: "Macro",
  25295. height: math.unit(157 + 7 / 12, "feet")
  25296. },
  25297. {
  25298. name: "Megamacro",
  25299. height: math.unit(1557 + 7 / 12, "feet")
  25300. },
  25301. {
  25302. name: "Gigamacro",
  25303. height: math.unit(15557 + 7 / 12, "feet")
  25304. },
  25305. ]
  25306. ))
  25307. characterMakers.push(() => makeCharacter(
  25308. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25309. {
  25310. front: {
  25311. height: math.unit(3 + 2 / 12, "inches"),
  25312. weight: math.unit(0.3, "ounces"),
  25313. name: "Front",
  25314. image: {
  25315. source: "./media/characters/hiphae/front.svg",
  25316. extra: 1931 / 1683,
  25317. bottom: 24 / 1955
  25318. }
  25319. },
  25320. },
  25321. [
  25322. {
  25323. name: "Normal",
  25324. height: math.unit(3 + 1 / 2, "inches"),
  25325. default: true
  25326. },
  25327. ]
  25328. ))
  25329. characterMakers.push(() => makeCharacter(
  25330. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25331. {
  25332. front: {
  25333. height: math.unit(5 + 10 / 12, "feet"),
  25334. weight: math.unit(165, "lb"),
  25335. name: "Front",
  25336. image: {
  25337. source: "./media/characters/nicky/front.svg",
  25338. extra: 3144 / 2886,
  25339. bottom: 45.6 / 3192
  25340. }
  25341. },
  25342. back: {
  25343. height: math.unit(5 + 10 / 12, "feet"),
  25344. weight: math.unit(165, "lb"),
  25345. name: "Back",
  25346. image: {
  25347. source: "./media/characters/nicky/back.svg",
  25348. extra: 3055 / 2804,
  25349. bottom: 28.4 / 3087
  25350. }
  25351. },
  25352. frontclothed: {
  25353. height: math.unit(5 + 10 / 12, "feet"),
  25354. weight: math.unit(165, "lb"),
  25355. name: "Front-clothed",
  25356. image: {
  25357. source: "./media/characters/nicky/front-clothed.svg",
  25358. extra: 3184.9 / 2926.9,
  25359. bottom: 86.5 / 3239.9
  25360. }
  25361. },
  25362. foot: {
  25363. height: math.unit(1.16, "feet"),
  25364. name: "Foot",
  25365. image: {
  25366. source: "./media/characters/nicky/foot.svg"
  25367. }
  25368. },
  25369. feet: {
  25370. height: math.unit(1.34, "feet"),
  25371. name: "Feet",
  25372. image: {
  25373. source: "./media/characters/nicky/feet.svg"
  25374. }
  25375. },
  25376. maw: {
  25377. height: math.unit(0.9, "feet"),
  25378. name: "Maw",
  25379. image: {
  25380. source: "./media/characters/nicky/maw.svg"
  25381. }
  25382. },
  25383. },
  25384. [
  25385. {
  25386. name: "Normal",
  25387. height: math.unit(5 + 10 / 12, "feet"),
  25388. default: true
  25389. },
  25390. {
  25391. name: "Macro",
  25392. height: math.unit(60, "feet")
  25393. },
  25394. {
  25395. name: "Megamacro",
  25396. height: math.unit(1, "mile")
  25397. },
  25398. ]
  25399. ))
  25400. characterMakers.push(() => makeCharacter(
  25401. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25402. {
  25403. side: {
  25404. height: math.unit(10, "feet"),
  25405. weight: math.unit(600, "lb"),
  25406. name: "Side",
  25407. image: {
  25408. source: "./media/characters/blair/side.svg",
  25409. bottom: 16.6 / 475,
  25410. extra: 458 / 431
  25411. }
  25412. },
  25413. },
  25414. [
  25415. {
  25416. name: "Micro",
  25417. height: math.unit(8, "inches")
  25418. },
  25419. {
  25420. name: "Normal",
  25421. height: math.unit(10, "feet"),
  25422. default: true
  25423. },
  25424. {
  25425. name: "Macro",
  25426. height: math.unit(180, "feet")
  25427. },
  25428. ]
  25429. ))
  25430. characterMakers.push(() => makeCharacter(
  25431. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25432. {
  25433. front: {
  25434. height: math.unit(5 + 4 / 12, "feet"),
  25435. weight: math.unit(125, "lb"),
  25436. name: "Front",
  25437. image: {
  25438. source: "./media/characters/fisher/front.svg",
  25439. extra: 444 / 390,
  25440. bottom: 2 / 444.8
  25441. }
  25442. },
  25443. },
  25444. [
  25445. {
  25446. name: "Micro",
  25447. height: math.unit(4, "inches")
  25448. },
  25449. {
  25450. name: "Normal",
  25451. height: math.unit(5 + 4 / 12, "feet"),
  25452. default: true
  25453. },
  25454. {
  25455. name: "Macro",
  25456. height: math.unit(100, "feet")
  25457. },
  25458. ]
  25459. ))
  25460. characterMakers.push(() => makeCharacter(
  25461. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25462. {
  25463. front: {
  25464. height: math.unit(6.71, "feet"),
  25465. weight: math.unit(200, "lb"),
  25466. capacity: math.unit(1000000, "people"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/gliss/front.svg",
  25470. extra: 2347 / 2231,
  25471. bottom: 113 / 2462
  25472. }
  25473. },
  25474. hammerspaceSize: {
  25475. height: math.unit(6.71 * 717, "feet"),
  25476. weight: math.unit(200, "lb"),
  25477. capacity: math.unit(1000000, "people"),
  25478. name: "Hammerspace Size",
  25479. image: {
  25480. source: "./media/characters/gliss/front.svg",
  25481. extra: 2347 / 2231,
  25482. bottom: 113 / 2462
  25483. }
  25484. },
  25485. },
  25486. [
  25487. {
  25488. name: "Normal",
  25489. height: math.unit(6.71, "feet"),
  25490. default: true
  25491. },
  25492. ]
  25493. ))
  25494. characterMakers.push(() => makeCharacter(
  25495. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25496. {
  25497. side: {
  25498. height: math.unit(1.44, "m"),
  25499. weight: math.unit(80, "kg"),
  25500. name: "Side",
  25501. image: {
  25502. source: "./media/characters/dune-anderson/side.svg",
  25503. bottom: 49 / 1426
  25504. }
  25505. },
  25506. },
  25507. [
  25508. {
  25509. name: "Wolf-sized",
  25510. height: math.unit(1.44, "meters")
  25511. },
  25512. {
  25513. name: "Normal",
  25514. height: math.unit(5.05, "meters"),
  25515. default: true
  25516. },
  25517. {
  25518. name: "Big",
  25519. height: math.unit(14.4, "meters")
  25520. },
  25521. {
  25522. name: "Huge",
  25523. height: math.unit(144, "meters")
  25524. },
  25525. ]
  25526. ))
  25527. characterMakers.push(() => makeCharacter(
  25528. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25529. {
  25530. front: {
  25531. height: math.unit(7, "feet"),
  25532. weight: math.unit(425, "lb"),
  25533. name: "Front",
  25534. image: {
  25535. source: "./media/characters/hind/front.svg",
  25536. extra: 2091 / 1860,
  25537. bottom: 129 / 2220
  25538. }
  25539. },
  25540. back: {
  25541. height: math.unit(7, "feet"),
  25542. weight: math.unit(425, "lb"),
  25543. name: "Back",
  25544. image: {
  25545. source: "./media/characters/hind/back.svg",
  25546. extra: 2091 / 1860,
  25547. bottom: 24.6 / 2309
  25548. }
  25549. },
  25550. tail: {
  25551. height: math.unit(2.8, "feet"),
  25552. name: "Tail",
  25553. image: {
  25554. source: "./media/characters/hind/tail.svg"
  25555. }
  25556. },
  25557. head: {
  25558. height: math.unit(2.55, "feet"),
  25559. name: "Head",
  25560. image: {
  25561. source: "./media/characters/hind/head.svg"
  25562. }
  25563. },
  25564. },
  25565. [
  25566. {
  25567. name: "XS",
  25568. height: math.unit(0.7, "feet")
  25569. },
  25570. {
  25571. name: "Normal",
  25572. height: math.unit(7, "feet"),
  25573. default: true
  25574. },
  25575. {
  25576. name: "XL",
  25577. height: math.unit(70, "feet")
  25578. },
  25579. ]
  25580. ))
  25581. characterMakers.push(() => makeCharacter(
  25582. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25583. {
  25584. front: {
  25585. height: math.unit(2.1, "meters"),
  25586. weight: math.unit(150, "lb"),
  25587. name: "Front",
  25588. image: {
  25589. source: "./media/characters/tharquench-sizestealer/front.svg",
  25590. extra: 1605/1470,
  25591. bottom: 36/1641
  25592. }
  25593. },
  25594. frontAlt: {
  25595. height: math.unit(2.1, "meters"),
  25596. weight: math.unit(150, "lb"),
  25597. name: "Front (Alt)",
  25598. image: {
  25599. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25600. extra: 2318 / 2063,
  25601. bottom: 93.4 / 2410
  25602. }
  25603. },
  25604. },
  25605. [
  25606. {
  25607. name: "Nano",
  25608. height: math.unit(1, "mm")
  25609. },
  25610. {
  25611. name: "Micro",
  25612. height: math.unit(1, "cm")
  25613. },
  25614. {
  25615. name: "Normal",
  25616. height: math.unit(2.1, "meters"),
  25617. default: true
  25618. },
  25619. ]
  25620. ))
  25621. characterMakers.push(() => makeCharacter(
  25622. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25623. {
  25624. front: {
  25625. height: math.unit(7 + 5 / 12, "feet"),
  25626. weight: math.unit(357, "lb"),
  25627. name: "Front",
  25628. image: {
  25629. source: "./media/characters/solex-draconov/front.svg",
  25630. extra: 1993 / 1865,
  25631. bottom: 117 / 2111
  25632. }
  25633. },
  25634. },
  25635. [
  25636. {
  25637. name: "Natural Height",
  25638. height: math.unit(7 + 5 / 12, "feet"),
  25639. default: true
  25640. },
  25641. {
  25642. name: "Macro",
  25643. height: math.unit(350, "feet")
  25644. },
  25645. {
  25646. name: "Macro+",
  25647. height: math.unit(1000, "feet")
  25648. },
  25649. {
  25650. name: "Megamacro",
  25651. height: math.unit(20, "km")
  25652. },
  25653. {
  25654. name: "Megamacro+",
  25655. height: math.unit(1000, "km")
  25656. },
  25657. {
  25658. name: "Gigamacro",
  25659. height: math.unit(2.5, "Gm")
  25660. },
  25661. {
  25662. name: "Teramacro",
  25663. height: math.unit(15, "Tm")
  25664. },
  25665. {
  25666. name: "Galactic",
  25667. height: math.unit(30, "Zm")
  25668. },
  25669. {
  25670. name: "Universal",
  25671. height: math.unit(21000, "Ym")
  25672. },
  25673. {
  25674. name: "Omniversal",
  25675. height: math.unit(9.861e50, "Ym")
  25676. },
  25677. {
  25678. name: "Existential",
  25679. height: math.unit(1e300, "meters")
  25680. },
  25681. ]
  25682. ))
  25683. characterMakers.push(() => makeCharacter(
  25684. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25685. {
  25686. side: {
  25687. height: math.unit(25, "feet"),
  25688. weight: math.unit(90000, "lb"),
  25689. name: "Side",
  25690. image: {
  25691. source: "./media/characters/mandarax/side.svg",
  25692. extra: 614 / 332,
  25693. bottom: 55 / 630
  25694. }
  25695. },
  25696. head: {
  25697. height: math.unit(11.4, "feet"),
  25698. name: "Head",
  25699. image: {
  25700. source: "./media/characters/mandarax/head.svg"
  25701. }
  25702. },
  25703. belly: {
  25704. height: math.unit(33, "feet"),
  25705. name: "Belly",
  25706. capacity: math.unit(500, "people"),
  25707. image: {
  25708. source: "./media/characters/mandarax/belly.svg"
  25709. }
  25710. },
  25711. dick: {
  25712. height: math.unit(8.46, "feet"),
  25713. name: "Dick",
  25714. image: {
  25715. source: "./media/characters/mandarax/dick.svg"
  25716. }
  25717. },
  25718. top: {
  25719. height: math.unit(28, "meters"),
  25720. name: "Top",
  25721. image: {
  25722. source: "./media/characters/mandarax/top.svg"
  25723. }
  25724. },
  25725. },
  25726. [
  25727. {
  25728. name: "Normal",
  25729. height: math.unit(25, "feet"),
  25730. default: true
  25731. },
  25732. ]
  25733. ))
  25734. characterMakers.push(() => makeCharacter(
  25735. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25736. {
  25737. front: {
  25738. height: math.unit(5, "feet"),
  25739. weight: math.unit(90, "lb"),
  25740. name: "Front",
  25741. image: {
  25742. source: "./media/characters/pixil/front.svg",
  25743. extra: 2000 / 1618,
  25744. bottom: 12.3 / 2011
  25745. }
  25746. },
  25747. },
  25748. [
  25749. {
  25750. name: "Normal",
  25751. height: math.unit(5, "feet"),
  25752. default: true
  25753. },
  25754. {
  25755. name: "Megamacro",
  25756. height: math.unit(10, "miles"),
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25762. {
  25763. front: {
  25764. height: math.unit(7 + 2 / 12, "feet"),
  25765. weight: math.unit(200, "lb"),
  25766. name: "Front",
  25767. image: {
  25768. source: "./media/characters/angel/front.svg",
  25769. extra: 1830 / 1737,
  25770. bottom: 22.6 / 1854,
  25771. }
  25772. },
  25773. },
  25774. [
  25775. {
  25776. name: "Normal",
  25777. height: math.unit(7 + 2 / 12, "feet"),
  25778. default: true
  25779. },
  25780. {
  25781. name: "Macro",
  25782. height: math.unit(1000, "feet")
  25783. },
  25784. {
  25785. name: "Megamacro",
  25786. height: math.unit(2, "miles")
  25787. },
  25788. {
  25789. name: "Gigamacro",
  25790. height: math.unit(20, "earths")
  25791. },
  25792. ]
  25793. ))
  25794. characterMakers.push(() => makeCharacter(
  25795. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25796. {
  25797. front: {
  25798. height: math.unit(5, "feet"),
  25799. weight: math.unit(180, "lb"),
  25800. name: "Front",
  25801. image: {
  25802. source: "./media/characters/mekana/front.svg",
  25803. extra: 1671 / 1605,
  25804. bottom: 3.5 / 1691
  25805. }
  25806. },
  25807. side: {
  25808. height: math.unit(5, "feet"),
  25809. weight: math.unit(180, "lb"),
  25810. name: "Side",
  25811. image: {
  25812. source: "./media/characters/mekana/side.svg",
  25813. extra: 1671 / 1605,
  25814. bottom: 3.5 / 1691
  25815. }
  25816. },
  25817. back: {
  25818. height: math.unit(5, "feet"),
  25819. weight: math.unit(180, "lb"),
  25820. name: "Back",
  25821. image: {
  25822. source: "./media/characters/mekana/back.svg",
  25823. extra: 1671 / 1605,
  25824. bottom: 3.5 / 1691
  25825. }
  25826. },
  25827. },
  25828. [
  25829. {
  25830. name: "Normal",
  25831. height: math.unit(5, "feet"),
  25832. default: true
  25833. },
  25834. ]
  25835. ))
  25836. characterMakers.push(() => makeCharacter(
  25837. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25838. {
  25839. front: {
  25840. height: math.unit(4 + 6 / 12, "feet"),
  25841. weight: math.unit(80, "lb"),
  25842. name: "Front",
  25843. image: {
  25844. source: "./media/characters/pixie/front.svg",
  25845. extra: 1924 / 1825,
  25846. bottom: 22.4 / 1946
  25847. }
  25848. },
  25849. },
  25850. [
  25851. {
  25852. name: "Normal",
  25853. height: math.unit(4 + 6 / 12, "feet"),
  25854. default: true
  25855. },
  25856. {
  25857. name: "Macro",
  25858. height: math.unit(40, "feet")
  25859. },
  25860. ]
  25861. ))
  25862. characterMakers.push(() => makeCharacter(
  25863. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25864. {
  25865. front: {
  25866. height: math.unit(2.1, "meters"),
  25867. weight: math.unit(200, "lb"),
  25868. name: "Front",
  25869. image: {
  25870. source: "./media/characters/the-lascivious/front.svg",
  25871. extra: 1 / 0.893,
  25872. bottom: 3.5 / 573.7
  25873. }
  25874. },
  25875. },
  25876. [
  25877. {
  25878. name: "Human Scale",
  25879. height: math.unit(2.1, "meters")
  25880. },
  25881. {
  25882. name: "Wolxi Scale",
  25883. height: math.unit(46.2, "m"),
  25884. default: true
  25885. },
  25886. {
  25887. name: "Boinker of Buildings",
  25888. height: math.unit(10, "km")
  25889. },
  25890. {
  25891. name: "Shagger of Skyscrapers",
  25892. height: math.unit(40, "km")
  25893. },
  25894. {
  25895. name: "Banger of Boroughs",
  25896. height: math.unit(4000, "km")
  25897. },
  25898. {
  25899. name: "Screwer of States",
  25900. height: math.unit(100000, "km")
  25901. },
  25902. {
  25903. name: "Pounder of Planets",
  25904. height: math.unit(2000000, "km")
  25905. },
  25906. ]
  25907. ))
  25908. characterMakers.push(() => makeCharacter(
  25909. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25910. {
  25911. front: {
  25912. height: math.unit(6, "feet"),
  25913. weight: math.unit(150, "lb"),
  25914. name: "Front",
  25915. image: {
  25916. source: "./media/characters/aj/front.svg",
  25917. extra: 2039 / 1562,
  25918. bottom: 40 / 2079
  25919. }
  25920. },
  25921. },
  25922. [
  25923. {
  25924. name: "Normal",
  25925. height: math.unit(11 + 6 / 12, "feet"),
  25926. default: true
  25927. },
  25928. {
  25929. name: "Megamacro",
  25930. height: math.unit(60, "megameters")
  25931. },
  25932. ]
  25933. ))
  25934. characterMakers.push(() => makeCharacter(
  25935. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25936. {
  25937. side: {
  25938. height: math.unit(31 + 8 / 12, "feet"),
  25939. weight: math.unit(75000, "kg"),
  25940. name: "Side",
  25941. image: {
  25942. source: "./media/characters/koros/side.svg",
  25943. extra: 1442 / 1297,
  25944. bottom: 122.7 / 1562
  25945. }
  25946. },
  25947. dicksKingsCrown: {
  25948. height: math.unit(6, "feet"),
  25949. name: "Dicks (King's Crown)",
  25950. image: {
  25951. source: "./media/characters/koros/dicks-kings-crown.svg"
  25952. }
  25953. },
  25954. dicksTailSet: {
  25955. height: math.unit(3, "feet"),
  25956. name: "Dicks (Tail Set)",
  25957. image: {
  25958. source: "./media/characters/koros/dicks-tail-set.svg"
  25959. }
  25960. },
  25961. dickCumming: {
  25962. height: math.unit(7.98, "feet"),
  25963. name: "Dick (Cumming)",
  25964. image: {
  25965. source: "./media/characters/koros/dick-cumming.svg"
  25966. }
  25967. },
  25968. dicksBack: {
  25969. height: math.unit(5.9, "feet"),
  25970. name: "Dicks (Back)",
  25971. image: {
  25972. source: "./media/characters/koros/dicks-back.svg"
  25973. }
  25974. },
  25975. dicksFront: {
  25976. height: math.unit(3.72, "feet"),
  25977. name: "Dicks (Front)",
  25978. image: {
  25979. source: "./media/characters/koros/dicks-front.svg"
  25980. }
  25981. },
  25982. dicksPeeking: {
  25983. height: math.unit(3.0, "feet"),
  25984. name: "Dicks (Peeking)",
  25985. image: {
  25986. source: "./media/characters/koros/dicks-peeking.svg"
  25987. }
  25988. },
  25989. eye: {
  25990. height: math.unit(1.7, "feet"),
  25991. name: "Eye",
  25992. image: {
  25993. source: "./media/characters/koros/eye.svg"
  25994. }
  25995. },
  25996. headFront: {
  25997. height: math.unit(11.69, "feet"),
  25998. name: "Head (Front)",
  25999. image: {
  26000. source: "./media/characters/koros/head-front.svg"
  26001. }
  26002. },
  26003. headSide: {
  26004. height: math.unit(14, "feet"),
  26005. name: "Head (Side)",
  26006. image: {
  26007. source: "./media/characters/koros/head-side.svg"
  26008. }
  26009. },
  26010. leg: {
  26011. height: math.unit(17, "feet"),
  26012. name: "Leg",
  26013. image: {
  26014. source: "./media/characters/koros/leg.svg"
  26015. }
  26016. },
  26017. mawSide: {
  26018. height: math.unit(12.8, "feet"),
  26019. name: "Maw (Side)",
  26020. image: {
  26021. source: "./media/characters/koros/maw-side.svg"
  26022. }
  26023. },
  26024. mawSpitting: {
  26025. height: math.unit(17, "feet"),
  26026. name: "Maw (Spitting)",
  26027. image: {
  26028. source: "./media/characters/koros/maw-spitting.svg"
  26029. }
  26030. },
  26031. slit: {
  26032. height: math.unit(2.8, "feet"),
  26033. name: "Slit",
  26034. image: {
  26035. source: "./media/characters/koros/slit.svg"
  26036. }
  26037. },
  26038. stomach: {
  26039. height: math.unit(6.8, "feet"),
  26040. capacity: math.unit(20, "people"),
  26041. name: "Stomach",
  26042. image: {
  26043. source: "./media/characters/koros/stomach.svg"
  26044. }
  26045. },
  26046. wingspanBottom: {
  26047. height: math.unit(114, "feet"),
  26048. name: "Wingspan (Bottom)",
  26049. image: {
  26050. source: "./media/characters/koros/wingspan-bottom.svg"
  26051. }
  26052. },
  26053. wingspanTop: {
  26054. height: math.unit(104, "feet"),
  26055. name: "Wingspan (Top)",
  26056. image: {
  26057. source: "./media/characters/koros/wingspan-top.svg"
  26058. }
  26059. },
  26060. },
  26061. [
  26062. {
  26063. name: "Normal",
  26064. height: math.unit(31 + 8 / 12, "feet"),
  26065. default: true
  26066. },
  26067. ]
  26068. ))
  26069. characterMakers.push(() => makeCharacter(
  26070. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26071. {
  26072. front: {
  26073. height: math.unit(18 + 5 / 12, "feet"),
  26074. weight: math.unit(3750, "kg"),
  26075. name: "Front",
  26076. image: {
  26077. source: "./media/characters/vexx/front.svg",
  26078. extra: 426 / 396,
  26079. bottom: 31.5 / 458
  26080. }
  26081. },
  26082. maw: {
  26083. height: math.unit(6, "feet"),
  26084. name: "Maw",
  26085. image: {
  26086. source: "./media/characters/vexx/maw.svg"
  26087. }
  26088. },
  26089. },
  26090. [
  26091. {
  26092. name: "Normal",
  26093. height: math.unit(18 + 5 / 12, "feet"),
  26094. default: true
  26095. },
  26096. ]
  26097. ))
  26098. characterMakers.push(() => makeCharacter(
  26099. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26100. {
  26101. front: {
  26102. height: math.unit(17 + 6 / 12, "feet"),
  26103. weight: math.unit(150, "lb"),
  26104. name: "Front",
  26105. image: {
  26106. source: "./media/characters/baadra/front.svg",
  26107. extra: 1694/1553,
  26108. bottom: 179/1873
  26109. }
  26110. },
  26111. frontAlt: {
  26112. height: math.unit(17 + 6 / 12, "feet"),
  26113. weight: math.unit(150, "lb"),
  26114. name: "Front (Alt)",
  26115. image: {
  26116. source: "./media/characters/baadra/front-alt.svg",
  26117. extra: 3137 / 2890,
  26118. bottom: 168.4 / 3305
  26119. }
  26120. },
  26121. back: {
  26122. height: math.unit(17 + 6 / 12, "feet"),
  26123. weight: math.unit(150, "lb"),
  26124. name: "Back",
  26125. image: {
  26126. source: "./media/characters/baadra/back.svg",
  26127. extra: 3142 / 2890,
  26128. bottom: 220 / 3371
  26129. }
  26130. },
  26131. head: {
  26132. height: math.unit(5.45, "feet"),
  26133. name: "Head",
  26134. image: {
  26135. source: "./media/characters/baadra/head.svg"
  26136. }
  26137. },
  26138. headAngry: {
  26139. height: math.unit(4.95, "feet"),
  26140. name: "Head (Angry)",
  26141. image: {
  26142. source: "./media/characters/baadra/head-angry.svg"
  26143. }
  26144. },
  26145. headOpen: {
  26146. height: math.unit(6, "feet"),
  26147. name: "Head (Open)",
  26148. image: {
  26149. source: "./media/characters/baadra/head-open.svg"
  26150. }
  26151. },
  26152. },
  26153. [
  26154. {
  26155. name: "Normal",
  26156. height: math.unit(17 + 6 / 12, "feet"),
  26157. default: true
  26158. },
  26159. ]
  26160. ))
  26161. characterMakers.push(() => makeCharacter(
  26162. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26163. {
  26164. front: {
  26165. height: math.unit(7 + 3 / 12, "feet"),
  26166. weight: math.unit(180, "lb"),
  26167. name: "Front",
  26168. image: {
  26169. source: "./media/characters/juri/front.svg",
  26170. extra: 1401 / 1237,
  26171. bottom: 18.5 / 1418
  26172. }
  26173. },
  26174. side: {
  26175. height: math.unit(7 + 3 / 12, "feet"),
  26176. weight: math.unit(180, "lb"),
  26177. name: "Side",
  26178. image: {
  26179. source: "./media/characters/juri/side.svg",
  26180. extra: 1424 / 1242,
  26181. bottom: 18.5 / 1447
  26182. }
  26183. },
  26184. sitting: {
  26185. height: math.unit(6, "feet"),
  26186. weight: math.unit(180, "lb"),
  26187. name: "Sitting",
  26188. image: {
  26189. source: "./media/characters/juri/sitting.svg",
  26190. extra: 1270 / 1143,
  26191. bottom: 100 / 1343
  26192. }
  26193. },
  26194. back: {
  26195. height: math.unit(7 + 3 / 12, "feet"),
  26196. weight: math.unit(180, "lb"),
  26197. name: "Back",
  26198. image: {
  26199. source: "./media/characters/juri/back.svg",
  26200. extra: 1377 / 1240,
  26201. bottom: 23.7 / 1405
  26202. }
  26203. },
  26204. maw: {
  26205. height: math.unit(2.8, "feet"),
  26206. name: "Maw",
  26207. image: {
  26208. source: "./media/characters/juri/maw.svg"
  26209. }
  26210. },
  26211. stomach: {
  26212. height: math.unit(0.89, "feet"),
  26213. capacity: math.unit(4, "liters"),
  26214. name: "Stomach",
  26215. image: {
  26216. source: "./media/characters/juri/stomach.svg"
  26217. }
  26218. },
  26219. },
  26220. [
  26221. {
  26222. name: "Normal",
  26223. height: math.unit(7 + 3 / 12, "feet"),
  26224. default: true
  26225. },
  26226. ]
  26227. ))
  26228. characterMakers.push(() => makeCharacter(
  26229. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26230. {
  26231. fox: {
  26232. height: math.unit(5 + 6 / 12, "feet"),
  26233. weight: math.unit(140, "lb"),
  26234. name: "Fox",
  26235. image: {
  26236. source: "./media/characters/maxene-sita/fox.svg",
  26237. extra: 146 / 138,
  26238. bottom: 2.1 / 148.19
  26239. }
  26240. },
  26241. foxLaying: {
  26242. height: math.unit(1.70, "feet"),
  26243. weight: math.unit(140, "lb"),
  26244. name: "Fox (Laying)",
  26245. image: {
  26246. source: "./media/characters/maxene-sita/fox-laying.svg",
  26247. extra: 910 / 572,
  26248. bottom: 71 / 981
  26249. }
  26250. },
  26251. kitsune: {
  26252. height: math.unit(10, "feet"),
  26253. weight: math.unit(800, "lb"),
  26254. name: "Kitsune",
  26255. image: {
  26256. source: "./media/characters/maxene-sita/kitsune.svg",
  26257. extra: 185 / 176,
  26258. bottom: 4.7 / 189.9
  26259. }
  26260. },
  26261. hellhound: {
  26262. height: math.unit(10, "feet"),
  26263. weight: math.unit(700, "lb"),
  26264. name: "Hellhound",
  26265. image: {
  26266. source: "./media/characters/maxene-sita/hellhound.svg",
  26267. extra: 1600 / 1545,
  26268. bottom: 81 / 1681
  26269. }
  26270. },
  26271. },
  26272. [
  26273. {
  26274. name: "Normal",
  26275. height: math.unit(5 + 6 / 12, "feet"),
  26276. default: true
  26277. },
  26278. ]
  26279. ))
  26280. characterMakers.push(() => makeCharacter(
  26281. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26282. {
  26283. front: {
  26284. height: math.unit(3 + 4 / 12, "feet"),
  26285. weight: math.unit(70, "lb"),
  26286. name: "Front",
  26287. image: {
  26288. source: "./media/characters/maia/front.svg",
  26289. extra: 227 / 219.5,
  26290. bottom: 40 / 267
  26291. }
  26292. },
  26293. back: {
  26294. height: math.unit(3 + 4 / 12, "feet"),
  26295. weight: math.unit(70, "lb"),
  26296. name: "Back",
  26297. image: {
  26298. source: "./media/characters/maia/back.svg",
  26299. extra: 237 / 225
  26300. }
  26301. },
  26302. },
  26303. [
  26304. {
  26305. name: "Normal",
  26306. height: math.unit(3 + 4 / 12, "feet"),
  26307. default: true
  26308. },
  26309. ]
  26310. ))
  26311. characterMakers.push(() => makeCharacter(
  26312. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26313. {
  26314. front: {
  26315. height: math.unit(5 + 10 / 12, "feet"),
  26316. weight: math.unit(197, "lb"),
  26317. name: "Front",
  26318. image: {
  26319. source: "./media/characters/jabaro/front.svg",
  26320. extra: 225 / 216,
  26321. bottom: 5.06 / 230
  26322. }
  26323. },
  26324. back: {
  26325. height: math.unit(5 + 10 / 12, "feet"),
  26326. weight: math.unit(197, "lb"),
  26327. name: "Back",
  26328. image: {
  26329. source: "./media/characters/jabaro/back.svg",
  26330. extra: 225 / 219,
  26331. bottom: 1.9 / 227
  26332. }
  26333. },
  26334. },
  26335. [
  26336. {
  26337. name: "Normal",
  26338. height: math.unit(5 + 10 / 12, "feet"),
  26339. default: true
  26340. },
  26341. ]
  26342. ))
  26343. characterMakers.push(() => makeCharacter(
  26344. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26345. {
  26346. front: {
  26347. height: math.unit(5 + 8 / 12, "feet"),
  26348. weight: math.unit(139, "lb"),
  26349. name: "Front",
  26350. image: {
  26351. source: "./media/characters/risa/front.svg",
  26352. extra: 270 / 260,
  26353. bottom: 11.2 / 282
  26354. }
  26355. },
  26356. back: {
  26357. height: math.unit(5 + 8 / 12, "feet"),
  26358. weight: math.unit(139, "lb"),
  26359. name: "Back",
  26360. image: {
  26361. source: "./media/characters/risa/back.svg",
  26362. extra: 264 / 255,
  26363. bottom: 4 / 268
  26364. }
  26365. },
  26366. },
  26367. [
  26368. {
  26369. name: "Normal",
  26370. height: math.unit(5 + 8 / 12, "feet"),
  26371. default: true
  26372. },
  26373. ]
  26374. ))
  26375. characterMakers.push(() => makeCharacter(
  26376. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26377. {
  26378. front: {
  26379. height: math.unit(2 + 11 / 12, "feet"),
  26380. weight: math.unit(30, "lb"),
  26381. name: "Front",
  26382. image: {
  26383. source: "./media/characters/weatley/front.svg",
  26384. bottom: 10.7 / 414,
  26385. extra: 403.5 / 362
  26386. }
  26387. },
  26388. back: {
  26389. height: math.unit(2 + 11 / 12, "feet"),
  26390. weight: math.unit(30, "lb"),
  26391. name: "Back",
  26392. image: {
  26393. source: "./media/characters/weatley/back.svg",
  26394. bottom: 10.7 / 414,
  26395. extra: 403.5 / 362
  26396. }
  26397. },
  26398. },
  26399. [
  26400. {
  26401. name: "Normal",
  26402. height: math.unit(2 + 11 / 12, "feet"),
  26403. default: true
  26404. },
  26405. ]
  26406. ))
  26407. characterMakers.push(() => makeCharacter(
  26408. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26409. {
  26410. front: {
  26411. height: math.unit(5 + 2 / 12, "feet"),
  26412. weight: math.unit(50, "kg"),
  26413. name: "Front",
  26414. image: {
  26415. source: "./media/characters/mercury-crescent/front.svg",
  26416. extra: 1088 / 1033,
  26417. bottom: 18.9 / 1109
  26418. }
  26419. },
  26420. },
  26421. [
  26422. {
  26423. name: "Normal",
  26424. height: math.unit(5 + 2 / 12, "feet"),
  26425. default: true
  26426. },
  26427. ]
  26428. ))
  26429. characterMakers.push(() => makeCharacter(
  26430. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26431. {
  26432. front: {
  26433. height: math.unit(2, "feet"),
  26434. weight: math.unit(15, "kg"),
  26435. name: "Front",
  26436. image: {
  26437. source: "./media/characters/diamond-jones/front.svg",
  26438. extra: 727/723,
  26439. bottom: 46/773
  26440. }
  26441. },
  26442. },
  26443. [
  26444. {
  26445. name: "Normal",
  26446. height: math.unit(2, "feet"),
  26447. default: true
  26448. },
  26449. ]
  26450. ))
  26451. characterMakers.push(() => makeCharacter(
  26452. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26453. {
  26454. front: {
  26455. height: math.unit(3, "feet"),
  26456. weight: math.unit(30, "kg"),
  26457. name: "Front",
  26458. image: {
  26459. source: "./media/characters/sweet-bit/front.svg",
  26460. extra: 675 / 567,
  26461. bottom: 27.7 / 703
  26462. }
  26463. },
  26464. },
  26465. [
  26466. {
  26467. name: "Normal",
  26468. height: math.unit(3, "feet"),
  26469. default: true
  26470. },
  26471. ]
  26472. ))
  26473. characterMakers.push(() => makeCharacter(
  26474. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26475. {
  26476. side: {
  26477. height: math.unit(9.178, "feet"),
  26478. weight: math.unit(500, "lb"),
  26479. name: "Side",
  26480. image: {
  26481. source: "./media/characters/umbrazen/side.svg",
  26482. extra: 1730 / 1473,
  26483. bottom: 34.6 / 1765
  26484. }
  26485. },
  26486. },
  26487. [
  26488. {
  26489. name: "Normal",
  26490. height: math.unit(9.178, "feet"),
  26491. default: true
  26492. },
  26493. ]
  26494. ))
  26495. characterMakers.push(() => makeCharacter(
  26496. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26497. {
  26498. front: {
  26499. height: math.unit(10, "feet"),
  26500. weight: math.unit(750, "lb"),
  26501. name: "Front",
  26502. image: {
  26503. source: "./media/characters/arlist/front.svg",
  26504. extra: 961 / 778,
  26505. bottom: 6.2 / 986
  26506. }
  26507. },
  26508. },
  26509. [
  26510. {
  26511. name: "Normal",
  26512. height: math.unit(10, "feet"),
  26513. default: true
  26514. },
  26515. ]
  26516. ))
  26517. characterMakers.push(() => makeCharacter(
  26518. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26519. {
  26520. front: {
  26521. height: math.unit(5 + 1 / 12, "feet"),
  26522. weight: math.unit(110, "lb"),
  26523. name: "Front",
  26524. image: {
  26525. source: "./media/characters/aradel/front.svg",
  26526. extra: 324 / 303,
  26527. bottom: 3.6 / 329.4
  26528. }
  26529. },
  26530. },
  26531. [
  26532. {
  26533. name: "Normal",
  26534. height: math.unit(5 + 1 / 12, "feet"),
  26535. default: true
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26541. {
  26542. front: {
  26543. height: math.unit(3 + 8 / 12, "feet"),
  26544. weight: math.unit(50, "lb"),
  26545. name: "Front",
  26546. image: {
  26547. source: "./media/characters/serryn/front.svg",
  26548. extra: 1792 / 1656,
  26549. bottom: 43.5 / 1840
  26550. }
  26551. },
  26552. },
  26553. [
  26554. {
  26555. name: "Normal",
  26556. height: math.unit(3 + 8 / 12, "feet"),
  26557. default: true
  26558. },
  26559. ]
  26560. ))
  26561. characterMakers.push(() => makeCharacter(
  26562. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26563. {
  26564. front: {
  26565. height: math.unit(7 + 10 / 12, "feet"),
  26566. weight: math.unit(255, "lb"),
  26567. name: "Front",
  26568. image: {
  26569. source: "./media/characters/xavier-thyme/front.svg",
  26570. extra: 3733 / 3642,
  26571. bottom: 131 / 3869
  26572. }
  26573. },
  26574. frontRaven: {
  26575. height: math.unit(7 + 10 / 12, "feet"),
  26576. weight: math.unit(255, "lb"),
  26577. name: "Front (Raven)",
  26578. image: {
  26579. source: "./media/characters/xavier-thyme/front-raven.svg",
  26580. extra: 4385 / 3642,
  26581. bottom: 131 / 4517
  26582. }
  26583. },
  26584. },
  26585. [
  26586. {
  26587. name: "Normal",
  26588. height: math.unit(7 + 10 / 12, "feet"),
  26589. default: true
  26590. },
  26591. ]
  26592. ))
  26593. characterMakers.push(() => makeCharacter(
  26594. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26595. {
  26596. front: {
  26597. height: math.unit(1.6, "m"),
  26598. weight: math.unit(50, "kg"),
  26599. name: "Front",
  26600. image: {
  26601. source: "./media/characters/kiki/front.svg",
  26602. extra: 4682 / 3610,
  26603. bottom: 115 / 4777
  26604. }
  26605. },
  26606. },
  26607. [
  26608. {
  26609. name: "Normal",
  26610. height: math.unit(1.6, "meters"),
  26611. default: true
  26612. },
  26613. ]
  26614. ))
  26615. characterMakers.push(() => makeCharacter(
  26616. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26617. {
  26618. front: {
  26619. height: math.unit(50, "m"),
  26620. weight: math.unit(500, "tonnes"),
  26621. name: "Front",
  26622. image: {
  26623. source: "./media/characters/ryoko/front.svg",
  26624. extra: 4632 / 3926,
  26625. bottom: 193 / 4823
  26626. }
  26627. },
  26628. },
  26629. [
  26630. {
  26631. name: "Normal",
  26632. height: math.unit(50, "meters"),
  26633. default: true
  26634. },
  26635. ]
  26636. ))
  26637. characterMakers.push(() => makeCharacter(
  26638. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26639. {
  26640. front: {
  26641. height: math.unit(30, "m"),
  26642. weight: math.unit(22, "tonnes"),
  26643. name: "Front",
  26644. image: {
  26645. source: "./media/characters/elio/front.svg",
  26646. extra: 4582 / 3720,
  26647. bottom: 236 / 4828
  26648. }
  26649. },
  26650. },
  26651. [
  26652. {
  26653. name: "Normal",
  26654. height: math.unit(30, "meters"),
  26655. default: true
  26656. },
  26657. ]
  26658. ))
  26659. characterMakers.push(() => makeCharacter(
  26660. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26661. {
  26662. front: {
  26663. height: math.unit(6 + 3 / 12, "feet"),
  26664. weight: math.unit(120, "lb"),
  26665. name: "Front",
  26666. image: {
  26667. source: "./media/characters/azura/front.svg",
  26668. extra: 1149 / 1135,
  26669. bottom: 45 / 1194
  26670. }
  26671. },
  26672. frontClothed: {
  26673. height: math.unit(6 + 3 / 12, "feet"),
  26674. weight: math.unit(120, "lb"),
  26675. name: "Front (Clothed)",
  26676. image: {
  26677. source: "./media/characters/azura/front-clothed.svg",
  26678. extra: 1149 / 1135,
  26679. bottom: 45 / 1194
  26680. }
  26681. },
  26682. },
  26683. [
  26684. {
  26685. name: "Normal",
  26686. height: math.unit(6 + 3 / 12, "feet"),
  26687. default: true
  26688. },
  26689. {
  26690. name: "Macro",
  26691. height: math.unit(20 + 6 / 12, "feet")
  26692. },
  26693. {
  26694. name: "Megamacro",
  26695. height: math.unit(12, "miles")
  26696. },
  26697. {
  26698. name: "Gigamacro",
  26699. height: math.unit(10000, "miles")
  26700. },
  26701. {
  26702. name: "Teramacro",
  26703. height: math.unit(900000, "miles")
  26704. },
  26705. ]
  26706. ))
  26707. characterMakers.push(() => makeCharacter(
  26708. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26709. {
  26710. front: {
  26711. height: math.unit(12, "feet"),
  26712. weight: math.unit(1, "ton"),
  26713. capacity: math.unit(660000, "gallons"),
  26714. name: "Front",
  26715. image: {
  26716. source: "./media/characters/zeus/front.svg",
  26717. extra: 5005 / 4717,
  26718. bottom: 363 / 5388
  26719. }
  26720. },
  26721. },
  26722. [
  26723. {
  26724. name: "Normal",
  26725. height: math.unit(12, "feet")
  26726. },
  26727. {
  26728. name: "Preferred Size",
  26729. height: math.unit(0.5, "miles"),
  26730. default: true
  26731. },
  26732. {
  26733. name: "Giga Horse",
  26734. height: math.unit(300, "miles")
  26735. },
  26736. {
  26737. name: "Riding Planets",
  26738. height: math.unit(30, "megameters")
  26739. },
  26740. {
  26741. name: "Cosmic Giant",
  26742. height: math.unit(3, "zettameters")
  26743. },
  26744. {
  26745. name: "Breeding God",
  26746. height: math.unit(9.92e22, "yottameters")
  26747. },
  26748. ]
  26749. ))
  26750. characterMakers.push(() => makeCharacter(
  26751. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26752. {
  26753. side: {
  26754. height: math.unit(9, "feet"),
  26755. weight: math.unit(1500, "kg"),
  26756. name: "Side",
  26757. image: {
  26758. source: "./media/characters/fang/side.svg",
  26759. extra: 924 / 866,
  26760. bottom: 47.5 / 972.3
  26761. }
  26762. },
  26763. },
  26764. [
  26765. {
  26766. name: "Normal",
  26767. height: math.unit(9, "feet"),
  26768. default: true
  26769. },
  26770. {
  26771. name: "Macro",
  26772. height: math.unit(75 + 6 / 12, "feet")
  26773. },
  26774. {
  26775. name: "Teramacro",
  26776. height: math.unit(50000, "miles")
  26777. },
  26778. ]
  26779. ))
  26780. characterMakers.push(() => makeCharacter(
  26781. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26782. {
  26783. front: {
  26784. height: math.unit(10, "feet"),
  26785. weight: math.unit(2, "tons"),
  26786. name: "Front",
  26787. image: {
  26788. source: "./media/characters/rekhit/front.svg",
  26789. extra: 2796 / 2590,
  26790. bottom: 225 / 3022
  26791. }
  26792. },
  26793. },
  26794. [
  26795. {
  26796. name: "Normal",
  26797. height: math.unit(10, "feet"),
  26798. default: true
  26799. },
  26800. {
  26801. name: "Macro",
  26802. height: math.unit(500, "feet")
  26803. },
  26804. ]
  26805. ))
  26806. characterMakers.push(() => makeCharacter(
  26807. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26808. {
  26809. front: {
  26810. height: math.unit(7 + 6.451 / 12, "feet"),
  26811. weight: math.unit(310, "lb"),
  26812. name: "Front",
  26813. image: {
  26814. source: "./media/characters/dahlia-verrick/front.svg",
  26815. extra: 1488 / 1365,
  26816. bottom: 6.2 / 1495
  26817. }
  26818. },
  26819. back: {
  26820. height: math.unit(7 + 6.451 / 12, "feet"),
  26821. weight: math.unit(310, "lb"),
  26822. name: "Back",
  26823. image: {
  26824. source: "./media/characters/dahlia-verrick/back.svg",
  26825. extra: 1472 / 1351,
  26826. bottom: 5.28 / 1477
  26827. }
  26828. },
  26829. frontBusiness: {
  26830. height: math.unit(7 + 6.451 / 12, "feet"),
  26831. weight: math.unit(200, "lb"),
  26832. name: "Front (Business)",
  26833. image: {
  26834. source: "./media/characters/dahlia-verrick/front-business.svg",
  26835. extra: 1478 / 1381,
  26836. bottom: 5.5 / 1484
  26837. }
  26838. },
  26839. frontCasual: {
  26840. height: math.unit(7 + 6.451 / 12, "feet"),
  26841. weight: math.unit(200, "lb"),
  26842. name: "Front (Casual)",
  26843. image: {
  26844. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26845. extra: 1478 / 1381,
  26846. bottom: 5.5 / 1484
  26847. }
  26848. },
  26849. },
  26850. [
  26851. {
  26852. name: "Travel-Sized",
  26853. height: math.unit(7.45, "inches")
  26854. },
  26855. {
  26856. name: "Normal",
  26857. height: math.unit(7 + 6.451 / 12, "feet"),
  26858. default: true
  26859. },
  26860. {
  26861. name: "Hitting the Town",
  26862. height: math.unit(37 + 8 / 12, "feet")
  26863. },
  26864. {
  26865. name: "Stomp in the Suburbs",
  26866. height: math.unit(964 + 9.728 / 12, "feet")
  26867. },
  26868. {
  26869. name: "Sit on the City",
  26870. height: math.unit(61747 + 10.592 / 12, "feet")
  26871. },
  26872. {
  26873. name: "Glomp the Globe",
  26874. height: math.unit(252919327 + 4.832 / 12, "feet")
  26875. },
  26876. ]
  26877. ))
  26878. characterMakers.push(() => makeCharacter(
  26879. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26880. {
  26881. front: {
  26882. height: math.unit(6 + 4 / 12, "feet"),
  26883. weight: math.unit(320, "lb"),
  26884. name: "Front",
  26885. image: {
  26886. source: "./media/characters/balina-mahigan/front.svg",
  26887. extra: 447 / 428,
  26888. bottom: 18 / 466
  26889. }
  26890. },
  26891. back: {
  26892. height: math.unit(6 + 4 / 12, "feet"),
  26893. weight: math.unit(320, "lb"),
  26894. name: "Back",
  26895. image: {
  26896. source: "./media/characters/balina-mahigan/back.svg",
  26897. extra: 445 / 428,
  26898. bottom: 4.07 / 448
  26899. }
  26900. },
  26901. arm: {
  26902. height: math.unit(1.88, "feet"),
  26903. name: "Arm",
  26904. image: {
  26905. source: "./media/characters/balina-mahigan/arm.svg"
  26906. }
  26907. },
  26908. backPort: {
  26909. height: math.unit(0.685, "feet"),
  26910. name: "Back Port",
  26911. image: {
  26912. source: "./media/characters/balina-mahigan/back-port.svg"
  26913. }
  26914. },
  26915. hoofpaw: {
  26916. height: math.unit(1.41, "feet"),
  26917. name: "Hoofpaw",
  26918. image: {
  26919. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26920. }
  26921. },
  26922. leftHandBack: {
  26923. height: math.unit(0.938, "feet"),
  26924. name: "Left Hand (Back)",
  26925. image: {
  26926. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26927. }
  26928. },
  26929. leftHandFront: {
  26930. height: math.unit(0.938, "feet"),
  26931. name: "Left Hand (Front)",
  26932. image: {
  26933. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26934. }
  26935. },
  26936. rightHandBack: {
  26937. height: math.unit(0.95, "feet"),
  26938. name: "Right Hand (Back)",
  26939. image: {
  26940. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26941. }
  26942. },
  26943. rightHandFront: {
  26944. height: math.unit(0.95, "feet"),
  26945. name: "Right Hand (Front)",
  26946. image: {
  26947. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26948. }
  26949. },
  26950. },
  26951. [
  26952. {
  26953. name: "Normal",
  26954. height: math.unit(6 + 4 / 12, "feet"),
  26955. default: true
  26956. },
  26957. ]
  26958. ))
  26959. characterMakers.push(() => makeCharacter(
  26960. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26961. {
  26962. front: {
  26963. height: math.unit(6, "feet"),
  26964. weight: math.unit(320, "lb"),
  26965. name: "Front",
  26966. image: {
  26967. source: "./media/characters/balina-mejeri/front.svg",
  26968. extra: 517 / 488,
  26969. bottom: 44.2 / 561
  26970. }
  26971. },
  26972. },
  26973. [
  26974. {
  26975. name: "Normal",
  26976. height: math.unit(6 + 4 / 12, "feet")
  26977. },
  26978. {
  26979. name: "Business",
  26980. height: math.unit(155, "feet"),
  26981. default: true
  26982. },
  26983. ]
  26984. ))
  26985. characterMakers.push(() => makeCharacter(
  26986. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26987. {
  26988. kneeling: {
  26989. height: math.unit(6 + 4 / 12, "feet"),
  26990. weight: math.unit(300 * 20, "lb"),
  26991. name: "Kneeling",
  26992. image: {
  26993. source: "./media/characters/balbarian/kneeling.svg",
  26994. extra: 922 / 862,
  26995. bottom: 42.4 / 965
  26996. }
  26997. },
  26998. },
  26999. [
  27000. {
  27001. name: "Normal",
  27002. height: math.unit(6 + 4 / 12, "feet")
  27003. },
  27004. {
  27005. name: "Treasured",
  27006. height: math.unit(18 + 9 / 12, "feet"),
  27007. default: true
  27008. },
  27009. {
  27010. name: "Macro",
  27011. height: math.unit(900, "feet")
  27012. },
  27013. ]
  27014. ))
  27015. characterMakers.push(() => makeCharacter(
  27016. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27017. {
  27018. front: {
  27019. height: math.unit(6 + 4 / 12, "feet"),
  27020. weight: math.unit(325, "lb"),
  27021. name: "Front",
  27022. image: {
  27023. source: "./media/characters/balina-amarini/front.svg",
  27024. extra: 415 / 403,
  27025. bottom: 19 / 433.4
  27026. }
  27027. },
  27028. back: {
  27029. height: math.unit(6 + 4 / 12, "feet"),
  27030. weight: math.unit(325, "lb"),
  27031. name: "Back",
  27032. image: {
  27033. source: "./media/characters/balina-amarini/back.svg",
  27034. extra: 415 / 403,
  27035. bottom: 13.5 / 432
  27036. }
  27037. },
  27038. overdrive: {
  27039. height: math.unit(6 + 4 / 12, "feet"),
  27040. weight: math.unit(400, "lb"),
  27041. name: "Overdrive",
  27042. image: {
  27043. source: "./media/characters/balina-amarini/overdrive.svg",
  27044. extra: 269 / 259,
  27045. bottom: 12 / 282
  27046. }
  27047. },
  27048. },
  27049. [
  27050. {
  27051. name: "Boom",
  27052. height: math.unit(9 + 10 / 12, "feet"),
  27053. default: true
  27054. },
  27055. {
  27056. name: "Macro",
  27057. height: math.unit(280, "feet")
  27058. },
  27059. ]
  27060. ))
  27061. characterMakers.push(() => makeCharacter(
  27062. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27063. {
  27064. goddess: {
  27065. height: math.unit(600, "feet"),
  27066. weight: math.unit(2000000, "tons"),
  27067. name: "Goddess",
  27068. image: {
  27069. source: "./media/characters/lady-kubwa/goddess.svg",
  27070. extra: 1240.5 / 1223,
  27071. bottom: 22 / 1263
  27072. }
  27073. },
  27074. goddesser: {
  27075. height: math.unit(900, "feet"),
  27076. weight: math.unit(20000000, "lb"),
  27077. name: "Goddess-er",
  27078. image: {
  27079. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27080. extra: 899 / 888,
  27081. bottom: 12.6 / 912
  27082. }
  27083. },
  27084. },
  27085. [
  27086. {
  27087. name: "Macro",
  27088. height: math.unit(600, "feet"),
  27089. default: true
  27090. },
  27091. {
  27092. name: "Megamacro",
  27093. height: math.unit(250, "miles")
  27094. },
  27095. ]
  27096. ))
  27097. characterMakers.push(() => makeCharacter(
  27098. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27099. {
  27100. front: {
  27101. height: math.unit(7 + 7 / 12, "feet"),
  27102. weight: math.unit(250, "lb"),
  27103. name: "Front",
  27104. image: {
  27105. source: "./media/characters/tala-grovehorn/front.svg",
  27106. extra: 2636 / 2525,
  27107. bottom: 147 / 2781
  27108. }
  27109. },
  27110. back: {
  27111. height: math.unit(7 + 7 / 12, "feet"),
  27112. weight: math.unit(250, "lb"),
  27113. name: "Back",
  27114. image: {
  27115. source: "./media/characters/tala-grovehorn/back.svg",
  27116. extra: 2635 / 2539,
  27117. bottom: 100 / 2732.8
  27118. }
  27119. },
  27120. mouth: {
  27121. height: math.unit(1.15, "feet"),
  27122. name: "Mouth",
  27123. image: {
  27124. source: "./media/characters/tala-grovehorn/mouth.svg"
  27125. }
  27126. },
  27127. dick: {
  27128. height: math.unit(2.36, "feet"),
  27129. name: "Dick",
  27130. image: {
  27131. source: "./media/characters/tala-grovehorn/dick.svg"
  27132. }
  27133. },
  27134. slit: {
  27135. height: math.unit(0.61, "feet"),
  27136. name: "Slit",
  27137. image: {
  27138. source: "./media/characters/tala-grovehorn/slit.svg"
  27139. }
  27140. },
  27141. },
  27142. [
  27143. ]
  27144. ))
  27145. characterMakers.push(() => makeCharacter(
  27146. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27147. {
  27148. front: {
  27149. height: math.unit(7 + 7 / 12, "feet"),
  27150. weight: math.unit(225, "lb"),
  27151. name: "Front",
  27152. image: {
  27153. source: "./media/characters/epona/front.svg",
  27154. extra: 2445 / 2290,
  27155. bottom: 251 / 2696
  27156. }
  27157. },
  27158. back: {
  27159. height: math.unit(7 + 7 / 12, "feet"),
  27160. weight: math.unit(225, "lb"),
  27161. name: "Back",
  27162. image: {
  27163. source: "./media/characters/epona/back.svg",
  27164. extra: 2546 / 2408,
  27165. bottom: 44 / 2589
  27166. }
  27167. },
  27168. genitals: {
  27169. height: math.unit(1.5, "feet"),
  27170. name: "Genitals",
  27171. image: {
  27172. source: "./media/characters/epona/genitals.svg"
  27173. }
  27174. },
  27175. },
  27176. [
  27177. {
  27178. name: "Normal",
  27179. height: math.unit(7 + 7 / 12, "feet"),
  27180. default: true
  27181. },
  27182. ]
  27183. ))
  27184. characterMakers.push(() => makeCharacter(
  27185. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27186. {
  27187. front: {
  27188. height: math.unit(7, "feet"),
  27189. weight: math.unit(518, "lb"),
  27190. name: "Front",
  27191. image: {
  27192. source: "./media/characters/avia-bloodbourn/front.svg",
  27193. extra: 1466 / 1350,
  27194. bottom: 65 / 1527
  27195. }
  27196. },
  27197. },
  27198. [
  27199. ]
  27200. ))
  27201. characterMakers.push(() => makeCharacter(
  27202. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27203. {
  27204. front: {
  27205. height: math.unit(9.35, "feet"),
  27206. weight: math.unit(600, "lb"),
  27207. name: "Front",
  27208. image: {
  27209. source: "./media/characters/amera/front.svg",
  27210. extra: 891 / 818,
  27211. bottom: 30 / 922.7
  27212. }
  27213. },
  27214. back: {
  27215. height: math.unit(9.35, "feet"),
  27216. weight: math.unit(600, "lb"),
  27217. name: "Back",
  27218. image: {
  27219. source: "./media/characters/amera/back.svg",
  27220. extra: 876 / 824,
  27221. bottom: 6.8 / 884
  27222. }
  27223. },
  27224. dick: {
  27225. height: math.unit(2.14, "feet"),
  27226. name: "Dick",
  27227. image: {
  27228. source: "./media/characters/amera/dick.svg"
  27229. }
  27230. },
  27231. },
  27232. [
  27233. {
  27234. name: "Normal",
  27235. height: math.unit(9.35, "feet"),
  27236. default: true
  27237. },
  27238. ]
  27239. ))
  27240. characterMakers.push(() => makeCharacter(
  27241. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27242. {
  27243. kneeling: {
  27244. height: math.unit(3 + 4 / 12, "feet"),
  27245. weight: math.unit(90, "lb"),
  27246. name: "Kneeling",
  27247. image: {
  27248. source: "./media/characters/rosewen/kneeling.svg",
  27249. extra: 1835 / 1571,
  27250. bottom: 27.7 / 1862
  27251. }
  27252. },
  27253. },
  27254. [
  27255. {
  27256. name: "Normal",
  27257. height: math.unit(3 + 4 / 12, "feet"),
  27258. default: true
  27259. },
  27260. ]
  27261. ))
  27262. characterMakers.push(() => makeCharacter(
  27263. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27264. {
  27265. front: {
  27266. height: math.unit(5 + 10 / 12, "feet"),
  27267. weight: math.unit(200, "lb"),
  27268. name: "Front",
  27269. image: {
  27270. source: "./media/characters/sabah/front.svg",
  27271. extra: 849 / 763,
  27272. bottom: 33.9 / 881
  27273. }
  27274. },
  27275. },
  27276. [
  27277. {
  27278. name: "Normal",
  27279. height: math.unit(5 + 10 / 12, "feet"),
  27280. default: true
  27281. },
  27282. ]
  27283. ))
  27284. characterMakers.push(() => makeCharacter(
  27285. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27286. {
  27287. front: {
  27288. height: math.unit(3 + 5 / 12, "feet"),
  27289. weight: math.unit(40, "kg"),
  27290. name: "Front",
  27291. image: {
  27292. source: "./media/characters/purple-flame/front.svg",
  27293. extra: 1577 / 1412,
  27294. bottom: 97 / 1694
  27295. }
  27296. },
  27297. frontDressed: {
  27298. height: math.unit(3 + 5 / 12, "feet"),
  27299. weight: math.unit(40, "kg"),
  27300. name: "Front (Dressed)",
  27301. image: {
  27302. source: "./media/characters/purple-flame/front-dressed.svg",
  27303. extra: 1577 / 1412,
  27304. bottom: 97 / 1694
  27305. }
  27306. },
  27307. headphones: {
  27308. height: math.unit(0.85, "feet"),
  27309. name: "Headphones",
  27310. image: {
  27311. source: "./media/characters/purple-flame/headphones.svg"
  27312. }
  27313. },
  27314. },
  27315. [
  27316. {
  27317. name: "Really Small",
  27318. height: math.unit(5, "cm")
  27319. },
  27320. {
  27321. name: "Micro",
  27322. height: math.unit(1 + 5 / 12, "feet")
  27323. },
  27324. {
  27325. name: "Normal",
  27326. height: math.unit(3 + 5 / 12, "feet"),
  27327. default: true
  27328. },
  27329. {
  27330. name: "Minimacro",
  27331. height: math.unit(125, "feet")
  27332. },
  27333. {
  27334. name: "Macro",
  27335. height: math.unit(0.5, "miles")
  27336. },
  27337. {
  27338. name: "Megamacro",
  27339. height: math.unit(50, "miles")
  27340. },
  27341. {
  27342. name: "Gigantic",
  27343. height: math.unit(750, "miles")
  27344. },
  27345. {
  27346. name: "Planetary",
  27347. height: math.unit(15000, "miles")
  27348. },
  27349. ]
  27350. ))
  27351. characterMakers.push(() => makeCharacter(
  27352. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27353. {
  27354. front: {
  27355. height: math.unit(14, "feet"),
  27356. weight: math.unit(959, "lb"),
  27357. name: "Front",
  27358. image: {
  27359. source: "./media/characters/arsenal/front.svg",
  27360. extra: 2357 / 2157,
  27361. bottom: 93 / 2458
  27362. }
  27363. },
  27364. },
  27365. [
  27366. {
  27367. name: "Normal",
  27368. height: math.unit(14, "feet"),
  27369. default: true
  27370. },
  27371. ]
  27372. ))
  27373. characterMakers.push(() => makeCharacter(
  27374. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27375. {
  27376. front: {
  27377. height: math.unit(6, "feet"),
  27378. weight: math.unit(150, "lb"),
  27379. name: "Front",
  27380. image: {
  27381. source: "./media/characters/adira/front.svg",
  27382. extra: 1078 / 1029,
  27383. bottom: 87 / 1166
  27384. }
  27385. },
  27386. },
  27387. [
  27388. {
  27389. name: "Micro",
  27390. height: math.unit(4, "inches"),
  27391. default: true
  27392. },
  27393. {
  27394. name: "Macro",
  27395. height: math.unit(50, "feet")
  27396. },
  27397. ]
  27398. ))
  27399. characterMakers.push(() => makeCharacter(
  27400. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27401. {
  27402. front: {
  27403. height: math.unit(16, "feet"),
  27404. weight: math.unit(1000, "lb"),
  27405. name: "Front",
  27406. image: {
  27407. source: "./media/characters/grim/front.svg",
  27408. extra: 622 / 614,
  27409. bottom: 18.1 / 642
  27410. }
  27411. },
  27412. back: {
  27413. height: math.unit(16, "feet"),
  27414. weight: math.unit(1000, "lb"),
  27415. name: "Back",
  27416. image: {
  27417. source: "./media/characters/grim/back.svg",
  27418. extra: 610.6 / 602,
  27419. bottom: 40.8 / 652
  27420. }
  27421. },
  27422. hunched: {
  27423. height: math.unit(9.75, "feet"),
  27424. weight: math.unit(1000, "lb"),
  27425. name: "Hunched",
  27426. image: {
  27427. source: "./media/characters/grim/hunched.svg",
  27428. extra: 304 / 297,
  27429. bottom: 35.4 / 394
  27430. }
  27431. },
  27432. },
  27433. [
  27434. {
  27435. name: "Normal",
  27436. height: math.unit(16, "feet"),
  27437. default: true
  27438. },
  27439. ]
  27440. ))
  27441. characterMakers.push(() => makeCharacter(
  27442. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27443. {
  27444. front: {
  27445. height: math.unit(2.3, "meters"),
  27446. weight: math.unit(300, "lb"),
  27447. name: "Front",
  27448. image: {
  27449. source: "./media/characters/sinja/front-sfw.svg",
  27450. extra: 1393 / 1294,
  27451. bottom: 70 / 1463
  27452. }
  27453. },
  27454. frontNsfw: {
  27455. height: math.unit(2.3, "meters"),
  27456. weight: math.unit(300, "lb"),
  27457. name: "Front (NSFW)",
  27458. image: {
  27459. source: "./media/characters/sinja/front-nsfw.svg",
  27460. extra: 1393 / 1294,
  27461. bottom: 70 / 1463
  27462. }
  27463. },
  27464. back: {
  27465. height: math.unit(2.3, "meters"),
  27466. weight: math.unit(300, "lb"),
  27467. name: "Back",
  27468. image: {
  27469. source: "./media/characters/sinja/back.svg",
  27470. extra: 1393 / 1294,
  27471. bottom: 70 / 1463
  27472. }
  27473. },
  27474. head: {
  27475. height: math.unit(1.771, "feet"),
  27476. name: "Head",
  27477. image: {
  27478. source: "./media/characters/sinja/head.svg"
  27479. }
  27480. },
  27481. slit: {
  27482. height: math.unit(0.8, "feet"),
  27483. name: "Slit",
  27484. image: {
  27485. source: "./media/characters/sinja/slit.svg"
  27486. }
  27487. },
  27488. },
  27489. [
  27490. {
  27491. name: "Normal",
  27492. height: math.unit(2.3, "meters")
  27493. },
  27494. {
  27495. name: "Macro",
  27496. height: math.unit(91, "meters"),
  27497. default: true
  27498. },
  27499. {
  27500. name: "Megamacro",
  27501. height: math.unit(91440, "meters")
  27502. },
  27503. {
  27504. name: "Gigamacro",
  27505. height: math.unit(60960000, "meters")
  27506. },
  27507. {
  27508. name: "Teramacro",
  27509. height: math.unit(9144000000, "meters")
  27510. },
  27511. ]
  27512. ))
  27513. characterMakers.push(() => makeCharacter(
  27514. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27515. {
  27516. front: {
  27517. height: math.unit(1.7, "meters"),
  27518. weight: math.unit(130, "lb"),
  27519. name: "Front",
  27520. image: {
  27521. source: "./media/characters/kyu/front.svg",
  27522. extra: 415 / 395,
  27523. bottom: 5 / 420
  27524. }
  27525. },
  27526. head: {
  27527. height: math.unit(1.75, "feet"),
  27528. name: "Head",
  27529. image: {
  27530. source: "./media/characters/kyu/head.svg"
  27531. }
  27532. },
  27533. foot: {
  27534. height: math.unit(0.81, "feet"),
  27535. name: "Foot",
  27536. image: {
  27537. source: "./media/characters/kyu/foot.svg"
  27538. }
  27539. },
  27540. },
  27541. [
  27542. {
  27543. name: "Normal",
  27544. height: math.unit(1.7, "meters")
  27545. },
  27546. {
  27547. name: "Macro",
  27548. height: math.unit(131, "feet"),
  27549. default: true
  27550. },
  27551. {
  27552. name: "Megamacro",
  27553. height: math.unit(91440, "meters")
  27554. },
  27555. {
  27556. name: "Gigamacro",
  27557. height: math.unit(60960000, "meters")
  27558. },
  27559. {
  27560. name: "Teramacro",
  27561. height: math.unit(9144000000, "meters")
  27562. },
  27563. ]
  27564. ))
  27565. characterMakers.push(() => makeCharacter(
  27566. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27567. {
  27568. front: {
  27569. height: math.unit(7 + 1 / 12, "feet"),
  27570. weight: math.unit(250, "lb"),
  27571. name: "Front",
  27572. image: {
  27573. source: "./media/characters/joey/front.svg",
  27574. extra: 1791 / 1537,
  27575. bottom: 28 / 1816
  27576. }
  27577. },
  27578. },
  27579. [
  27580. {
  27581. name: "Micro",
  27582. height: math.unit(3, "inches")
  27583. },
  27584. {
  27585. name: "Normal",
  27586. height: math.unit(7 + 1 / 12, "feet"),
  27587. default: true
  27588. },
  27589. ]
  27590. ))
  27591. characterMakers.push(() => makeCharacter(
  27592. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27593. {
  27594. front: {
  27595. height: math.unit(165, "cm"),
  27596. weight: math.unit(140, "lb"),
  27597. name: "Front",
  27598. image: {
  27599. source: "./media/characters/sam-evans/front.svg",
  27600. extra: 3417 / 3230,
  27601. bottom: 41.3 / 3417
  27602. }
  27603. },
  27604. frontSixTails: {
  27605. height: math.unit(165, "cm"),
  27606. weight: math.unit(140, "lb"),
  27607. name: "Front-six-tails",
  27608. image: {
  27609. source: "./media/characters/sam-evans/front-six-tails.svg",
  27610. extra: 3417 / 3230,
  27611. bottom: 41.3 / 3417
  27612. }
  27613. },
  27614. back: {
  27615. height: math.unit(165, "cm"),
  27616. weight: math.unit(140, "lb"),
  27617. name: "Back",
  27618. image: {
  27619. source: "./media/characters/sam-evans/back.svg",
  27620. extra: 3227 / 3032,
  27621. bottom: 6.8 / 3234
  27622. }
  27623. },
  27624. face: {
  27625. height: math.unit(0.68, "feet"),
  27626. name: "Face",
  27627. image: {
  27628. source: "./media/characters/sam-evans/face.svg"
  27629. }
  27630. },
  27631. },
  27632. [
  27633. {
  27634. name: "Normal",
  27635. height: math.unit(165, "cm"),
  27636. default: true
  27637. },
  27638. {
  27639. name: "Macro",
  27640. height: math.unit(100, "meters")
  27641. },
  27642. {
  27643. name: "Macro+",
  27644. height: math.unit(800, "meters")
  27645. },
  27646. {
  27647. name: "Macro++",
  27648. height: math.unit(3, "km")
  27649. },
  27650. {
  27651. name: "Macro+++",
  27652. height: math.unit(30, "km")
  27653. },
  27654. ]
  27655. ))
  27656. characterMakers.push(() => makeCharacter(
  27657. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27658. {
  27659. front: {
  27660. height: math.unit(10, "feet"),
  27661. weight: math.unit(750, "lb"),
  27662. name: "Front",
  27663. image: {
  27664. source: "./media/characters/juliet-a/front.svg",
  27665. extra: 1766 / 1720,
  27666. bottom: 43 / 1809
  27667. }
  27668. },
  27669. back: {
  27670. height: math.unit(10, "feet"),
  27671. weight: math.unit(750, "lb"),
  27672. name: "Back",
  27673. image: {
  27674. source: "./media/characters/juliet-a/back.svg",
  27675. extra: 1781 / 1734,
  27676. bottom: 35 / 1810,
  27677. }
  27678. },
  27679. },
  27680. [
  27681. {
  27682. name: "Normal",
  27683. height: math.unit(10, "feet"),
  27684. default: true
  27685. },
  27686. {
  27687. name: "Dragon Form",
  27688. height: math.unit(250, "feet")
  27689. },
  27690. {
  27691. name: "Macro",
  27692. height: math.unit(1000, "feet")
  27693. },
  27694. {
  27695. name: "Megamacro",
  27696. height: math.unit(10000, "feet")
  27697. }
  27698. ]
  27699. ))
  27700. characterMakers.push(() => makeCharacter(
  27701. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27702. {
  27703. regular: {
  27704. height: math.unit(7 + 3 / 12, "feet"),
  27705. weight: math.unit(260, "lb"),
  27706. name: "Regular",
  27707. image: {
  27708. source: "./media/characters/wild/regular.svg",
  27709. extra: 97.45 / 92,
  27710. bottom: 6.8 / 104.3
  27711. }
  27712. },
  27713. biggums: {
  27714. height: math.unit(8 + 6 / 12, "feet"),
  27715. weight: math.unit(425, "lb"),
  27716. name: "Biggums",
  27717. image: {
  27718. source: "./media/characters/wild/biggums.svg",
  27719. extra: 97.45 / 92,
  27720. bottom: 7.5 / 132.34
  27721. }
  27722. },
  27723. mawRegular: {
  27724. height: math.unit(1.24, "feet"),
  27725. name: "Maw (Regular)",
  27726. image: {
  27727. source: "./media/characters/wild/maw.svg"
  27728. }
  27729. },
  27730. mawBiggums: {
  27731. height: math.unit(1.47, "feet"),
  27732. name: "Maw (Biggums)",
  27733. image: {
  27734. source: "./media/characters/wild/maw.svg"
  27735. }
  27736. },
  27737. },
  27738. [
  27739. {
  27740. name: "Normal",
  27741. height: math.unit(7 + 3 / 12, "feet"),
  27742. default: true
  27743. },
  27744. ]
  27745. ))
  27746. characterMakers.push(() => makeCharacter(
  27747. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27748. {
  27749. front: {
  27750. height: math.unit(2.5, "meters"),
  27751. weight: math.unit(200, "kg"),
  27752. name: "Front",
  27753. image: {
  27754. source: "./media/characters/vidar/front.svg",
  27755. extra: 2994 / 2795,
  27756. bottom: 56 / 3061
  27757. }
  27758. },
  27759. back: {
  27760. height: math.unit(2.5, "meters"),
  27761. weight: math.unit(200, "kg"),
  27762. name: "Back",
  27763. image: {
  27764. source: "./media/characters/vidar/back.svg",
  27765. extra: 3131 / 2928,
  27766. bottom: 13.5 / 3141.5
  27767. }
  27768. },
  27769. feral: {
  27770. height: math.unit(2.5, "meters"),
  27771. weight: math.unit(2000, "kg"),
  27772. name: "Feral",
  27773. image: {
  27774. source: "./media/characters/vidar/feral.svg",
  27775. extra: 2790 / 1765,
  27776. bottom: 6 / 2796
  27777. }
  27778. },
  27779. },
  27780. [
  27781. {
  27782. name: "Normal",
  27783. height: math.unit(2.5, "meters"),
  27784. default: true
  27785. },
  27786. {
  27787. name: "Macro",
  27788. height: math.unit(100, "meters")
  27789. },
  27790. ]
  27791. ))
  27792. characterMakers.push(() => makeCharacter(
  27793. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27794. {
  27795. front: {
  27796. height: math.unit(5 + 9 / 12, "feet"),
  27797. weight: math.unit(120, "lb"),
  27798. name: "Front",
  27799. image: {
  27800. source: "./media/characters/ash/front.svg",
  27801. extra: 2189 / 1961,
  27802. bottom: 5.2 / 2194
  27803. }
  27804. },
  27805. },
  27806. [
  27807. {
  27808. name: "Normal",
  27809. height: math.unit(5 + 9 / 12, "feet"),
  27810. default: true
  27811. },
  27812. ]
  27813. ))
  27814. characterMakers.push(() => makeCharacter(
  27815. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27816. {
  27817. front: {
  27818. height: math.unit(9, "feet"),
  27819. weight: math.unit(10000, "lb"),
  27820. name: "Front",
  27821. image: {
  27822. source: "./media/characters/gygabite/front.svg",
  27823. bottom: 31.7 / 537.8,
  27824. extra: 505 / 370
  27825. }
  27826. },
  27827. },
  27828. [
  27829. {
  27830. name: "Normal",
  27831. height: math.unit(9, "feet"),
  27832. default: true
  27833. },
  27834. ]
  27835. ))
  27836. characterMakers.push(() => makeCharacter(
  27837. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27838. {
  27839. front: {
  27840. height: math.unit(12, "feet"),
  27841. weight: math.unit(35000, "lb"),
  27842. name: "Front",
  27843. image: {
  27844. source: "./media/characters/p0tat0/front.svg",
  27845. extra: 1065 / 921,
  27846. bottom: 55.7 / 1121.25
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Normal",
  27853. height: math.unit(12, "feet"),
  27854. default: true
  27855. },
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27860. {
  27861. side: {
  27862. height: math.unit(6.5, "feet"),
  27863. weight: math.unit(800, "lb"),
  27864. name: "Side",
  27865. image: {
  27866. source: "./media/characters/dusk/side.svg",
  27867. extra: 615 / 373,
  27868. bottom: 53 / 664
  27869. }
  27870. },
  27871. sitting: {
  27872. height: math.unit(7, "feet"),
  27873. weight: math.unit(800, "lb"),
  27874. name: "Sitting",
  27875. image: {
  27876. source: "./media/characters/dusk/sitting.svg",
  27877. extra: 753 / 425,
  27878. bottom: 33 / 774
  27879. }
  27880. },
  27881. head: {
  27882. height: math.unit(6.1, "feet"),
  27883. name: "Head",
  27884. image: {
  27885. source: "./media/characters/dusk/head.svg"
  27886. }
  27887. },
  27888. },
  27889. [
  27890. {
  27891. name: "Normal",
  27892. height: math.unit(7, "feet"),
  27893. default: true
  27894. },
  27895. ]
  27896. ))
  27897. characterMakers.push(() => makeCharacter(
  27898. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27899. {
  27900. front: {
  27901. height: math.unit(15, "feet"),
  27902. weight: math.unit(7000, "lb"),
  27903. name: "Front",
  27904. image: {
  27905. source: "./media/characters/jay-direwolf/front.svg",
  27906. extra: 1810 / 1732,
  27907. bottom: 66 / 1892
  27908. }
  27909. },
  27910. },
  27911. [
  27912. {
  27913. name: "Normal",
  27914. height: math.unit(15, "feet"),
  27915. default: true
  27916. },
  27917. ]
  27918. ))
  27919. characterMakers.push(() => makeCharacter(
  27920. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27921. {
  27922. front: {
  27923. height: math.unit(4 + 9 / 12, "feet"),
  27924. weight: math.unit(130, "lb"),
  27925. name: "Front",
  27926. image: {
  27927. source: "./media/characters/anchovie/front.svg",
  27928. extra: 382 / 350,
  27929. bottom: 25 / 409
  27930. }
  27931. },
  27932. back: {
  27933. height: math.unit(4 + 9 / 12, "feet"),
  27934. weight: math.unit(130, "lb"),
  27935. name: "Back",
  27936. image: {
  27937. source: "./media/characters/anchovie/back.svg",
  27938. extra: 385 / 352,
  27939. bottom: 16.6 / 402
  27940. }
  27941. },
  27942. frontDressed: {
  27943. height: math.unit(4 + 9 / 12, "feet"),
  27944. weight: math.unit(130, "lb"),
  27945. name: "Front (Dressed)",
  27946. image: {
  27947. source: "./media/characters/anchovie/front-dressed.svg",
  27948. extra: 382 / 350,
  27949. bottom: 25 / 409
  27950. }
  27951. },
  27952. backDressed: {
  27953. height: math.unit(4 + 9 / 12, "feet"),
  27954. weight: math.unit(130, "lb"),
  27955. name: "Back (Dressed)",
  27956. image: {
  27957. source: "./media/characters/anchovie/back-dressed.svg",
  27958. extra: 385 / 352,
  27959. bottom: 16.6 / 402
  27960. }
  27961. },
  27962. },
  27963. [
  27964. {
  27965. name: "Micro",
  27966. height: math.unit(6.4, "inches")
  27967. },
  27968. {
  27969. name: "Normal",
  27970. height: math.unit(4 + 9 / 12, "feet"),
  27971. default: true
  27972. },
  27973. ]
  27974. ))
  27975. characterMakers.push(() => makeCharacter(
  27976. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27977. {
  27978. front: {
  27979. height: math.unit(2, "meters"),
  27980. weight: math.unit(180, "lb"),
  27981. name: "Front",
  27982. image: {
  27983. source: "./media/characters/acidrenamon/front.svg",
  27984. extra: 987 / 890,
  27985. bottom: 22.8 / 1009
  27986. }
  27987. },
  27988. back: {
  27989. height: math.unit(2, "meters"),
  27990. weight: math.unit(180, "lb"),
  27991. name: "Back",
  27992. image: {
  27993. source: "./media/characters/acidrenamon/back.svg",
  27994. extra: 983 / 891,
  27995. bottom: 8.4 / 992
  27996. }
  27997. },
  27998. head: {
  27999. height: math.unit(1.92, "feet"),
  28000. name: "Head",
  28001. image: {
  28002. source: "./media/characters/acidrenamon/head.svg"
  28003. }
  28004. },
  28005. rump: {
  28006. height: math.unit(1.72, "feet"),
  28007. name: "Rump",
  28008. image: {
  28009. source: "./media/characters/acidrenamon/rump.svg"
  28010. }
  28011. },
  28012. tail: {
  28013. height: math.unit(4.2, "feet"),
  28014. name: "Tail",
  28015. image: {
  28016. source: "./media/characters/acidrenamon/tail.svg"
  28017. }
  28018. },
  28019. },
  28020. [
  28021. {
  28022. name: "Normal",
  28023. height: math.unit(2, "meters"),
  28024. default: true
  28025. },
  28026. {
  28027. name: "Minimacro",
  28028. height: math.unit(7, "meters")
  28029. },
  28030. {
  28031. name: "Macro",
  28032. height: math.unit(200, "meters")
  28033. },
  28034. {
  28035. name: "Gigamacro",
  28036. height: math.unit(0.2, "earths")
  28037. },
  28038. ]
  28039. ))
  28040. characterMakers.push(() => makeCharacter(
  28041. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28042. {
  28043. front: {
  28044. height: math.unit(152, "feet"),
  28045. name: "Front",
  28046. image: {
  28047. source: "./media/characters/kenzie-lee/front.svg",
  28048. extra: 1869/1774,
  28049. bottom: 128/1997
  28050. }
  28051. },
  28052. side: {
  28053. height: math.unit(86, "feet"),
  28054. name: "Side",
  28055. image: {
  28056. source: "./media/characters/kenzie-lee/side.svg",
  28057. extra: 930/815,
  28058. bottom: 177/1107
  28059. }
  28060. },
  28061. paw: {
  28062. height: math.unit(15, "feet"),
  28063. name: "Paw",
  28064. image: {
  28065. source: "./media/characters/kenzie-lee/paw.svg"
  28066. }
  28067. },
  28068. },
  28069. [
  28070. {
  28071. name: "Micro",
  28072. height: math.unit(1.5, "inches")
  28073. },
  28074. {
  28075. name: "Normal",
  28076. height: math.unit(152, "feet"),
  28077. default: true
  28078. },
  28079. {
  28080. name: "Megamacro",
  28081. height: math.unit(7, "miles")
  28082. },
  28083. {
  28084. name: "Gigamacro",
  28085. height: math.unit(8000, "miles")
  28086. },
  28087. ]
  28088. ))
  28089. characterMakers.push(() => makeCharacter(
  28090. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28091. {
  28092. side: {
  28093. height: math.unit(6, "feet"),
  28094. weight: math.unit(150, "lb"),
  28095. name: "Side",
  28096. image: {
  28097. source: "./media/characters/withers/side.svg",
  28098. extra: 1830 / 1728,
  28099. bottom: 96 / 1927
  28100. }
  28101. },
  28102. front: {
  28103. height: math.unit(6, "feet"),
  28104. weight: math.unit(150, "lb"),
  28105. name: "Front",
  28106. image: {
  28107. source: "./media/characters/withers/front.svg",
  28108. extra: 1514 / 1438,
  28109. bottom: 118 / 1632
  28110. }
  28111. },
  28112. },
  28113. [
  28114. {
  28115. name: "Macro",
  28116. height: math.unit(168, "feet"),
  28117. default: true
  28118. },
  28119. {
  28120. name: "Megamacro",
  28121. height: math.unit(15, "miles")
  28122. }
  28123. ]
  28124. ))
  28125. characterMakers.push(() => makeCharacter(
  28126. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28127. {
  28128. front: {
  28129. height: math.unit(6 + 7 / 12, "feet"),
  28130. weight: math.unit(250, "lb"),
  28131. name: "Front",
  28132. image: {
  28133. source: "./media/characters/nemoskii/front.svg",
  28134. extra: 2270 / 1734,
  28135. bottom: 86 / 2354
  28136. }
  28137. },
  28138. back: {
  28139. height: math.unit(6 + 7 / 12, "feet"),
  28140. weight: math.unit(250, "lb"),
  28141. name: "Back",
  28142. image: {
  28143. source: "./media/characters/nemoskii/back.svg",
  28144. extra: 1845 / 1788,
  28145. bottom: 10.5 / 1852
  28146. }
  28147. },
  28148. head: {
  28149. height: math.unit(1.31, "feet"),
  28150. name: "Head",
  28151. image: {
  28152. source: "./media/characters/nemoskii/head.svg"
  28153. }
  28154. },
  28155. },
  28156. [
  28157. {
  28158. name: "Micro",
  28159. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28160. },
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(6 + 7 / 12, "feet"),
  28164. default: true
  28165. },
  28166. {
  28167. name: "Macro",
  28168. height: math.unit((6 + 7 / 12) * 150, "feet")
  28169. },
  28170. {
  28171. name: "Macro+",
  28172. height: math.unit((6 + 7 / 12) * 500, "feet")
  28173. },
  28174. {
  28175. name: "Megamacro",
  28176. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28177. },
  28178. ]
  28179. ))
  28180. characterMakers.push(() => makeCharacter(
  28181. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28182. {
  28183. front: {
  28184. height: math.unit(1, "mile"),
  28185. weight: math.unit(265261.9, "lb"),
  28186. name: "Front",
  28187. image: {
  28188. source: "./media/characters/shui/front.svg",
  28189. extra: 1633 / 1564,
  28190. bottom: 91.5 / 1726
  28191. }
  28192. },
  28193. },
  28194. [
  28195. {
  28196. name: "Macro",
  28197. height: math.unit(1, "mile"),
  28198. default: true
  28199. },
  28200. ]
  28201. ))
  28202. characterMakers.push(() => makeCharacter(
  28203. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28204. {
  28205. front: {
  28206. height: math.unit(12 + 6 / 12, "feet"),
  28207. weight: math.unit(1342, "lb"),
  28208. name: "Front",
  28209. image: {
  28210. source: "./media/characters/arokh-takakura/front.svg",
  28211. extra: 1089 / 1043,
  28212. bottom: 77.4 / 1176.7
  28213. }
  28214. },
  28215. back: {
  28216. height: math.unit(12 + 6 / 12, "feet"),
  28217. weight: math.unit(1342, "lb"),
  28218. name: "Back",
  28219. image: {
  28220. source: "./media/characters/arokh-takakura/back.svg",
  28221. extra: 1046 / 1019,
  28222. bottom: 102 / 1150
  28223. }
  28224. },
  28225. },
  28226. [
  28227. {
  28228. name: "Big",
  28229. height: math.unit(12 + 6 / 12, "feet"),
  28230. default: true
  28231. },
  28232. ]
  28233. ))
  28234. characterMakers.push(() => makeCharacter(
  28235. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28236. {
  28237. front: {
  28238. height: math.unit(5 + 6 / 12, "feet"),
  28239. weight: math.unit(150, "lb"),
  28240. name: "Front",
  28241. image: {
  28242. source: "./media/characters/theo/front.svg",
  28243. extra: 1184 / 1131,
  28244. bottom: 7.4 / 1191
  28245. }
  28246. },
  28247. },
  28248. [
  28249. {
  28250. name: "Micro",
  28251. height: math.unit(5, "inches")
  28252. },
  28253. {
  28254. name: "Normal",
  28255. height: math.unit(5 + 6 / 12, "feet"),
  28256. default: true
  28257. },
  28258. ]
  28259. ))
  28260. characterMakers.push(() => makeCharacter(
  28261. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28262. {
  28263. front: {
  28264. height: math.unit(5 + 9 / 12, "feet"),
  28265. weight: math.unit(130, "lb"),
  28266. name: "Front",
  28267. image: {
  28268. source: "./media/characters/cecelia-swift/front.svg",
  28269. extra: 502 / 484,
  28270. bottom: 23 / 523
  28271. }
  28272. },
  28273. back: {
  28274. height: math.unit(5 + 9 / 12, "feet"),
  28275. weight: math.unit(130, "lb"),
  28276. name: "Back",
  28277. image: {
  28278. source: "./media/characters/cecelia-swift/back.svg",
  28279. extra: 499 / 485,
  28280. bottom: 12 / 511
  28281. }
  28282. },
  28283. head: {
  28284. height: math.unit(0.90, "feet"),
  28285. name: "Head",
  28286. image: {
  28287. source: "./media/characters/cecelia-swift/head.svg"
  28288. }
  28289. },
  28290. rump: {
  28291. height: math.unit(1.75, "feet"),
  28292. name: "Rump",
  28293. image: {
  28294. source: "./media/characters/cecelia-swift/rump.svg"
  28295. }
  28296. },
  28297. },
  28298. [
  28299. {
  28300. name: "Normal",
  28301. height: math.unit(5 + 9 / 12, "feet"),
  28302. default: true
  28303. },
  28304. {
  28305. name: "Big",
  28306. height: math.unit(50, "feet")
  28307. },
  28308. {
  28309. name: "Macro",
  28310. height: math.unit(100, "feet")
  28311. },
  28312. {
  28313. name: "Macro+",
  28314. height: math.unit(500, "feet")
  28315. },
  28316. {
  28317. name: "Macro++",
  28318. height: math.unit(1000, "feet")
  28319. },
  28320. ]
  28321. ))
  28322. characterMakers.push(() => makeCharacter(
  28323. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28324. {
  28325. front: {
  28326. height: math.unit(6, "feet"),
  28327. weight: math.unit(150, "lb"),
  28328. name: "Front",
  28329. image: {
  28330. source: "./media/characters/kaunan/front.svg",
  28331. extra: 2890 / 2523,
  28332. bottom: 49 / 2939
  28333. }
  28334. },
  28335. },
  28336. [
  28337. {
  28338. name: "Macro",
  28339. height: math.unit(150, "feet"),
  28340. default: true
  28341. },
  28342. ]
  28343. ))
  28344. characterMakers.push(() => makeCharacter(
  28345. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28346. {
  28347. front: {
  28348. height: math.unit(175, "cm"),
  28349. weight: math.unit(60, "kg"),
  28350. name: "Front",
  28351. image: {
  28352. source: "./media/characters/fei/front.svg",
  28353. extra: 1873/1723,
  28354. bottom: 53/1926
  28355. }
  28356. },
  28357. },
  28358. [
  28359. {
  28360. name: "Mortal",
  28361. height: math.unit(175, "cm")
  28362. },
  28363. {
  28364. name: "Normal",
  28365. height: math.unit(3500, "m"),
  28366. default: true
  28367. },
  28368. {
  28369. name: "Stroll",
  28370. height: math.unit(17.5, "km")
  28371. },
  28372. {
  28373. name: "Showoff",
  28374. height: math.unit(175, "km")
  28375. },
  28376. ]
  28377. ))
  28378. characterMakers.push(() => makeCharacter(
  28379. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28380. {
  28381. front: {
  28382. height: math.unit(7, "feet"),
  28383. weight: math.unit(1000, "kg"),
  28384. name: "Front",
  28385. image: {
  28386. source: "./media/characters/edrax/front.svg",
  28387. extra: 2838 / 2550,
  28388. bottom: 130 / 2968
  28389. }
  28390. },
  28391. },
  28392. [
  28393. {
  28394. name: "Small",
  28395. height: math.unit(7, "feet")
  28396. },
  28397. {
  28398. name: "Normal",
  28399. height: math.unit(1500, "meters")
  28400. },
  28401. {
  28402. name: "Mega",
  28403. height: math.unit(12000000, "km"),
  28404. default: true
  28405. },
  28406. {
  28407. name: "Megamacro",
  28408. height: math.unit(10600000, "lightyears")
  28409. },
  28410. {
  28411. name: "Hypermacro",
  28412. height: math.unit(256, "yottameters")
  28413. },
  28414. ]
  28415. ))
  28416. characterMakers.push(() => makeCharacter(
  28417. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28418. {
  28419. front: {
  28420. height: math.unit(10, "feet"),
  28421. weight: math.unit(750, "lb"),
  28422. name: "Front",
  28423. image: {
  28424. source: "./media/characters/clove/front.svg",
  28425. extra: 1918/1751,
  28426. bottom: 52/1970
  28427. }
  28428. },
  28429. back: {
  28430. height: math.unit(10, "feet"),
  28431. weight: math.unit(750, "lb"),
  28432. name: "Back",
  28433. image: {
  28434. source: "./media/characters/clove/back.svg",
  28435. extra: 1912/1747,
  28436. bottom: 50/1962
  28437. }
  28438. },
  28439. },
  28440. [
  28441. {
  28442. name: "Normal",
  28443. height: math.unit(10, "feet"),
  28444. default: true
  28445. },
  28446. ]
  28447. ))
  28448. characterMakers.push(() => makeCharacter(
  28449. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28450. {
  28451. front: {
  28452. height: math.unit(4, "feet"),
  28453. weight: math.unit(50, "lb"),
  28454. name: "Front",
  28455. image: {
  28456. source: "./media/characters/alex-rabbit/front.svg",
  28457. extra: 507 / 458,
  28458. bottom: 18.5 / 527
  28459. }
  28460. },
  28461. back: {
  28462. height: math.unit(4, "feet"),
  28463. weight: math.unit(50, "lb"),
  28464. name: "Back",
  28465. image: {
  28466. source: "./media/characters/alex-rabbit/back.svg",
  28467. extra: 502 / 460,
  28468. bottom: 18.9 / 521
  28469. }
  28470. },
  28471. },
  28472. [
  28473. {
  28474. name: "Normal",
  28475. height: math.unit(4, "feet"),
  28476. default: true
  28477. },
  28478. ]
  28479. ))
  28480. characterMakers.push(() => makeCharacter(
  28481. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28482. {
  28483. front: {
  28484. height: math.unit(1 + 3 / 12, "feet"),
  28485. weight: math.unit(80, "lb"),
  28486. name: "Front",
  28487. image: {
  28488. source: "./media/characters/zander-rose/front.svg",
  28489. extra: 916 / 797,
  28490. bottom: 17 / 933
  28491. }
  28492. },
  28493. back: {
  28494. height: math.unit(1 + 3 / 12, "feet"),
  28495. weight: math.unit(80, "lb"),
  28496. name: "Back",
  28497. image: {
  28498. source: "./media/characters/zander-rose/back.svg",
  28499. extra: 903 / 779,
  28500. bottom: 31 / 934
  28501. }
  28502. },
  28503. },
  28504. [
  28505. {
  28506. name: "Normal",
  28507. height: math.unit(1 + 3 / 12, "feet"),
  28508. default: true
  28509. },
  28510. ]
  28511. ))
  28512. characterMakers.push(() => makeCharacter(
  28513. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28514. {
  28515. anthro: {
  28516. height: math.unit(6, "feet"),
  28517. weight: math.unit(150, "lb"),
  28518. name: "Anthro",
  28519. image: {
  28520. source: "./media/characters/razz/anthro.svg",
  28521. extra: 1437 / 1343,
  28522. bottom: 48 / 1485
  28523. }
  28524. },
  28525. feral: {
  28526. height: math.unit(6, "feet"),
  28527. weight: math.unit(150, "lb"),
  28528. name: "Feral",
  28529. image: {
  28530. source: "./media/characters/razz/feral.svg",
  28531. extra: 2569 / 1385,
  28532. bottom: 95 / 2664
  28533. }
  28534. },
  28535. },
  28536. [
  28537. {
  28538. name: "Normal",
  28539. height: math.unit(6, "feet"),
  28540. default: true
  28541. },
  28542. ]
  28543. ))
  28544. characterMakers.push(() => makeCharacter(
  28545. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28546. {
  28547. front: {
  28548. height: math.unit(9 + 4 / 12, "feet"),
  28549. weight: math.unit(500, "lb"),
  28550. name: "Front",
  28551. image: {
  28552. source: "./media/characters/morrigan/front.svg",
  28553. extra: 2707 / 2579,
  28554. bottom: 156 / 2863
  28555. }
  28556. },
  28557. },
  28558. [
  28559. {
  28560. name: "Normal",
  28561. height: math.unit(9 + 4 / 12, "feet"),
  28562. default: true
  28563. },
  28564. ]
  28565. ))
  28566. characterMakers.push(() => makeCharacter(
  28567. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28568. {
  28569. front: {
  28570. height: math.unit(5, "stories"),
  28571. weight: math.unit(4000, "lb"),
  28572. name: "Front",
  28573. image: {
  28574. source: "./media/characters/jenene/front.svg",
  28575. extra: 1780 / 1710,
  28576. bottom: 57 / 1837
  28577. }
  28578. },
  28579. },
  28580. [
  28581. {
  28582. name: "Normal",
  28583. height: math.unit(5, "stories"),
  28584. default: true
  28585. },
  28586. ]
  28587. ))
  28588. characterMakers.push(() => makeCharacter(
  28589. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28590. {
  28591. taurSfw: {
  28592. height: math.unit(10, "meters"),
  28593. weight: math.unit(17500, "kg"),
  28594. name: "Taur",
  28595. image: {
  28596. source: "./media/characters/faey/taur-sfw.svg",
  28597. extra: 1200 / 968,
  28598. bottom: 41 / 1241
  28599. }
  28600. },
  28601. chestmaw: {
  28602. height: math.unit(2.01, "meters"),
  28603. name: "Chestmaw",
  28604. image: {
  28605. source: "./media/characters/faey/chestmaw.svg"
  28606. }
  28607. },
  28608. foot: {
  28609. height: math.unit(2.43, "meters"),
  28610. name: "Foot",
  28611. image: {
  28612. source: "./media/characters/faey/foot.svg"
  28613. }
  28614. },
  28615. jaws: {
  28616. height: math.unit(1.66, "meters"),
  28617. name: "Jaws",
  28618. image: {
  28619. source: "./media/characters/faey/jaws.svg"
  28620. }
  28621. },
  28622. tongues: {
  28623. height: math.unit(2.01, "meters"),
  28624. name: "Tongues",
  28625. image: {
  28626. source: "./media/characters/faey/tongues.svg"
  28627. }
  28628. },
  28629. },
  28630. [
  28631. {
  28632. name: "Small",
  28633. height: math.unit(10, "meters"),
  28634. default: true
  28635. },
  28636. {
  28637. name: "Big",
  28638. height: math.unit(500000, "km")
  28639. },
  28640. ]
  28641. ))
  28642. characterMakers.push(() => makeCharacter(
  28643. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28644. {
  28645. front: {
  28646. height: math.unit(7, "feet"),
  28647. weight: math.unit(275, "lb"),
  28648. name: "Front",
  28649. image: {
  28650. source: "./media/characters/roku/front.svg",
  28651. extra: 903 / 878,
  28652. bottom: 37 / 940
  28653. }
  28654. },
  28655. },
  28656. [
  28657. {
  28658. name: "Normal",
  28659. height: math.unit(7, "feet"),
  28660. default: true
  28661. },
  28662. {
  28663. name: "Macro",
  28664. height: math.unit(500, "feet")
  28665. },
  28666. {
  28667. name: "Megamacro",
  28668. height: math.unit(200, "miles")
  28669. },
  28670. ]
  28671. ))
  28672. characterMakers.push(() => makeCharacter(
  28673. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28674. {
  28675. front: {
  28676. height: math.unit(6 + 2 / 12, "feet"),
  28677. weight: math.unit(150, "lb"),
  28678. name: "Front",
  28679. image: {
  28680. source: "./media/characters/lira/front.svg",
  28681. extra: 1727 / 1605,
  28682. bottom: 26 / 1753
  28683. }
  28684. },
  28685. back: {
  28686. height: math.unit(6 + 2 / 12, "feet"),
  28687. weight: math.unit(150, "lb"),
  28688. name: "Back",
  28689. image: {
  28690. source: "./media/characters/lira/back.svg",
  28691. extra: 1713/1621,
  28692. bottom: 20/1733
  28693. }
  28694. },
  28695. hand: {
  28696. height: math.unit(0.75, "feet"),
  28697. name: "Hand",
  28698. image: {
  28699. source: "./media/characters/lira/hand.svg"
  28700. }
  28701. },
  28702. maw: {
  28703. height: math.unit(0.65, "feet"),
  28704. name: "Maw",
  28705. image: {
  28706. source: "./media/characters/lira/maw.svg"
  28707. }
  28708. },
  28709. pawDigi: {
  28710. height: math.unit(1.6, "feet"),
  28711. name: "Paw Digi",
  28712. image: {
  28713. source: "./media/characters/lira/paw-digi.svg"
  28714. }
  28715. },
  28716. pawPlanti: {
  28717. height: math.unit(1.4, "feet"),
  28718. name: "Paw Planti",
  28719. image: {
  28720. source: "./media/characters/lira/paw-planti.svg"
  28721. }
  28722. },
  28723. },
  28724. [
  28725. {
  28726. name: "Normal",
  28727. height: math.unit(6 + 2 / 12, "feet"),
  28728. default: true
  28729. },
  28730. {
  28731. name: "Macro",
  28732. height: math.unit(100, "feet")
  28733. },
  28734. {
  28735. name: "Macro²",
  28736. height: math.unit(1600, "feet")
  28737. },
  28738. {
  28739. name: "Planetary",
  28740. height: math.unit(20, "earths")
  28741. },
  28742. ]
  28743. ))
  28744. characterMakers.push(() => makeCharacter(
  28745. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28746. {
  28747. front: {
  28748. height: math.unit(6, "feet"),
  28749. weight: math.unit(150, "lb"),
  28750. name: "Front",
  28751. image: {
  28752. source: "./media/characters/hadjet/front.svg",
  28753. extra: 1480 / 1346,
  28754. bottom: 26 / 1506
  28755. }
  28756. },
  28757. frontNsfw: {
  28758. height: math.unit(6, "feet"),
  28759. weight: math.unit(150, "lb"),
  28760. name: "Front (NSFW)",
  28761. image: {
  28762. source: "./media/characters/hadjet/front-nsfw.svg",
  28763. extra: 1440 / 1358,
  28764. bottom: 52 / 1492
  28765. }
  28766. },
  28767. },
  28768. [
  28769. {
  28770. name: "Macro",
  28771. height: math.unit(10, "stories"),
  28772. default: true
  28773. },
  28774. {
  28775. name: "Megamacro",
  28776. height: math.unit(1.5, "miles")
  28777. },
  28778. {
  28779. name: "Megamacro+",
  28780. height: math.unit(5, "miles")
  28781. },
  28782. ]
  28783. ))
  28784. characterMakers.push(() => makeCharacter(
  28785. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28786. {
  28787. side: {
  28788. height: math.unit(106, "feet"),
  28789. weight: math.unit(500, "tonnes"),
  28790. name: "Side",
  28791. image: {
  28792. source: "./media/characters/kodran/side.svg",
  28793. extra: 553 / 480,
  28794. bottom: 33 / 586
  28795. }
  28796. },
  28797. front: {
  28798. height: math.unit(132, "feet"),
  28799. weight: math.unit(500, "tonnes"),
  28800. name: "Front",
  28801. image: {
  28802. source: "./media/characters/kodran/front.svg",
  28803. extra: 667 / 643,
  28804. bottom: 42 / 709
  28805. }
  28806. },
  28807. flying: {
  28808. height: math.unit(350, "feet"),
  28809. weight: math.unit(500, "tonnes"),
  28810. name: "Flying",
  28811. image: {
  28812. source: "./media/characters/kodran/flying.svg"
  28813. }
  28814. },
  28815. foot: {
  28816. height: math.unit(33, "feet"),
  28817. name: "Foot",
  28818. image: {
  28819. source: "./media/characters/kodran/foot.svg"
  28820. }
  28821. },
  28822. footFront: {
  28823. height: math.unit(19, "feet"),
  28824. name: "Foot (Front)",
  28825. image: {
  28826. source: "./media/characters/kodran/foot-front.svg",
  28827. extra: 261 / 261,
  28828. bottom: 91 / 352
  28829. }
  28830. },
  28831. headFront: {
  28832. height: math.unit(53, "feet"),
  28833. name: "Head (Front)",
  28834. image: {
  28835. source: "./media/characters/kodran/head-front.svg"
  28836. }
  28837. },
  28838. headSide: {
  28839. height: math.unit(65, "feet"),
  28840. name: "Head (Side)",
  28841. image: {
  28842. source: "./media/characters/kodran/head-side.svg"
  28843. }
  28844. },
  28845. throat: {
  28846. height: math.unit(79, "feet"),
  28847. name: "Throat",
  28848. image: {
  28849. source: "./media/characters/kodran/throat.svg"
  28850. }
  28851. },
  28852. },
  28853. [
  28854. {
  28855. name: "Large",
  28856. height: math.unit(106, "feet"),
  28857. default: true
  28858. },
  28859. ]
  28860. ))
  28861. characterMakers.push(() => makeCharacter(
  28862. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28863. {
  28864. side: {
  28865. height: math.unit(11, "feet"),
  28866. weight: math.unit(150, "lb"),
  28867. name: "Side",
  28868. image: {
  28869. source: "./media/characters/pyxaron/side.svg",
  28870. extra: 305 / 195,
  28871. bottom: 17 / 322
  28872. }
  28873. },
  28874. },
  28875. [
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(11, "feet"),
  28879. default: true
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(6, "feet"),
  28888. weight: math.unit(150, "lb"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/meep/front.svg",
  28892. extra: 88 / 80,
  28893. bottom: 6 / 94
  28894. }
  28895. },
  28896. },
  28897. [
  28898. {
  28899. name: "Fun Sized",
  28900. height: math.unit(2, "inches"),
  28901. default: true
  28902. },
  28903. {
  28904. name: "Friend Sized",
  28905. height: math.unit(8, "inches")
  28906. },
  28907. ]
  28908. ))
  28909. characterMakers.push(() => makeCharacter(
  28910. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28911. {
  28912. front: {
  28913. height: math.unit(15, "feet"),
  28914. weight: math.unit(2500, "lb"),
  28915. name: "Front",
  28916. image: {
  28917. source: "./media/characters/holly-rabbit/front.svg",
  28918. extra: 1433 / 1233,
  28919. bottom: 125 / 1558
  28920. }
  28921. },
  28922. dick: {
  28923. height: math.unit(4.6, "feet"),
  28924. name: "Dick",
  28925. image: {
  28926. source: "./media/characters/holly-rabbit/dick.svg"
  28927. }
  28928. },
  28929. },
  28930. [
  28931. {
  28932. name: "Normal",
  28933. height: math.unit(15, "feet"),
  28934. default: true
  28935. },
  28936. {
  28937. name: "Macro",
  28938. height: math.unit(250, "feet")
  28939. },
  28940. {
  28941. name: "Macro+",
  28942. height: math.unit(2500, "feet")
  28943. },
  28944. ]
  28945. ))
  28946. characterMakers.push(() => makeCharacter(
  28947. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28948. {
  28949. front: {
  28950. height: math.unit(3.02, "meters"),
  28951. weight: math.unit(500, "kg"),
  28952. name: "Front",
  28953. image: {
  28954. source: "./media/characters/drena/front.svg",
  28955. extra: 282 / 243,
  28956. bottom: 8 / 290
  28957. }
  28958. },
  28959. side: {
  28960. height: math.unit(3.02, "meters"),
  28961. weight: math.unit(500, "kg"),
  28962. name: "Side",
  28963. image: {
  28964. source: "./media/characters/drena/side.svg",
  28965. extra: 280 / 245,
  28966. bottom: 10 / 290
  28967. }
  28968. },
  28969. back: {
  28970. height: math.unit(3.02, "meters"),
  28971. weight: math.unit(500, "kg"),
  28972. name: "Back",
  28973. image: {
  28974. source: "./media/characters/drena/back.svg",
  28975. extra: 278 / 243,
  28976. bottom: 2 / 280
  28977. }
  28978. },
  28979. foot: {
  28980. height: math.unit(0.75, "meters"),
  28981. name: "Foot",
  28982. image: {
  28983. source: "./media/characters/drena/foot.svg"
  28984. }
  28985. },
  28986. maw: {
  28987. height: math.unit(0.82, "meters"),
  28988. name: "Maw",
  28989. image: {
  28990. source: "./media/characters/drena/maw.svg"
  28991. }
  28992. },
  28993. rump: {
  28994. height: math.unit(0.93, "meters"),
  28995. name: "Rump",
  28996. image: {
  28997. source: "./media/characters/drena/rump.svg"
  28998. }
  28999. },
  29000. },
  29001. [
  29002. {
  29003. name: "Normal",
  29004. height: math.unit(3.02, "meters"),
  29005. default: true
  29006. },
  29007. ]
  29008. ))
  29009. characterMakers.push(() => makeCharacter(
  29010. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29011. {
  29012. front: {
  29013. height: math.unit(6 + 4 / 12, "feet"),
  29014. weight: math.unit(250, "lb"),
  29015. name: "Front",
  29016. image: {
  29017. source: "./media/characters/remmyzilla/front.svg",
  29018. extra: 4033 / 3588,
  29019. bottom: 123 / 4156
  29020. }
  29021. },
  29022. back: {
  29023. height: math.unit(6 + 4 / 12, "feet"),
  29024. weight: math.unit(250, "lb"),
  29025. name: "Back",
  29026. image: {
  29027. source: "./media/characters/remmyzilla/back.svg",
  29028. extra: 2687 / 2555,
  29029. bottom: 48 / 2735
  29030. }
  29031. },
  29032. paw: {
  29033. height: math.unit(1.73, "feet"),
  29034. name: "Paw",
  29035. image: {
  29036. source: "./media/characters/remmyzilla/paw.svg"
  29037. }
  29038. },
  29039. maw: {
  29040. height: math.unit(1.73, "feet"),
  29041. name: "Maw",
  29042. image: {
  29043. source: "./media/characters/remmyzilla/maw.svg"
  29044. }
  29045. },
  29046. },
  29047. [
  29048. {
  29049. name: "Normal",
  29050. height: math.unit(6 + 4 / 12, "feet")
  29051. },
  29052. {
  29053. name: "Minimacro",
  29054. height: math.unit(12 + 8 / 12, "feet")
  29055. },
  29056. {
  29057. name: "Normal",
  29058. height: math.unit(640, "feet"),
  29059. default: true
  29060. },
  29061. {
  29062. name: "Megamacro",
  29063. height: math.unit(6400, "feet")
  29064. },
  29065. {
  29066. name: "Gigamacro",
  29067. height: math.unit(64000, "miles")
  29068. },
  29069. ]
  29070. ))
  29071. characterMakers.push(() => makeCharacter(
  29072. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29073. {
  29074. front: {
  29075. height: math.unit(2.5, "meters"),
  29076. weight: math.unit(300, "lb"),
  29077. name: "Front",
  29078. image: {
  29079. source: "./media/characters/lawrence/front.svg",
  29080. extra: 357 / 335,
  29081. bottom: 30 / 387
  29082. }
  29083. },
  29084. back: {
  29085. height: math.unit(2.5, "meters"),
  29086. weight: math.unit(300, "lb"),
  29087. name: "Back",
  29088. image: {
  29089. source: "./media/characters/lawrence/back.svg",
  29090. extra: 357 / 338,
  29091. bottom: 16 / 373
  29092. }
  29093. },
  29094. head: {
  29095. height: math.unit(0.9, "meter"),
  29096. name: "Head",
  29097. image: {
  29098. source: "./media/characters/lawrence/head.svg"
  29099. }
  29100. },
  29101. maw: {
  29102. height: math.unit(0.7, "meter"),
  29103. name: "Maw",
  29104. image: {
  29105. source: "./media/characters/lawrence/maw.svg"
  29106. }
  29107. },
  29108. footBottom: {
  29109. height: math.unit(0.5, "meter"),
  29110. name: "Foot (Bottom)",
  29111. image: {
  29112. source: "./media/characters/lawrence/foot-bottom.svg"
  29113. }
  29114. },
  29115. footTop: {
  29116. height: math.unit(0.5, "meter"),
  29117. name: "Foot (Top)",
  29118. image: {
  29119. source: "./media/characters/lawrence/foot-top.svg"
  29120. }
  29121. },
  29122. },
  29123. [
  29124. {
  29125. name: "Normal",
  29126. height: math.unit(2.5, "meters"),
  29127. default: true
  29128. },
  29129. {
  29130. name: "Macro",
  29131. height: math.unit(95, "meters")
  29132. },
  29133. {
  29134. name: "Megamacro",
  29135. height: math.unit(150, "km")
  29136. },
  29137. ]
  29138. ))
  29139. characterMakers.push(() => makeCharacter(
  29140. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29141. {
  29142. front: {
  29143. height: math.unit(4.2, "meters"),
  29144. name: "Front",
  29145. image: {
  29146. source: "./media/characters/sydney/front.svg",
  29147. extra: 1323 / 1277,
  29148. bottom: 111 / 1434
  29149. }
  29150. },
  29151. },
  29152. [
  29153. {
  29154. name: "Normal",
  29155. height: math.unit(4.2, "meters"),
  29156. default: true
  29157. },
  29158. ]
  29159. ))
  29160. characterMakers.push(() => makeCharacter(
  29161. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29162. {
  29163. back: {
  29164. height: math.unit(201, "feet"),
  29165. name: "Back",
  29166. image: {
  29167. source: "./media/characters/jessica/back.svg",
  29168. extra: 273 / 259,
  29169. bottom: 7 / 280
  29170. }
  29171. },
  29172. },
  29173. [
  29174. {
  29175. name: "Normal",
  29176. height: math.unit(201, "feet"),
  29177. default: true
  29178. },
  29179. {
  29180. name: "Megamacro",
  29181. height: math.unit(8, "miles")
  29182. },
  29183. ]
  29184. ))
  29185. characterMakers.push(() => makeCharacter(
  29186. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29187. {
  29188. side: {
  29189. height: math.unit(5.6, "m"),
  29190. weight: math.unit(8000, "kg"),
  29191. name: "Side",
  29192. image: {
  29193. source: "./media/characters/victoria/side.svg",
  29194. extra: 1542/1229,
  29195. bottom: 124/1666
  29196. }
  29197. },
  29198. maw: {
  29199. height: math.unit(7.14, "feet"),
  29200. name: "Maw",
  29201. image: {
  29202. source: "./media/characters/victoria/maw.svg"
  29203. }
  29204. },
  29205. },
  29206. [
  29207. {
  29208. name: "Normal",
  29209. height: math.unit(5.6, "m"),
  29210. default: true
  29211. },
  29212. ]
  29213. ))
  29214. characterMakers.push(() => makeCharacter(
  29215. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29216. {
  29217. front: {
  29218. height: math.unit(5 + 6 / 12, "feet"),
  29219. name: "Front",
  29220. image: {
  29221. source: "./media/characters/cat/front.svg",
  29222. extra: 1449/1295,
  29223. bottom: 34/1483
  29224. },
  29225. form: "cat",
  29226. default: true
  29227. },
  29228. back: {
  29229. height: math.unit(5 + 6 / 12, "feet"),
  29230. name: "Back",
  29231. image: {
  29232. source: "./media/characters/cat/back.svg",
  29233. extra: 1466/1301,
  29234. bottom: 19/1485
  29235. },
  29236. form: "cat"
  29237. },
  29238. taur: {
  29239. height: math.unit(7, "feet"),
  29240. name: "Taur",
  29241. image: {
  29242. source: "./media/characters/cat/taur.svg",
  29243. extra: 1389/1233,
  29244. bottom: 83/1472
  29245. },
  29246. form: "taur",
  29247. default: true
  29248. },
  29249. lucarioFront: {
  29250. height: math.unit(4, "feet"),
  29251. name: "Lucario (Front)",
  29252. image: {
  29253. source: "./media/characters/cat/lucario-front.svg",
  29254. extra: 1149/1019,
  29255. bottom: 84/1233
  29256. },
  29257. form: "lucario",
  29258. default: true
  29259. },
  29260. lucarioBack: {
  29261. height: math.unit(4, "feet"),
  29262. name: "Lucario (Back)",
  29263. image: {
  29264. source: "./media/characters/cat/lucario-back.svg",
  29265. extra: 1190/1059,
  29266. bottom: 33/1223
  29267. },
  29268. form: "lucario"
  29269. },
  29270. megaLucario: {
  29271. height: math.unit(4, "feet"),
  29272. name: "Mega Lucario",
  29273. image: {
  29274. source: "./media/characters/cat/mega-lucario.svg",
  29275. extra: 1515 / 1319,
  29276. bottom: 63 / 1578
  29277. },
  29278. form: "lucario"
  29279. },
  29280. nickit: {
  29281. height: math.unit(2, "feet"),
  29282. name: "Nickit",
  29283. image: {
  29284. source: "./media/characters/cat/nickit.svg",
  29285. extra: 1980 / 1585,
  29286. bottom: 102 / 2082
  29287. },
  29288. form: "nickit",
  29289. default: true
  29290. },
  29291. lopunnyFront: {
  29292. height: math.unit(5, "feet"),
  29293. name: "Lopunny (Front)",
  29294. image: {
  29295. source: "./media/characters/cat/lopunny-front.svg",
  29296. extra: 1782 / 1469,
  29297. bottom: 38 / 1820
  29298. },
  29299. form: "lopunny",
  29300. default: true
  29301. },
  29302. lopunnyBack: {
  29303. height: math.unit(5, "feet"),
  29304. name: "Lopunny (Back)",
  29305. image: {
  29306. source: "./media/characters/cat/lopunny-back.svg",
  29307. extra: 1660 / 1490,
  29308. bottom: 25 / 1685
  29309. },
  29310. form: "lopunny"
  29311. },
  29312. },
  29313. [
  29314. {
  29315. name: "Really small",
  29316. height: math.unit(1, "nm")
  29317. },
  29318. {
  29319. name: "Micro",
  29320. height: math.unit(5, "inches")
  29321. },
  29322. {
  29323. name: "Normal",
  29324. height: math.unit(5 + 6 / 12, "feet"),
  29325. default: true
  29326. },
  29327. {
  29328. name: "Macro",
  29329. height: math.unit(50, "feet")
  29330. },
  29331. {
  29332. name: "Macro+",
  29333. height: math.unit(150, "feet")
  29334. },
  29335. {
  29336. name: "Megamacro",
  29337. height: math.unit(100, "miles")
  29338. },
  29339. ]
  29340. ))
  29341. characterMakers.push(() => makeCharacter(
  29342. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29343. {
  29344. front: {
  29345. height: math.unit(63.4, "meters"),
  29346. weight: math.unit(3.28349e+6, "kilograms"),
  29347. name: "Front",
  29348. image: {
  29349. source: "./media/characters/kirina-violet/front.svg",
  29350. extra: 2812 / 2725,
  29351. bottom: 0 / 2812
  29352. }
  29353. },
  29354. back: {
  29355. height: math.unit(63.4, "meters"),
  29356. weight: math.unit(3.28349e+6, "kilograms"),
  29357. name: "Back",
  29358. image: {
  29359. source: "./media/characters/kirina-violet/back.svg",
  29360. extra: 2812 / 2725,
  29361. bottom: 0 / 2812
  29362. }
  29363. },
  29364. mouth: {
  29365. height: math.unit(4.35, "meters"),
  29366. name: "Mouth",
  29367. image: {
  29368. source: "./media/characters/kirina-violet/mouth.svg"
  29369. }
  29370. },
  29371. paw: {
  29372. height: math.unit(5.6, "meters"),
  29373. name: "Paw",
  29374. image: {
  29375. source: "./media/characters/kirina-violet/paw.svg"
  29376. }
  29377. },
  29378. tail: {
  29379. height: math.unit(18, "meters"),
  29380. name: "Tail",
  29381. image: {
  29382. source: "./media/characters/kirina-violet/tail.svg"
  29383. }
  29384. },
  29385. },
  29386. [
  29387. {
  29388. name: "Macro",
  29389. height: math.unit(63.4, "meters"),
  29390. default: true
  29391. },
  29392. ]
  29393. ))
  29394. characterMakers.push(() => makeCharacter(
  29395. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29396. {
  29397. front: {
  29398. height: math.unit(75, "feet"),
  29399. name: "Front",
  29400. image: {
  29401. source: "./media/characters/cat-gigachu/front.svg",
  29402. extra: 1239/1027,
  29403. bottom: 32/1271
  29404. }
  29405. },
  29406. back: {
  29407. height: math.unit(75, "feet"),
  29408. name: "Back",
  29409. image: {
  29410. source: "./media/characters/cat-gigachu/back.svg",
  29411. extra: 1229/1030,
  29412. bottom: 9/1238
  29413. }
  29414. },
  29415. },
  29416. [
  29417. {
  29418. name: "Dynamax",
  29419. height: math.unit(75, "feet"),
  29420. default: true
  29421. },
  29422. ]
  29423. ))
  29424. characterMakers.push(() => makeCharacter(
  29425. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29426. {
  29427. front: {
  29428. height: math.unit(6, "feet"),
  29429. weight: math.unit(150, "lb"),
  29430. name: "Front",
  29431. image: {
  29432. source: "./media/characters/sfaiyan/front.svg",
  29433. extra: 999 / 978,
  29434. bottom: 5 / 1004
  29435. }
  29436. },
  29437. },
  29438. [
  29439. {
  29440. name: "Normal",
  29441. height: math.unit(1.82, "meters")
  29442. },
  29443. {
  29444. name: "Giant",
  29445. height: math.unit(2.27, "km"),
  29446. default: true
  29447. },
  29448. ]
  29449. ))
  29450. characterMakers.push(() => makeCharacter(
  29451. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29452. {
  29453. front: {
  29454. height: math.unit(179, "cm"),
  29455. weight: math.unit(100, "kg"),
  29456. name: "Front",
  29457. image: {
  29458. source: "./media/characters/raunehkeli/front.svg",
  29459. extra: 1934 / 1926,
  29460. bottom: 0 / 1934
  29461. }
  29462. },
  29463. },
  29464. [
  29465. {
  29466. name: "Normal",
  29467. height: math.unit(179, "cm")
  29468. },
  29469. {
  29470. name: "Maximum",
  29471. height: math.unit(575, "meters"),
  29472. default: true
  29473. },
  29474. ]
  29475. ))
  29476. characterMakers.push(() => makeCharacter(
  29477. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29478. {
  29479. front: {
  29480. height: math.unit(6, "feet"),
  29481. weight: math.unit(150, "lb"),
  29482. name: "Front",
  29483. image: {
  29484. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29485. extra: 2625 / 2518,
  29486. bottom: 60 / 2685
  29487. }
  29488. },
  29489. },
  29490. [
  29491. {
  29492. name: "Normal",
  29493. height: math.unit(6 + 2 / 12, "feet")
  29494. },
  29495. {
  29496. name: "Macro",
  29497. height: math.unit(1180, "feet"),
  29498. default: true
  29499. },
  29500. ]
  29501. ))
  29502. characterMakers.push(() => makeCharacter(
  29503. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29504. {
  29505. front: {
  29506. height: math.unit(5 + 6 / 12, "feet"),
  29507. weight: math.unit(108, "lb"),
  29508. name: "Front",
  29509. image: {
  29510. source: "./media/characters/lilith-zott/front.svg",
  29511. extra: 2510 / 2238,
  29512. bottom: 100 / 2610
  29513. }
  29514. },
  29515. frontDressed: {
  29516. height: math.unit(5 + 6 / 12, "feet"),
  29517. weight: math.unit(108, "lb"),
  29518. name: "Front (Dressed)",
  29519. image: {
  29520. source: "./media/characters/lilith-zott/front-dressed.svg",
  29521. extra: 2510 / 2238,
  29522. bottom: 100 / 2610
  29523. }
  29524. },
  29525. },
  29526. [
  29527. {
  29528. name: "Normal",
  29529. height: math.unit(5 + 6 / 12, "feet")
  29530. },
  29531. {
  29532. name: "Macro",
  29533. height: math.unit(1030, "feet"),
  29534. default: true
  29535. },
  29536. ]
  29537. ))
  29538. characterMakers.push(() => makeCharacter(
  29539. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29540. {
  29541. front: {
  29542. height: math.unit(6, "feet"),
  29543. weight: math.unit(150, "lb"),
  29544. name: "Front",
  29545. image: {
  29546. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29547. extra: 2567 / 2435,
  29548. bottom: 39 / 2606
  29549. }
  29550. },
  29551. frontSuper: {
  29552. height: math.unit(6, "feet"),
  29553. name: "Front (Super)",
  29554. image: {
  29555. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29556. extra: 2567 / 2435,
  29557. bottom: 39 / 2606
  29558. }
  29559. },
  29560. },
  29561. [
  29562. {
  29563. name: "Normal",
  29564. height: math.unit(5 + 10 / 12, "feet")
  29565. },
  29566. {
  29567. name: "Macro",
  29568. height: math.unit(1100, "feet"),
  29569. default: true
  29570. },
  29571. ]
  29572. ))
  29573. characterMakers.push(() => makeCharacter(
  29574. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29575. {
  29576. front: {
  29577. height: math.unit(100, "miles"),
  29578. name: "Front",
  29579. image: {
  29580. source: "./media/characters/sona/front.svg",
  29581. extra: 2433 / 2201,
  29582. bottom: 53 / 2486
  29583. }
  29584. },
  29585. foot: {
  29586. height: math.unit(16.1, "miles"),
  29587. name: "Foot",
  29588. image: {
  29589. source: "./media/characters/sona/foot.svg"
  29590. }
  29591. },
  29592. },
  29593. [
  29594. {
  29595. name: "Macro",
  29596. height: math.unit(100, "miles"),
  29597. default: true
  29598. },
  29599. ]
  29600. ))
  29601. characterMakers.push(() => makeCharacter(
  29602. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29603. {
  29604. front: {
  29605. height: math.unit(6, "feet"),
  29606. weight: math.unit(150, "lb"),
  29607. name: "Front",
  29608. image: {
  29609. source: "./media/characters/bailey/front.svg",
  29610. extra: 1778 / 1724,
  29611. bottom: 30 / 1808
  29612. }
  29613. },
  29614. },
  29615. [
  29616. {
  29617. name: "Micro",
  29618. height: math.unit(4, "inches")
  29619. },
  29620. {
  29621. name: "Normal",
  29622. height: math.unit(5 + 5 / 12, "feet"),
  29623. default: true
  29624. },
  29625. {
  29626. name: "Macro",
  29627. height: math.unit(250, "feet")
  29628. },
  29629. {
  29630. name: "Megamacro",
  29631. height: math.unit(100, "miles")
  29632. },
  29633. ]
  29634. ))
  29635. characterMakers.push(() => makeCharacter(
  29636. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29637. {
  29638. front: {
  29639. height: math.unit(5 + 2 / 12, "feet"),
  29640. weight: math.unit(120, "lb"),
  29641. name: "Front",
  29642. image: {
  29643. source: "./media/characters/snaps/front.svg",
  29644. extra: 2370 / 2177,
  29645. bottom: 48 / 2418
  29646. }
  29647. },
  29648. back: {
  29649. height: math.unit(5 + 2 / 12, "feet"),
  29650. weight: math.unit(120, "lb"),
  29651. name: "Back",
  29652. image: {
  29653. source: "./media/characters/snaps/back.svg",
  29654. extra: 2408 / 2258,
  29655. bottom: 15 / 2423
  29656. }
  29657. },
  29658. },
  29659. [
  29660. {
  29661. name: "Micro",
  29662. height: math.unit(9, "inches")
  29663. },
  29664. {
  29665. name: "Normal",
  29666. height: math.unit(5 + 2 / 12, "feet"),
  29667. default: true
  29668. },
  29669. {
  29670. name: "Mini Macro",
  29671. height: math.unit(10, "feet")
  29672. },
  29673. ]
  29674. ))
  29675. characterMakers.push(() => makeCharacter(
  29676. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29677. {
  29678. front: {
  29679. height: math.unit(1.8, "meters"),
  29680. weight: math.unit(85, "kg"),
  29681. name: "Front",
  29682. image: {
  29683. source: "./media/characters/azteck/front.svg",
  29684. extra: 2815 / 2625,
  29685. bottom: 89 / 2904
  29686. }
  29687. },
  29688. back: {
  29689. height: math.unit(1.8, "meters"),
  29690. weight: math.unit(85, "kg"),
  29691. name: "Back",
  29692. image: {
  29693. source: "./media/characters/azteck/back.svg",
  29694. extra: 2856 / 2648,
  29695. bottom: 85 / 2941
  29696. }
  29697. },
  29698. frontDressed: {
  29699. height: math.unit(1.8, "meters"),
  29700. weight: math.unit(85, "kg"),
  29701. name: "Front (Dressed)",
  29702. image: {
  29703. source: "./media/characters/azteck/front-dressed.svg",
  29704. extra: 2147 / 2003,
  29705. bottom: 68 / 2215
  29706. }
  29707. },
  29708. head: {
  29709. height: math.unit(0.47, "meters"),
  29710. weight: math.unit(85, "kg"),
  29711. name: "Head",
  29712. image: {
  29713. source: "./media/characters/azteck/head.svg"
  29714. }
  29715. },
  29716. },
  29717. [
  29718. {
  29719. name: "Bite sized",
  29720. height: math.unit(16, "cm")
  29721. },
  29722. {
  29723. name: "Normal",
  29724. height: math.unit(1.8, "meters"),
  29725. default: true
  29726. },
  29727. ]
  29728. ))
  29729. characterMakers.push(() => makeCharacter(
  29730. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29731. {
  29732. front: {
  29733. height: math.unit(6, "feet"),
  29734. weight: math.unit(150, "lb"),
  29735. name: "Front",
  29736. image: {
  29737. source: "./media/characters/pidge/front.svg",
  29738. extra: 620 / 588,
  29739. bottom: 9 / 629
  29740. }
  29741. },
  29742. back: {
  29743. height: math.unit(6, "feet"),
  29744. weight: math.unit(150, "lb"),
  29745. name: "Back",
  29746. image: {
  29747. source: "./media/characters/pidge/back.svg",
  29748. extra: 620 / 588,
  29749. bottom: 9 / 629
  29750. }
  29751. },
  29752. },
  29753. [
  29754. {
  29755. name: "Macro",
  29756. height: math.unit(1, "mile"),
  29757. default: true
  29758. },
  29759. ]
  29760. ))
  29761. characterMakers.push(() => makeCharacter(
  29762. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29763. {
  29764. front: {
  29765. height: math.unit(6, "feet"),
  29766. weight: math.unit(150, "lb"),
  29767. name: "Front",
  29768. image: {
  29769. source: "./media/characters/en/front.svg",
  29770. extra: 1697 / 1563,
  29771. bottom: 103 / 1800
  29772. }
  29773. },
  29774. back: {
  29775. height: math.unit(6, "feet"),
  29776. weight: math.unit(150, "lb"),
  29777. name: "Back",
  29778. image: {
  29779. source: "./media/characters/en/back.svg",
  29780. extra: 1700 / 1570,
  29781. bottom: 51 / 1751
  29782. }
  29783. },
  29784. frontDressed: {
  29785. height: math.unit(6, "feet"),
  29786. weight: math.unit(150, "lb"),
  29787. name: "Front (Dressed)",
  29788. image: {
  29789. source: "./media/characters/en/front-dressed.svg",
  29790. extra: 1697 / 1563,
  29791. bottom: 103 / 1800
  29792. }
  29793. },
  29794. backDressed: {
  29795. height: math.unit(6, "feet"),
  29796. weight: math.unit(150, "lb"),
  29797. name: "Back (Dressed)",
  29798. image: {
  29799. source: "./media/characters/en/back-dressed.svg",
  29800. extra: 1700 / 1570,
  29801. bottom: 51 / 1751
  29802. }
  29803. },
  29804. },
  29805. [
  29806. {
  29807. name: "Macro",
  29808. height: math.unit(210, "feet"),
  29809. default: true
  29810. },
  29811. ]
  29812. ))
  29813. characterMakers.push(() => makeCharacter(
  29814. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29815. {
  29816. front: {
  29817. height: math.unit(6, "feet"),
  29818. weight: math.unit(150, "lb"),
  29819. name: "Front",
  29820. image: {
  29821. source: "./media/characters/haze-orris/front.svg",
  29822. extra: 3975 / 3525,
  29823. bottom: 137 / 4112
  29824. }
  29825. },
  29826. },
  29827. [
  29828. {
  29829. name: "Micro",
  29830. height: math.unit(150, "mm"),
  29831. default: true
  29832. },
  29833. ]
  29834. ))
  29835. characterMakers.push(() => makeCharacter(
  29836. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29837. {
  29838. front: {
  29839. height: math.unit(6, "feet"),
  29840. weight: math.unit(150, "lb"),
  29841. name: "Front",
  29842. image: {
  29843. source: "./media/characters/casselene-yaro/front.svg",
  29844. extra: 4721 / 4541,
  29845. bottom: 82 / 4803
  29846. }
  29847. },
  29848. back: {
  29849. height: math.unit(6, "feet"),
  29850. weight: math.unit(150, "lb"),
  29851. name: "Back",
  29852. image: {
  29853. source: "./media/characters/casselene-yaro/back.svg",
  29854. extra: 4569 / 4377,
  29855. bottom: 69 / 4638
  29856. }
  29857. },
  29858. frontDressed: {
  29859. height: math.unit(6, "feet"),
  29860. weight: math.unit(150, "lb"),
  29861. name: "Front-dressed",
  29862. image: {
  29863. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29864. extra: 4721 / 4541,
  29865. bottom: 82 / 4803
  29866. }
  29867. },
  29868. },
  29869. [
  29870. {
  29871. name: "Macro",
  29872. height: math.unit(190, "feet"),
  29873. default: true
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29879. {
  29880. front: {
  29881. height: math.unit(6, "feet"),
  29882. weight: math.unit(150, "lb"),
  29883. name: "Front",
  29884. image: {
  29885. source: "./media/characters/myra-rue-delore/front.svg",
  29886. extra: 1340 / 1308,
  29887. bottom: 67 / 1407
  29888. }
  29889. },
  29890. back: {
  29891. height: math.unit(6, "feet"),
  29892. weight: math.unit(150, "lb"),
  29893. name: "Back",
  29894. image: {
  29895. source: "./media/characters/myra-rue-delore/back.svg",
  29896. extra: 1341 / 1310,
  29897. bottom: 40 / 1381
  29898. }
  29899. },
  29900. frontDressed: {
  29901. height: math.unit(6, "feet"),
  29902. weight: math.unit(150, "lb"),
  29903. name: "Front (Dressed)",
  29904. image: {
  29905. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29906. extra: 1340 / 1308,
  29907. bottom: 67 / 1407
  29908. }
  29909. },
  29910. },
  29911. [
  29912. {
  29913. name: "Macro",
  29914. height: math.unit(150, "feet"),
  29915. default: true
  29916. },
  29917. ]
  29918. ))
  29919. characterMakers.push(() => makeCharacter(
  29920. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29921. {
  29922. front: {
  29923. height: math.unit(10, "feet"),
  29924. weight: math.unit(15015, "lb"),
  29925. name: "Front",
  29926. image: {
  29927. source: "./media/characters/fem!plat/front.svg",
  29928. extra: 2799 / 2604,
  29929. bottom: 149 / 2948
  29930. }
  29931. },
  29932. },
  29933. [
  29934. {
  29935. name: "Normal",
  29936. height: math.unit(10, "feet"),
  29937. default: true
  29938. },
  29939. {
  29940. name: "Macro",
  29941. height: math.unit(100, "feet")
  29942. },
  29943. {
  29944. name: "Megamacro",
  29945. height: math.unit(1000, "feet")
  29946. },
  29947. ]
  29948. ))
  29949. characterMakers.push(() => makeCharacter(
  29950. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29951. {
  29952. front: {
  29953. height: math.unit(15 + 5 / 12, "feet"),
  29954. weight: math.unit(4600, "lb"),
  29955. name: "Front",
  29956. image: {
  29957. source: "./media/characters/neapolitan-ananassa/front.svg",
  29958. extra: 2903 / 2736,
  29959. bottom: 0 / 2903
  29960. }
  29961. },
  29962. side: {
  29963. height: math.unit(15 + 5 / 12, "feet"),
  29964. weight: math.unit(4600, "lb"),
  29965. name: "Side",
  29966. image: {
  29967. source: "./media/characters/neapolitan-ananassa/side.svg",
  29968. extra: 2925 / 2719,
  29969. bottom: 0 / 2925
  29970. }
  29971. },
  29972. back: {
  29973. height: math.unit(15 + 5 / 12, "feet"),
  29974. weight: math.unit(4600, "lb"),
  29975. name: "Back",
  29976. image: {
  29977. source: "./media/characters/neapolitan-ananassa/back.svg",
  29978. extra: 2903 / 2736,
  29979. bottom: 0 / 2903
  29980. }
  29981. },
  29982. },
  29983. [
  29984. {
  29985. name: "Normal",
  29986. height: math.unit(15 + 5 / 12, "feet"),
  29987. default: true
  29988. },
  29989. {
  29990. name: "Post-Millenium",
  29991. height: math.unit(35 + 5 / 12, "feet")
  29992. },
  29993. {
  29994. name: "Post-Era",
  29995. height: math.unit(450 + 5 / 12, "feet")
  29996. },
  29997. ]
  29998. ))
  29999. characterMakers.push(() => makeCharacter(
  30000. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30001. {
  30002. front: {
  30003. height: math.unit(300, "meters"),
  30004. weight: math.unit(125000, "tonnes"),
  30005. name: "Front",
  30006. image: {
  30007. source: "./media/characters/pazuzu/front.svg",
  30008. extra: 877 / 794,
  30009. bottom: 47 / 924
  30010. }
  30011. },
  30012. },
  30013. [
  30014. {
  30015. name: "Macro",
  30016. height: math.unit(300, "meters"),
  30017. default: true
  30018. },
  30019. ]
  30020. ))
  30021. characterMakers.push(() => makeCharacter(
  30022. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30023. {
  30024. side: {
  30025. height: math.unit(10 + 7 / 12, "feet"),
  30026. weight: math.unit(2.5, "tons"),
  30027. name: "Side",
  30028. image: {
  30029. source: "./media/characters/aasha/side.svg",
  30030. extra: 1345 / 1245,
  30031. bottom: 111 / 1456
  30032. }
  30033. },
  30034. back: {
  30035. height: math.unit(10 + 7 / 12, "feet"),
  30036. weight: math.unit(2.5, "tons"),
  30037. name: "Back",
  30038. image: {
  30039. source: "./media/characters/aasha/back.svg",
  30040. extra: 1133 / 1057,
  30041. bottom: 257 / 1390
  30042. }
  30043. },
  30044. },
  30045. [
  30046. {
  30047. name: "Normal",
  30048. height: math.unit(10 + 7 / 12, "feet"),
  30049. default: true
  30050. },
  30051. ]
  30052. ))
  30053. characterMakers.push(() => makeCharacter(
  30054. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30055. {
  30056. front: {
  30057. height: math.unit(6 + 3 / 12, "feet"),
  30058. name: "Front",
  30059. image: {
  30060. source: "./media/characters/nevan/front.svg",
  30061. extra: 704 / 704,
  30062. bottom: 28 / 732
  30063. }
  30064. },
  30065. back: {
  30066. height: math.unit(6 + 3 / 12, "feet"),
  30067. name: "Back",
  30068. image: {
  30069. source: "./media/characters/nevan/back.svg",
  30070. extra: 714 / 714,
  30071. bottom: 21 / 735
  30072. }
  30073. },
  30074. frontFlaccid: {
  30075. height: math.unit(6 + 3 / 12, "feet"),
  30076. name: "Front (Flaccid)",
  30077. image: {
  30078. source: "./media/characters/nevan/front-flaccid.svg",
  30079. extra: 704 / 704,
  30080. bottom: 28 / 732
  30081. }
  30082. },
  30083. frontErect: {
  30084. height: math.unit(6 + 3 / 12, "feet"),
  30085. name: "Front (Erect)",
  30086. image: {
  30087. source: "./media/characters/nevan/front-erect.svg",
  30088. extra: 704 / 704,
  30089. bottom: 28 / 732
  30090. }
  30091. },
  30092. backFlaccid: {
  30093. height: math.unit(6 + 3 / 12, "feet"),
  30094. name: "Back (Flaccid)",
  30095. image: {
  30096. source: "./media/characters/nevan/back-flaccid.svg",
  30097. extra: 714 / 714,
  30098. bottom: 21 / 735
  30099. }
  30100. },
  30101. },
  30102. [
  30103. {
  30104. name: "Normal",
  30105. height: math.unit(6 + 3 / 12, "feet"),
  30106. default: true
  30107. },
  30108. ]
  30109. ))
  30110. characterMakers.push(() => makeCharacter(
  30111. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30112. {
  30113. front: {
  30114. height: math.unit(4, "feet"),
  30115. name: "Front",
  30116. image: {
  30117. source: "./media/characters/arhan/front.svg",
  30118. extra: 3368 / 3133,
  30119. bottom: 0 / 3368
  30120. }
  30121. },
  30122. side: {
  30123. height: math.unit(4, "feet"),
  30124. name: "Side",
  30125. image: {
  30126. source: "./media/characters/arhan/side.svg",
  30127. extra: 3347 / 3105,
  30128. bottom: 0 / 3347
  30129. }
  30130. },
  30131. tongue: {
  30132. height: math.unit(1.42, "feet"),
  30133. name: "Tongue",
  30134. image: {
  30135. source: "./media/characters/arhan/tongue.svg"
  30136. }
  30137. },
  30138. head: {
  30139. height: math.unit(0.85, "feet"),
  30140. name: "Head",
  30141. image: {
  30142. source: "./media/characters/arhan/head.svg"
  30143. }
  30144. },
  30145. },
  30146. [
  30147. {
  30148. name: "Normal",
  30149. height: math.unit(4, "feet"),
  30150. default: true
  30151. },
  30152. ]
  30153. ))
  30154. characterMakers.push(() => makeCharacter(
  30155. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30156. {
  30157. front: {
  30158. height: math.unit(5 + 7.5 / 12, "feet"),
  30159. weight: math.unit(120, "lb"),
  30160. name: "Front",
  30161. image: {
  30162. source: "./media/characters/digi-duncan/front.svg",
  30163. extra: 330 / 326,
  30164. bottom: 16 / 346
  30165. }
  30166. },
  30167. side: {
  30168. height: math.unit(5 + 7.5 / 12, "feet"),
  30169. weight: math.unit(120, "lb"),
  30170. name: "Side",
  30171. image: {
  30172. source: "./media/characters/digi-duncan/side.svg",
  30173. extra: 341 / 337,
  30174. bottom: 1 / 342
  30175. }
  30176. },
  30177. back: {
  30178. height: math.unit(5 + 7.5 / 12, "feet"),
  30179. weight: math.unit(120, "lb"),
  30180. name: "Back",
  30181. image: {
  30182. source: "./media/characters/digi-duncan/back.svg",
  30183. extra: 330 / 326,
  30184. bottom: 12 / 342
  30185. }
  30186. },
  30187. },
  30188. [
  30189. {
  30190. name: "Speck",
  30191. height: math.unit(0.25, "mm")
  30192. },
  30193. {
  30194. name: "Micro",
  30195. height: math.unit(5, "mm")
  30196. },
  30197. {
  30198. name: "Tiny",
  30199. height: math.unit(0.5, "inches"),
  30200. default: true
  30201. },
  30202. {
  30203. name: "Human",
  30204. height: math.unit(5 + 7.5 / 12, "feet")
  30205. },
  30206. {
  30207. name: "Minigiant",
  30208. height: math.unit(8 + 5.25, "feet")
  30209. },
  30210. {
  30211. name: "Giant",
  30212. height: math.unit(2000, "feet")
  30213. },
  30214. {
  30215. name: "Mega",
  30216. height: math.unit(371.1, "miles")
  30217. },
  30218. ]
  30219. ))
  30220. characterMakers.push(() => makeCharacter(
  30221. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30222. {
  30223. front: {
  30224. height: math.unit(2, "meters"),
  30225. weight: math.unit(350, "kg"),
  30226. name: "Front",
  30227. image: {
  30228. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30229. extra: 898 / 838,
  30230. bottom: 9 / 907
  30231. }
  30232. },
  30233. },
  30234. [
  30235. {
  30236. name: "Micro",
  30237. height: math.unit(8, "meters")
  30238. },
  30239. {
  30240. name: "Normal",
  30241. height: math.unit(50, "meters"),
  30242. default: true
  30243. },
  30244. {
  30245. name: "Macro",
  30246. height: math.unit(500, "meters")
  30247. },
  30248. ]
  30249. ))
  30250. characterMakers.push(() => makeCharacter(
  30251. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30252. {
  30253. front: {
  30254. height: math.unit(6 + 6 / 12, "feet"),
  30255. name: "Front",
  30256. image: {
  30257. source: "./media/characters/khardesh/front.svg",
  30258. extra: 1788/1596,
  30259. bottom: 66/1854
  30260. }
  30261. },
  30262. back: {
  30263. height: math.unit(6 + 6 / 12, "feet"),
  30264. name: "Back",
  30265. image: {
  30266. source: "./media/characters/khardesh/back.svg",
  30267. extra: 1781/1584,
  30268. bottom: 68/1849
  30269. }
  30270. },
  30271. },
  30272. [
  30273. {
  30274. name: "Normal",
  30275. height: math.unit(6 + 6 / 12, "feet"),
  30276. default: true
  30277. },
  30278. {
  30279. name: "Normal+",
  30280. height: math.unit(4, "meters")
  30281. },
  30282. {
  30283. name: "Macro",
  30284. height: math.unit(50, "meters")
  30285. },
  30286. {
  30287. name: "Macro+",
  30288. height: math.unit(100, "meters")
  30289. },
  30290. {
  30291. name: "Megamacro",
  30292. height: math.unit(20, "km")
  30293. },
  30294. ]
  30295. ))
  30296. characterMakers.push(() => makeCharacter(
  30297. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30298. {
  30299. front: {
  30300. height: math.unit(6, "feet"),
  30301. weight: math.unit(150, "lb"),
  30302. name: "Front",
  30303. image: {
  30304. source: "./media/characters/kosho/front.svg",
  30305. extra: 1847 / 1847,
  30306. bottom: 86 / 1933
  30307. }
  30308. },
  30309. },
  30310. [
  30311. {
  30312. name: "Second-stage micro",
  30313. height: math.unit(0.5, "inches")
  30314. },
  30315. {
  30316. name: "First-stage micro",
  30317. height: math.unit(6, "inches")
  30318. },
  30319. {
  30320. name: "Normal",
  30321. height: math.unit(6, "feet"),
  30322. default: true
  30323. },
  30324. {
  30325. name: "First-stage macro",
  30326. height: math.unit(72, "feet")
  30327. },
  30328. {
  30329. name: "Second-stage macro",
  30330. height: math.unit(864, "feet")
  30331. },
  30332. ]
  30333. ))
  30334. characterMakers.push(() => makeCharacter(
  30335. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30336. {
  30337. normal: {
  30338. height: math.unit(4 + 6 / 12, "feet"),
  30339. name: "Normal",
  30340. image: {
  30341. source: "./media/characters/hydra/normal.svg",
  30342. extra: 2833 / 2634,
  30343. bottom: 68 / 2901
  30344. }
  30345. },
  30346. smol: {
  30347. height: math.unit(0.705, "inches"),
  30348. name: "Smol",
  30349. image: {
  30350. source: "./media/characters/hydra/smol.svg",
  30351. extra: 2715 / 2540,
  30352. bottom: 0 / 2715
  30353. }
  30354. },
  30355. },
  30356. [
  30357. {
  30358. name: "Normal",
  30359. height: math.unit(4 + 6 / 12, "feet"),
  30360. default: true
  30361. }
  30362. ]
  30363. ))
  30364. characterMakers.push(() => makeCharacter(
  30365. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30366. {
  30367. front: {
  30368. height: math.unit(0.6, "cm"),
  30369. name: "Front",
  30370. image: {
  30371. source: "./media/characters/daz/front.svg",
  30372. extra: 1682 / 1164,
  30373. bottom: 42 / 1724
  30374. }
  30375. },
  30376. },
  30377. [
  30378. {
  30379. name: "Normal",
  30380. height: math.unit(0.6, "cm"),
  30381. default: true
  30382. },
  30383. ]
  30384. ))
  30385. characterMakers.push(() => makeCharacter(
  30386. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30387. {
  30388. front: {
  30389. height: math.unit(6, "feet"),
  30390. weight: math.unit(235, "lb"),
  30391. name: "Front",
  30392. image: {
  30393. source: "./media/characters/theo-pangolin/front.svg",
  30394. extra: 1996 / 1969,
  30395. bottom: 115 / 2111
  30396. }
  30397. },
  30398. back: {
  30399. height: math.unit(6, "feet"),
  30400. weight: math.unit(235, "lb"),
  30401. name: "Back",
  30402. image: {
  30403. source: "./media/characters/theo-pangolin/back.svg",
  30404. extra: 1979 / 1979,
  30405. bottom: 40 / 2019
  30406. }
  30407. },
  30408. feral: {
  30409. height: math.unit(2, "feet"),
  30410. weight: math.unit(30, "lb"),
  30411. name: "Feral",
  30412. image: {
  30413. source: "./media/characters/theo-pangolin/feral.svg",
  30414. extra: 803 / 791,
  30415. bottom: 181 / 984
  30416. }
  30417. },
  30418. footFive: {
  30419. height: math.unit(1.43, "feet"),
  30420. name: "Foot (Five Toes)",
  30421. image: {
  30422. source: "./media/characters/theo-pangolin/foot-five.svg"
  30423. }
  30424. },
  30425. footFour: {
  30426. height: math.unit(1.43, "feet"),
  30427. name: "Foot (Four Toes)",
  30428. image: {
  30429. source: "./media/characters/theo-pangolin/foot-four.svg"
  30430. }
  30431. },
  30432. handFour: {
  30433. height: math.unit(0.81, "feet"),
  30434. name: "Hand (Four Fingers)",
  30435. image: {
  30436. source: "./media/characters/theo-pangolin/hand-four.svg"
  30437. }
  30438. },
  30439. handThree: {
  30440. height: math.unit(0.81, "feet"),
  30441. name: "Hand (Three Fingers)",
  30442. image: {
  30443. source: "./media/characters/theo-pangolin/hand-three.svg"
  30444. }
  30445. },
  30446. headFront: {
  30447. height: math.unit(1.37, "feet"),
  30448. name: "Head (Front)",
  30449. image: {
  30450. source: "./media/characters/theo-pangolin/head-front.svg"
  30451. }
  30452. },
  30453. headSide: {
  30454. height: math.unit(1.43, "feet"),
  30455. name: "Head (Side)",
  30456. image: {
  30457. source: "./media/characters/theo-pangolin/head-side.svg"
  30458. }
  30459. },
  30460. tongue: {
  30461. height: math.unit(2.29, "feet"),
  30462. name: "Tongue",
  30463. image: {
  30464. source: "./media/characters/theo-pangolin/tongue.svg"
  30465. }
  30466. },
  30467. },
  30468. [
  30469. {
  30470. name: "Normal",
  30471. height: math.unit(6, "feet")
  30472. },
  30473. {
  30474. name: "Macro",
  30475. height: math.unit(400, "feet"),
  30476. default: true
  30477. },
  30478. ]
  30479. ))
  30480. characterMakers.push(() => makeCharacter(
  30481. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30482. {
  30483. front: {
  30484. height: math.unit(6, "inches"),
  30485. weight: math.unit(0.036, "kg"),
  30486. name: "Front",
  30487. image: {
  30488. source: "./media/characters/renée/front.svg",
  30489. extra: 900 / 886,
  30490. bottom: 8 / 908
  30491. }
  30492. },
  30493. },
  30494. [
  30495. {
  30496. name: "Nano",
  30497. height: math.unit(1, "nm")
  30498. },
  30499. {
  30500. name: "Micro",
  30501. height: math.unit(1, "mm")
  30502. },
  30503. {
  30504. name: "Normal",
  30505. height: math.unit(6, "inches")
  30506. },
  30507. {
  30508. name: "Macro",
  30509. height: math.unit(2000, "feet"),
  30510. default: true
  30511. },
  30512. {
  30513. name: "Megamacro",
  30514. height: math.unit(2, "km")
  30515. },
  30516. {
  30517. name: "Gigamacro",
  30518. height: math.unit(2000, "km")
  30519. },
  30520. {
  30521. name: "Teramacro",
  30522. height: math.unit(250000, "km")
  30523. },
  30524. ]
  30525. ))
  30526. characterMakers.push(() => makeCharacter(
  30527. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30528. {
  30529. front: {
  30530. height: math.unit(4, "meters"),
  30531. weight: math.unit(150, "kg"),
  30532. name: "Front",
  30533. image: {
  30534. source: "./media/characters/caledvwlch/front.svg",
  30535. extra: 1760 / 1551,
  30536. bottom: 28 / 1788
  30537. }
  30538. },
  30539. side: {
  30540. height: math.unit(4, "meters"),
  30541. weight: math.unit(150, "kg"),
  30542. name: "Side",
  30543. image: {
  30544. source: "./media/characters/caledvwlch/side.svg",
  30545. extra: 1605 / 1536,
  30546. bottom: 31 / 1636
  30547. }
  30548. },
  30549. back: {
  30550. height: math.unit(4, "meters"),
  30551. weight: math.unit(150, "kg"),
  30552. name: "Back",
  30553. image: {
  30554. source: "./media/characters/caledvwlch/back.svg",
  30555. extra: 1635 / 1565,
  30556. bottom: 27 / 1662
  30557. }
  30558. },
  30559. },
  30560. [
  30561. {
  30562. name: "\"Incognito\"",
  30563. height: math.unit(4, "meters")
  30564. },
  30565. {
  30566. name: "Small rampage",
  30567. height: math.unit(600, "meters")
  30568. },
  30569. {
  30570. name: "Mega",
  30571. height: math.unit(30, "km")
  30572. },
  30573. {
  30574. name: "Home-size",
  30575. height: math.unit(50, "km"),
  30576. default: true
  30577. },
  30578. {
  30579. name: "Giga",
  30580. height: math.unit(300, "km")
  30581. },
  30582. {
  30583. name: "Lounging",
  30584. height: math.unit(11000, "km")
  30585. },
  30586. {
  30587. name: "Planet snacking",
  30588. height: math.unit(2000000, "km")
  30589. },
  30590. ]
  30591. ))
  30592. characterMakers.push(() => makeCharacter(
  30593. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30594. {
  30595. front: {
  30596. height: math.unit(6, "feet"),
  30597. weight: math.unit(215, "lb"),
  30598. name: "Front",
  30599. image: {
  30600. source: "./media/characters/sapphire-svell/front.svg",
  30601. extra: 495 / 455,
  30602. bottom: 20 / 515
  30603. }
  30604. },
  30605. back: {
  30606. height: math.unit(6, "feet"),
  30607. weight: math.unit(216, "lb"),
  30608. name: "Back",
  30609. image: {
  30610. source: "./media/characters/sapphire-svell/back.svg",
  30611. extra: 497 / 477,
  30612. bottom: 7 / 504
  30613. }
  30614. },
  30615. maw: {
  30616. height: math.unit(1.57, "feet"),
  30617. name: "Maw",
  30618. image: {
  30619. source: "./media/characters/sapphire-svell/maw.svg"
  30620. }
  30621. },
  30622. foot: {
  30623. height: math.unit(1.07, "feet"),
  30624. name: "Foot",
  30625. image: {
  30626. source: "./media/characters/sapphire-svell/foot.svg"
  30627. }
  30628. },
  30629. toering: {
  30630. height: math.unit(1.7, "inch"),
  30631. name: "Toering",
  30632. image: {
  30633. source: "./media/characters/sapphire-svell/toering.svg"
  30634. }
  30635. },
  30636. },
  30637. [
  30638. {
  30639. name: "Normal",
  30640. height: math.unit(300, "feet"),
  30641. default: true
  30642. },
  30643. {
  30644. name: "Augmented",
  30645. height: math.unit(1250, "feet")
  30646. },
  30647. {
  30648. name: "Unleashed",
  30649. height: math.unit(3000, "feet")
  30650. },
  30651. ]
  30652. ))
  30653. characterMakers.push(() => makeCharacter(
  30654. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30655. {
  30656. side: {
  30657. height: math.unit(2 + 3 / 12, "feet"),
  30658. weight: math.unit(110, "lb"),
  30659. name: "Side",
  30660. image: {
  30661. source: "./media/characters/glitch-flux/side.svg",
  30662. extra: 997 / 805,
  30663. bottom: 20 / 1017
  30664. }
  30665. },
  30666. },
  30667. [
  30668. {
  30669. name: "Normal",
  30670. height: math.unit(2 + 3 / 12, "feet"),
  30671. default: true
  30672. },
  30673. ]
  30674. ))
  30675. characterMakers.push(() => makeCharacter(
  30676. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30677. {
  30678. front: {
  30679. height: math.unit(4, "meters"),
  30680. name: "Front",
  30681. image: {
  30682. source: "./media/characters/mid/front.svg",
  30683. extra: 507 / 476,
  30684. bottom: 17 / 524
  30685. }
  30686. },
  30687. back: {
  30688. height: math.unit(4, "meters"),
  30689. name: "Back",
  30690. image: {
  30691. source: "./media/characters/mid/back.svg",
  30692. extra: 519 / 487,
  30693. bottom: 7 / 526
  30694. }
  30695. },
  30696. stuck: {
  30697. height: math.unit(2.2, "meters"),
  30698. name: "Stuck",
  30699. image: {
  30700. source: "./media/characters/mid/stuck.svg",
  30701. extra: 1951 / 1869,
  30702. bottom: 88 / 2039
  30703. }
  30704. }
  30705. },
  30706. [
  30707. {
  30708. name: "Normal",
  30709. height: math.unit(4, "meters"),
  30710. default: true
  30711. },
  30712. {
  30713. name: "Big",
  30714. height: math.unit(10, "meters")
  30715. },
  30716. {
  30717. name: "Macro",
  30718. height: math.unit(800, "meters")
  30719. },
  30720. {
  30721. name: "Megamacro",
  30722. height: math.unit(100, "km")
  30723. },
  30724. {
  30725. name: "Overgrown",
  30726. height: math.unit(1, "parsec")
  30727. },
  30728. ]
  30729. ))
  30730. characterMakers.push(() => makeCharacter(
  30731. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30732. {
  30733. front: {
  30734. height: math.unit(2.5, "meters"),
  30735. weight: math.unit(225, "kg"),
  30736. name: "Front",
  30737. image: {
  30738. source: "./media/characters/iris/front.svg",
  30739. extra: 3348 / 3251,
  30740. bottom: 205 / 3553
  30741. }
  30742. },
  30743. maw: {
  30744. height: math.unit(0.56, "meter"),
  30745. name: "Maw",
  30746. image: {
  30747. source: "./media/characters/iris/maw.svg"
  30748. }
  30749. },
  30750. },
  30751. [
  30752. {
  30753. name: "Mewter cat",
  30754. height: math.unit(1.2, "meters")
  30755. },
  30756. {
  30757. name: "Minimacro",
  30758. height: math.unit(2.5, "meters"),
  30759. default: true
  30760. },
  30761. {
  30762. name: "Macro",
  30763. height: math.unit(180, "meters")
  30764. },
  30765. {
  30766. name: "Megamacro",
  30767. height: math.unit(2746, "meters")
  30768. },
  30769. ]
  30770. ))
  30771. characterMakers.push(() => makeCharacter(
  30772. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30773. {
  30774. front: {
  30775. height: math.unit(6, "feet"),
  30776. weight: math.unit(135, "lb"),
  30777. name: "Front",
  30778. image: {
  30779. source: "./media/characters/axel/front.svg",
  30780. extra: 908 / 908,
  30781. bottom: 58 / 966
  30782. }
  30783. },
  30784. side: {
  30785. height: math.unit(6, "feet"),
  30786. weight: math.unit(135, "lb"),
  30787. name: "Side",
  30788. image: {
  30789. source: "./media/characters/axel/side.svg",
  30790. extra: 958 / 958,
  30791. bottom: 11 / 969
  30792. }
  30793. },
  30794. back: {
  30795. height: math.unit(6, "feet"),
  30796. weight: math.unit(135, "lb"),
  30797. name: "Back",
  30798. image: {
  30799. source: "./media/characters/axel/back.svg",
  30800. extra: 887 / 887,
  30801. bottom: 34 / 921
  30802. }
  30803. },
  30804. head: {
  30805. height: math.unit(1.07, "feet"),
  30806. name: "Head",
  30807. image: {
  30808. source: "./media/characters/axel/head.svg"
  30809. }
  30810. },
  30811. beak: {
  30812. height: math.unit(1.4, "feet"),
  30813. name: "Beak",
  30814. image: {
  30815. source: "./media/characters/axel/beak.svg"
  30816. }
  30817. },
  30818. beakSide: {
  30819. height: math.unit(1.4, "feet"),
  30820. name: "Beak Side",
  30821. image: {
  30822. source: "./media/characters/axel/beak-side.svg"
  30823. }
  30824. },
  30825. sheath: {
  30826. height: math.unit(0.5, "feet"),
  30827. name: "Sheath",
  30828. image: {
  30829. source: "./media/characters/axel/sheath.svg"
  30830. }
  30831. },
  30832. dick: {
  30833. height: math.unit(0.98, "feet"),
  30834. name: "Dick",
  30835. image: {
  30836. source: "./media/characters/axel/dick.svg"
  30837. }
  30838. },
  30839. },
  30840. [
  30841. {
  30842. name: "Macro",
  30843. height: math.unit(68, "meters"),
  30844. default: true
  30845. },
  30846. ]
  30847. ))
  30848. characterMakers.push(() => makeCharacter(
  30849. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30850. {
  30851. front: {
  30852. height: math.unit(3.5, "meters"),
  30853. weight: math.unit(1200, "kg"),
  30854. name: "Front",
  30855. image: {
  30856. source: "./media/characters/joanna/front.svg",
  30857. extra: 1596 / 1488,
  30858. bottom: 29 / 1625
  30859. }
  30860. },
  30861. back: {
  30862. height: math.unit(3.5, "meters"),
  30863. weight: math.unit(1200, "kg"),
  30864. name: "Back",
  30865. image: {
  30866. source: "./media/characters/joanna/back.svg",
  30867. extra: 1594 / 1495,
  30868. bottom: 26 / 1620
  30869. }
  30870. },
  30871. frontShorts: {
  30872. height: math.unit(3.5, "meters"),
  30873. weight: math.unit(1200, "kg"),
  30874. name: "Front (Shorts)",
  30875. image: {
  30876. source: "./media/characters/joanna/front-shorts.svg",
  30877. extra: 1596 / 1488,
  30878. bottom: 29 / 1625
  30879. }
  30880. },
  30881. frontBiker: {
  30882. height: math.unit(3.5, "meters"),
  30883. weight: math.unit(1200, "kg"),
  30884. name: "Front (Biker)",
  30885. image: {
  30886. source: "./media/characters/joanna/front-biker.svg",
  30887. extra: 1596 / 1488,
  30888. bottom: 29 / 1625
  30889. }
  30890. },
  30891. backBiker: {
  30892. height: math.unit(3.5, "meters"),
  30893. weight: math.unit(1200, "kg"),
  30894. name: "Back (Biker)",
  30895. image: {
  30896. source: "./media/characters/joanna/back-biker.svg",
  30897. extra: 1594 / 1495,
  30898. bottom: 88 / 1682
  30899. }
  30900. },
  30901. bikeLeft: {
  30902. height: math.unit(2.4, "meters"),
  30903. weight: math.unit(1600, "kg"),
  30904. name: "Bike (Left)",
  30905. image: {
  30906. source: "./media/characters/joanna/bike-left.svg",
  30907. extra: 720 / 720,
  30908. bottom: 8 / 728
  30909. }
  30910. },
  30911. bikeRight: {
  30912. height: math.unit(2.4, "meters"),
  30913. weight: math.unit(1600, "kg"),
  30914. name: "Bike (Right)",
  30915. image: {
  30916. source: "./media/characters/joanna/bike-right.svg",
  30917. extra: 720 / 720,
  30918. bottom: 8 / 728
  30919. }
  30920. },
  30921. },
  30922. [
  30923. {
  30924. name: "Incognito",
  30925. height: math.unit(3.5, "meters")
  30926. },
  30927. {
  30928. name: "Casual Big",
  30929. height: math.unit(200, "meters")
  30930. },
  30931. {
  30932. name: "Macro",
  30933. height: math.unit(600, "meters")
  30934. },
  30935. {
  30936. name: "Original",
  30937. height: math.unit(20, "km"),
  30938. default: true
  30939. },
  30940. {
  30941. name: "Giga",
  30942. height: math.unit(400, "km")
  30943. },
  30944. {
  30945. name: "Lounging",
  30946. height: math.unit(1500, "km")
  30947. },
  30948. {
  30949. name: "Planetary",
  30950. height: math.unit(200000, "km")
  30951. },
  30952. ]
  30953. ))
  30954. characterMakers.push(() => makeCharacter(
  30955. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30956. {
  30957. front: {
  30958. height: math.unit(6, "feet"),
  30959. weight: math.unit(150, "lb"),
  30960. name: "Front",
  30961. image: {
  30962. source: "./media/characters/hugo-sigil/front.svg",
  30963. extra: 522 / 500,
  30964. bottom: 2 / 524
  30965. }
  30966. },
  30967. back: {
  30968. height: math.unit(6, "feet"),
  30969. weight: math.unit(150, "lb"),
  30970. name: "Back",
  30971. image: {
  30972. source: "./media/characters/hugo-sigil/back.svg",
  30973. extra: 519 / 495,
  30974. bottom: 5 / 524
  30975. }
  30976. },
  30977. maw: {
  30978. height: math.unit(1.4, "feet"),
  30979. weight: math.unit(150, "lb"),
  30980. name: "Maw",
  30981. image: {
  30982. source: "./media/characters/hugo-sigil/maw.svg"
  30983. }
  30984. },
  30985. feet: {
  30986. height: math.unit(1.56, "feet"),
  30987. weight: math.unit(150, "lb"),
  30988. name: "Feet",
  30989. image: {
  30990. source: "./media/characters/hugo-sigil/feet.svg",
  30991. extra: 177 / 177,
  30992. bottom: 12 / 189
  30993. }
  30994. },
  30995. },
  30996. [
  30997. {
  30998. name: "Normal",
  30999. height: math.unit(6, "feet")
  31000. },
  31001. {
  31002. name: "Macro",
  31003. height: math.unit(200, "feet"),
  31004. default: true
  31005. },
  31006. ]
  31007. ))
  31008. characterMakers.push(() => makeCharacter(
  31009. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31010. {
  31011. front: {
  31012. height: math.unit(6, "feet"),
  31013. weight: math.unit(150, "lb"),
  31014. name: "Front",
  31015. image: {
  31016. source: "./media/characters/peri/front.svg",
  31017. extra: 2354 / 2233,
  31018. bottom: 49 / 2403
  31019. }
  31020. },
  31021. },
  31022. [
  31023. {
  31024. name: "Really Small",
  31025. height: math.unit(1, "nm")
  31026. },
  31027. {
  31028. name: "Micro",
  31029. height: math.unit(4, "inches")
  31030. },
  31031. {
  31032. name: "Normal",
  31033. height: math.unit(7, "inches"),
  31034. default: true
  31035. },
  31036. {
  31037. name: "Macro",
  31038. height: math.unit(400, "feet")
  31039. },
  31040. {
  31041. name: "Megamacro",
  31042. height: math.unit(100, "miles")
  31043. },
  31044. ]
  31045. ))
  31046. characterMakers.push(() => makeCharacter(
  31047. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31048. {
  31049. frontSlim: {
  31050. height: math.unit(7, "feet"),
  31051. name: "Front (Slim)",
  31052. image: {
  31053. source: "./media/characters/issilora/front-slim.svg",
  31054. extra: 529 / 449,
  31055. bottom: 53 / 582
  31056. }
  31057. },
  31058. sideSlim: {
  31059. height: math.unit(7, "feet"),
  31060. name: "Side (Slim)",
  31061. image: {
  31062. source: "./media/characters/issilora/side-slim.svg",
  31063. extra: 570 / 480,
  31064. bottom: 30 / 600
  31065. }
  31066. },
  31067. backSlim: {
  31068. height: math.unit(7, "feet"),
  31069. name: "Back (Slim)",
  31070. image: {
  31071. source: "./media/characters/issilora/back-slim.svg",
  31072. extra: 537 / 455,
  31073. bottom: 46 / 583
  31074. }
  31075. },
  31076. frontBuff: {
  31077. height: math.unit(7, "feet"),
  31078. name: "Front (Buff)",
  31079. image: {
  31080. source: "./media/characters/issilora/front-buff.svg",
  31081. extra: 2310 / 2035,
  31082. bottom: 335 / 2645
  31083. }
  31084. },
  31085. head: {
  31086. height: math.unit(1.94, "feet"),
  31087. name: "Head",
  31088. image: {
  31089. source: "./media/characters/issilora/head.svg"
  31090. }
  31091. },
  31092. },
  31093. [
  31094. {
  31095. name: "Minimum",
  31096. height: math.unit(7, "feet")
  31097. },
  31098. {
  31099. name: "Comfortable",
  31100. height: math.unit(17, "feet")
  31101. },
  31102. {
  31103. name: "Fun Size",
  31104. height: math.unit(47, "feet")
  31105. },
  31106. {
  31107. name: "Natural Macro",
  31108. height: math.unit(137, "feet"),
  31109. default: true
  31110. },
  31111. {
  31112. name: "Maximum Kaiju",
  31113. height: math.unit(397, "feet")
  31114. },
  31115. ]
  31116. ))
  31117. characterMakers.push(() => makeCharacter(
  31118. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31119. {
  31120. front: {
  31121. height: math.unit(50 + 9/12, "feet"),
  31122. weight: math.unit(32.8, "tons"),
  31123. name: "Front",
  31124. image: {
  31125. source: "./media/characters/irb'iiritaahn/front.svg",
  31126. extra: 1878/1826,
  31127. bottom: 326/2204
  31128. }
  31129. },
  31130. back: {
  31131. height: math.unit(50 + 9/12, "feet"),
  31132. weight: math.unit(32.8, "tons"),
  31133. name: "Back",
  31134. image: {
  31135. source: "./media/characters/irb'iiritaahn/back.svg",
  31136. extra: 2052/2018,
  31137. bottom: 152/2204
  31138. }
  31139. },
  31140. head: {
  31141. height: math.unit(12.86, "feet"),
  31142. name: "Head",
  31143. image: {
  31144. source: "./media/characters/irb'iiritaahn/head.svg"
  31145. }
  31146. },
  31147. maw: {
  31148. height: math.unit(9.66, "feet"),
  31149. name: "Maw",
  31150. image: {
  31151. source: "./media/characters/irb'iiritaahn/maw.svg"
  31152. }
  31153. },
  31154. frontDick: {
  31155. height: math.unit(8.78461, "feet"),
  31156. name: "Front Dick",
  31157. image: {
  31158. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31159. }
  31160. },
  31161. rearDick: {
  31162. height: math.unit(8.78461, "feet"),
  31163. name: "Rear Dick",
  31164. image: {
  31165. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31166. }
  31167. },
  31168. rearDickUnfolded: {
  31169. height: math.unit(8.78, "feet"),
  31170. name: "Rear Dick (Unfolded)",
  31171. image: {
  31172. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31173. }
  31174. },
  31175. wings: {
  31176. height: math.unit(43, "feet"),
  31177. name: "Wings",
  31178. image: {
  31179. source: "./media/characters/irb'iiritaahn/wings.svg"
  31180. }
  31181. },
  31182. },
  31183. [
  31184. {
  31185. name: "Macro",
  31186. height: math.unit(50 + 9/12, "feet"),
  31187. default: true
  31188. },
  31189. ]
  31190. ))
  31191. characterMakers.push(() => makeCharacter(
  31192. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31193. {
  31194. front: {
  31195. height: math.unit(205, "cm"),
  31196. weight: math.unit(102, "kg"),
  31197. name: "Front",
  31198. image: {
  31199. source: "./media/characters/irbisgreif/front.svg",
  31200. extra: 785/706,
  31201. bottom: 13/798
  31202. }
  31203. },
  31204. back: {
  31205. height: math.unit(205, "cm"),
  31206. weight: math.unit(102, "kg"),
  31207. name: "Back",
  31208. image: {
  31209. source: "./media/characters/irbisgreif/back.svg",
  31210. extra: 713/701,
  31211. bottom: 26/739
  31212. }
  31213. },
  31214. frontDressed: {
  31215. height: math.unit(216, "cm"),
  31216. weight: math.unit(102, "kg"),
  31217. name: "Front-dressed",
  31218. image: {
  31219. source: "./media/characters/irbisgreif/front-dressed.svg",
  31220. extra: 902/776,
  31221. bottom: 14/916
  31222. }
  31223. },
  31224. sideDressed: {
  31225. height: math.unit(195, "cm"),
  31226. weight: math.unit(102, "kg"),
  31227. name: "Side-dressed",
  31228. image: {
  31229. source: "./media/characters/irbisgreif/side-dressed.svg",
  31230. extra: 788/688,
  31231. bottom: 21/809
  31232. }
  31233. },
  31234. backDressed: {
  31235. height: math.unit(216, "cm"),
  31236. weight: math.unit(102, "kg"),
  31237. name: "Back-dressed",
  31238. image: {
  31239. source: "./media/characters/irbisgreif/back-dressed.svg",
  31240. extra: 901/783,
  31241. bottom: 10/911
  31242. }
  31243. },
  31244. dick: {
  31245. height: math.unit(0.49, "feet"),
  31246. name: "Dick",
  31247. image: {
  31248. source: "./media/characters/irbisgreif/dick.svg"
  31249. }
  31250. },
  31251. wingTop: {
  31252. height: math.unit(1.93 , "feet"),
  31253. name: "Wing-top",
  31254. image: {
  31255. source: "./media/characters/irbisgreif/wing-top.svg"
  31256. }
  31257. },
  31258. wingBottom: {
  31259. height: math.unit(1.93 , "feet"),
  31260. name: "Wing-bottom",
  31261. image: {
  31262. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31263. }
  31264. },
  31265. },
  31266. [
  31267. {
  31268. name: "Normal",
  31269. height: math.unit(216, "cm"),
  31270. default: true
  31271. },
  31272. ]
  31273. ))
  31274. characterMakers.push(() => makeCharacter(
  31275. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31276. {
  31277. front: {
  31278. height: math.unit(6, "feet"),
  31279. weight: math.unit(150, "lb"),
  31280. name: "Front",
  31281. image: {
  31282. source: "./media/characters/pride/front.svg",
  31283. extra: 1299/1230,
  31284. bottom: 18/1317
  31285. }
  31286. },
  31287. },
  31288. [
  31289. {
  31290. name: "Normal",
  31291. height: math.unit(7, "feet")
  31292. },
  31293. {
  31294. name: "Mini-macro",
  31295. height: math.unit(11, "feet")
  31296. },
  31297. {
  31298. name: "Macro",
  31299. height: math.unit(15, "meters"),
  31300. default: true
  31301. },
  31302. {
  31303. name: "Macro+",
  31304. height: math.unit(40, "meters")
  31305. },
  31306. ]
  31307. ))
  31308. characterMakers.push(() => makeCharacter(
  31309. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31310. {
  31311. front: {
  31312. height: math.unit(4 + 2 / 12, "feet"),
  31313. weight: math.unit(95, "lb"),
  31314. name: "Front",
  31315. image: {
  31316. source: "./media/characters/vaelophis-nyx/front.svg",
  31317. extra: 2532/2330,
  31318. bottom: 0/2532
  31319. }
  31320. },
  31321. back: {
  31322. height: math.unit(4 + 2 / 12, "feet"),
  31323. weight: math.unit(95, "lb"),
  31324. name: "Back",
  31325. image: {
  31326. source: "./media/characters/vaelophis-nyx/back.svg",
  31327. extra: 2484/2361,
  31328. bottom: 0/2484
  31329. }
  31330. },
  31331. feralSide: {
  31332. height: math.unit(2 + 1/12, "feet"),
  31333. weight: math.unit(20, "lb"),
  31334. name: "Feral (Side)",
  31335. image: {
  31336. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31337. extra: 1721/1581,
  31338. bottom: 70/1791
  31339. }
  31340. },
  31341. feralLazing: {
  31342. height: math.unit(1.08, "feet"),
  31343. weight: math.unit(20, "lb"),
  31344. name: "Feral (Lazing)",
  31345. image: {
  31346. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31347. extra: 822/822,
  31348. bottom: 248/1070
  31349. }
  31350. },
  31351. ear: {
  31352. height: math.unit(0.416, "feet"),
  31353. name: "Ear",
  31354. image: {
  31355. source: "./media/characters/vaelophis-nyx/ear.svg"
  31356. }
  31357. },
  31358. eye: {
  31359. height: math.unit(0.0748, "feet"),
  31360. name: "Eye",
  31361. image: {
  31362. source: "./media/characters/vaelophis-nyx/eye.svg"
  31363. }
  31364. },
  31365. mouth: {
  31366. height: math.unit(0.378, "feet"),
  31367. name: "Mouth",
  31368. image: {
  31369. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31370. }
  31371. },
  31372. spade: {
  31373. height: math.unit(0.55, "feet"),
  31374. name: "Spade",
  31375. image: {
  31376. source: "./media/characters/vaelophis-nyx/spade.svg"
  31377. }
  31378. },
  31379. },
  31380. [
  31381. {
  31382. name: "Normal",
  31383. height: math.unit(4 + 2/12, "feet"),
  31384. default: true
  31385. },
  31386. ]
  31387. ))
  31388. characterMakers.push(() => makeCharacter(
  31389. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31390. {
  31391. front: {
  31392. height: math.unit(7, "feet"),
  31393. weight: math.unit(231, "lb"),
  31394. name: "Front",
  31395. image: {
  31396. source: "./media/characters/flux/front.svg",
  31397. extra: 919/871,
  31398. bottom: 0/919
  31399. }
  31400. },
  31401. back: {
  31402. height: math.unit(7, "feet"),
  31403. weight: math.unit(231, "lb"),
  31404. name: "Back",
  31405. image: {
  31406. source: "./media/characters/flux/back.svg",
  31407. extra: 1040/992,
  31408. bottom: 0/1040
  31409. }
  31410. },
  31411. frontDressed: {
  31412. height: math.unit(7, "feet"),
  31413. weight: math.unit(231, "lb"),
  31414. name: "Front (Dressed)",
  31415. image: {
  31416. source: "./media/characters/flux/front-dressed.svg",
  31417. extra: 919/871,
  31418. bottom: 0/919
  31419. }
  31420. },
  31421. feralSide: {
  31422. height: math.unit(5, "feet"),
  31423. weight: math.unit(150, "lb"),
  31424. name: "Feral (Side)",
  31425. image: {
  31426. source: "./media/characters/flux/feral-side.svg",
  31427. extra: 598/528,
  31428. bottom: 28/626
  31429. }
  31430. },
  31431. head: {
  31432. height: math.unit(1.585, "feet"),
  31433. name: "Head",
  31434. image: {
  31435. source: "./media/characters/flux/head.svg"
  31436. }
  31437. },
  31438. headSide: {
  31439. height: math.unit(1.74, "feet"),
  31440. name: "Head (Side)",
  31441. image: {
  31442. source: "./media/characters/flux/head-side.svg"
  31443. }
  31444. },
  31445. headSideFire: {
  31446. height: math.unit(1.76, "feet"),
  31447. name: "Head (Side, Fire)",
  31448. image: {
  31449. source: "./media/characters/flux/head-side-fire.svg"
  31450. }
  31451. },
  31452. },
  31453. [
  31454. {
  31455. name: "Normal",
  31456. height: math.unit(7, "feet"),
  31457. default: true
  31458. },
  31459. ]
  31460. ))
  31461. characterMakers.push(() => makeCharacter(
  31462. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31463. {
  31464. front: {
  31465. height: math.unit(9, "feet"),
  31466. weight: math.unit(1012, "lb"),
  31467. name: "Front",
  31468. image: {
  31469. source: "./media/characters/ulfra-lupae/front.svg",
  31470. extra: 1083/1011,
  31471. bottom: 67/1150
  31472. }
  31473. },
  31474. },
  31475. [
  31476. {
  31477. name: "Micro",
  31478. height: math.unit(6, "inches")
  31479. },
  31480. {
  31481. name: "Socializing",
  31482. height: math.unit(6 + 5/12, "feet")
  31483. },
  31484. {
  31485. name: "Normal",
  31486. height: math.unit(9, "feet"),
  31487. default: true
  31488. },
  31489. {
  31490. name: "Macro",
  31491. height: math.unit(150, "feet")
  31492. },
  31493. ]
  31494. ))
  31495. characterMakers.push(() => makeCharacter(
  31496. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31497. {
  31498. front: {
  31499. height: math.unit(5 + 2/12, "feet"),
  31500. weight: math.unit(120, "lb"),
  31501. name: "Front",
  31502. image: {
  31503. source: "./media/characters/timber/front.svg",
  31504. extra: 2814/2705,
  31505. bottom: 181/2995
  31506. }
  31507. },
  31508. },
  31509. [
  31510. {
  31511. name: "Normal",
  31512. height: math.unit(5 + 2/12, "feet"),
  31513. default: true
  31514. },
  31515. ]
  31516. ))
  31517. characterMakers.push(() => makeCharacter(
  31518. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31519. {
  31520. front: {
  31521. height: math.unit(5 + 7/12, "feet"),
  31522. weight: math.unit(220, "lb"),
  31523. name: "Front",
  31524. image: {
  31525. source: "./media/characters/nicki/front.svg",
  31526. extra: 453/419,
  31527. bottom: 7/460
  31528. }
  31529. },
  31530. frontAlt: {
  31531. height: math.unit(5 + 7/12, "feet"),
  31532. weight: math.unit(220, "lb"),
  31533. name: "Front-alt",
  31534. image: {
  31535. source: "./media/characters/nicki/front-alt.svg",
  31536. extra: 435/411,
  31537. bottom: 12/447
  31538. }
  31539. },
  31540. back: {
  31541. height: math.unit(5 + 7/12, "feet"),
  31542. weight: math.unit(220, "lb"),
  31543. name: "Back",
  31544. image: {
  31545. source: "./media/characters/nicki/back.svg",
  31546. extra: 440/413,
  31547. bottom: 19/459
  31548. }
  31549. },
  31550. taur: {
  31551. height: math.unit(7 + 6/12, "feet"),
  31552. weight: math.unit(700, "lb"),
  31553. name: "Taur",
  31554. image: {
  31555. source: "./media/characters/nicki/taur.svg",
  31556. extra: 975/773,
  31557. bottom: 0/975
  31558. }
  31559. },
  31560. frontNsfw: {
  31561. height: math.unit(5 + 7/12, "feet"),
  31562. weight: math.unit(220, "lb"),
  31563. name: "Front (NSFW)",
  31564. image: {
  31565. source: "./media/characters/nicki/front-nsfw.svg",
  31566. extra: 453/419,
  31567. bottom: 7/460
  31568. }
  31569. },
  31570. frontNsfwAlt: {
  31571. height: math.unit(5 + 7/12, "feet"),
  31572. weight: math.unit(220, "lb"),
  31573. name: "Front (Alt, NSFW)",
  31574. image: {
  31575. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31576. extra: 435/411,
  31577. bottom: 12/447
  31578. }
  31579. },
  31580. backNsfw: {
  31581. height: math.unit(5 + 7/12, "feet"),
  31582. weight: math.unit(220, "lb"),
  31583. name: "Back (NSFW)",
  31584. image: {
  31585. source: "./media/characters/nicki/back-nsfw.svg",
  31586. extra: 440/413,
  31587. bottom: 19/459
  31588. }
  31589. },
  31590. head: {
  31591. height: math.unit(2.1, "feet"),
  31592. name: "Head",
  31593. image: {
  31594. source: "./media/characters/nicki/head.svg"
  31595. }
  31596. },
  31597. paw: {
  31598. height: math.unit(1.88, "feet"),
  31599. name: "Paw",
  31600. image: {
  31601. source: "./media/characters/nicki/paw.svg"
  31602. }
  31603. },
  31604. },
  31605. [
  31606. {
  31607. name: "Normal",
  31608. height: math.unit(5 + 7/12, "feet"),
  31609. default: true
  31610. },
  31611. ]
  31612. ))
  31613. characterMakers.push(() => makeCharacter(
  31614. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31615. {
  31616. front: {
  31617. height: math.unit(7 + 10/12, "feet"),
  31618. weight: math.unit(3.5, "tons"),
  31619. name: "Front",
  31620. image: {
  31621. source: "./media/characters/lee/front.svg",
  31622. extra: 1773/1615,
  31623. bottom: 86/1859
  31624. }
  31625. },
  31626. hand: {
  31627. height: math.unit(1.78, "feet"),
  31628. name: "Hand",
  31629. image: {
  31630. source: "./media/characters/lee/hand.svg"
  31631. }
  31632. },
  31633. maw: {
  31634. height: math.unit(1.18, "feet"),
  31635. name: "Maw",
  31636. image: {
  31637. source: "./media/characters/lee/maw.svg"
  31638. }
  31639. },
  31640. },
  31641. [
  31642. {
  31643. name: "Normal",
  31644. height: math.unit(7 + 10/12, "feet"),
  31645. default: true
  31646. },
  31647. ]
  31648. ))
  31649. characterMakers.push(() => makeCharacter(
  31650. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31651. {
  31652. front: {
  31653. height: math.unit(9, "feet"),
  31654. name: "Front",
  31655. image: {
  31656. source: "./media/characters/guti/front.svg",
  31657. extra: 4551/4355,
  31658. bottom: 123/4674
  31659. }
  31660. },
  31661. tongue: {
  31662. height: math.unit(1, "feet"),
  31663. name: "Tongue",
  31664. image: {
  31665. source: "./media/characters/guti/tongue.svg"
  31666. }
  31667. },
  31668. paw: {
  31669. height: math.unit(1.18, "feet"),
  31670. name: "Paw",
  31671. image: {
  31672. source: "./media/characters/guti/paw.svg"
  31673. }
  31674. },
  31675. },
  31676. [
  31677. {
  31678. name: "Normal",
  31679. height: math.unit(9, "feet"),
  31680. default: true
  31681. },
  31682. ]
  31683. ))
  31684. characterMakers.push(() => makeCharacter(
  31685. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31686. {
  31687. side: {
  31688. height: math.unit(5, "meters"),
  31689. name: "Side",
  31690. image: {
  31691. source: "./media/characters/vesper/side.svg",
  31692. extra: 1605/1518,
  31693. bottom: 0/1605
  31694. }
  31695. },
  31696. },
  31697. [
  31698. {
  31699. name: "Small",
  31700. height: math.unit(5, "meters")
  31701. },
  31702. {
  31703. name: "Sage",
  31704. height: math.unit(100, "meters"),
  31705. default: true
  31706. },
  31707. {
  31708. name: "Fun Size",
  31709. height: math.unit(600, "meters")
  31710. },
  31711. {
  31712. name: "Goddess",
  31713. height: math.unit(20000, "km")
  31714. },
  31715. {
  31716. name: "Maximum",
  31717. height: math.unit(5, "galaxies")
  31718. },
  31719. ]
  31720. ))
  31721. characterMakers.push(() => makeCharacter(
  31722. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31723. {
  31724. front: {
  31725. height: math.unit(6 + 3/12, "feet"),
  31726. weight: math.unit(190, "lb"),
  31727. name: "Front",
  31728. image: {
  31729. source: "./media/characters/gawain/front.svg",
  31730. extra: 2222/2139,
  31731. bottom: 90/2312
  31732. }
  31733. },
  31734. back: {
  31735. height: math.unit(6 + 3/12, "feet"),
  31736. weight: math.unit(190, "lb"),
  31737. name: "Back",
  31738. image: {
  31739. source: "./media/characters/gawain/back.svg",
  31740. extra: 2199/2111,
  31741. bottom: 73/2272
  31742. }
  31743. },
  31744. },
  31745. [
  31746. {
  31747. name: "Normal",
  31748. height: math.unit(6 + 3/12, "feet"),
  31749. default: true
  31750. },
  31751. ]
  31752. ))
  31753. characterMakers.push(() => makeCharacter(
  31754. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31755. {
  31756. side: {
  31757. height: math.unit(3.5, "meters"),
  31758. weight: math.unit(16000, "lb"),
  31759. name: "Side",
  31760. image: {
  31761. source: "./media/characters/dascalti/side.svg",
  31762. extra: 392/273,
  31763. bottom: 47/439
  31764. }
  31765. },
  31766. breath: {
  31767. height: math.unit(7.4, "feet"),
  31768. name: "Breath",
  31769. image: {
  31770. source: "./media/characters/dascalti/breath.svg"
  31771. }
  31772. },
  31773. fed: {
  31774. height: math.unit(3.6, "meters"),
  31775. weight: math.unit(16000, "lb"),
  31776. name: "Fed",
  31777. image: {
  31778. source: "./media/characters/dascalti/fed.svg",
  31779. extra: 1419/820,
  31780. bottom: 95/1514
  31781. }
  31782. },
  31783. },
  31784. [
  31785. {
  31786. name: "Normal",
  31787. height: math.unit(3.5, "meters"),
  31788. default: true
  31789. },
  31790. ]
  31791. ))
  31792. characterMakers.push(() => makeCharacter(
  31793. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31794. {
  31795. front: {
  31796. height: math.unit(3 + 5/12, "feet"),
  31797. name: "Front",
  31798. image: {
  31799. source: "./media/characters/mauve/front.svg",
  31800. extra: 1126/1033,
  31801. bottom: 65/1191
  31802. }
  31803. },
  31804. side: {
  31805. height: math.unit(3 + 5/12, "feet"),
  31806. name: "Side",
  31807. image: {
  31808. source: "./media/characters/mauve/side.svg",
  31809. extra: 1089/1001,
  31810. bottom: 29/1118
  31811. }
  31812. },
  31813. back: {
  31814. height: math.unit(3 + 5/12, "feet"),
  31815. name: "Back",
  31816. image: {
  31817. source: "./media/characters/mauve/back.svg",
  31818. extra: 1173/1053,
  31819. bottom: 109/1282
  31820. }
  31821. },
  31822. },
  31823. [
  31824. {
  31825. name: "Normal",
  31826. height: math.unit(3 + 5/12, "feet"),
  31827. default: true
  31828. },
  31829. ]
  31830. ))
  31831. characterMakers.push(() => makeCharacter(
  31832. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31833. {
  31834. front: {
  31835. height: math.unit(6 + 3/12, "feet"),
  31836. weight: math.unit(430, "lb"),
  31837. name: "Front",
  31838. image: {
  31839. source: "./media/characters/carlos/front.svg",
  31840. extra: 1964/1913,
  31841. bottom: 70/2034
  31842. }
  31843. },
  31844. },
  31845. [
  31846. {
  31847. name: "Normal",
  31848. height: math.unit(6 + 3/12, "feet"),
  31849. default: true
  31850. },
  31851. ]
  31852. ))
  31853. characterMakers.push(() => makeCharacter(
  31854. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31855. {
  31856. back: {
  31857. height: math.unit(5 + 10/12, "feet"),
  31858. weight: math.unit(200, "lb"),
  31859. name: "Back",
  31860. image: {
  31861. source: "./media/characters/jax/back.svg",
  31862. extra: 764/739,
  31863. bottom: 25/789
  31864. }
  31865. },
  31866. },
  31867. [
  31868. {
  31869. name: "Normal",
  31870. height: math.unit(5 + 10/12, "feet"),
  31871. default: true
  31872. },
  31873. ]
  31874. ))
  31875. characterMakers.push(() => makeCharacter(
  31876. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31877. {
  31878. front: {
  31879. height: math.unit(8, "feet"),
  31880. weight: math.unit(250, "lb"),
  31881. name: "Front",
  31882. image: {
  31883. source: "./media/characters/eikthynir/front.svg",
  31884. extra: 1332/1166,
  31885. bottom: 82/1414
  31886. }
  31887. },
  31888. back: {
  31889. height: math.unit(8, "feet"),
  31890. weight: math.unit(250, "lb"),
  31891. name: "Back",
  31892. image: {
  31893. source: "./media/characters/eikthynir/back.svg",
  31894. extra: 1342/1190,
  31895. bottom: 19/1361
  31896. }
  31897. },
  31898. dick: {
  31899. height: math.unit(2.35, "feet"),
  31900. name: "Dick",
  31901. image: {
  31902. source: "./media/characters/eikthynir/dick.svg"
  31903. }
  31904. },
  31905. },
  31906. [
  31907. {
  31908. name: "Normal",
  31909. height: math.unit(8, "feet"),
  31910. default: true
  31911. },
  31912. ]
  31913. ))
  31914. characterMakers.push(() => makeCharacter(
  31915. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31916. {
  31917. front: {
  31918. height: math.unit(99, "meters"),
  31919. weight: math.unit(13000, "tons"),
  31920. name: "Front",
  31921. image: {
  31922. source: "./media/characters/zlmos/front.svg",
  31923. extra: 2202/1992,
  31924. bottom: 315/2517
  31925. }
  31926. },
  31927. },
  31928. [
  31929. {
  31930. name: "Macro",
  31931. height: math.unit(99, "meters"),
  31932. default: true
  31933. },
  31934. ]
  31935. ))
  31936. characterMakers.push(() => makeCharacter(
  31937. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31938. {
  31939. front: {
  31940. height: math.unit(6 + 5/12, "feet"),
  31941. name: "Front",
  31942. image: {
  31943. source: "./media/characters/purri/front.svg",
  31944. extra: 1698/1610,
  31945. bottom: 32/1730
  31946. }
  31947. },
  31948. frontAlt: {
  31949. height: math.unit(6 + 5/12, "feet"),
  31950. name: "Front (Alt)",
  31951. image: {
  31952. source: "./media/characters/purri/front-alt.svg",
  31953. extra: 450/420,
  31954. bottom: 26/476
  31955. }
  31956. },
  31957. boots: {
  31958. height: math.unit(5.5, "feet"),
  31959. name: "Boots",
  31960. image: {
  31961. source: "./media/characters/purri/boots.svg",
  31962. extra: 905/853,
  31963. bottom: 18/923
  31964. }
  31965. },
  31966. lying: {
  31967. height: math.unit(2, "feet"),
  31968. name: "Lying",
  31969. image: {
  31970. source: "./media/characters/purri/lying.svg",
  31971. extra: 940/843,
  31972. bottom: 146/1086
  31973. }
  31974. },
  31975. devious: {
  31976. height: math.unit(1.77, "feet"),
  31977. name: "Devious",
  31978. image: {
  31979. source: "./media/characters/purri/devious.svg",
  31980. extra: 1440/1155,
  31981. bottom: 147/1587
  31982. }
  31983. },
  31984. bean: {
  31985. height: math.unit(1.94, "feet"),
  31986. name: "Bean",
  31987. image: {
  31988. source: "./media/characters/purri/bean.svg"
  31989. }
  31990. },
  31991. },
  31992. [
  31993. {
  31994. name: "Micro",
  31995. height: math.unit(1, "mm")
  31996. },
  31997. {
  31998. name: "Normal",
  31999. height: math.unit(6 + 5/12, "feet"),
  32000. default: true
  32001. },
  32002. {
  32003. name: "Macro :3c",
  32004. height: math.unit(2, "miles")
  32005. },
  32006. ]
  32007. ))
  32008. characterMakers.push(() => makeCharacter(
  32009. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32010. {
  32011. front: {
  32012. height: math.unit(6 + 2/12, "feet"),
  32013. weight: math.unit(250, "lb"),
  32014. name: "Front",
  32015. image: {
  32016. source: "./media/characters/moonlight/front.svg",
  32017. extra: 1044/908,
  32018. bottom: 56/1100
  32019. }
  32020. },
  32021. feral: {
  32022. height: math.unit(3 + 1/12, "feet"),
  32023. weight: math.unit(50, "kg"),
  32024. name: "Feral",
  32025. image: {
  32026. source: "./media/characters/moonlight/feral.svg",
  32027. extra: 3705/2791,
  32028. bottom: 145/3850
  32029. }
  32030. },
  32031. paw: {
  32032. height: math.unit(1, "feet"),
  32033. name: "Paw",
  32034. image: {
  32035. source: "./media/characters/moonlight/paw.svg"
  32036. }
  32037. },
  32038. paws: {
  32039. height: math.unit(0.98, "feet"),
  32040. name: "Paws",
  32041. image: {
  32042. source: "./media/characters/moonlight/paws.svg",
  32043. extra: 939/939,
  32044. bottom: 50/989
  32045. }
  32046. },
  32047. mouth: {
  32048. height: math.unit(0.48, "feet"),
  32049. name: "Mouth",
  32050. image: {
  32051. source: "./media/characters/moonlight/mouth.svg"
  32052. }
  32053. },
  32054. dick: {
  32055. height: math.unit(1.46, "feet"),
  32056. name: "Dick",
  32057. image: {
  32058. source: "./media/characters/moonlight/dick.svg"
  32059. }
  32060. },
  32061. },
  32062. [
  32063. {
  32064. name: "Normal",
  32065. height: math.unit(6 + 2/12, "feet"),
  32066. default: true
  32067. },
  32068. {
  32069. name: "Macro",
  32070. height: math.unit(300, "feet")
  32071. },
  32072. {
  32073. name: "Macro+",
  32074. height: math.unit(1, "mile")
  32075. },
  32076. {
  32077. name: "Mt. Moon",
  32078. height: math.unit(5, "miles")
  32079. },
  32080. {
  32081. name: "Megamacro",
  32082. height: math.unit(15, "miles")
  32083. },
  32084. ]
  32085. ))
  32086. characterMakers.push(() => makeCharacter(
  32087. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32088. {
  32089. back: {
  32090. height: math.unit(6, "feet"),
  32091. weight: math.unit(150, "lb"),
  32092. name: "Back",
  32093. image: {
  32094. source: "./media/characters/sylen/back.svg",
  32095. extra: 1335/1273,
  32096. bottom: 107/1442
  32097. }
  32098. },
  32099. },
  32100. [
  32101. {
  32102. name: "Normal",
  32103. height: math.unit(5 + 5/12, "feet")
  32104. },
  32105. {
  32106. name: "Megamacro",
  32107. height: math.unit(3, "miles"),
  32108. default: true
  32109. },
  32110. ]
  32111. ))
  32112. characterMakers.push(() => makeCharacter(
  32113. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32114. {
  32115. front: {
  32116. height: math.unit(6, "feet"),
  32117. weight: math.unit(190, "lb"),
  32118. name: "Front",
  32119. image: {
  32120. source: "./media/characters/huttser/front.svg",
  32121. extra: 1152/1058,
  32122. bottom: 23/1175
  32123. }
  32124. },
  32125. side: {
  32126. height: math.unit(6, "feet"),
  32127. weight: math.unit(190, "lb"),
  32128. name: "Side",
  32129. image: {
  32130. source: "./media/characters/huttser/side.svg",
  32131. extra: 1174/1065,
  32132. bottom: 18/1192
  32133. }
  32134. },
  32135. back: {
  32136. height: math.unit(6, "feet"),
  32137. weight: math.unit(190, "lb"),
  32138. name: "Back",
  32139. image: {
  32140. source: "./media/characters/huttser/back.svg",
  32141. extra: 1158/1056,
  32142. bottom: 12/1170
  32143. }
  32144. },
  32145. },
  32146. [
  32147. ]
  32148. ))
  32149. characterMakers.push(() => makeCharacter(
  32150. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32151. {
  32152. side: {
  32153. height: math.unit(12 + 9/12, "feet"),
  32154. weight: math.unit(15000, "lb"),
  32155. name: "Side",
  32156. image: {
  32157. source: "./media/characters/faan/side.svg",
  32158. extra: 2747/2697,
  32159. bottom: 0/2747
  32160. }
  32161. },
  32162. front: {
  32163. height: math.unit(12 + 9/12, "feet"),
  32164. weight: math.unit(15000, "lb"),
  32165. name: "Front",
  32166. image: {
  32167. source: "./media/characters/faan/front.svg",
  32168. extra: 607/571,
  32169. bottom: 24/631
  32170. }
  32171. },
  32172. head: {
  32173. height: math.unit(2.85, "feet"),
  32174. name: "Head",
  32175. image: {
  32176. source: "./media/characters/faan/head.svg"
  32177. }
  32178. },
  32179. headAlt: {
  32180. height: math.unit(3.13, "feet"),
  32181. name: "Head-alt",
  32182. image: {
  32183. source: "./media/characters/faan/head-alt.svg"
  32184. }
  32185. },
  32186. },
  32187. [
  32188. {
  32189. name: "Normal",
  32190. height: math.unit(12 + 9/12, "feet"),
  32191. default: true
  32192. },
  32193. ]
  32194. ))
  32195. characterMakers.push(() => makeCharacter(
  32196. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32197. {
  32198. front: {
  32199. height: math.unit(6, "feet"),
  32200. weight: math.unit(300, "lb"),
  32201. name: "Front",
  32202. image: {
  32203. source: "./media/characters/tanio/front.svg",
  32204. extra: 711/673,
  32205. bottom: 25/736
  32206. }
  32207. },
  32208. },
  32209. [
  32210. {
  32211. name: "Normal",
  32212. height: math.unit(6, "feet"),
  32213. default: true
  32214. },
  32215. ]
  32216. ))
  32217. characterMakers.push(() => makeCharacter(
  32218. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32219. {
  32220. front: {
  32221. height: math.unit(3, "inches"),
  32222. name: "Front",
  32223. image: {
  32224. source: "./media/characters/noboru/front.svg",
  32225. extra: 1039/932,
  32226. bottom: 18/1057
  32227. }
  32228. },
  32229. },
  32230. [
  32231. {
  32232. name: "Micro",
  32233. height: math.unit(3, "inches"),
  32234. default: true
  32235. },
  32236. ]
  32237. ))
  32238. characterMakers.push(() => makeCharacter(
  32239. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32240. {
  32241. front: {
  32242. height: math.unit(1.85, "meters"),
  32243. weight: math.unit(80, "kg"),
  32244. name: "Front",
  32245. image: {
  32246. source: "./media/characters/daniel-barrett/front.svg",
  32247. extra: 355/337,
  32248. bottom: 9/364
  32249. }
  32250. },
  32251. },
  32252. [
  32253. {
  32254. name: "Pico",
  32255. height: math.unit(0.0433, "mm")
  32256. },
  32257. {
  32258. name: "Nano",
  32259. height: math.unit(1.5, "mm")
  32260. },
  32261. {
  32262. name: "Micro",
  32263. height: math.unit(5.3, "cm"),
  32264. default: true
  32265. },
  32266. {
  32267. name: "Normal",
  32268. height: math.unit(1.85, "meters")
  32269. },
  32270. {
  32271. name: "Macro",
  32272. height: math.unit(64.7, "meters")
  32273. },
  32274. {
  32275. name: "Megamacro",
  32276. height: math.unit(2.26, "km")
  32277. },
  32278. {
  32279. name: "Gigamacro",
  32280. height: math.unit(79, "km")
  32281. },
  32282. {
  32283. name: "Teramacro",
  32284. height: math.unit(2765, "km")
  32285. },
  32286. {
  32287. name: "Petamacro",
  32288. height: math.unit(96678, "km")
  32289. },
  32290. ]
  32291. ))
  32292. characterMakers.push(() => makeCharacter(
  32293. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32294. {
  32295. front: {
  32296. height: math.unit(30, "meters"),
  32297. weight: math.unit(400, "tons"),
  32298. name: "Front",
  32299. image: {
  32300. source: "./media/characters/zeel/front.svg",
  32301. extra: 2599/2599,
  32302. bottom: 226/2825
  32303. }
  32304. },
  32305. },
  32306. [
  32307. {
  32308. name: "Macro",
  32309. height: math.unit(30, "meters"),
  32310. default: true
  32311. },
  32312. ]
  32313. ))
  32314. characterMakers.push(() => makeCharacter(
  32315. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32316. {
  32317. front: {
  32318. height: math.unit(6 + 7/12, "feet"),
  32319. weight: math.unit(210, "lb"),
  32320. name: "Front",
  32321. image: {
  32322. source: "./media/characters/tarn/front.svg",
  32323. extra: 3517/3220,
  32324. bottom: 91/3608
  32325. }
  32326. },
  32327. back: {
  32328. height: math.unit(6 + 7/12, "feet"),
  32329. weight: math.unit(210, "lb"),
  32330. name: "Back",
  32331. image: {
  32332. source: "./media/characters/tarn/back.svg",
  32333. extra: 3566/3241,
  32334. bottom: 34/3600
  32335. }
  32336. },
  32337. dick: {
  32338. height: math.unit(1.65, "feet"),
  32339. name: "Dick",
  32340. image: {
  32341. source: "./media/characters/tarn/dick.svg"
  32342. }
  32343. },
  32344. paw: {
  32345. height: math.unit(1.80, "feet"),
  32346. name: "Paw",
  32347. image: {
  32348. source: "./media/characters/tarn/paw.svg"
  32349. }
  32350. },
  32351. tongue: {
  32352. height: math.unit(0.97, "feet"),
  32353. name: "Tongue",
  32354. image: {
  32355. source: "./media/characters/tarn/tongue.svg"
  32356. }
  32357. },
  32358. },
  32359. [
  32360. {
  32361. name: "Micro",
  32362. height: math.unit(4, "inches")
  32363. },
  32364. {
  32365. name: "Normal",
  32366. height: math.unit(6 + 7/12, "feet"),
  32367. default: true
  32368. },
  32369. {
  32370. name: "Macro",
  32371. height: math.unit(300, "feet")
  32372. },
  32373. ]
  32374. ))
  32375. characterMakers.push(() => makeCharacter(
  32376. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32377. {
  32378. front: {
  32379. height: math.unit(5 + 7/12, "feet"),
  32380. weight: math.unit(80, "kg"),
  32381. name: "Front",
  32382. image: {
  32383. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32384. extra: 3023/2865,
  32385. bottom: 33/3056
  32386. }
  32387. },
  32388. back: {
  32389. height: math.unit(5 + 7/12, "feet"),
  32390. weight: math.unit(80, "kg"),
  32391. name: "Back",
  32392. image: {
  32393. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32394. extra: 3020/2886,
  32395. bottom: 30/3050
  32396. }
  32397. },
  32398. dick: {
  32399. height: math.unit(0.98, "feet"),
  32400. name: "Dick",
  32401. image: {
  32402. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32403. }
  32404. },
  32405. anatomy: {
  32406. height: math.unit(2.86, "feet"),
  32407. name: "Anatomy",
  32408. image: {
  32409. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32410. }
  32411. },
  32412. },
  32413. [
  32414. {
  32415. name: "Really Small",
  32416. height: math.unit(2, "inches")
  32417. },
  32418. {
  32419. name: "Micro",
  32420. height: math.unit(5.583, "inches")
  32421. },
  32422. {
  32423. name: "Normal",
  32424. height: math.unit(5 + 7/12, "feet"),
  32425. default: true
  32426. },
  32427. {
  32428. name: "Macro",
  32429. height: math.unit(67, "feet")
  32430. },
  32431. {
  32432. name: "Megamacro",
  32433. height: math.unit(134, "feet")
  32434. },
  32435. ]
  32436. ))
  32437. characterMakers.push(() => makeCharacter(
  32438. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32439. {
  32440. front: {
  32441. height: math.unit(9, "feet"),
  32442. weight: math.unit(120, "lb"),
  32443. name: "Front",
  32444. image: {
  32445. source: "./media/characters/sally/front.svg",
  32446. extra: 1506/1349,
  32447. bottom: 66/1572
  32448. }
  32449. },
  32450. },
  32451. [
  32452. {
  32453. name: "Normal",
  32454. height: math.unit(9, "feet"),
  32455. default: true
  32456. },
  32457. ]
  32458. ))
  32459. characterMakers.push(() => makeCharacter(
  32460. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32461. {
  32462. front: {
  32463. height: math.unit(8, "feet"),
  32464. weight: math.unit(900, "lb"),
  32465. name: "Front",
  32466. image: {
  32467. source: "./media/characters/owen/front.svg",
  32468. extra: 1761/1657,
  32469. bottom: 74/1835
  32470. }
  32471. },
  32472. side: {
  32473. height: math.unit(8, "feet"),
  32474. weight: math.unit(900, "lb"),
  32475. name: "Side",
  32476. image: {
  32477. source: "./media/characters/owen/side.svg",
  32478. extra: 1797/1734,
  32479. bottom: 30/1827
  32480. }
  32481. },
  32482. back: {
  32483. height: math.unit(8, "feet"),
  32484. weight: math.unit(900, "lb"),
  32485. name: "Back",
  32486. image: {
  32487. source: "./media/characters/owen/back.svg",
  32488. extra: 1796/1706,
  32489. bottom: 59/1855
  32490. }
  32491. },
  32492. maw: {
  32493. height: math.unit(1.76, "feet"),
  32494. name: "Maw",
  32495. image: {
  32496. source: "./media/characters/owen/maw.svg"
  32497. }
  32498. },
  32499. },
  32500. [
  32501. {
  32502. name: "Normal",
  32503. height: math.unit(8, "feet"),
  32504. default: true
  32505. },
  32506. ]
  32507. ))
  32508. characterMakers.push(() => makeCharacter(
  32509. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32510. {
  32511. front: {
  32512. height: math.unit(4, "feet"),
  32513. weight: math.unit(400, "lb"),
  32514. name: "Front",
  32515. image: {
  32516. source: "./media/characters/ryth/front.svg",
  32517. extra: 1920/1748,
  32518. bottom: 42/1962
  32519. }
  32520. },
  32521. back: {
  32522. height: math.unit(4, "feet"),
  32523. weight: math.unit(400, "lb"),
  32524. name: "Back",
  32525. image: {
  32526. source: "./media/characters/ryth/back.svg",
  32527. extra: 1897/1690,
  32528. bottom: 89/1986
  32529. }
  32530. },
  32531. mouth: {
  32532. height: math.unit(1.39, "feet"),
  32533. name: "Mouth",
  32534. image: {
  32535. source: "./media/characters/ryth/mouth.svg"
  32536. }
  32537. },
  32538. tailmaw: {
  32539. height: math.unit(1.23, "feet"),
  32540. name: "Tailmaw",
  32541. image: {
  32542. source: "./media/characters/ryth/tailmaw.svg"
  32543. }
  32544. },
  32545. goia: {
  32546. height: math.unit(4, "meters"),
  32547. weight: math.unit(10800, "lb"),
  32548. name: "Goia",
  32549. image: {
  32550. source: "./media/characters/ryth/goia.svg",
  32551. extra: 745/640,
  32552. bottom: 107/852
  32553. }
  32554. },
  32555. goiaFront: {
  32556. height: math.unit(4, "meters"),
  32557. weight: math.unit(10800, "lb"),
  32558. name: "Goia (Front)",
  32559. image: {
  32560. source: "./media/characters/ryth/goia-front.svg",
  32561. extra: 750/586,
  32562. bottom: 114/864
  32563. }
  32564. },
  32565. goiaMaw: {
  32566. height: math.unit(5.55, "feet"),
  32567. name: "Goia Maw",
  32568. image: {
  32569. source: "./media/characters/ryth/goia-maw.svg"
  32570. }
  32571. },
  32572. goiaForepaw: {
  32573. height: math.unit(3.5, "feet"),
  32574. name: "Goia Forepaw",
  32575. image: {
  32576. source: "./media/characters/ryth/goia-forepaw.svg"
  32577. }
  32578. },
  32579. goiaHindpaw: {
  32580. height: math.unit(5.55, "feet"),
  32581. name: "Goia Hindpaw",
  32582. image: {
  32583. source: "./media/characters/ryth/goia-hindpaw.svg"
  32584. }
  32585. },
  32586. },
  32587. [
  32588. {
  32589. name: "Normal",
  32590. height: math.unit(4, "feet"),
  32591. default: true
  32592. },
  32593. ]
  32594. ))
  32595. characterMakers.push(() => makeCharacter(
  32596. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32597. {
  32598. front: {
  32599. height: math.unit(7, "feet"),
  32600. weight: math.unit(180, "lb"),
  32601. name: "Front",
  32602. image: {
  32603. source: "./media/characters/necrolance/front.svg",
  32604. extra: 1062/947,
  32605. bottom: 41/1103
  32606. }
  32607. },
  32608. back: {
  32609. height: math.unit(7, "feet"),
  32610. weight: math.unit(180, "lb"),
  32611. name: "Back",
  32612. image: {
  32613. source: "./media/characters/necrolance/back.svg",
  32614. extra: 1045/984,
  32615. bottom: 14/1059
  32616. }
  32617. },
  32618. wing: {
  32619. height: math.unit(2.67, "feet"),
  32620. name: "Wing",
  32621. image: {
  32622. source: "./media/characters/necrolance/wing.svg"
  32623. }
  32624. },
  32625. },
  32626. [
  32627. {
  32628. name: "Normal",
  32629. height: math.unit(7, "feet"),
  32630. default: true
  32631. },
  32632. ]
  32633. ))
  32634. characterMakers.push(() => makeCharacter(
  32635. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32636. {
  32637. front: {
  32638. height: math.unit(76, "meters"),
  32639. weight: math.unit(30000, "tons"),
  32640. name: "Front",
  32641. image: {
  32642. source: "./media/characters/tyler/front.svg",
  32643. extra: 1640/1640,
  32644. bottom: 114/1754
  32645. }
  32646. },
  32647. },
  32648. [
  32649. {
  32650. name: "Macro",
  32651. height: math.unit(76, "meters"),
  32652. default: true
  32653. },
  32654. ]
  32655. ))
  32656. characterMakers.push(() => makeCharacter(
  32657. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32658. {
  32659. front: {
  32660. height: math.unit(4 + 11/12, "feet"),
  32661. weight: math.unit(132, "lb"),
  32662. name: "Front",
  32663. image: {
  32664. source: "./media/characters/icey/front.svg",
  32665. extra: 2750/2550,
  32666. bottom: 33/2783
  32667. }
  32668. },
  32669. back: {
  32670. height: math.unit(4 + 11/12, "feet"),
  32671. weight: math.unit(132, "lb"),
  32672. name: "Back",
  32673. image: {
  32674. source: "./media/characters/icey/back.svg",
  32675. extra: 2624/2481,
  32676. bottom: 35/2659
  32677. }
  32678. },
  32679. },
  32680. [
  32681. {
  32682. name: "Normal",
  32683. height: math.unit(4 + 11/12, "feet"),
  32684. default: true
  32685. },
  32686. ]
  32687. ))
  32688. characterMakers.push(() => makeCharacter(
  32689. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32690. {
  32691. front: {
  32692. height: math.unit(100, "feet"),
  32693. weight: math.unit(0, "lb"),
  32694. name: "Front",
  32695. image: {
  32696. source: "./media/characters/smile/front.svg",
  32697. extra: 2983/2912,
  32698. bottom: 162/3145
  32699. }
  32700. },
  32701. back: {
  32702. height: math.unit(100, "feet"),
  32703. weight: math.unit(0, "lb"),
  32704. name: "Back",
  32705. image: {
  32706. source: "./media/characters/smile/back.svg",
  32707. extra: 3143/3031,
  32708. bottom: 91/3234
  32709. }
  32710. },
  32711. head: {
  32712. height: math.unit(26.3, "feet"),
  32713. weight: math.unit(0, "lb"),
  32714. name: "Head",
  32715. image: {
  32716. source: "./media/characters/smile/head.svg"
  32717. }
  32718. },
  32719. collar: {
  32720. height: math.unit(5.3, "feet"),
  32721. weight: math.unit(0, "lb"),
  32722. name: "Collar",
  32723. image: {
  32724. source: "./media/characters/smile/collar.svg"
  32725. }
  32726. },
  32727. },
  32728. [
  32729. {
  32730. name: "Macro",
  32731. height: math.unit(100, "feet"),
  32732. default: true
  32733. },
  32734. ]
  32735. ))
  32736. characterMakers.push(() => makeCharacter(
  32737. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32738. {
  32739. dragon: {
  32740. height: math.unit(26, "feet"),
  32741. weight: math.unit(36, "tons"),
  32742. name: "Dragon",
  32743. image: {
  32744. source: "./media/characters/arimphae/dragon.svg",
  32745. extra: 1574/983,
  32746. bottom: 357/1931
  32747. }
  32748. },
  32749. drake: {
  32750. height: math.unit(9, "feet"),
  32751. weight: math.unit(1.5, "tons"),
  32752. name: "Drake",
  32753. image: {
  32754. source: "./media/characters/arimphae/drake.svg",
  32755. extra: 1120/925,
  32756. bottom: 435/1555
  32757. }
  32758. },
  32759. },
  32760. [
  32761. {
  32762. name: "Small",
  32763. height: math.unit(26*5/9, "feet")
  32764. },
  32765. {
  32766. name: "Normal",
  32767. height: math.unit(26, "feet"),
  32768. default: true
  32769. },
  32770. ]
  32771. ))
  32772. characterMakers.push(() => makeCharacter(
  32773. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32774. {
  32775. front: {
  32776. height: math.unit(8 + 9/12, "feet"),
  32777. name: "Front",
  32778. image: {
  32779. source: "./media/characters/xander/front.svg",
  32780. extra: 1237/974,
  32781. bottom: 94/1331
  32782. }
  32783. },
  32784. },
  32785. [
  32786. {
  32787. name: "Normal",
  32788. height: math.unit(8 + 9/12, "feet"),
  32789. default: true
  32790. },
  32791. {
  32792. name: "Gaze Grabber",
  32793. height: math.unit(13 + 8/12, "feet")
  32794. },
  32795. {
  32796. name: "Jaw Dropper",
  32797. height: math.unit(27, "feet")
  32798. },
  32799. {
  32800. name: "Show Stopper",
  32801. height: math.unit(136, "feet")
  32802. },
  32803. {
  32804. name: "Superstar",
  32805. height: math.unit(1.9e6, "miles")
  32806. },
  32807. ]
  32808. ))
  32809. characterMakers.push(() => makeCharacter(
  32810. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32811. {
  32812. side: {
  32813. height: math.unit(2100, "feet"),
  32814. name: "Side",
  32815. image: {
  32816. source: "./media/characters/osiris/side.svg",
  32817. extra: 1105/939,
  32818. bottom: 167/1272
  32819. }
  32820. },
  32821. },
  32822. [
  32823. {
  32824. name: "Macro",
  32825. height: math.unit(2100, "feet"),
  32826. default: true
  32827. },
  32828. ]
  32829. ))
  32830. characterMakers.push(() => makeCharacter(
  32831. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32832. {
  32833. front: {
  32834. height: math.unit(6 + 8/12, "feet"),
  32835. weight: math.unit(225, "lb"),
  32836. name: "Front",
  32837. image: {
  32838. source: "./media/characters/rhys-londe/front.svg",
  32839. extra: 2258/2141,
  32840. bottom: 188/2446
  32841. }
  32842. },
  32843. back: {
  32844. height: math.unit(6 + 8/12, "feet"),
  32845. weight: math.unit(225, "lb"),
  32846. name: "Back",
  32847. image: {
  32848. source: "./media/characters/rhys-londe/back.svg",
  32849. extra: 2237/2137,
  32850. bottom: 63/2300
  32851. }
  32852. },
  32853. frontNsfw: {
  32854. height: math.unit(6 + 8/12, "feet"),
  32855. weight: math.unit(225, "lb"),
  32856. name: "Front (NSFW)",
  32857. image: {
  32858. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32859. extra: 2258/2141,
  32860. bottom: 188/2446
  32861. }
  32862. },
  32863. backNsfw: {
  32864. height: math.unit(6 + 8/12, "feet"),
  32865. weight: math.unit(225, "lb"),
  32866. name: "Back (NSFW)",
  32867. image: {
  32868. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32869. extra: 2237/2137,
  32870. bottom: 63/2300
  32871. }
  32872. },
  32873. dick: {
  32874. height: math.unit(30, "inches"),
  32875. name: "Dick",
  32876. image: {
  32877. source: "./media/characters/rhys-londe/dick.svg"
  32878. }
  32879. },
  32880. maw: {
  32881. height: math.unit(1.6, "feet"),
  32882. name: "Maw",
  32883. image: {
  32884. source: "./media/characters/rhys-londe/maw.svg"
  32885. }
  32886. },
  32887. },
  32888. [
  32889. {
  32890. name: "Normal",
  32891. height: math.unit(6 + 8/12, "feet"),
  32892. default: true
  32893. },
  32894. ]
  32895. ))
  32896. characterMakers.push(() => makeCharacter(
  32897. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32898. {
  32899. front: {
  32900. height: math.unit(3 + 10/12, "feet"),
  32901. weight: math.unit(90, "lb"),
  32902. name: "Front",
  32903. image: {
  32904. source: "./media/characters/taivas-ensim/front.svg",
  32905. extra: 1327/1216,
  32906. bottom: 96/1423
  32907. }
  32908. },
  32909. back: {
  32910. height: math.unit(3 + 10/12, "feet"),
  32911. weight: math.unit(90, "lb"),
  32912. name: "Back",
  32913. image: {
  32914. source: "./media/characters/taivas-ensim/back.svg",
  32915. extra: 1355/1247,
  32916. bottom: 11/1366
  32917. }
  32918. },
  32919. frontNsfw: {
  32920. height: math.unit(3 + 10/12, "feet"),
  32921. weight: math.unit(90, "lb"),
  32922. name: "Front (NSFW)",
  32923. image: {
  32924. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32925. extra: 1327/1216,
  32926. bottom: 96/1423
  32927. }
  32928. },
  32929. backNsfw: {
  32930. height: math.unit(3 + 10/12, "feet"),
  32931. weight: math.unit(90, "lb"),
  32932. name: "Back (NSFW)",
  32933. image: {
  32934. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32935. extra: 1355/1247,
  32936. bottom: 11/1366
  32937. }
  32938. },
  32939. },
  32940. [
  32941. {
  32942. name: "Normal",
  32943. height: math.unit(3 + 10/12, "feet"),
  32944. default: true
  32945. },
  32946. ]
  32947. ))
  32948. characterMakers.push(() => makeCharacter(
  32949. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32950. {
  32951. front: {
  32952. height: math.unit(9 + 6/12, "feet"),
  32953. weight: math.unit(940, "lb"),
  32954. name: "Front",
  32955. image: {
  32956. source: "./media/characters/byliss/front.svg",
  32957. extra: 1327/1290,
  32958. bottom: 82/1409
  32959. }
  32960. },
  32961. back: {
  32962. height: math.unit(9 + 6/12, "feet"),
  32963. weight: math.unit(940, "lb"),
  32964. name: "Back",
  32965. image: {
  32966. source: "./media/characters/byliss/back.svg",
  32967. extra: 1376/1349,
  32968. bottom: 9/1385
  32969. }
  32970. },
  32971. frontNsfw: {
  32972. height: math.unit(9 + 6/12, "feet"),
  32973. weight: math.unit(940, "lb"),
  32974. name: "Front (NSFW)",
  32975. image: {
  32976. source: "./media/characters/byliss/front-nsfw.svg",
  32977. extra: 1327/1290,
  32978. bottom: 82/1409
  32979. }
  32980. },
  32981. backNsfw: {
  32982. height: math.unit(9 + 6/12, "feet"),
  32983. weight: math.unit(940, "lb"),
  32984. name: "Back (NSFW)",
  32985. image: {
  32986. source: "./media/characters/byliss/back-nsfw.svg",
  32987. extra: 1376/1349,
  32988. bottom: 9/1385
  32989. }
  32990. },
  32991. },
  32992. [
  32993. {
  32994. name: "Normal",
  32995. height: math.unit(9 + 6/12, "feet"),
  32996. default: true
  32997. },
  32998. ]
  32999. ))
  33000. characterMakers.push(() => makeCharacter(
  33001. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33002. {
  33003. front: {
  33004. height: math.unit(5 + 2/12, "feet"),
  33005. weight: math.unit(200, "lb"),
  33006. name: "Front",
  33007. image: {
  33008. source: "./media/characters/noraly/front.svg",
  33009. extra: 4985/4773,
  33010. bottom: 150/5135
  33011. }
  33012. },
  33013. full: {
  33014. height: math.unit(5 + 2/12, "feet"),
  33015. weight: math.unit(164, "lb"),
  33016. name: "Full",
  33017. image: {
  33018. source: "./media/characters/noraly/full.svg",
  33019. extra: 1114/1059,
  33020. bottom: 35/1149
  33021. }
  33022. },
  33023. fuller: {
  33024. height: math.unit(5 + 2/12, "feet"),
  33025. weight: math.unit(230, "lb"),
  33026. name: "Fuller",
  33027. image: {
  33028. source: "./media/characters/noraly/fuller.svg",
  33029. extra: 1114/1059,
  33030. bottom: 35/1149
  33031. }
  33032. },
  33033. fullest: {
  33034. height: math.unit(5 + 2/12, "feet"),
  33035. weight: math.unit(300, "lb"),
  33036. name: "Fullest",
  33037. image: {
  33038. source: "./media/characters/noraly/fullest.svg",
  33039. extra: 1114/1059,
  33040. bottom: 35/1149
  33041. }
  33042. },
  33043. },
  33044. [
  33045. {
  33046. name: "Normal",
  33047. height: math.unit(5 + 2/12, "feet"),
  33048. default: true
  33049. },
  33050. ]
  33051. ))
  33052. characterMakers.push(() => makeCharacter(
  33053. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33054. {
  33055. front: {
  33056. height: math.unit(5 + 2/12, "feet"),
  33057. weight: math.unit(210, "lb"),
  33058. name: "Front",
  33059. image: {
  33060. source: "./media/characters/pera/front.svg",
  33061. extra: 1560/1531,
  33062. bottom: 165/1725
  33063. }
  33064. },
  33065. back: {
  33066. height: math.unit(5 + 2/12, "feet"),
  33067. weight: math.unit(210, "lb"),
  33068. name: "Back",
  33069. image: {
  33070. source: "./media/characters/pera/back.svg",
  33071. extra: 1523/1493,
  33072. bottom: 152/1675
  33073. }
  33074. },
  33075. dick: {
  33076. height: math.unit(2.4, "feet"),
  33077. name: "Dick",
  33078. image: {
  33079. source: "./media/characters/pera/dick.svg"
  33080. }
  33081. },
  33082. },
  33083. [
  33084. {
  33085. name: "Normal",
  33086. height: math.unit(5 + 2/12, "feet"),
  33087. default: true
  33088. },
  33089. ]
  33090. ))
  33091. characterMakers.push(() => makeCharacter(
  33092. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33093. {
  33094. front: {
  33095. height: math.unit(12, "feet"),
  33096. weight: math.unit(3200, "lb"),
  33097. name: "Front",
  33098. image: {
  33099. source: "./media/characters/julian/front.svg",
  33100. extra: 2962/2701,
  33101. bottom: 184/3146
  33102. }
  33103. },
  33104. maw: {
  33105. height: math.unit(5.35, "feet"),
  33106. name: "Maw",
  33107. image: {
  33108. source: "./media/characters/julian/maw.svg"
  33109. }
  33110. },
  33111. paw: {
  33112. height: math.unit(3.07, "feet"),
  33113. name: "Paw",
  33114. image: {
  33115. source: "./media/characters/julian/paw.svg"
  33116. }
  33117. },
  33118. },
  33119. [
  33120. {
  33121. name: "Default",
  33122. height: math.unit(12, "feet"),
  33123. default: true
  33124. },
  33125. {
  33126. name: "Big",
  33127. height: math.unit(50, "feet")
  33128. },
  33129. {
  33130. name: "Really Big",
  33131. height: math.unit(1, "mile")
  33132. },
  33133. {
  33134. name: "Extremely Big",
  33135. height: math.unit(100, "miles")
  33136. },
  33137. {
  33138. name: "Planet Hugger",
  33139. height: math.unit(200, "megameters")
  33140. },
  33141. {
  33142. name: "Unreasonably Big",
  33143. height: math.unit(1e300, "meters")
  33144. },
  33145. ]
  33146. ))
  33147. characterMakers.push(() => makeCharacter(
  33148. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33149. {
  33150. solgooleo: {
  33151. height: math.unit(4, "meters"),
  33152. weight: math.unit(6000*1.5, "kg"),
  33153. volume: math.unit(6000, "liters"),
  33154. name: "Solgooleo",
  33155. image: {
  33156. source: "./media/characters/pi/solgooleo.svg",
  33157. extra: 388/331,
  33158. bottom: 29/417
  33159. }
  33160. },
  33161. },
  33162. [
  33163. {
  33164. name: "Normal",
  33165. height: math.unit(4, "meters"),
  33166. default: true
  33167. },
  33168. ]
  33169. ))
  33170. characterMakers.push(() => makeCharacter(
  33171. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33172. {
  33173. front: {
  33174. height: math.unit(8, "feet"),
  33175. weight: math.unit(4, "tons"),
  33176. name: "Front",
  33177. image: {
  33178. source: "./media/characters/shaun/front.svg",
  33179. extra: 503/495,
  33180. bottom: 20/523
  33181. }
  33182. },
  33183. back: {
  33184. height: math.unit(8, "feet"),
  33185. weight: math.unit(4, "tons"),
  33186. name: "Back",
  33187. image: {
  33188. source: "./media/characters/shaun/back.svg",
  33189. extra: 487/480,
  33190. bottom: 20/507
  33191. }
  33192. },
  33193. },
  33194. [
  33195. {
  33196. name: "Lorg",
  33197. height: math.unit(8, "feet"),
  33198. default: true
  33199. },
  33200. ]
  33201. ))
  33202. characterMakers.push(() => makeCharacter(
  33203. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33204. {
  33205. frontAnthro: {
  33206. height: math.unit(7, "feet"),
  33207. name: "Front",
  33208. image: {
  33209. source: "./media/characters/sini/front-anthro.svg",
  33210. extra: 726/678,
  33211. bottom: 35/761
  33212. },
  33213. form: "anthro",
  33214. default: true
  33215. },
  33216. backAnthro: {
  33217. height: math.unit(7, "feet"),
  33218. name: "Back",
  33219. image: {
  33220. source: "./media/characters/sini/back-anthro.svg",
  33221. extra: 743/701,
  33222. bottom: 12/755
  33223. },
  33224. form: "anthro",
  33225. },
  33226. frontAnthroNsfw: {
  33227. height: math.unit(7, "feet"),
  33228. name: "Front (NSFW)",
  33229. image: {
  33230. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33231. extra: 726/678,
  33232. bottom: 35/761
  33233. },
  33234. form: "anthro"
  33235. },
  33236. backAnthroNsfw: {
  33237. height: math.unit(7, "feet"),
  33238. name: "Back (NSFW)",
  33239. image: {
  33240. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33241. extra: 743/701,
  33242. bottom: 12/755
  33243. },
  33244. form: "anthro",
  33245. },
  33246. mawAnthro: {
  33247. height: math.unit(2.14, "feet"),
  33248. name: "Maw",
  33249. image: {
  33250. source: "./media/characters/sini/maw-anthro.svg"
  33251. },
  33252. form: "anthro"
  33253. },
  33254. dick: {
  33255. height: math.unit(1.45, "feet"),
  33256. name: "Dick",
  33257. image: {
  33258. source: "./media/characters/sini/dick-anthro.svg"
  33259. },
  33260. form: "anthro"
  33261. },
  33262. feral: {
  33263. height: math.unit(16, "feet"),
  33264. name: "Feral",
  33265. image: {
  33266. source: "./media/characters/sini/feral.svg",
  33267. extra: 814/605,
  33268. bottom: 11/825
  33269. },
  33270. form: "feral",
  33271. default: true
  33272. },
  33273. feralNsfw: {
  33274. height: math.unit(16, "feet"),
  33275. name: "Feral (NSFW)",
  33276. image: {
  33277. source: "./media/characters/sini/feral-nsfw.svg",
  33278. extra: 814/605,
  33279. bottom: 11/825
  33280. },
  33281. form: "feral"
  33282. },
  33283. mawFeral: {
  33284. height: math.unit(5.66, "feet"),
  33285. name: "Maw",
  33286. image: {
  33287. source: "./media/characters/sini/maw-feral.svg"
  33288. },
  33289. form: "feral",
  33290. },
  33291. pawFeral: {
  33292. height: math.unit(5.17, "feet"),
  33293. name: "Paw",
  33294. image: {
  33295. source: "./media/characters/sini/paw-feral.svg"
  33296. },
  33297. form: "feral",
  33298. },
  33299. rumpFeral: {
  33300. height: math.unit(13.11, "feet"),
  33301. name: "Rump",
  33302. image: {
  33303. source: "./media/characters/sini/rump-feral.svg"
  33304. },
  33305. form: "feral",
  33306. },
  33307. dickFeral: {
  33308. height: math.unit(1, "feet"),
  33309. name: "Dick",
  33310. image: {
  33311. source: "./media/characters/sini/dick-feral.svg"
  33312. },
  33313. form: "feral",
  33314. },
  33315. eyeFeral: {
  33316. height: math.unit(1.23, "feet"),
  33317. name: "Eye",
  33318. image: {
  33319. source: "./media/characters/sini/eye-feral.svg"
  33320. },
  33321. form: "feral",
  33322. },
  33323. },
  33324. [
  33325. {
  33326. name: "Normal",
  33327. height: math.unit(7, "feet"),
  33328. default: true,
  33329. form: "anthro"
  33330. },
  33331. {
  33332. name: "Normal",
  33333. height: math.unit(16, "feet"),
  33334. default: true,
  33335. form: "feral"
  33336. },
  33337. ],
  33338. {
  33339. "anthro": {
  33340. name: "Anthro",
  33341. default: true
  33342. },
  33343. "feral": {
  33344. name: "Feral",
  33345. }
  33346. }
  33347. ))
  33348. characterMakers.push(() => makeCharacter(
  33349. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33350. {
  33351. side: {
  33352. height: math.unit(13, "meters"),
  33353. weight: math.unit(9072, "kg"),
  33354. name: "Side",
  33355. image: {
  33356. source: "./media/characters/raylldo/side.svg",
  33357. extra: 403/344,
  33358. bottom: 42/445
  33359. }
  33360. },
  33361. leaping: {
  33362. height: math.unit(12.3, "meters"),
  33363. weight: math.unit(9072, "kg"),
  33364. name: "Leaping",
  33365. image: {
  33366. source: "./media/characters/raylldo/leaping.svg",
  33367. extra: 470/249,
  33368. bottom: 13/483
  33369. }
  33370. },
  33371. flying: {
  33372. height: math.unit(18, "meters"),
  33373. weight: math.unit(9072, "kg"),
  33374. name: "Flying",
  33375. image: {
  33376. source: "./media/characters/raylldo/flying.svg"
  33377. }
  33378. },
  33379. head: {
  33380. height: math.unit(5.85, "meters"),
  33381. name: "Head",
  33382. image: {
  33383. source: "./media/characters/raylldo/head.svg"
  33384. }
  33385. },
  33386. maw: {
  33387. height: math.unit(5.32, "meters"),
  33388. name: "Maw",
  33389. image: {
  33390. source: "./media/characters/raylldo/maw.svg"
  33391. }
  33392. },
  33393. eye: {
  33394. height: math.unit(0.54, "meters"),
  33395. name: "Eye",
  33396. image: {
  33397. source: "./media/characters/raylldo/eye.svg"
  33398. }
  33399. },
  33400. },
  33401. [
  33402. {
  33403. name: "Normal",
  33404. height: math.unit(13, "meters"),
  33405. default: true
  33406. },
  33407. ]
  33408. ))
  33409. characterMakers.push(() => makeCharacter(
  33410. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33411. {
  33412. anthroFront: {
  33413. height: math.unit(9, "feet"),
  33414. weight: math.unit(600, "lb"),
  33415. name: "Anthro (Front)",
  33416. image: {
  33417. source: "./media/characters/glint/anthro-front.svg",
  33418. extra: 1097/1018,
  33419. bottom: 28/1125
  33420. }
  33421. },
  33422. anthroBack: {
  33423. height: math.unit(9, "feet"),
  33424. weight: math.unit(600, "lb"),
  33425. name: "Anthro (Back)",
  33426. image: {
  33427. source: "./media/characters/glint/anthro-back.svg",
  33428. extra: 1154/997,
  33429. bottom: 36/1190
  33430. }
  33431. },
  33432. feral: {
  33433. height: math.unit(11, "feet"),
  33434. weight: math.unit(50000, "lb"),
  33435. name: "Feral",
  33436. image: {
  33437. source: "./media/characters/glint/feral.svg",
  33438. extra: 3035/1585,
  33439. bottom: 1169/4204
  33440. }
  33441. },
  33442. dickAnthro: {
  33443. height: math.unit(0.7, "meters"),
  33444. name: "Dick (Anthro)",
  33445. image: {
  33446. source: "./media/characters/glint/dick-anthro.svg"
  33447. }
  33448. },
  33449. dickFeral: {
  33450. height: math.unit(2.65, "meters"),
  33451. name: "Dick (Feral)",
  33452. image: {
  33453. source: "./media/characters/glint/dick-feral.svg"
  33454. }
  33455. },
  33456. slitHidden: {
  33457. height: math.unit(5.85, "meters"),
  33458. name: "Slit (Hidden)",
  33459. image: {
  33460. source: "./media/characters/glint/slit-hidden.svg"
  33461. }
  33462. },
  33463. slitErect: {
  33464. height: math.unit(5.85, "meters"),
  33465. name: "Slit (Erect)",
  33466. image: {
  33467. source: "./media/characters/glint/slit-erect.svg"
  33468. }
  33469. },
  33470. mawAnthro: {
  33471. height: math.unit(0.63, "meters"),
  33472. name: "Maw (Anthro)",
  33473. image: {
  33474. source: "./media/characters/glint/maw.svg"
  33475. }
  33476. },
  33477. mawFeral: {
  33478. height: math.unit(2.89, "meters"),
  33479. name: "Maw (Feral)",
  33480. image: {
  33481. source: "./media/characters/glint/maw.svg"
  33482. }
  33483. },
  33484. },
  33485. [
  33486. {
  33487. name: "Normal",
  33488. height: math.unit(9, "feet"),
  33489. default: true
  33490. },
  33491. ]
  33492. ))
  33493. characterMakers.push(() => makeCharacter(
  33494. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33495. {
  33496. side: {
  33497. height: math.unit(15, "feet"),
  33498. weight: math.unit(5000, "kg"),
  33499. name: "Side",
  33500. image: {
  33501. source: "./media/characters/kairne/side.svg",
  33502. extra: 979/811,
  33503. bottom: 13/992
  33504. }
  33505. },
  33506. front: {
  33507. height: math.unit(15, "feet"),
  33508. weight: math.unit(5000, "kg"),
  33509. name: "Front",
  33510. image: {
  33511. source: "./media/characters/kairne/front.svg",
  33512. extra: 908/814,
  33513. bottom: 26/934
  33514. }
  33515. },
  33516. sideNsfw: {
  33517. height: math.unit(15, "feet"),
  33518. weight: math.unit(5000, "kg"),
  33519. name: "Side (NSFW)",
  33520. image: {
  33521. source: "./media/characters/kairne/side-nsfw.svg",
  33522. extra: 979/811,
  33523. bottom: 13/992
  33524. }
  33525. },
  33526. frontNsfw: {
  33527. height: math.unit(15, "feet"),
  33528. weight: math.unit(5000, "kg"),
  33529. name: "Front (NSFW)",
  33530. image: {
  33531. source: "./media/characters/kairne/front-nsfw.svg",
  33532. extra: 908/814,
  33533. bottom: 26/934
  33534. }
  33535. },
  33536. dickCaged: {
  33537. height: math.unit(0.65, "meters"),
  33538. name: "Dick-caged",
  33539. image: {
  33540. source: "./media/characters/kairne/dick-caged.svg"
  33541. }
  33542. },
  33543. dick: {
  33544. height: math.unit(0.79, "meters"),
  33545. name: "Dick",
  33546. image: {
  33547. source: "./media/characters/kairne/dick.svg"
  33548. }
  33549. },
  33550. genitals: {
  33551. height: math.unit(1.29, "meters"),
  33552. name: "Genitals",
  33553. image: {
  33554. source: "./media/characters/kairne/genitals.svg"
  33555. }
  33556. },
  33557. maw: {
  33558. height: math.unit(1.73, "meters"),
  33559. name: "Maw",
  33560. image: {
  33561. source: "./media/characters/kairne/maw.svg"
  33562. }
  33563. },
  33564. },
  33565. [
  33566. {
  33567. name: "Normal",
  33568. height: math.unit(15, "feet"),
  33569. default: true
  33570. },
  33571. ]
  33572. ))
  33573. characterMakers.push(() => makeCharacter(
  33574. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33575. {
  33576. front: {
  33577. height: math.unit(5 + 8/12, "feet"),
  33578. weight: math.unit(139, "lb"),
  33579. name: "Front",
  33580. image: {
  33581. source: "./media/characters/biscuit-jackal/front.svg",
  33582. extra: 2106/1961,
  33583. bottom: 58/2164
  33584. }
  33585. },
  33586. back: {
  33587. height: math.unit(5 + 8/12, "feet"),
  33588. weight: math.unit(139, "lb"),
  33589. name: "Back",
  33590. image: {
  33591. source: "./media/characters/biscuit-jackal/back.svg",
  33592. extra: 2132/1976,
  33593. bottom: 57/2189
  33594. }
  33595. },
  33596. werejackal: {
  33597. height: math.unit(6 + 3/12, "feet"),
  33598. weight: math.unit(188, "lb"),
  33599. name: "Werejackal",
  33600. image: {
  33601. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33602. extra: 2373/2178,
  33603. bottom: 53/2426
  33604. }
  33605. },
  33606. },
  33607. [
  33608. {
  33609. name: "Normal",
  33610. height: math.unit(5 + 8/12, "feet"),
  33611. default: true
  33612. },
  33613. ]
  33614. ))
  33615. characterMakers.push(() => makeCharacter(
  33616. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33617. {
  33618. front: {
  33619. height: math.unit(140, "cm"),
  33620. weight: math.unit(45, "kg"),
  33621. name: "Front",
  33622. image: {
  33623. source: "./media/characters/tayra-white/front.svg",
  33624. extra: 2229/2192,
  33625. bottom: 75/2304
  33626. }
  33627. },
  33628. },
  33629. [
  33630. {
  33631. name: "Normal",
  33632. height: math.unit(140, "cm"),
  33633. default: true
  33634. },
  33635. ]
  33636. ))
  33637. characterMakers.push(() => makeCharacter(
  33638. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33639. {
  33640. front: {
  33641. height: math.unit(4 + 5/12, "feet"),
  33642. name: "Front",
  33643. image: {
  33644. source: "./media/characters/scoop/front.svg",
  33645. extra: 1257/1136,
  33646. bottom: 69/1326
  33647. }
  33648. },
  33649. back: {
  33650. height: math.unit(4 + 5/12, "feet"),
  33651. name: "Back",
  33652. image: {
  33653. source: "./media/characters/scoop/back.svg",
  33654. extra: 1321/1152,
  33655. bottom: 32/1353
  33656. }
  33657. },
  33658. maw: {
  33659. height: math.unit(0.68, "feet"),
  33660. name: "Maw",
  33661. image: {
  33662. source: "./media/characters/scoop/maw.svg"
  33663. }
  33664. },
  33665. },
  33666. [
  33667. {
  33668. name: "Really Small",
  33669. height: math.unit(1, "mm")
  33670. },
  33671. {
  33672. name: "Micro",
  33673. height: math.unit(1, "inch")
  33674. },
  33675. {
  33676. name: "Normal",
  33677. height: math.unit(4 + 5/12, "feet"),
  33678. default: true
  33679. },
  33680. {
  33681. name: "Macro",
  33682. height: math.unit(200, "feet")
  33683. },
  33684. {
  33685. name: "Megamacro",
  33686. height: math.unit(3240, "feet")
  33687. },
  33688. {
  33689. name: "Teramacro",
  33690. height: math.unit(2500, "miles")
  33691. },
  33692. ]
  33693. ))
  33694. characterMakers.push(() => makeCharacter(
  33695. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33696. {
  33697. front: {
  33698. height: math.unit(15 + 7/12, "feet"),
  33699. name: "Front",
  33700. image: {
  33701. source: "./media/characters/saphinara/front.svg",
  33702. extra: 604/546,
  33703. bottom: 19/623
  33704. }
  33705. },
  33706. side: {
  33707. height: math.unit(15 + 7/12, "feet"),
  33708. name: "Side",
  33709. image: {
  33710. source: "./media/characters/saphinara/side.svg",
  33711. extra: 605/547,
  33712. bottom: 6/611
  33713. }
  33714. },
  33715. back: {
  33716. height: math.unit(15 + 7/12, "feet"),
  33717. name: "Back",
  33718. image: {
  33719. source: "./media/characters/saphinara/back.svg",
  33720. extra: 591/531,
  33721. bottom: 13/604
  33722. }
  33723. },
  33724. frontTail: {
  33725. height: math.unit(15 + 7/12, "feet"),
  33726. name: "Front (Full Tail)",
  33727. image: {
  33728. source: "./media/characters/saphinara/front-tail.svg",
  33729. extra: 748/547,
  33730. bottom: 66/814
  33731. }
  33732. },
  33733. },
  33734. [
  33735. {
  33736. name: "Normal",
  33737. height: math.unit(15 + 7/12, "feet"),
  33738. default: true
  33739. },
  33740. {
  33741. name: "Angry",
  33742. height: math.unit(30 + 6/12, "feet")
  33743. },
  33744. {
  33745. name: "Enraged",
  33746. height: math.unit(102 + 1/12, "feet")
  33747. },
  33748. ]
  33749. ))
  33750. characterMakers.push(() => makeCharacter(
  33751. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33752. {
  33753. front: {
  33754. height: math.unit(6 + 8/12, "feet"),
  33755. weight: math.unit(300, "lb"),
  33756. name: "Front",
  33757. image: {
  33758. source: "./media/characters/jrain/front.svg",
  33759. extra: 3039/2865,
  33760. bottom: 399/3438
  33761. }
  33762. },
  33763. back: {
  33764. height: math.unit(6 + 8/12, "feet"),
  33765. weight: math.unit(300, "lb"),
  33766. name: "Back",
  33767. image: {
  33768. source: "./media/characters/jrain/back.svg",
  33769. extra: 3089/2938,
  33770. bottom: 172/3261
  33771. }
  33772. },
  33773. head: {
  33774. height: math.unit(2.14, "feet"),
  33775. name: "Head",
  33776. image: {
  33777. source: "./media/characters/jrain/head.svg"
  33778. }
  33779. },
  33780. maw: {
  33781. height: math.unit(1.77, "feet"),
  33782. name: "Maw",
  33783. image: {
  33784. source: "./media/characters/jrain/maw.svg"
  33785. }
  33786. },
  33787. leftHand: {
  33788. height: math.unit(1.1, "feet"),
  33789. name: "Left Hand",
  33790. image: {
  33791. source: "./media/characters/jrain/left-hand.svg"
  33792. }
  33793. },
  33794. rightHand: {
  33795. height: math.unit(1.1, "feet"),
  33796. name: "Right Hand",
  33797. image: {
  33798. source: "./media/characters/jrain/right-hand.svg"
  33799. }
  33800. },
  33801. eye: {
  33802. height: math.unit(0.35, "feet"),
  33803. name: "Eye",
  33804. image: {
  33805. source: "./media/characters/jrain/eye.svg"
  33806. }
  33807. },
  33808. },
  33809. [
  33810. {
  33811. name: "Normal",
  33812. height: math.unit(6 + 8/12, "feet"),
  33813. default: true
  33814. },
  33815. {
  33816. name: "Casually Large",
  33817. height: math.unit(25, "feet")
  33818. },
  33819. {
  33820. name: "Giant",
  33821. height: math.unit(100, "feet")
  33822. },
  33823. {
  33824. name: "Kaiju",
  33825. height: math.unit(300, "feet")
  33826. },
  33827. ]
  33828. ))
  33829. characterMakers.push(() => makeCharacter(
  33830. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33831. {
  33832. dragon: {
  33833. height: math.unit(5, "meters"),
  33834. name: "Dragon",
  33835. image: {
  33836. source: "./media/characters/sabrina/dragon.svg",
  33837. extra: 3670 / 2365,
  33838. bottom: 333 / 4003
  33839. }
  33840. },
  33841. gryphon: {
  33842. height: math.unit(3, "meters"),
  33843. name: "Gryphon",
  33844. image: {
  33845. source: "./media/characters/sabrina/gryphon.svg",
  33846. extra: 1576 / 945,
  33847. bottom: 71 / 1647
  33848. }
  33849. },
  33850. snake: {
  33851. height: math.unit(12, "meters"),
  33852. name: "Snake",
  33853. image: {
  33854. source: "./media/characters/sabrina/snake.svg",
  33855. extra: 1758 / 1320,
  33856. bottom: 186 / 1944
  33857. }
  33858. },
  33859. collar: {
  33860. height: math.unit(1.86, "meters"),
  33861. name: "Collar",
  33862. image: {
  33863. source: "./media/characters/sabrina/collar.svg"
  33864. }
  33865. },
  33866. eye: {
  33867. height: math.unit(0.53, "meters"),
  33868. name: "Eye",
  33869. image: {
  33870. source: "./media/characters/sabrina/eye.svg"
  33871. }
  33872. },
  33873. foot: {
  33874. height: math.unit(1.86, "meters"),
  33875. name: "Foot",
  33876. image: {
  33877. source: "./media/characters/sabrina/foot.svg"
  33878. }
  33879. },
  33880. hand: {
  33881. height: math.unit(1.32, "meters"),
  33882. name: "Hand",
  33883. image: {
  33884. source: "./media/characters/sabrina/hand.svg"
  33885. }
  33886. },
  33887. head: {
  33888. height: math.unit(2.44, "meters"),
  33889. name: "Head",
  33890. image: {
  33891. source: "./media/characters/sabrina/head.svg"
  33892. }
  33893. },
  33894. headAngry: {
  33895. height: math.unit(2.44, "meters"),
  33896. name: "Head (Angry))",
  33897. image: {
  33898. source: "./media/characters/sabrina/head-angry.svg"
  33899. }
  33900. },
  33901. maw: {
  33902. height: math.unit(1.65, "meters"),
  33903. name: "Maw",
  33904. image: {
  33905. source: "./media/characters/sabrina/maw.svg"
  33906. }
  33907. },
  33908. spikes: {
  33909. height: math.unit(1.69, "meters"),
  33910. name: "Spikes",
  33911. image: {
  33912. source: "./media/characters/sabrina/spikes.svg"
  33913. }
  33914. },
  33915. stomach: {
  33916. height: math.unit(1.15, "meters"),
  33917. name: "Stomach",
  33918. image: {
  33919. source: "./media/characters/sabrina/stomach.svg"
  33920. }
  33921. },
  33922. tongue: {
  33923. height: math.unit(1.27, "meters"),
  33924. name: "Tongue",
  33925. image: {
  33926. source: "./media/characters/sabrina/tongue.svg"
  33927. }
  33928. },
  33929. wingDorsal: {
  33930. height: math.unit(4.85, "meters"),
  33931. name: "Wing (Dorsal)",
  33932. image: {
  33933. source: "./media/characters/sabrina/wing-dorsal.svg"
  33934. }
  33935. },
  33936. wingVentral: {
  33937. height: math.unit(4.85, "meters"),
  33938. name: "Wing (Ventral)",
  33939. image: {
  33940. source: "./media/characters/sabrina/wing-ventral.svg"
  33941. }
  33942. },
  33943. },
  33944. [
  33945. {
  33946. name: "Normal",
  33947. height: math.unit(5, "meters"),
  33948. default: true
  33949. },
  33950. ]
  33951. ))
  33952. characterMakers.push(() => makeCharacter(
  33953. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33954. {
  33955. frontMaid: {
  33956. height: math.unit(5 + 5/12, "feet"),
  33957. weight: math.unit(130, "lb"),
  33958. name: "Front (Maid)",
  33959. image: {
  33960. source: "./media/characters/midnight-tales/front-maid.svg",
  33961. extra: 489/454,
  33962. bottom: 61/550
  33963. }
  33964. },
  33965. frontFormal: {
  33966. height: math.unit(5 + 5/12, "feet"),
  33967. weight: math.unit(130, "lb"),
  33968. name: "Front (Formal)",
  33969. image: {
  33970. source: "./media/characters/midnight-tales/front-formal.svg",
  33971. extra: 489/454,
  33972. bottom: 61/550
  33973. }
  33974. },
  33975. back: {
  33976. height: math.unit(5 + 5/12, "feet"),
  33977. weight: math.unit(130, "lb"),
  33978. name: "Back",
  33979. image: {
  33980. source: "./media/characters/midnight-tales/back.svg",
  33981. extra: 498/456,
  33982. bottom: 33/531
  33983. }
  33984. },
  33985. frontBeast: {
  33986. height: math.unit(40, "feet"),
  33987. weight: math.unit(64000, "lb"),
  33988. name: "Front (Beast)",
  33989. image: {
  33990. source: "./media/characters/midnight-tales/front-beast.svg",
  33991. extra: 927/860,
  33992. bottom: 53/980
  33993. }
  33994. },
  33995. backBeast: {
  33996. height: math.unit(40, "feet"),
  33997. weight: math.unit(64000, "lb"),
  33998. name: "Back (Beast)",
  33999. image: {
  34000. source: "./media/characters/midnight-tales/back-beast.svg",
  34001. extra: 929/855,
  34002. bottom: 16/945
  34003. }
  34004. },
  34005. footBeast: {
  34006. height: math.unit(6.7, "feet"),
  34007. name: "Foot (Beast)",
  34008. image: {
  34009. source: "./media/characters/midnight-tales/foot-beast.svg"
  34010. }
  34011. },
  34012. headBeast: {
  34013. height: math.unit(8, "feet"),
  34014. name: "Head (Beast)",
  34015. image: {
  34016. source: "./media/characters/midnight-tales/head-beast.svg"
  34017. }
  34018. },
  34019. },
  34020. [
  34021. {
  34022. name: "Normal",
  34023. height: math.unit(5 + 5 / 12, "feet"),
  34024. default: true
  34025. },
  34026. {
  34027. name: "Macro",
  34028. height: math.unit(25, "feet")
  34029. },
  34030. ]
  34031. ))
  34032. characterMakers.push(() => makeCharacter(
  34033. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34034. {
  34035. front: {
  34036. height: math.unit(5 + 10/12, "feet"),
  34037. name: "Front",
  34038. image: {
  34039. source: "./media/characters/argon/front.svg",
  34040. extra: 2009/1935,
  34041. bottom: 118/2127
  34042. }
  34043. },
  34044. back: {
  34045. height: math.unit(5 + 10/12, "feet"),
  34046. name: "Back",
  34047. image: {
  34048. source: "./media/characters/argon/back.svg",
  34049. extra: 2047/1992,
  34050. bottom: 20/2067
  34051. }
  34052. },
  34053. frontDressed: {
  34054. height: math.unit(5 + 10/12, "feet"),
  34055. name: "Front (Dressed)",
  34056. image: {
  34057. source: "./media/characters/argon/front-dressed.svg",
  34058. extra: 2009/1935,
  34059. bottom: 118/2127
  34060. }
  34061. },
  34062. },
  34063. [
  34064. {
  34065. name: "Normal",
  34066. height: math.unit(5 + 10/12, "feet"),
  34067. default: true
  34068. },
  34069. ]
  34070. ))
  34071. characterMakers.push(() => makeCharacter(
  34072. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34073. {
  34074. front: {
  34075. height: math.unit(8 + 6/12, "feet"),
  34076. weight: math.unit(1150, "lb"),
  34077. name: "Front",
  34078. image: {
  34079. source: "./media/characters/kichi/front.svg",
  34080. extra: 1267/1164,
  34081. bottom: 61/1328
  34082. }
  34083. },
  34084. back: {
  34085. height: math.unit(8 + 6/12, "feet"),
  34086. weight: math.unit(1150, "lb"),
  34087. name: "Back",
  34088. image: {
  34089. source: "./media/characters/kichi/back.svg",
  34090. extra: 1273/1166,
  34091. bottom: 33/1306
  34092. }
  34093. },
  34094. },
  34095. [
  34096. {
  34097. name: "Normal",
  34098. height: math.unit(8 + 6/12, "feet"),
  34099. default: true
  34100. },
  34101. ]
  34102. ))
  34103. characterMakers.push(() => makeCharacter(
  34104. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34105. {
  34106. front: {
  34107. height: math.unit(6, "feet"),
  34108. weight: math.unit(210, "lb"),
  34109. name: "Front",
  34110. image: {
  34111. source: "./media/characters/manetel-greyscale/front.svg",
  34112. extra: 350/312,
  34113. bottom: 8/358
  34114. }
  34115. },
  34116. },
  34117. [
  34118. {
  34119. name: "Micro",
  34120. height: math.unit(2, "inches")
  34121. },
  34122. {
  34123. name: "Normal",
  34124. height: math.unit(6, "feet"),
  34125. default: true
  34126. },
  34127. {
  34128. name: "Minimacro",
  34129. height: math.unit(17, "feet")
  34130. },
  34131. {
  34132. name: "Macro",
  34133. height: math.unit(117, "feet")
  34134. },
  34135. ]
  34136. ))
  34137. characterMakers.push(() => makeCharacter(
  34138. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34139. {
  34140. side: {
  34141. height: math.unit(5 + 1/12, "feet"),
  34142. weight: math.unit(418, "lb"),
  34143. name: "Side",
  34144. image: {
  34145. source: "./media/characters/softpurr/side.svg",
  34146. extra: 1993/1945,
  34147. bottom: 134/2127
  34148. }
  34149. },
  34150. front: {
  34151. height: math.unit(5 + 1/12, "feet"),
  34152. weight: math.unit(418, "lb"),
  34153. name: "Front",
  34154. image: {
  34155. source: "./media/characters/softpurr/front.svg",
  34156. extra: 1950/1856,
  34157. bottom: 174/2124
  34158. }
  34159. },
  34160. paw: {
  34161. height: math.unit(1, "feet"),
  34162. name: "Paw",
  34163. image: {
  34164. source: "./media/characters/softpurr/paw.svg"
  34165. }
  34166. },
  34167. },
  34168. [
  34169. {
  34170. name: "Normal",
  34171. height: math.unit(5 + 1/12, "feet"),
  34172. default: true
  34173. },
  34174. ]
  34175. ))
  34176. characterMakers.push(() => makeCharacter(
  34177. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34178. {
  34179. front: {
  34180. height: math.unit(260, "meters"),
  34181. name: "Front",
  34182. image: {
  34183. source: "./media/characters/anahita/front.svg",
  34184. extra: 665/635,
  34185. bottom: 89/754
  34186. }
  34187. },
  34188. },
  34189. [
  34190. {
  34191. name: "Macro",
  34192. height: math.unit(260, "meters"),
  34193. default: true
  34194. },
  34195. ]
  34196. ))
  34197. characterMakers.push(() => makeCharacter(
  34198. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34199. {
  34200. front: {
  34201. height: math.unit(4 + 10/12, "feet"),
  34202. weight: math.unit(160, "lb"),
  34203. name: "Front",
  34204. image: {
  34205. source: "./media/characters/chip-mouse/front.svg",
  34206. extra: 3528/3408,
  34207. bottom: 0/3528
  34208. }
  34209. },
  34210. frontNsfw: {
  34211. height: math.unit(4 + 10/12, "feet"),
  34212. weight: math.unit(160, "lb"),
  34213. name: "Front (NSFW)",
  34214. image: {
  34215. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34216. extra: 3528/3408,
  34217. bottom: 0/3528
  34218. }
  34219. },
  34220. },
  34221. [
  34222. {
  34223. name: "Normal",
  34224. height: math.unit(4 + 10/12, "feet"),
  34225. default: true
  34226. },
  34227. ]
  34228. ))
  34229. characterMakers.push(() => makeCharacter(
  34230. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34231. {
  34232. side: {
  34233. height: math.unit(10, "feet"),
  34234. weight: math.unit(14000, "lb"),
  34235. name: "Side",
  34236. image: {
  34237. source: "./media/characters/kremm/side.svg",
  34238. extra: 1390/1053,
  34239. bottom: 90/1480
  34240. }
  34241. },
  34242. gut: {
  34243. height: math.unit(5.8, "feet"),
  34244. name: "Gut",
  34245. image: {
  34246. source: "./media/characters/kremm/gut.svg"
  34247. }
  34248. },
  34249. ass: {
  34250. height: math.unit(6.1, "feet"),
  34251. name: "Ass",
  34252. image: {
  34253. source: "./media/characters/kremm/ass.svg"
  34254. }
  34255. },
  34256. jaws: {
  34257. height: math.unit(2.2, "feet"),
  34258. name: "Jaws",
  34259. image: {
  34260. source: "./media/characters/kremm/jaws.svg"
  34261. }
  34262. },
  34263. dick: {
  34264. height: math.unit(4.26, "feet"),
  34265. name: "Dick",
  34266. image: {
  34267. source: "./media/characters/kremm/dick.svg"
  34268. }
  34269. },
  34270. },
  34271. [
  34272. {
  34273. name: "Normal",
  34274. height: math.unit(10, "feet"),
  34275. default: true
  34276. },
  34277. ]
  34278. ))
  34279. characterMakers.push(() => makeCharacter(
  34280. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34281. {
  34282. front: {
  34283. height: math.unit(30, "stories"),
  34284. name: "Front",
  34285. image: {
  34286. source: "./media/characters/kai/front.svg",
  34287. extra: 1892/1718,
  34288. bottom: 162/2054
  34289. }
  34290. },
  34291. },
  34292. [
  34293. {
  34294. name: "Macro",
  34295. height: math.unit(30, "stories"),
  34296. default: true
  34297. },
  34298. ]
  34299. ))
  34300. characterMakers.push(() => makeCharacter(
  34301. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34302. {
  34303. front: {
  34304. height: math.unit(6 + 4/12, "feet"),
  34305. weight: math.unit(145, "lb"),
  34306. name: "Front",
  34307. image: {
  34308. source: "./media/characters/sykes/front.svg",
  34309. extra: 1321 / 1187,
  34310. bottom: 66 / 1387
  34311. }
  34312. },
  34313. back: {
  34314. height: math.unit(6 + 4/12, "feet"),
  34315. weight: math.unit(145, "lb"),
  34316. name: "Back",
  34317. image: {
  34318. source: "./media/characters/sykes/back.svg",
  34319. extra: 1326/1181,
  34320. bottom: 31/1357
  34321. }
  34322. },
  34323. handBack: {
  34324. height: math.unit(0.9, "feet"),
  34325. name: "Hand (Back)",
  34326. image: {
  34327. source: "./media/characters/sykes/hand-back.svg"
  34328. }
  34329. },
  34330. handFront: {
  34331. height: math.unit(0.839, "feet"),
  34332. name: "Hand (Front)",
  34333. image: {
  34334. source: "./media/characters/sykes/hand-front.svg"
  34335. }
  34336. },
  34337. leftFoot: {
  34338. height: math.unit(1.2, "feet"),
  34339. name: "Foot (Left)",
  34340. image: {
  34341. source: "./media/characters/sykes/foot-left.svg"
  34342. }
  34343. },
  34344. rightFoot: {
  34345. height: math.unit(1.2, "feet"),
  34346. name: "Foot (Right)",
  34347. image: {
  34348. source: "./media/characters/sykes/foot-right.svg"
  34349. }
  34350. },
  34351. maw: {
  34352. height: math.unit(1.93, "feet"),
  34353. name: "Maw",
  34354. image: {
  34355. source: "./media/characters/sykes/maw.svg"
  34356. }
  34357. },
  34358. teeth: {
  34359. height: math.unit(0.51, "feet"),
  34360. name: "Teeth",
  34361. image: {
  34362. source: "./media/characters/sykes/teeth.svg"
  34363. }
  34364. },
  34365. tongue: {
  34366. height: math.unit(2.13, "feet"),
  34367. name: "Tongue",
  34368. image: {
  34369. source: "./media/characters/sykes/tongue.svg"
  34370. }
  34371. },
  34372. uvula: {
  34373. height: math.unit(0.16, "feet"),
  34374. name: "Uvula",
  34375. image: {
  34376. source: "./media/characters/sykes/uvula.svg"
  34377. }
  34378. },
  34379. collar: {
  34380. height: math.unit(0.287, "feet"),
  34381. name: "Collar",
  34382. image: {
  34383. source: "./media/characters/sykes/collar.svg"
  34384. }
  34385. },
  34386. },
  34387. [
  34388. {
  34389. name: "Shrunken",
  34390. height: math.unit(5, "inches")
  34391. },
  34392. {
  34393. name: "Normal",
  34394. height: math.unit(6 + 4 / 12, "feet"),
  34395. default: true
  34396. },
  34397. {
  34398. name: "Big",
  34399. height: math.unit(15, "feet")
  34400. },
  34401. ]
  34402. ))
  34403. characterMakers.push(() => makeCharacter(
  34404. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34405. {
  34406. front: {
  34407. height: math.unit(5 + 8/12, "feet"),
  34408. weight: math.unit(190, "lb"),
  34409. name: "Front",
  34410. image: {
  34411. source: "./media/characters/oven-otter/front.svg",
  34412. extra: 1809/1740,
  34413. bottom: 181/1990
  34414. }
  34415. },
  34416. back: {
  34417. height: math.unit(5 + 8/12, "feet"),
  34418. weight: math.unit(190, "lb"),
  34419. name: "Back",
  34420. image: {
  34421. source: "./media/characters/oven-otter/back.svg",
  34422. extra: 1709/1635,
  34423. bottom: 118/1827
  34424. }
  34425. },
  34426. hand: {
  34427. height: math.unit(1.07, "feet"),
  34428. name: "Hand",
  34429. image: {
  34430. source: "./media/characters/oven-otter/hand.svg"
  34431. }
  34432. },
  34433. beans: {
  34434. height: math.unit(1.74, "feet"),
  34435. name: "Beans",
  34436. image: {
  34437. source: "./media/characters/oven-otter/beans.svg"
  34438. }
  34439. },
  34440. },
  34441. [
  34442. {
  34443. name: "Micro",
  34444. height: math.unit(0.5, "inches")
  34445. },
  34446. {
  34447. name: "Normal",
  34448. height: math.unit(5 + 8/12, "feet"),
  34449. default: true
  34450. },
  34451. {
  34452. name: "Macro",
  34453. height: math.unit(250, "feet")
  34454. },
  34455. {
  34456. name: "Really High",
  34457. height: math.unit(420, "feet")
  34458. },
  34459. ]
  34460. ))
  34461. characterMakers.push(() => makeCharacter(
  34462. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34463. {
  34464. front: {
  34465. height: math.unit(5, "meters"),
  34466. weight: math.unit(292000000000000, "kg"),
  34467. name: "Front",
  34468. image: {
  34469. source: "./media/characters/devourer/front.svg",
  34470. extra: 1800/1733,
  34471. bottom: 211/2011
  34472. }
  34473. },
  34474. maw: {
  34475. height: math.unit(1.1, "meter"),
  34476. name: "Maw",
  34477. image: {
  34478. source: "./media/characters/devourer/maw.svg"
  34479. }
  34480. },
  34481. },
  34482. [
  34483. {
  34484. name: "Small",
  34485. height: math.unit(3, "meters")
  34486. },
  34487. {
  34488. name: "Large",
  34489. height: math.unit(5, "meters"),
  34490. default: true
  34491. },
  34492. ]
  34493. ))
  34494. characterMakers.push(() => makeCharacter(
  34495. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34496. {
  34497. front: {
  34498. height: math.unit(6, "feet"),
  34499. weight: math.unit(400, "lb"),
  34500. name: "Front",
  34501. image: {
  34502. source: "./media/characters/ellarby/front.svg",
  34503. extra: 1909/1763,
  34504. bottom: 80/1989
  34505. }
  34506. },
  34507. back: {
  34508. height: math.unit(6, "feet"),
  34509. weight: math.unit(400, "lb"),
  34510. name: "Back",
  34511. image: {
  34512. source: "./media/characters/ellarby/back.svg",
  34513. extra: 1914/1784,
  34514. bottom: 172/2086
  34515. }
  34516. },
  34517. },
  34518. [
  34519. {
  34520. name: "Mischief",
  34521. height: math.unit(18, "inches")
  34522. },
  34523. {
  34524. name: "Trouble",
  34525. height: math.unit(12, "feet")
  34526. },
  34527. {
  34528. name: "Havoc",
  34529. height: math.unit(200, "feet"),
  34530. default: true
  34531. },
  34532. {
  34533. name: "Pandemonium",
  34534. height: math.unit(1, "mile")
  34535. },
  34536. {
  34537. name: "Catastrophe",
  34538. height: math.unit(100, "miles")
  34539. },
  34540. ]
  34541. ))
  34542. characterMakers.push(() => makeCharacter(
  34543. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34544. {
  34545. front: {
  34546. height: math.unit(4.7, "meters"),
  34547. weight: math.unit(6500, "kg"),
  34548. name: "Front",
  34549. image: {
  34550. source: "./media/characters/vex/front.svg",
  34551. extra: 1288/1140,
  34552. bottom: 100/1388
  34553. }
  34554. },
  34555. },
  34556. [
  34557. {
  34558. name: "Normal",
  34559. height: math.unit(4.7, "meters"),
  34560. default: true
  34561. },
  34562. ]
  34563. ))
  34564. characterMakers.push(() => makeCharacter(
  34565. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34566. {
  34567. normal: {
  34568. height: math.unit(6, "feet"),
  34569. weight: math.unit(350, "lb"),
  34570. name: "Normal",
  34571. image: {
  34572. source: "./media/characters/teshy/normal.svg",
  34573. extra: 1795/1735,
  34574. bottom: 16/1811
  34575. }
  34576. },
  34577. monsterFront: {
  34578. height: math.unit(12, "feet"),
  34579. weight: math.unit(4700, "lb"),
  34580. name: "Monster (Front)",
  34581. image: {
  34582. source: "./media/characters/teshy/monster-front.svg",
  34583. extra: 2042/2034,
  34584. bottom: 128/2170
  34585. }
  34586. },
  34587. monsterSide: {
  34588. height: math.unit(12, "feet"),
  34589. weight: math.unit(4700, "lb"),
  34590. name: "Monster (Side)",
  34591. image: {
  34592. source: "./media/characters/teshy/monster-side.svg",
  34593. extra: 2067/2056,
  34594. bottom: 70/2137
  34595. }
  34596. },
  34597. monsterBack: {
  34598. height: math.unit(12, "feet"),
  34599. weight: math.unit(4700, "lb"),
  34600. name: "Monster (Back)",
  34601. image: {
  34602. source: "./media/characters/teshy/monster-back.svg",
  34603. extra: 1921/1914,
  34604. bottom: 171/2092
  34605. }
  34606. },
  34607. },
  34608. [
  34609. {
  34610. name: "Normal",
  34611. height: math.unit(6, "feet"),
  34612. default: true
  34613. },
  34614. ]
  34615. ))
  34616. characterMakers.push(() => makeCharacter(
  34617. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34618. {
  34619. front: {
  34620. height: math.unit(6, "feet"),
  34621. name: "Front",
  34622. image: {
  34623. source: "./media/characters/ramey/front.svg",
  34624. extra: 790/787,
  34625. bottom: 27/817
  34626. }
  34627. },
  34628. },
  34629. [
  34630. {
  34631. name: "Normal",
  34632. height: math.unit(6, "feet"),
  34633. default: true
  34634. },
  34635. ]
  34636. ))
  34637. characterMakers.push(() => makeCharacter(
  34638. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34639. {
  34640. front: {
  34641. height: math.unit(5 + 5/12, "feet"),
  34642. weight: math.unit(120, "lb"),
  34643. name: "Front",
  34644. image: {
  34645. source: "./media/characters/phirae/front.svg",
  34646. extra: 2491/2436,
  34647. bottom: 38/2529
  34648. }
  34649. },
  34650. },
  34651. [
  34652. {
  34653. name: "Normal",
  34654. height: math.unit(5 + 5/12, "feet"),
  34655. default: true
  34656. },
  34657. ]
  34658. ))
  34659. characterMakers.push(() => makeCharacter(
  34660. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34661. {
  34662. front: {
  34663. height: math.unit(5 + 3/12, "feet"),
  34664. name: "Front",
  34665. image: {
  34666. source: "./media/characters/stagglas/front.svg",
  34667. extra: 962/882,
  34668. bottom: 53/1015
  34669. }
  34670. },
  34671. feral: {
  34672. height: math.unit(335, "cm"),
  34673. name: "Feral",
  34674. image: {
  34675. source: "./media/characters/stagglas/feral.svg",
  34676. extra: 1732/1090,
  34677. bottom: 48/1780
  34678. }
  34679. },
  34680. },
  34681. [
  34682. {
  34683. name: "Normal",
  34684. height: math.unit(5 + 3/12, "feet"),
  34685. default: true
  34686. },
  34687. ]
  34688. ))
  34689. characterMakers.push(() => makeCharacter(
  34690. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34691. {
  34692. front: {
  34693. height: math.unit(5 + 4/12, "feet"),
  34694. weight: math.unit(145, "lb"),
  34695. name: "Front",
  34696. image: {
  34697. source: "./media/characters/starra/front.svg",
  34698. extra: 1790/1691,
  34699. bottom: 91/1881
  34700. }
  34701. },
  34702. },
  34703. [
  34704. {
  34705. name: "Normal",
  34706. height: math.unit(5 + 4/12, "feet"),
  34707. default: true
  34708. },
  34709. ]
  34710. ))
  34711. characterMakers.push(() => makeCharacter(
  34712. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34713. {
  34714. front: {
  34715. height: math.unit(2.2, "meters"),
  34716. name: "Front",
  34717. image: {
  34718. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34719. extra: 1194/1005,
  34720. bottom: 25/1219
  34721. }
  34722. },
  34723. },
  34724. [
  34725. {
  34726. name: "Normal",
  34727. height: math.unit(2.2, "meters"),
  34728. default: true
  34729. },
  34730. ]
  34731. ))
  34732. characterMakers.push(() => makeCharacter(
  34733. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34734. {
  34735. side: {
  34736. height: math.unit(8 + 2/12, "feet"),
  34737. weight: math.unit(1240, "lb"),
  34738. name: "Side",
  34739. image: {
  34740. source: "./media/characters/mika-valentine/side.svg",
  34741. extra: 2670/2501,
  34742. bottom: 250/2920
  34743. }
  34744. },
  34745. },
  34746. [
  34747. {
  34748. name: "Normal",
  34749. height: math.unit(8 + 2/12, "feet"),
  34750. default: true
  34751. },
  34752. ]
  34753. ))
  34754. characterMakers.push(() => makeCharacter(
  34755. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34756. {
  34757. front: {
  34758. height: math.unit(7 + 2/12, "feet"),
  34759. name: "Front",
  34760. image: {
  34761. source: "./media/characters/xoltol/front.svg",
  34762. extra: 2212/2124,
  34763. bottom: 84/2296
  34764. }
  34765. },
  34766. side: {
  34767. height: math.unit(7 + 2/12, "feet"),
  34768. name: "Side",
  34769. image: {
  34770. source: "./media/characters/xoltol/side.svg",
  34771. extra: 2273/2197,
  34772. bottom: 26/2299
  34773. }
  34774. },
  34775. hand: {
  34776. height: math.unit(2.5, "feet"),
  34777. name: "Hand",
  34778. image: {
  34779. source: "./media/characters/xoltol/hand.svg"
  34780. }
  34781. },
  34782. },
  34783. [
  34784. {
  34785. name: "Small-ish",
  34786. height: math.unit(5 + 11/12, "feet")
  34787. },
  34788. {
  34789. name: "Normal",
  34790. height: math.unit(7 + 2/12, "feet")
  34791. },
  34792. {
  34793. name: "\"Macro\"",
  34794. height: math.unit(14 + 9/12, "feet"),
  34795. default: true
  34796. },
  34797. {
  34798. name: "Alternate Height",
  34799. height: math.unit(20, "feet")
  34800. },
  34801. {
  34802. name: "Actually Macro",
  34803. height: math.unit(100, "feet")
  34804. },
  34805. ]
  34806. ))
  34807. characterMakers.push(() => makeCharacter(
  34808. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34809. {
  34810. front: {
  34811. height: math.unit(5 + 2/12, "feet"),
  34812. name: "Front",
  34813. image: {
  34814. source: "./media/characters/kotetsu-redwood/front.svg",
  34815. extra: 1053/942,
  34816. bottom: 60/1113
  34817. }
  34818. },
  34819. },
  34820. [
  34821. {
  34822. name: "Normal",
  34823. height: math.unit(5 + 2/12, "feet"),
  34824. default: true
  34825. },
  34826. ]
  34827. ))
  34828. characterMakers.push(() => makeCharacter(
  34829. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34830. {
  34831. front: {
  34832. height: math.unit(2.4, "meters"),
  34833. weight: math.unit(125, "kg"),
  34834. name: "Front",
  34835. image: {
  34836. source: "./media/characters/lilith/front.svg",
  34837. extra: 1590/1513,
  34838. bottom: 203/1793
  34839. }
  34840. },
  34841. },
  34842. [
  34843. {
  34844. name: "Humanoid",
  34845. height: math.unit(2.4, "meters")
  34846. },
  34847. {
  34848. name: "Normal",
  34849. height: math.unit(6, "meters"),
  34850. default: true
  34851. },
  34852. {
  34853. name: "Largest",
  34854. height: math.unit(55, "meters")
  34855. },
  34856. ]
  34857. ))
  34858. characterMakers.push(() => makeCharacter(
  34859. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34860. {
  34861. front: {
  34862. height: math.unit(8 + 4/12, "feet"),
  34863. weight: math.unit(535, "lb"),
  34864. name: "Front",
  34865. image: {
  34866. source: "./media/characters/beh'kah-bolger/front.svg",
  34867. extra: 1660/1603,
  34868. bottom: 37/1697
  34869. }
  34870. },
  34871. },
  34872. [
  34873. {
  34874. name: "Normal",
  34875. height: math.unit(8 + 4/12, "feet"),
  34876. default: true
  34877. },
  34878. {
  34879. name: "Kaiju",
  34880. height: math.unit(250, "feet")
  34881. },
  34882. {
  34883. name: "Still Growing",
  34884. height: math.unit(10, "miles")
  34885. },
  34886. {
  34887. name: "Continental",
  34888. height: math.unit(5000, "miles")
  34889. },
  34890. {
  34891. name: "Final Form",
  34892. height: math.unit(2500000, "miles")
  34893. },
  34894. ]
  34895. ))
  34896. characterMakers.push(() => makeCharacter(
  34897. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34898. {
  34899. front: {
  34900. height: math.unit(7 + 2/12, "feet"),
  34901. weight: math.unit(230, "kg"),
  34902. name: "Front",
  34903. image: {
  34904. source: "./media/characters/tatyana-milewska/front.svg",
  34905. extra: 1199/1150,
  34906. bottom: 86/1285
  34907. }
  34908. },
  34909. },
  34910. [
  34911. {
  34912. name: "Normal",
  34913. height: math.unit(7 + 2/12, "feet"),
  34914. default: true
  34915. },
  34916. {
  34917. name: "Big",
  34918. height: math.unit(12, "feet")
  34919. },
  34920. {
  34921. name: "Minimacro",
  34922. height: math.unit(20, "feet")
  34923. },
  34924. {
  34925. name: "Macro",
  34926. height: math.unit(120, "feet")
  34927. },
  34928. ]
  34929. ))
  34930. characterMakers.push(() => makeCharacter(
  34931. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34932. {
  34933. front: {
  34934. height: math.unit(7 + 8/12, "feet"),
  34935. weight: math.unit(152, "kg"),
  34936. name: "Front",
  34937. image: {
  34938. source: "./media/characters/helen-arri/front.svg",
  34939. extra: 440/423,
  34940. bottom: 14/454
  34941. }
  34942. },
  34943. back: {
  34944. height: math.unit(7 + 8/12, "feet"),
  34945. weight: math.unit(152, "kg"),
  34946. name: "Back",
  34947. image: {
  34948. source: "./media/characters/helen-arri/back.svg",
  34949. extra: 443/426,
  34950. bottom: 8/451
  34951. }
  34952. },
  34953. },
  34954. [
  34955. {
  34956. name: "Normal",
  34957. height: math.unit(7 + 8/12, "feet"),
  34958. default: true
  34959. },
  34960. {
  34961. name: "Big",
  34962. height: math.unit(14, "feet")
  34963. },
  34964. {
  34965. name: "Minimacro",
  34966. height: math.unit(24, "feet")
  34967. },
  34968. {
  34969. name: "Macro",
  34970. height: math.unit(140, "feet")
  34971. },
  34972. ]
  34973. ))
  34974. characterMakers.push(() => makeCharacter(
  34975. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34976. {
  34977. front: {
  34978. height: math.unit(6, "meters"),
  34979. name: "Front",
  34980. image: {
  34981. source: "./media/characters/ehanu-rehu/front.svg",
  34982. extra: 1800/1800,
  34983. bottom: 59/1859
  34984. }
  34985. },
  34986. },
  34987. [
  34988. {
  34989. name: "Normal",
  34990. height: math.unit(6, "meters"),
  34991. default: true
  34992. },
  34993. ]
  34994. ))
  34995. characterMakers.push(() => makeCharacter(
  34996. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34997. {
  34998. front: {
  34999. height: math.unit(7 + 3/12, "feet"),
  35000. name: "Front",
  35001. image: {
  35002. source: "./media/characters/renholder/front.svg",
  35003. extra: 3096/2960,
  35004. bottom: 250/3346
  35005. }
  35006. },
  35007. },
  35008. [
  35009. {
  35010. name: "Normal Bat",
  35011. height: math.unit(7 + 3/12, "feet"),
  35012. default: true
  35013. },
  35014. {
  35015. name: "Slightly Tall Bat",
  35016. height: math.unit(100, "feet")
  35017. },
  35018. {
  35019. name: "Big Bat",
  35020. height: math.unit(1000, "feet")
  35021. },
  35022. {
  35023. name: "City-Sized Bat",
  35024. height: math.unit(200000, "feet")
  35025. },
  35026. {
  35027. name: "Bigger Bat",
  35028. height: math.unit(10000, "miles")
  35029. },
  35030. {
  35031. name: "Solar Sized Bat",
  35032. height: math.unit(100, "AU")
  35033. },
  35034. {
  35035. name: "Galactic Bat",
  35036. height: math.unit(200000, "lightyears")
  35037. },
  35038. {
  35039. name: "Universally Known Bat",
  35040. height: math.unit(1, "universe")
  35041. },
  35042. ]
  35043. ))
  35044. characterMakers.push(() => makeCharacter(
  35045. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35046. {
  35047. front: {
  35048. height: math.unit(6 + 11/12, "feet"),
  35049. weight: math.unit(250, "lb"),
  35050. name: "Front",
  35051. image: {
  35052. source: "./media/characters/cookiecat/front.svg",
  35053. extra: 893/827,
  35054. bottom: 14/907
  35055. }
  35056. },
  35057. },
  35058. [
  35059. {
  35060. name: "Micro",
  35061. height: math.unit(3, "inches")
  35062. },
  35063. {
  35064. name: "Normal",
  35065. height: math.unit(6 + 11/12, "feet"),
  35066. default: true
  35067. },
  35068. {
  35069. name: "Macro",
  35070. height: math.unit(100, "feet")
  35071. },
  35072. {
  35073. name: "Macro+",
  35074. height: math.unit(404, "feet")
  35075. },
  35076. {
  35077. name: "Megamacro",
  35078. height: math.unit(165, "miles")
  35079. },
  35080. {
  35081. name: "Planetary",
  35082. height: math.unit(4600, "miles")
  35083. },
  35084. ]
  35085. ))
  35086. characterMakers.push(() => makeCharacter(
  35087. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35088. {
  35089. front: {
  35090. height: math.unit(10 + 3/12, "feet"),
  35091. weight: math.unit(1500, "lb"),
  35092. name: "Front",
  35093. image: {
  35094. source: "./media/characters/tux-kusanagi/front.svg",
  35095. extra: 944/840,
  35096. bottom: 39/983
  35097. }
  35098. },
  35099. back: {
  35100. height: math.unit(10 + 3/12, "feet"),
  35101. weight: math.unit(1500, "lb"),
  35102. name: "Back",
  35103. image: {
  35104. source: "./media/characters/tux-kusanagi/back.svg",
  35105. extra: 941/842,
  35106. bottom: 28/969
  35107. }
  35108. },
  35109. rump: {
  35110. height: math.unit(5.25, "feet"),
  35111. name: "Rump",
  35112. image: {
  35113. source: "./media/characters/tux-kusanagi/rump.svg"
  35114. }
  35115. },
  35116. beak: {
  35117. height: math.unit(1.54, "feet"),
  35118. name: "Beak",
  35119. image: {
  35120. source: "./media/characters/tux-kusanagi/beak.svg"
  35121. }
  35122. },
  35123. },
  35124. [
  35125. {
  35126. name: "Normal",
  35127. height: math.unit(10 + 3/12, "feet"),
  35128. default: true
  35129. },
  35130. ]
  35131. ))
  35132. characterMakers.push(() => makeCharacter(
  35133. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35134. {
  35135. front: {
  35136. height: math.unit(58, "feet"),
  35137. weight: math.unit(200, "tons"),
  35138. name: "Front",
  35139. image: {
  35140. source: "./media/characters/uzarmazari/front.svg",
  35141. extra: 1575/1455,
  35142. bottom: 152/1727
  35143. }
  35144. },
  35145. back: {
  35146. height: math.unit(58, "feet"),
  35147. weight: math.unit(200, "tons"),
  35148. name: "Back",
  35149. image: {
  35150. source: "./media/characters/uzarmazari/back.svg",
  35151. extra: 1585/1510,
  35152. bottom: 157/1742
  35153. }
  35154. },
  35155. head: {
  35156. height: math.unit(26, "feet"),
  35157. name: "Head",
  35158. image: {
  35159. source: "./media/characters/uzarmazari/head.svg"
  35160. }
  35161. },
  35162. },
  35163. [
  35164. {
  35165. name: "Normal",
  35166. height: math.unit(58, "feet"),
  35167. default: true
  35168. },
  35169. ]
  35170. ))
  35171. characterMakers.push(() => makeCharacter(
  35172. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35173. {
  35174. side: {
  35175. height: math.unit(15, "feet"),
  35176. name: "Side",
  35177. image: {
  35178. source: "./media/characters/akitu/side.svg",
  35179. extra: 1421/1321,
  35180. bottom: 157/1578
  35181. }
  35182. },
  35183. front: {
  35184. height: math.unit(15, "feet"),
  35185. name: "Front",
  35186. image: {
  35187. source: "./media/characters/akitu/front.svg",
  35188. extra: 1435/1326,
  35189. bottom: 232/1667
  35190. }
  35191. },
  35192. },
  35193. [
  35194. {
  35195. name: "Normal",
  35196. height: math.unit(15, "feet"),
  35197. default: true
  35198. },
  35199. ]
  35200. ))
  35201. characterMakers.push(() => makeCharacter(
  35202. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35203. {
  35204. front: {
  35205. height: math.unit(10 + 8/12, "feet"),
  35206. name: "Front",
  35207. image: {
  35208. source: "./media/characters/azalie-croixland/front.svg",
  35209. extra: 1972/1856,
  35210. bottom: 31/2003
  35211. }
  35212. },
  35213. },
  35214. [
  35215. {
  35216. name: "Original Height",
  35217. height: math.unit(5 + 4/12, "feet")
  35218. },
  35219. {
  35220. name: "Normal Height",
  35221. height: math.unit(10 + 8/12, "feet"),
  35222. default: true
  35223. },
  35224. ]
  35225. ))
  35226. characterMakers.push(() => makeCharacter(
  35227. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35228. {
  35229. side: {
  35230. height: math.unit(7 + 1/12, "feet"),
  35231. weight: math.unit(245, "lb"),
  35232. name: "Side",
  35233. image: {
  35234. source: "./media/characters/kavus-kazian/side.svg",
  35235. extra: 349/342,
  35236. bottom: 15/364
  35237. }
  35238. },
  35239. },
  35240. [
  35241. {
  35242. name: "Normal",
  35243. height: math.unit(7 + 1/12, "feet"),
  35244. default: true
  35245. },
  35246. ]
  35247. ))
  35248. characterMakers.push(() => makeCharacter(
  35249. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35250. {
  35251. normalFront: {
  35252. height: math.unit(5 + 11/12, "feet"),
  35253. name: "Front",
  35254. image: {
  35255. source: "./media/characters/moonlight-rose/normal-front.svg",
  35256. extra: 1980/1825,
  35257. bottom: 18/1998
  35258. },
  35259. form: "normal",
  35260. default: true
  35261. },
  35262. normalBack: {
  35263. height: math.unit(5 + 11/12, "feet"),
  35264. name: "Back",
  35265. image: {
  35266. source: "./media/characters/moonlight-rose/normal-back.svg",
  35267. extra: 2010/1839,
  35268. bottom: 10/2020
  35269. },
  35270. form: "normal"
  35271. },
  35272. demonFront: {
  35273. height: math.unit(1.5, "earths"),
  35274. name: "Front",
  35275. image: {
  35276. source: "./media/characters/moonlight-rose/demon.svg",
  35277. extra: 1400/1294,
  35278. bottom: 45/1445
  35279. },
  35280. form: "demon",
  35281. default: true
  35282. },
  35283. terraFront: {
  35284. height: math.unit(1.5, "earths"),
  35285. name: "Front",
  35286. image: {
  35287. source: "./media/characters/moonlight-rose/terra.svg"
  35288. },
  35289. form: "terra",
  35290. default: true
  35291. },
  35292. jupiterFront: {
  35293. height: math.unit(69911*2, "km"),
  35294. name: "Front",
  35295. image: {
  35296. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35297. extra: 1367/1286,
  35298. bottom: 55/1422
  35299. },
  35300. form: "jupiter",
  35301. default: true
  35302. },
  35303. neptuneFront: {
  35304. height: math.unit(24622*2, "feet"),
  35305. name: "Front",
  35306. image: {
  35307. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35308. extra: 1851/1712,
  35309. bottom: 0/1851
  35310. },
  35311. form: "neptune",
  35312. default: true
  35313. },
  35314. },
  35315. [
  35316. {
  35317. name: "\"Natural\" Height",
  35318. height: math.unit(5 + 11/12, "feet"),
  35319. form: "normal"
  35320. },
  35321. {
  35322. name: "Smallest comfortable size",
  35323. height: math.unit(40, "meters"),
  35324. form: "normal"
  35325. },
  35326. {
  35327. name: "Common size",
  35328. height: math.unit(50, "km"),
  35329. form: "normal",
  35330. default: true
  35331. },
  35332. {
  35333. name: "Normal",
  35334. height: math.unit(1.5, "earths"),
  35335. form: "demon",
  35336. default: true
  35337. },
  35338. {
  35339. name: "Universal",
  35340. height: math.unit(15, "universes"),
  35341. form: "demon"
  35342. },
  35343. {
  35344. name: "Earth",
  35345. height: math.unit(1.5, "earths"),
  35346. form: "terra",
  35347. default: true
  35348. },
  35349. {
  35350. name: "Super Earth",
  35351. height: math.unit(67.5, "earths"),
  35352. form: "terra"
  35353. },
  35354. {
  35355. name: "Doesn't fit in a solar system...",
  35356. height: math.unit(1, "galaxy"),
  35357. form: "terra"
  35358. },
  35359. {
  35360. name: "Saturn",
  35361. height: math.unit(58232*2, "km"),
  35362. form: "jupiter"
  35363. },
  35364. {
  35365. name: "Jupiter",
  35366. height: math.unit(69911*2, "km"),
  35367. form: "jupiter",
  35368. default: true
  35369. },
  35370. {
  35371. name: "HD 100546 b",
  35372. height: math.unit(482938, "km"),
  35373. form: "jupiter"
  35374. },
  35375. {
  35376. name: "Enceladus",
  35377. height: math.unit(513*2, "km"),
  35378. form: "neptune"
  35379. },
  35380. {
  35381. name: "Europe",
  35382. height: math.unit(1560*2, "km"),
  35383. form: "neptune"
  35384. },
  35385. {
  35386. name: "Neptune",
  35387. height: math.unit(24622*2, "km"),
  35388. form: "neptune",
  35389. default: true
  35390. },
  35391. {
  35392. name: "CoRoT-9b",
  35393. height: math.unit(75067*2, "km"),
  35394. form: "neptune"
  35395. },
  35396. ],
  35397. {
  35398. "normal": {
  35399. name: "Normal",
  35400. default: true
  35401. },
  35402. "demon": {
  35403. name: "Demon"
  35404. },
  35405. "terra": {
  35406. name: "Terra"
  35407. },
  35408. "jupiter": {
  35409. name: "Jupiter"
  35410. },
  35411. "neptune": {
  35412. name: "Neptune"
  35413. }
  35414. }
  35415. ))
  35416. characterMakers.push(() => makeCharacter(
  35417. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35418. {
  35419. front: {
  35420. height: math.unit(16, "feet"),
  35421. weight: math.unit(610, "kg"),
  35422. name: "Front",
  35423. image: {
  35424. source: "./media/characters/huckle/front.svg",
  35425. extra: 1731/1625,
  35426. bottom: 33/1764
  35427. }
  35428. },
  35429. back: {
  35430. height: math.unit(16, "feet"),
  35431. weight: math.unit(610, "kg"),
  35432. name: "Back",
  35433. image: {
  35434. source: "./media/characters/huckle/back.svg",
  35435. extra: 1738/1651,
  35436. bottom: 37/1775
  35437. }
  35438. },
  35439. laughing: {
  35440. height: math.unit(3.75, "feet"),
  35441. name: "Laughing",
  35442. image: {
  35443. source: "./media/characters/huckle/laughing.svg"
  35444. }
  35445. },
  35446. angry: {
  35447. height: math.unit(4.15, "feet"),
  35448. name: "Angry",
  35449. image: {
  35450. source: "./media/characters/huckle/angry.svg"
  35451. }
  35452. },
  35453. },
  35454. [
  35455. {
  35456. name: "Normal",
  35457. height: math.unit(16, "feet"),
  35458. default: true
  35459. },
  35460. {
  35461. name: "Mini Macro",
  35462. height: math.unit(463, "feet")
  35463. },
  35464. {
  35465. name: "Macro",
  35466. height: math.unit(1680, "meters")
  35467. },
  35468. {
  35469. name: "Mega Macro",
  35470. height: math.unit(175, "km")
  35471. },
  35472. {
  35473. name: "Terra Macro",
  35474. height: math.unit(32, "gigameters")
  35475. },
  35476. {
  35477. name: "Multiverse+",
  35478. height: math.unit(2.56e23, "yottameters")
  35479. },
  35480. ]
  35481. ))
  35482. characterMakers.push(() => makeCharacter(
  35483. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35484. {
  35485. front: {
  35486. height: math.unit(6 + 9/12, "feet"),
  35487. weight: math.unit(280, "lb"),
  35488. name: "Front",
  35489. image: {
  35490. source: "./media/characters/candy/front.svg",
  35491. extra: 234/217,
  35492. bottom: 11/245
  35493. }
  35494. },
  35495. },
  35496. [
  35497. {
  35498. name: "Really Small",
  35499. height: math.unit(0.1, "nm")
  35500. },
  35501. {
  35502. name: "Micro",
  35503. height: math.unit(2, "inches")
  35504. },
  35505. {
  35506. name: "Normal",
  35507. height: math.unit(6 + 9/12, "feet"),
  35508. default: true
  35509. },
  35510. {
  35511. name: "Small Macro",
  35512. height: math.unit(69, "feet")
  35513. },
  35514. {
  35515. name: "Macro",
  35516. height: math.unit(160, "feet")
  35517. },
  35518. {
  35519. name: "Megamacro",
  35520. height: math.unit(22000, "miles")
  35521. },
  35522. {
  35523. name: "Gigamacro",
  35524. height: math.unit(50000, "miles")
  35525. },
  35526. ]
  35527. ))
  35528. characterMakers.push(() => makeCharacter(
  35529. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35530. {
  35531. front: {
  35532. height: math.unit(4, "feet"),
  35533. weight: math.unit(90, "lb"),
  35534. name: "Front",
  35535. image: {
  35536. source: "./media/characters/joey-mcdonald/front.svg",
  35537. extra: 1059/852,
  35538. bottom: 33/1092
  35539. }
  35540. },
  35541. back: {
  35542. height: math.unit(4, "feet"),
  35543. weight: math.unit(90, "lb"),
  35544. name: "Back",
  35545. image: {
  35546. source: "./media/characters/joey-mcdonald/back.svg",
  35547. extra: 1077/879,
  35548. bottom: 5/1082
  35549. }
  35550. },
  35551. frontKobold: {
  35552. height: math.unit(4, "feet"),
  35553. weight: math.unit(100, "lb"),
  35554. name: "Front-kobold",
  35555. image: {
  35556. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35557. extra: 1480/1367,
  35558. bottom: 0/1480
  35559. }
  35560. },
  35561. backKobold: {
  35562. height: math.unit(4, "feet"),
  35563. weight: math.unit(100, "lb"),
  35564. name: "Back-kobold",
  35565. image: {
  35566. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35567. extra: 1449/1361,
  35568. bottom: 0/1449
  35569. }
  35570. },
  35571. },
  35572. [
  35573. {
  35574. name: "Normal",
  35575. height: math.unit(4, "feet"),
  35576. default: true
  35577. },
  35578. ]
  35579. ))
  35580. characterMakers.push(() => makeCharacter(
  35581. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35582. {
  35583. front: {
  35584. height: math.unit(12 + 6/12, "feet"),
  35585. name: "Front",
  35586. image: {
  35587. source: "./media/characters/kass-lockheed/front.svg",
  35588. extra: 354/343,
  35589. bottom: 9/363
  35590. }
  35591. },
  35592. back: {
  35593. height: math.unit(12 + 6/12, "feet"),
  35594. name: "Back",
  35595. image: {
  35596. source: "./media/characters/kass-lockheed/back.svg",
  35597. extra: 364/352,
  35598. bottom: 3/367
  35599. }
  35600. },
  35601. dick: {
  35602. height: math.unit(3.12, "feet"),
  35603. name: "Dick",
  35604. image: {
  35605. source: "./media/characters/kass-lockheed/dick.svg"
  35606. }
  35607. },
  35608. head: {
  35609. height: math.unit(2.6, "feet"),
  35610. name: "Head",
  35611. image: {
  35612. source: "./media/characters/kass-lockheed/head.svg"
  35613. }
  35614. },
  35615. bleh: {
  35616. height: math.unit(2.85, "feet"),
  35617. name: "Bleh",
  35618. image: {
  35619. source: "./media/characters/kass-lockheed/bleh.svg"
  35620. }
  35621. },
  35622. smug: {
  35623. height: math.unit(2.85, "feet"),
  35624. name: "Smug",
  35625. image: {
  35626. source: "./media/characters/kass-lockheed/smug.svg"
  35627. }
  35628. },
  35629. },
  35630. [
  35631. {
  35632. name: "Normal",
  35633. height: math.unit(12 + 6/12, "feet"),
  35634. default: true
  35635. },
  35636. ]
  35637. ))
  35638. characterMakers.push(() => makeCharacter(
  35639. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35640. {
  35641. front: {
  35642. height: math.unit(6 + 2/12, "feet"),
  35643. name: "Front",
  35644. image: {
  35645. source: "./media/characters/taylor/front.svg",
  35646. extra: 639/495,
  35647. bottom: 12/651
  35648. }
  35649. },
  35650. },
  35651. [
  35652. {
  35653. name: "Normal",
  35654. height: math.unit(6 + 2/12, "feet"),
  35655. default: true
  35656. },
  35657. {
  35658. name: "Big",
  35659. height: math.unit(15, "feet")
  35660. },
  35661. {
  35662. name: "Lorg",
  35663. height: math.unit(80, "feet")
  35664. },
  35665. {
  35666. name: "Too Lorg",
  35667. height: math.unit(120, "feet")
  35668. },
  35669. ]
  35670. ))
  35671. characterMakers.push(() => makeCharacter(
  35672. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35673. {
  35674. front: {
  35675. height: math.unit(15, "feet"),
  35676. name: "Front",
  35677. image: {
  35678. source: "./media/characters/kaizer/front.svg",
  35679. extra: 1612/1436,
  35680. bottom: 43/1655
  35681. }
  35682. },
  35683. },
  35684. [
  35685. {
  35686. name: "Normal",
  35687. height: math.unit(15, "feet"),
  35688. default: true
  35689. },
  35690. ]
  35691. ))
  35692. characterMakers.push(() => makeCharacter(
  35693. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35694. {
  35695. front: {
  35696. height: math.unit(2, "feet"),
  35697. weight: math.unit(30, "lb"),
  35698. name: "Front",
  35699. image: {
  35700. source: "./media/characters/sandy/front.svg",
  35701. extra: 1439/1307,
  35702. bottom: 194/1633
  35703. }
  35704. },
  35705. },
  35706. [
  35707. {
  35708. name: "Normal",
  35709. height: math.unit(2, "feet"),
  35710. default: true
  35711. },
  35712. ]
  35713. ))
  35714. characterMakers.push(() => makeCharacter(
  35715. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35716. {
  35717. front: {
  35718. height: math.unit(3, "feet"),
  35719. name: "Front",
  35720. image: {
  35721. source: "./media/characters/mellvi/front.svg",
  35722. extra: 1831/1630,
  35723. bottom: 58/1889
  35724. }
  35725. },
  35726. },
  35727. [
  35728. {
  35729. name: "Normal",
  35730. height: math.unit(3, "feet"),
  35731. default: true
  35732. },
  35733. ]
  35734. ))
  35735. characterMakers.push(() => makeCharacter(
  35736. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35737. {
  35738. front: {
  35739. height: math.unit(5 + 11/12, "feet"),
  35740. weight: math.unit(200, "lb"),
  35741. name: "Front",
  35742. image: {
  35743. source: "./media/characters/shirou/front.svg",
  35744. extra: 2491/2383,
  35745. bottom: 189/2680
  35746. }
  35747. },
  35748. back: {
  35749. height: math.unit(5 + 11/12, "feet"),
  35750. weight: math.unit(200, "lb"),
  35751. name: "Back",
  35752. image: {
  35753. source: "./media/characters/shirou/back.svg",
  35754. extra: 2554/2450,
  35755. bottom: 76/2630
  35756. }
  35757. },
  35758. },
  35759. [
  35760. {
  35761. name: "Normal",
  35762. height: math.unit(5 + 11/12, "feet"),
  35763. default: true
  35764. },
  35765. ]
  35766. ))
  35767. characterMakers.push(() => makeCharacter(
  35768. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35769. {
  35770. front: {
  35771. height: math.unit(6 + 3/12, "feet"),
  35772. weight: math.unit(177, "lb"),
  35773. name: "Front",
  35774. image: {
  35775. source: "./media/characters/noryu/front.svg",
  35776. extra: 973/885,
  35777. bottom: 10/983
  35778. }
  35779. },
  35780. },
  35781. [
  35782. {
  35783. name: "Normal",
  35784. height: math.unit(6 + 3/12, "feet"),
  35785. default: true
  35786. },
  35787. ]
  35788. ))
  35789. characterMakers.push(() => makeCharacter(
  35790. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35791. {
  35792. front: {
  35793. height: math.unit(5 + 6/12, "feet"),
  35794. weight: math.unit(170, "lb"),
  35795. name: "Front",
  35796. image: {
  35797. source: "./media/characters/mevolas-rubenido/front.svg",
  35798. extra: 2109/1901,
  35799. bottom: 96/2205
  35800. }
  35801. },
  35802. },
  35803. [
  35804. {
  35805. name: "Normal",
  35806. height: math.unit(5 + 6/12, "feet"),
  35807. default: true
  35808. },
  35809. ]
  35810. ))
  35811. characterMakers.push(() => makeCharacter(
  35812. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35813. {
  35814. front: {
  35815. height: math.unit(100, "feet"),
  35816. name: "Front",
  35817. image: {
  35818. source: "./media/characters/dee/front.svg",
  35819. extra: 2153/2036,
  35820. bottom: 59/2212
  35821. }
  35822. },
  35823. back: {
  35824. height: math.unit(100, "feet"),
  35825. name: "Back",
  35826. image: {
  35827. source: "./media/characters/dee/back.svg",
  35828. extra: 2183/2058,
  35829. bottom: 75/2258
  35830. }
  35831. },
  35832. foot: {
  35833. height: math.unit(19.43, "feet"),
  35834. name: "Foot",
  35835. image: {
  35836. source: "./media/characters/dee/foot.svg"
  35837. }
  35838. },
  35839. hoof: {
  35840. height: math.unit(20.6, "feet"),
  35841. name: "Hoof",
  35842. image: {
  35843. source: "./media/characters/dee/hoof.svg"
  35844. }
  35845. },
  35846. },
  35847. [
  35848. {
  35849. name: "Macro",
  35850. height: math.unit(100, "feet"),
  35851. default: true
  35852. },
  35853. ]
  35854. ))
  35855. characterMakers.push(() => makeCharacter(
  35856. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35857. {
  35858. front: {
  35859. height: math.unit(5 + 6/12, "feet"),
  35860. name: "Front",
  35861. image: {
  35862. source: "./media/characters/teh/front.svg",
  35863. extra: 1002/847,
  35864. bottom: 62/1064
  35865. }
  35866. },
  35867. },
  35868. [
  35869. {
  35870. name: "Normal",
  35871. height: math.unit(5 + 6/12, "feet"),
  35872. default: true
  35873. },
  35874. ]
  35875. ))
  35876. characterMakers.push(() => makeCharacter(
  35877. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35878. {
  35879. side: {
  35880. height: math.unit(6 + 1/12, "feet"),
  35881. weight: math.unit(204, "lb"),
  35882. name: "Side",
  35883. image: {
  35884. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35885. extra: 974/775,
  35886. bottom: 169/1143
  35887. }
  35888. },
  35889. sitting: {
  35890. height: math.unit(6 + 2/12, "feet"),
  35891. weight: math.unit(204, "lb"),
  35892. name: "Sitting",
  35893. image: {
  35894. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35895. extra: 1175/964,
  35896. bottom: 378/1553
  35897. }
  35898. },
  35899. },
  35900. [
  35901. {
  35902. name: "Normal",
  35903. height: math.unit(6 + 1/12, "feet"),
  35904. default: true
  35905. },
  35906. ]
  35907. ))
  35908. characterMakers.push(() => makeCharacter(
  35909. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35910. {
  35911. front: {
  35912. height: math.unit(6, "inches"),
  35913. name: "Front",
  35914. image: {
  35915. source: "./media/characters/tululi/front.svg",
  35916. extra: 1997/1876,
  35917. bottom: 20/2017
  35918. }
  35919. },
  35920. },
  35921. [
  35922. {
  35923. name: "Normal",
  35924. height: math.unit(6, "inches"),
  35925. default: true
  35926. },
  35927. ]
  35928. ))
  35929. characterMakers.push(() => makeCharacter(
  35930. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35931. {
  35932. front: {
  35933. height: math.unit(4 + 1/12, "feet"),
  35934. name: "Front",
  35935. image: {
  35936. source: "./media/characters/star/front.svg",
  35937. extra: 1493/1189,
  35938. bottom: 48/1541
  35939. }
  35940. },
  35941. },
  35942. [
  35943. {
  35944. name: "Normal",
  35945. height: math.unit(4 + 1/12, "feet"),
  35946. default: true
  35947. },
  35948. ]
  35949. ))
  35950. characterMakers.push(() => makeCharacter(
  35951. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35952. {
  35953. front: {
  35954. height: math.unit(6 + 3/12, "feet"),
  35955. name: "Front",
  35956. image: {
  35957. source: "./media/characters/comet/front.svg",
  35958. extra: 1681/1462,
  35959. bottom: 26/1707
  35960. }
  35961. },
  35962. },
  35963. [
  35964. {
  35965. name: "Normal",
  35966. height: math.unit(6 + 3/12, "feet"),
  35967. default: true
  35968. },
  35969. ]
  35970. ))
  35971. characterMakers.push(() => makeCharacter(
  35972. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35973. {
  35974. front: {
  35975. height: math.unit(950, "feet"),
  35976. name: "Front",
  35977. image: {
  35978. source: "./media/characters/vortex/front.svg",
  35979. extra: 1497/1434,
  35980. bottom: 56/1553
  35981. }
  35982. },
  35983. maw: {
  35984. height: math.unit(285, "feet"),
  35985. name: "Maw",
  35986. image: {
  35987. source: "./media/characters/vortex/maw.svg"
  35988. }
  35989. },
  35990. },
  35991. [
  35992. {
  35993. name: "Macro",
  35994. height: math.unit(950, "feet"),
  35995. default: true
  35996. },
  35997. ]
  35998. ))
  35999. characterMakers.push(() => makeCharacter(
  36000. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36001. {
  36002. front: {
  36003. height: math.unit(600, "feet"),
  36004. weight: math.unit(0.02, "grams"),
  36005. name: "Front",
  36006. image: {
  36007. source: "./media/characters/doodle/front.svg",
  36008. extra: 1578/1413,
  36009. bottom: 37/1615
  36010. }
  36011. },
  36012. },
  36013. [
  36014. {
  36015. name: "Macro",
  36016. height: math.unit(600, "feet"),
  36017. default: true
  36018. },
  36019. ]
  36020. ))
  36021. characterMakers.push(() => makeCharacter(
  36022. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36023. {
  36024. front: {
  36025. height: math.unit(6 + 6/12, "feet"),
  36026. name: "Front",
  36027. image: {
  36028. source: "./media/characters/jai/front.svg",
  36029. extra: 1645/1534,
  36030. bottom: 115/1760
  36031. }
  36032. },
  36033. },
  36034. [
  36035. {
  36036. name: "Normal",
  36037. height: math.unit(6 + 6/12, "feet"),
  36038. default: true
  36039. },
  36040. ]
  36041. ))
  36042. characterMakers.push(() => makeCharacter(
  36043. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36044. {
  36045. front: {
  36046. height: math.unit(6 + 8/12, "feet"),
  36047. name: "Front",
  36048. image: {
  36049. source: "./media/characters/pixel/front.svg",
  36050. extra: 1900/1735,
  36051. bottom: 63/1963
  36052. }
  36053. },
  36054. },
  36055. [
  36056. {
  36057. name: "Normal",
  36058. height: math.unit(6 + 8/12, "feet"),
  36059. default: true
  36060. },
  36061. ]
  36062. ))
  36063. characterMakers.push(() => makeCharacter(
  36064. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36065. {
  36066. back: {
  36067. height: math.unit(4 + 1/12, "feet"),
  36068. weight: math.unit(75, "lb"),
  36069. name: "Back",
  36070. image: {
  36071. source: "./media/characters/rhett/back.svg",
  36072. extra: 930/878,
  36073. bottom: 25/955
  36074. }
  36075. },
  36076. front: {
  36077. height: math.unit(4 + 1/12, "feet"),
  36078. weight: math.unit(75, "lb"),
  36079. name: "Front",
  36080. image: {
  36081. source: "./media/characters/rhett/front.svg",
  36082. extra: 1682/1586,
  36083. bottom: 92/1774
  36084. }
  36085. },
  36086. },
  36087. [
  36088. {
  36089. name: "Micro",
  36090. height: math.unit(8, "inches")
  36091. },
  36092. {
  36093. name: "Tiny",
  36094. height: math.unit(2, "feet")
  36095. },
  36096. {
  36097. name: "Normal",
  36098. height: math.unit(4 + 1/12, "feet"),
  36099. default: true
  36100. },
  36101. ]
  36102. ))
  36103. characterMakers.push(() => makeCharacter(
  36104. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36105. {
  36106. front: {
  36107. height: math.unit(3 + 3/12, "feet"),
  36108. name: "Front",
  36109. image: {
  36110. source: "./media/characters/penny/front.svg",
  36111. extra: 1406/1311,
  36112. bottom: 26/1432
  36113. }
  36114. },
  36115. },
  36116. [
  36117. {
  36118. name: "Normal",
  36119. height: math.unit(3 + 3/12, "feet"),
  36120. default: true
  36121. },
  36122. ]
  36123. ))
  36124. characterMakers.push(() => makeCharacter(
  36125. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36126. {
  36127. front: {
  36128. height: math.unit(4 + 11/12, "feet"),
  36129. name: "Front",
  36130. image: {
  36131. source: "./media/characters/monty/front.svg",
  36132. extra: 1479/1209,
  36133. bottom: 0/1479
  36134. }
  36135. },
  36136. },
  36137. [
  36138. {
  36139. name: "Normal",
  36140. height: math.unit(4 + 11/12, "feet"),
  36141. default: true
  36142. },
  36143. ]
  36144. ))
  36145. characterMakers.push(() => makeCharacter(
  36146. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36147. {
  36148. front: {
  36149. height: math.unit(8 + 4/12, "feet"),
  36150. name: "Front",
  36151. image: {
  36152. source: "./media/characters/sterling/front.svg",
  36153. extra: 1420/1236,
  36154. bottom: 27/1447
  36155. }
  36156. },
  36157. },
  36158. [
  36159. {
  36160. name: "Normal",
  36161. height: math.unit(8 + 4/12, "feet"),
  36162. default: true
  36163. },
  36164. ]
  36165. ))
  36166. characterMakers.push(() => makeCharacter(
  36167. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36168. {
  36169. front: {
  36170. height: math.unit(15, "feet"),
  36171. name: "Front",
  36172. image: {
  36173. source: "./media/characters/marble/front.svg",
  36174. extra: 973/937,
  36175. bottom: 32/1005
  36176. }
  36177. },
  36178. },
  36179. [
  36180. {
  36181. name: "Normal",
  36182. height: math.unit(15, "feet"),
  36183. default: true
  36184. },
  36185. ]
  36186. ))
  36187. characterMakers.push(() => makeCharacter(
  36188. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36189. {
  36190. front: {
  36191. height: math.unit(3, "inches"),
  36192. name: "Front",
  36193. image: {
  36194. source: "./media/characters/powder/front.svg",
  36195. extra: 1504/1334,
  36196. bottom: 518/2022
  36197. }
  36198. },
  36199. },
  36200. [
  36201. {
  36202. name: "Normal",
  36203. height: math.unit(3, "inches"),
  36204. default: true
  36205. },
  36206. ]
  36207. ))
  36208. characterMakers.push(() => makeCharacter(
  36209. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36210. {
  36211. front: {
  36212. height: math.unit(4 + 5/12, "feet"),
  36213. name: "Front",
  36214. image: {
  36215. source: "./media/characters/joey-raccoon/front.svg",
  36216. extra: 1273/1197,
  36217. bottom: 0/1273
  36218. }
  36219. },
  36220. },
  36221. [
  36222. {
  36223. name: "Normal",
  36224. height: math.unit(4 + 5/12, "feet"),
  36225. default: true
  36226. },
  36227. ]
  36228. ))
  36229. characterMakers.push(() => makeCharacter(
  36230. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36231. {
  36232. front: {
  36233. height: math.unit(8 + 4/12, "feet"),
  36234. name: "Front",
  36235. image: {
  36236. source: "./media/characters/vick/front.svg",
  36237. extra: 2187/2118,
  36238. bottom: 47/2234
  36239. }
  36240. },
  36241. },
  36242. [
  36243. {
  36244. name: "Normal",
  36245. height: math.unit(8 + 4/12, "feet"),
  36246. default: true
  36247. },
  36248. ]
  36249. ))
  36250. characterMakers.push(() => makeCharacter(
  36251. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36252. {
  36253. front: {
  36254. height: math.unit(5 + 5/12, "feet"),
  36255. name: "Front",
  36256. image: {
  36257. source: "./media/characters/mitsy/front.svg",
  36258. extra: 1842/1695,
  36259. bottom: 0/1842
  36260. }
  36261. },
  36262. },
  36263. [
  36264. {
  36265. name: "Normal",
  36266. height: math.unit(5 + 5/12, "feet"),
  36267. default: true
  36268. },
  36269. ]
  36270. ))
  36271. characterMakers.push(() => makeCharacter(
  36272. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36273. {
  36274. front: {
  36275. height: math.unit(6 + 3/12, "feet"),
  36276. name: "Front",
  36277. image: {
  36278. source: "./media/characters/silvy/front.svg",
  36279. extra: 1995/1836,
  36280. bottom: 225/2220
  36281. }
  36282. },
  36283. },
  36284. [
  36285. {
  36286. name: "Normal",
  36287. height: math.unit(6 + 3/12, "feet"),
  36288. default: true
  36289. },
  36290. ]
  36291. ))
  36292. characterMakers.push(() => makeCharacter(
  36293. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36294. {
  36295. front: {
  36296. height: math.unit(3 + 8/12, "feet"),
  36297. name: "Front",
  36298. image: {
  36299. source: "./media/characters/rodney/front.svg",
  36300. extra: 1956/1747,
  36301. bottom: 31/1987
  36302. }
  36303. },
  36304. frontDressed: {
  36305. height: math.unit(2.9, "feet"),
  36306. name: "Front (Dressed)",
  36307. image: {
  36308. source: "./media/characters/rodney/front-dressed.svg",
  36309. extra: 1382/1241,
  36310. bottom: 385/1767
  36311. }
  36312. },
  36313. },
  36314. [
  36315. {
  36316. name: "Normal",
  36317. height: math.unit(3 + 8/12, "feet"),
  36318. default: true
  36319. },
  36320. ]
  36321. ))
  36322. characterMakers.push(() => makeCharacter(
  36323. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36324. {
  36325. front: {
  36326. height: math.unit(5 + 9/12, "feet"),
  36327. weight: math.unit(194, "lbs"),
  36328. name: "Front",
  36329. image: {
  36330. source: "./media/characters/zakail-sudekai/front.svg",
  36331. extra: 2696/2533,
  36332. bottom: 248/2944
  36333. }
  36334. },
  36335. maw: {
  36336. height: math.unit(1.35, "feet"),
  36337. name: "Maw",
  36338. image: {
  36339. source: "./media/characters/zakail-sudekai/maw.svg"
  36340. }
  36341. },
  36342. },
  36343. [
  36344. {
  36345. name: "Normal",
  36346. height: math.unit(5 + 9/12, "feet"),
  36347. default: true
  36348. },
  36349. ]
  36350. ))
  36351. characterMakers.push(() => makeCharacter(
  36352. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36353. {
  36354. front: {
  36355. height: math.unit(8 + 4/12, "feet"),
  36356. weight: math.unit(1200, "lb"),
  36357. name: "Front",
  36358. image: {
  36359. source: "./media/characters/eleanor/front.svg",
  36360. extra: 1226/1192,
  36361. bottom: 52/1278
  36362. }
  36363. },
  36364. back: {
  36365. height: math.unit(8 + 4/12, "feet"),
  36366. weight: math.unit(1200, "lb"),
  36367. name: "Back",
  36368. image: {
  36369. source: "./media/characters/eleanor/back.svg",
  36370. extra: 1242/1184,
  36371. bottom: 60/1302
  36372. }
  36373. },
  36374. head: {
  36375. height: math.unit(2.62, "feet"),
  36376. name: "Head",
  36377. image: {
  36378. source: "./media/characters/eleanor/head.svg"
  36379. }
  36380. },
  36381. },
  36382. [
  36383. {
  36384. name: "Normal",
  36385. height: math.unit(8 + 4/12, "feet"),
  36386. default: true
  36387. },
  36388. ]
  36389. ))
  36390. characterMakers.push(() => makeCharacter(
  36391. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36392. {
  36393. front: {
  36394. height: math.unit(8 + 4/12, "feet"),
  36395. weight: math.unit(750, "lb"),
  36396. name: "Front",
  36397. image: {
  36398. source: "./media/characters/tanya/front.svg",
  36399. extra: 1749/1615,
  36400. bottom: 33/1782
  36401. }
  36402. },
  36403. },
  36404. [
  36405. {
  36406. name: "Normal",
  36407. height: math.unit(8 + 4/12, "feet"),
  36408. default: true
  36409. },
  36410. ]
  36411. ))
  36412. characterMakers.push(() => makeCharacter(
  36413. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36414. {
  36415. front: {
  36416. height: math.unit(5, "feet"),
  36417. weight: math.unit(225, "lb"),
  36418. name: "Front",
  36419. image: {
  36420. source: "./media/characters/cindy/front.svg",
  36421. extra: 1320/1250,
  36422. bottom: 42/1362
  36423. }
  36424. },
  36425. frontDressed: {
  36426. height: math.unit(5, "feet"),
  36427. weight: math.unit(225, "lb"),
  36428. name: "Front (Dressed)",
  36429. image: {
  36430. source: "./media/characters/cindy/front-dressed.svg",
  36431. extra: 1320/1250,
  36432. bottom: 42/1362
  36433. }
  36434. },
  36435. back: {
  36436. height: math.unit(5, "feet"),
  36437. weight: math.unit(225, "lb"),
  36438. name: "Back",
  36439. image: {
  36440. source: "./media/characters/cindy/back.svg",
  36441. extra: 1384/1346,
  36442. bottom: 14/1398
  36443. }
  36444. },
  36445. },
  36446. [
  36447. {
  36448. name: "Normal",
  36449. height: math.unit(5, "feet"),
  36450. default: true
  36451. },
  36452. ]
  36453. ))
  36454. characterMakers.push(() => makeCharacter(
  36455. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36456. {
  36457. front: {
  36458. height: math.unit(6 + 9/12, "feet"),
  36459. weight: math.unit(440, "lb"),
  36460. name: "Front",
  36461. image: {
  36462. source: "./media/characters/wilbur-owen/front.svg",
  36463. extra: 1575/1448,
  36464. bottom: 72/1647
  36465. }
  36466. },
  36467. back: {
  36468. height: math.unit(6 + 9/12, "feet"),
  36469. weight: math.unit(440, "lb"),
  36470. name: "Back",
  36471. image: {
  36472. source: "./media/characters/wilbur-owen/back.svg",
  36473. extra: 1578/1445,
  36474. bottom: 36/1614
  36475. }
  36476. },
  36477. },
  36478. [
  36479. {
  36480. name: "Normal",
  36481. height: math.unit(6 + 9/12, "feet"),
  36482. default: true
  36483. },
  36484. ]
  36485. ))
  36486. characterMakers.push(() => makeCharacter(
  36487. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36488. {
  36489. front: {
  36490. height: math.unit(6 + 5/12, "feet"),
  36491. weight: math.unit(650, "lb"),
  36492. name: "Front",
  36493. image: {
  36494. source: "./media/characters/keegan/front.svg",
  36495. extra: 2387/2198,
  36496. bottom: 33/2420
  36497. }
  36498. },
  36499. side: {
  36500. height: math.unit(6 + 5/12, "feet"),
  36501. weight: math.unit(650, "lb"),
  36502. name: "Side",
  36503. image: {
  36504. source: "./media/characters/keegan/side.svg",
  36505. extra: 2390/2202,
  36506. bottom: 47/2437
  36507. }
  36508. },
  36509. back: {
  36510. height: math.unit(6 + 5/12, "feet"),
  36511. weight: math.unit(650, "lb"),
  36512. name: "Back",
  36513. image: {
  36514. source: "./media/characters/keegan/back.svg",
  36515. extra: 2418/2268,
  36516. bottom: 15/2433
  36517. }
  36518. },
  36519. frontSfw: {
  36520. height: math.unit(6 + 5/12, "feet"),
  36521. weight: math.unit(650, "lb"),
  36522. name: "Front (SFW)",
  36523. image: {
  36524. source: "./media/characters/keegan/front-sfw.svg",
  36525. extra: 2387/2198,
  36526. bottom: 33/2420
  36527. }
  36528. },
  36529. beans: {
  36530. height: math.unit(1.85, "feet"),
  36531. name: "Beans",
  36532. image: {
  36533. source: "./media/characters/keegan/beans.svg"
  36534. }
  36535. },
  36536. },
  36537. [
  36538. {
  36539. name: "Normal",
  36540. height: math.unit(6 + 5/12, "feet"),
  36541. default: true
  36542. },
  36543. ]
  36544. ))
  36545. characterMakers.push(() => makeCharacter(
  36546. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36547. {
  36548. front: {
  36549. height: math.unit(9, "feet"),
  36550. name: "Front",
  36551. image: {
  36552. source: "./media/characters/colton/front.svg",
  36553. extra: 1589/1326,
  36554. bottom: 139/1728
  36555. }
  36556. },
  36557. },
  36558. [
  36559. {
  36560. name: "Normal",
  36561. height: math.unit(9, "feet"),
  36562. default: true
  36563. },
  36564. ]
  36565. ))
  36566. characterMakers.push(() => makeCharacter(
  36567. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36568. {
  36569. front: {
  36570. height: math.unit(2 + 9/12, "feet"),
  36571. name: "Front",
  36572. image: {
  36573. source: "./media/characters/bora/front.svg",
  36574. extra: 1265/1250,
  36575. bottom: 24/1289
  36576. }
  36577. },
  36578. },
  36579. [
  36580. {
  36581. name: "Normal",
  36582. height: math.unit(2 + 9/12, "feet"),
  36583. default: true
  36584. },
  36585. ]
  36586. ))
  36587. characterMakers.push(() => makeCharacter(
  36588. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36589. {
  36590. front: {
  36591. height: math.unit(8, "feet"),
  36592. name: "Front",
  36593. image: {
  36594. source: "./media/characters/myu-myu/front.svg",
  36595. extra: 1949/1857,
  36596. bottom: 90/2039
  36597. }
  36598. },
  36599. },
  36600. [
  36601. {
  36602. name: "Normal",
  36603. height: math.unit(8, "feet"),
  36604. default: true
  36605. },
  36606. {
  36607. name: "Big",
  36608. height: math.unit(15, "feet")
  36609. },
  36610. {
  36611. name: "BIG",
  36612. height: math.unit(25, "feet")
  36613. },
  36614. ]
  36615. ))
  36616. characterMakers.push(() => makeCharacter(
  36617. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36618. {
  36619. side: {
  36620. height: math.unit(7 + 5/12, "feet"),
  36621. weight: math.unit(2800, "lb"),
  36622. name: "Side",
  36623. image: {
  36624. source: "./media/characters/haloren/side.svg",
  36625. extra: 1793/409,
  36626. bottom: 59/1852
  36627. }
  36628. },
  36629. frontPaw: {
  36630. height: math.unit(2.36, "feet"),
  36631. name: "Front paw",
  36632. image: {
  36633. source: "./media/characters/haloren/front-paw.svg"
  36634. }
  36635. },
  36636. hindPaw: {
  36637. height: math.unit(3.18, "feet"),
  36638. name: "Hind paw",
  36639. image: {
  36640. source: "./media/characters/haloren/hind-paw.svg"
  36641. }
  36642. },
  36643. maw: {
  36644. height: math.unit(5.05, "feet"),
  36645. name: "Maw",
  36646. image: {
  36647. source: "./media/characters/haloren/maw.svg"
  36648. }
  36649. },
  36650. dick: {
  36651. height: math.unit(2.90, "feet"),
  36652. name: "Dick",
  36653. image: {
  36654. source: "./media/characters/haloren/dick.svg"
  36655. }
  36656. },
  36657. },
  36658. [
  36659. {
  36660. name: "Normal",
  36661. height: math.unit(7 + 5/12, "feet"),
  36662. default: true
  36663. },
  36664. {
  36665. name: "Enhanced",
  36666. height: math.unit(14 + 3/12, "feet")
  36667. },
  36668. ]
  36669. ))
  36670. characterMakers.push(() => makeCharacter(
  36671. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36672. {
  36673. front: {
  36674. height: math.unit(171, "cm"),
  36675. name: "Front",
  36676. image: {
  36677. source: "./media/characters/kimmy/front.svg",
  36678. extra: 1491/1435,
  36679. bottom: 53/1544
  36680. }
  36681. },
  36682. },
  36683. [
  36684. {
  36685. name: "Small",
  36686. height: math.unit(9, "cm")
  36687. },
  36688. {
  36689. name: "Normal",
  36690. height: math.unit(171, "cm"),
  36691. default: true
  36692. },
  36693. ]
  36694. ))
  36695. characterMakers.push(() => makeCharacter(
  36696. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36697. {
  36698. front: {
  36699. height: math.unit(8, "feet"),
  36700. weight: math.unit(300, "lb"),
  36701. name: "Front",
  36702. image: {
  36703. source: "./media/characters/galeboomer/front.svg",
  36704. extra: 4651/4415,
  36705. bottom: 162/4813
  36706. }
  36707. },
  36708. back: {
  36709. height: math.unit(8, "feet"),
  36710. weight: math.unit(300, "lb"),
  36711. name: "Back",
  36712. image: {
  36713. source: "./media/characters/galeboomer/back.svg",
  36714. extra: 4544/4314,
  36715. bottom: 16/4560
  36716. }
  36717. },
  36718. frontAlt: {
  36719. height: math.unit(8, "feet"),
  36720. weight: math.unit(300, "lb"),
  36721. name: "Front (Alt)",
  36722. image: {
  36723. source: "./media/characters/galeboomer/front-alt.svg",
  36724. extra: 4458/4228,
  36725. bottom: 68/4526
  36726. }
  36727. },
  36728. maw: {
  36729. height: math.unit(1.2, "feet"),
  36730. name: "Maw",
  36731. image: {
  36732. source: "./media/characters/galeboomer/maw.svg"
  36733. }
  36734. },
  36735. },
  36736. [
  36737. {
  36738. name: "Normal",
  36739. height: math.unit(8, "feet"),
  36740. default: true
  36741. },
  36742. ]
  36743. ))
  36744. characterMakers.push(() => makeCharacter(
  36745. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36746. {
  36747. front: {
  36748. height: math.unit(5 + 9/12, "feet"),
  36749. weight: math.unit(120, "lb"),
  36750. name: "Front",
  36751. image: {
  36752. source: "./media/characters/chyr/front.svg",
  36753. extra: 1323/1254,
  36754. bottom: 63/1386
  36755. }
  36756. },
  36757. back: {
  36758. height: math.unit(5 + 9/12, "feet"),
  36759. weight: math.unit(120, "lb"),
  36760. name: "Back",
  36761. image: {
  36762. source: "./media/characters/chyr/back.svg",
  36763. extra: 1323/1252,
  36764. bottom: 48/1371
  36765. }
  36766. },
  36767. },
  36768. [
  36769. {
  36770. name: "Normal",
  36771. height: math.unit(5 + 9/12, "feet"),
  36772. default: true
  36773. },
  36774. ]
  36775. ))
  36776. characterMakers.push(() => makeCharacter(
  36777. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36778. {
  36779. front: {
  36780. height: math.unit(7, "feet"),
  36781. weight: math.unit(310, "lb"),
  36782. name: "Front",
  36783. image: {
  36784. source: "./media/characters/solarus/front.svg",
  36785. extra: 2415/2021,
  36786. bottom: 103/2518
  36787. }
  36788. },
  36789. back: {
  36790. height: math.unit(7, "feet"),
  36791. weight: math.unit(310, "lb"),
  36792. name: "Back",
  36793. image: {
  36794. source: "./media/characters/solarus/back.svg",
  36795. extra: 2463/2089,
  36796. bottom: 79/2542
  36797. }
  36798. },
  36799. },
  36800. [
  36801. {
  36802. name: "Normal",
  36803. height: math.unit(7, "feet"),
  36804. default: true
  36805. },
  36806. ]
  36807. ))
  36808. characterMakers.push(() => makeCharacter(
  36809. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36810. {
  36811. front: {
  36812. height: math.unit(16, "feet"),
  36813. name: "Front",
  36814. image: {
  36815. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36816. extra: 1844/1780,
  36817. bottom: 58/1902
  36818. }
  36819. },
  36820. winterCoat: {
  36821. height: math.unit(16, "feet"),
  36822. name: "Winter Coat",
  36823. image: {
  36824. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36825. extra: 1807/1775,
  36826. bottom: 69/1876
  36827. }
  36828. },
  36829. },
  36830. [
  36831. {
  36832. name: "Normal",
  36833. height: math.unit(16, "feet"),
  36834. default: true
  36835. },
  36836. {
  36837. name: "Chicago Size",
  36838. height: math.unit(560, "feet")
  36839. },
  36840. ]
  36841. ))
  36842. characterMakers.push(() => makeCharacter(
  36843. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36844. {
  36845. front: {
  36846. height: math.unit(11 + 6/12, "feet"),
  36847. weight: math.unit(1366, "lb"),
  36848. name: "Front",
  36849. image: {
  36850. source: "./media/characters/lexor/front.svg",
  36851. extra: 1560/1481,
  36852. bottom: 211/1771
  36853. }
  36854. },
  36855. back: {
  36856. height: math.unit(11 + 6/12, "feet"),
  36857. weight: math.unit(1366, "lb"),
  36858. name: "Back",
  36859. image: {
  36860. source: "./media/characters/lexor/back.svg",
  36861. extra: 1614/1533,
  36862. bottom: 76/1690
  36863. }
  36864. },
  36865. maw: {
  36866. height: math.unit(3, "feet"),
  36867. name: "Maw",
  36868. image: {
  36869. source: "./media/characters/lexor/maw.svg"
  36870. }
  36871. },
  36872. dick: {
  36873. height: math.unit(2.59, "feet"),
  36874. name: "Dick",
  36875. image: {
  36876. source: "./media/characters/lexor/dick.svg"
  36877. }
  36878. },
  36879. },
  36880. [
  36881. {
  36882. name: "Normal",
  36883. height: math.unit(11 + 6/12, "feet"),
  36884. default: true
  36885. },
  36886. ]
  36887. ))
  36888. characterMakers.push(() => makeCharacter(
  36889. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36890. {
  36891. front: {
  36892. height: math.unit(5 + 8/12, "feet"),
  36893. name: "Front",
  36894. image: {
  36895. source: "./media/characters/magnum/front.svg",
  36896. extra: 942/855,
  36897. bottom: 26/968
  36898. }
  36899. },
  36900. },
  36901. [
  36902. {
  36903. name: "Normal",
  36904. height: math.unit(5 + 8/12, "feet"),
  36905. default: true
  36906. },
  36907. ]
  36908. ))
  36909. characterMakers.push(() => makeCharacter(
  36910. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36911. {
  36912. front: {
  36913. height: math.unit(18 + 4/12, "feet"),
  36914. weight: math.unit(1500, "kg"),
  36915. name: "Front",
  36916. image: {
  36917. source: "./media/characters/solas-sharpsman/front.svg",
  36918. extra: 1698/1589,
  36919. bottom: 0/1698
  36920. }
  36921. },
  36922. },
  36923. [
  36924. {
  36925. name: "Normal",
  36926. height: math.unit(18 + 4/12, "feet"),
  36927. default: true
  36928. },
  36929. ]
  36930. ))
  36931. characterMakers.push(() => makeCharacter(
  36932. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36933. {
  36934. front: {
  36935. height: math.unit(5 + 5/12, "feet"),
  36936. weight: math.unit(180, "lb"),
  36937. name: "Front",
  36938. image: {
  36939. source: "./media/characters/october/front.svg",
  36940. extra: 1800/1650,
  36941. bottom: 0/1800
  36942. }
  36943. },
  36944. frontNsfw: {
  36945. height: math.unit(5 + 5/12, "feet"),
  36946. weight: math.unit(180, "lb"),
  36947. name: "Front (NSFW)",
  36948. image: {
  36949. source: "./media/characters/october/front-nsfw.svg",
  36950. extra: 1392/1307,
  36951. bottom: 42/1434
  36952. }
  36953. },
  36954. },
  36955. [
  36956. {
  36957. name: "Normal",
  36958. height: math.unit(5 + 5/12, "feet"),
  36959. default: true
  36960. },
  36961. ]
  36962. ))
  36963. characterMakers.push(() => makeCharacter(
  36964. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36965. {
  36966. front: {
  36967. height: math.unit(8 + 6/12, "feet"),
  36968. name: "Front",
  36969. image: {
  36970. source: "./media/characters/essynkardi/front.svg",
  36971. extra: 1914/1846,
  36972. bottom: 22/1936
  36973. }
  36974. },
  36975. },
  36976. [
  36977. {
  36978. name: "Normal",
  36979. height: math.unit(8 + 6/12, "feet"),
  36980. default: true
  36981. },
  36982. ]
  36983. ))
  36984. characterMakers.push(() => makeCharacter(
  36985. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36986. {
  36987. front: {
  36988. height: math.unit(6 + 6/12, "feet"),
  36989. weight: math.unit(7, "lb"),
  36990. name: "Front",
  36991. image: {
  36992. source: "./media/characters/icky/front.svg",
  36993. extra: 813/782,
  36994. bottom: 66/879
  36995. }
  36996. },
  36997. back: {
  36998. height: math.unit(6 + 6/12, "feet"),
  36999. weight: math.unit(7, "lb"),
  37000. name: "Back",
  37001. image: {
  37002. source: "./media/characters/icky/back.svg",
  37003. extra: 754/735,
  37004. bottom: 56/810
  37005. }
  37006. },
  37007. },
  37008. [
  37009. {
  37010. name: "Normal",
  37011. height: math.unit(6 + 6/12, "feet"),
  37012. default: true
  37013. },
  37014. ]
  37015. ))
  37016. characterMakers.push(() => makeCharacter(
  37017. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37018. {
  37019. front: {
  37020. height: math.unit(15, "feet"),
  37021. name: "Front",
  37022. image: {
  37023. source: "./media/characters/rojas/front.svg",
  37024. extra: 1462/1408,
  37025. bottom: 95/1557
  37026. }
  37027. },
  37028. back: {
  37029. height: math.unit(15, "feet"),
  37030. name: "Back",
  37031. image: {
  37032. source: "./media/characters/rojas/back.svg",
  37033. extra: 1023/954,
  37034. bottom: 28/1051
  37035. }
  37036. },
  37037. },
  37038. [
  37039. {
  37040. name: "Normal",
  37041. height: math.unit(15, "feet"),
  37042. default: true
  37043. },
  37044. ]
  37045. ))
  37046. characterMakers.push(() => makeCharacter(
  37047. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37048. {
  37049. frontHuman: {
  37050. height: math.unit(5 + 7/12, "feet"),
  37051. name: "Front (Human)",
  37052. image: {
  37053. source: "./media/characters/alek-dryagan/front-human.svg",
  37054. extra: 1687/1667,
  37055. bottom: 69/1756
  37056. }
  37057. },
  37058. backHuman: {
  37059. height: math.unit(5 + 7/12, "feet"),
  37060. name: "Back (Human)",
  37061. image: {
  37062. source: "./media/characters/alek-dryagan/back-human.svg",
  37063. extra: 1670/1649,
  37064. bottom: 65/1735
  37065. }
  37066. },
  37067. frontDemi: {
  37068. height: math.unit(65, "feet"),
  37069. name: "Front (Demi)",
  37070. image: {
  37071. source: "./media/characters/alek-dryagan/front-demi.svg",
  37072. extra: 1669/1642,
  37073. bottom: 49/1718
  37074. }
  37075. },
  37076. backDemi: {
  37077. height: math.unit(65, "feet"),
  37078. name: "Back (Demi)",
  37079. image: {
  37080. source: "./media/characters/alek-dryagan/back-demi.svg",
  37081. extra: 1658/1637,
  37082. bottom: 40/1698
  37083. }
  37084. },
  37085. mawHuman: {
  37086. height: math.unit(0.3, "feet"),
  37087. name: "Maw (Human)",
  37088. image: {
  37089. source: "./media/characters/alek-dryagan/maw-human.svg"
  37090. }
  37091. },
  37092. mawDemi: {
  37093. height: math.unit(3.8, "feet"),
  37094. name: "Maw (Demi)",
  37095. image: {
  37096. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37097. }
  37098. },
  37099. },
  37100. [
  37101. {
  37102. name: "Normal",
  37103. height: math.unit(5 + 7/12, "feet"),
  37104. default: true
  37105. },
  37106. ]
  37107. ))
  37108. characterMakers.push(() => makeCharacter(
  37109. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37110. {
  37111. frontHuman: {
  37112. height: math.unit(5 + 2/12, "feet"),
  37113. name: "Front (Human)",
  37114. image: {
  37115. source: "./media/characters/gen/front-human.svg",
  37116. extra: 1627/1538,
  37117. bottom: 71/1698
  37118. }
  37119. },
  37120. backHuman: {
  37121. height: math.unit(5 + 2/12, "feet"),
  37122. name: "Back (Human)",
  37123. image: {
  37124. source: "./media/characters/gen/back-human.svg",
  37125. extra: 1638/1548,
  37126. bottom: 69/1707
  37127. }
  37128. },
  37129. frontDemi: {
  37130. height: math.unit(5 + 2/12, "feet"),
  37131. name: "Front (Demi)",
  37132. image: {
  37133. source: "./media/characters/gen/front-demi.svg",
  37134. extra: 1627/1538,
  37135. bottom: 71/1698
  37136. }
  37137. },
  37138. backDemi: {
  37139. height: math.unit(5 + 2/12, "feet"),
  37140. name: "Back (Demi)",
  37141. image: {
  37142. source: "./media/characters/gen/back-demi.svg",
  37143. extra: 1638/1548,
  37144. bottom: 69/1707
  37145. }
  37146. },
  37147. },
  37148. [
  37149. {
  37150. name: "Normal",
  37151. height: math.unit(5 + 2/12, "feet"),
  37152. default: true
  37153. },
  37154. ]
  37155. ))
  37156. characterMakers.push(() => makeCharacter(
  37157. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37158. {
  37159. frontImp: {
  37160. height: math.unit(1 + 11/12, "feet"),
  37161. name: "Front (Imp)",
  37162. image: {
  37163. source: "./media/characters/max-kobold/front-imp.svg",
  37164. extra: 1238/1134,
  37165. bottom: 81/1319
  37166. }
  37167. },
  37168. backImp: {
  37169. height: math.unit(1 + 11/12, "feet"),
  37170. name: "Back (Imp)",
  37171. image: {
  37172. source: "./media/characters/max-kobold/back-imp.svg",
  37173. extra: 1334/1175,
  37174. bottom: 34/1368
  37175. }
  37176. },
  37177. frontDemi: {
  37178. height: math.unit(5 + 9/12, "feet"),
  37179. name: "Front (Demi)",
  37180. image: {
  37181. source: "./media/characters/max-kobold/front-demi.svg",
  37182. extra: 1715/1685,
  37183. bottom: 54/1769
  37184. }
  37185. },
  37186. backDemi: {
  37187. height: math.unit(5 + 9/12, "feet"),
  37188. name: "Back (Demi)",
  37189. image: {
  37190. source: "./media/characters/max-kobold/back-demi.svg",
  37191. extra: 1752/1729,
  37192. bottom: 41/1793
  37193. }
  37194. },
  37195. handImp: {
  37196. height: math.unit(0.45, "feet"),
  37197. name: "Hand (Imp)",
  37198. image: {
  37199. source: "./media/characters/max-kobold/hand.svg"
  37200. }
  37201. },
  37202. pawImp: {
  37203. height: math.unit(0.46, "feet"),
  37204. name: "Paw (Imp)",
  37205. image: {
  37206. source: "./media/characters/max-kobold/paw.svg"
  37207. }
  37208. },
  37209. handDemi: {
  37210. height: math.unit(0.80, "feet"),
  37211. name: "Hand (Demi)",
  37212. image: {
  37213. source: "./media/characters/max-kobold/hand.svg"
  37214. }
  37215. },
  37216. pawDemi: {
  37217. height: math.unit(1.1, "feet"),
  37218. name: "Paw (Demi)",
  37219. image: {
  37220. source: "./media/characters/max-kobold/paw.svg"
  37221. }
  37222. },
  37223. headImp: {
  37224. height: math.unit(1.33, "feet"),
  37225. name: "Head (Imp)",
  37226. image: {
  37227. source: "./media/characters/max-kobold/head-imp.svg"
  37228. }
  37229. },
  37230. mawImp: {
  37231. height: math.unit(0.75, "feet"),
  37232. name: "Maw (Imp)",
  37233. image: {
  37234. source: "./media/characters/max-kobold/maw-imp.svg"
  37235. }
  37236. },
  37237. mawDemi: {
  37238. height: math.unit(0.42, "feet"),
  37239. name: "Maw (Demi)",
  37240. image: {
  37241. source: "./media/characters/max-kobold/maw-demi.svg"
  37242. }
  37243. },
  37244. },
  37245. [
  37246. {
  37247. name: "Normal",
  37248. height: math.unit(1 + 11/12, "feet"),
  37249. default: true
  37250. },
  37251. ]
  37252. ))
  37253. characterMakers.push(() => makeCharacter(
  37254. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37255. {
  37256. front: {
  37257. height: math.unit(7 + 5/12, "feet"),
  37258. name: "Front",
  37259. image: {
  37260. source: "./media/characters/carbon/front.svg",
  37261. extra: 1754/1689,
  37262. bottom: 65/1819
  37263. }
  37264. },
  37265. back: {
  37266. height: math.unit(7 + 5/12, "feet"),
  37267. name: "Back",
  37268. image: {
  37269. source: "./media/characters/carbon/back.svg",
  37270. extra: 1762/1695,
  37271. bottom: 24/1786
  37272. }
  37273. },
  37274. frontGigantamax: {
  37275. height: math.unit(150, "feet"),
  37276. name: "Front (Gigantamax)",
  37277. image: {
  37278. source: "./media/characters/carbon/front-gigantamax.svg",
  37279. extra: 1826/1669,
  37280. bottom: 59/1885
  37281. }
  37282. },
  37283. backGigantamax: {
  37284. height: math.unit(150, "feet"),
  37285. name: "Back (Gigantamax)",
  37286. image: {
  37287. source: "./media/characters/carbon/back-gigantamax.svg",
  37288. extra: 1796/1653,
  37289. bottom: 53/1849
  37290. }
  37291. },
  37292. maw: {
  37293. height: math.unit(0.48, "feet"),
  37294. name: "Maw",
  37295. image: {
  37296. source: "./media/characters/carbon/maw.svg"
  37297. }
  37298. },
  37299. mawGigantamax: {
  37300. height: math.unit(7.5, "feet"),
  37301. name: "Maw (Gigantamax)",
  37302. image: {
  37303. source: "./media/characters/carbon/maw-gigantamax.svg"
  37304. }
  37305. },
  37306. },
  37307. [
  37308. {
  37309. name: "Normal",
  37310. height: math.unit(7 + 5/12, "feet"),
  37311. default: true
  37312. },
  37313. ]
  37314. ))
  37315. characterMakers.push(() => makeCharacter(
  37316. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37317. {
  37318. front: {
  37319. height: math.unit(6, "feet"),
  37320. name: "Front",
  37321. image: {
  37322. source: "./media/characters/maverick/front.svg",
  37323. extra: 1672/1661,
  37324. bottom: 85/1757
  37325. }
  37326. },
  37327. back: {
  37328. height: math.unit(6, "feet"),
  37329. name: "Back",
  37330. image: {
  37331. source: "./media/characters/maverick/back.svg",
  37332. extra: 1642/1631,
  37333. bottom: 38/1680
  37334. }
  37335. },
  37336. },
  37337. [
  37338. {
  37339. name: "Normal",
  37340. height: math.unit(6, "feet"),
  37341. default: true
  37342. },
  37343. ]
  37344. ))
  37345. characterMakers.push(() => makeCharacter(
  37346. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37347. {
  37348. front: {
  37349. height: math.unit(15, "feet"),
  37350. weight: math.unit(615, "lb"),
  37351. name: "Front",
  37352. image: {
  37353. source: "./media/characters/grockle/front.svg",
  37354. extra: 1535/1427,
  37355. bottom: 56/1591
  37356. }
  37357. },
  37358. },
  37359. [
  37360. {
  37361. name: "Normal",
  37362. height: math.unit(15, "feet"),
  37363. default: true
  37364. },
  37365. {
  37366. name: "Large",
  37367. height: math.unit(150, "feet")
  37368. },
  37369. {
  37370. name: "Macro",
  37371. height: math.unit(1876, "feet")
  37372. },
  37373. {
  37374. name: "Mega Macro",
  37375. height: math.unit(121940, "feet")
  37376. },
  37377. {
  37378. name: "Giga Macro",
  37379. height: math.unit(750, "km")
  37380. },
  37381. {
  37382. name: "Tera Macro",
  37383. height: math.unit(750000, "km")
  37384. },
  37385. {
  37386. name: "Galactic",
  37387. height: math.unit(1.4e5, "km")
  37388. },
  37389. {
  37390. name: "Godlike",
  37391. height: math.unit(9.8e280, "galaxies")
  37392. },
  37393. ]
  37394. ))
  37395. characterMakers.push(() => makeCharacter(
  37396. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37397. {
  37398. front: {
  37399. height: math.unit(11, "meters"),
  37400. weight: math.unit(20, "tonnes"),
  37401. name: "Front",
  37402. image: {
  37403. source: "./media/characters/alistair/front.svg",
  37404. extra: 1265/1009,
  37405. bottom: 93/1358
  37406. }
  37407. },
  37408. },
  37409. [
  37410. {
  37411. name: "Normal",
  37412. height: math.unit(11, "meters"),
  37413. default: true
  37414. },
  37415. ]
  37416. ))
  37417. characterMakers.push(() => makeCharacter(
  37418. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37419. {
  37420. front: {
  37421. height: math.unit(5 + 8/12, "feet"),
  37422. name: "Front",
  37423. image: {
  37424. source: "./media/characters/haruka/front.svg",
  37425. extra: 2012/1952,
  37426. bottom: 0/2012
  37427. }
  37428. },
  37429. },
  37430. [
  37431. {
  37432. name: "Normal",
  37433. height: math.unit(5 + 8/12, "feet"),
  37434. default: true
  37435. },
  37436. ]
  37437. ))
  37438. characterMakers.push(() => makeCharacter(
  37439. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37440. {
  37441. back: {
  37442. height: math.unit(9, "feet"),
  37443. name: "Back",
  37444. image: {
  37445. source: "./media/characters/vivian-sylveon/back.svg",
  37446. extra: 1853/1714,
  37447. bottom: 0/1853
  37448. }
  37449. },
  37450. },
  37451. [
  37452. {
  37453. name: "Normal",
  37454. height: math.unit(9, "feet"),
  37455. default: true
  37456. },
  37457. {
  37458. name: "Macro",
  37459. height: math.unit(500, "feet")
  37460. },
  37461. {
  37462. name: "Megamacro",
  37463. height: math.unit(600, "miles")
  37464. },
  37465. {
  37466. name: "Gigamacro",
  37467. height: math.unit(30000, "miles")
  37468. },
  37469. ]
  37470. ))
  37471. characterMakers.push(() => makeCharacter(
  37472. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37473. {
  37474. anthro: {
  37475. height: math.unit(5 + 10/12, "feet"),
  37476. weight: math.unit(100, "lb"),
  37477. name: "Anthro",
  37478. image: {
  37479. source: "./media/characters/daiki/anthro.svg",
  37480. extra: 1115/1027,
  37481. bottom: 69/1184
  37482. }
  37483. },
  37484. feral: {
  37485. height: math.unit(200, "feet"),
  37486. name: "Feral",
  37487. image: {
  37488. source: "./media/characters/daiki/feral.svg",
  37489. extra: 1256/313,
  37490. bottom: 39/1295
  37491. }
  37492. },
  37493. feralHead: {
  37494. height: math.unit(171, "feet"),
  37495. name: "Feral Head",
  37496. image: {
  37497. source: "./media/characters/daiki/feral-head.svg"
  37498. }
  37499. },
  37500. manaDragon: {
  37501. height: math.unit(170, "meters"),
  37502. name: "Mana-dragon",
  37503. image: {
  37504. source: "./media/characters/daiki/mana-dragon.svg",
  37505. extra: 763/420,
  37506. bottom: 97/860
  37507. }
  37508. },
  37509. },
  37510. [
  37511. {
  37512. name: "Normal",
  37513. height: math.unit(5 + 10/12, "feet"),
  37514. default: true
  37515. },
  37516. ]
  37517. ))
  37518. characterMakers.push(() => makeCharacter(
  37519. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37520. {
  37521. fullyEquippedFront: {
  37522. height: math.unit(3 + 1/12, "feet"),
  37523. weight: math.unit(24, "lb"),
  37524. name: "Fully Equipped (Front)",
  37525. image: {
  37526. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37527. extra: 687/605,
  37528. bottom: 18/705
  37529. }
  37530. },
  37531. fullyEquippedBack: {
  37532. height: math.unit(3 + 1/12, "feet"),
  37533. weight: math.unit(24, "lb"),
  37534. name: "Fully Equipped (Back)",
  37535. image: {
  37536. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37537. extra: 689/590,
  37538. bottom: 18/707
  37539. }
  37540. },
  37541. dailyWear: {
  37542. height: math.unit(3 + 1/12, "feet"),
  37543. weight: math.unit(24, "lb"),
  37544. name: "Daily Wear",
  37545. image: {
  37546. source: "./media/characters/tea-spot/daily-wear.svg",
  37547. extra: 701/620,
  37548. bottom: 21/722
  37549. }
  37550. },
  37551. maidWork: {
  37552. height: math.unit(3 + 1/12, "feet"),
  37553. weight: math.unit(24, "lb"),
  37554. name: "Maid Work",
  37555. image: {
  37556. source: "./media/characters/tea-spot/maid-work.svg",
  37557. extra: 693/609,
  37558. bottom: 15/708
  37559. }
  37560. },
  37561. },
  37562. [
  37563. {
  37564. name: "Normal",
  37565. height: math.unit(3 + 1/12, "feet"),
  37566. default: true
  37567. },
  37568. ]
  37569. ))
  37570. characterMakers.push(() => makeCharacter(
  37571. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37572. {
  37573. front: {
  37574. height: math.unit(175, "cm"),
  37575. weight: math.unit(75, "kg"),
  37576. name: "Front",
  37577. image: {
  37578. source: "./media/characters/chee/front.svg",
  37579. extra: 1796/1740,
  37580. bottom: 40/1836
  37581. }
  37582. },
  37583. },
  37584. [
  37585. {
  37586. name: "Micro-Micro",
  37587. height: math.unit(1, "nm")
  37588. },
  37589. {
  37590. name: "Micro-erst",
  37591. height: math.unit(1, "micrometer")
  37592. },
  37593. {
  37594. name: "Micro-er",
  37595. height: math.unit(1, "cm")
  37596. },
  37597. {
  37598. name: "Normal",
  37599. height: math.unit(175, "cm"),
  37600. default: true
  37601. },
  37602. {
  37603. name: "Macro",
  37604. height: math.unit(100, "m")
  37605. },
  37606. {
  37607. name: "Macro-er",
  37608. height: math.unit(1, "km")
  37609. },
  37610. {
  37611. name: "Macro-erst",
  37612. height: math.unit(10, "km")
  37613. },
  37614. {
  37615. name: "Macro-Macro",
  37616. height: math.unit(100, "km")
  37617. },
  37618. ]
  37619. ))
  37620. characterMakers.push(() => makeCharacter(
  37621. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37622. {
  37623. front: {
  37624. height: math.unit(11 + 9/12, "feet"),
  37625. weight: math.unit(935, "lb"),
  37626. name: "Front",
  37627. image: {
  37628. source: "./media/characters/kingsley/front.svg",
  37629. extra: 1803/1674,
  37630. bottom: 127/1930
  37631. }
  37632. },
  37633. frontNude: {
  37634. height: math.unit(11 + 9/12, "feet"),
  37635. weight: math.unit(935, "lb"),
  37636. name: "Front (Nude)",
  37637. image: {
  37638. source: "./media/characters/kingsley/front-nude.svg",
  37639. extra: 1803/1674,
  37640. bottom: 127/1930
  37641. }
  37642. },
  37643. },
  37644. [
  37645. {
  37646. name: "Normal",
  37647. height: math.unit(11 + 9/12, "feet"),
  37648. default: true
  37649. },
  37650. ]
  37651. ))
  37652. characterMakers.push(() => makeCharacter(
  37653. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37654. {
  37655. side: {
  37656. height: math.unit(9, "feet"),
  37657. name: "Side",
  37658. image: {
  37659. source: "./media/characters/rymel/side.svg",
  37660. extra: 792/469,
  37661. bottom: 121/913
  37662. }
  37663. },
  37664. maw: {
  37665. height: math.unit(2.4, "meters"),
  37666. name: "Maw",
  37667. image: {
  37668. source: "./media/characters/rymel/maw.svg"
  37669. }
  37670. },
  37671. },
  37672. [
  37673. {
  37674. name: "House Drake",
  37675. height: math.unit(2, "feet")
  37676. },
  37677. {
  37678. name: "Reduced",
  37679. height: math.unit(4.5, "feet")
  37680. },
  37681. {
  37682. name: "Normal",
  37683. height: math.unit(9, "feet"),
  37684. default: true
  37685. },
  37686. ]
  37687. ))
  37688. characterMakers.push(() => makeCharacter(
  37689. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37690. {
  37691. front: {
  37692. height: math.unit(1.74, "meters"),
  37693. weight: math.unit(55, "kg"),
  37694. name: "Front",
  37695. image: {
  37696. source: "./media/characters/rubus/front.svg",
  37697. extra: 1894/1742,
  37698. bottom: 44/1938
  37699. }
  37700. },
  37701. },
  37702. [
  37703. {
  37704. name: "Normal",
  37705. height: math.unit(1.74, "meters"),
  37706. default: true
  37707. },
  37708. ]
  37709. ))
  37710. characterMakers.push(() => makeCharacter(
  37711. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37712. {
  37713. front: {
  37714. height: math.unit(5 + 2/12, "feet"),
  37715. weight: math.unit(112, "lb"),
  37716. name: "Front",
  37717. image: {
  37718. source: "./media/characters/cassie-kingston/front.svg",
  37719. extra: 1438/1390,
  37720. bottom: 47/1485
  37721. }
  37722. },
  37723. },
  37724. [
  37725. {
  37726. name: "Normal",
  37727. height: math.unit(5 + 2/12, "feet"),
  37728. default: true
  37729. },
  37730. {
  37731. name: "Macro",
  37732. height: math.unit(128, "feet")
  37733. },
  37734. {
  37735. name: "Megamacro",
  37736. height: math.unit(2.56, "miles")
  37737. },
  37738. ]
  37739. ))
  37740. characterMakers.push(() => makeCharacter(
  37741. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37742. {
  37743. front: {
  37744. height: math.unit(7, "feet"),
  37745. name: "Front",
  37746. image: {
  37747. source: "./media/characters/fox/front.svg",
  37748. extra: 1798/1703,
  37749. bottom: 55/1853
  37750. }
  37751. },
  37752. back: {
  37753. height: math.unit(7, "feet"),
  37754. name: "Back",
  37755. image: {
  37756. source: "./media/characters/fox/back.svg",
  37757. extra: 1748/1649,
  37758. bottom: 32/1780
  37759. }
  37760. },
  37761. head: {
  37762. height: math.unit(1.95, "feet"),
  37763. name: "Head",
  37764. image: {
  37765. source: "./media/characters/fox/head.svg"
  37766. }
  37767. },
  37768. dick: {
  37769. height: math.unit(1.33, "feet"),
  37770. name: "Dick",
  37771. image: {
  37772. source: "./media/characters/fox/dick.svg"
  37773. }
  37774. },
  37775. foot: {
  37776. height: math.unit(1, "feet"),
  37777. name: "Foot",
  37778. image: {
  37779. source: "./media/characters/fox/foot.svg"
  37780. }
  37781. },
  37782. paw: {
  37783. height: math.unit(0.92, "feet"),
  37784. name: "Paw",
  37785. image: {
  37786. source: "./media/characters/fox/paw.svg"
  37787. }
  37788. },
  37789. },
  37790. [
  37791. {
  37792. name: "Small",
  37793. height: math.unit(3, "inches")
  37794. },
  37795. {
  37796. name: "\"Realistic\"",
  37797. height: math.unit(7, "feet")
  37798. },
  37799. {
  37800. name: "Normal",
  37801. height: math.unit(150, "feet"),
  37802. default: true
  37803. },
  37804. {
  37805. name: "BIG",
  37806. height: math.unit(1200, "feet")
  37807. },
  37808. {
  37809. name: "👀",
  37810. height: math.unit(5, "miles")
  37811. },
  37812. {
  37813. name: "👀👀👀",
  37814. height: math.unit(64, "miles")
  37815. },
  37816. ]
  37817. ))
  37818. characterMakers.push(() => makeCharacter(
  37819. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37820. {
  37821. front: {
  37822. height: math.unit(625, "feet"),
  37823. name: "Front",
  37824. image: {
  37825. source: "./media/characters/asonja-rossa/front.svg",
  37826. extra: 1833/1686,
  37827. bottom: 24/1857
  37828. }
  37829. },
  37830. back: {
  37831. height: math.unit(625, "feet"),
  37832. name: "Back",
  37833. image: {
  37834. source: "./media/characters/asonja-rossa/back.svg",
  37835. extra: 1852/1753,
  37836. bottom: 26/1878
  37837. }
  37838. },
  37839. },
  37840. [
  37841. {
  37842. name: "Macro",
  37843. height: math.unit(625, "feet"),
  37844. default: true
  37845. },
  37846. ]
  37847. ))
  37848. characterMakers.push(() => makeCharacter(
  37849. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37850. {
  37851. side: {
  37852. height: math.unit(8, "feet"),
  37853. name: "Side",
  37854. image: {
  37855. source: "./media/characters/rezukii/side.svg",
  37856. extra: 979/542,
  37857. bottom: 87/1066
  37858. }
  37859. },
  37860. sitting: {
  37861. height: math.unit(14.6, "feet"),
  37862. name: "Sitting",
  37863. image: {
  37864. source: "./media/characters/rezukii/sitting.svg",
  37865. extra: 1023/813,
  37866. bottom: 45/1068
  37867. }
  37868. },
  37869. },
  37870. [
  37871. {
  37872. name: "Tiny",
  37873. height: math.unit(2, "feet")
  37874. },
  37875. {
  37876. name: "Smol",
  37877. height: math.unit(4, "feet")
  37878. },
  37879. {
  37880. name: "Normal",
  37881. height: math.unit(8, "feet"),
  37882. default: true
  37883. },
  37884. {
  37885. name: "Big",
  37886. height: math.unit(12, "feet")
  37887. },
  37888. {
  37889. name: "Macro",
  37890. height: math.unit(30, "feet")
  37891. },
  37892. ]
  37893. ))
  37894. characterMakers.push(() => makeCharacter(
  37895. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37896. {
  37897. front: {
  37898. height: math.unit(14, "feet"),
  37899. weight: math.unit(9.5, "tonnes"),
  37900. name: "Front",
  37901. image: {
  37902. source: "./media/characters/dawnheart/front.svg",
  37903. extra: 2792/2675,
  37904. bottom: 64/2856
  37905. }
  37906. },
  37907. },
  37908. [
  37909. {
  37910. name: "Normal",
  37911. height: math.unit(14, "feet"),
  37912. default: true
  37913. },
  37914. ]
  37915. ))
  37916. characterMakers.push(() => makeCharacter(
  37917. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37918. {
  37919. front: {
  37920. height: math.unit(1.7, "m"),
  37921. name: "Front",
  37922. image: {
  37923. source: "./media/characters/gladi/front.svg",
  37924. extra: 1460/1362,
  37925. bottom: 19/1479
  37926. }
  37927. },
  37928. back: {
  37929. height: math.unit(1.7, "m"),
  37930. name: "Back",
  37931. image: {
  37932. source: "./media/characters/gladi/back.svg",
  37933. extra: 1459/1357,
  37934. bottom: 12/1471
  37935. }
  37936. },
  37937. feral: {
  37938. height: math.unit(2.05, "m"),
  37939. name: "Feral",
  37940. image: {
  37941. source: "./media/characters/gladi/feral.svg",
  37942. extra: 821/557,
  37943. bottom: 91/912
  37944. }
  37945. },
  37946. },
  37947. [
  37948. {
  37949. name: "Shortest",
  37950. height: math.unit(70, "cm")
  37951. },
  37952. {
  37953. name: "Normal",
  37954. height: math.unit(1.7, "m")
  37955. },
  37956. {
  37957. name: "Macro",
  37958. height: math.unit(10, "m"),
  37959. default: true
  37960. },
  37961. {
  37962. name: "Tallest",
  37963. height: math.unit(200, "m")
  37964. },
  37965. ]
  37966. ))
  37967. characterMakers.push(() => makeCharacter(
  37968. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37969. {
  37970. front: {
  37971. height: math.unit(5 + 7/12, "feet"),
  37972. weight: math.unit(2, "tons"),
  37973. name: "Front",
  37974. image: {
  37975. source: "./media/characters/erdno/front.svg",
  37976. extra: 1234/1129,
  37977. bottom: 35/1269
  37978. }
  37979. },
  37980. angled: {
  37981. height: math.unit(5 + 7/12, "feet"),
  37982. weight: math.unit(2, "tons"),
  37983. name: "Angled",
  37984. image: {
  37985. source: "./media/characters/erdno/angled.svg",
  37986. extra: 1185/1139,
  37987. bottom: 36/1221
  37988. }
  37989. },
  37990. side: {
  37991. height: math.unit(5 + 7/12, "feet"),
  37992. weight: math.unit(2, "tons"),
  37993. name: "Side",
  37994. image: {
  37995. source: "./media/characters/erdno/side.svg",
  37996. extra: 1191/1144,
  37997. bottom: 40/1231
  37998. }
  37999. },
  38000. back: {
  38001. height: math.unit(5 + 7/12, "feet"),
  38002. weight: math.unit(2, "tons"),
  38003. name: "Back",
  38004. image: {
  38005. source: "./media/characters/erdno/back.svg",
  38006. extra: 1202/1146,
  38007. bottom: 17/1219
  38008. }
  38009. },
  38010. frontNsfw: {
  38011. height: math.unit(5 + 7/12, "feet"),
  38012. weight: math.unit(2, "tons"),
  38013. name: "Front (NSFW)",
  38014. image: {
  38015. source: "./media/characters/erdno/front-nsfw.svg",
  38016. extra: 1234/1129,
  38017. bottom: 35/1269
  38018. }
  38019. },
  38020. angledNsfw: {
  38021. height: math.unit(5 + 7/12, "feet"),
  38022. weight: math.unit(2, "tons"),
  38023. name: "Angled (NSFW)",
  38024. image: {
  38025. source: "./media/characters/erdno/angled-nsfw.svg",
  38026. extra: 1185/1139,
  38027. bottom: 36/1221
  38028. }
  38029. },
  38030. sideNsfw: {
  38031. height: math.unit(5 + 7/12, "feet"),
  38032. weight: math.unit(2, "tons"),
  38033. name: "Side (NSFW)",
  38034. image: {
  38035. source: "./media/characters/erdno/side-nsfw.svg",
  38036. extra: 1191/1144,
  38037. bottom: 40/1231
  38038. }
  38039. },
  38040. backNsfw: {
  38041. height: math.unit(5 + 7/12, "feet"),
  38042. weight: math.unit(2, "tons"),
  38043. name: "Back (NSFW)",
  38044. image: {
  38045. source: "./media/characters/erdno/back-nsfw.svg",
  38046. extra: 1202/1146,
  38047. bottom: 17/1219
  38048. }
  38049. },
  38050. frontHyper: {
  38051. height: math.unit(5 + 7/12, "feet"),
  38052. weight: math.unit(2, "tons"),
  38053. name: "Front (Hyper)",
  38054. image: {
  38055. source: "./media/characters/erdno/front-hyper.svg",
  38056. extra: 1298/1136,
  38057. bottom: 35/1333
  38058. }
  38059. },
  38060. },
  38061. [
  38062. {
  38063. name: "Normal",
  38064. height: math.unit(5 + 7/12, "feet"),
  38065. default: true
  38066. },
  38067. {
  38068. name: "Big",
  38069. height: math.unit(5.7, "meters")
  38070. },
  38071. {
  38072. name: "Macro",
  38073. height: math.unit(5.7, "kilometers")
  38074. },
  38075. {
  38076. name: "Megamacro",
  38077. height: math.unit(5.7, "earths")
  38078. },
  38079. ]
  38080. ))
  38081. characterMakers.push(() => makeCharacter(
  38082. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38083. {
  38084. front: {
  38085. height: math.unit(5 + 10/12, "feet"),
  38086. weight: math.unit(150, "lb"),
  38087. name: "Front",
  38088. image: {
  38089. source: "./media/characters/jamie/front.svg",
  38090. extra: 1908/1768,
  38091. bottom: 19/1927
  38092. }
  38093. },
  38094. },
  38095. [
  38096. {
  38097. name: "Minimum",
  38098. height: math.unit(2, "cm")
  38099. },
  38100. {
  38101. name: "Micro",
  38102. height: math.unit(3, "inches")
  38103. },
  38104. {
  38105. name: "Normal",
  38106. height: math.unit(5 + 10/12, "feet"),
  38107. default: true
  38108. },
  38109. {
  38110. name: "Macro",
  38111. height: math.unit(150, "feet")
  38112. },
  38113. {
  38114. name: "Megamacro",
  38115. height: math.unit(10000, "m")
  38116. },
  38117. ]
  38118. ))
  38119. characterMakers.push(() => makeCharacter(
  38120. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38121. {
  38122. front: {
  38123. height: math.unit(2, "meters"),
  38124. weight: math.unit(100, "kg"),
  38125. name: "Front",
  38126. image: {
  38127. source: "./media/characters/shiron/front.svg",
  38128. extra: 2103/1985,
  38129. bottom: 98/2201
  38130. }
  38131. },
  38132. back: {
  38133. height: math.unit(2, "meters"),
  38134. weight: math.unit(100, "kg"),
  38135. name: "Back",
  38136. image: {
  38137. source: "./media/characters/shiron/back.svg",
  38138. extra: 2110/2015,
  38139. bottom: 89/2199
  38140. }
  38141. },
  38142. hand: {
  38143. height: math.unit(0.96, "feet"),
  38144. name: "Hand",
  38145. image: {
  38146. source: "./media/characters/shiron/hand.svg"
  38147. }
  38148. },
  38149. foot: {
  38150. height: math.unit(1.464, "feet"),
  38151. name: "Foot",
  38152. image: {
  38153. source: "./media/characters/shiron/foot.svg"
  38154. }
  38155. },
  38156. },
  38157. [
  38158. {
  38159. name: "Normal",
  38160. height: math.unit(2, "meters")
  38161. },
  38162. {
  38163. name: "Macro",
  38164. height: math.unit(500, "meters"),
  38165. default: true
  38166. },
  38167. {
  38168. name: "Megamacro",
  38169. height: math.unit(20, "km")
  38170. },
  38171. ]
  38172. ))
  38173. characterMakers.push(() => makeCharacter(
  38174. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38175. {
  38176. front: {
  38177. height: math.unit(6, "feet"),
  38178. name: "Front",
  38179. image: {
  38180. source: "./media/characters/sam/front.svg",
  38181. extra: 849/826,
  38182. bottom: 19/868
  38183. }
  38184. },
  38185. },
  38186. [
  38187. {
  38188. name: "Normal",
  38189. height: math.unit(6, "feet"),
  38190. default: true
  38191. },
  38192. ]
  38193. ))
  38194. characterMakers.push(() => makeCharacter(
  38195. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38196. {
  38197. front: {
  38198. height: math.unit(8 + 4/12, "feet"),
  38199. weight: math.unit(122, "kg"),
  38200. name: "Front",
  38201. image: {
  38202. source: "./media/characters/namori-kurogawa/front.svg",
  38203. extra: 1894/1576,
  38204. bottom: 34/1928
  38205. }
  38206. },
  38207. },
  38208. [
  38209. {
  38210. name: "Normal",
  38211. height: math.unit(8 + 4/12, "feet"),
  38212. default: true
  38213. },
  38214. ]
  38215. ))
  38216. characterMakers.push(() => makeCharacter(
  38217. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38218. {
  38219. front: {
  38220. height: math.unit(9, "feet"),
  38221. weight: math.unit(621, "lb"),
  38222. name: "Front",
  38223. image: {
  38224. source: "./media/characters/unmru/front.svg",
  38225. extra: 1853/1747,
  38226. bottom: 73/1926
  38227. }
  38228. },
  38229. side: {
  38230. height: math.unit(9, "feet"),
  38231. weight: math.unit(621, "lb"),
  38232. name: "Side",
  38233. image: {
  38234. source: "./media/characters/unmru/side.svg",
  38235. extra: 1781/1671,
  38236. bottom: 127/1908
  38237. }
  38238. },
  38239. back: {
  38240. height: math.unit(9, "feet"),
  38241. weight: math.unit(621, "lb"),
  38242. name: "Back",
  38243. image: {
  38244. source: "./media/characters/unmru/back.svg",
  38245. extra: 1894/1765,
  38246. bottom: 75/1969
  38247. }
  38248. },
  38249. dick: {
  38250. height: math.unit(3, "feet"),
  38251. weight: math.unit(35, "lb"),
  38252. name: "Dick",
  38253. image: {
  38254. source: "./media/characters/unmru/dick.svg"
  38255. }
  38256. },
  38257. },
  38258. [
  38259. {
  38260. name: "Normal",
  38261. height: math.unit(9, "feet")
  38262. },
  38263. {
  38264. name: "Natural",
  38265. height: math.unit(27, "feet"),
  38266. default: true
  38267. },
  38268. {
  38269. name: "Giant",
  38270. height: math.unit(90, "feet")
  38271. },
  38272. {
  38273. name: "Kaiju",
  38274. height: math.unit(270, "feet")
  38275. },
  38276. {
  38277. name: "Macro",
  38278. height: math.unit(900, "feet")
  38279. },
  38280. {
  38281. name: "Macro+",
  38282. height: math.unit(2700, "feet")
  38283. },
  38284. {
  38285. name: "Megamacro",
  38286. height: math.unit(9000, "feet")
  38287. },
  38288. {
  38289. name: "City-Crushing",
  38290. height: math.unit(27000, "feet")
  38291. },
  38292. {
  38293. name: "Mountain-Mashing",
  38294. height: math.unit(90000, "feet")
  38295. },
  38296. {
  38297. name: "Earth-Eclipsing",
  38298. height: math.unit(2.7e8, "feet")
  38299. },
  38300. {
  38301. name: "Sol-Swallowing",
  38302. height: math.unit(9e10, "feet")
  38303. },
  38304. {
  38305. name: "Majoris-Munching",
  38306. height: math.unit(2.7e13, "feet")
  38307. },
  38308. ]
  38309. ))
  38310. characterMakers.push(() => makeCharacter(
  38311. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38312. {
  38313. front: {
  38314. height: math.unit(1, "inch"),
  38315. name: "Front",
  38316. image: {
  38317. source: "./media/characters/squeaks-mouse/front.svg",
  38318. extra: 352/308,
  38319. bottom: 25/377
  38320. }
  38321. },
  38322. },
  38323. [
  38324. {
  38325. name: "Micro",
  38326. height: math.unit(1, "inch"),
  38327. default: true
  38328. },
  38329. ]
  38330. ))
  38331. characterMakers.push(() => makeCharacter(
  38332. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38333. {
  38334. side: {
  38335. height: math.unit(35, "feet"),
  38336. name: "Side",
  38337. image: {
  38338. source: "./media/characters/sayko/side.svg",
  38339. extra: 1697/1021,
  38340. bottom: 82/1779
  38341. }
  38342. },
  38343. head: {
  38344. height: math.unit(16, "feet"),
  38345. name: "Head",
  38346. image: {
  38347. source: "./media/characters/sayko/head.svg"
  38348. }
  38349. },
  38350. forepaw: {
  38351. height: math.unit(7.85, "feet"),
  38352. name: "Forepaw",
  38353. image: {
  38354. source: "./media/characters/sayko/forepaw.svg"
  38355. }
  38356. },
  38357. hindpaw: {
  38358. height: math.unit(8.8, "feet"),
  38359. name: "Hindpaw",
  38360. image: {
  38361. source: "./media/characters/sayko/hindpaw.svg"
  38362. }
  38363. },
  38364. },
  38365. [
  38366. {
  38367. name: "Normal",
  38368. height: math.unit(35, "feet"),
  38369. default: true
  38370. },
  38371. {
  38372. name: "Colossus",
  38373. height: math.unit(100, "meters")
  38374. },
  38375. {
  38376. name: "\"Small\" Deity",
  38377. height: math.unit(1, "km")
  38378. },
  38379. {
  38380. name: "\"Large\" Deity",
  38381. height: math.unit(15, "km")
  38382. },
  38383. ]
  38384. ))
  38385. characterMakers.push(() => makeCharacter(
  38386. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38387. {
  38388. front: {
  38389. height: math.unit(6, "feet"),
  38390. weight: math.unit(250, "lb"),
  38391. name: "Front",
  38392. image: {
  38393. source: "./media/characters/mukiro/front.svg",
  38394. extra: 1368/1310,
  38395. bottom: 34/1402
  38396. }
  38397. },
  38398. },
  38399. [
  38400. {
  38401. name: "Normal",
  38402. height: math.unit(6, "feet"),
  38403. default: true
  38404. },
  38405. ]
  38406. ))
  38407. characterMakers.push(() => makeCharacter(
  38408. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38409. {
  38410. front: {
  38411. height: math.unit(12 + 4/12, "feet"),
  38412. name: "Front",
  38413. image: {
  38414. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38415. extra: 1346/1311,
  38416. bottom: 65/1411
  38417. }
  38418. },
  38419. },
  38420. [
  38421. {
  38422. name: "Base",
  38423. height: math.unit(12 + 4/12, "feet"),
  38424. default: true
  38425. },
  38426. {
  38427. name: "Macro",
  38428. height: math.unit(150, "feet")
  38429. },
  38430. {
  38431. name: "Mega",
  38432. height: math.unit(2, "miles")
  38433. },
  38434. {
  38435. name: "Demi God",
  38436. height: math.unit(4, "AU")
  38437. },
  38438. {
  38439. name: "God Size",
  38440. height: math.unit(1, "universe")
  38441. },
  38442. ]
  38443. ))
  38444. characterMakers.push(() => makeCharacter(
  38445. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38446. {
  38447. front: {
  38448. height: math.unit(3 + 3/12, "feet"),
  38449. weight: math.unit(88, "lb"),
  38450. name: "Front",
  38451. image: {
  38452. source: "./media/characters/trey/front.svg",
  38453. extra: 1815/1509,
  38454. bottom: 60/1875
  38455. }
  38456. },
  38457. },
  38458. [
  38459. {
  38460. name: "Normal",
  38461. height: math.unit(3 + 3/12, "feet"),
  38462. default: true
  38463. },
  38464. ]
  38465. ))
  38466. characterMakers.push(() => makeCharacter(
  38467. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38468. {
  38469. front: {
  38470. height: math.unit(4, "meters"),
  38471. name: "Front",
  38472. image: {
  38473. source: "./media/characters/adelonda/front.svg",
  38474. extra: 1077/982,
  38475. bottom: 39/1116
  38476. }
  38477. },
  38478. back: {
  38479. height: math.unit(4, "meters"),
  38480. name: "Back",
  38481. image: {
  38482. source: "./media/characters/adelonda/back.svg",
  38483. extra: 1105/1003,
  38484. bottom: 25/1130
  38485. }
  38486. },
  38487. feral: {
  38488. height: math.unit(40/1.5, "meters"),
  38489. name: "Feral",
  38490. image: {
  38491. source: "./media/characters/adelonda/feral.svg",
  38492. extra: 597/271,
  38493. bottom: 387/984
  38494. }
  38495. },
  38496. },
  38497. [
  38498. {
  38499. name: "Normal",
  38500. height: math.unit(4, "meters"),
  38501. default: true
  38502. },
  38503. ]
  38504. ))
  38505. characterMakers.push(() => makeCharacter(
  38506. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38507. {
  38508. front: {
  38509. height: math.unit(8 + 4/12, "feet"),
  38510. weight: math.unit(670, "lb"),
  38511. name: "Front",
  38512. image: {
  38513. source: "./media/characters/acadiel/front.svg",
  38514. extra: 1901/1595,
  38515. bottom: 142/2043
  38516. }
  38517. },
  38518. },
  38519. [
  38520. {
  38521. name: "Normal",
  38522. height: math.unit(8 + 4/12, "feet"),
  38523. default: true
  38524. },
  38525. {
  38526. name: "Macro",
  38527. height: math.unit(200, "feet")
  38528. },
  38529. ]
  38530. ))
  38531. characterMakers.push(() => makeCharacter(
  38532. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38533. {
  38534. front: {
  38535. height: math.unit(6 + 2/12, "feet"),
  38536. weight: math.unit(185, "lb"),
  38537. name: "Front",
  38538. image: {
  38539. source: "./media/characters/kayne-ein/front.svg",
  38540. extra: 1780/1560,
  38541. bottom: 81/1861
  38542. }
  38543. },
  38544. },
  38545. [
  38546. {
  38547. name: "Normal",
  38548. height: math.unit(6 + 2/12, "feet"),
  38549. default: true
  38550. },
  38551. {
  38552. name: "Transformation Stage",
  38553. height: math.unit(15, "feet")
  38554. },
  38555. {
  38556. name: "Macro",
  38557. height: math.unit(150, "feet")
  38558. },
  38559. {
  38560. name: "Earth's Shadow",
  38561. height: math.unit(6200, "miles")
  38562. },
  38563. {
  38564. name: "Universal Demon",
  38565. height: math.unit(28e9, "parsecs")
  38566. },
  38567. {
  38568. name: "Multiverse God",
  38569. height: math.unit(3, "multiverses")
  38570. },
  38571. ]
  38572. ))
  38573. characterMakers.push(() => makeCharacter(
  38574. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38575. {
  38576. front: {
  38577. height: math.unit(5 + 5/12, "feet"),
  38578. name: "Front",
  38579. image: {
  38580. source: "./media/characters/fawn/front.svg",
  38581. extra: 1873/1731,
  38582. bottom: 95/1968
  38583. }
  38584. },
  38585. back: {
  38586. height: math.unit(5 + 5/12, "feet"),
  38587. name: "Back",
  38588. image: {
  38589. source: "./media/characters/fawn/back.svg",
  38590. extra: 1813/1700,
  38591. bottom: 14/1827
  38592. }
  38593. },
  38594. hoof: {
  38595. height: math.unit(1.45, "feet"),
  38596. name: "Hoof",
  38597. image: {
  38598. source: "./media/characters/fawn/hoof.svg"
  38599. }
  38600. },
  38601. },
  38602. [
  38603. {
  38604. name: "Normal",
  38605. height: math.unit(5 + 5/12, "feet"),
  38606. default: true
  38607. },
  38608. ]
  38609. ))
  38610. characterMakers.push(() => makeCharacter(
  38611. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38612. {
  38613. front: {
  38614. height: math.unit(2 + 5/12, "feet"),
  38615. name: "Front",
  38616. image: {
  38617. source: "./media/characters/orion/front.svg",
  38618. extra: 1366/1304,
  38619. bottom: 43/1409
  38620. }
  38621. },
  38622. paw: {
  38623. height: math.unit(0.52, "feet"),
  38624. name: "Paw",
  38625. image: {
  38626. source: "./media/characters/orion/paw.svg"
  38627. }
  38628. },
  38629. },
  38630. [
  38631. {
  38632. name: "Normal",
  38633. height: math.unit(2 + 5/12, "feet"),
  38634. default: true
  38635. },
  38636. ]
  38637. ))
  38638. characterMakers.push(() => makeCharacter(
  38639. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38640. {
  38641. front: {
  38642. height: math.unit(5 + 10/12, "feet"),
  38643. name: "Front",
  38644. image: {
  38645. source: "./media/characters/vera/front.svg",
  38646. extra: 1680/1575,
  38647. bottom: 49/1729
  38648. }
  38649. },
  38650. back: {
  38651. height: math.unit(5 + 10/12, "feet"),
  38652. name: "Back",
  38653. image: {
  38654. source: "./media/characters/vera/back.svg",
  38655. extra: 1700/1588,
  38656. bottom: 18/1718
  38657. }
  38658. },
  38659. arcanine: {
  38660. height: math.unit(6 + 8/12, "feet"),
  38661. name: "Arcanine",
  38662. image: {
  38663. source: "./media/characters/vera/arcanine.svg",
  38664. extra: 1590/1511,
  38665. bottom: 71/1661
  38666. }
  38667. },
  38668. maw: {
  38669. height: math.unit(0.82, "feet"),
  38670. name: "Maw",
  38671. image: {
  38672. source: "./media/characters/vera/maw.svg"
  38673. }
  38674. },
  38675. mawArcanine: {
  38676. height: math.unit(0.97, "feet"),
  38677. name: "Maw (Arcanine)",
  38678. image: {
  38679. source: "./media/characters/vera/maw-arcanine.svg"
  38680. }
  38681. },
  38682. paw: {
  38683. height: math.unit(0.75, "feet"),
  38684. name: "Paw",
  38685. image: {
  38686. source: "./media/characters/vera/paw.svg"
  38687. }
  38688. },
  38689. pawprint: {
  38690. height: math.unit(0.52, "feet"),
  38691. name: "Pawprint",
  38692. image: {
  38693. source: "./media/characters/vera/pawprint.svg"
  38694. }
  38695. },
  38696. },
  38697. [
  38698. {
  38699. name: "Normal",
  38700. height: math.unit(5 + 10/12, "feet"),
  38701. default: true
  38702. },
  38703. {
  38704. name: "Macro",
  38705. height: math.unit(75, "feet")
  38706. },
  38707. ]
  38708. ))
  38709. characterMakers.push(() => makeCharacter(
  38710. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38711. {
  38712. front: {
  38713. height: math.unit(4, "feet"),
  38714. weight: math.unit(40, "lb"),
  38715. name: "Front",
  38716. image: {
  38717. source: "./media/characters/orvan-rabbit/front.svg",
  38718. extra: 1896/1642,
  38719. bottom: 29/1925
  38720. }
  38721. },
  38722. },
  38723. [
  38724. {
  38725. name: "Normal",
  38726. height: math.unit(4, "feet"),
  38727. default: true
  38728. },
  38729. ]
  38730. ))
  38731. characterMakers.push(() => makeCharacter(
  38732. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38733. {
  38734. front: {
  38735. height: math.unit(6, "feet"),
  38736. weight: math.unit(168, "lb"),
  38737. name: "Front",
  38738. image: {
  38739. source: "./media/characters/lisa/front.svg",
  38740. extra: 2065/1867,
  38741. bottom: 46/2111
  38742. }
  38743. },
  38744. back: {
  38745. height: math.unit(6, "feet"),
  38746. weight: math.unit(168, "lb"),
  38747. name: "Back",
  38748. image: {
  38749. source: "./media/characters/lisa/back.svg",
  38750. extra: 1982/1838,
  38751. bottom: 29/2011
  38752. }
  38753. },
  38754. maw: {
  38755. height: math.unit(0.81, "feet"),
  38756. name: "Maw",
  38757. image: {
  38758. source: "./media/characters/lisa/maw.svg"
  38759. }
  38760. },
  38761. paw: {
  38762. height: math.unit(0.9, "feet"),
  38763. name: "Paw",
  38764. image: {
  38765. source: "./media/characters/lisa/paw.svg"
  38766. }
  38767. },
  38768. caribousune: {
  38769. height: math.unit(7 + 2/12, "feet"),
  38770. weight: math.unit(268, "lb"),
  38771. name: "Caribousune",
  38772. image: {
  38773. source: "./media/characters/lisa/caribousune.svg",
  38774. extra: 1843/1633,
  38775. bottom: 29/1872
  38776. }
  38777. },
  38778. frontCaribousune: {
  38779. height: math.unit(7 + 2/12, "feet"),
  38780. weight: math.unit(268, "lb"),
  38781. name: "Front (Caribousune)",
  38782. image: {
  38783. source: "./media/characters/lisa/front-caribousune.svg",
  38784. extra: 1818/1638,
  38785. bottom: 52/1870
  38786. }
  38787. },
  38788. sideCaribousune: {
  38789. height: math.unit(7 + 2/12, "feet"),
  38790. weight: math.unit(268, "lb"),
  38791. name: "Side (Caribousune)",
  38792. image: {
  38793. source: "./media/characters/lisa/side-caribousune.svg",
  38794. extra: 1851/1635,
  38795. bottom: 16/1867
  38796. }
  38797. },
  38798. backCaribousune: {
  38799. height: math.unit(7 + 2/12, "feet"),
  38800. weight: math.unit(268, "lb"),
  38801. name: "Back (Caribousune)",
  38802. image: {
  38803. source: "./media/characters/lisa/back-caribousune.svg",
  38804. extra: 1801/1604,
  38805. bottom: 44/1845
  38806. }
  38807. },
  38808. caribou: {
  38809. height: math.unit(7 + 2/12, "feet"),
  38810. weight: math.unit(268, "lb"),
  38811. name: "Caribou",
  38812. image: {
  38813. source: "./media/characters/lisa/caribou.svg",
  38814. extra: 1843/1633,
  38815. bottom: 29/1872
  38816. }
  38817. },
  38818. frontCaribou: {
  38819. height: math.unit(7 + 2/12, "feet"),
  38820. weight: math.unit(268, "lb"),
  38821. name: "Front (Caribou)",
  38822. image: {
  38823. source: "./media/characters/lisa/front-caribou.svg",
  38824. extra: 1818/1638,
  38825. bottom: 52/1870
  38826. }
  38827. },
  38828. sideCaribou: {
  38829. height: math.unit(7 + 2/12, "feet"),
  38830. weight: math.unit(268, "lb"),
  38831. name: "Side (Caribou)",
  38832. image: {
  38833. source: "./media/characters/lisa/side-caribou.svg",
  38834. extra: 1851/1635,
  38835. bottom: 16/1867
  38836. }
  38837. },
  38838. backCaribou: {
  38839. height: math.unit(7 + 2/12, "feet"),
  38840. weight: math.unit(268, "lb"),
  38841. name: "Back (Caribou)",
  38842. image: {
  38843. source: "./media/characters/lisa/back-caribou.svg",
  38844. extra: 1801/1604,
  38845. bottom: 44/1845
  38846. }
  38847. },
  38848. mawCaribou: {
  38849. height: math.unit(1.45, "feet"),
  38850. name: "Maw (Caribou)",
  38851. image: {
  38852. source: "./media/characters/lisa/maw-caribou.svg"
  38853. }
  38854. },
  38855. mawCaribousune: {
  38856. height: math.unit(1.45, "feet"),
  38857. name: "Maw (Caribousune)",
  38858. image: {
  38859. source: "./media/characters/lisa/maw-caribousune.svg"
  38860. }
  38861. },
  38862. pawCaribousune: {
  38863. height: math.unit(1.61, "feet"),
  38864. name: "Paw (Caribou)",
  38865. image: {
  38866. source: "./media/characters/lisa/paw-caribousune.svg"
  38867. }
  38868. },
  38869. },
  38870. [
  38871. {
  38872. name: "Normal",
  38873. height: math.unit(6, "feet")
  38874. },
  38875. {
  38876. name: "God Size",
  38877. height: math.unit(72, "feet"),
  38878. default: true
  38879. },
  38880. {
  38881. name: "Towering",
  38882. height: math.unit(288, "feet")
  38883. },
  38884. {
  38885. name: "City Size",
  38886. height: math.unit(48384, "feet")
  38887. },
  38888. {
  38889. name: "Continental",
  38890. height: math.unit(4200, "miles")
  38891. },
  38892. {
  38893. name: "Planet Eater",
  38894. height: math.unit(42, "earths")
  38895. },
  38896. {
  38897. name: "Star Swallower",
  38898. height: math.unit(42, "solarradii")
  38899. },
  38900. {
  38901. name: "System Swallower",
  38902. height: math.unit(84000, "AU")
  38903. },
  38904. {
  38905. name: "Galaxy Gobbler",
  38906. height: math.unit(42, "galaxies")
  38907. },
  38908. {
  38909. name: "Universe Devourer",
  38910. height: math.unit(42, "universes")
  38911. },
  38912. {
  38913. name: "Multiverse Muncher",
  38914. height: math.unit(42, "multiverses")
  38915. },
  38916. ]
  38917. ))
  38918. characterMakers.push(() => makeCharacter(
  38919. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38920. {
  38921. front: {
  38922. height: math.unit(36, "feet"),
  38923. name: "Front",
  38924. image: {
  38925. source: "./media/characters/shadow-rat/front.svg",
  38926. extra: 1845/1758,
  38927. bottom: 83/1928
  38928. }
  38929. },
  38930. },
  38931. [
  38932. {
  38933. name: "Macro",
  38934. height: math.unit(36, "feet"),
  38935. default: true
  38936. },
  38937. ]
  38938. ))
  38939. characterMakers.push(() => makeCharacter(
  38940. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38941. {
  38942. side: {
  38943. height: math.unit(8, "feet"),
  38944. weight: math.unit(2630, "lb"),
  38945. name: "Side",
  38946. image: {
  38947. source: "./media/characters/torallia/side.svg",
  38948. extra: 2164/2021,
  38949. bottom: 371/2535
  38950. }
  38951. },
  38952. },
  38953. [
  38954. {
  38955. name: "Mortal Interaction",
  38956. height: math.unit(8, "feet")
  38957. },
  38958. {
  38959. name: "Natural",
  38960. height: math.unit(24, "feet"),
  38961. default: true
  38962. },
  38963. {
  38964. name: "Giant",
  38965. height: math.unit(80, "feet")
  38966. },
  38967. {
  38968. name: "Kaiju",
  38969. height: math.unit(240, "feet")
  38970. },
  38971. {
  38972. name: "Macro",
  38973. height: math.unit(800, "feet")
  38974. },
  38975. {
  38976. name: "Macro+",
  38977. height: math.unit(2400, "feet")
  38978. },
  38979. {
  38980. name: "Macro++",
  38981. height: math.unit(8000, "feet")
  38982. },
  38983. {
  38984. name: "City-Crushing",
  38985. height: math.unit(24000, "feet")
  38986. },
  38987. {
  38988. name: "Mountain-Mashing",
  38989. height: math.unit(80000, "feet")
  38990. },
  38991. {
  38992. name: "District Demolisher",
  38993. height: math.unit(240000, "feet")
  38994. },
  38995. {
  38996. name: "Tri-County Terror",
  38997. height: math.unit(800000, "feet")
  38998. },
  38999. {
  39000. name: "State Smasher",
  39001. height: math.unit(2.4e6, "feet")
  39002. },
  39003. {
  39004. name: "Nation Nemesis",
  39005. height: math.unit(8e6, "feet")
  39006. },
  39007. {
  39008. name: "Continent Cracker",
  39009. height: math.unit(2.4e7, "feet")
  39010. },
  39011. {
  39012. name: "Planet-Pillaging",
  39013. height: math.unit(8e7, "feet")
  39014. },
  39015. {
  39016. name: "Earth-Eclipsing",
  39017. height: math.unit(2.4e8, "feet")
  39018. },
  39019. {
  39020. name: "Jovian-Jostling",
  39021. height: math.unit(8e8, "feet")
  39022. },
  39023. {
  39024. name: "Gas Giant Gulper",
  39025. height: math.unit(2.4e9, "feet")
  39026. },
  39027. {
  39028. name: "Astral Annihilator",
  39029. height: math.unit(8e9, "feet")
  39030. },
  39031. {
  39032. name: "Celestial Conqueror",
  39033. height: math.unit(2.4e10, "feet")
  39034. },
  39035. {
  39036. name: "Sol-Swallowing",
  39037. height: math.unit(8e10, "feet")
  39038. },
  39039. {
  39040. name: "Hunter of the Heavens",
  39041. height: math.unit(2.4e13, "feet")
  39042. },
  39043. ]
  39044. ))
  39045. characterMakers.push(() => makeCharacter(
  39046. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39047. {
  39048. front: {
  39049. height: math.unit(6 + 8/12, "feet"),
  39050. name: "Front",
  39051. image: {
  39052. source: "./media/characters/rebecca-pawlson/front.svg",
  39053. extra: 1737/1596,
  39054. bottom: 107/1844
  39055. }
  39056. },
  39057. back: {
  39058. height: math.unit(6 + 8/12, "feet"),
  39059. name: "Back",
  39060. image: {
  39061. source: "./media/characters/rebecca-pawlson/back.svg",
  39062. extra: 1702/1523,
  39063. bottom: 86/1788
  39064. }
  39065. },
  39066. },
  39067. [
  39068. {
  39069. name: "Normal",
  39070. height: math.unit(6 + 8/12, "feet")
  39071. },
  39072. {
  39073. name: "Mini Macro",
  39074. height: math.unit(10, "feet"),
  39075. default: true
  39076. },
  39077. {
  39078. name: "Macro",
  39079. height: math.unit(100, "feet")
  39080. },
  39081. {
  39082. name: "Mega Macro",
  39083. height: math.unit(2500, "feet")
  39084. },
  39085. {
  39086. name: "Giga Macro",
  39087. height: math.unit(50, "miles")
  39088. },
  39089. ]
  39090. ))
  39091. characterMakers.push(() => makeCharacter(
  39092. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39093. {
  39094. front: {
  39095. height: math.unit(7 + 6/12, "feet"),
  39096. weight: math.unit(600, "lb"),
  39097. name: "Front",
  39098. image: {
  39099. source: "./media/characters/moxie-nova/front.svg",
  39100. extra: 1734/1652,
  39101. bottom: 41/1775
  39102. }
  39103. },
  39104. },
  39105. [
  39106. {
  39107. name: "Normal",
  39108. height: math.unit(7 + 6/12, "feet"),
  39109. default: true
  39110. },
  39111. ]
  39112. ))
  39113. characterMakers.push(() => makeCharacter(
  39114. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39115. {
  39116. goat: {
  39117. height: math.unit(4, "feet"),
  39118. weight: math.unit(180, "lb"),
  39119. name: "Goat",
  39120. image: {
  39121. source: "./media/characters/tiffany/goat.svg",
  39122. extra: 1845/1595,
  39123. bottom: 106/1951
  39124. }
  39125. },
  39126. front: {
  39127. height: math.unit(5, "feet"),
  39128. weight: math.unit(150, "lb"),
  39129. name: "Foxcoon",
  39130. image: {
  39131. source: "./media/characters/tiffany/foxcoon.svg",
  39132. extra: 1941/1845,
  39133. bottom: 58/1999
  39134. }
  39135. },
  39136. },
  39137. [
  39138. {
  39139. name: "Normal",
  39140. height: math.unit(5, "feet"),
  39141. default: true
  39142. },
  39143. ]
  39144. ))
  39145. characterMakers.push(() => makeCharacter(
  39146. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39147. {
  39148. front: {
  39149. height: math.unit(8, "feet"),
  39150. weight: math.unit(300, "lb"),
  39151. name: "Front",
  39152. image: {
  39153. source: "./media/characters/raxinath/front.svg",
  39154. extra: 1407/1309,
  39155. bottom: 39/1446
  39156. }
  39157. },
  39158. back: {
  39159. height: math.unit(8, "feet"),
  39160. weight: math.unit(300, "lb"),
  39161. name: "Back",
  39162. image: {
  39163. source: "./media/characters/raxinath/back.svg",
  39164. extra: 1405/1315,
  39165. bottom: 9/1414
  39166. }
  39167. },
  39168. },
  39169. [
  39170. {
  39171. name: "Speck",
  39172. height: math.unit(0.5, "nm")
  39173. },
  39174. {
  39175. name: "Micro",
  39176. height: math.unit(3, "inches")
  39177. },
  39178. {
  39179. name: "Kobold",
  39180. height: math.unit(3, "feet")
  39181. },
  39182. {
  39183. name: "Normal",
  39184. height: math.unit(8, "feet"),
  39185. default: true
  39186. },
  39187. {
  39188. name: "Giant",
  39189. height: math.unit(50, "feet")
  39190. },
  39191. {
  39192. name: "Macro",
  39193. height: math.unit(1000, "feet")
  39194. },
  39195. {
  39196. name: "Megamacro",
  39197. height: math.unit(1, "mile")
  39198. },
  39199. ]
  39200. ))
  39201. characterMakers.push(() => makeCharacter(
  39202. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39203. {
  39204. front: {
  39205. height: math.unit(10, "feet"),
  39206. weight: math.unit(1442, "lb"),
  39207. name: "Front",
  39208. image: {
  39209. source: "./media/characters/mal-dragon/front.svg",
  39210. extra: 1515/1444,
  39211. bottom: 113/1628
  39212. }
  39213. },
  39214. back: {
  39215. height: math.unit(10, "feet"),
  39216. weight: math.unit(1442, "lb"),
  39217. name: "Back",
  39218. image: {
  39219. source: "./media/characters/mal-dragon/back.svg",
  39220. extra: 1527/1434,
  39221. bottom: 25/1552
  39222. }
  39223. },
  39224. },
  39225. [
  39226. {
  39227. name: "Mortal Interaction",
  39228. height: math.unit(10, "feet"),
  39229. default: true
  39230. },
  39231. {
  39232. name: "Large",
  39233. height: math.unit(30, "feet")
  39234. },
  39235. {
  39236. name: "Kaiju",
  39237. height: math.unit(300, "feet")
  39238. },
  39239. {
  39240. name: "Megamacro",
  39241. height: math.unit(10000, "feet")
  39242. },
  39243. {
  39244. name: "Continent Cracker",
  39245. height: math.unit(30000000, "feet")
  39246. },
  39247. {
  39248. name: "Sol-Swallowing",
  39249. height: math.unit(1e11, "feet")
  39250. },
  39251. {
  39252. name: "Light Universal",
  39253. height: math.unit(5, "universes")
  39254. },
  39255. {
  39256. name: "Universe Atoms",
  39257. height: math.unit(1.829e9, "universes")
  39258. },
  39259. {
  39260. name: "Light Multiversal",
  39261. height: math.unit(5, "multiverses")
  39262. },
  39263. {
  39264. name: "Multiverse Atoms",
  39265. height: math.unit(1.829e9, "multiverses")
  39266. },
  39267. {
  39268. name: "Fabric of Time",
  39269. height: math.unit(1e262, "multiverses")
  39270. },
  39271. ]
  39272. ))
  39273. characterMakers.push(() => makeCharacter(
  39274. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39275. {
  39276. front: {
  39277. height: math.unit(9, "feet"),
  39278. weight: math.unit(1050, "lb"),
  39279. name: "Front",
  39280. image: {
  39281. source: "./media/characters/tabitha/front.svg",
  39282. extra: 2083/1994,
  39283. bottom: 68/2151
  39284. }
  39285. },
  39286. },
  39287. [
  39288. {
  39289. name: "Baseline",
  39290. height: math.unit(9, "feet"),
  39291. default: true
  39292. },
  39293. {
  39294. name: "Giant",
  39295. height: math.unit(90, "feet")
  39296. },
  39297. {
  39298. name: "Macro",
  39299. height: math.unit(900, "feet")
  39300. },
  39301. {
  39302. name: "Megamacro",
  39303. height: math.unit(9000, "feet")
  39304. },
  39305. {
  39306. name: "City-Crushing",
  39307. height: math.unit(27000, "feet")
  39308. },
  39309. {
  39310. name: "Mountain-Mashing",
  39311. height: math.unit(90000, "feet")
  39312. },
  39313. {
  39314. name: "Nation Nemesis",
  39315. height: math.unit(9e6, "feet")
  39316. },
  39317. {
  39318. name: "Continent Cracker",
  39319. height: math.unit(27e6, "feet")
  39320. },
  39321. {
  39322. name: "Earth-Eclipsing",
  39323. height: math.unit(2.7e8, "feet")
  39324. },
  39325. {
  39326. name: "Gas Giant Gulper",
  39327. height: math.unit(2.7e9, "feet")
  39328. },
  39329. {
  39330. name: "Sol-Swallowing",
  39331. height: math.unit(9e10, "feet")
  39332. },
  39333. {
  39334. name: "Galaxy Gulper",
  39335. height: math.unit(9, "galaxies")
  39336. },
  39337. {
  39338. name: "Cosmos Churner",
  39339. height: math.unit(9, "universes")
  39340. },
  39341. ]
  39342. ))
  39343. characterMakers.push(() => makeCharacter(
  39344. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39345. {
  39346. front: {
  39347. height: math.unit(160, "cm"),
  39348. weight: math.unit(55, "kg"),
  39349. name: "Front",
  39350. image: {
  39351. source: "./media/characters/tow/front.svg",
  39352. extra: 1751/1722,
  39353. bottom: 74/1825
  39354. }
  39355. },
  39356. },
  39357. [
  39358. {
  39359. name: "Norm",
  39360. height: math.unit(160, "cm")
  39361. },
  39362. {
  39363. name: "Casual",
  39364. height: math.unit(3200, "m"),
  39365. default: true
  39366. },
  39367. {
  39368. name: "Show-Off",
  39369. height: math.unit(160, "km")
  39370. },
  39371. ]
  39372. ))
  39373. characterMakers.push(() => makeCharacter(
  39374. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39375. {
  39376. front: {
  39377. height: math.unit(7 + 11/12, "feet"),
  39378. weight: math.unit(342.8, "lb"),
  39379. name: "Front",
  39380. image: {
  39381. source: "./media/characters/vivian-orca-dragon/front.svg",
  39382. extra: 1890/1865,
  39383. bottom: 28/1918
  39384. }
  39385. },
  39386. },
  39387. [
  39388. {
  39389. name: "Micro",
  39390. height: math.unit(5, "inches")
  39391. },
  39392. {
  39393. name: "Normal",
  39394. height: math.unit(7 + 11/12, "feet"),
  39395. default: true
  39396. },
  39397. {
  39398. name: "Macro",
  39399. height: math.unit(395 + 7/12, "feet")
  39400. },
  39401. ]
  39402. ))
  39403. characterMakers.push(() => makeCharacter(
  39404. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39405. {
  39406. side: {
  39407. height: math.unit(10, "feet"),
  39408. weight: math.unit(1442, "lb"),
  39409. name: "Side",
  39410. image: {
  39411. source: "./media/characters/lotherakon/side.svg",
  39412. extra: 1604/1497,
  39413. bottom: 89/1693
  39414. }
  39415. },
  39416. },
  39417. [
  39418. {
  39419. name: "Mortal Interaction",
  39420. height: math.unit(10, "feet")
  39421. },
  39422. {
  39423. name: "Large",
  39424. height: math.unit(30, "feet"),
  39425. default: true
  39426. },
  39427. {
  39428. name: "Giant",
  39429. height: math.unit(100, "feet")
  39430. },
  39431. {
  39432. name: "Kaiju",
  39433. height: math.unit(300, "feet")
  39434. },
  39435. {
  39436. name: "Macro",
  39437. height: math.unit(1000, "feet")
  39438. },
  39439. {
  39440. name: "Macro+",
  39441. height: math.unit(3000, "feet")
  39442. },
  39443. {
  39444. name: "Megamacro",
  39445. height: math.unit(10000, "feet")
  39446. },
  39447. {
  39448. name: "City-Crushing",
  39449. height: math.unit(30000, "feet")
  39450. },
  39451. {
  39452. name: "Continent Cracker",
  39453. height: math.unit(30e6, "feet")
  39454. },
  39455. {
  39456. name: "Earth Eclipsing",
  39457. height: math.unit(3e8, "feet")
  39458. },
  39459. {
  39460. name: "Gas Giant Gulper",
  39461. height: math.unit(3e9, "feet")
  39462. },
  39463. {
  39464. name: "Sol-Swallowing",
  39465. height: math.unit(1e11, "feet")
  39466. },
  39467. {
  39468. name: "System Swallower",
  39469. height: math.unit(3e14, "feet")
  39470. },
  39471. {
  39472. name: "Galaxy Gulper",
  39473. height: math.unit(10, "galaxies")
  39474. },
  39475. {
  39476. name: "Light Universal",
  39477. height: math.unit(5, "universes")
  39478. },
  39479. {
  39480. name: "Universe Palm",
  39481. height: math.unit(20, "universes")
  39482. },
  39483. {
  39484. name: "Light Multiversal",
  39485. height: math.unit(5, "multiverses")
  39486. },
  39487. {
  39488. name: "Multiverse Palm",
  39489. height: math.unit(20, "multiverses")
  39490. },
  39491. {
  39492. name: "Inferno Incarnate",
  39493. height: math.unit(1e7, "multiverses")
  39494. },
  39495. ]
  39496. ))
  39497. characterMakers.push(() => makeCharacter(
  39498. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39499. {
  39500. front: {
  39501. height: math.unit(8, "feet"),
  39502. weight: math.unit(1200, "lb"),
  39503. name: "Front",
  39504. image: {
  39505. source: "./media/characters/malithee/front.svg",
  39506. extra: 1675/1640,
  39507. bottom: 162/1837
  39508. }
  39509. },
  39510. },
  39511. [
  39512. {
  39513. name: "Mortal Interaction",
  39514. height: math.unit(8, "feet"),
  39515. default: true
  39516. },
  39517. {
  39518. name: "Large",
  39519. height: math.unit(24, "feet")
  39520. },
  39521. {
  39522. name: "Kaiju",
  39523. height: math.unit(240, "feet")
  39524. },
  39525. {
  39526. name: "Megamacro",
  39527. height: math.unit(8000, "feet")
  39528. },
  39529. {
  39530. name: "Continent Cracker",
  39531. height: math.unit(24e6, "feet")
  39532. },
  39533. {
  39534. name: "Earth-Eclipsing",
  39535. height: math.unit(2.4e8, "feet")
  39536. },
  39537. {
  39538. name: "Sol-Swallowing",
  39539. height: math.unit(8e10, "feet")
  39540. },
  39541. {
  39542. name: "Galaxy Gulper",
  39543. height: math.unit(8, "galaxies")
  39544. },
  39545. {
  39546. name: "Light Universal",
  39547. height: math.unit(4, "universes")
  39548. },
  39549. {
  39550. name: "Universe Atoms",
  39551. height: math.unit(1.829e9, "universes")
  39552. },
  39553. {
  39554. name: "Light Multiversal",
  39555. height: math.unit(4, "multiverses")
  39556. },
  39557. {
  39558. name: "Multiverse Atoms",
  39559. height: math.unit(1.829e9, "multiverses")
  39560. },
  39561. {
  39562. name: "Nigh-Omnipresence",
  39563. height: math.unit(8e261, "multiverses")
  39564. },
  39565. ]
  39566. ))
  39567. characterMakers.push(() => makeCharacter(
  39568. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39569. {
  39570. front: {
  39571. height: math.unit(10, "feet"),
  39572. weight: math.unit(1500, "lb"),
  39573. name: "Front",
  39574. image: {
  39575. source: "./media/characters/miles-thestia/front.svg",
  39576. extra: 1812/1727,
  39577. bottom: 86/1898
  39578. }
  39579. },
  39580. back: {
  39581. height: math.unit(10, "feet"),
  39582. weight: math.unit(1500, "lb"),
  39583. name: "Back",
  39584. image: {
  39585. source: "./media/characters/miles-thestia/back.svg",
  39586. extra: 1799/1690,
  39587. bottom: 47/1846
  39588. }
  39589. },
  39590. frontNsfw: {
  39591. height: math.unit(10, "feet"),
  39592. weight: math.unit(1500, "lb"),
  39593. name: "Front (NSFW)",
  39594. image: {
  39595. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39596. extra: 1812/1727,
  39597. bottom: 86/1898
  39598. }
  39599. },
  39600. },
  39601. [
  39602. {
  39603. name: "Mini-Macro",
  39604. height: math.unit(10, "feet"),
  39605. default: true
  39606. },
  39607. ]
  39608. ))
  39609. characterMakers.push(() => makeCharacter(
  39610. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39611. {
  39612. front: {
  39613. height: math.unit(25, "feet"),
  39614. name: "Front",
  39615. image: {
  39616. source: "./media/characters/titan-s-wulf/front.svg",
  39617. extra: 1560/1484,
  39618. bottom: 76/1636
  39619. }
  39620. },
  39621. },
  39622. [
  39623. {
  39624. name: "Smallest",
  39625. height: math.unit(25, "feet"),
  39626. default: true
  39627. },
  39628. {
  39629. name: "Normal",
  39630. height: math.unit(200, "feet")
  39631. },
  39632. {
  39633. name: "Macro",
  39634. height: math.unit(200000, "feet")
  39635. },
  39636. {
  39637. name: "Multiversal Original",
  39638. height: math.unit(10000, "multiverses")
  39639. },
  39640. ]
  39641. ))
  39642. characterMakers.push(() => makeCharacter(
  39643. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39644. {
  39645. front: {
  39646. height: math.unit(8, "feet"),
  39647. weight: math.unit(553, "lb"),
  39648. name: "Front",
  39649. image: {
  39650. source: "./media/characters/tawendeh/front.svg",
  39651. extra: 2365/2268,
  39652. bottom: 83/2448
  39653. }
  39654. },
  39655. frontClothed: {
  39656. height: math.unit(8, "feet"),
  39657. weight: math.unit(553, "lb"),
  39658. name: "Front (Clothed)",
  39659. image: {
  39660. source: "./media/characters/tawendeh/front-clothed.svg",
  39661. extra: 2365/2268,
  39662. bottom: 83/2448
  39663. }
  39664. },
  39665. back: {
  39666. height: math.unit(8, "feet"),
  39667. weight: math.unit(553, "lb"),
  39668. name: "Back",
  39669. image: {
  39670. source: "./media/characters/tawendeh/back.svg",
  39671. extra: 2397/2294,
  39672. bottom: 42/2439
  39673. }
  39674. },
  39675. },
  39676. [
  39677. {
  39678. name: "Mortal Interaction",
  39679. height: math.unit(8, "feet"),
  39680. default: true
  39681. },
  39682. {
  39683. name: "Giant",
  39684. height: math.unit(80, "feet")
  39685. },
  39686. {
  39687. name: "Macro",
  39688. height: math.unit(800, "feet")
  39689. },
  39690. {
  39691. name: "Megamacro",
  39692. height: math.unit(8000, "feet")
  39693. },
  39694. {
  39695. name: "City-Crushing",
  39696. height: math.unit(24000, "feet")
  39697. },
  39698. {
  39699. name: "Mountain-Mashing",
  39700. height: math.unit(80000, "feet")
  39701. },
  39702. {
  39703. name: "Nation Nemesis",
  39704. height: math.unit(8e6, "feet")
  39705. },
  39706. {
  39707. name: "Continent Cracker",
  39708. height: math.unit(24e6, "feet")
  39709. },
  39710. {
  39711. name: "Earth-Eclipsing",
  39712. height: math.unit(2.4e8, "feet")
  39713. },
  39714. {
  39715. name: "Gas Giant Gulper",
  39716. height: math.unit(2.4e9, "feet")
  39717. },
  39718. {
  39719. name: "Sol-Swallowing",
  39720. height: math.unit(8e10, "feet")
  39721. },
  39722. {
  39723. name: "Galaxy Gulper",
  39724. height: math.unit(8, "galaxies")
  39725. },
  39726. {
  39727. name: "Cosmos Churner",
  39728. height: math.unit(8, "universes")
  39729. },
  39730. {
  39731. name: "Omnipotent Otter",
  39732. height: math.unit(80, "universes")
  39733. },
  39734. ]
  39735. ))
  39736. characterMakers.push(() => makeCharacter(
  39737. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39738. {
  39739. front: {
  39740. height: math.unit(2.6, "meters"),
  39741. weight: math.unit(900, "kg"),
  39742. name: "Front",
  39743. image: {
  39744. source: "./media/characters/neesha/front.svg",
  39745. extra: 1803/1653,
  39746. bottom: 128/1931
  39747. }
  39748. },
  39749. },
  39750. [
  39751. {
  39752. name: "Normal",
  39753. height: math.unit(2.6, "meters"),
  39754. default: true
  39755. },
  39756. {
  39757. name: "Macro",
  39758. height: math.unit(50, "meters")
  39759. },
  39760. ]
  39761. ))
  39762. characterMakers.push(() => makeCharacter(
  39763. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39764. {
  39765. front: {
  39766. height: math.unit(5, "feet"),
  39767. weight: math.unit(185, "lb"),
  39768. name: "Front",
  39769. image: {
  39770. source: "./media/characters/kyera/front.svg",
  39771. extra: 1875/1790,
  39772. bottom: 96/1971
  39773. }
  39774. },
  39775. },
  39776. [
  39777. {
  39778. name: "Normal",
  39779. height: math.unit(5, "feet"),
  39780. default: true
  39781. },
  39782. ]
  39783. ))
  39784. characterMakers.push(() => makeCharacter(
  39785. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39786. {
  39787. front: {
  39788. height: math.unit(7 + 6/12, "feet"),
  39789. weight: math.unit(540, "lb"),
  39790. name: "Front",
  39791. image: {
  39792. source: "./media/characters/yuko/front.svg",
  39793. extra: 1282/1222,
  39794. bottom: 101/1383
  39795. }
  39796. },
  39797. frontClothed: {
  39798. height: math.unit(7 + 6/12, "feet"),
  39799. weight: math.unit(540, "lb"),
  39800. name: "Front (Clothed)",
  39801. image: {
  39802. source: "./media/characters/yuko/front-clothed.svg",
  39803. extra: 1282/1222,
  39804. bottom: 101/1383
  39805. }
  39806. },
  39807. },
  39808. [
  39809. {
  39810. name: "Normal",
  39811. height: math.unit(7 + 6/12, "feet"),
  39812. default: true
  39813. },
  39814. {
  39815. name: "Macro",
  39816. height: math.unit(26 + 9/12, "feet")
  39817. },
  39818. {
  39819. name: "Megamacro",
  39820. height: math.unit(300, "feet")
  39821. },
  39822. {
  39823. name: "Gigamacro",
  39824. height: math.unit(5000, "feet")
  39825. },
  39826. {
  39827. name: "Planetary",
  39828. height: math.unit(10000, "miles")
  39829. },
  39830. ]
  39831. ))
  39832. characterMakers.push(() => makeCharacter(
  39833. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39834. {
  39835. front: {
  39836. height: math.unit(8 + 2/12, "feet"),
  39837. weight: math.unit(600, "lb"),
  39838. name: "Front",
  39839. image: {
  39840. source: "./media/characters/deam-nitrel/front.svg",
  39841. extra: 1308/1234,
  39842. bottom: 125/1433
  39843. }
  39844. },
  39845. },
  39846. [
  39847. {
  39848. name: "Normal",
  39849. height: math.unit(8 + 2/12, "feet"),
  39850. default: true
  39851. },
  39852. ]
  39853. ))
  39854. characterMakers.push(() => makeCharacter(
  39855. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39856. {
  39857. front: {
  39858. height: math.unit(6.1, "feet"),
  39859. weight: math.unit(180, "lb"),
  39860. name: "Front",
  39861. image: {
  39862. source: "./media/characters/skyress/front.svg",
  39863. extra: 1045/915,
  39864. bottom: 28/1073
  39865. }
  39866. },
  39867. maw: {
  39868. height: math.unit(1, "feet"),
  39869. name: "Maw",
  39870. image: {
  39871. source: "./media/characters/skyress/maw.svg"
  39872. }
  39873. },
  39874. },
  39875. [
  39876. {
  39877. name: "Normal",
  39878. height: math.unit(6.1, "feet"),
  39879. default: true
  39880. },
  39881. {
  39882. name: "Macro",
  39883. height: math.unit(200, "feet")
  39884. },
  39885. ]
  39886. ))
  39887. characterMakers.push(() => makeCharacter(
  39888. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39889. {
  39890. front: {
  39891. height: math.unit(4 + 2/12, "feet"),
  39892. weight: math.unit(40, "kg"),
  39893. name: "Front",
  39894. image: {
  39895. source: "./media/characters/amethyst-jones/front.svg",
  39896. extra: 1220/1150,
  39897. bottom: 101/1321
  39898. }
  39899. },
  39900. },
  39901. [
  39902. {
  39903. name: "Normal",
  39904. height: math.unit(4 + 2/12, "feet"),
  39905. default: true
  39906. },
  39907. ]
  39908. ))
  39909. characterMakers.push(() => makeCharacter(
  39910. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39911. {
  39912. front: {
  39913. height: math.unit(1.7, "m"),
  39914. weight: math.unit(135, "lb"),
  39915. name: "Front",
  39916. image: {
  39917. source: "./media/characters/jade/front.svg",
  39918. extra: 1818/1767,
  39919. bottom: 32/1850
  39920. }
  39921. },
  39922. back: {
  39923. height: math.unit(1.7, "m"),
  39924. weight: math.unit(135, "lb"),
  39925. name: "Back",
  39926. image: {
  39927. source: "./media/characters/jade/back.svg",
  39928. extra: 1869/1809,
  39929. bottom: 35/1904
  39930. }
  39931. },
  39932. hand: {
  39933. height: math.unit(0.24, "m"),
  39934. name: "Hand",
  39935. image: {
  39936. source: "./media/characters/jade/hand.svg"
  39937. }
  39938. },
  39939. foot: {
  39940. height: math.unit(0.263, "m"),
  39941. name: "Foot",
  39942. image: {
  39943. source: "./media/characters/jade/foot.svg"
  39944. }
  39945. },
  39946. dick: {
  39947. height: math.unit(0.47, "m"),
  39948. name: "Dick",
  39949. image: {
  39950. source: "./media/characters/jade/dick.svg"
  39951. }
  39952. },
  39953. },
  39954. [
  39955. {
  39956. name: "Micro",
  39957. height: math.unit(22, "cm")
  39958. },
  39959. {
  39960. name: "Normal",
  39961. height: math.unit(1.7, "m"),
  39962. default: true
  39963. },
  39964. {
  39965. name: "Macro",
  39966. height: math.unit(152, "m")
  39967. },
  39968. ]
  39969. ))
  39970. characterMakers.push(() => makeCharacter(
  39971. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39972. {
  39973. front: {
  39974. height: math.unit(100, "miles"),
  39975. weight: math.unit(20000, "tons"),
  39976. name: "Front",
  39977. image: {
  39978. source: "./media/characters/cookie/front.svg",
  39979. extra: 1125/1070,
  39980. bottom: 30/1155
  39981. }
  39982. },
  39983. },
  39984. [
  39985. {
  39986. name: "Big",
  39987. height: math.unit(50, "feet")
  39988. },
  39989. {
  39990. name: "Macro",
  39991. height: math.unit(100, "miles"),
  39992. default: true
  39993. },
  39994. {
  39995. name: "Megamacro",
  39996. height: math.unit(90000, "miles")
  39997. },
  39998. ]
  39999. ))
  40000. characterMakers.push(() => makeCharacter(
  40001. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40002. {
  40003. front: {
  40004. height: math.unit(6, "feet"),
  40005. weight: math.unit(145, "lb"),
  40006. name: "Front",
  40007. image: {
  40008. source: "./media/characters/farzian/front.svg",
  40009. extra: 1902/1693,
  40010. bottom: 108/2010
  40011. }
  40012. },
  40013. },
  40014. [
  40015. {
  40016. name: "Macro",
  40017. height: math.unit(500, "feet"),
  40018. default: true
  40019. },
  40020. ]
  40021. ))
  40022. characterMakers.push(() => makeCharacter(
  40023. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40024. {
  40025. front: {
  40026. height: math.unit(3 + 6/12, "feet"),
  40027. weight: math.unit(50, "lb"),
  40028. name: "Front",
  40029. image: {
  40030. source: "./media/characters/kimberly-tilson/front.svg",
  40031. extra: 1400/1322,
  40032. bottom: 36/1436
  40033. }
  40034. },
  40035. back: {
  40036. height: math.unit(3 + 6/12, "feet"),
  40037. weight: math.unit(50, "lb"),
  40038. name: "Back",
  40039. image: {
  40040. source: "./media/characters/kimberly-tilson/back.svg",
  40041. extra: 1370/1307,
  40042. bottom: 20/1390
  40043. }
  40044. },
  40045. },
  40046. [
  40047. {
  40048. name: "Normal",
  40049. height: math.unit(3 + 6/12, "feet"),
  40050. default: true
  40051. },
  40052. ]
  40053. ))
  40054. characterMakers.push(() => makeCharacter(
  40055. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40056. {
  40057. front: {
  40058. height: math.unit(1148, "feet"),
  40059. weight: math.unit(34057, "lb"),
  40060. name: "Front",
  40061. image: {
  40062. source: "./media/characters/harthos/front.svg",
  40063. extra: 1391/1339,
  40064. bottom: 13/1404
  40065. }
  40066. },
  40067. },
  40068. [
  40069. {
  40070. name: "Macro",
  40071. height: math.unit(1148, "feet"),
  40072. default: true
  40073. },
  40074. ]
  40075. ))
  40076. characterMakers.push(() => makeCharacter(
  40077. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40078. {
  40079. front: {
  40080. height: math.unit(15, "feet"),
  40081. name: "Front",
  40082. image: {
  40083. source: "./media/characters/hypatia/front.svg",
  40084. extra: 1653/1591,
  40085. bottom: 79/1732
  40086. }
  40087. },
  40088. },
  40089. [
  40090. {
  40091. name: "Normal",
  40092. height: math.unit(15, "feet")
  40093. },
  40094. {
  40095. name: "Small",
  40096. height: math.unit(300, "feet")
  40097. },
  40098. {
  40099. name: "Macro",
  40100. height: math.unit(2500, "feet"),
  40101. default: true
  40102. },
  40103. {
  40104. name: "Mega Macro",
  40105. height: math.unit(1500, "miles")
  40106. },
  40107. {
  40108. name: "Giga Macro",
  40109. height: math.unit(1.5e6, "miles")
  40110. },
  40111. ]
  40112. ))
  40113. characterMakers.push(() => makeCharacter(
  40114. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40115. {
  40116. front: {
  40117. height: math.unit(6, "feet"),
  40118. weight: math.unit(200, "lb"),
  40119. name: "Front",
  40120. image: {
  40121. source: "./media/characters/wulver/front.svg",
  40122. extra: 1724/1632,
  40123. bottom: 130/1854
  40124. }
  40125. },
  40126. frontNsfw: {
  40127. height: math.unit(6, "feet"),
  40128. weight: math.unit(200, "lb"),
  40129. name: "Front (NSFW)",
  40130. image: {
  40131. source: "./media/characters/wulver/front-nsfw.svg",
  40132. extra: 1724/1632,
  40133. bottom: 130/1854
  40134. }
  40135. },
  40136. },
  40137. [
  40138. {
  40139. name: "Human-Sized",
  40140. height: math.unit(6, "feet")
  40141. },
  40142. {
  40143. name: "Normal",
  40144. height: math.unit(4, "meters"),
  40145. default: true
  40146. },
  40147. {
  40148. name: "Large",
  40149. height: math.unit(6, "m")
  40150. },
  40151. ]
  40152. ))
  40153. characterMakers.push(() => makeCharacter(
  40154. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40155. {
  40156. front: {
  40157. height: math.unit(7, "feet"),
  40158. name: "Front",
  40159. image: {
  40160. source: "./media/characters/maru/front.svg",
  40161. extra: 1595/1570,
  40162. bottom: 0/1595
  40163. }
  40164. },
  40165. },
  40166. [
  40167. {
  40168. name: "Normal",
  40169. height: math.unit(7, "feet"),
  40170. default: true
  40171. },
  40172. {
  40173. name: "Macro",
  40174. height: math.unit(700, "feet")
  40175. },
  40176. {
  40177. name: "Mega Macro",
  40178. height: math.unit(25, "miles")
  40179. },
  40180. ]
  40181. ))
  40182. characterMakers.push(() => makeCharacter(
  40183. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40184. {
  40185. front: {
  40186. height: math.unit(6, "feet"),
  40187. weight: math.unit(170, "lb"),
  40188. name: "Front",
  40189. image: {
  40190. source: "./media/characters/xenon/front.svg",
  40191. extra: 1376/1305,
  40192. bottom: 56/1432
  40193. }
  40194. },
  40195. back: {
  40196. height: math.unit(6, "feet"),
  40197. weight: math.unit(170, "lb"),
  40198. name: "Back",
  40199. image: {
  40200. source: "./media/characters/xenon/back.svg",
  40201. extra: 1328/1259,
  40202. bottom: 95/1423
  40203. }
  40204. },
  40205. maw: {
  40206. height: math.unit(0.52, "feet"),
  40207. name: "Maw",
  40208. image: {
  40209. source: "./media/characters/xenon/maw.svg"
  40210. }
  40211. },
  40212. hand: {
  40213. height: math.unit(0.82, "feet"),
  40214. name: "Hand",
  40215. image: {
  40216. source: "./media/characters/xenon/hand.svg"
  40217. }
  40218. },
  40219. foot: {
  40220. height: math.unit(1.13, "feet"),
  40221. name: "Foot",
  40222. image: {
  40223. source: "./media/characters/xenon/foot.svg"
  40224. }
  40225. },
  40226. },
  40227. [
  40228. {
  40229. name: "Micro",
  40230. height: math.unit(0.8, "inches")
  40231. },
  40232. {
  40233. name: "Normal",
  40234. height: math.unit(6, "feet")
  40235. },
  40236. {
  40237. name: "Macro",
  40238. height: math.unit(50, "feet"),
  40239. default: true
  40240. },
  40241. {
  40242. name: "Macro+",
  40243. height: math.unit(250, "feet")
  40244. },
  40245. {
  40246. name: "Megamacro",
  40247. height: math.unit(1500, "feet")
  40248. },
  40249. ]
  40250. ))
  40251. characterMakers.push(() => makeCharacter(
  40252. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40253. {
  40254. front: {
  40255. height: math.unit(7 + 5/12, "feet"),
  40256. name: "Front",
  40257. image: {
  40258. source: "./media/characters/zane/front.svg",
  40259. extra: 1260/1203,
  40260. bottom: 94/1354
  40261. }
  40262. },
  40263. back: {
  40264. height: math.unit(5.05, "feet"),
  40265. name: "Back",
  40266. image: {
  40267. source: "./media/characters/zane/back.svg",
  40268. extra: 893/829,
  40269. bottom: 30/923
  40270. }
  40271. },
  40272. werewolf: {
  40273. height: math.unit(11, "feet"),
  40274. name: "Werewolf",
  40275. image: {
  40276. source: "./media/characters/zane/werewolf.svg",
  40277. extra: 1383/1323,
  40278. bottom: 89/1472
  40279. }
  40280. },
  40281. foot: {
  40282. height: math.unit(1.46, "feet"),
  40283. name: "Foot",
  40284. image: {
  40285. source: "./media/characters/zane/foot.svg"
  40286. }
  40287. },
  40288. footFront: {
  40289. height: math.unit(0.784, "feet"),
  40290. name: "Foot (Front)",
  40291. image: {
  40292. source: "./media/characters/zane/foot-front.svg"
  40293. }
  40294. },
  40295. dick: {
  40296. height: math.unit(1.95, "feet"),
  40297. name: "Dick",
  40298. image: {
  40299. source: "./media/characters/zane/dick.svg"
  40300. }
  40301. },
  40302. dickWerewolf: {
  40303. height: math.unit(3.77, "feet"),
  40304. name: "Dick (Werewolf)",
  40305. image: {
  40306. source: "./media/characters/zane/dick.svg"
  40307. }
  40308. },
  40309. },
  40310. [
  40311. {
  40312. name: "Normal",
  40313. height: math.unit(7 + 5/12, "feet"),
  40314. default: true
  40315. },
  40316. ]
  40317. ))
  40318. characterMakers.push(() => makeCharacter(
  40319. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40320. {
  40321. front: {
  40322. height: math.unit(6 + 2/12, "feet"),
  40323. weight: math.unit(284, "lb"),
  40324. name: "Front",
  40325. image: {
  40326. source: "./media/characters/benni-desparque/front.svg",
  40327. extra: 1353/1126,
  40328. bottom: 69/1422
  40329. }
  40330. },
  40331. },
  40332. [
  40333. {
  40334. name: "Civilian",
  40335. height: math.unit(6 + 2/12, "feet")
  40336. },
  40337. {
  40338. name: "Normal",
  40339. height: math.unit(98, "feet"),
  40340. default: true
  40341. },
  40342. {
  40343. name: "Kaiju Fighter",
  40344. height: math.unit(268, "feet")
  40345. },
  40346. ]
  40347. ))
  40348. characterMakers.push(() => makeCharacter(
  40349. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40350. {
  40351. front: {
  40352. height: math.unit(5, "feet"),
  40353. weight: math.unit(105, "lb"),
  40354. name: "Front",
  40355. image: {
  40356. source: "./media/characters/maxine/front.svg",
  40357. extra: 1386/1250,
  40358. bottom: 71/1457
  40359. }
  40360. },
  40361. },
  40362. [
  40363. {
  40364. name: "Normal",
  40365. height: math.unit(5, "feet"),
  40366. default: true
  40367. },
  40368. ]
  40369. ))
  40370. characterMakers.push(() => makeCharacter(
  40371. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40372. {
  40373. front: {
  40374. height: math.unit(11 + 7/12, "feet"),
  40375. weight: math.unit(9576, "lb"),
  40376. name: "Front",
  40377. image: {
  40378. source: "./media/characters/scaly/front.svg",
  40379. extra: 888/867,
  40380. bottom: 36/924
  40381. }
  40382. },
  40383. },
  40384. [
  40385. {
  40386. name: "Normal",
  40387. height: math.unit(11 + 7/12, "feet"),
  40388. default: true
  40389. },
  40390. ]
  40391. ))
  40392. characterMakers.push(() => makeCharacter(
  40393. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40394. {
  40395. front: {
  40396. height: math.unit(6 + 3/12, "feet"),
  40397. name: "Front",
  40398. image: {
  40399. source: "./media/characters/saelria/front.svg",
  40400. extra: 1243/1138,
  40401. bottom: 46/1289
  40402. }
  40403. },
  40404. },
  40405. [
  40406. {
  40407. name: "Micro",
  40408. height: math.unit(6, "inches"),
  40409. },
  40410. {
  40411. name: "Normal",
  40412. height: math.unit(6 + 3/12, "feet"),
  40413. default: true
  40414. },
  40415. {
  40416. name: "Macro",
  40417. height: math.unit(25, "feet")
  40418. },
  40419. ]
  40420. ))
  40421. characterMakers.push(() => makeCharacter(
  40422. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40423. {
  40424. front: {
  40425. height: math.unit(80, "meters"),
  40426. weight: math.unit(7000, "tonnes"),
  40427. name: "Front",
  40428. image: {
  40429. source: "./media/characters/tef/front.svg",
  40430. extra: 2036/1991,
  40431. bottom: 54/2090
  40432. }
  40433. },
  40434. back: {
  40435. height: math.unit(80, "meters"),
  40436. weight: math.unit(7000, "tonnes"),
  40437. name: "Back",
  40438. image: {
  40439. source: "./media/characters/tef/back.svg",
  40440. extra: 2036/1991,
  40441. bottom: 54/2090
  40442. }
  40443. },
  40444. },
  40445. [
  40446. {
  40447. name: "Macro",
  40448. height: math.unit(80, "meters"),
  40449. default: true
  40450. },
  40451. ]
  40452. ))
  40453. characterMakers.push(() => makeCharacter(
  40454. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40455. {
  40456. front: {
  40457. height: math.unit(13, "feet"),
  40458. weight: math.unit(6, "tons"),
  40459. name: "Front",
  40460. image: {
  40461. source: "./media/characters/rover/front.svg",
  40462. extra: 1233/1156,
  40463. bottom: 50/1283
  40464. }
  40465. },
  40466. back: {
  40467. height: math.unit(13, "feet"),
  40468. weight: math.unit(6, "tons"),
  40469. name: "Back",
  40470. image: {
  40471. source: "./media/characters/rover/back.svg",
  40472. extra: 1327/1258,
  40473. bottom: 39/1366
  40474. }
  40475. },
  40476. },
  40477. [
  40478. {
  40479. name: "Normal",
  40480. height: math.unit(13, "feet"),
  40481. default: true
  40482. },
  40483. {
  40484. name: "Macro",
  40485. height: math.unit(1300, "feet")
  40486. },
  40487. {
  40488. name: "Megamacro",
  40489. height: math.unit(1300, "miles")
  40490. },
  40491. {
  40492. name: "Gigamacro",
  40493. height: math.unit(1300000, "miles")
  40494. },
  40495. ]
  40496. ))
  40497. characterMakers.push(() => makeCharacter(
  40498. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40499. {
  40500. front: {
  40501. height: math.unit(6, "feet"),
  40502. weight: math.unit(150, "lb"),
  40503. name: "Front",
  40504. image: {
  40505. source: "./media/characters/ariz/front.svg",
  40506. extra: 1401/1346,
  40507. bottom: 5/1406
  40508. }
  40509. },
  40510. },
  40511. [
  40512. {
  40513. name: "Normal",
  40514. height: math.unit(10, "feet"),
  40515. default: true
  40516. },
  40517. ]
  40518. ))
  40519. characterMakers.push(() => makeCharacter(
  40520. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40521. {
  40522. front: {
  40523. height: math.unit(6, "feet"),
  40524. weight: math.unit(140, "lb"),
  40525. name: "Front",
  40526. image: {
  40527. source: "./media/characters/sigrun/front.svg",
  40528. extra: 1418/1359,
  40529. bottom: 27/1445
  40530. }
  40531. },
  40532. },
  40533. [
  40534. {
  40535. name: "Macro",
  40536. height: math.unit(35, "feet"),
  40537. default: true
  40538. },
  40539. ]
  40540. ))
  40541. characterMakers.push(() => makeCharacter(
  40542. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40543. {
  40544. front: {
  40545. height: math.unit(6, "feet"),
  40546. weight: math.unit(150, "lb"),
  40547. name: "Front",
  40548. image: {
  40549. source: "./media/characters/numin/front.svg",
  40550. extra: 1433/1388,
  40551. bottom: 12/1445
  40552. }
  40553. },
  40554. },
  40555. [
  40556. {
  40557. name: "Macro",
  40558. height: math.unit(21.5, "km"),
  40559. default: true
  40560. },
  40561. ]
  40562. ))
  40563. characterMakers.push(() => makeCharacter(
  40564. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40565. {
  40566. front: {
  40567. height: math.unit(6, "feet"),
  40568. weight: math.unit(463, "lb"),
  40569. name: "Front",
  40570. image: {
  40571. source: "./media/characters/melwa/front.svg",
  40572. extra: 1307/1248,
  40573. bottom: 93/1400
  40574. }
  40575. },
  40576. },
  40577. [
  40578. {
  40579. name: "Macro",
  40580. height: math.unit(50, "meters"),
  40581. default: true
  40582. },
  40583. ]
  40584. ))
  40585. characterMakers.push(() => makeCharacter(
  40586. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40587. {
  40588. front: {
  40589. height: math.unit(325, "feet"),
  40590. name: "Front",
  40591. image: {
  40592. source: "./media/characters/zorkaiju/front.svg",
  40593. extra: 1955/1814,
  40594. bottom: 40/1995
  40595. }
  40596. },
  40597. frontExtended: {
  40598. height: math.unit(325, "feet"),
  40599. name: "Front (Extended)",
  40600. image: {
  40601. source: "./media/characters/zorkaiju/front-extended.svg",
  40602. extra: 1955/1814,
  40603. bottom: 40/1995
  40604. }
  40605. },
  40606. side: {
  40607. height: math.unit(325, "feet"),
  40608. name: "Side",
  40609. image: {
  40610. source: "./media/characters/zorkaiju/side.svg",
  40611. extra: 1495/1396,
  40612. bottom: 17/1512
  40613. }
  40614. },
  40615. sideExtended: {
  40616. height: math.unit(325, "feet"),
  40617. name: "Side (Extended)",
  40618. image: {
  40619. source: "./media/characters/zorkaiju/side-extended.svg",
  40620. extra: 1495/1396,
  40621. bottom: 17/1512
  40622. }
  40623. },
  40624. back: {
  40625. height: math.unit(325, "feet"),
  40626. name: "Back",
  40627. image: {
  40628. source: "./media/characters/zorkaiju/back.svg",
  40629. extra: 1959/1821,
  40630. bottom: 31/1990
  40631. }
  40632. },
  40633. backExtended: {
  40634. height: math.unit(325, "feet"),
  40635. name: "Back (Extended)",
  40636. image: {
  40637. source: "./media/characters/zorkaiju/back-extended.svg",
  40638. extra: 1959/1821,
  40639. bottom: 31/1990
  40640. }
  40641. },
  40642. hand: {
  40643. height: math.unit(58.4, "feet"),
  40644. name: "Hand",
  40645. image: {
  40646. source: "./media/characters/zorkaiju/hand.svg"
  40647. }
  40648. },
  40649. handExtended: {
  40650. height: math.unit(61.4, "feet"),
  40651. name: "Hand (Extended)",
  40652. image: {
  40653. source: "./media/characters/zorkaiju/hand-extended.svg"
  40654. }
  40655. },
  40656. foot: {
  40657. height: math.unit(95, "feet"),
  40658. name: "Foot",
  40659. image: {
  40660. source: "./media/characters/zorkaiju/foot.svg"
  40661. }
  40662. },
  40663. leftArm: {
  40664. height: math.unit(59, "feet"),
  40665. name: "Left Arm",
  40666. image: {
  40667. source: "./media/characters/zorkaiju/left-arm.svg"
  40668. }
  40669. },
  40670. rightArm: {
  40671. height: math.unit(59, "feet"),
  40672. name: "Right Arm",
  40673. image: {
  40674. source: "./media/characters/zorkaiju/right-arm.svg"
  40675. }
  40676. },
  40677. tail: {
  40678. height: math.unit(104, "feet"),
  40679. name: "Tail",
  40680. image: {
  40681. source: "./media/characters/zorkaiju/tail.svg"
  40682. }
  40683. },
  40684. tailExtended: {
  40685. height: math.unit(104, "feet"),
  40686. name: "Tail (Extended)",
  40687. image: {
  40688. source: "./media/characters/zorkaiju/tail-extended.svg"
  40689. }
  40690. },
  40691. tailBottom: {
  40692. height: math.unit(104, "feet"),
  40693. name: "Tail Bottom",
  40694. image: {
  40695. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40696. }
  40697. },
  40698. crystal: {
  40699. height: math.unit(27.54, "feet"),
  40700. name: "Crystal",
  40701. image: {
  40702. source: "./media/characters/zorkaiju/crystal.svg"
  40703. }
  40704. },
  40705. },
  40706. [
  40707. {
  40708. name: "Kaiju",
  40709. height: math.unit(325, "feet"),
  40710. default: true
  40711. },
  40712. ]
  40713. ))
  40714. characterMakers.push(() => makeCharacter(
  40715. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40716. {
  40717. front: {
  40718. height: math.unit(6 + 1/12, "feet"),
  40719. weight: math.unit(115, "lb"),
  40720. name: "Front",
  40721. image: {
  40722. source: "./media/characters/bailey-belfry/front.svg",
  40723. extra: 1240/1121,
  40724. bottom: 101/1341
  40725. }
  40726. },
  40727. },
  40728. [
  40729. {
  40730. name: "Normal",
  40731. height: math.unit(6 + 1/12, "feet"),
  40732. default: true
  40733. },
  40734. ]
  40735. ))
  40736. characterMakers.push(() => makeCharacter(
  40737. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40738. {
  40739. side: {
  40740. height: math.unit(4, "meters"),
  40741. weight: math.unit(250, "kg"),
  40742. name: "Side",
  40743. image: {
  40744. source: "./media/characters/blacky/side.svg",
  40745. extra: 1027/919,
  40746. bottom: 43/1070
  40747. }
  40748. },
  40749. maw: {
  40750. height: math.unit(1, "meters"),
  40751. name: "Maw",
  40752. image: {
  40753. source: "./media/characters/blacky/maw.svg"
  40754. }
  40755. },
  40756. paw: {
  40757. height: math.unit(1, "meters"),
  40758. name: "Paw",
  40759. image: {
  40760. source: "./media/characters/blacky/paw.svg"
  40761. }
  40762. },
  40763. },
  40764. [
  40765. {
  40766. name: "Normal",
  40767. height: math.unit(4, "meters"),
  40768. default: true
  40769. },
  40770. ]
  40771. ))
  40772. characterMakers.push(() => makeCharacter(
  40773. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40774. {
  40775. front: {
  40776. height: math.unit(170, "cm"),
  40777. weight: math.unit(66, "kg"),
  40778. name: "Front",
  40779. image: {
  40780. source: "./media/characters/thux-ei/front.svg",
  40781. extra: 1109/1011,
  40782. bottom: 8/1117
  40783. }
  40784. },
  40785. },
  40786. [
  40787. {
  40788. name: "Normal",
  40789. height: math.unit(170, "cm"),
  40790. default: true
  40791. },
  40792. ]
  40793. ))
  40794. characterMakers.push(() => makeCharacter(
  40795. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40796. {
  40797. front: {
  40798. height: math.unit(5, "feet"),
  40799. weight: math.unit(120, "lb"),
  40800. name: "Front",
  40801. image: {
  40802. source: "./media/characters/roxanne-voltaire/front.svg",
  40803. extra: 1901/1779,
  40804. bottom: 53/1954
  40805. }
  40806. },
  40807. },
  40808. [
  40809. {
  40810. name: "Normal",
  40811. height: math.unit(5, "feet"),
  40812. default: true
  40813. },
  40814. {
  40815. name: "Giant",
  40816. height: math.unit(50, "feet")
  40817. },
  40818. {
  40819. name: "Titan",
  40820. height: math.unit(500, "feet")
  40821. },
  40822. {
  40823. name: "Macro",
  40824. height: math.unit(5000, "feet")
  40825. },
  40826. {
  40827. name: "Megamacro",
  40828. height: math.unit(50000, "feet")
  40829. },
  40830. {
  40831. name: "Gigamacro",
  40832. height: math.unit(500000, "feet")
  40833. },
  40834. {
  40835. name: "Teramacro",
  40836. height: math.unit(5e6, "feet")
  40837. },
  40838. ]
  40839. ))
  40840. characterMakers.push(() => makeCharacter(
  40841. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40842. {
  40843. front: {
  40844. height: math.unit(6 + 2/12, "feet"),
  40845. name: "Front",
  40846. image: {
  40847. source: "./media/characters/squeaks/front.svg",
  40848. extra: 1823/1768,
  40849. bottom: 138/1961
  40850. }
  40851. },
  40852. },
  40853. [
  40854. {
  40855. name: "Micro",
  40856. height: math.unit(0.5, "inches")
  40857. },
  40858. {
  40859. name: "Normal",
  40860. height: math.unit(6 + 2/12, "feet"),
  40861. default: true
  40862. },
  40863. {
  40864. name: "Macro",
  40865. height: math.unit(600, "feet")
  40866. },
  40867. ]
  40868. ))
  40869. characterMakers.push(() => makeCharacter(
  40870. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40871. {
  40872. front: {
  40873. height: math.unit(1.72, "meters"),
  40874. name: "Front",
  40875. image: {
  40876. source: "./media/characters/archinger/front.svg",
  40877. extra: 1861/1675,
  40878. bottom: 125/1986
  40879. }
  40880. },
  40881. back: {
  40882. height: math.unit(1.72, "meters"),
  40883. name: "Back",
  40884. image: {
  40885. source: "./media/characters/archinger/back.svg",
  40886. extra: 1844/1701,
  40887. bottom: 104/1948
  40888. }
  40889. },
  40890. cock: {
  40891. height: math.unit(0.59, "feet"),
  40892. name: "Cock",
  40893. image: {
  40894. source: "./media/characters/archinger/cock.svg"
  40895. }
  40896. },
  40897. },
  40898. [
  40899. {
  40900. name: "Normal",
  40901. height: math.unit(1.72, "meters"),
  40902. default: true
  40903. },
  40904. {
  40905. name: "Macro",
  40906. height: math.unit(84, "meters")
  40907. },
  40908. {
  40909. name: "Macro+",
  40910. height: math.unit(112, "meters")
  40911. },
  40912. {
  40913. name: "Macro++",
  40914. height: math.unit(960, "meters")
  40915. },
  40916. {
  40917. name: "Macro+++",
  40918. height: math.unit(4, "km")
  40919. },
  40920. {
  40921. name: "Macro++++",
  40922. height: math.unit(48, "km")
  40923. },
  40924. {
  40925. name: "Macro+++++",
  40926. height: math.unit(4500, "km")
  40927. },
  40928. ]
  40929. ))
  40930. characterMakers.push(() => makeCharacter(
  40931. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40932. {
  40933. front: {
  40934. height: math.unit(5 + 5/12, "feet"),
  40935. name: "Front",
  40936. image: {
  40937. source: "./media/characters/alsnapz/front.svg",
  40938. extra: 1157/1065,
  40939. bottom: 42/1199
  40940. }
  40941. },
  40942. },
  40943. [
  40944. {
  40945. name: "Normal",
  40946. height: math.unit(5 + 5/12, "feet"),
  40947. default: true
  40948. },
  40949. ]
  40950. ))
  40951. characterMakers.push(() => makeCharacter(
  40952. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40953. {
  40954. side: {
  40955. height: math.unit(3.2, "earths"),
  40956. name: "Side",
  40957. image: {
  40958. source: "./media/characters/mag/side.svg",
  40959. extra: 1331/1008,
  40960. bottom: 52/1383
  40961. }
  40962. },
  40963. wing: {
  40964. height: math.unit(1.94, "earths"),
  40965. name: "Wing",
  40966. image: {
  40967. source: "./media/characters/mag/wing.svg"
  40968. }
  40969. },
  40970. dick: {
  40971. height: math.unit(1.8, "earths"),
  40972. name: "Dick",
  40973. image: {
  40974. source: "./media/characters/mag/dick.svg"
  40975. }
  40976. },
  40977. ass: {
  40978. height: math.unit(1.33, "earths"),
  40979. name: "Ass",
  40980. image: {
  40981. source: "./media/characters/mag/ass.svg"
  40982. }
  40983. },
  40984. head: {
  40985. height: math.unit(1.1, "earths"),
  40986. name: "Head",
  40987. image: {
  40988. source: "./media/characters/mag/head.svg"
  40989. }
  40990. },
  40991. maw: {
  40992. height: math.unit(1.62, "earths"),
  40993. name: "Maw",
  40994. image: {
  40995. source: "./media/characters/mag/maw.svg"
  40996. }
  40997. },
  40998. },
  40999. [
  41000. {
  41001. name: "Small",
  41002. height: math.unit(162, "feet")
  41003. },
  41004. {
  41005. name: "Normal",
  41006. height: math.unit(3.2, "earths"),
  41007. default: true
  41008. },
  41009. ]
  41010. ))
  41011. characterMakers.push(() => makeCharacter(
  41012. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41013. {
  41014. front: {
  41015. height: math.unit(512, "feet"),
  41016. weight: math.unit(63509, "tonnes"),
  41017. name: "Front",
  41018. image: {
  41019. source: "./media/characters/vorrel-harroc/front.svg",
  41020. extra: 1075/1063,
  41021. bottom: 62/1137
  41022. }
  41023. },
  41024. },
  41025. [
  41026. {
  41027. name: "Normal",
  41028. height: math.unit(10, "feet")
  41029. },
  41030. {
  41031. name: "Macro",
  41032. height: math.unit(512, "feet"),
  41033. default: true
  41034. },
  41035. {
  41036. name: "Megamacro",
  41037. height: math.unit(256, "miles")
  41038. },
  41039. {
  41040. name: "Gigamacro",
  41041. height: math.unit(4096, "miles")
  41042. },
  41043. ]
  41044. ))
  41045. characterMakers.push(() => makeCharacter(
  41046. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41047. {
  41048. side: {
  41049. height: math.unit(50, "feet"),
  41050. name: "Side",
  41051. image: {
  41052. source: "./media/characters/froimar/side.svg",
  41053. extra: 855/638,
  41054. bottom: 99/954
  41055. }
  41056. },
  41057. },
  41058. [
  41059. {
  41060. name: "Macro",
  41061. height: math.unit(50, "feet"),
  41062. default: true
  41063. },
  41064. ]
  41065. ))
  41066. characterMakers.push(() => makeCharacter(
  41067. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41068. {
  41069. front: {
  41070. height: math.unit(210, "miles"),
  41071. name: "Front",
  41072. image: {
  41073. source: "./media/characters/timothy/front.svg",
  41074. extra: 1007/943,
  41075. bottom: 62/1069
  41076. }
  41077. },
  41078. frontSkirt: {
  41079. height: math.unit(210, "miles"),
  41080. name: "Front (Skirt)",
  41081. image: {
  41082. source: "./media/characters/timothy/front-skirt.svg",
  41083. extra: 1007/943,
  41084. bottom: 62/1069
  41085. }
  41086. },
  41087. frontCoat: {
  41088. height: math.unit(210, "miles"),
  41089. name: "Front (Coat)",
  41090. image: {
  41091. source: "./media/characters/timothy/front-coat.svg",
  41092. extra: 1007/943,
  41093. bottom: 62/1069
  41094. }
  41095. },
  41096. },
  41097. [
  41098. {
  41099. name: "Macro",
  41100. height: math.unit(210, "miles"),
  41101. default: true
  41102. },
  41103. {
  41104. name: "Megamacro",
  41105. height: math.unit(210000, "miles")
  41106. },
  41107. ]
  41108. ))
  41109. characterMakers.push(() => makeCharacter(
  41110. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41111. {
  41112. front: {
  41113. height: math.unit(188, "feet"),
  41114. name: "Front",
  41115. image: {
  41116. source: "./media/characters/pyotr/front.svg",
  41117. extra: 1912/1826,
  41118. bottom: 18/1930
  41119. }
  41120. },
  41121. },
  41122. [
  41123. {
  41124. name: "Macro",
  41125. height: math.unit(188, "feet"),
  41126. default: true
  41127. },
  41128. {
  41129. name: "Megamacro",
  41130. height: math.unit(8, "miles")
  41131. },
  41132. ]
  41133. ))
  41134. characterMakers.push(() => makeCharacter(
  41135. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41136. {
  41137. side: {
  41138. height: math.unit(10, "feet"),
  41139. weight: math.unit(4500, "lb"),
  41140. name: "Side",
  41141. image: {
  41142. source: "./media/characters/ackart/side.svg",
  41143. extra: 1776/1668,
  41144. bottom: 116/1892
  41145. }
  41146. },
  41147. },
  41148. [
  41149. {
  41150. name: "Normal",
  41151. height: math.unit(10, "feet"),
  41152. default: true
  41153. },
  41154. ]
  41155. ))
  41156. characterMakers.push(() => makeCharacter(
  41157. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41158. {
  41159. side: {
  41160. height: math.unit(21, "feet"),
  41161. name: "Side",
  41162. image: {
  41163. source: "./media/characters/nolow/side.svg",
  41164. extra: 1484/1434,
  41165. bottom: 85/1569
  41166. }
  41167. },
  41168. sideErect: {
  41169. height: math.unit(21, "feet"),
  41170. name: "Side-erect",
  41171. image: {
  41172. source: "./media/characters/nolow/side-erect.svg",
  41173. extra: 1484/1434,
  41174. bottom: 85/1569
  41175. }
  41176. },
  41177. },
  41178. [
  41179. {
  41180. name: "Regular",
  41181. height: math.unit(12, "feet")
  41182. },
  41183. {
  41184. name: "Big Chee",
  41185. height: math.unit(21, "feet"),
  41186. default: true
  41187. },
  41188. ]
  41189. ))
  41190. characterMakers.push(() => makeCharacter(
  41191. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41192. {
  41193. front: {
  41194. height: math.unit(7, "feet"),
  41195. weight: math.unit(250, "lb"),
  41196. name: "Front",
  41197. image: {
  41198. source: "./media/characters/nines/front.svg",
  41199. extra: 1741/1607,
  41200. bottom: 41/1782
  41201. }
  41202. },
  41203. side: {
  41204. height: math.unit(7, "feet"),
  41205. weight: math.unit(250, "lb"),
  41206. name: "Side",
  41207. image: {
  41208. source: "./media/characters/nines/side.svg",
  41209. extra: 1854/1735,
  41210. bottom: 93/1947
  41211. }
  41212. },
  41213. back: {
  41214. height: math.unit(7, "feet"),
  41215. weight: math.unit(250, "lb"),
  41216. name: "Back",
  41217. image: {
  41218. source: "./media/characters/nines/back.svg",
  41219. extra: 1748/1615,
  41220. bottom: 20/1768
  41221. }
  41222. },
  41223. },
  41224. [
  41225. {
  41226. name: "Megamacro",
  41227. height: math.unit(99, "km"),
  41228. default: true
  41229. },
  41230. ]
  41231. ))
  41232. characterMakers.push(() => makeCharacter(
  41233. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41234. {
  41235. front: {
  41236. height: math.unit(5 + 10/12, "feet"),
  41237. weight: math.unit(210, "lb"),
  41238. name: "Front",
  41239. image: {
  41240. source: "./media/characters/zenith/front.svg",
  41241. extra: 1531/1452,
  41242. bottom: 198/1729
  41243. }
  41244. },
  41245. back: {
  41246. height: math.unit(5 + 10/12, "feet"),
  41247. weight: math.unit(210, "lb"),
  41248. name: "Back",
  41249. image: {
  41250. source: "./media/characters/zenith/back.svg",
  41251. extra: 1571/1487,
  41252. bottom: 75/1646
  41253. }
  41254. },
  41255. },
  41256. [
  41257. {
  41258. name: "Normal",
  41259. height: math.unit(5 + 10/12, "feet"),
  41260. default: true
  41261. }
  41262. ]
  41263. ))
  41264. characterMakers.push(() => makeCharacter(
  41265. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41266. {
  41267. front: {
  41268. height: math.unit(4, "feet"),
  41269. weight: math.unit(60, "lb"),
  41270. name: "Front",
  41271. image: {
  41272. source: "./media/characters/jasper/front.svg",
  41273. extra: 1450/1379,
  41274. bottom: 19/1469
  41275. }
  41276. },
  41277. },
  41278. [
  41279. {
  41280. name: "Normal",
  41281. height: math.unit(4, "feet"),
  41282. default: true
  41283. },
  41284. ]
  41285. ))
  41286. characterMakers.push(() => makeCharacter(
  41287. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41288. {
  41289. front: {
  41290. height: math.unit(6 + 5/12, "feet"),
  41291. weight: math.unit(290, "lb"),
  41292. name: "Front",
  41293. image: {
  41294. source: "./media/characters/tiberius-thyben/front.svg",
  41295. extra: 757/739,
  41296. bottom: 39/796
  41297. }
  41298. },
  41299. },
  41300. [
  41301. {
  41302. name: "Micro",
  41303. height: math.unit(1.5, "inches")
  41304. },
  41305. {
  41306. name: "Normal",
  41307. height: math.unit(6 + 5/12, "feet"),
  41308. default: true
  41309. },
  41310. {
  41311. name: "Macro",
  41312. height: math.unit(300, "feet")
  41313. },
  41314. ]
  41315. ))
  41316. characterMakers.push(() => makeCharacter(
  41317. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41318. {
  41319. front: {
  41320. height: math.unit(5 + 6/12, "feet"),
  41321. weight: math.unit(60, "kg"),
  41322. name: "Front",
  41323. image: {
  41324. source: "./media/characters/sabre/front.svg",
  41325. extra: 738/671,
  41326. bottom: 27/765
  41327. }
  41328. },
  41329. },
  41330. [
  41331. {
  41332. name: "Teeny",
  41333. height: math.unit(2, "inches")
  41334. },
  41335. {
  41336. name: "Smol",
  41337. height: math.unit(8, "inches")
  41338. },
  41339. {
  41340. name: "Normal",
  41341. height: math.unit(5 + 6/12, "feet"),
  41342. default: true
  41343. },
  41344. {
  41345. name: "Mini-Macro",
  41346. height: math.unit(15, "feet")
  41347. },
  41348. {
  41349. name: "Macro",
  41350. height: math.unit(50, "feet")
  41351. },
  41352. ]
  41353. ))
  41354. characterMakers.push(() => makeCharacter(
  41355. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41356. {
  41357. front: {
  41358. height: math.unit(6 + 4/12, "feet"),
  41359. weight: math.unit(170, "lb"),
  41360. name: "Front",
  41361. image: {
  41362. source: "./media/characters/charlie/front.svg",
  41363. extra: 1348/1228,
  41364. bottom: 15/1363
  41365. }
  41366. },
  41367. },
  41368. [
  41369. {
  41370. name: "Macro",
  41371. height: math.unit(1700, "meters"),
  41372. default: true
  41373. },
  41374. {
  41375. name: "MegaMacro",
  41376. height: math.unit(20400, "meters")
  41377. },
  41378. ]
  41379. ))
  41380. characterMakers.push(() => makeCharacter(
  41381. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41382. {
  41383. front: {
  41384. height: math.unit(6 + 3/12, "feet"),
  41385. weight: math.unit(185, "lb"),
  41386. name: "Front",
  41387. image: {
  41388. source: "./media/characters/susan-grant/front.svg",
  41389. extra: 1351/1327,
  41390. bottom: 26/1377
  41391. }
  41392. },
  41393. },
  41394. [
  41395. {
  41396. name: "Normal",
  41397. height: math.unit(6 + 3/12, "feet"),
  41398. default: true
  41399. },
  41400. {
  41401. name: "Macro",
  41402. height: math.unit(225, "feet")
  41403. },
  41404. {
  41405. name: "Macro+",
  41406. height: math.unit(900, "feet")
  41407. },
  41408. {
  41409. name: "MegaMacro",
  41410. height: math.unit(14400, "feet")
  41411. },
  41412. ]
  41413. ))
  41414. characterMakers.push(() => makeCharacter(
  41415. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41416. {
  41417. front: {
  41418. height: math.unit(5 + 4/12, "feet"),
  41419. weight: math.unit(110, "lb"),
  41420. name: "Front",
  41421. image: {
  41422. source: "./media/characters/axel-isanov/front.svg",
  41423. extra: 1096/1065,
  41424. bottom: 13/1109
  41425. }
  41426. },
  41427. },
  41428. [
  41429. {
  41430. name: "Normal",
  41431. height: math.unit(5 + 4/12, "feet"),
  41432. default: true
  41433. },
  41434. ]
  41435. ))
  41436. characterMakers.push(() => makeCharacter(
  41437. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41438. {
  41439. front: {
  41440. height: math.unit(9, "feet"),
  41441. weight: math.unit(467, "lb"),
  41442. name: "Front",
  41443. image: {
  41444. source: "./media/characters/necahual/front.svg",
  41445. extra: 920/873,
  41446. bottom: 26/946
  41447. }
  41448. },
  41449. back: {
  41450. height: math.unit(9, "feet"),
  41451. weight: math.unit(467, "lb"),
  41452. name: "Back",
  41453. image: {
  41454. source: "./media/characters/necahual/back.svg",
  41455. extra: 930/884,
  41456. bottom: 16/946
  41457. }
  41458. },
  41459. frontUnderwear: {
  41460. height: math.unit(9, "feet"),
  41461. weight: math.unit(467, "lb"),
  41462. name: "Front (Underwear)",
  41463. image: {
  41464. source: "./media/characters/necahual/front-underwear.svg",
  41465. extra: 920/873,
  41466. bottom: 26/946
  41467. }
  41468. },
  41469. frontDressed: {
  41470. height: math.unit(9, "feet"),
  41471. weight: math.unit(467, "lb"),
  41472. name: "Front (Dressed)",
  41473. image: {
  41474. source: "./media/characters/necahual/front-dressed.svg",
  41475. extra: 920/873,
  41476. bottom: 26/946
  41477. }
  41478. },
  41479. },
  41480. [
  41481. {
  41482. name: "Comprsesed",
  41483. height: math.unit(9, "feet")
  41484. },
  41485. {
  41486. name: "Natural",
  41487. height: math.unit(15, "feet"),
  41488. default: true
  41489. },
  41490. {
  41491. name: "Boosted",
  41492. height: math.unit(50, "feet")
  41493. },
  41494. {
  41495. name: "Boosted+",
  41496. height: math.unit(150, "feet")
  41497. },
  41498. {
  41499. name: "Max",
  41500. height: math.unit(500, "feet")
  41501. },
  41502. ]
  41503. ))
  41504. characterMakers.push(() => makeCharacter(
  41505. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41506. {
  41507. front: {
  41508. height: math.unit(22 + 1/12, "feet"),
  41509. weight: math.unit(3200, "lb"),
  41510. name: "Front",
  41511. image: {
  41512. source: "./media/characters/theo-acacia/front.svg",
  41513. extra: 1796/1741,
  41514. bottom: 83/1879
  41515. }
  41516. },
  41517. frontUnderwear: {
  41518. height: math.unit(22 + 1/12, "feet"),
  41519. weight: math.unit(3200, "lb"),
  41520. name: "Front (Underwear)",
  41521. image: {
  41522. source: "./media/characters/theo-acacia/front-underwear.svg",
  41523. extra: 1796/1741,
  41524. bottom: 83/1879
  41525. }
  41526. },
  41527. frontNude: {
  41528. height: math.unit(22 + 1/12, "feet"),
  41529. weight: math.unit(3200, "lb"),
  41530. name: "Front (Nude)",
  41531. image: {
  41532. source: "./media/characters/theo-acacia/front-nude.svg",
  41533. extra: 1796/1741,
  41534. bottom: 83/1879
  41535. }
  41536. },
  41537. },
  41538. [
  41539. {
  41540. name: "Normal",
  41541. height: math.unit(22 + 1/12, "feet"),
  41542. default: true
  41543. },
  41544. ]
  41545. ))
  41546. characterMakers.push(() => makeCharacter(
  41547. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41548. {
  41549. front: {
  41550. height: math.unit(20, "feet"),
  41551. name: "Front",
  41552. image: {
  41553. source: "./media/characters/astra/front.svg",
  41554. extra: 1850/1714,
  41555. bottom: 106/1956
  41556. }
  41557. },
  41558. frontUndressed: {
  41559. height: math.unit(20, "feet"),
  41560. name: "Front (Undressed)",
  41561. image: {
  41562. source: "./media/characters/astra/front-undressed.svg",
  41563. extra: 1926/1749,
  41564. bottom: 0/1926
  41565. }
  41566. },
  41567. hand: {
  41568. height: math.unit(1.53, "feet"),
  41569. name: "Hand",
  41570. image: {
  41571. source: "./media/characters/astra/hand.svg"
  41572. }
  41573. },
  41574. paw: {
  41575. height: math.unit(1.53, "feet"),
  41576. name: "Paw",
  41577. image: {
  41578. source: "./media/characters/astra/paw.svg"
  41579. }
  41580. },
  41581. },
  41582. [
  41583. {
  41584. name: "Smallest",
  41585. height: math.unit(20, "feet")
  41586. },
  41587. {
  41588. name: "Normal",
  41589. height: math.unit(1e9, "miles"),
  41590. default: true
  41591. },
  41592. {
  41593. name: "Larger",
  41594. height: math.unit(5, "multiverses")
  41595. },
  41596. {
  41597. name: "Largest",
  41598. height: math.unit(1e9, "multiverses")
  41599. },
  41600. ]
  41601. ))
  41602. characterMakers.push(() => makeCharacter(
  41603. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41604. {
  41605. front: {
  41606. height: math.unit(8, "feet"),
  41607. name: "Front",
  41608. image: {
  41609. source: "./media/characters/breanna/front.svg",
  41610. extra: 1912/1632,
  41611. bottom: 33/1945
  41612. }
  41613. },
  41614. },
  41615. [
  41616. {
  41617. name: "Smallest",
  41618. height: math.unit(8, "feet")
  41619. },
  41620. {
  41621. name: "Normal",
  41622. height: math.unit(1, "mile"),
  41623. default: true
  41624. },
  41625. {
  41626. name: "Maximum",
  41627. height: math.unit(1500000000000, "lightyears")
  41628. },
  41629. ]
  41630. ))
  41631. characterMakers.push(() => makeCharacter(
  41632. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41633. {
  41634. front: {
  41635. height: math.unit(5 + 11/12, "feet"),
  41636. weight: math.unit(155, "lb"),
  41637. name: "Front",
  41638. image: {
  41639. source: "./media/characters/cai/front.svg",
  41640. extra: 1823/1702,
  41641. bottom: 32/1855
  41642. }
  41643. },
  41644. back: {
  41645. height: math.unit(5 + 11/12, "feet"),
  41646. weight: math.unit(155, "lb"),
  41647. name: "Back",
  41648. image: {
  41649. source: "./media/characters/cai/back.svg",
  41650. extra: 1809/1708,
  41651. bottom: 31/1840
  41652. }
  41653. },
  41654. },
  41655. [
  41656. {
  41657. name: "Normal",
  41658. height: math.unit(5 + 11/12, "feet"),
  41659. default: true
  41660. },
  41661. {
  41662. name: "Big",
  41663. height: math.unit(15, "feet")
  41664. },
  41665. {
  41666. name: "Macro",
  41667. height: math.unit(200, "feet")
  41668. },
  41669. ]
  41670. ))
  41671. characterMakers.push(() => makeCharacter(
  41672. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41673. {
  41674. front: {
  41675. height: math.unit(5 + 6/12, "feet"),
  41676. weight: math.unit(160, "lb"),
  41677. name: "Front",
  41678. image: {
  41679. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41680. extra: 1227/1174,
  41681. bottom: 37/1264
  41682. }
  41683. },
  41684. },
  41685. [
  41686. {
  41687. name: "Macro",
  41688. height: math.unit(444, "meters"),
  41689. default: true
  41690. },
  41691. ]
  41692. ))
  41693. characterMakers.push(() => makeCharacter(
  41694. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41695. {
  41696. front: {
  41697. height: math.unit(18 + 7/12, "feet"),
  41698. name: "Front",
  41699. image: {
  41700. source: "./media/characters/rex/front.svg",
  41701. extra: 1941/1807,
  41702. bottom: 66/2007
  41703. }
  41704. },
  41705. back: {
  41706. height: math.unit(18 + 7/12, "feet"),
  41707. name: "Back",
  41708. image: {
  41709. source: "./media/characters/rex/back.svg",
  41710. extra: 1937/1822,
  41711. bottom: 42/1979
  41712. }
  41713. },
  41714. boot: {
  41715. height: math.unit(3.45, "feet"),
  41716. name: "Boot",
  41717. image: {
  41718. source: "./media/characters/rex/boot.svg"
  41719. }
  41720. },
  41721. paw: {
  41722. height: math.unit(4.17, "feet"),
  41723. name: "Paw",
  41724. image: {
  41725. source: "./media/characters/rex/paw.svg"
  41726. }
  41727. },
  41728. head: {
  41729. height: math.unit(6.728, "feet"),
  41730. name: "Head",
  41731. image: {
  41732. source: "./media/characters/rex/head.svg"
  41733. }
  41734. },
  41735. },
  41736. [
  41737. {
  41738. name: "Nano",
  41739. height: math.unit(18 + 7/12, "feet")
  41740. },
  41741. {
  41742. name: "Micro",
  41743. height: math.unit(1.5, "megameters")
  41744. },
  41745. {
  41746. name: "Normal",
  41747. height: math.unit(440, "megameters"),
  41748. default: true
  41749. },
  41750. {
  41751. name: "Macro",
  41752. height: math.unit(2.5, "gigameters")
  41753. },
  41754. {
  41755. name: "Gigamacro",
  41756. height: math.unit(2, "galaxies")
  41757. },
  41758. ]
  41759. ))
  41760. characterMakers.push(() => makeCharacter(
  41761. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41762. {
  41763. side: {
  41764. height: math.unit(32, "feet"),
  41765. weight: math.unit(250000, "lb"),
  41766. name: "Side",
  41767. image: {
  41768. source: "./media/characters/silverwing/side.svg",
  41769. extra: 1100/1019,
  41770. bottom: 204/1304
  41771. }
  41772. },
  41773. },
  41774. [
  41775. {
  41776. name: "Normal",
  41777. height: math.unit(32, "feet"),
  41778. default: true
  41779. },
  41780. ]
  41781. ))
  41782. characterMakers.push(() => makeCharacter(
  41783. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  41784. {
  41785. front: {
  41786. height: math.unit(6 + 6/12, "feet"),
  41787. weight: math.unit(350, "lb"),
  41788. name: "Front",
  41789. image: {
  41790. source: "./media/characters/tristan-hawthorne/front.svg",
  41791. extra: 1159/1124,
  41792. bottom: 37/1196
  41793. },
  41794. form: "labrador",
  41795. default: true
  41796. },
  41797. skunkFront: {
  41798. height: math.unit(4 + 6/12, "feet"),
  41799. weight: math.unit(120, "lb"),
  41800. name: "Front",
  41801. image: {
  41802. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  41803. extra: 1609/1551,
  41804. bottom: 169/1778
  41805. },
  41806. form: "skunk",
  41807. default: true
  41808. },
  41809. },
  41810. [
  41811. {
  41812. name: "Normal",
  41813. height: math.unit(6 + 6/12, "feet"),
  41814. form: "labrador",
  41815. default: true
  41816. },
  41817. {
  41818. name: "Normal",
  41819. height: math.unit(4 + 6/12, "feet"),
  41820. form: "skunk",
  41821. default: true
  41822. },
  41823. ],
  41824. {
  41825. "labrador": {
  41826. name: "Labrador",
  41827. default: true
  41828. },
  41829. "skunk": {
  41830. name: "Skunk"
  41831. }
  41832. }
  41833. ))
  41834. characterMakers.push(() => makeCharacter(
  41835. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41836. {
  41837. front: {
  41838. height: math.unit(5 + 11/12, "feet"),
  41839. weight: math.unit(190, "lb"),
  41840. name: "Front",
  41841. image: {
  41842. source: "./media/characters/mizu/front.svg",
  41843. extra: 1988/1788,
  41844. bottom: 14/2002
  41845. }
  41846. },
  41847. },
  41848. [
  41849. {
  41850. name: "Normal",
  41851. height: math.unit(5 + 11/12, "feet"),
  41852. default: true
  41853. },
  41854. ]
  41855. ))
  41856. characterMakers.push(() => makeCharacter(
  41857. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41858. {
  41859. front: {
  41860. height: math.unit(1.7, "feet"),
  41861. weight: math.unit(50, "lb"),
  41862. name: "Front",
  41863. image: {
  41864. source: "./media/characters/dechroma/front.svg",
  41865. extra: 1095/859,
  41866. bottom: 64/1159
  41867. }
  41868. },
  41869. },
  41870. [
  41871. {
  41872. name: "Normal",
  41873. height: math.unit(1.7, "feet"),
  41874. default: true
  41875. },
  41876. ]
  41877. ))
  41878. characterMakers.push(() => makeCharacter(
  41879. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41880. {
  41881. side: {
  41882. height: math.unit(30, "feet"),
  41883. name: "Side",
  41884. image: {
  41885. source: "./media/characters/veluren-thanazel/side.svg",
  41886. extra: 1611/633,
  41887. bottom: 118/1729
  41888. }
  41889. },
  41890. front: {
  41891. height: math.unit(30, "feet"),
  41892. name: "Front",
  41893. image: {
  41894. source: "./media/characters/veluren-thanazel/front.svg",
  41895. extra: 1486/636,
  41896. bottom: 238/1724
  41897. }
  41898. },
  41899. head: {
  41900. height: math.unit(21.4, "feet"),
  41901. name: "Head",
  41902. image: {
  41903. source: "./media/characters/veluren-thanazel/head.svg"
  41904. }
  41905. },
  41906. genitals: {
  41907. height: math.unit(19.4, "feet"),
  41908. name: "Genitals",
  41909. image: {
  41910. source: "./media/characters/veluren-thanazel/genitals.svg"
  41911. }
  41912. },
  41913. },
  41914. [
  41915. {
  41916. name: "Social",
  41917. height: math.unit(6, "feet")
  41918. },
  41919. {
  41920. name: "Play",
  41921. height: math.unit(12, "feet")
  41922. },
  41923. {
  41924. name: "True",
  41925. height: math.unit(30, "feet"),
  41926. default: true
  41927. },
  41928. ]
  41929. ))
  41930. characterMakers.push(() => makeCharacter(
  41931. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41932. {
  41933. front: {
  41934. height: math.unit(7 + 6/12, "feet"),
  41935. weight: math.unit(500, "kg"),
  41936. name: "Front",
  41937. image: {
  41938. source: "./media/characters/arcturas/front.svg",
  41939. extra: 1700/1500,
  41940. bottom: 145/1845
  41941. }
  41942. },
  41943. },
  41944. [
  41945. {
  41946. name: "Normal",
  41947. height: math.unit(7 + 6/12, "feet"),
  41948. default: true
  41949. },
  41950. ]
  41951. ))
  41952. characterMakers.push(() => makeCharacter(
  41953. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41954. {
  41955. side: {
  41956. height: math.unit(6, "feet"),
  41957. weight: math.unit(2, "tons"),
  41958. name: "Side",
  41959. image: {
  41960. source: "./media/characters/vitaen/side.svg",
  41961. extra: 1157/617,
  41962. bottom: 122/1279
  41963. }
  41964. },
  41965. },
  41966. [
  41967. {
  41968. name: "Normal",
  41969. height: math.unit(6, "feet"),
  41970. default: true
  41971. },
  41972. ]
  41973. ))
  41974. characterMakers.push(() => makeCharacter(
  41975. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41976. {
  41977. front: {
  41978. height: math.unit(19, "feet"),
  41979. name: "Front",
  41980. image: {
  41981. source: "./media/characters/fia-dreamweaver/front.svg",
  41982. extra: 1630/1504,
  41983. bottom: 25/1655
  41984. }
  41985. },
  41986. },
  41987. [
  41988. {
  41989. name: "Normal",
  41990. height: math.unit(19, "feet"),
  41991. default: true
  41992. },
  41993. ]
  41994. ))
  41995. characterMakers.push(() => makeCharacter(
  41996. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41997. {
  41998. front: {
  41999. height: math.unit(5 + 4/12, "feet"),
  42000. name: "Front",
  42001. image: {
  42002. source: "./media/characters/artan/front.svg",
  42003. extra: 1618/1535,
  42004. bottom: 46/1664
  42005. }
  42006. },
  42007. back: {
  42008. height: math.unit(5 + 4/12, "feet"),
  42009. name: "Back",
  42010. image: {
  42011. source: "./media/characters/artan/back.svg",
  42012. extra: 1618/1543,
  42013. bottom: 31/1649
  42014. }
  42015. },
  42016. },
  42017. [
  42018. {
  42019. name: "Normal",
  42020. height: math.unit(5 + 4/12, "feet"),
  42021. default: true
  42022. },
  42023. ]
  42024. ))
  42025. characterMakers.push(() => makeCharacter(
  42026. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42027. {
  42028. side: {
  42029. height: math.unit(182, "cm"),
  42030. weight: math.unit(1000, "lb"),
  42031. name: "Side",
  42032. image: {
  42033. source: "./media/characters/silver-dragon/side.svg",
  42034. extra: 710/287,
  42035. bottom: 88/798
  42036. }
  42037. },
  42038. },
  42039. [
  42040. {
  42041. name: "Normal",
  42042. height: math.unit(182, "cm"),
  42043. default: true
  42044. },
  42045. ]
  42046. ))
  42047. characterMakers.push(() => makeCharacter(
  42048. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42049. {
  42050. side: {
  42051. height: math.unit(6 + 6/12, "feet"),
  42052. weight: math.unit(1.5, "tons"),
  42053. name: "Side",
  42054. image: {
  42055. source: "./media/characters/zephyr/side.svg",
  42056. extra: 1433/586,
  42057. bottom: 109/1542
  42058. }
  42059. },
  42060. },
  42061. [
  42062. {
  42063. name: "Normal",
  42064. height: math.unit(6 + 6/12, "feet"),
  42065. default: true
  42066. },
  42067. ]
  42068. ))
  42069. characterMakers.push(() => makeCharacter(
  42070. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42071. {
  42072. side: {
  42073. height: math.unit(1, "feet"),
  42074. name: "Side",
  42075. image: {
  42076. source: "./media/characters/vixye/side.svg",
  42077. extra: 632/541,
  42078. bottom: 0/632
  42079. }
  42080. },
  42081. },
  42082. [
  42083. {
  42084. name: "Normal",
  42085. height: math.unit(1, "feet"),
  42086. default: true
  42087. },
  42088. {
  42089. name: "True",
  42090. height: math.unit(1e15, "multiverses")
  42091. },
  42092. ]
  42093. ))
  42094. characterMakers.push(() => makeCharacter(
  42095. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42096. {
  42097. front: {
  42098. height: math.unit(8 + 2/12, "feet"),
  42099. weight: math.unit(650, "lb"),
  42100. name: "Front",
  42101. image: {
  42102. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42103. extra: 1174/1137,
  42104. bottom: 82/1256
  42105. }
  42106. },
  42107. back: {
  42108. height: math.unit(8 + 2/12, "feet"),
  42109. weight: math.unit(650, "lb"),
  42110. name: "Back",
  42111. image: {
  42112. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42113. extra: 1204/1157,
  42114. bottom: 46/1250
  42115. }
  42116. },
  42117. },
  42118. [
  42119. {
  42120. name: "Wildform",
  42121. height: math.unit(8 + 2/12, "feet"),
  42122. default: true
  42123. },
  42124. ]
  42125. ))
  42126. characterMakers.push(() => makeCharacter(
  42127. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42128. {
  42129. front: {
  42130. height: math.unit(18, "feet"),
  42131. name: "Front",
  42132. image: {
  42133. source: "./media/characters/cyphin/front.svg",
  42134. extra: 970/886,
  42135. bottom: 42/1012
  42136. }
  42137. },
  42138. back: {
  42139. height: math.unit(18, "feet"),
  42140. name: "Back",
  42141. image: {
  42142. source: "./media/characters/cyphin/back.svg",
  42143. extra: 1009/894,
  42144. bottom: 24/1033
  42145. }
  42146. },
  42147. head: {
  42148. height: math.unit(5.05, "feet"),
  42149. name: "Head",
  42150. image: {
  42151. source: "./media/characters/cyphin/head.svg"
  42152. }
  42153. },
  42154. tailbud: {
  42155. height: math.unit(5, "feet"),
  42156. name: "Tailbud",
  42157. image: {
  42158. source: "./media/characters/cyphin/tailbud.svg"
  42159. }
  42160. },
  42161. },
  42162. [
  42163. ]
  42164. ))
  42165. characterMakers.push(() => makeCharacter(
  42166. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42167. {
  42168. side: {
  42169. height: math.unit(10, "feet"),
  42170. weight: math.unit(6, "tons"),
  42171. name: "Side",
  42172. image: {
  42173. source: "./media/characters/raijin/side.svg",
  42174. extra: 1529/613,
  42175. bottom: 337/1866
  42176. }
  42177. },
  42178. },
  42179. [
  42180. {
  42181. name: "Normal",
  42182. height: math.unit(10, "feet"),
  42183. default: true
  42184. },
  42185. ]
  42186. ))
  42187. characterMakers.push(() => makeCharacter(
  42188. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42189. {
  42190. side: {
  42191. height: math.unit(9, "feet"),
  42192. name: "Side",
  42193. image: {
  42194. source: "./media/characters/nilghais/side.svg",
  42195. extra: 1047/744,
  42196. bottom: 91/1138
  42197. }
  42198. },
  42199. head: {
  42200. height: math.unit(3.14, "feet"),
  42201. name: "Head",
  42202. image: {
  42203. source: "./media/characters/nilghais/head.svg"
  42204. }
  42205. },
  42206. mouth: {
  42207. height: math.unit(4.6, "feet"),
  42208. name: "Mouth",
  42209. image: {
  42210. source: "./media/characters/nilghais/mouth.svg"
  42211. }
  42212. },
  42213. wings: {
  42214. height: math.unit(24, "feet"),
  42215. name: "Wings",
  42216. image: {
  42217. source: "./media/characters/nilghais/wings.svg"
  42218. }
  42219. },
  42220. ass: {
  42221. height: math.unit(6.12, "feet"),
  42222. name: "Ass",
  42223. image: {
  42224. source: "./media/characters/nilghais/ass.svg"
  42225. }
  42226. },
  42227. },
  42228. [
  42229. {
  42230. name: "Normal",
  42231. height: math.unit(9, "feet"),
  42232. default: true
  42233. },
  42234. ]
  42235. ))
  42236. characterMakers.push(() => makeCharacter(
  42237. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42238. {
  42239. regular: {
  42240. height: math.unit(16 + 2/12, "feet"),
  42241. weight: math.unit(2300, "lb"),
  42242. name: "Regular",
  42243. image: {
  42244. source: "./media/characters/zolgar/regular.svg",
  42245. extra: 1246/1004,
  42246. bottom: 124/1370
  42247. }
  42248. },
  42249. boxers: {
  42250. height: math.unit(16 + 2/12, "feet"),
  42251. weight: math.unit(2300, "lb"),
  42252. name: "Boxers",
  42253. image: {
  42254. source: "./media/characters/zolgar/boxers.svg",
  42255. extra: 1246/1004,
  42256. bottom: 124/1370
  42257. }
  42258. },
  42259. armored: {
  42260. height: math.unit(16 + 2/12, "feet"),
  42261. weight: math.unit(2300, "lb"),
  42262. name: "Armored",
  42263. image: {
  42264. source: "./media/characters/zolgar/armored.svg",
  42265. extra: 1246/1004,
  42266. bottom: 124/1370
  42267. }
  42268. },
  42269. goth: {
  42270. height: math.unit(16 + 2/12, "feet"),
  42271. weight: math.unit(2300, "lb"),
  42272. name: "Goth",
  42273. image: {
  42274. source: "./media/characters/zolgar/goth.svg",
  42275. extra: 1246/1004,
  42276. bottom: 124/1370
  42277. }
  42278. },
  42279. },
  42280. [
  42281. {
  42282. name: "Shrunken Down",
  42283. height: math.unit(9 + 2/12, "feet")
  42284. },
  42285. {
  42286. name: "Normal",
  42287. height: math.unit(16 + 2/12, "feet"),
  42288. default: true
  42289. },
  42290. ]
  42291. ))
  42292. characterMakers.push(() => makeCharacter(
  42293. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42294. {
  42295. front: {
  42296. height: math.unit(6, "feet"),
  42297. weight: math.unit(168, "lb"),
  42298. name: "Front",
  42299. image: {
  42300. source: "./media/characters/luca/front.svg",
  42301. extra: 841/667,
  42302. bottom: 102/943
  42303. }
  42304. },
  42305. },
  42306. [
  42307. {
  42308. name: "Normal",
  42309. height: math.unit(6, "feet"),
  42310. default: true
  42311. },
  42312. ]
  42313. ))
  42314. characterMakers.push(() => makeCharacter(
  42315. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42316. {
  42317. side: {
  42318. height: math.unit(7 + 3/12, "feet"),
  42319. weight: math.unit(312, "lb"),
  42320. name: "Side",
  42321. image: {
  42322. source: "./media/characters/zezo/side.svg",
  42323. extra: 1192/1067,
  42324. bottom: 63/1255
  42325. }
  42326. },
  42327. },
  42328. [
  42329. {
  42330. name: "Normal",
  42331. height: math.unit(7 + 3/12, "feet"),
  42332. default: true
  42333. },
  42334. ]
  42335. ))
  42336. characterMakers.push(() => makeCharacter(
  42337. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42338. {
  42339. front: {
  42340. height: math.unit(5 + 5/12, "feet"),
  42341. weight: math.unit(170, "lb"),
  42342. name: "Front",
  42343. image: {
  42344. source: "./media/characters/mayso/front.svg",
  42345. extra: 1215/1108,
  42346. bottom: 16/1231
  42347. }
  42348. },
  42349. },
  42350. [
  42351. {
  42352. name: "Normal",
  42353. height: math.unit(5 + 5/12, "feet"),
  42354. default: true
  42355. },
  42356. ]
  42357. ))
  42358. characterMakers.push(() => makeCharacter(
  42359. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42360. {
  42361. front: {
  42362. height: math.unit(4 + 3/12, "feet"),
  42363. weight: math.unit(80, "lb"),
  42364. name: "Front",
  42365. image: {
  42366. source: "./media/characters/hess/front.svg",
  42367. extra: 1200/1123,
  42368. bottom: 16/1216
  42369. }
  42370. },
  42371. },
  42372. [
  42373. {
  42374. name: "Normal",
  42375. height: math.unit(4 + 3/12, "feet"),
  42376. default: true
  42377. },
  42378. ]
  42379. ))
  42380. characterMakers.push(() => makeCharacter(
  42381. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42382. {
  42383. front: {
  42384. height: math.unit(1.9, "meters"),
  42385. name: "Front",
  42386. image: {
  42387. source: "./media/characters/ashgar/front.svg",
  42388. extra: 1177/1146,
  42389. bottom: 99/1276
  42390. }
  42391. },
  42392. back: {
  42393. height: math.unit(1.9, "meters"),
  42394. name: "Back",
  42395. image: {
  42396. source: "./media/characters/ashgar/back.svg",
  42397. extra: 1201/1183,
  42398. bottom: 53/1254
  42399. }
  42400. },
  42401. feral: {
  42402. height: math.unit(1.4, "meters"),
  42403. name: "Feral",
  42404. image: {
  42405. source: "./media/characters/ashgar/feral.svg",
  42406. extra: 370/345,
  42407. bottom: 45/415
  42408. }
  42409. },
  42410. },
  42411. [
  42412. {
  42413. name: "Normal",
  42414. height: math.unit(1.9, "meters"),
  42415. default: true
  42416. },
  42417. ]
  42418. ))
  42419. characterMakers.push(() => makeCharacter(
  42420. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42421. {
  42422. regular: {
  42423. height: math.unit(6, "feet"),
  42424. weight: math.unit(220, "lb"),
  42425. name: "Regular",
  42426. image: {
  42427. source: "./media/characters/phillip/regular.svg",
  42428. extra: 1373/1277,
  42429. bottom: 75/1448
  42430. }
  42431. },
  42432. dressed: {
  42433. height: math.unit(6, "feet"),
  42434. weight: math.unit(220, "lb"),
  42435. name: "Dressed",
  42436. image: {
  42437. source: "./media/characters/phillip/dressed.svg",
  42438. extra: 1373/1277,
  42439. bottom: 75/1448
  42440. }
  42441. },
  42442. paw: {
  42443. height: math.unit(1.44, "feet"),
  42444. name: "Paw",
  42445. image: {
  42446. source: "./media/characters/phillip/paw.svg"
  42447. }
  42448. },
  42449. },
  42450. [
  42451. {
  42452. name: "Normal",
  42453. height: math.unit(6, "feet"),
  42454. default: true
  42455. },
  42456. ]
  42457. ))
  42458. characterMakers.push(() => makeCharacter(
  42459. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42460. {
  42461. side: {
  42462. height: math.unit(42, "feet"),
  42463. name: "Side",
  42464. image: {
  42465. source: "./media/characters/uvula/side.svg",
  42466. extra: 683/586,
  42467. bottom: 60/743
  42468. }
  42469. },
  42470. front: {
  42471. height: math.unit(42, "feet"),
  42472. name: "Front",
  42473. image: {
  42474. source: "./media/characters/uvula/front.svg",
  42475. extra: 705/613,
  42476. bottom: 54/759
  42477. }
  42478. },
  42479. maw: {
  42480. height: math.unit(23.5, "feet"),
  42481. name: "Maw",
  42482. image: {
  42483. source: "./media/characters/uvula/maw.svg"
  42484. }
  42485. },
  42486. },
  42487. [
  42488. {
  42489. name: "Original Size",
  42490. height: math.unit(14, "inches")
  42491. },
  42492. {
  42493. name: "Human Size",
  42494. height: math.unit(6, "feet")
  42495. },
  42496. {
  42497. name: "Big",
  42498. height: math.unit(42, "feet"),
  42499. default: true
  42500. },
  42501. {
  42502. name: "Bigger",
  42503. height: math.unit(100, "feet")
  42504. },
  42505. ]
  42506. ))
  42507. characterMakers.push(() => makeCharacter(
  42508. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42509. {
  42510. front: {
  42511. height: math.unit(5 + 11/12, "feet"),
  42512. name: "Front",
  42513. image: {
  42514. source: "./media/characters/lannah/front.svg",
  42515. extra: 1208/1113,
  42516. bottom: 97/1305
  42517. }
  42518. },
  42519. },
  42520. [
  42521. {
  42522. name: "Normal",
  42523. height: math.unit(5 + 11/12, "feet"),
  42524. default: true
  42525. },
  42526. ]
  42527. ))
  42528. characterMakers.push(() => makeCharacter(
  42529. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42530. {
  42531. front: {
  42532. height: math.unit(6 + 3/12, "feet"),
  42533. weight: math.unit(3.5, "tons"),
  42534. name: "Front",
  42535. image: {
  42536. source: "./media/characters/emberflame/front.svg",
  42537. extra: 1198/672,
  42538. bottom: 82/1280
  42539. }
  42540. },
  42541. side: {
  42542. height: math.unit(6 + 3/12, "feet"),
  42543. weight: math.unit(3.5, "tons"),
  42544. name: "Side",
  42545. image: {
  42546. source: "./media/characters/emberflame/side.svg",
  42547. extra: 938/527,
  42548. bottom: 56/994
  42549. }
  42550. },
  42551. },
  42552. [
  42553. {
  42554. name: "Normal",
  42555. height: math.unit(6 + 3/12, "feet"),
  42556. default: true
  42557. },
  42558. ]
  42559. ))
  42560. characterMakers.push(() => makeCharacter(
  42561. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42562. {
  42563. side: {
  42564. height: math.unit(17.5, "feet"),
  42565. weight: math.unit(35, "tons"),
  42566. name: "Side",
  42567. image: {
  42568. source: "./media/characters/sophie-ambrose/side.svg",
  42569. extra: 1573/1242,
  42570. bottom: 71/1644
  42571. }
  42572. },
  42573. maw: {
  42574. height: math.unit(7.4, "feet"),
  42575. name: "Maw",
  42576. image: {
  42577. source: "./media/characters/sophie-ambrose/maw.svg"
  42578. }
  42579. },
  42580. },
  42581. [
  42582. {
  42583. name: "Normal",
  42584. height: math.unit(17.5, "feet"),
  42585. default: true
  42586. },
  42587. ]
  42588. ))
  42589. characterMakers.push(() => makeCharacter(
  42590. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42591. {
  42592. front: {
  42593. height: math.unit(280, "feet"),
  42594. weight: math.unit(550, "tons"),
  42595. name: "Front",
  42596. image: {
  42597. source: "./media/characters/king-mugi/front.svg",
  42598. extra: 1102/947,
  42599. bottom: 104/1206
  42600. }
  42601. },
  42602. },
  42603. [
  42604. {
  42605. name: "King Mugi",
  42606. height: math.unit(280, "feet"),
  42607. default: true
  42608. },
  42609. ]
  42610. ))
  42611. characterMakers.push(() => makeCharacter(
  42612. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42613. {
  42614. front: {
  42615. height: math.unit(64, "meters"),
  42616. name: "Front",
  42617. image: {
  42618. source: "./media/characters/nova-fox/front.svg",
  42619. extra: 1310/1246,
  42620. bottom: 65/1375
  42621. }
  42622. },
  42623. },
  42624. [
  42625. {
  42626. name: "Macro",
  42627. height: math.unit(64, "meters"),
  42628. default: true
  42629. },
  42630. ]
  42631. ))
  42632. characterMakers.push(() => makeCharacter(
  42633. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42634. {
  42635. front: {
  42636. height: math.unit(6 + 3/12, "feet"),
  42637. weight: math.unit(170, "lb"),
  42638. name: "Front",
  42639. image: {
  42640. source: "./media/characters/sam-bat/front.svg",
  42641. extra: 1601/1411,
  42642. bottom: 125/1726
  42643. }
  42644. },
  42645. back: {
  42646. height: math.unit(6 + 3/12, "feet"),
  42647. weight: math.unit(170, "lb"),
  42648. name: "Back",
  42649. image: {
  42650. source: "./media/characters/sam-bat/back.svg",
  42651. extra: 1577/1405,
  42652. bottom: 58/1635
  42653. }
  42654. },
  42655. },
  42656. [
  42657. {
  42658. name: "Normal",
  42659. height: math.unit(6 + 3/12, "feet"),
  42660. default: true
  42661. },
  42662. ]
  42663. ))
  42664. characterMakers.push(() => makeCharacter(
  42665. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42666. {
  42667. front: {
  42668. height: math.unit(59, "feet"),
  42669. weight: math.unit(40000, "lb"),
  42670. name: "Front",
  42671. image: {
  42672. source: "./media/characters/inari/front.svg",
  42673. extra: 1884/1350,
  42674. bottom: 95/1979
  42675. }
  42676. },
  42677. },
  42678. [
  42679. {
  42680. name: "Gigantamax",
  42681. height: math.unit(59, "feet"),
  42682. default: true
  42683. },
  42684. ]
  42685. ))
  42686. characterMakers.push(() => makeCharacter(
  42687. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42688. {
  42689. front: {
  42690. height: math.unit(5 + 8/12, "feet"),
  42691. name: "Front",
  42692. image: {
  42693. source: "./media/characters/elizabeth/front.svg",
  42694. extra: 1395/1298,
  42695. bottom: 54/1449
  42696. }
  42697. },
  42698. mouth: {
  42699. height: math.unit(1.97, "feet"),
  42700. name: "Mouth",
  42701. image: {
  42702. source: "./media/characters/elizabeth/mouth.svg"
  42703. }
  42704. },
  42705. foot: {
  42706. height: math.unit(1.17, "feet"),
  42707. name: "Foot",
  42708. image: {
  42709. source: "./media/characters/elizabeth/foot.svg"
  42710. }
  42711. },
  42712. },
  42713. [
  42714. {
  42715. name: "Normal",
  42716. height: math.unit(5 + 8/12, "feet"),
  42717. default: true
  42718. },
  42719. {
  42720. name: "Minimacro",
  42721. height: math.unit(18, "feet")
  42722. },
  42723. {
  42724. name: "Macro",
  42725. height: math.unit(180, "feet")
  42726. },
  42727. ]
  42728. ))
  42729. characterMakers.push(() => makeCharacter(
  42730. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42731. {
  42732. front: {
  42733. height: math.unit(5 + 2/12, "feet"),
  42734. name: "Front",
  42735. image: {
  42736. source: "./media/characters/october-gossamer/front.svg",
  42737. extra: 505/454,
  42738. bottom: 7/512
  42739. }
  42740. },
  42741. back: {
  42742. height: math.unit(5 + 2/12, "feet"),
  42743. name: "Back",
  42744. image: {
  42745. source: "./media/characters/october-gossamer/back.svg",
  42746. extra: 501/454,
  42747. bottom: 11/512
  42748. }
  42749. },
  42750. },
  42751. [
  42752. {
  42753. name: "Normal",
  42754. height: math.unit(5 + 2/12, "feet"),
  42755. default: true
  42756. },
  42757. ]
  42758. ))
  42759. characterMakers.push(() => makeCharacter(
  42760. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42761. {
  42762. front: {
  42763. height: math.unit(5, "feet"),
  42764. name: "Front",
  42765. image: {
  42766. source: "./media/characters/epiglottis/front.svg",
  42767. extra: 923/849,
  42768. bottom: 17/940
  42769. }
  42770. },
  42771. },
  42772. [
  42773. {
  42774. name: "Original Size",
  42775. height: math.unit(10, "inches")
  42776. },
  42777. {
  42778. name: "Human Size",
  42779. height: math.unit(5, "feet"),
  42780. default: true
  42781. },
  42782. {
  42783. name: "Big",
  42784. height: math.unit(25, "feet")
  42785. },
  42786. {
  42787. name: "Bigger",
  42788. height: math.unit(50, "feet")
  42789. },
  42790. {
  42791. name: "oh lawd",
  42792. height: math.unit(75, "feet")
  42793. },
  42794. ]
  42795. ))
  42796. characterMakers.push(() => makeCharacter(
  42797. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42798. {
  42799. front: {
  42800. height: math.unit(2 + 4/12, "feet"),
  42801. weight: math.unit(60, "lb"),
  42802. name: "Front",
  42803. image: {
  42804. source: "./media/characters/lerm/front.svg",
  42805. extra: 796/790,
  42806. bottom: 79/875
  42807. }
  42808. },
  42809. },
  42810. [
  42811. {
  42812. name: "Normal",
  42813. height: math.unit(2 + 4/12, "feet"),
  42814. default: true
  42815. },
  42816. ]
  42817. ))
  42818. characterMakers.push(() => makeCharacter(
  42819. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42820. {
  42821. front: {
  42822. height: math.unit(5.5, "feet"),
  42823. weight: math.unit(130, "lb"),
  42824. name: "Front",
  42825. image: {
  42826. source: "./media/characters/xena-nebadon/front.svg",
  42827. extra: 1828/1730,
  42828. bottom: 79/1907
  42829. }
  42830. },
  42831. },
  42832. [
  42833. {
  42834. name: "Tiny Puppy",
  42835. height: math.unit(3, "inches")
  42836. },
  42837. {
  42838. name: "Normal",
  42839. height: math.unit(5.5, "feet"),
  42840. default: true
  42841. },
  42842. {
  42843. name: "Lotta Lady",
  42844. height: math.unit(12, "feet")
  42845. },
  42846. {
  42847. name: "Pretty Big",
  42848. height: math.unit(100, "feet")
  42849. },
  42850. {
  42851. name: "Big",
  42852. height: math.unit(500, "feet")
  42853. },
  42854. {
  42855. name: "Skyscraper Toys",
  42856. height: math.unit(2500, "feet")
  42857. },
  42858. {
  42859. name: "Plane Catcher",
  42860. height: math.unit(8, "miles")
  42861. },
  42862. {
  42863. name: "Planet Toys",
  42864. height: math.unit(15, "earths")
  42865. },
  42866. {
  42867. name: "Stardust",
  42868. height: math.unit(0.25, "galaxies")
  42869. },
  42870. {
  42871. name: "Snacks",
  42872. height: math.unit(70, "universes")
  42873. },
  42874. ]
  42875. ))
  42876. characterMakers.push(() => makeCharacter(
  42877. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42878. {
  42879. front: {
  42880. height: math.unit(1.6, "meters"),
  42881. weight: math.unit(60, "kg"),
  42882. name: "Front",
  42883. image: {
  42884. source: "./media/characters/bounty/front.svg",
  42885. extra: 1426/1308,
  42886. bottom: 15/1441
  42887. }
  42888. },
  42889. back: {
  42890. height: math.unit(1.6, "meters"),
  42891. weight: math.unit(60, "kg"),
  42892. name: "Back",
  42893. image: {
  42894. source: "./media/characters/bounty/back.svg",
  42895. extra: 1417/1307,
  42896. bottom: 8/1425
  42897. }
  42898. },
  42899. },
  42900. [
  42901. {
  42902. name: "Normal",
  42903. height: math.unit(1.6, "meters"),
  42904. default: true
  42905. },
  42906. {
  42907. name: "Macro",
  42908. height: math.unit(300, "meters")
  42909. },
  42910. ]
  42911. ))
  42912. characterMakers.push(() => makeCharacter(
  42913. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42914. {
  42915. front: {
  42916. height: math.unit(2 + 8/12, "feet"),
  42917. weight: math.unit(15, "lb"),
  42918. name: "Front",
  42919. image: {
  42920. source: "./media/characters/mochi/front.svg",
  42921. extra: 1022/852,
  42922. bottom: 435/1457
  42923. }
  42924. },
  42925. back: {
  42926. height: math.unit(2 + 8/12, "feet"),
  42927. weight: math.unit(15, "lb"),
  42928. name: "Back",
  42929. image: {
  42930. source: "./media/characters/mochi/back.svg",
  42931. extra: 1335/1119,
  42932. bottom: 39/1374
  42933. }
  42934. },
  42935. bird: {
  42936. height: math.unit(2 + 8/12, "feet"),
  42937. weight: math.unit(15, "lb"),
  42938. name: "Bird",
  42939. image: {
  42940. source: "./media/characters/mochi/bird.svg",
  42941. extra: 1251/1113,
  42942. bottom: 178/1429
  42943. }
  42944. },
  42945. kaiju: {
  42946. height: math.unit(154, "feet"),
  42947. weight: math.unit(1e7, "lb"),
  42948. name: "Kaiju",
  42949. image: {
  42950. source: "./media/characters/mochi/kaiju.svg",
  42951. extra: 460/324,
  42952. bottom: 40/500
  42953. }
  42954. },
  42955. head: {
  42956. height: math.unit(1.21, "feet"),
  42957. name: "Head",
  42958. image: {
  42959. source: "./media/characters/mochi/head.svg"
  42960. }
  42961. },
  42962. alternateTail: {
  42963. height: math.unit(2 + 8/12, "feet"),
  42964. weight: math.unit(45, "lb"),
  42965. name: "Alternate Tail",
  42966. image: {
  42967. source: "./media/characters/mochi/alternate-tail.svg",
  42968. extra: 139/76,
  42969. bottom: 45/184
  42970. }
  42971. },
  42972. },
  42973. [
  42974. {
  42975. name: "Micro",
  42976. height: math.unit(2, "inches")
  42977. },
  42978. {
  42979. name: "Normal",
  42980. height: math.unit(2 + 8/12, "feet"),
  42981. default: true
  42982. },
  42983. {
  42984. name: "Macro",
  42985. height: math.unit(106, "feet")
  42986. },
  42987. ]
  42988. ))
  42989. characterMakers.push(() => makeCharacter(
  42990. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42991. {
  42992. front: {
  42993. height: math.unit(5.67, "feet"),
  42994. weight: math.unit(135, "lb"),
  42995. name: "Front",
  42996. image: {
  42997. source: "./media/characters/sarel/front.svg",
  42998. extra: 865/788,
  42999. bottom: 97/962
  43000. }
  43001. },
  43002. back: {
  43003. height: math.unit(5.67, "feet"),
  43004. weight: math.unit(135, "lb"),
  43005. name: "Back",
  43006. image: {
  43007. source: "./media/characters/sarel/back.svg",
  43008. extra: 857/777,
  43009. bottom: 32/889
  43010. }
  43011. },
  43012. chozoan: {
  43013. height: math.unit(5.67, "feet"),
  43014. weight: math.unit(135, "lb"),
  43015. name: "Chozoan",
  43016. image: {
  43017. source: "./media/characters/sarel/chozoan.svg",
  43018. extra: 865/788,
  43019. bottom: 97/962
  43020. }
  43021. },
  43022. current: {
  43023. height: math.unit(5.67, "feet"),
  43024. weight: math.unit(135, "lb"),
  43025. name: "Current",
  43026. image: {
  43027. source: "./media/characters/sarel/current.svg",
  43028. extra: 865/788,
  43029. bottom: 97/962
  43030. }
  43031. },
  43032. head: {
  43033. height: math.unit(1.77, "feet"),
  43034. name: "Head",
  43035. image: {
  43036. source: "./media/characters/sarel/head.svg"
  43037. }
  43038. },
  43039. claws: {
  43040. height: math.unit(1.8, "feet"),
  43041. name: "Claws",
  43042. image: {
  43043. source: "./media/characters/sarel/claws.svg"
  43044. }
  43045. },
  43046. clawsAlt: {
  43047. height: math.unit(1.8, "feet"),
  43048. name: "Claws-alt",
  43049. image: {
  43050. source: "./media/characters/sarel/claws-alt.svg"
  43051. }
  43052. },
  43053. },
  43054. [
  43055. {
  43056. name: "Normal",
  43057. height: math.unit(5.67, "feet"),
  43058. default: true
  43059. },
  43060. ]
  43061. ))
  43062. characterMakers.push(() => makeCharacter(
  43063. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43064. {
  43065. front: {
  43066. height: math.unit(5500, "feet"),
  43067. name: "Front",
  43068. image: {
  43069. source: "./media/characters/alyonia/front.svg",
  43070. extra: 1200/1135,
  43071. bottom: 29/1229
  43072. }
  43073. },
  43074. back: {
  43075. height: math.unit(5500, "feet"),
  43076. name: "Back",
  43077. image: {
  43078. source: "./media/characters/alyonia/back.svg",
  43079. extra: 1205/1138,
  43080. bottom: 10/1215
  43081. }
  43082. },
  43083. },
  43084. [
  43085. {
  43086. name: "Small",
  43087. height: math.unit(10, "feet")
  43088. },
  43089. {
  43090. name: "Macro",
  43091. height: math.unit(500, "feet")
  43092. },
  43093. {
  43094. name: "Mega Macro",
  43095. height: math.unit(5500, "feet"),
  43096. default: true
  43097. },
  43098. {
  43099. name: "Mega Macro+",
  43100. height: math.unit(500000, "feet")
  43101. },
  43102. {
  43103. name: "Giga Macro",
  43104. height: math.unit(3000, "miles")
  43105. },
  43106. {
  43107. name: "Tera Macro",
  43108. height: math.unit(2.8e6, "miles")
  43109. },
  43110. {
  43111. name: "Galactic",
  43112. height: math.unit(120000, "lightyears")
  43113. },
  43114. ]
  43115. ))
  43116. characterMakers.push(() => makeCharacter(
  43117. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43118. {
  43119. werewolf: {
  43120. height: math.unit(8, "feet"),
  43121. weight: math.unit(425, "lb"),
  43122. name: "Werewolf",
  43123. image: {
  43124. source: "./media/characters/autumn/werewolf.svg",
  43125. extra: 2154/2031,
  43126. bottom: 160/2314
  43127. }
  43128. },
  43129. human: {
  43130. height: math.unit(5 + 8/12, "feet"),
  43131. weight: math.unit(150, "lb"),
  43132. name: "Human",
  43133. image: {
  43134. source: "./media/characters/autumn/human.svg",
  43135. extra: 1200/1149,
  43136. bottom: 30/1230
  43137. }
  43138. },
  43139. },
  43140. [
  43141. {
  43142. name: "Normal",
  43143. height: math.unit(8, "feet"),
  43144. default: true
  43145. },
  43146. ]
  43147. ))
  43148. characterMakers.push(() => makeCharacter(
  43149. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43150. {
  43151. front: {
  43152. height: math.unit(8 + 5/12, "feet"),
  43153. weight: math.unit(825, "lb"),
  43154. name: "Front",
  43155. image: {
  43156. source: "./media/characters/cobalt-charizard/front.svg",
  43157. extra: 1268/1155,
  43158. bottom: 122/1390
  43159. }
  43160. },
  43161. side: {
  43162. height: math.unit(8 + 5/12, "feet"),
  43163. weight: math.unit(825, "lb"),
  43164. name: "Side",
  43165. image: {
  43166. source: "./media/characters/cobalt-charizard/side.svg",
  43167. extra: 1348/1257,
  43168. bottom: 58/1406
  43169. }
  43170. },
  43171. gMax: {
  43172. height: math.unit(134 + 11/12, "feet"),
  43173. name: "G-Max",
  43174. image: {
  43175. source: "./media/characters/cobalt-charizard/g-max.svg",
  43176. extra: 1835/1541,
  43177. bottom: 151/1986
  43178. }
  43179. },
  43180. },
  43181. [
  43182. {
  43183. name: "Normal",
  43184. height: math.unit(8 + 5/12, "feet"),
  43185. default: true
  43186. },
  43187. ]
  43188. ))
  43189. characterMakers.push(() => makeCharacter(
  43190. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43191. {
  43192. front: {
  43193. height: math.unit(6 + 3/12, "feet"),
  43194. weight: math.unit(210, "lb"),
  43195. name: "Front",
  43196. image: {
  43197. source: "./media/characters/stella/front.svg",
  43198. extra: 3549/3335,
  43199. bottom: 51/3600
  43200. }
  43201. },
  43202. },
  43203. [
  43204. {
  43205. name: "Normal",
  43206. height: math.unit(6 + 3/12, "feet"),
  43207. default: true
  43208. },
  43209. ]
  43210. ))
  43211. characterMakers.push(() => makeCharacter(
  43212. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43213. {
  43214. front: {
  43215. height: math.unit(5, "feet"),
  43216. weight: math.unit(90, "lb"),
  43217. name: "Front",
  43218. image: {
  43219. source: "./media/characters/riley-bishop/front.svg",
  43220. extra: 1450/1428,
  43221. bottom: 152/1602
  43222. }
  43223. },
  43224. },
  43225. [
  43226. {
  43227. name: "Normal",
  43228. height: math.unit(5, "feet"),
  43229. default: true
  43230. },
  43231. ]
  43232. ))
  43233. characterMakers.push(() => makeCharacter(
  43234. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43235. {
  43236. side: {
  43237. height: math.unit(8 + 2/12, "feet"),
  43238. weight: math.unit(500, "kg"),
  43239. name: "Side",
  43240. image: {
  43241. source: "./media/characters/theo-arcanine/side.svg",
  43242. extra: 1342/1074,
  43243. bottom: 111/1453
  43244. }
  43245. },
  43246. },
  43247. [
  43248. {
  43249. name: "Normal",
  43250. height: math.unit(8 + 2/12, "feet"),
  43251. default: true
  43252. },
  43253. ]
  43254. ))
  43255. characterMakers.push(() => makeCharacter(
  43256. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43257. {
  43258. front: {
  43259. height: math.unit(4, "feet"),
  43260. name: "Front",
  43261. image: {
  43262. source: "./media/characters/kali/front.svg",
  43263. extra: 1921/1357,
  43264. bottom: 70/1991
  43265. }
  43266. },
  43267. },
  43268. [
  43269. {
  43270. name: "Normal",
  43271. height: math.unit(4, "feet"),
  43272. default: true
  43273. },
  43274. {
  43275. name: "Macro",
  43276. height: math.unit(32, "meters")
  43277. },
  43278. {
  43279. name: "Macro+",
  43280. height: math.unit(150, "meters")
  43281. },
  43282. {
  43283. name: "Megamacro",
  43284. height: math.unit(7500, "meters")
  43285. },
  43286. {
  43287. name: "Megamacro+",
  43288. height: math.unit(80, "kilometers")
  43289. },
  43290. ]
  43291. ))
  43292. characterMakers.push(() => makeCharacter(
  43293. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43294. {
  43295. side: {
  43296. height: math.unit(5 + 11/12, "feet"),
  43297. weight: math.unit(236, "lb"),
  43298. name: "Side",
  43299. image: {
  43300. source: "./media/characters/gapp/side.svg",
  43301. extra: 775/340,
  43302. bottom: 58/833
  43303. }
  43304. },
  43305. mouth: {
  43306. height: math.unit(2.98, "feet"),
  43307. name: "Mouth",
  43308. image: {
  43309. source: "./media/characters/gapp/mouth.svg"
  43310. }
  43311. },
  43312. },
  43313. [
  43314. {
  43315. name: "Normal",
  43316. height: math.unit(5 + 1/12, "feet"),
  43317. default: true
  43318. },
  43319. ]
  43320. ))
  43321. characterMakers.push(() => makeCharacter(
  43322. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43323. {
  43324. front: {
  43325. height: math.unit(6, "feet"),
  43326. name: "Front",
  43327. image: {
  43328. source: "./media/characters/persephone/front.svg",
  43329. extra: 1895/1717,
  43330. bottom: 96/1991
  43331. }
  43332. },
  43333. back: {
  43334. height: math.unit(6, "feet"),
  43335. name: "Back",
  43336. image: {
  43337. source: "./media/characters/persephone/back.svg",
  43338. extra: 1868/1679,
  43339. bottom: 26/1894
  43340. }
  43341. },
  43342. casual: {
  43343. height: math.unit(6, "feet"),
  43344. name: "Casual",
  43345. image: {
  43346. source: "./media/characters/persephone/casual.svg",
  43347. extra: 1713/1541,
  43348. bottom: 76/1789
  43349. }
  43350. },
  43351. },
  43352. [
  43353. {
  43354. name: "Human Size",
  43355. height: math.unit(6, "feet")
  43356. },
  43357. {
  43358. name: "Big Steppy",
  43359. height: math.unit(600, "meters"),
  43360. default: true
  43361. },
  43362. {
  43363. name: "Galaxy Brain",
  43364. height: math.unit(1, "zettameter")
  43365. },
  43366. ]
  43367. ))
  43368. characterMakers.push(() => makeCharacter(
  43369. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43370. {
  43371. front: {
  43372. height: math.unit(1.85, "meters"),
  43373. name: "Front",
  43374. image: {
  43375. source: "./media/characters/riley-foxthing/front.svg",
  43376. extra: 1495/1354,
  43377. bottom: 122/1617
  43378. }
  43379. },
  43380. frontAlt: {
  43381. height: math.unit(1.85, "meters"),
  43382. name: "Front (Alt)",
  43383. image: {
  43384. source: "./media/characters/riley-foxthing/front-alt.svg",
  43385. extra: 1572/1389,
  43386. bottom: 116/1688
  43387. }
  43388. },
  43389. },
  43390. [
  43391. {
  43392. name: "Normal Sized",
  43393. height: math.unit(1.85, "meters"),
  43394. default: true
  43395. },
  43396. {
  43397. name: "Quite Sizable",
  43398. height: math.unit(5, "meters")
  43399. },
  43400. {
  43401. name: "Rather Large",
  43402. height: math.unit(20, "meters")
  43403. },
  43404. {
  43405. name: "Macro",
  43406. height: math.unit(450, "meters")
  43407. },
  43408. {
  43409. name: "Giga",
  43410. height: math.unit(5, "km")
  43411. },
  43412. ]
  43413. ))
  43414. characterMakers.push(() => makeCharacter(
  43415. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43416. {
  43417. front: {
  43418. height: math.unit(6, "feet"),
  43419. weight: math.unit(200, "lb"),
  43420. name: "Front",
  43421. image: {
  43422. source: "./media/characters/blizzard/front.svg",
  43423. extra: 1136/990,
  43424. bottom: 136/1272
  43425. }
  43426. },
  43427. back: {
  43428. height: math.unit(6, "feet"),
  43429. weight: math.unit(200, "lb"),
  43430. name: "Back",
  43431. image: {
  43432. source: "./media/characters/blizzard/back.svg",
  43433. extra: 1175/1034,
  43434. bottom: 97/1272
  43435. }
  43436. },
  43437. sitting: {
  43438. height: math.unit(3.725, "feet"),
  43439. weight: math.unit(200, "lb"),
  43440. name: "Sitting",
  43441. image: {
  43442. source: "./media/characters/blizzard/sitting.svg",
  43443. extra: 581/485,
  43444. bottom: 90/671
  43445. }
  43446. },
  43447. frontWizard: {
  43448. height: math.unit(7.9, "feet"),
  43449. weight: math.unit(200, "lb"),
  43450. name: "Front (Wizard)",
  43451. image: {
  43452. source: "./media/characters/blizzard/front-wizard.svg"
  43453. }
  43454. },
  43455. backWizard: {
  43456. height: math.unit(7.9, "feet"),
  43457. weight: math.unit(200, "lb"),
  43458. name: "Back (Wizard)",
  43459. image: {
  43460. source: "./media/characters/blizzard/back-wizard.svg"
  43461. }
  43462. },
  43463. frontNsfw: {
  43464. height: math.unit(6, "feet"),
  43465. weight: math.unit(200, "lb"),
  43466. name: "Front (NSFW)",
  43467. image: {
  43468. source: "./media/characters/blizzard/front-nsfw.svg",
  43469. extra: 1136/990,
  43470. bottom: 136/1272
  43471. }
  43472. },
  43473. backNsfw: {
  43474. height: math.unit(6, "feet"),
  43475. weight: math.unit(200, "lb"),
  43476. name: "Back (NSFW)",
  43477. image: {
  43478. source: "./media/characters/blizzard/back-nsfw.svg",
  43479. extra: 1175/1034,
  43480. bottom: 97/1272
  43481. }
  43482. },
  43483. sittingNsfw: {
  43484. height: math.unit(3.725, "feet"),
  43485. weight: math.unit(200, "lb"),
  43486. name: "Sitting (NSFW)",
  43487. image: {
  43488. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43489. extra: 581/485,
  43490. bottom: 90/671
  43491. }
  43492. },
  43493. wizardFrontNsfw: {
  43494. height: math.unit(7.9, "feet"),
  43495. weight: math.unit(200, "lb"),
  43496. name: "Wizard (Front, NSFW)",
  43497. image: {
  43498. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43499. }
  43500. },
  43501. },
  43502. [
  43503. {
  43504. name: "Normal",
  43505. height: math.unit(6, "feet"),
  43506. default: true
  43507. },
  43508. ]
  43509. ))
  43510. characterMakers.push(() => makeCharacter(
  43511. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43512. {
  43513. front: {
  43514. height: math.unit(5 + 2/12, "feet"),
  43515. name: "Front",
  43516. image: {
  43517. source: "./media/characters/lumi/front.svg",
  43518. extra: 1328/1268,
  43519. bottom: 103/1431
  43520. }
  43521. },
  43522. back: {
  43523. height: math.unit(5 + 2/12, "feet"),
  43524. name: "Back",
  43525. image: {
  43526. source: "./media/characters/lumi/back.svg",
  43527. extra: 1381/1327,
  43528. bottom: 43/1424
  43529. }
  43530. },
  43531. },
  43532. [
  43533. {
  43534. name: "Normal",
  43535. height: math.unit(5 + 2/12, "feet"),
  43536. default: true
  43537. },
  43538. ]
  43539. ))
  43540. characterMakers.push(() => makeCharacter(
  43541. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43542. {
  43543. front: {
  43544. height: math.unit(5 + 9/12, "feet"),
  43545. name: "Front",
  43546. image: {
  43547. source: "./media/characters/aliya-cotton/front.svg",
  43548. extra: 577/564,
  43549. bottom: 29/606
  43550. }
  43551. },
  43552. },
  43553. [
  43554. {
  43555. name: "Normal",
  43556. height: math.unit(5 + 9/12, "feet"),
  43557. default: true
  43558. },
  43559. ]
  43560. ))
  43561. characterMakers.push(() => makeCharacter(
  43562. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43563. {
  43564. front: {
  43565. height: math.unit(2.7, "meters"),
  43566. weight: math.unit(25000, "lb"),
  43567. name: "Front",
  43568. image: {
  43569. source: "./media/characters/noah-luxray/front.svg",
  43570. extra: 1644/825,
  43571. bottom: 339/1983
  43572. }
  43573. },
  43574. side: {
  43575. height: math.unit(2.97, "meters"),
  43576. weight: math.unit(25000, "lb"),
  43577. name: "Side",
  43578. image: {
  43579. source: "./media/characters/noah-luxray/side.svg",
  43580. extra: 1319/650,
  43581. bottom: 163/1482
  43582. }
  43583. },
  43584. dick: {
  43585. height: math.unit(7.4, "feet"),
  43586. weight: math.unit(2500, "lb"),
  43587. name: "Dick",
  43588. image: {
  43589. source: "./media/characters/noah-luxray/dick.svg"
  43590. }
  43591. },
  43592. dickAlt: {
  43593. height: math.unit(10.83, "feet"),
  43594. weight: math.unit(2500, "lb"),
  43595. name: "Dick-alt",
  43596. image: {
  43597. source: "./media/characters/noah-luxray/dick-alt.svg"
  43598. }
  43599. },
  43600. },
  43601. [
  43602. {
  43603. name: "BIG",
  43604. height: math.unit(2.7, "meters"),
  43605. default: true
  43606. },
  43607. ]
  43608. ))
  43609. characterMakers.push(() => makeCharacter(
  43610. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43611. {
  43612. standing: {
  43613. height: math.unit(183, "cm"),
  43614. weight: math.unit(68, "kg"),
  43615. name: "Standing",
  43616. image: {
  43617. source: "./media/characters/arion/standing.svg",
  43618. extra: 1869/1807,
  43619. bottom: 93/1962
  43620. }
  43621. },
  43622. reclining: {
  43623. height: math.unit(70.5, "cm"),
  43624. weight: math.unit(68, "lb"),
  43625. name: "Reclining",
  43626. image: {
  43627. source: "./media/characters/arion/reclining.svg",
  43628. extra: 937/870,
  43629. bottom: 63/1000
  43630. }
  43631. },
  43632. },
  43633. [
  43634. {
  43635. name: "Colossus Size, Low",
  43636. height: math.unit(33, "meters"),
  43637. default: true
  43638. },
  43639. {
  43640. name: "Colossus Size, Mid",
  43641. height: math.unit(52, "meters")
  43642. },
  43643. {
  43644. name: "Colossus Size, High",
  43645. height: math.unit(60, "meters")
  43646. },
  43647. {
  43648. name: "Titan Size, Low",
  43649. height: math.unit(91, "meters"),
  43650. },
  43651. {
  43652. name: "Titan Size, Mid",
  43653. height: math.unit(122, "meters")
  43654. },
  43655. {
  43656. name: "Titan Size, High",
  43657. height: math.unit(162, "meters")
  43658. },
  43659. ]
  43660. ))
  43661. characterMakers.push(() => makeCharacter(
  43662. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43663. {
  43664. front: {
  43665. height: math.unit(53, "meters"),
  43666. name: "Front",
  43667. image: {
  43668. source: "./media/characters/stellar-marbey/front.svg",
  43669. extra: 1913/1805,
  43670. bottom: 92/2005
  43671. }
  43672. },
  43673. back: {
  43674. height: math.unit(53, "meters"),
  43675. name: "Back",
  43676. image: {
  43677. source: "./media/characters/stellar-marbey/back.svg",
  43678. extra: 1960/1851,
  43679. bottom: 28/1988
  43680. }
  43681. },
  43682. mouth: {
  43683. height: math.unit(3.5, "meters"),
  43684. name: "Mouth",
  43685. image: {
  43686. source: "./media/characters/stellar-marbey/mouth.svg"
  43687. }
  43688. },
  43689. },
  43690. [
  43691. {
  43692. name: "Macro",
  43693. height: math.unit(53, "meters"),
  43694. default: true
  43695. },
  43696. ]
  43697. ))
  43698. characterMakers.push(() => makeCharacter(
  43699. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43700. {
  43701. front: {
  43702. height: math.unit(8 + 1/12, "feet"),
  43703. weight: math.unit(233, "lb"),
  43704. name: "Front",
  43705. image: {
  43706. source: "./media/characters/matsu/front.svg",
  43707. extra: 832/772,
  43708. bottom: 40/872
  43709. }
  43710. },
  43711. back: {
  43712. height: math.unit(8 + 1/12, "feet"),
  43713. weight: math.unit(233, "lb"),
  43714. name: "Back",
  43715. image: {
  43716. source: "./media/characters/matsu/back.svg",
  43717. extra: 839/780,
  43718. bottom: 47/886
  43719. }
  43720. },
  43721. },
  43722. [
  43723. {
  43724. name: "Normal",
  43725. height: math.unit(8 + 1/12, "feet"),
  43726. default: true
  43727. },
  43728. ]
  43729. ))
  43730. characterMakers.push(() => makeCharacter(
  43731. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43732. {
  43733. front: {
  43734. height: math.unit(4, "feet"),
  43735. weight: math.unit(148, "lb"),
  43736. name: "Front",
  43737. image: {
  43738. source: "./media/characters/thiz/front.svg",
  43739. extra: 1913/1748,
  43740. bottom: 62/1975
  43741. }
  43742. },
  43743. },
  43744. [
  43745. {
  43746. name: "Normal",
  43747. height: math.unit(4, "feet"),
  43748. default: true
  43749. },
  43750. ]
  43751. ))
  43752. characterMakers.push(() => makeCharacter(
  43753. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43754. {
  43755. front: {
  43756. height: math.unit(7 + 6/12, "feet"),
  43757. weight: math.unit(267, "lb"),
  43758. name: "Front",
  43759. image: {
  43760. source: "./media/characters/marcel/front.svg",
  43761. extra: 1221/1096,
  43762. bottom: 76/1297
  43763. }
  43764. },
  43765. },
  43766. [
  43767. {
  43768. name: "Normal",
  43769. height: math.unit(7 + 6/12, "feet"),
  43770. default: true
  43771. },
  43772. ]
  43773. ))
  43774. characterMakers.push(() => makeCharacter(
  43775. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43776. {
  43777. side: {
  43778. height: math.unit(42, "meters"),
  43779. name: "Side",
  43780. image: {
  43781. source: "./media/characters/flake/side.svg",
  43782. extra: 1525/1306,
  43783. bottom: 209/1734
  43784. }
  43785. },
  43786. },
  43787. [
  43788. {
  43789. name: "Normal",
  43790. height: math.unit(42, "meters"),
  43791. default: true
  43792. },
  43793. ]
  43794. ))
  43795. characterMakers.push(() => makeCharacter(
  43796. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43797. {
  43798. dressed: {
  43799. height: math.unit(6 + 4/12, "feet"),
  43800. weight: math.unit(520, "lb"),
  43801. name: "Dressed",
  43802. image: {
  43803. source: "./media/characters/someonne/dressed.svg",
  43804. extra: 1020/1010,
  43805. bottom: 178/1198
  43806. }
  43807. },
  43808. undressed: {
  43809. height: math.unit(6 + 4/12, "feet"),
  43810. weight: math.unit(520, "lb"),
  43811. name: "Undressed",
  43812. image: {
  43813. source: "./media/characters/someonne/undressed.svg",
  43814. extra: 1019/1014,
  43815. bottom: 169/1188
  43816. }
  43817. },
  43818. },
  43819. [
  43820. {
  43821. name: "Normal",
  43822. height: math.unit(6 + 4/12, "feet"),
  43823. default: true
  43824. },
  43825. ]
  43826. ))
  43827. characterMakers.push(() => makeCharacter(
  43828. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43829. {
  43830. front: {
  43831. height: math.unit(3, "feet"),
  43832. weight: math.unit(30, "lb"),
  43833. name: "Front",
  43834. image: {
  43835. source: "./media/characters/till/front.svg",
  43836. extra: 892/823,
  43837. bottom: 55/947
  43838. }
  43839. },
  43840. },
  43841. [
  43842. {
  43843. name: "Normal",
  43844. height: math.unit(3, "feet"),
  43845. default: true
  43846. },
  43847. ]
  43848. ))
  43849. characterMakers.push(() => makeCharacter(
  43850. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43851. {
  43852. front: {
  43853. height: math.unit(9 + 8/12, "feet"),
  43854. weight: math.unit(800, "lb"),
  43855. name: "Front",
  43856. image: {
  43857. source: "./media/characters/sydney-heki/front.svg",
  43858. extra: 1360/1300,
  43859. bottom: 22/1382
  43860. }
  43861. },
  43862. back: {
  43863. height: math.unit(9 + 8/12, "feet"),
  43864. weight: math.unit(800, "lb"),
  43865. name: "Back",
  43866. image: {
  43867. source: "./media/characters/sydney-heki/back.svg",
  43868. extra: 1356/1293,
  43869. bottom: 12/1368
  43870. }
  43871. },
  43872. frontDressed: {
  43873. height: math.unit(9 + 8/12, "feet"),
  43874. weight: math.unit(800, "lb"),
  43875. name: "Front-dressed",
  43876. image: {
  43877. source: "./media/characters/sydney-heki/front-dressed.svg",
  43878. extra: 1360/1300,
  43879. bottom: 22/1382
  43880. }
  43881. },
  43882. },
  43883. [
  43884. {
  43885. name: "Normal",
  43886. height: math.unit(9 + 8/12, "feet"),
  43887. default: true
  43888. },
  43889. {
  43890. name: "Macro",
  43891. height: math.unit(500, "feet")
  43892. },
  43893. {
  43894. name: "Megamacro",
  43895. height: math.unit(3.6, "miles")
  43896. },
  43897. ]
  43898. ))
  43899. characterMakers.push(() => makeCharacter(
  43900. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43901. {
  43902. front: {
  43903. height: math.unit(200, "cm"),
  43904. weight: math.unit(250, "lb"),
  43905. name: "Front",
  43906. image: {
  43907. source: "./media/characters/fowler-karlsson/front.svg",
  43908. extra: 897/845,
  43909. bottom: 123/1020
  43910. }
  43911. },
  43912. back: {
  43913. height: math.unit(200, "cm"),
  43914. weight: math.unit(250, "lb"),
  43915. name: "Back",
  43916. image: {
  43917. source: "./media/characters/fowler-karlsson/back.svg",
  43918. extra: 999/944,
  43919. bottom: 26/1025
  43920. }
  43921. },
  43922. dick: {
  43923. height: math.unit(1.92, "feet"),
  43924. weight: math.unit(150, "lb"),
  43925. name: "Dick",
  43926. image: {
  43927. source: "./media/characters/fowler-karlsson/dick.svg"
  43928. }
  43929. },
  43930. },
  43931. [
  43932. {
  43933. name: "Normal",
  43934. height: math.unit(200, "cm"),
  43935. default: true
  43936. },
  43937. {
  43938. name: "Smaller Macro",
  43939. height: math.unit(90, "m")
  43940. },
  43941. {
  43942. name: "Macro",
  43943. height: math.unit(150, "m")
  43944. },
  43945. {
  43946. name: "Bigger Macro",
  43947. height: math.unit(300, "m")
  43948. },
  43949. ]
  43950. ))
  43951. characterMakers.push(() => makeCharacter(
  43952. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43953. {
  43954. side: {
  43955. height: math.unit(8 + 2/12, "feet"),
  43956. weight: math.unit(1, "tonne"),
  43957. name: "Side",
  43958. image: {
  43959. source: "./media/characters/rylide/side.svg",
  43960. extra: 1318/1034,
  43961. bottom: 106/1424
  43962. }
  43963. },
  43964. sitting: {
  43965. height: math.unit(303, "cm"),
  43966. weight: math.unit(1, "tonne"),
  43967. name: "Sitting",
  43968. image: {
  43969. source: "./media/characters/rylide/sitting.svg",
  43970. extra: 1303/1103,
  43971. bottom: 36/1339
  43972. }
  43973. },
  43974. },
  43975. [
  43976. {
  43977. name: "Normal",
  43978. height: math.unit(8 + 2/12, "feet"),
  43979. default: true
  43980. },
  43981. ]
  43982. ))
  43983. characterMakers.push(() => makeCharacter(
  43984. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43985. {
  43986. front: {
  43987. height: math.unit(5 + 10/12, "feet"),
  43988. weight: math.unit(160, "lb"),
  43989. name: "Front",
  43990. image: {
  43991. source: "./media/characters/pudask/front.svg",
  43992. extra: 1616/1590,
  43993. bottom: 161/1777
  43994. }
  43995. },
  43996. },
  43997. [
  43998. {
  43999. name: "Ferret Height",
  44000. height: math.unit(2 + 5/12, "feet")
  44001. },
  44002. {
  44003. name: "Canon Height",
  44004. height: math.unit(5 + 10/12, "feet"),
  44005. default: true
  44006. },
  44007. ]
  44008. ))
  44009. characterMakers.push(() => makeCharacter(
  44010. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44011. {
  44012. front: {
  44013. height: math.unit(3 + 6/12, "feet"),
  44014. weight: math.unit(60, "lb"),
  44015. name: "Front",
  44016. image: {
  44017. source: "./media/characters/ramita/front.svg",
  44018. extra: 1402/1232,
  44019. bottom: 62/1464
  44020. }
  44021. },
  44022. dressed: {
  44023. height: math.unit(3 + 6/12, "feet"),
  44024. weight: math.unit(60, "lb"),
  44025. name: "Dressed",
  44026. image: {
  44027. source: "./media/characters/ramita/dressed.svg",
  44028. extra: 1534/1249,
  44029. bottom: 50/1584
  44030. }
  44031. },
  44032. },
  44033. [
  44034. {
  44035. name: "Normal",
  44036. height: math.unit(3 + 6/12, "feet"),
  44037. default: true
  44038. },
  44039. ]
  44040. ))
  44041. characterMakers.push(() => makeCharacter(
  44042. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44043. {
  44044. front: {
  44045. height: math.unit(8, "feet"),
  44046. name: "Front",
  44047. image: {
  44048. source: "./media/characters/ark/front.svg",
  44049. extra: 772/693,
  44050. bottom: 45/817
  44051. }
  44052. },
  44053. },
  44054. [
  44055. {
  44056. name: "Normal",
  44057. height: math.unit(8, "feet"),
  44058. default: true
  44059. },
  44060. ]
  44061. ))
  44062. characterMakers.push(() => makeCharacter(
  44063. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44064. {
  44065. front: {
  44066. height: math.unit(6, "feet"),
  44067. weight: math.unit(250, "lb"),
  44068. volume: math.unit(5/8, "gallons"),
  44069. name: "Front",
  44070. image: {
  44071. source: "./media/characters/ludwig-horn/front.svg",
  44072. extra: 1782/1635,
  44073. bottom: 96/1878
  44074. }
  44075. },
  44076. back: {
  44077. height: math.unit(6, "feet"),
  44078. weight: math.unit(250, "lb"),
  44079. volume: math.unit(5/8, "gallons"),
  44080. name: "Back",
  44081. image: {
  44082. source: "./media/characters/ludwig-horn/back.svg",
  44083. extra: 1874/1729,
  44084. bottom: 27/1901
  44085. }
  44086. },
  44087. dick: {
  44088. height: math.unit(1.05, "feet"),
  44089. weight: math.unit(15, "lb"),
  44090. volume: math.unit(5/8, "gallons"),
  44091. name: "Dick",
  44092. image: {
  44093. source: "./media/characters/ludwig-horn/dick.svg"
  44094. }
  44095. },
  44096. },
  44097. [
  44098. {
  44099. name: "Small",
  44100. height: math.unit(6, "feet")
  44101. },
  44102. {
  44103. name: "Typical",
  44104. height: math.unit(12, "feet"),
  44105. default: true
  44106. },
  44107. {
  44108. name: "Building",
  44109. height: math.unit(80, "feet")
  44110. },
  44111. {
  44112. name: "Town",
  44113. height: math.unit(800, "feet")
  44114. },
  44115. {
  44116. name: "Kingdom",
  44117. height: math.unit(80000, "feet")
  44118. },
  44119. {
  44120. name: "Planet",
  44121. height: math.unit(8000000, "feet")
  44122. },
  44123. {
  44124. name: "Universe",
  44125. height: math.unit(8000000000, "feet")
  44126. },
  44127. {
  44128. name: "Transcended",
  44129. height: math.unit(8e27, "feet")
  44130. },
  44131. ]
  44132. ))
  44133. characterMakers.push(() => makeCharacter(
  44134. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44135. {
  44136. front: {
  44137. height: math.unit(5, "feet"),
  44138. weight: math.unit(50, "kg"),
  44139. name: "Front",
  44140. image: {
  44141. source: "./media/characters/biot-avery/front.svg",
  44142. extra: 1295/1232,
  44143. bottom: 86/1381
  44144. }
  44145. },
  44146. },
  44147. [
  44148. {
  44149. name: "Normal",
  44150. height: math.unit(5, "feet"),
  44151. default: true
  44152. },
  44153. ]
  44154. ))
  44155. characterMakers.push(() => makeCharacter(
  44156. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44157. {
  44158. front: {
  44159. height: math.unit(6, "feet"),
  44160. name: "Front",
  44161. image: {
  44162. source: "./media/characters/kitsune-kiro/front.svg",
  44163. extra: 1270/1158,
  44164. bottom: 42/1312
  44165. }
  44166. },
  44167. frontAlt: {
  44168. height: math.unit(6, "feet"),
  44169. name: "Front-alt",
  44170. image: {
  44171. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44172. extra: 1130/1081,
  44173. bottom: 36/1166
  44174. }
  44175. },
  44176. },
  44177. [
  44178. {
  44179. name: "Smol",
  44180. height: math.unit(3, "feet")
  44181. },
  44182. {
  44183. name: "Normal",
  44184. height: math.unit(6, "feet"),
  44185. default: true
  44186. },
  44187. ]
  44188. ))
  44189. characterMakers.push(() => makeCharacter(
  44190. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44191. {
  44192. front: {
  44193. height: math.unit(6, "feet"),
  44194. weight: math.unit(125, "lb"),
  44195. name: "Front",
  44196. image: {
  44197. source: "./media/characters/jack-thatcher/front.svg",
  44198. extra: 1474/1370,
  44199. bottom: 26/1500
  44200. }
  44201. },
  44202. back: {
  44203. height: math.unit(6, "feet"),
  44204. weight: math.unit(125, "lb"),
  44205. name: "Back",
  44206. image: {
  44207. source: "./media/characters/jack-thatcher/back.svg",
  44208. extra: 1489/1384,
  44209. bottom: 18/1507
  44210. }
  44211. },
  44212. },
  44213. [
  44214. {
  44215. name: "Normal",
  44216. height: math.unit(6, "feet"),
  44217. default: true
  44218. },
  44219. {
  44220. name: "Macro",
  44221. height: math.unit(75, "feet")
  44222. },
  44223. {
  44224. name: "Macro-er",
  44225. height: math.unit(250, "feet")
  44226. },
  44227. ]
  44228. ))
  44229. characterMakers.push(() => makeCharacter(
  44230. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44231. {
  44232. front: {
  44233. height: math.unit(7, "feet"),
  44234. weight: math.unit(110, "kg"),
  44235. name: "Front",
  44236. image: {
  44237. source: "./media/characters/max-hyper/front.svg",
  44238. extra: 1969/1881,
  44239. bottom: 49/2018
  44240. }
  44241. },
  44242. },
  44243. [
  44244. {
  44245. name: "Normal",
  44246. height: math.unit(7, "feet"),
  44247. default: true
  44248. },
  44249. ]
  44250. ))
  44251. characterMakers.push(() => makeCharacter(
  44252. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44253. {
  44254. front: {
  44255. height: math.unit(5 + 5/12, "feet"),
  44256. weight: math.unit(160, "lb"),
  44257. name: "Front",
  44258. image: {
  44259. source: "./media/characters/spook/front.svg",
  44260. extra: 794/791,
  44261. bottom: 54/848
  44262. }
  44263. },
  44264. back: {
  44265. height: math.unit(5 + 5/12, "feet"),
  44266. weight: math.unit(160, "lb"),
  44267. name: "Back",
  44268. image: {
  44269. source: "./media/characters/spook/back.svg",
  44270. extra: 812/798,
  44271. bottom: 32/844
  44272. }
  44273. },
  44274. },
  44275. [
  44276. {
  44277. name: "Normal",
  44278. height: math.unit(5 + 5/12, "feet"),
  44279. default: true
  44280. },
  44281. ]
  44282. ))
  44283. characterMakers.push(() => makeCharacter(
  44284. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44285. {
  44286. front: {
  44287. height: math.unit(18, "feet"),
  44288. name: "Front",
  44289. image: {
  44290. source: "./media/characters/xeaduulix/front.svg",
  44291. extra: 1380/1166,
  44292. bottom: 110/1490
  44293. }
  44294. },
  44295. back: {
  44296. height: math.unit(18, "feet"),
  44297. name: "Back",
  44298. image: {
  44299. source: "./media/characters/xeaduulix/back.svg",
  44300. extra: 1592/1170,
  44301. bottom: 128/1720
  44302. }
  44303. },
  44304. frontNsfw: {
  44305. height: math.unit(18, "feet"),
  44306. name: "Front (NSFW)",
  44307. image: {
  44308. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44309. extra: 1380/1166,
  44310. bottom: 110/1490
  44311. }
  44312. },
  44313. backNsfw: {
  44314. height: math.unit(18, "feet"),
  44315. name: "Back (NSFW)",
  44316. image: {
  44317. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44318. extra: 1592/1170,
  44319. bottom: 128/1720
  44320. }
  44321. },
  44322. },
  44323. [
  44324. {
  44325. name: "Normal",
  44326. height: math.unit(18, "feet"),
  44327. default: true
  44328. },
  44329. ]
  44330. ))
  44331. characterMakers.push(() => makeCharacter(
  44332. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44333. {
  44334. spreadWings: {
  44335. height: math.unit(20, "feet"),
  44336. name: "Spread Wings",
  44337. image: {
  44338. source: "./media/characters/fledge/spread-wings.svg",
  44339. extra: 693/635,
  44340. bottom: 26/719
  44341. }
  44342. },
  44343. front: {
  44344. height: math.unit(20, "feet"),
  44345. name: "Front",
  44346. image: {
  44347. source: "./media/characters/fledge/front.svg",
  44348. extra: 684/637,
  44349. bottom: 18/702
  44350. }
  44351. },
  44352. frontAlt: {
  44353. height: math.unit(20, "feet"),
  44354. name: "Front (Alt)",
  44355. image: {
  44356. source: "./media/characters/fledge/front-alt.svg",
  44357. extra: 708/664,
  44358. bottom: 13/721
  44359. }
  44360. },
  44361. back: {
  44362. height: math.unit(20, "feet"),
  44363. name: "Back",
  44364. image: {
  44365. source: "./media/characters/fledge/back.svg",
  44366. extra: 718/634,
  44367. bottom: 22/740
  44368. }
  44369. },
  44370. head: {
  44371. height: math.unit(5.55, "feet"),
  44372. name: "Head",
  44373. image: {
  44374. source: "./media/characters/fledge/head.svg"
  44375. }
  44376. },
  44377. headAlt: {
  44378. height: math.unit(5.1, "feet"),
  44379. name: "Head (Alt)",
  44380. image: {
  44381. source: "./media/characters/fledge/head-alt.svg"
  44382. }
  44383. },
  44384. },
  44385. [
  44386. {
  44387. name: "Small",
  44388. height: math.unit(6 + 2/12, "feet")
  44389. },
  44390. {
  44391. name: "Big",
  44392. height: math.unit(20, "feet"),
  44393. default: true
  44394. },
  44395. {
  44396. name: "Giant",
  44397. height: math.unit(100, "feet")
  44398. },
  44399. {
  44400. name: "Macro",
  44401. height: math.unit(200, "feet")
  44402. },
  44403. ]
  44404. ))
  44405. characterMakers.push(() => makeCharacter(
  44406. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44407. {
  44408. front: {
  44409. height: math.unit(1, "meter"),
  44410. name: "Front",
  44411. image: {
  44412. source: "./media/characters/atlas-morenai/front.svg",
  44413. extra: 1275/1043,
  44414. bottom: 19/1294
  44415. }
  44416. },
  44417. back: {
  44418. height: math.unit(1, "meter"),
  44419. name: "Back",
  44420. image: {
  44421. source: "./media/characters/atlas-morenai/back.svg",
  44422. extra: 1141/1001,
  44423. bottom: 25/1166
  44424. }
  44425. },
  44426. },
  44427. [
  44428. {
  44429. name: "Normal",
  44430. height: math.unit(1, "meter"),
  44431. default: true
  44432. },
  44433. {
  44434. name: "Magic-Infused",
  44435. height: math.unit(5, "meters")
  44436. },
  44437. ]
  44438. ))
  44439. characterMakers.push(() => makeCharacter(
  44440. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44441. {
  44442. front: {
  44443. height: math.unit(5, "meters"),
  44444. name: "Front",
  44445. image: {
  44446. source: "./media/characters/cintia/front.svg",
  44447. extra: 1312/1228,
  44448. bottom: 38/1350
  44449. }
  44450. },
  44451. back: {
  44452. height: math.unit(5, "meters"),
  44453. name: "Back",
  44454. image: {
  44455. source: "./media/characters/cintia/back.svg",
  44456. extra: 1260/1166,
  44457. bottom: 98/1358
  44458. }
  44459. },
  44460. frontDick: {
  44461. height: math.unit(5, "meters"),
  44462. name: "Front (Dick)",
  44463. image: {
  44464. source: "./media/characters/cintia/front-dick.svg",
  44465. extra: 1312/1228,
  44466. bottom: 38/1350
  44467. }
  44468. },
  44469. backDick: {
  44470. height: math.unit(5, "meters"),
  44471. name: "Back (Dick)",
  44472. image: {
  44473. source: "./media/characters/cintia/back-dick.svg",
  44474. extra: 1260/1166,
  44475. bottom: 98/1358
  44476. }
  44477. },
  44478. bust: {
  44479. height: math.unit(1.97, "meters"),
  44480. name: "Bust",
  44481. image: {
  44482. source: "./media/characters/cintia/bust.svg",
  44483. extra: 617/565,
  44484. bottom: 0/617
  44485. }
  44486. },
  44487. },
  44488. [
  44489. {
  44490. name: "Normal",
  44491. height: math.unit(5, "meters"),
  44492. default: true
  44493. },
  44494. ]
  44495. ))
  44496. characterMakers.push(() => makeCharacter(
  44497. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44498. {
  44499. side: {
  44500. height: math.unit(100, "feet"),
  44501. name: "Side",
  44502. image: {
  44503. source: "./media/characters/denora/side.svg",
  44504. extra: 875/803,
  44505. bottom: 9/884
  44506. }
  44507. },
  44508. },
  44509. [
  44510. {
  44511. name: "Standard",
  44512. height: math.unit(100, "feet"),
  44513. default: true
  44514. },
  44515. {
  44516. name: "Grand",
  44517. height: math.unit(1000, "feet")
  44518. },
  44519. {
  44520. name: "Conquering",
  44521. height: math.unit(10000, "feet")
  44522. },
  44523. ]
  44524. ))
  44525. characterMakers.push(() => makeCharacter(
  44526. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44527. {
  44528. dressed: {
  44529. height: math.unit(8 + 5/12, "feet"),
  44530. weight: math.unit(700, "lb"),
  44531. name: "Dressed",
  44532. image: {
  44533. source: "./media/characters/kiva/dressed.svg",
  44534. extra: 1102/1055,
  44535. bottom: 60/1162
  44536. }
  44537. },
  44538. nude: {
  44539. height: math.unit(8 + 5/12, "feet"),
  44540. weight: math.unit(700, "lb"),
  44541. name: "Nude",
  44542. image: {
  44543. source: "./media/characters/kiva/nude.svg",
  44544. extra: 1102/1055,
  44545. bottom: 60/1162
  44546. }
  44547. },
  44548. },
  44549. [
  44550. {
  44551. name: "Base Height",
  44552. height: math.unit(8 + 5/12, "feet"),
  44553. default: true
  44554. },
  44555. {
  44556. name: "Macro",
  44557. height: math.unit(100, "feet")
  44558. },
  44559. {
  44560. name: "Max",
  44561. height: math.unit(3280, "feet")
  44562. },
  44563. ]
  44564. ))
  44565. characterMakers.push(() => makeCharacter(
  44566. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44567. {
  44568. front: {
  44569. height: math.unit(6 + 8/12, "feet"),
  44570. weight: math.unit(250, "lb"),
  44571. name: "Front",
  44572. image: {
  44573. source: "./media/characters/ztragon/front.svg",
  44574. extra: 1825/1684,
  44575. bottom: 98/1923
  44576. }
  44577. },
  44578. },
  44579. [
  44580. {
  44581. name: "Normal",
  44582. height: math.unit(6 + 8/12, "feet"),
  44583. default: true
  44584. },
  44585. {
  44586. name: "Macro",
  44587. height: math.unit(80, "feet")
  44588. },
  44589. ]
  44590. ))
  44591. characterMakers.push(() => makeCharacter(
  44592. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44593. {
  44594. front: {
  44595. height: math.unit(10.4, "feet"),
  44596. weight: math.unit(2, "tons"),
  44597. name: "Front",
  44598. image: {
  44599. source: "./media/characters/yesenia/front.svg",
  44600. extra: 1479/1474,
  44601. bottom: 233/1712
  44602. }
  44603. },
  44604. },
  44605. [
  44606. {
  44607. name: "Normal",
  44608. height: math.unit(10.4, "feet"),
  44609. default: true
  44610. },
  44611. ]
  44612. ))
  44613. characterMakers.push(() => makeCharacter(
  44614. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44615. {
  44616. normal: {
  44617. height: math.unit(6 + 1/12, "feet"),
  44618. weight: math.unit(180, "lb"),
  44619. name: "Normal",
  44620. image: {
  44621. source: "./media/characters/leanne-lycheborne/normal.svg",
  44622. extra: 1748/1660,
  44623. bottom: 98/1846
  44624. }
  44625. },
  44626. were: {
  44627. height: math.unit(12, "feet"),
  44628. weight: math.unit(1600, "lb"),
  44629. name: "Were",
  44630. image: {
  44631. source: "./media/characters/leanne-lycheborne/were.svg",
  44632. extra: 1485/1432,
  44633. bottom: 66/1551
  44634. }
  44635. },
  44636. },
  44637. [
  44638. {
  44639. name: "Normal",
  44640. height: math.unit(6 + 1/12, "feet"),
  44641. default: true
  44642. },
  44643. ]
  44644. ))
  44645. characterMakers.push(() => makeCharacter(
  44646. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44647. {
  44648. side: {
  44649. height: math.unit(13, "feet"),
  44650. name: "Side",
  44651. image: {
  44652. source: "./media/characters/kira-tyler/side.svg",
  44653. extra: 693/393,
  44654. bottom: 58/751
  44655. }
  44656. },
  44657. },
  44658. [
  44659. {
  44660. name: "Normal",
  44661. height: math.unit(13, "feet"),
  44662. default: true
  44663. },
  44664. ]
  44665. ))
  44666. characterMakers.push(() => makeCharacter(
  44667. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44668. {
  44669. front: {
  44670. height: math.unit(10.3, "feet"),
  44671. weight: math.unit(150, "lb"),
  44672. name: "Front",
  44673. image: {
  44674. source: "./media/characters/blaze/front.svg",
  44675. extra: 1378/1286,
  44676. bottom: 172/1550
  44677. }
  44678. },
  44679. },
  44680. [
  44681. {
  44682. name: "Normal",
  44683. height: math.unit(10.3, "feet"),
  44684. default: true
  44685. },
  44686. ]
  44687. ))
  44688. characterMakers.push(() => makeCharacter(
  44689. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44690. {
  44691. side: {
  44692. height: math.unit(2, "meters"),
  44693. weight: math.unit(400, "kg"),
  44694. name: "Side",
  44695. image: {
  44696. source: "./media/characters/anu/side.svg",
  44697. extra: 506/394,
  44698. bottom: 18/524
  44699. }
  44700. },
  44701. },
  44702. [
  44703. {
  44704. name: "Humanoid",
  44705. height: math.unit(2, "meters")
  44706. },
  44707. {
  44708. name: "Normal",
  44709. height: math.unit(5, "meters"),
  44710. default: true
  44711. },
  44712. ]
  44713. ))
  44714. characterMakers.push(() => makeCharacter(
  44715. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44716. {
  44717. front: {
  44718. height: math.unit(5 + 5/12, "feet"),
  44719. weight: math.unit(170, "lb"),
  44720. name: "Front",
  44721. image: {
  44722. source: "./media/characters/synx-the-lynx/front.svg",
  44723. extra: 1893/1745,
  44724. bottom: 17/1910
  44725. }
  44726. },
  44727. side: {
  44728. height: math.unit(5 + 5/12, "feet"),
  44729. weight: math.unit(170, "lb"),
  44730. name: "Side",
  44731. image: {
  44732. source: "./media/characters/synx-the-lynx/side.svg",
  44733. extra: 1884/1740,
  44734. bottom: 39/1923
  44735. }
  44736. },
  44737. back: {
  44738. height: math.unit(5 + 5/12, "feet"),
  44739. weight: math.unit(170, "lb"),
  44740. name: "Back",
  44741. image: {
  44742. source: "./media/characters/synx-the-lynx/back.svg",
  44743. extra: 1903/1755,
  44744. bottom: 14/1917
  44745. }
  44746. },
  44747. },
  44748. [
  44749. {
  44750. name: "Normal",
  44751. height: math.unit(5 + 5/12, "feet"),
  44752. default: true
  44753. },
  44754. ]
  44755. ))
  44756. characterMakers.push(() => makeCharacter(
  44757. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44758. {
  44759. back: {
  44760. height: math.unit(15, "feet"),
  44761. name: "Back",
  44762. image: {
  44763. source: "./media/characters/nadezda-fex/back.svg",
  44764. extra: 1695/1481,
  44765. bottom: 25/1720
  44766. }
  44767. },
  44768. },
  44769. [
  44770. {
  44771. name: "Normal",
  44772. height: math.unit(15, "feet"),
  44773. default: true
  44774. },
  44775. {
  44776. name: "Macro",
  44777. height: math.unit(2.5, "miles")
  44778. },
  44779. {
  44780. name: "Goddess",
  44781. height: math.unit(2, "multiverses")
  44782. },
  44783. ]
  44784. ))
  44785. characterMakers.push(() => makeCharacter(
  44786. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44787. {
  44788. front: {
  44789. height: math.unit(216, "cm"),
  44790. name: "Front",
  44791. image: {
  44792. source: "./media/characters/lev/front.svg",
  44793. extra: 1728/1670,
  44794. bottom: 82/1810
  44795. }
  44796. },
  44797. back: {
  44798. height: math.unit(216, "cm"),
  44799. name: "Back",
  44800. image: {
  44801. source: "./media/characters/lev/back.svg",
  44802. extra: 1738/1675,
  44803. bottom: 24/1762
  44804. }
  44805. },
  44806. dressed: {
  44807. height: math.unit(216, "cm"),
  44808. name: "Dressed",
  44809. image: {
  44810. source: "./media/characters/lev/dressed.svg",
  44811. extra: 1397/1351,
  44812. bottom: 73/1470
  44813. }
  44814. },
  44815. head: {
  44816. height: math.unit(0.51, "meter"),
  44817. name: "Head",
  44818. image: {
  44819. source: "./media/characters/lev/head.svg"
  44820. }
  44821. },
  44822. },
  44823. [
  44824. {
  44825. name: "Normal",
  44826. height: math.unit(216, "cm"),
  44827. default: true
  44828. },
  44829. {
  44830. name: "Relatively Macro",
  44831. height: math.unit(80, "meters")
  44832. },
  44833. {
  44834. name: "Megamacro",
  44835. height: math.unit(21600, "meters")
  44836. },
  44837. {
  44838. name: "Megamacro+",
  44839. height: math.unit(64800, "meters")
  44840. },
  44841. ]
  44842. ))
  44843. characterMakers.push(() => makeCharacter(
  44844. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44845. {
  44846. front: {
  44847. height: math.unit(2, "meters"),
  44848. weight: math.unit(80, "kg"),
  44849. name: "Front",
  44850. image: {
  44851. source: "./media/characters/moka/front.svg",
  44852. extra: 1337/1255,
  44853. bottom: 58/1395
  44854. }
  44855. },
  44856. },
  44857. [
  44858. {
  44859. name: "Micro",
  44860. height: math.unit(15, "cm")
  44861. },
  44862. {
  44863. name: "Normal",
  44864. height: math.unit(2, "meters"),
  44865. default: true
  44866. },
  44867. {
  44868. name: "Macro",
  44869. height: math.unit(20, "meters"),
  44870. },
  44871. ]
  44872. ))
  44873. characterMakers.push(() => makeCharacter(
  44874. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44875. {
  44876. front: {
  44877. height: math.unit(9, "feet"),
  44878. weight: math.unit(240, "lb"),
  44879. name: "Front",
  44880. image: {
  44881. source: "./media/characters/kuzco/front.svg",
  44882. extra: 1593/1487,
  44883. bottom: 32/1625
  44884. }
  44885. },
  44886. side: {
  44887. height: math.unit(9, "feet"),
  44888. weight: math.unit(240, "lb"),
  44889. name: "Side",
  44890. image: {
  44891. source: "./media/characters/kuzco/side.svg",
  44892. extra: 1575/1485,
  44893. bottom: 30/1605
  44894. }
  44895. },
  44896. back: {
  44897. height: math.unit(9, "feet"),
  44898. weight: math.unit(240, "lb"),
  44899. name: "Back",
  44900. image: {
  44901. source: "./media/characters/kuzco/back.svg",
  44902. extra: 1603/1514,
  44903. bottom: 14/1617
  44904. }
  44905. },
  44906. },
  44907. [
  44908. {
  44909. name: "Normal",
  44910. height: math.unit(9, "feet"),
  44911. default: true
  44912. },
  44913. ]
  44914. ))
  44915. characterMakers.push(() => makeCharacter(
  44916. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44917. {
  44918. side: {
  44919. height: math.unit(2, "meters"),
  44920. weight: math.unit(300, "kg"),
  44921. name: "Side",
  44922. image: {
  44923. source: "./media/characters/ceruleus/side.svg",
  44924. extra: 1068/974,
  44925. bottom: 126/1194
  44926. }
  44927. },
  44928. },
  44929. [
  44930. {
  44931. name: "Normal",
  44932. height: math.unit(16, "meters"),
  44933. default: true
  44934. },
  44935. ]
  44936. ))
  44937. characterMakers.push(() => makeCharacter(
  44938. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44939. {
  44940. front: {
  44941. height: math.unit(9, "feet"),
  44942. weight: math.unit(500, "kg"),
  44943. name: "Front",
  44944. image: {
  44945. source: "./media/characters/acouya/front.svg",
  44946. extra: 1660/1473,
  44947. bottom: 28/1688
  44948. }
  44949. },
  44950. },
  44951. [
  44952. {
  44953. name: "Normal",
  44954. height: math.unit(9, "feet"),
  44955. default: true
  44956. },
  44957. ]
  44958. ))
  44959. characterMakers.push(() => makeCharacter(
  44960. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44961. {
  44962. front: {
  44963. height: math.unit(5 + 6/12, "feet"),
  44964. weight: math.unit(195, "lb"),
  44965. name: "Front",
  44966. image: {
  44967. source: "./media/characters/vant/front.svg",
  44968. extra: 1396/1320,
  44969. bottom: 20/1416
  44970. }
  44971. },
  44972. back: {
  44973. height: math.unit(5 + 6/12, "feet"),
  44974. weight: math.unit(195, "lb"),
  44975. name: "Back",
  44976. image: {
  44977. source: "./media/characters/vant/back.svg",
  44978. extra: 1396/1320,
  44979. bottom: 20/1416
  44980. }
  44981. },
  44982. maw: {
  44983. height: math.unit(0.75, "feet"),
  44984. name: "Maw",
  44985. image: {
  44986. source: "./media/characters/vant/maw.svg"
  44987. }
  44988. },
  44989. paw: {
  44990. height: math.unit(1.07, "feet"),
  44991. name: "Paw",
  44992. image: {
  44993. source: "./media/characters/vant/paw.svg"
  44994. }
  44995. },
  44996. },
  44997. [
  44998. {
  44999. name: "Micro",
  45000. height: math.unit(0.25, "inches")
  45001. },
  45002. {
  45003. name: "Normal",
  45004. height: math.unit(5 + 6/12, "feet"),
  45005. default: true
  45006. },
  45007. {
  45008. name: "Macro",
  45009. height: math.unit(75, "feet")
  45010. },
  45011. ]
  45012. ))
  45013. characterMakers.push(() => makeCharacter(
  45014. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45015. {
  45016. front: {
  45017. height: math.unit(30, "meters"),
  45018. weight: math.unit(363, "tons"),
  45019. name: "Front",
  45020. image: {
  45021. source: "./media/characters/ahra/front.svg",
  45022. extra: 1914/1814,
  45023. bottom: 46/1960
  45024. }
  45025. },
  45026. },
  45027. [
  45028. {
  45029. name: "Macro",
  45030. height: math.unit(30, "meters"),
  45031. default: true
  45032. },
  45033. ]
  45034. ))
  45035. characterMakers.push(() => makeCharacter(
  45036. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45037. {
  45038. undressed: {
  45039. height: math.unit(2, "m"),
  45040. weight: math.unit(250, "kg"),
  45041. name: "Undressed",
  45042. image: {
  45043. source: "./media/characters/coriander/undressed.svg",
  45044. extra: 1757/1606,
  45045. bottom: 107/1864
  45046. }
  45047. },
  45048. dressed: {
  45049. height: math.unit(2, "m"),
  45050. weight: math.unit(250, "kg"),
  45051. name: "Dressed",
  45052. image: {
  45053. source: "./media/characters/coriander/dressed.svg",
  45054. extra: 1757/1606,
  45055. bottom: 107/1864
  45056. }
  45057. },
  45058. },
  45059. [
  45060. {
  45061. name: "Normal",
  45062. height: math.unit(4, "meters"),
  45063. default: true
  45064. },
  45065. {
  45066. name: "XL",
  45067. height: math.unit(6, "meters")
  45068. },
  45069. {
  45070. name: "XXL",
  45071. height: math.unit(8, "meters")
  45072. },
  45073. ]
  45074. ))
  45075. characterMakers.push(() => makeCharacter(
  45076. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45077. {
  45078. front: {
  45079. height: math.unit(6, "feet"),
  45080. name: "Front",
  45081. image: {
  45082. source: "./media/characters/syrinx/front.svg",
  45083. extra: 1557/1259,
  45084. bottom: 171/1728
  45085. }
  45086. },
  45087. },
  45088. [
  45089. {
  45090. name: "Normal",
  45091. height: math.unit(6 + 3/12, "feet"),
  45092. default: true
  45093. },
  45094. ]
  45095. ))
  45096. characterMakers.push(() => makeCharacter(
  45097. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45098. {
  45099. front: {
  45100. height: math.unit(11 + 6/12, "feet"),
  45101. weight: math.unit(1.5, "tons"),
  45102. name: "Front",
  45103. image: {
  45104. source: "./media/characters/bor/front.svg",
  45105. extra: 1189/1109,
  45106. bottom: 170/1359
  45107. }
  45108. },
  45109. },
  45110. [
  45111. {
  45112. name: "Normal",
  45113. height: math.unit(11 + 6/12, "feet"),
  45114. default: true
  45115. },
  45116. {
  45117. name: "Macro",
  45118. height: math.unit(32 + 9/12, "feet")
  45119. },
  45120. ]
  45121. ))
  45122. characterMakers.push(() => makeCharacter(
  45123. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45124. {
  45125. anthro: {
  45126. height: math.unit(9, "feet"),
  45127. weight: math.unit(2076, "lb"),
  45128. name: "Anthro",
  45129. image: {
  45130. source: "./media/characters/abacus/anthro.svg",
  45131. extra: 1540/1494,
  45132. bottom: 233/1773
  45133. }
  45134. },
  45135. pigeon: {
  45136. height: math.unit(1, "feet"),
  45137. name: "Pigeon",
  45138. image: {
  45139. source: "./media/characters/abacus/pigeon.svg",
  45140. extra: 528/525,
  45141. bottom: 46/574
  45142. }
  45143. },
  45144. },
  45145. [
  45146. {
  45147. name: "Normal",
  45148. height: math.unit(9, "feet"),
  45149. default: true
  45150. },
  45151. ]
  45152. ))
  45153. characterMakers.push(() => makeCharacter(
  45154. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45155. {
  45156. side: {
  45157. height: math.unit(6, "feet"),
  45158. name: "Side",
  45159. image: {
  45160. source: "./media/characters/delkhan/side.svg",
  45161. extra: 1884/1786,
  45162. bottom: 308/2192
  45163. }
  45164. },
  45165. head: {
  45166. height: math.unit(3.38, "feet"),
  45167. name: "Head",
  45168. image: {
  45169. source: "./media/characters/delkhan/head.svg"
  45170. }
  45171. },
  45172. },
  45173. [
  45174. {
  45175. name: "Normal",
  45176. height: math.unit(72, "feet"),
  45177. default: true
  45178. },
  45179. {
  45180. name: "Giant",
  45181. height: math.unit(172, "feet")
  45182. },
  45183. ]
  45184. ))
  45185. characterMakers.push(() => makeCharacter(
  45186. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45187. {
  45188. standing: {
  45189. height: math.unit(6, "feet"),
  45190. name: "Standing",
  45191. image: {
  45192. source: "./media/characters/euchidat/standing.svg",
  45193. extra: 1612/1553,
  45194. bottom: 116/1728
  45195. }
  45196. },
  45197. leaning: {
  45198. height: math.unit(6, "feet"),
  45199. name: "Leaning",
  45200. image: {
  45201. source: "./media/characters/euchidat/leaning.svg",
  45202. extra: 1719/1674,
  45203. bottom: 27/1746
  45204. }
  45205. },
  45206. },
  45207. [
  45208. {
  45209. name: "Normal",
  45210. height: math.unit(175, "feet"),
  45211. default: true
  45212. },
  45213. {
  45214. name: "Megamacro",
  45215. height: math.unit(190, "miles")
  45216. },
  45217. {
  45218. name: "Gigamacro",
  45219. height: math.unit(190000, "miles")
  45220. },
  45221. ]
  45222. ))
  45223. characterMakers.push(() => makeCharacter(
  45224. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45225. {
  45226. front: {
  45227. height: math.unit(6, "feet"),
  45228. weight: math.unit(150, "lb"),
  45229. name: "Front",
  45230. image: {
  45231. source: "./media/characters/rebecca-stack/front.svg",
  45232. extra: 1256/1201,
  45233. bottom: 18/1274
  45234. }
  45235. },
  45236. },
  45237. [
  45238. {
  45239. name: "Normal",
  45240. height: math.unit(5 + 8/12, "feet"),
  45241. default: true
  45242. },
  45243. {
  45244. name: "Demolitionist",
  45245. height: math.unit(200, "feet")
  45246. },
  45247. {
  45248. name: "Out of Control",
  45249. height: math.unit(2, "miles")
  45250. },
  45251. {
  45252. name: "Giga",
  45253. height: math.unit(7200, "miles")
  45254. },
  45255. ]
  45256. ))
  45257. characterMakers.push(() => makeCharacter(
  45258. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45259. {
  45260. front: {
  45261. height: math.unit(6, "feet"),
  45262. weight: math.unit(150, "lb"),
  45263. name: "Front",
  45264. image: {
  45265. source: "./media/characters/jenny-cartwright/front.svg",
  45266. extra: 1384/1376,
  45267. bottom: 58/1442
  45268. }
  45269. },
  45270. },
  45271. [
  45272. {
  45273. name: "Normal",
  45274. height: math.unit(6 + 7/12, "feet"),
  45275. default: true
  45276. },
  45277. {
  45278. name: "Librarian",
  45279. height: math.unit(55, "feet")
  45280. },
  45281. {
  45282. name: "Sightseer",
  45283. height: math.unit(50, "miles")
  45284. },
  45285. {
  45286. name: "Giga",
  45287. height: math.unit(30000, "miles")
  45288. },
  45289. ]
  45290. ))
  45291. characterMakers.push(() => makeCharacter(
  45292. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45293. {
  45294. nude: {
  45295. height: math.unit(8, "feet"),
  45296. weight: math.unit(225, "lb"),
  45297. name: "Nude",
  45298. image: {
  45299. source: "./media/characters/marvy/nude.svg",
  45300. extra: 1900/1683,
  45301. bottom: 89/1989
  45302. }
  45303. },
  45304. dressed: {
  45305. height: math.unit(8, "feet"),
  45306. weight: math.unit(225, "lb"),
  45307. name: "Dressed",
  45308. image: {
  45309. source: "./media/characters/marvy/dressed.svg",
  45310. extra: 1900/1683,
  45311. bottom: 89/1989
  45312. }
  45313. },
  45314. head: {
  45315. height: math.unit(2.85, "feet"),
  45316. name: "Head",
  45317. image: {
  45318. source: "./media/characters/marvy/head.svg"
  45319. }
  45320. },
  45321. },
  45322. [
  45323. {
  45324. name: "Normal",
  45325. height: math.unit(8, "feet"),
  45326. default: true
  45327. },
  45328. ]
  45329. ))
  45330. characterMakers.push(() => makeCharacter(
  45331. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45332. {
  45333. front: {
  45334. height: math.unit(8, "feet"),
  45335. weight: math.unit(250, "lb"),
  45336. name: "Front",
  45337. image: {
  45338. source: "./media/characters/leah/front.svg",
  45339. extra: 1257/1149,
  45340. bottom: 109/1366
  45341. }
  45342. },
  45343. },
  45344. [
  45345. {
  45346. name: "Normal",
  45347. height: math.unit(8, "feet"),
  45348. default: true
  45349. },
  45350. {
  45351. name: "Minimacro",
  45352. height: math.unit(40, "feet")
  45353. },
  45354. {
  45355. name: "Macro",
  45356. height: math.unit(124, "feet")
  45357. },
  45358. {
  45359. name: "Megamacro",
  45360. height: math.unit(850, "feet")
  45361. },
  45362. ]
  45363. ))
  45364. characterMakers.push(() => makeCharacter(
  45365. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45366. {
  45367. side: {
  45368. height: math.unit(13 + 6/12, "feet"),
  45369. weight: math.unit(3200, "lb"),
  45370. name: "Side",
  45371. image: {
  45372. source: "./media/characters/alvir/side.svg",
  45373. extra: 896/589,
  45374. bottom: 26/922
  45375. }
  45376. },
  45377. },
  45378. [
  45379. {
  45380. name: "Normal",
  45381. height: math.unit(13 + 6/12, "feet"),
  45382. default: true
  45383. },
  45384. ]
  45385. ))
  45386. characterMakers.push(() => makeCharacter(
  45387. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45388. {
  45389. front: {
  45390. height: math.unit(5 + 4/12, "feet"),
  45391. weight: math.unit(236, "lb"),
  45392. name: "Front",
  45393. image: {
  45394. source: "./media/characters/zaina-khalil/front.svg",
  45395. extra: 1533/1485,
  45396. bottom: 94/1627
  45397. }
  45398. },
  45399. side: {
  45400. height: math.unit(5 + 4/12, "feet"),
  45401. weight: math.unit(236, "lb"),
  45402. name: "Side",
  45403. image: {
  45404. source: "./media/characters/zaina-khalil/side.svg",
  45405. extra: 1537/1498,
  45406. bottom: 66/1603
  45407. }
  45408. },
  45409. back: {
  45410. height: math.unit(5 + 4/12, "feet"),
  45411. weight: math.unit(236, "lb"),
  45412. name: "Back",
  45413. image: {
  45414. source: "./media/characters/zaina-khalil/back.svg",
  45415. extra: 1546/1494,
  45416. bottom: 89/1635
  45417. }
  45418. },
  45419. },
  45420. [
  45421. {
  45422. name: "Normal",
  45423. height: math.unit(5 + 4/12, "feet"),
  45424. default: true
  45425. },
  45426. ]
  45427. ))
  45428. characterMakers.push(() => makeCharacter(
  45429. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45430. {
  45431. side: {
  45432. height: math.unit(12, "feet"),
  45433. weight: math.unit(4000, "lb"),
  45434. name: "Side",
  45435. image: {
  45436. source: "./media/characters/terry/side.svg",
  45437. extra: 1518/1439,
  45438. bottom: 149/1667
  45439. }
  45440. },
  45441. },
  45442. [
  45443. {
  45444. name: "Normal",
  45445. height: math.unit(12, "feet"),
  45446. default: true
  45447. },
  45448. ]
  45449. ))
  45450. characterMakers.push(() => makeCharacter(
  45451. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45452. {
  45453. front: {
  45454. height: math.unit(12, "feet"),
  45455. weight: math.unit(1500, "lb"),
  45456. name: "Front",
  45457. image: {
  45458. source: "./media/characters/kahea/front.svg",
  45459. extra: 1722/1617,
  45460. bottom: 179/1901
  45461. }
  45462. },
  45463. },
  45464. [
  45465. {
  45466. name: "Normal",
  45467. height: math.unit(12, "feet"),
  45468. default: true
  45469. },
  45470. ]
  45471. ))
  45472. characterMakers.push(() => makeCharacter(
  45473. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45474. {
  45475. demonFront: {
  45476. height: math.unit(36, "feet"),
  45477. name: "Front",
  45478. image: {
  45479. source: "./media/characters/alex-xuria/demon-front.svg",
  45480. extra: 1705/1673,
  45481. bottom: 198/1903
  45482. },
  45483. form: "demon",
  45484. default: true
  45485. },
  45486. demonBack: {
  45487. height: math.unit(36, "feet"),
  45488. name: "Back",
  45489. image: {
  45490. source: "./media/characters/alex-xuria/demon-back.svg",
  45491. extra: 1725/1693,
  45492. bottom: 70/1795
  45493. },
  45494. form: "demon"
  45495. },
  45496. demonHead: {
  45497. height: math.unit(2.14, "meters"),
  45498. name: "Head",
  45499. image: {
  45500. source: "./media/characters/alex-xuria/demon-head.svg"
  45501. },
  45502. form: "demon"
  45503. },
  45504. demonHand: {
  45505. height: math.unit(1.61, "meters"),
  45506. name: "Hand",
  45507. image: {
  45508. source: "./media/characters/alex-xuria/demon-hand.svg"
  45509. },
  45510. form: "demon"
  45511. },
  45512. demonPaw: {
  45513. height: math.unit(1.35, "meters"),
  45514. name: "Paw",
  45515. image: {
  45516. source: "./media/characters/alex-xuria/demon-paw.svg"
  45517. },
  45518. form: "demon"
  45519. },
  45520. demonFoot: {
  45521. height: math.unit(2.2, "meters"),
  45522. name: "Foot",
  45523. image: {
  45524. source: "./media/characters/alex-xuria/demon-foot.svg"
  45525. },
  45526. form: "demon"
  45527. },
  45528. demonCock: {
  45529. height: math.unit(1.74, "meters"),
  45530. name: "Cock",
  45531. image: {
  45532. source: "./media/characters/alex-xuria/demon-cock.svg"
  45533. },
  45534. form: "demon"
  45535. },
  45536. demonTailClosed: {
  45537. height: math.unit(1.47, "meters"),
  45538. name: "Tail (Closed)",
  45539. image: {
  45540. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45541. },
  45542. form: "demon"
  45543. },
  45544. demonTailOpen: {
  45545. height: math.unit(2.85, "meters"),
  45546. name: "Tail (Open)",
  45547. image: {
  45548. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45549. },
  45550. form: "demon"
  45551. },
  45552. incubusFront: {
  45553. height: math.unit(12, "feet"),
  45554. name: "Front",
  45555. image: {
  45556. source: "./media/characters/alex-xuria/incubus-front.svg",
  45557. extra: 1754/1677,
  45558. bottom: 125/1879
  45559. },
  45560. form: "incubus",
  45561. default: true
  45562. },
  45563. incubusBack: {
  45564. height: math.unit(12, "feet"),
  45565. name: "Back",
  45566. image: {
  45567. source: "./media/characters/alex-xuria/incubus-back.svg",
  45568. extra: 1702/1647,
  45569. bottom: 30/1732
  45570. },
  45571. form: "incubus"
  45572. },
  45573. incubusHead: {
  45574. height: math.unit(3.45, "feet"),
  45575. name: "Head",
  45576. image: {
  45577. source: "./media/characters/alex-xuria/incubus-head.svg"
  45578. },
  45579. form: "incubus"
  45580. },
  45581. rabbitFront: {
  45582. height: math.unit(6, "feet"),
  45583. name: "Front",
  45584. image: {
  45585. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45586. extra: 1369/1349,
  45587. bottom: 45/1414
  45588. },
  45589. form: "rabbit",
  45590. default: true
  45591. },
  45592. rabbitSide: {
  45593. height: math.unit(6, "feet"),
  45594. name: "Side",
  45595. image: {
  45596. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45597. extra: 1370/1356,
  45598. bottom: 37/1407
  45599. },
  45600. form: "rabbit"
  45601. },
  45602. rabbitBack: {
  45603. height: math.unit(6, "feet"),
  45604. name: "Back",
  45605. image: {
  45606. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45607. extra: 1375/1358,
  45608. bottom: 43/1418
  45609. },
  45610. form: "rabbit"
  45611. },
  45612. },
  45613. [
  45614. {
  45615. name: "Normal",
  45616. height: math.unit(6, "feet"),
  45617. default: true,
  45618. form: "rabbit"
  45619. },
  45620. {
  45621. name: "Incubus",
  45622. height: math.unit(12, "feet"),
  45623. default: true,
  45624. form: "incubus"
  45625. },
  45626. {
  45627. name: "Demon",
  45628. height: math.unit(36, "feet"),
  45629. default: true,
  45630. form: "demon"
  45631. }
  45632. ],
  45633. {
  45634. "demon": {
  45635. name: "Demon",
  45636. default: true
  45637. },
  45638. "incubus": {
  45639. name: "Incubus",
  45640. },
  45641. "rabbit": {
  45642. name: "Rabbit"
  45643. }
  45644. }
  45645. ))
  45646. characterMakers.push(() => makeCharacter(
  45647. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45648. {
  45649. front: {
  45650. height: math.unit(7 + 5/12, "feet"),
  45651. weight: math.unit(510, "lb"),
  45652. name: "Front",
  45653. image: {
  45654. source: "./media/characters/syrup/front.svg",
  45655. extra: 932/916,
  45656. bottom: 26/958
  45657. }
  45658. },
  45659. },
  45660. [
  45661. {
  45662. name: "Normal",
  45663. height: math.unit(7 + 5/12, "feet"),
  45664. default: true
  45665. },
  45666. {
  45667. name: "Big",
  45668. height: math.unit(50, "feet")
  45669. },
  45670. {
  45671. name: "Macro",
  45672. height: math.unit(300, "feet")
  45673. },
  45674. {
  45675. name: "Megamacro",
  45676. height: math.unit(1, "mile")
  45677. },
  45678. ]
  45679. ))
  45680. characterMakers.push(() => makeCharacter(
  45681. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45682. {
  45683. front: {
  45684. height: math.unit(6 + 9/12, "feet"),
  45685. name: "Front",
  45686. image: {
  45687. source: "./media/characters/zeimne/front.svg",
  45688. extra: 1969/1806,
  45689. bottom: 53/2022
  45690. }
  45691. },
  45692. },
  45693. [
  45694. {
  45695. name: "Normal",
  45696. height: math.unit(6 + 9/12, "feet"),
  45697. default: true
  45698. },
  45699. {
  45700. name: "Giant",
  45701. height: math.unit(550, "feet")
  45702. },
  45703. {
  45704. name: "Mega",
  45705. height: math.unit(3, "miles")
  45706. },
  45707. {
  45708. name: "Giga",
  45709. height: math.unit(250, "miles")
  45710. },
  45711. {
  45712. name: "Tera",
  45713. height: math.unit(1, "AU")
  45714. },
  45715. ]
  45716. ))
  45717. characterMakers.push(() => makeCharacter(
  45718. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45719. {
  45720. front: {
  45721. height: math.unit(5 + 2/12, "feet"),
  45722. name: "Front",
  45723. image: {
  45724. source: "./media/characters/grar/front.svg",
  45725. extra: 1331/1119,
  45726. bottom: 60/1391
  45727. }
  45728. },
  45729. back: {
  45730. height: math.unit(5 + 2/12, "feet"),
  45731. name: "Back",
  45732. image: {
  45733. source: "./media/characters/grar/back.svg",
  45734. extra: 1385/1169,
  45735. bottom: 23/1408
  45736. }
  45737. },
  45738. },
  45739. [
  45740. {
  45741. name: "Normal",
  45742. height: math.unit(5 + 2/12, "feet"),
  45743. default: true
  45744. },
  45745. ]
  45746. ))
  45747. characterMakers.push(() => makeCharacter(
  45748. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45749. {
  45750. front: {
  45751. height: math.unit(13 + 7/12, "feet"),
  45752. weight: math.unit(2200, "lb"),
  45753. name: "Front",
  45754. image: {
  45755. source: "./media/characters/endraya/front.svg",
  45756. extra: 1289/1215,
  45757. bottom: 50/1339
  45758. }
  45759. },
  45760. nude: {
  45761. height: math.unit(13 + 7/12, "feet"),
  45762. weight: math.unit(2200, "lb"),
  45763. name: "Nude",
  45764. image: {
  45765. source: "./media/characters/endraya/nude.svg",
  45766. extra: 1247/1171,
  45767. bottom: 40/1287
  45768. }
  45769. },
  45770. head: {
  45771. height: math.unit(2.6, "feet"),
  45772. name: "Head",
  45773. image: {
  45774. source: "./media/characters/endraya/head.svg"
  45775. }
  45776. },
  45777. slit: {
  45778. height: math.unit(3.4, "feet"),
  45779. name: "Slit",
  45780. image: {
  45781. source: "./media/characters/endraya/slit.svg"
  45782. }
  45783. },
  45784. },
  45785. [
  45786. {
  45787. name: "Normal",
  45788. height: math.unit(13 + 7/12, "feet"),
  45789. default: true
  45790. },
  45791. {
  45792. name: "Macro",
  45793. height: math.unit(200, "feet")
  45794. },
  45795. ]
  45796. ))
  45797. characterMakers.push(() => makeCharacter(
  45798. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45799. {
  45800. front: {
  45801. height: math.unit(412, "meters"),
  45802. name: "Front",
  45803. image: {
  45804. source: "./media/characters/rodryana/front.svg",
  45805. extra: 2002/1921,
  45806. bottom: 53/2055
  45807. }
  45808. },
  45809. back: {
  45810. height: math.unit(412, "meters"),
  45811. name: "Back",
  45812. image: {
  45813. source: "./media/characters/rodryana/back.svg",
  45814. extra: 1993/1926,
  45815. bottom: 48/2041
  45816. }
  45817. },
  45818. maw: {
  45819. height: math.unit(45, "meters"),
  45820. name: "Maw",
  45821. image: {
  45822. source: "./media/characters/rodryana/maw.svg"
  45823. }
  45824. },
  45825. slit: {
  45826. height: math.unit(72, "meters"),
  45827. name: "Slit",
  45828. image: {
  45829. source: "./media/characters/rodryana/slit.svg"
  45830. }
  45831. },
  45832. },
  45833. [
  45834. {
  45835. name: "Macro",
  45836. height: math.unit(412, "meters"),
  45837. default: true
  45838. },
  45839. ]
  45840. ))
  45841. characterMakers.push(() => makeCharacter(
  45842. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45843. {
  45844. front: {
  45845. height: math.unit(6, "feet"),
  45846. weight: math.unit(1000, "lb"),
  45847. name: "Front",
  45848. image: {
  45849. source: "./media/characters/asaya/front.svg",
  45850. extra: 1460/1200,
  45851. bottom: 71/1531
  45852. }
  45853. },
  45854. },
  45855. [
  45856. {
  45857. name: "Normal",
  45858. height: math.unit(8, "km"),
  45859. default: true
  45860. },
  45861. ]
  45862. ))
  45863. characterMakers.push(() => makeCharacter(
  45864. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45865. {
  45866. front: {
  45867. height: math.unit(3.5, "meters"),
  45868. name: "Front",
  45869. image: {
  45870. source: "./media/characters/sarzu-and-israz/front.svg",
  45871. extra: 1570/1558,
  45872. bottom: 150/1720
  45873. },
  45874. },
  45875. back: {
  45876. height: math.unit(3.5, "meters"),
  45877. name: "Back",
  45878. image: {
  45879. source: "./media/characters/sarzu-and-israz/back.svg",
  45880. extra: 1523/1509,
  45881. bottom: 132/1655
  45882. },
  45883. },
  45884. frontFemale: {
  45885. height: math.unit(3.5, "meters"),
  45886. name: "Front (Female)",
  45887. image: {
  45888. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45889. extra: 1570/1558,
  45890. bottom: 150/1720
  45891. },
  45892. },
  45893. frontHerm: {
  45894. height: math.unit(3.5, "meters"),
  45895. name: "Front (Herm)",
  45896. image: {
  45897. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45898. extra: 1570/1558,
  45899. bottom: 150/1720
  45900. },
  45901. },
  45902. },
  45903. [
  45904. {
  45905. name: "Normal",
  45906. height: math.unit(3.5, "meters"),
  45907. default: true,
  45908. },
  45909. {
  45910. name: "Macro",
  45911. height: math.unit(65.5, "meters"),
  45912. },
  45913. ],
  45914. ))
  45915. characterMakers.push(() => makeCharacter(
  45916. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45917. {
  45918. front: {
  45919. height: math.unit(6, "feet"),
  45920. weight: math.unit(250, "lb"),
  45921. name: "Front",
  45922. image: {
  45923. source: "./media/characters/zenimma/front.svg",
  45924. extra: 1346/1320,
  45925. bottom: 58/1404
  45926. }
  45927. },
  45928. back: {
  45929. height: math.unit(6, "feet"),
  45930. weight: math.unit(250, "lb"),
  45931. name: "Back",
  45932. image: {
  45933. source: "./media/characters/zenimma/back.svg",
  45934. extra: 1324/1308,
  45935. bottom: 44/1368
  45936. }
  45937. },
  45938. dick: {
  45939. height: math.unit(1.44, "feet"),
  45940. name: "Dick",
  45941. image: {
  45942. source: "./media/characters/zenimma/dick.svg"
  45943. }
  45944. },
  45945. },
  45946. [
  45947. {
  45948. name: "Canon Height",
  45949. height: math.unit(66, "miles"),
  45950. default: true
  45951. },
  45952. ]
  45953. ))
  45954. characterMakers.push(() => makeCharacter(
  45955. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45956. {
  45957. nude: {
  45958. height: math.unit(6, "feet"),
  45959. weight: math.unit(150, "lb"),
  45960. name: "Nude",
  45961. image: {
  45962. source: "./media/characters/shavon/nude.svg",
  45963. extra: 1242/1096,
  45964. bottom: 98/1340
  45965. }
  45966. },
  45967. dressed: {
  45968. height: math.unit(6, "feet"),
  45969. weight: math.unit(150, "lb"),
  45970. name: "Dressed",
  45971. image: {
  45972. source: "./media/characters/shavon/dressed.svg",
  45973. extra: 1242/1096,
  45974. bottom: 98/1340
  45975. }
  45976. },
  45977. },
  45978. [
  45979. {
  45980. name: "Macro",
  45981. height: math.unit(255, "feet"),
  45982. default: true
  45983. },
  45984. ]
  45985. ))
  45986. characterMakers.push(() => makeCharacter(
  45987. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45988. {
  45989. front: {
  45990. height: math.unit(6, "feet"),
  45991. name: "Front",
  45992. image: {
  45993. source: "./media/characters/steph/front.svg",
  45994. extra: 1430/1330,
  45995. bottom: 54/1484
  45996. }
  45997. },
  45998. },
  45999. [
  46000. {
  46001. name: "Normal",
  46002. height: math.unit(6, "feet"),
  46003. default: true
  46004. },
  46005. ]
  46006. ))
  46007. characterMakers.push(() => makeCharacter(
  46008. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46009. {
  46010. front: {
  46011. height: math.unit(9, "feet"),
  46012. weight: math.unit(400, "lb"),
  46013. name: "Front",
  46014. image: {
  46015. source: "./media/characters/kil'aman/front.svg",
  46016. extra: 1210/1159,
  46017. bottom: 109/1319
  46018. }
  46019. },
  46020. head: {
  46021. height: math.unit(2.14, "feet"),
  46022. name: "Head",
  46023. image: {
  46024. source: "./media/characters/kil'aman/head.svg"
  46025. }
  46026. },
  46027. maw: {
  46028. height: math.unit(1.21, "feet"),
  46029. name: "Maw",
  46030. image: {
  46031. source: "./media/characters/kil'aman/maw.svg"
  46032. }
  46033. },
  46034. foot: {
  46035. height: math.unit(1.7, "feet"),
  46036. name: "Foot",
  46037. image: {
  46038. source: "./media/characters/kil'aman/foot.svg"
  46039. }
  46040. },
  46041. dick: {
  46042. height: math.unit(2.1, "feet"),
  46043. name: "Dick",
  46044. image: {
  46045. source: "./media/characters/kil'aman/dick.svg"
  46046. }
  46047. },
  46048. },
  46049. [
  46050. {
  46051. name: "Normal",
  46052. height: math.unit(9, "feet")
  46053. },
  46054. {
  46055. name: "Canon Height",
  46056. height: math.unit(10, "miles"),
  46057. default: true
  46058. },
  46059. {
  46060. name: "Maximum",
  46061. height: math.unit(6e9, "miles")
  46062. },
  46063. ]
  46064. ))
  46065. characterMakers.push(() => makeCharacter(
  46066. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46067. {
  46068. front: {
  46069. height: math.unit(90, "feet"),
  46070. weight: math.unit(675000, "lb"),
  46071. name: "Front",
  46072. image: {
  46073. source: "./media/characters/qadan/front.svg",
  46074. extra: 1012/1004,
  46075. bottom: 78/1090
  46076. }
  46077. },
  46078. back: {
  46079. height: math.unit(90, "feet"),
  46080. weight: math.unit(675000, "lb"),
  46081. name: "Back",
  46082. image: {
  46083. source: "./media/characters/qadan/back.svg",
  46084. extra: 1042/1031,
  46085. bottom: 55/1097
  46086. }
  46087. },
  46088. armored: {
  46089. height: math.unit(90, "feet"),
  46090. weight: math.unit(675000, "lb"),
  46091. name: "Armored",
  46092. image: {
  46093. source: "./media/characters/qadan/armored.svg",
  46094. extra: 1047/1037,
  46095. bottom: 48/1095
  46096. }
  46097. },
  46098. },
  46099. [
  46100. {
  46101. name: "Normal",
  46102. height: math.unit(90, "feet"),
  46103. default: true
  46104. },
  46105. ]
  46106. ))
  46107. characterMakers.push(() => makeCharacter(
  46108. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46109. {
  46110. front: {
  46111. height: math.unit(6, "feet"),
  46112. weight: math.unit(225, "lb"),
  46113. name: "Front",
  46114. image: {
  46115. source: "./media/characters/brooke/front.svg",
  46116. extra: 1050/1010,
  46117. bottom: 66/1116
  46118. }
  46119. },
  46120. back: {
  46121. height: math.unit(6, "feet"),
  46122. weight: math.unit(225, "lb"),
  46123. name: "Back",
  46124. image: {
  46125. source: "./media/characters/brooke/back.svg",
  46126. extra: 1053/1013,
  46127. bottom: 41/1094
  46128. }
  46129. },
  46130. dressed: {
  46131. height: math.unit(6, "feet"),
  46132. weight: math.unit(225, "lb"),
  46133. name: "Dressed",
  46134. image: {
  46135. source: "./media/characters/brooke/dressed.svg",
  46136. extra: 1050/1010,
  46137. bottom: 66/1116
  46138. }
  46139. },
  46140. },
  46141. [
  46142. {
  46143. name: "Canon Height",
  46144. height: math.unit(500, "miles"),
  46145. default: true
  46146. },
  46147. ]
  46148. ))
  46149. characterMakers.push(() => makeCharacter(
  46150. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46151. {
  46152. front: {
  46153. height: math.unit(6 + 2/12, "feet"),
  46154. weight: math.unit(210, "lb"),
  46155. name: "Front",
  46156. image: {
  46157. source: "./media/characters/wubs/front.svg",
  46158. extra: 1345/1325,
  46159. bottom: 70/1415
  46160. }
  46161. },
  46162. back: {
  46163. height: math.unit(6 + 2/12, "feet"),
  46164. weight: math.unit(210, "lb"),
  46165. name: "Back",
  46166. image: {
  46167. source: "./media/characters/wubs/back.svg",
  46168. extra: 1296/1275,
  46169. bottom: 58/1354
  46170. }
  46171. },
  46172. },
  46173. [
  46174. {
  46175. name: "Normal",
  46176. height: math.unit(6 + 2/12, "feet"),
  46177. default: true
  46178. },
  46179. {
  46180. name: "Macro",
  46181. height: math.unit(1000, "feet")
  46182. },
  46183. {
  46184. name: "Megamacro",
  46185. height: math.unit(1, "mile")
  46186. },
  46187. ]
  46188. ))
  46189. characterMakers.push(() => makeCharacter(
  46190. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46191. {
  46192. front: {
  46193. height: math.unit(4, "feet"),
  46194. weight: math.unit(120, "lb"),
  46195. name: "Front",
  46196. image: {
  46197. source: "./media/characters/blue/front.svg",
  46198. extra: 1636/1525,
  46199. bottom: 43/1679
  46200. }
  46201. },
  46202. back: {
  46203. height: math.unit(4, "feet"),
  46204. weight: math.unit(120, "lb"),
  46205. name: "Back",
  46206. image: {
  46207. source: "./media/characters/blue/back.svg",
  46208. extra: 1660/1560,
  46209. bottom: 57/1717
  46210. }
  46211. },
  46212. paws: {
  46213. height: math.unit(0.826, "feet"),
  46214. name: "Paws",
  46215. image: {
  46216. source: "./media/characters/blue/paws.svg"
  46217. }
  46218. },
  46219. },
  46220. [
  46221. {
  46222. name: "Micro",
  46223. height: math.unit(3, "inches")
  46224. },
  46225. {
  46226. name: "Normal",
  46227. height: math.unit(4, "feet"),
  46228. default: true
  46229. },
  46230. {
  46231. name: "Femenine Form",
  46232. height: math.unit(14, "feet")
  46233. },
  46234. {
  46235. name: "Werebat Form",
  46236. height: math.unit(18, "feet")
  46237. },
  46238. ]
  46239. ))
  46240. characterMakers.push(() => makeCharacter(
  46241. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46242. {
  46243. female: {
  46244. height: math.unit(7 + 4/12, "feet"),
  46245. weight: math.unit(243, "lb"),
  46246. name: "Female",
  46247. image: {
  46248. source: "./media/characters/kaya/female.svg",
  46249. extra: 975/898,
  46250. bottom: 34/1009
  46251. }
  46252. },
  46253. herm: {
  46254. height: math.unit(7 + 4/12, "feet"),
  46255. weight: math.unit(243, "lb"),
  46256. name: "Herm",
  46257. image: {
  46258. source: "./media/characters/kaya/herm.svg",
  46259. extra: 975/898,
  46260. bottom: 34/1009
  46261. }
  46262. },
  46263. },
  46264. [
  46265. {
  46266. name: "Normal",
  46267. height: math.unit(7 + 4/12, "feet"),
  46268. default: true
  46269. },
  46270. ]
  46271. ))
  46272. characterMakers.push(() => makeCharacter(
  46273. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46274. {
  46275. female: {
  46276. height: math.unit(9 + 4/12, "feet"),
  46277. weight: math.unit(398, "lb"),
  46278. name: "Female",
  46279. image: {
  46280. source: "./media/characters/kassandra/female.svg",
  46281. extra: 908/839,
  46282. bottom: 61/969
  46283. }
  46284. },
  46285. intersex: {
  46286. height: math.unit(9 + 4/12, "feet"),
  46287. weight: math.unit(398, "lb"),
  46288. name: "Intersex",
  46289. image: {
  46290. source: "./media/characters/kassandra/intersex.svg",
  46291. extra: 908/839,
  46292. bottom: 61/969
  46293. }
  46294. },
  46295. },
  46296. [
  46297. {
  46298. name: "Normal",
  46299. height: math.unit(9 + 4/12, "feet"),
  46300. default: true
  46301. },
  46302. ]
  46303. ))
  46304. characterMakers.push(() => makeCharacter(
  46305. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46306. {
  46307. front: {
  46308. height: math.unit(3, "meters"),
  46309. name: "Front",
  46310. image: {
  46311. source: "./media/characters/amy/front.svg",
  46312. extra: 1380/1343,
  46313. bottom: 70/1450
  46314. }
  46315. },
  46316. back: {
  46317. height: math.unit(3, "meters"),
  46318. name: "Back",
  46319. image: {
  46320. source: "./media/characters/amy/back.svg",
  46321. extra: 1380/1347,
  46322. bottom: 66/1446
  46323. }
  46324. },
  46325. },
  46326. [
  46327. {
  46328. name: "Normal",
  46329. height: math.unit(3, "meters"),
  46330. default: true
  46331. },
  46332. ]
  46333. ))
  46334. characterMakers.push(() => makeCharacter(
  46335. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46336. {
  46337. side: {
  46338. height: math.unit(47, "cm"),
  46339. weight: math.unit(10.8, "kg"),
  46340. name: "Side",
  46341. image: {
  46342. source: "./media/characters/alphaschakal/side.svg",
  46343. extra: 1058/568,
  46344. bottom: 62/1120
  46345. }
  46346. },
  46347. back: {
  46348. height: math.unit(78, "cm"),
  46349. weight: math.unit(10.8, "kg"),
  46350. name: "Back",
  46351. image: {
  46352. source: "./media/characters/alphaschakal/back.svg",
  46353. extra: 1102/942,
  46354. bottom: 185/1287
  46355. }
  46356. },
  46357. head: {
  46358. height: math.unit(28, "cm"),
  46359. name: "Head",
  46360. image: {
  46361. source: "./media/characters/alphaschakal/head.svg",
  46362. extra: 696/508,
  46363. bottom: 0/696
  46364. }
  46365. },
  46366. paw: {
  46367. height: math.unit(16, "cm"),
  46368. name: "Paw",
  46369. image: {
  46370. source: "./media/characters/alphaschakal/paw.svg"
  46371. }
  46372. },
  46373. },
  46374. [
  46375. {
  46376. name: "Normal",
  46377. height: math.unit(47, "cm"),
  46378. default: true
  46379. },
  46380. {
  46381. name: "Macro",
  46382. height: math.unit(340, "cm")
  46383. },
  46384. ]
  46385. ))
  46386. characterMakers.push(() => makeCharacter(
  46387. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46388. {
  46389. front: {
  46390. height: math.unit(36, "earths"),
  46391. name: "Front",
  46392. image: {
  46393. source: "./media/characters/ecobyss/front.svg",
  46394. extra: 1282/1215,
  46395. bottom: 11/1293
  46396. }
  46397. },
  46398. back: {
  46399. height: math.unit(36, "earths"),
  46400. name: "Back",
  46401. image: {
  46402. source: "./media/characters/ecobyss/back.svg",
  46403. extra: 1291/1222,
  46404. bottom: 8/1299
  46405. }
  46406. },
  46407. },
  46408. [
  46409. {
  46410. name: "Normal",
  46411. height: math.unit(36, "earths"),
  46412. default: true
  46413. },
  46414. ]
  46415. ))
  46416. characterMakers.push(() => makeCharacter(
  46417. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46418. {
  46419. front: {
  46420. height: math.unit(12, "feet"),
  46421. name: "Front",
  46422. image: {
  46423. source: "./media/characters/vasuk/front.svg",
  46424. extra: 1326/1207,
  46425. bottom: 64/1390
  46426. }
  46427. },
  46428. },
  46429. [
  46430. {
  46431. name: "Normal",
  46432. height: math.unit(12, "feet"),
  46433. default: true
  46434. },
  46435. ]
  46436. ))
  46437. characterMakers.push(() => makeCharacter(
  46438. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46439. {
  46440. side: {
  46441. height: math.unit(100, "feet"),
  46442. name: "Side",
  46443. image: {
  46444. source: "./media/characters/linneaus/side.svg",
  46445. extra: 987/807,
  46446. bottom: 47/1034
  46447. }
  46448. },
  46449. },
  46450. [
  46451. {
  46452. name: "Macro",
  46453. height: math.unit(100, "feet"),
  46454. default: true
  46455. },
  46456. ]
  46457. ))
  46458. characterMakers.push(() => makeCharacter(
  46459. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46460. {
  46461. front: {
  46462. height: math.unit(8, "feet"),
  46463. weight: math.unit(1200, "lb"),
  46464. name: "Front",
  46465. image: {
  46466. source: "./media/characters/nyterious-daligdig/front.svg",
  46467. extra: 1284/1094,
  46468. bottom: 84/1368
  46469. }
  46470. },
  46471. back: {
  46472. height: math.unit(8, "feet"),
  46473. weight: math.unit(1200, "lb"),
  46474. name: "Back",
  46475. image: {
  46476. source: "./media/characters/nyterious-daligdig/back.svg",
  46477. extra: 1301/1121,
  46478. bottom: 129/1430
  46479. }
  46480. },
  46481. mouth: {
  46482. height: math.unit(1.464, "feet"),
  46483. name: "Mouth",
  46484. image: {
  46485. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46486. }
  46487. },
  46488. },
  46489. [
  46490. {
  46491. name: "Small",
  46492. height: math.unit(8, "feet"),
  46493. default: true
  46494. },
  46495. {
  46496. name: "Normal",
  46497. height: math.unit(15, "feet")
  46498. },
  46499. {
  46500. name: "Macro",
  46501. height: math.unit(90, "feet")
  46502. },
  46503. ]
  46504. ))
  46505. characterMakers.push(() => makeCharacter(
  46506. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46507. {
  46508. front: {
  46509. height: math.unit(7 + 4/12, "feet"),
  46510. weight: math.unit(252, "lb"),
  46511. name: "Front",
  46512. image: {
  46513. source: "./media/characters/bandel/front.svg",
  46514. extra: 1946/1775,
  46515. bottom: 26/1972
  46516. }
  46517. },
  46518. back: {
  46519. height: math.unit(7 + 4/12, "feet"),
  46520. weight: math.unit(252, "lb"),
  46521. name: "Back",
  46522. image: {
  46523. source: "./media/characters/bandel/back.svg",
  46524. extra: 1940/1770,
  46525. bottom: 25/1965
  46526. }
  46527. },
  46528. maw: {
  46529. height: math.unit(2.15, "feet"),
  46530. name: "Maw",
  46531. image: {
  46532. source: "./media/characters/bandel/maw.svg"
  46533. }
  46534. },
  46535. stomach: {
  46536. height: math.unit(1.95, "feet"),
  46537. name: "Stomach",
  46538. image: {
  46539. source: "./media/characters/bandel/stomach.svg"
  46540. }
  46541. },
  46542. },
  46543. [
  46544. {
  46545. name: "Normal",
  46546. height: math.unit(7 + 4/12, "feet"),
  46547. default: true
  46548. },
  46549. ]
  46550. ))
  46551. characterMakers.push(() => makeCharacter(
  46552. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46553. {
  46554. front: {
  46555. height: math.unit(10 + 5/12, "feet"),
  46556. weight: math.unit(773.5, "kg"),
  46557. name: "Front",
  46558. image: {
  46559. source: "./media/characters/zed/front.svg",
  46560. extra: 987/941,
  46561. bottom: 52/1039
  46562. }
  46563. },
  46564. },
  46565. [
  46566. {
  46567. name: "Short",
  46568. height: math.unit(5 + 4/12, "feet")
  46569. },
  46570. {
  46571. name: "Average",
  46572. height: math.unit(10 + 5/12, "feet"),
  46573. default: true
  46574. },
  46575. {
  46576. name: "Mini-Macro",
  46577. height: math.unit(24 + 9/12, "feet")
  46578. },
  46579. {
  46580. name: "Macro",
  46581. height: math.unit(249, "feet")
  46582. },
  46583. {
  46584. name: "Mega-Macro",
  46585. height: math.unit(12490, "feet")
  46586. },
  46587. {
  46588. name: "Giga-Macro",
  46589. height: math.unit(24.9, "miles")
  46590. },
  46591. {
  46592. name: "Tera-Macro",
  46593. height: math.unit(24900, "miles")
  46594. },
  46595. {
  46596. name: "Cosmic Scale",
  46597. height: math.unit(38.9, "lightyears")
  46598. },
  46599. {
  46600. name: "Universal Scale",
  46601. height: math.unit(138e12, "lightyears")
  46602. },
  46603. ]
  46604. ))
  46605. characterMakers.push(() => makeCharacter(
  46606. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46607. {
  46608. front: {
  46609. height: math.unit(1561, "inches"),
  46610. name: "Front",
  46611. image: {
  46612. source: "./media/characters/ivan/front.svg",
  46613. extra: 1126/1071,
  46614. bottom: 26/1152
  46615. }
  46616. },
  46617. back: {
  46618. height: math.unit(1561, "inches"),
  46619. name: "Back",
  46620. image: {
  46621. source: "./media/characters/ivan/back.svg",
  46622. extra: 1134/1079,
  46623. bottom: 30/1164
  46624. }
  46625. },
  46626. },
  46627. [
  46628. {
  46629. name: "Normal",
  46630. height: math.unit(1561, "inches"),
  46631. default: true
  46632. },
  46633. ]
  46634. ))
  46635. characterMakers.push(() => makeCharacter(
  46636. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46637. {
  46638. front: {
  46639. height: math.unit(5 + 7/12, "feet"),
  46640. weight: math.unit(150, "lb"),
  46641. name: "Front",
  46642. image: {
  46643. source: "./media/characters/robin-arctic-hare/front.svg",
  46644. extra: 1148/974,
  46645. bottom: 20/1168
  46646. }
  46647. },
  46648. },
  46649. [
  46650. {
  46651. name: "Normal",
  46652. height: math.unit(5 + 7/12, "feet"),
  46653. default: true
  46654. },
  46655. ]
  46656. ))
  46657. characterMakers.push(() => makeCharacter(
  46658. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46659. {
  46660. side: {
  46661. height: math.unit(5, "feet"),
  46662. name: "Side",
  46663. image: {
  46664. source: "./media/characters/birch/side.svg",
  46665. extra: 985/796,
  46666. bottom: 111/1096
  46667. }
  46668. },
  46669. },
  46670. [
  46671. {
  46672. name: "Normal",
  46673. height: math.unit(5, "feet"),
  46674. default: true
  46675. },
  46676. ]
  46677. ))
  46678. characterMakers.push(() => makeCharacter(
  46679. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46680. {
  46681. front: {
  46682. height: math.unit(4, "feet"),
  46683. name: "Front",
  46684. image: {
  46685. source: "./media/characters/rasp/front.svg",
  46686. extra: 561/478,
  46687. bottom: 74/635
  46688. }
  46689. },
  46690. },
  46691. [
  46692. {
  46693. name: "Normal",
  46694. height: math.unit(4, "feet"),
  46695. default: true
  46696. },
  46697. ]
  46698. ))
  46699. characterMakers.push(() => makeCharacter(
  46700. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  46701. {
  46702. front: {
  46703. height: math.unit(4 + 6/12, "feet"),
  46704. name: "Front",
  46705. image: {
  46706. source: "./media/characters/agatha/front.svg",
  46707. extra: 947/933,
  46708. bottom: 42/989
  46709. }
  46710. },
  46711. back: {
  46712. height: math.unit(4 + 6/12, "feet"),
  46713. name: "Back",
  46714. image: {
  46715. source: "./media/characters/agatha/back.svg",
  46716. extra: 935/922,
  46717. bottom: 48/983
  46718. }
  46719. },
  46720. },
  46721. [
  46722. {
  46723. name: "Normal",
  46724. height: math.unit(4 + 6 /12, "feet"),
  46725. default: true
  46726. },
  46727. {
  46728. name: "Max Size",
  46729. height: math.unit(500, "feet")
  46730. },
  46731. ]
  46732. ))
  46733. characterMakers.push(() => makeCharacter(
  46734. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  46735. {
  46736. side: {
  46737. height: math.unit(30, "feet"),
  46738. name: "Side",
  46739. image: {
  46740. source: "./media/characters/roggy/side.svg",
  46741. extra: 909/643,
  46742. bottom: 63/972
  46743. }
  46744. },
  46745. lounging: {
  46746. height: math.unit(20, "feet"),
  46747. name: "Lounging",
  46748. image: {
  46749. source: "./media/characters/roggy/lounging.svg",
  46750. extra: 643/479,
  46751. bottom: 145/788
  46752. }
  46753. },
  46754. handpaw: {
  46755. height: math.unit(13.1, "feet"),
  46756. name: "Handpaw",
  46757. image: {
  46758. source: "./media/characters/roggy/handpaw.svg"
  46759. }
  46760. },
  46761. footpaw: {
  46762. height: math.unit(15.8, "feet"),
  46763. name: "Footpaw",
  46764. image: {
  46765. source: "./media/characters/roggy/footpaw.svg"
  46766. }
  46767. },
  46768. },
  46769. [
  46770. {
  46771. name: "Menacing",
  46772. height: math.unit(30, "feet"),
  46773. default: true
  46774. },
  46775. ]
  46776. ))
  46777. characterMakers.push(() => makeCharacter(
  46778. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  46779. {
  46780. front: {
  46781. height: math.unit(5 + 7/12, "feet"),
  46782. weight: math.unit(135, "lb"),
  46783. name: "Front",
  46784. image: {
  46785. source: "./media/characters/naomi/front.svg",
  46786. extra: 1209/1154,
  46787. bottom: 129/1338
  46788. }
  46789. },
  46790. back: {
  46791. height: math.unit(5 + 7/12, "feet"),
  46792. weight: math.unit(135, "lb"),
  46793. name: "Back",
  46794. image: {
  46795. source: "./media/characters/naomi/back.svg",
  46796. extra: 1252/1190,
  46797. bottom: 23/1275
  46798. }
  46799. },
  46800. },
  46801. [
  46802. {
  46803. name: "Normal",
  46804. height: math.unit(5 + 7 /12, "feet"),
  46805. default: true
  46806. },
  46807. ]
  46808. ))
  46809. characterMakers.push(() => makeCharacter(
  46810. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  46811. {
  46812. side: {
  46813. height: math.unit(35, "meters"),
  46814. name: "Side",
  46815. image: {
  46816. source: "./media/characters/kimpi/side.svg",
  46817. extra: 419/382,
  46818. bottom: 63/482
  46819. }
  46820. },
  46821. hand: {
  46822. height: math.unit(8.96, "meters"),
  46823. name: "Hand",
  46824. image: {
  46825. source: "./media/characters/kimpi/hand.svg"
  46826. }
  46827. },
  46828. },
  46829. [
  46830. {
  46831. name: "Normal",
  46832. height: math.unit(35, "meters"),
  46833. default: true
  46834. },
  46835. ]
  46836. ))
  46837. characterMakers.push(() => makeCharacter(
  46838. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  46839. {
  46840. front: {
  46841. height: math.unit(4 + 4/12, "feet"),
  46842. name: "Front",
  46843. image: {
  46844. source: "./media/characters/pepper-purrloin/front.svg",
  46845. extra: 1141/1024,
  46846. bottom: 21/1162
  46847. }
  46848. },
  46849. },
  46850. [
  46851. {
  46852. name: "Normal",
  46853. height: math.unit(4 + 4/12, "feet"),
  46854. default: true
  46855. },
  46856. ]
  46857. ))
  46858. characterMakers.push(() => makeCharacter(
  46859. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  46860. {
  46861. front: {
  46862. height: math.unit(6 + 2/12, "feet"),
  46863. name: "Front",
  46864. image: {
  46865. source: "./media/characters/raphael/front.svg",
  46866. extra: 1101/962,
  46867. bottom: 59/1160
  46868. }
  46869. },
  46870. },
  46871. [
  46872. {
  46873. name: "Normal",
  46874. height: math.unit(6 + 2/12, "feet"),
  46875. default: true
  46876. },
  46877. ]
  46878. ))
  46879. characterMakers.push(() => makeCharacter(
  46880. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  46881. {
  46882. front: {
  46883. height: math.unit(6, "feet"),
  46884. weight: math.unit(150, "lb"),
  46885. name: "Front",
  46886. image: {
  46887. source: "./media/characters/victor-williams/front.svg",
  46888. extra: 1894/1825,
  46889. bottom: 67/1961
  46890. }
  46891. },
  46892. },
  46893. [
  46894. {
  46895. name: "Normal",
  46896. height: math.unit(6, "feet"),
  46897. default: true
  46898. },
  46899. ]
  46900. ))
  46901. characterMakers.push(() => makeCharacter(
  46902. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  46903. {
  46904. front: {
  46905. height: math.unit(5 + 8/12, "feet"),
  46906. weight: math.unit(150, "lb"),
  46907. name: "Front",
  46908. image: {
  46909. source: "./media/characters/rachel/front.svg",
  46910. extra: 1902/1787,
  46911. bottom: 46/1948
  46912. }
  46913. },
  46914. },
  46915. [
  46916. {
  46917. name: "Base Height",
  46918. height: math.unit(5 + 8/12, "feet"),
  46919. default: true
  46920. },
  46921. {
  46922. name: "Macro",
  46923. height: math.unit(200, "feet")
  46924. },
  46925. {
  46926. name: "Mega Macro",
  46927. height: math.unit(1, "mile")
  46928. },
  46929. {
  46930. name: "Giga Macro",
  46931. height: math.unit(1500, "miles")
  46932. },
  46933. {
  46934. name: "Tera Macro",
  46935. height: math.unit(8000, "miles")
  46936. },
  46937. {
  46938. name: "Tera Macro+",
  46939. height: math.unit(2e5, "miles")
  46940. },
  46941. ]
  46942. ))
  46943. characterMakers.push(() => makeCharacter(
  46944. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  46945. {
  46946. front: {
  46947. height: math.unit(6.5, "feet"),
  46948. name: "Front",
  46949. image: {
  46950. source: "./media/characters/svetlana-rozovskaya/front.svg",
  46951. extra: 860/819,
  46952. bottom: 307/1167
  46953. }
  46954. },
  46955. back: {
  46956. height: math.unit(6.5, "feet"),
  46957. name: "Back",
  46958. image: {
  46959. source: "./media/characters/svetlana-rozovskaya/back.svg",
  46960. extra: 880/837,
  46961. bottom: 395/1275
  46962. }
  46963. },
  46964. sleeping: {
  46965. height: math.unit(2.79, "feet"),
  46966. name: "Sleeping",
  46967. image: {
  46968. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  46969. extra: 465/383,
  46970. bottom: 263/728
  46971. }
  46972. },
  46973. maw: {
  46974. height: math.unit(2.52, "feet"),
  46975. name: "Maw",
  46976. image: {
  46977. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  46978. }
  46979. },
  46980. },
  46981. [
  46982. {
  46983. name: "Normal",
  46984. height: math.unit(6.5, "feet"),
  46985. default: true
  46986. },
  46987. ]
  46988. ))
  46989. characterMakers.push(() => makeCharacter(
  46990. { name: "Nova (Dritty)", species: ["dragon", "cat"], tags: ["anthro"] },
  46991. {
  46992. front: {
  46993. height: math.unit(5, "feet"),
  46994. name: "Front",
  46995. image: {
  46996. source: "./media/characters/nova-dritty/front.svg",
  46997. extra: 1548/1392,
  46998. bottom: 374/1922
  46999. }
  47000. },
  47001. back: {
  47002. height: math.unit(5, "feet"),
  47003. name: "Back",
  47004. image: {
  47005. source: "./media/characters/nova-dritty/back.svg",
  47006. extra: 1658/1468,
  47007. bottom: 257/1915
  47008. }
  47009. },
  47010. },
  47011. [
  47012. {
  47013. name: "Normal",
  47014. height: math.unit(5, "feet"),
  47015. default: true
  47016. },
  47017. ]
  47018. ))
  47019. //characters
  47020. function makeCharacters() {
  47021. const results = [];
  47022. characterMakers.forEach(character => {
  47023. results.push(character());
  47024. });
  47025. return results;
  47026. }