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

41980 строки
1.0 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["marsupial"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "Tyrannosaurus Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. "peacekeeper": {
  1651. name: "Peacekeeper",
  1652. parents: ["human"]
  1653. },
  1654. "river-otter": {
  1655. name: "River Otter",
  1656. parents: ["otter"]
  1657. },
  1658. "dhole": {
  1659. name: "Dhole",
  1660. parents: ["canine"]
  1661. },
  1662. "springbok": {
  1663. name: "Springbok",
  1664. parents: ["antelope"]
  1665. },
  1666. "marsupial": {
  1667. name: "Marsupial",
  1668. parents: ["mammal"]
  1669. },
  1670. "townsend-big-eared-bat": {
  1671. name: "Townsend Big-eared Bat",
  1672. parents: ["bat"]
  1673. },
  1674. "squirrel": {
  1675. name: "Squirrel",
  1676. parents: ["rodent"]
  1677. },
  1678. "magpie": {
  1679. name: "Magpie",
  1680. parents: ["corvid"]
  1681. },
  1682. "civet": {
  1683. name: "Civet",
  1684. parents: ["feliform"]
  1685. },
  1686. "feliform": {
  1687. name: "Feliform",
  1688. parents: ["mammal"]
  1689. },
  1690. "tiefling": {
  1691. name: "Tiefling",
  1692. parents: ["devil"]
  1693. },
  1694. "devil": {
  1695. name: "Devil",
  1696. parents: ["supernatural"]
  1697. },
  1698. "sika-deer": {
  1699. name: "Sika Deer",
  1700. parents: ["deer"]
  1701. },
  1702. "vaporeon": {
  1703. name: "Vaporeon",
  1704. parents: ["eeveelution"]
  1705. },
  1706. "leafeon": {
  1707. name: "Leafeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "jolteon": {
  1711. name: "Jolteon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "spireborn": {
  1715. name: "Spireborn",
  1716. parents: ["zorgoia"]
  1717. },
  1718. "vampire": {
  1719. name: "Vampire",
  1720. parents: ["monster"]
  1721. },
  1722. "extraplanar": {
  1723. name: "Extraplanar",
  1724. parents: []
  1725. },
  1726. }
  1727. //species
  1728. function getSpeciesInfo(speciesList) {
  1729. let result = new Set();
  1730. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1731. result.add(entry)
  1732. });
  1733. return Array.from(result);
  1734. };
  1735. function getSpeciesInfoHelper(species) {
  1736. if (!speciesData[species]) {
  1737. console.warn(species + " doesn't exist");
  1738. return [];
  1739. }
  1740. if (speciesData[species].parents) {
  1741. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1742. } else {
  1743. return [species];
  1744. }
  1745. }
  1746. characterMakers.push(() => makeCharacter(
  1747. {
  1748. name: "Fen",
  1749. species: ["crux"],
  1750. description: {
  1751. title: "Bio",
  1752. text: "Very furry. Sheds on everything."
  1753. },
  1754. tags: [
  1755. "anthro",
  1756. "goo"
  1757. ]
  1758. },
  1759. {
  1760. back: {
  1761. height: math.unit(2.2428, "meter"),
  1762. weight: math.unit(124.738, "kg"),
  1763. name: "Back",
  1764. image: {
  1765. source: "./media/characters/fen/back.svg",
  1766. },
  1767. info: {
  1768. description: {
  1769. mode: "append",
  1770. text: "\n\nHe is not currently looking at you."
  1771. }
  1772. }
  1773. },
  1774. full: {
  1775. height: math.unit(1.34, "meter"),
  1776. weight: math.unit(225, "kg"),
  1777. name: "Full",
  1778. image: {
  1779. source: "./media/characters/fen/full.svg"
  1780. },
  1781. info: {
  1782. description: {
  1783. mode: "append",
  1784. text: "\n\nMunch."
  1785. }
  1786. }
  1787. },
  1788. kneeling: {
  1789. height: math.unit(5.4, "feet"),
  1790. weight: math.unit(124.738, "kg"),
  1791. name: "Kneeling",
  1792. image: {
  1793. source: "./media/characters/fen/kneeling.svg",
  1794. extra: 563 / 507
  1795. }
  1796. },
  1797. goo: {
  1798. height: math.unit(2.8, "feet"),
  1799. weight: math.unit(125, "kg"),
  1800. capacity: math.unit(1, "people"),
  1801. name: "Goo",
  1802. image: {
  1803. source: "./media/characters/fen/goo.svg",
  1804. bottom: 116 / 613
  1805. }
  1806. },
  1807. lounging: {
  1808. height: math.unit(6.5, "feet"),
  1809. weight: math.unit(125, "kg"),
  1810. name: "Lounging",
  1811. image: {
  1812. source: "./media/characters/fen/lounging.svg"
  1813. }
  1814. },
  1815. },
  1816. [
  1817. {
  1818. name: "Normal",
  1819. height: math.unit(2.2428, "meter")
  1820. },
  1821. {
  1822. name: "Big",
  1823. height: math.unit(12, "feet")
  1824. },
  1825. {
  1826. name: "Minimacro",
  1827. height: math.unit(40, "feet"),
  1828. default: true,
  1829. info: {
  1830. description: {
  1831. mode: "append",
  1832. text: "\n\nTOO DAMN BIG"
  1833. }
  1834. }
  1835. },
  1836. {
  1837. name: "Macro",
  1838. height: math.unit(100, "feet"),
  1839. info: {
  1840. description: {
  1841. mode: "append",
  1842. text: "\n\nTOO DAMN BIG"
  1843. }
  1844. }
  1845. },
  1846. {
  1847. name: "Macro+",
  1848. height: math.unit(300, "feet")
  1849. },
  1850. {
  1851. name: "Megamacro",
  1852. height: math.unit(2, "miles")
  1853. }
  1854. ]
  1855. ))
  1856. characterMakers.push(() => makeCharacter(
  1857. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1858. {
  1859. front: {
  1860. height: math.unit(183, "cm"),
  1861. weight: math.unit(80, "kg"),
  1862. name: "Front",
  1863. image: {
  1864. source: "./media/characters/sofia-fluttertail/front.svg",
  1865. bottom: 0.01,
  1866. extra: 2154 / 2081
  1867. }
  1868. },
  1869. frontAlt: {
  1870. height: math.unit(183, "cm"),
  1871. weight: math.unit(80, "kg"),
  1872. name: "Front (alt)",
  1873. image: {
  1874. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1875. }
  1876. },
  1877. back: {
  1878. height: math.unit(183, "cm"),
  1879. weight: math.unit(80, "kg"),
  1880. name: "Back",
  1881. image: {
  1882. source: "./media/characters/sofia-fluttertail/back.svg"
  1883. }
  1884. },
  1885. kneeling: {
  1886. height: math.unit(125, "cm"),
  1887. weight: math.unit(80, "kg"),
  1888. name: "Kneeling",
  1889. image: {
  1890. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1891. extra: 1033 / 977,
  1892. bottom: 23.7 / 1057
  1893. }
  1894. },
  1895. maw: {
  1896. height: math.unit(183 / 5, "cm"),
  1897. name: "Maw",
  1898. image: {
  1899. source: "./media/characters/sofia-fluttertail/maw.svg"
  1900. }
  1901. },
  1902. mawcloseup: {
  1903. height: math.unit(183 / 5 * 0.41, "cm"),
  1904. name: "Maw (Closeup)",
  1905. image: {
  1906. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1907. }
  1908. },
  1909. paws: {
  1910. height: math.unit(1.17, "feet"),
  1911. name: "Paws",
  1912. image: {
  1913. source: "./media/characters/sofia-fluttertail/paws.svg",
  1914. extra: 851 / 851,
  1915. bottom: 17 / 868
  1916. }
  1917. },
  1918. },
  1919. [
  1920. {
  1921. name: "Normal",
  1922. height: math.unit(1.83, "meter")
  1923. },
  1924. {
  1925. name: "Size Thief",
  1926. height: math.unit(18, "feet")
  1927. },
  1928. {
  1929. name: "50 Foot Collie",
  1930. height: math.unit(50, "feet")
  1931. },
  1932. {
  1933. name: "Macro",
  1934. height: math.unit(96, "feet"),
  1935. default: true
  1936. },
  1937. {
  1938. name: "Megamerger",
  1939. height: math.unit(650, "feet")
  1940. },
  1941. ]
  1942. ))
  1943. characterMakers.push(() => makeCharacter(
  1944. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1945. {
  1946. front: {
  1947. height: math.unit(7, "feet"),
  1948. weight: math.unit(100, "kg"),
  1949. name: "Front",
  1950. image: {
  1951. source: "./media/characters/march/front.svg",
  1952. extra: 1992/1851,
  1953. bottom: 39/2031
  1954. }
  1955. },
  1956. foot: {
  1957. height: math.unit(0.9, "feet"),
  1958. name: "Foot",
  1959. image: {
  1960. source: "./media/characters/march/foot.svg"
  1961. }
  1962. },
  1963. },
  1964. [
  1965. {
  1966. name: "Normal",
  1967. height: math.unit(7.9, "feet")
  1968. },
  1969. {
  1970. name: "Macro",
  1971. height: math.unit(220, "meters")
  1972. },
  1973. {
  1974. name: "Megamacro",
  1975. height: math.unit(2.98, "km"),
  1976. default: true
  1977. },
  1978. {
  1979. name: "Gigamacro",
  1980. height: math.unit(15963, "km")
  1981. },
  1982. {
  1983. name: "Teramacro",
  1984. height: math.unit(2980000000, "km")
  1985. },
  1986. {
  1987. name: "Examacro",
  1988. height: math.unit(250, "parsecs")
  1989. },
  1990. ]
  1991. ))
  1992. characterMakers.push(() => makeCharacter(
  1993. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1994. {
  1995. front: {
  1996. height: math.unit(6, "feet"),
  1997. weight: math.unit(60, "kg"),
  1998. name: "Front",
  1999. image: {
  2000. source: "./media/characters/noir/front.svg",
  2001. extra: 1,
  2002. bottom: 0.032
  2003. }
  2004. },
  2005. },
  2006. [
  2007. {
  2008. name: "Normal",
  2009. height: math.unit(6.6, "feet")
  2010. },
  2011. {
  2012. name: "Macro",
  2013. height: math.unit(500, "feet")
  2014. },
  2015. {
  2016. name: "Megamacro",
  2017. height: math.unit(2.5, "km"),
  2018. default: true
  2019. },
  2020. {
  2021. name: "Gigamacro",
  2022. height: math.unit(22500, "km")
  2023. },
  2024. {
  2025. name: "Teramacro",
  2026. height: math.unit(2500000000, "km")
  2027. },
  2028. {
  2029. name: "Examacro",
  2030. height: math.unit(200, "parsecs")
  2031. },
  2032. ]
  2033. ))
  2034. characterMakers.push(() => makeCharacter(
  2035. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2036. {
  2037. front: {
  2038. height: math.unit(7, "feet"),
  2039. weight: math.unit(100, "kg"),
  2040. name: "Front",
  2041. image: {
  2042. source: "./media/characters/okuri/front.svg",
  2043. extra: 1,
  2044. bottom: 0.037
  2045. }
  2046. },
  2047. back: {
  2048. height: math.unit(7, "feet"),
  2049. weight: math.unit(100, "kg"),
  2050. name: "Back",
  2051. image: {
  2052. source: "./media/characters/okuri/back.svg",
  2053. extra: 1,
  2054. bottom: 0.007
  2055. }
  2056. },
  2057. },
  2058. [
  2059. {
  2060. name: "Megamacro",
  2061. height: math.unit(100, "miles"),
  2062. default: true
  2063. },
  2064. ]
  2065. ))
  2066. characterMakers.push(() => makeCharacter(
  2067. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2068. {
  2069. front: {
  2070. height: math.unit(7, "feet"),
  2071. weight: math.unit(100, "kg"),
  2072. name: "Front",
  2073. image: {
  2074. source: "./media/characters/manny/front.svg",
  2075. extra: 1,
  2076. bottom: 0.06
  2077. }
  2078. },
  2079. back: {
  2080. height: math.unit(7, "feet"),
  2081. weight: math.unit(100, "kg"),
  2082. name: "Back",
  2083. image: {
  2084. source: "./media/characters/manny/back.svg",
  2085. extra: 1,
  2086. bottom: 0.014
  2087. }
  2088. },
  2089. },
  2090. [
  2091. {
  2092. name: "Normal",
  2093. height: math.unit(7, "feet"),
  2094. },
  2095. {
  2096. name: "Macro",
  2097. height: math.unit(78, "feet"),
  2098. default: true
  2099. },
  2100. {
  2101. name: "Macro+",
  2102. height: math.unit(300, "meters")
  2103. },
  2104. {
  2105. name: "Macro++",
  2106. height: math.unit(2400, "meters")
  2107. },
  2108. {
  2109. name: "Megamacro",
  2110. height: math.unit(5167, "meters")
  2111. },
  2112. {
  2113. name: "Gigamacro",
  2114. height: math.unit(41769, "miles")
  2115. },
  2116. ]
  2117. ))
  2118. characterMakers.push(() => makeCharacter(
  2119. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2120. {
  2121. front: {
  2122. height: math.unit(7, "feet"),
  2123. weight: math.unit(100, "kg"),
  2124. name: "Front",
  2125. image: {
  2126. source: "./media/characters/adake/front-1.svg"
  2127. }
  2128. },
  2129. frontAlt: {
  2130. height: math.unit(7, "feet"),
  2131. weight: math.unit(100, "kg"),
  2132. name: "Front (Alt)",
  2133. image: {
  2134. source: "./media/characters/adake/front-2.svg",
  2135. extra: 1,
  2136. bottom: 0.01
  2137. }
  2138. },
  2139. back: {
  2140. height: math.unit(7, "feet"),
  2141. weight: math.unit(100, "kg"),
  2142. name: "Back",
  2143. image: {
  2144. source: "./media/characters/adake/back.svg",
  2145. }
  2146. },
  2147. kneel: {
  2148. height: math.unit(5.385, "feet"),
  2149. weight: math.unit(100, "kg"),
  2150. name: "Kneeling",
  2151. image: {
  2152. source: "./media/characters/adake/kneel.svg",
  2153. bottom: 0.052
  2154. }
  2155. },
  2156. },
  2157. [
  2158. {
  2159. name: "Normal",
  2160. height: math.unit(7, "feet"),
  2161. },
  2162. {
  2163. name: "Macro",
  2164. height: math.unit(78, "feet"),
  2165. default: true
  2166. },
  2167. {
  2168. name: "Macro+",
  2169. height: math.unit(300, "meters")
  2170. },
  2171. {
  2172. name: "Macro++",
  2173. height: math.unit(2400, "meters")
  2174. },
  2175. {
  2176. name: "Megamacro",
  2177. height: math.unit(5167, "meters")
  2178. },
  2179. {
  2180. name: "Gigamacro",
  2181. height: math.unit(41769, "miles")
  2182. },
  2183. ]
  2184. ))
  2185. characterMakers.push(() => makeCharacter(
  2186. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2187. {
  2188. front: {
  2189. height: math.unit(1.65, "meters"),
  2190. weight: math.unit(50, "kg"),
  2191. name: "Front",
  2192. image: {
  2193. source: "./media/characters/elijah/front.svg",
  2194. extra: 858 / 830,
  2195. bottom: 95.5 / 953.8559
  2196. }
  2197. },
  2198. back: {
  2199. height: math.unit(1.65, "meters"),
  2200. weight: math.unit(50, "kg"),
  2201. name: "Back",
  2202. image: {
  2203. source: "./media/characters/elijah/back.svg",
  2204. extra: 895 / 850,
  2205. bottom: 5.3 / 897.956
  2206. }
  2207. },
  2208. frontNsfw: {
  2209. height: math.unit(1.65, "meters"),
  2210. weight: math.unit(50, "kg"),
  2211. name: "Front (NSFW)",
  2212. image: {
  2213. source: "./media/characters/elijah/front-nsfw.svg",
  2214. extra: 858 / 830,
  2215. bottom: 95.5 / 953.8559
  2216. }
  2217. },
  2218. backNsfw: {
  2219. height: math.unit(1.65, "meters"),
  2220. weight: math.unit(50, "kg"),
  2221. name: "Back (NSFW)",
  2222. image: {
  2223. source: "./media/characters/elijah/back-nsfw.svg",
  2224. extra: 895 / 850,
  2225. bottom: 5.3 / 897.956
  2226. }
  2227. },
  2228. dick: {
  2229. height: math.unit(1, "feet"),
  2230. name: "Dick",
  2231. image: {
  2232. source: "./media/characters/elijah/dick.svg"
  2233. }
  2234. },
  2235. beakOpen: {
  2236. height: math.unit(1.25, "feet"),
  2237. name: "Beak (Open)",
  2238. image: {
  2239. source: "./media/characters/elijah/beak-open.svg"
  2240. }
  2241. },
  2242. beakShut: {
  2243. height: math.unit(1.25, "feet"),
  2244. name: "Beak (Shut)",
  2245. image: {
  2246. source: "./media/characters/elijah/beak-shut.svg"
  2247. }
  2248. },
  2249. footFlexing: {
  2250. height: math.unit(1.61, "feet"),
  2251. name: "Foot (Flexing)",
  2252. image: {
  2253. source: "./media/characters/elijah/foot-flexing.svg"
  2254. }
  2255. },
  2256. footStepping: {
  2257. height: math.unit(1.44, "feet"),
  2258. name: "Foot (Stepping)",
  2259. image: {
  2260. source: "./media/characters/elijah/foot-stepping.svg"
  2261. }
  2262. },
  2263. plantigradeLeg: {
  2264. height: math.unit(2.34, "feet"),
  2265. name: "Plantigrade Leg",
  2266. image: {
  2267. source: "./media/characters/elijah/plantigrade-leg.svg"
  2268. }
  2269. },
  2270. plantigradeFootLeft: {
  2271. height: math.unit(0.9, "feet"),
  2272. name: "Plantigrade Foot (Left)",
  2273. image: {
  2274. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2275. }
  2276. },
  2277. plantigradeFootRight: {
  2278. height: math.unit(0.9, "feet"),
  2279. name: "Plantigrade Foot (Right)",
  2280. image: {
  2281. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2282. }
  2283. },
  2284. },
  2285. [
  2286. {
  2287. name: "Normal",
  2288. height: math.unit(1.65, "meters")
  2289. },
  2290. {
  2291. name: "Macro",
  2292. height: math.unit(55, "meters"),
  2293. default: true
  2294. },
  2295. {
  2296. name: "Macro+",
  2297. height: math.unit(105, "meters")
  2298. },
  2299. ]
  2300. ))
  2301. characterMakers.push(() => makeCharacter(
  2302. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2303. {
  2304. front: {
  2305. height: math.unit(11, "feet"),
  2306. weight: math.unit(320, "kg"),
  2307. name: "Front",
  2308. image: {
  2309. source: "./media/characters/rai/front.svg",
  2310. extra: 1802/1696,
  2311. bottom: 68/1870
  2312. }
  2313. },
  2314. frontDressed: {
  2315. height: math.unit(11, "feet"),
  2316. weight: math.unit(320, "kg"),
  2317. name: "Front (Dressed)",
  2318. image: {
  2319. source: "./media/characters/rai/front-dressed.svg",
  2320. extra: 1802/1696,
  2321. bottom: 68/1870
  2322. }
  2323. },
  2324. side: {
  2325. height: math.unit(11, "feet"),
  2326. weight: math.unit(320, "kg"),
  2327. name: "Side",
  2328. image: {
  2329. source: "./media/characters/rai/side.svg",
  2330. extra: 1789/1710,
  2331. bottom: 115/1904
  2332. }
  2333. },
  2334. back: {
  2335. height: math.unit(11, "feet"),
  2336. weight: math.unit(320, "kg"),
  2337. name: "Back",
  2338. image: {
  2339. source: "./media/characters/rai/back.svg",
  2340. extra: 1770/1707,
  2341. bottom: 28/1798
  2342. }
  2343. },
  2344. feral: {
  2345. height: math.unit(11, "feet"),
  2346. weight: math.unit(640, "kg"),
  2347. name: "Feral",
  2348. image: {
  2349. source: "./media/characters/rai/feral.svg",
  2350. extra: 1035/642,
  2351. bottom: 86/1121
  2352. }
  2353. },
  2354. dragon: {
  2355. height: math.unit(23, "feet"),
  2356. weight: math.unit(50000, "lb"),
  2357. name: "Dragon",
  2358. image: {
  2359. source: "./media/characters/rai/dragon.svg",
  2360. extra: 2498 / 2030,
  2361. bottom: 85.2 / 2584
  2362. }
  2363. },
  2364. maw: {
  2365. height: math.unit(6 / 3.81416, "feet"),
  2366. name: "Maw",
  2367. image: {
  2368. source: "./media/characters/rai/maw.svg"
  2369. }
  2370. },
  2371. },
  2372. [
  2373. {
  2374. name: "Normal",
  2375. height: math.unit(11, "feet")
  2376. },
  2377. {
  2378. name: "Macro",
  2379. height: math.unit(302, "feet"),
  2380. default: true
  2381. },
  2382. ]
  2383. ))
  2384. characterMakers.push(() => makeCharacter(
  2385. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2386. {
  2387. frontDressed: {
  2388. height: math.unit(216, "feet"),
  2389. weight: math.unit(7000000, "lb"),
  2390. name: "Front (Dressed)",
  2391. image: {
  2392. source: "./media/characters/jazzy/front-dressed.svg",
  2393. extra: 2738 / 2651,
  2394. bottom: 41.8 / 2786
  2395. }
  2396. },
  2397. backDressed: {
  2398. height: math.unit(216, "feet"),
  2399. weight: math.unit(7000000, "lb"),
  2400. name: "Back (Dressed)",
  2401. image: {
  2402. source: "./media/characters/jazzy/back-dressed.svg",
  2403. extra: 2775 / 2673,
  2404. bottom: 36.8 / 2817
  2405. }
  2406. },
  2407. front: {
  2408. height: math.unit(216, "feet"),
  2409. weight: math.unit(7000000, "lb"),
  2410. name: "Front",
  2411. image: {
  2412. source: "./media/characters/jazzy/front.svg",
  2413. extra: 2738 / 2651,
  2414. bottom: 41.8 / 2786
  2415. }
  2416. },
  2417. back: {
  2418. height: math.unit(216, "feet"),
  2419. weight: math.unit(7000000, "lb"),
  2420. name: "Back",
  2421. image: {
  2422. source: "./media/characters/jazzy/back.svg",
  2423. extra: 2775 / 2673,
  2424. bottom: 36.8 / 2817
  2425. }
  2426. },
  2427. maw: {
  2428. height: math.unit(20, "feet"),
  2429. name: "Maw",
  2430. image: {
  2431. source: "./media/characters/jazzy/maw.svg"
  2432. }
  2433. },
  2434. paws: {
  2435. height: math.unit(27.5, "feet"),
  2436. name: "Paws",
  2437. image: {
  2438. source: "./media/characters/jazzy/paws.svg"
  2439. }
  2440. },
  2441. eye: {
  2442. height: math.unit(4.4, "feet"),
  2443. name: "Eye",
  2444. image: {
  2445. source: "./media/characters/jazzy/eye.svg"
  2446. }
  2447. },
  2448. droneOffense: {
  2449. height: math.unit(9.5, "inches"),
  2450. name: "Drone (Offense)",
  2451. image: {
  2452. source: "./media/characters/jazzy/drone-offense.svg"
  2453. }
  2454. },
  2455. droneRecon: {
  2456. height: math.unit(9.5, "inches"),
  2457. name: "Drone (Recon)",
  2458. image: {
  2459. source: "./media/characters/jazzy/drone-recon.svg"
  2460. }
  2461. },
  2462. droneDefense: {
  2463. height: math.unit(9.5, "inches"),
  2464. name: "Drone (Defense)",
  2465. image: {
  2466. source: "./media/characters/jazzy/drone-defense.svg"
  2467. }
  2468. },
  2469. },
  2470. [
  2471. {
  2472. name: "Macro",
  2473. height: math.unit(216, "feet"),
  2474. default: true
  2475. },
  2476. ]
  2477. ))
  2478. characterMakers.push(() => makeCharacter(
  2479. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2480. {
  2481. front: {
  2482. height: math.unit(9 + 6/12, "feet"),
  2483. weight: math.unit(700, "lb"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/flamm/front.svg",
  2487. extra: 1751/1632,
  2488. bottom: 46/1797
  2489. }
  2490. },
  2491. buff: {
  2492. height: math.unit(9 + 6/12, "feet"),
  2493. weight: math.unit(950, "lb"),
  2494. name: "Buff",
  2495. image: {
  2496. source: "./media/characters/flamm/buff.svg",
  2497. extra: 3018/2874,
  2498. bottom: 221/3239
  2499. }
  2500. },
  2501. },
  2502. [
  2503. {
  2504. name: "Normal",
  2505. height: math.unit(9.5, "feet")
  2506. },
  2507. {
  2508. name: "Macro",
  2509. height: math.unit(200, "feet"),
  2510. default: true
  2511. },
  2512. ]
  2513. ))
  2514. characterMakers.push(() => makeCharacter(
  2515. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2516. {
  2517. front: {
  2518. height: math.unit(5 + 3/12, "feet"),
  2519. weight: math.unit(60, "kg"),
  2520. name: "Front",
  2521. image: {
  2522. source: "./media/characters/zephiro/front.svg",
  2523. extra: 2309 / 2162,
  2524. bottom: 0.069
  2525. }
  2526. },
  2527. side: {
  2528. height: math.unit(5 + 3/12, "feet"),
  2529. weight: math.unit(60, "kg"),
  2530. name: "Side",
  2531. image: {
  2532. source: "./media/characters/zephiro/side.svg",
  2533. extra: 2403 / 2279,
  2534. bottom: 0.015
  2535. }
  2536. },
  2537. back: {
  2538. height: math.unit(5 + 3/12, "feet"),
  2539. weight: math.unit(60, "kg"),
  2540. name: "Back",
  2541. image: {
  2542. source: "./media/characters/zephiro/back.svg",
  2543. extra: 2373 / 2244,
  2544. bottom: 0.013
  2545. }
  2546. },
  2547. hand: {
  2548. height: math.unit(0.68, "feet"),
  2549. name: "Hand",
  2550. image: {
  2551. source: "./media/characters/zephiro/hand.svg"
  2552. }
  2553. },
  2554. paw: {
  2555. height: math.unit(1, "feet"),
  2556. name: "Paw",
  2557. image: {
  2558. source: "./media/characters/zephiro/paw.svg"
  2559. }
  2560. },
  2561. beans: {
  2562. height: math.unit(0.93, "feet"),
  2563. name: "Beans",
  2564. image: {
  2565. source: "./media/characters/zephiro/beans.svg"
  2566. }
  2567. },
  2568. },
  2569. [
  2570. {
  2571. name: "Micro",
  2572. height: math.unit(3, "inches")
  2573. },
  2574. {
  2575. name: "Normal",
  2576. height: math.unit(5 + 3 / 12, "feet"),
  2577. default: true
  2578. },
  2579. {
  2580. name: "Macro",
  2581. height: math.unit(118, "feet")
  2582. },
  2583. ]
  2584. ))
  2585. characterMakers.push(() => makeCharacter(
  2586. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2587. {
  2588. front: {
  2589. height: math.unit(5, "feet"),
  2590. weight: math.unit(90, "kg"),
  2591. name: "Front",
  2592. image: {
  2593. source: "./media/characters/fory/front.svg",
  2594. extra: 2862 / 2674,
  2595. bottom: 180 / 3043.8
  2596. }
  2597. },
  2598. back: {
  2599. height: math.unit(5, "feet"),
  2600. weight: math.unit(90, "kg"),
  2601. name: "Back",
  2602. image: {
  2603. source: "./media/characters/fory/back.svg",
  2604. extra: 2962 / 2791,
  2605. bottom: 106 / 3071.8
  2606. }
  2607. },
  2608. foot: {
  2609. height: math.unit(2.14, "feet"),
  2610. name: "Foot",
  2611. image: {
  2612. source: "./media/characters/fory/foot.svg"
  2613. }
  2614. },
  2615. },
  2616. [
  2617. {
  2618. name: "Normal",
  2619. height: math.unit(5, "feet")
  2620. },
  2621. {
  2622. name: "Macro",
  2623. height: math.unit(50, "feet"),
  2624. default: true
  2625. },
  2626. {
  2627. name: "Megamacro",
  2628. height: math.unit(10, "miles")
  2629. },
  2630. {
  2631. name: "Gigamacro",
  2632. height: math.unit(5, "earths")
  2633. },
  2634. ]
  2635. ))
  2636. characterMakers.push(() => makeCharacter(
  2637. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2638. {
  2639. front: {
  2640. height: math.unit(7, "feet"),
  2641. weight: math.unit(90, "kg"),
  2642. name: "Front",
  2643. image: {
  2644. source: "./media/characters/kurrikage/front.svg",
  2645. extra: 1,
  2646. bottom: 0.035
  2647. }
  2648. },
  2649. back: {
  2650. height: math.unit(7, "feet"),
  2651. weight: math.unit(90, "lb"),
  2652. name: "Back",
  2653. image: {
  2654. source: "./media/characters/kurrikage/back.svg"
  2655. }
  2656. },
  2657. paw: {
  2658. height: math.unit(1.5, "feet"),
  2659. name: "Paw",
  2660. image: {
  2661. source: "./media/characters/kurrikage/paw.svg"
  2662. }
  2663. },
  2664. staff: {
  2665. height: math.unit(6.7, "feet"),
  2666. name: "Staff",
  2667. image: {
  2668. source: "./media/characters/kurrikage/staff.svg"
  2669. }
  2670. },
  2671. peek: {
  2672. height: math.unit(1.05, "feet"),
  2673. name: "Peeking",
  2674. image: {
  2675. source: "./media/characters/kurrikage/peek.svg",
  2676. bottom: 0.08
  2677. }
  2678. },
  2679. },
  2680. [
  2681. {
  2682. name: "Normal",
  2683. height: math.unit(12, "feet"),
  2684. default: true
  2685. },
  2686. {
  2687. name: "Big",
  2688. height: math.unit(20, "feet")
  2689. },
  2690. {
  2691. name: "Macro",
  2692. height: math.unit(500, "feet")
  2693. },
  2694. {
  2695. name: "Megamacro",
  2696. height: math.unit(20, "miles")
  2697. },
  2698. ]
  2699. ))
  2700. characterMakers.push(() => makeCharacter(
  2701. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2702. {
  2703. front: {
  2704. height: math.unit(6, "feet"),
  2705. weight: math.unit(75, "kg"),
  2706. name: "Front",
  2707. image: {
  2708. source: "./media/characters/shingo/front.svg",
  2709. extra: 706/681,
  2710. bottom: 11/717
  2711. }
  2712. },
  2713. frontAlt: {
  2714. height: math.unit(6, "feet"),
  2715. weight: math.unit(75, "kg"),
  2716. name: "Front (Alt)",
  2717. image: {
  2718. source: "./media/characters/shingo/front-alt.svg",
  2719. extra: 3511 / 3338,
  2720. bottom: 0.005
  2721. }
  2722. },
  2723. paw: {
  2724. height: math.unit(1, "feet"),
  2725. name: "Paw",
  2726. image: {
  2727. source: "./media/characters/shingo/paw.svg"
  2728. }
  2729. },
  2730. },
  2731. [
  2732. {
  2733. name: "Micro",
  2734. height: math.unit(4, "inches")
  2735. },
  2736. {
  2737. name: "Normal",
  2738. height: math.unit(6, "feet"),
  2739. default: true
  2740. },
  2741. {
  2742. name: "Macro",
  2743. height: math.unit(108, "feet")
  2744. },
  2745. {
  2746. name: "Macro+",
  2747. height: math.unit(1500, "feet")
  2748. },
  2749. ]
  2750. ))
  2751. characterMakers.push(() => makeCharacter(
  2752. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2753. {
  2754. side: {
  2755. height: math.unit(6, "feet"),
  2756. weight: math.unit(75, "kg"),
  2757. name: "Side",
  2758. image: {
  2759. source: "./media/characters/aigey/side.svg"
  2760. }
  2761. },
  2762. },
  2763. [
  2764. {
  2765. name: "Macro",
  2766. height: math.unit(200, "feet"),
  2767. default: true
  2768. },
  2769. {
  2770. name: "Megamacro",
  2771. height: math.unit(100, "miles")
  2772. },
  2773. ]
  2774. )
  2775. )
  2776. characterMakers.push(() => makeCharacter(
  2777. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2778. {
  2779. front: {
  2780. height: math.unit(5 + 5 / 12, "feet"),
  2781. weight: math.unit(75, "kg"),
  2782. name: "Front",
  2783. image: {
  2784. source: "./media/characters/natasha/front.svg",
  2785. extra: 859 / 824,
  2786. bottom: 23 / 879.6
  2787. }
  2788. },
  2789. frontNsfw: {
  2790. height: math.unit(5 + 5 / 12, "feet"),
  2791. weight: math.unit(75, "kg"),
  2792. name: "Front (NSFW)",
  2793. image: {
  2794. source: "./media/characters/natasha/front-nsfw.svg",
  2795. extra: 859 / 824,
  2796. bottom: 23 / 879.6
  2797. }
  2798. },
  2799. frontErect: {
  2800. height: math.unit(5 + 5 / 12, "feet"),
  2801. weight: math.unit(75, "kg"),
  2802. name: "Front (Erect)",
  2803. image: {
  2804. source: "./media/characters/natasha/front-erect.svg",
  2805. extra: 859 / 824,
  2806. bottom: 23 / 879.6
  2807. }
  2808. },
  2809. back: {
  2810. height: math.unit(5 + 5 / 12, "feet"),
  2811. weight: math.unit(75, "kg"),
  2812. name: "Back",
  2813. image: {
  2814. source: "./media/characters/natasha/back.svg",
  2815. extra: 887.9 / 852.6,
  2816. bottom: 9.7 / 896.4
  2817. }
  2818. },
  2819. backAlt: {
  2820. height: math.unit(5 + 5 / 12, "feet"),
  2821. weight: math.unit(75, "kg"),
  2822. name: "Back (Alt)",
  2823. image: {
  2824. source: "./media/characters/natasha/back-alt.svg",
  2825. extra: 1236.7 / 1192,
  2826. bottom: 22.3 / 1258.2
  2827. }
  2828. },
  2829. dick: {
  2830. height: math.unit(1.772, "feet"),
  2831. name: "Dick",
  2832. image: {
  2833. source: "./media/characters/natasha/dick.svg"
  2834. }
  2835. },
  2836. paw: {
  2837. height: math.unit(0.250, "meters"),
  2838. name: "Paw",
  2839. image: {
  2840. source: "./media/characters/natasha/paw.svg"
  2841. }
  2842. },
  2843. },
  2844. [
  2845. {
  2846. name: "Normal",
  2847. height: math.unit(5 + 5 / 12, "feet")
  2848. },
  2849. {
  2850. name: "Large",
  2851. height: math.unit(12, "feet")
  2852. },
  2853. {
  2854. name: "Macro",
  2855. height: math.unit(100, "feet"),
  2856. default: true
  2857. },
  2858. {
  2859. name: "Macro+",
  2860. height: math.unit(260, "feet")
  2861. },
  2862. {
  2863. name: "Macro++",
  2864. height: math.unit(1, "mile")
  2865. },
  2866. ]
  2867. ))
  2868. characterMakers.push(() => makeCharacter(
  2869. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2870. {
  2871. front: {
  2872. height: math.unit(6, "feet"),
  2873. weight: math.unit(75, "kg"),
  2874. name: "Front",
  2875. image: {
  2876. source: "./media/characters/malik/front.svg"
  2877. }
  2878. },
  2879. side: {
  2880. height: math.unit(6, "feet"),
  2881. weight: math.unit(75, "kg"),
  2882. name: "Side",
  2883. image: {
  2884. source: "./media/characters/malik/side.svg",
  2885. extra: 1.1539
  2886. }
  2887. },
  2888. back: {
  2889. height: math.unit(6, "feet"),
  2890. weight: math.unit(75, "kg"),
  2891. name: "Back",
  2892. image: {
  2893. source: "./media/characters/malik/back.svg"
  2894. }
  2895. },
  2896. },
  2897. [
  2898. {
  2899. name: "Macro",
  2900. height: math.unit(156, "feet"),
  2901. default: true
  2902. },
  2903. {
  2904. name: "Macro+",
  2905. height: math.unit(1188, "feet")
  2906. },
  2907. ]
  2908. ))
  2909. characterMakers.push(() => makeCharacter(
  2910. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2911. {
  2912. front: {
  2913. height: math.unit(6, "feet"),
  2914. weight: math.unit(75, "kg"),
  2915. name: "Front",
  2916. image: {
  2917. source: "./media/characters/sefer/front.svg",
  2918. extra: 848 / 659,
  2919. bottom: 28.3 / 876.442
  2920. }
  2921. },
  2922. back: {
  2923. height: math.unit(6, "feet"),
  2924. weight: math.unit(75, "kg"),
  2925. name: "Back",
  2926. image: {
  2927. source: "./media/characters/sefer/back.svg",
  2928. extra: 864 / 695,
  2929. bottom: 10 / 871
  2930. }
  2931. },
  2932. frontDressed: {
  2933. height: math.unit(6, "feet"),
  2934. weight: math.unit(75, "kg"),
  2935. name: "Front (Dressed)",
  2936. image: {
  2937. source: "./media/characters/sefer/front-dressed.svg",
  2938. extra: 839 / 653,
  2939. bottom: 37.6 / 878
  2940. }
  2941. },
  2942. },
  2943. [
  2944. {
  2945. name: "Normal",
  2946. height: math.unit(6, "feet"),
  2947. default: true
  2948. },
  2949. ]
  2950. ))
  2951. characterMakers.push(() => makeCharacter(
  2952. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2953. {
  2954. body: {
  2955. height: math.unit(2.2428, "meter"),
  2956. weight: math.unit(124.738, "kg"),
  2957. name: "Body",
  2958. image: {
  2959. extra: 1225 / 1050,
  2960. source: "./media/characters/north/front.svg"
  2961. }
  2962. }
  2963. },
  2964. [
  2965. {
  2966. name: "Micro",
  2967. height: math.unit(4, "inches")
  2968. },
  2969. {
  2970. name: "Macro",
  2971. height: math.unit(63, "meters")
  2972. },
  2973. {
  2974. name: "Megamacro",
  2975. height: math.unit(101, "miles"),
  2976. default: true
  2977. }
  2978. ]
  2979. ))
  2980. characterMakers.push(() => makeCharacter(
  2981. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2982. {
  2983. angled: {
  2984. height: math.unit(4, "meter"),
  2985. weight: math.unit(150, "kg"),
  2986. name: "Angled",
  2987. image: {
  2988. source: "./media/characters/talan/angled-sfw.svg",
  2989. bottom: 29 / 3734
  2990. }
  2991. },
  2992. angledNsfw: {
  2993. height: math.unit(4, "meter"),
  2994. weight: math.unit(150, "kg"),
  2995. name: "Angled (NSFW)",
  2996. image: {
  2997. source: "./media/characters/talan/angled-nsfw.svg",
  2998. bottom: 29 / 3734
  2999. }
  3000. },
  3001. frontNsfw: {
  3002. height: math.unit(4, "meter"),
  3003. weight: math.unit(150, "kg"),
  3004. name: "Front (NSFW)",
  3005. image: {
  3006. source: "./media/characters/talan/front-nsfw.svg",
  3007. bottom: 29 / 3734
  3008. }
  3009. },
  3010. sideNsfw: {
  3011. height: math.unit(4, "meter"),
  3012. weight: math.unit(150, "kg"),
  3013. name: "Side (NSFW)",
  3014. image: {
  3015. source: "./media/characters/talan/side-nsfw.svg",
  3016. bottom: 29 / 3734
  3017. }
  3018. },
  3019. back: {
  3020. height: math.unit(4, "meter"),
  3021. weight: math.unit(150, "kg"),
  3022. name: "Back",
  3023. image: {
  3024. source: "./media/characters/talan/back.svg"
  3025. }
  3026. },
  3027. dickBottom: {
  3028. height: math.unit(0.621, "meter"),
  3029. name: "Dick (Bottom)",
  3030. image: {
  3031. source: "./media/characters/talan/dick-bottom.svg"
  3032. }
  3033. },
  3034. dickTop: {
  3035. height: math.unit(0.621, "meter"),
  3036. name: "Dick (Top)",
  3037. image: {
  3038. source: "./media/characters/talan/dick-top.svg"
  3039. }
  3040. },
  3041. dickSide: {
  3042. height: math.unit(0.305, "meter"),
  3043. name: "Dick (Side)",
  3044. image: {
  3045. source: "./media/characters/talan/dick-side.svg"
  3046. }
  3047. },
  3048. dickFront: {
  3049. height: math.unit(0.305, "meter"),
  3050. name: "Dick (Front)",
  3051. image: {
  3052. source: "./media/characters/talan/dick-front.svg"
  3053. }
  3054. },
  3055. },
  3056. [
  3057. {
  3058. name: "Normal",
  3059. height: math.unit(4, "meters")
  3060. },
  3061. {
  3062. name: "Macro",
  3063. height: math.unit(100, "meters")
  3064. },
  3065. {
  3066. name: "Megamacro",
  3067. height: math.unit(2, "miles"),
  3068. default: true
  3069. },
  3070. {
  3071. name: "Gigamacro",
  3072. height: math.unit(5000, "miles")
  3073. },
  3074. {
  3075. name: "Teramacro",
  3076. height: math.unit(100, "parsecs")
  3077. }
  3078. ]
  3079. ))
  3080. characterMakers.push(() => makeCharacter(
  3081. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3082. {
  3083. front: {
  3084. height: math.unit(2, "meter"),
  3085. weight: math.unit(90, "kg"),
  3086. name: "Front",
  3087. image: {
  3088. source: "./media/characters/gael'rathus/front.svg"
  3089. }
  3090. },
  3091. frontAlt: {
  3092. height: math.unit(2, "meter"),
  3093. weight: math.unit(90, "kg"),
  3094. name: "Front (alt)",
  3095. image: {
  3096. source: "./media/characters/gael'rathus/front-alt.svg"
  3097. }
  3098. },
  3099. frontAlt2: {
  3100. height: math.unit(2, "meter"),
  3101. weight: math.unit(90, "kg"),
  3102. name: "Front (alt 2)",
  3103. image: {
  3104. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3105. }
  3106. }
  3107. },
  3108. [
  3109. {
  3110. name: "Normal",
  3111. height: math.unit(9, "feet"),
  3112. default: true
  3113. },
  3114. {
  3115. name: "Large",
  3116. height: math.unit(25, "feet")
  3117. },
  3118. {
  3119. name: "Macro",
  3120. height: math.unit(0.25, "miles")
  3121. },
  3122. {
  3123. name: "Megamacro",
  3124. height: math.unit(10, "miles")
  3125. }
  3126. ]
  3127. ))
  3128. characterMakers.push(() => makeCharacter(
  3129. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3130. {
  3131. side: {
  3132. height: math.unit(2, "meter"),
  3133. weight: math.unit(140, "kg"),
  3134. name: "Side",
  3135. image: {
  3136. source: "./media/characters/sosha/side.svg",
  3137. bottom: 0.042
  3138. }
  3139. },
  3140. },
  3141. [
  3142. {
  3143. name: "Normal",
  3144. height: math.unit(12, "feet"),
  3145. default: true
  3146. }
  3147. ]
  3148. ))
  3149. characterMakers.push(() => makeCharacter(
  3150. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3151. {
  3152. side: {
  3153. height: math.unit(5 + 5 / 12, "feet"),
  3154. weight: math.unit(170, "kg"),
  3155. name: "Side",
  3156. image: {
  3157. source: "./media/characters/runnola/side.svg",
  3158. extra: 741 / 448,
  3159. bottom: 0.05
  3160. }
  3161. },
  3162. },
  3163. [
  3164. {
  3165. name: "Small",
  3166. height: math.unit(3, "feet")
  3167. },
  3168. {
  3169. name: "Normal",
  3170. height: math.unit(5 + 5 / 12, "feet"),
  3171. default: true
  3172. },
  3173. {
  3174. name: "Big",
  3175. height: math.unit(10, "feet")
  3176. },
  3177. ]
  3178. ))
  3179. characterMakers.push(() => makeCharacter(
  3180. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3181. {
  3182. front: {
  3183. height: math.unit(2, "meter"),
  3184. weight: math.unit(50, "kg"),
  3185. name: "Front",
  3186. image: {
  3187. source: "./media/characters/kurribird/front.svg",
  3188. bottom: 0.015
  3189. }
  3190. },
  3191. frontAlt: {
  3192. height: math.unit(1.5, "meter"),
  3193. weight: math.unit(50, "kg"),
  3194. name: "Front (Alt)",
  3195. image: {
  3196. source: "./media/characters/kurribird/front-alt.svg",
  3197. extra: 1.45
  3198. }
  3199. },
  3200. },
  3201. [
  3202. {
  3203. name: "Normal",
  3204. height: math.unit(7, "feet")
  3205. },
  3206. {
  3207. name: "Big",
  3208. height: math.unit(12, "feet"),
  3209. default: true
  3210. },
  3211. {
  3212. name: "Macro",
  3213. height: math.unit(1500, "feet")
  3214. },
  3215. {
  3216. name: "Megamacro",
  3217. height: math.unit(2, "miles")
  3218. }
  3219. ]
  3220. ))
  3221. characterMakers.push(() => makeCharacter(
  3222. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3223. {
  3224. front: {
  3225. height: math.unit(2, "meter"),
  3226. weight: math.unit(80, "kg"),
  3227. name: "Front",
  3228. image: {
  3229. source: "./media/characters/elbial/front.svg",
  3230. extra: 1643 / 1556,
  3231. bottom: 60.2 / 1696
  3232. }
  3233. },
  3234. side: {
  3235. height: math.unit(2, "meter"),
  3236. weight: math.unit(80, "kg"),
  3237. name: "Side",
  3238. image: {
  3239. source: "./media/characters/elbial/side.svg",
  3240. extra: 1630 / 1565,
  3241. bottom: 71.5 / 1697
  3242. }
  3243. },
  3244. back: {
  3245. height: math.unit(2, "meter"),
  3246. weight: math.unit(80, "kg"),
  3247. name: "Back",
  3248. image: {
  3249. source: "./media/characters/elbial/back.svg",
  3250. extra: 1668 / 1595,
  3251. bottom: 5.6 / 1672
  3252. }
  3253. },
  3254. frontDressed: {
  3255. height: math.unit(2, "meter"),
  3256. weight: math.unit(80, "kg"),
  3257. name: "Front (Dressed)",
  3258. image: {
  3259. source: "./media/characters/elbial/front-dressed.svg",
  3260. extra: 1653 / 1584,
  3261. bottom: 57 / 1708
  3262. }
  3263. },
  3264. genitals: {
  3265. height: math.unit(2 / 3.367, "meter"),
  3266. name: "Genitals",
  3267. image: {
  3268. source: "./media/characters/elbial/genitals.svg"
  3269. }
  3270. },
  3271. },
  3272. [
  3273. {
  3274. name: "Large",
  3275. height: math.unit(100, "feet")
  3276. },
  3277. {
  3278. name: "Macro",
  3279. height: math.unit(500, "feet"),
  3280. default: true
  3281. },
  3282. {
  3283. name: "Megamacro",
  3284. height: math.unit(10, "miles")
  3285. },
  3286. {
  3287. name: "Gigamacro",
  3288. height: math.unit(25000, "miles")
  3289. },
  3290. {
  3291. name: "Full-Size",
  3292. height: math.unit(8000000, "gigaparsecs")
  3293. }
  3294. ]
  3295. ))
  3296. characterMakers.push(() => makeCharacter(
  3297. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3298. {
  3299. front: {
  3300. height: math.unit(2, "meter"),
  3301. weight: math.unit(60, "kg"),
  3302. name: "Front",
  3303. image: {
  3304. source: "./media/characters/noah/front.svg"
  3305. }
  3306. },
  3307. talons: {
  3308. height: math.unit(0.315, "meter"),
  3309. name: "Talons",
  3310. image: {
  3311. source: "./media/characters/noah/talons.svg"
  3312. }
  3313. }
  3314. },
  3315. [
  3316. {
  3317. name: "Large",
  3318. height: math.unit(50, "feet")
  3319. },
  3320. {
  3321. name: "Macro",
  3322. height: math.unit(750, "feet"),
  3323. default: true
  3324. },
  3325. {
  3326. name: "Megamacro",
  3327. height: math.unit(50, "miles")
  3328. },
  3329. {
  3330. name: "Gigamacro",
  3331. height: math.unit(100000, "miles")
  3332. },
  3333. {
  3334. name: "Full-Size",
  3335. height: math.unit(3000000000, "miles")
  3336. }
  3337. ]
  3338. ))
  3339. characterMakers.push(() => makeCharacter(
  3340. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3341. {
  3342. front: {
  3343. height: math.unit(2, "meter"),
  3344. weight: math.unit(80, "kg"),
  3345. name: "Front",
  3346. image: {
  3347. source: "./media/characters/natalya/front.svg"
  3348. }
  3349. },
  3350. back: {
  3351. height: math.unit(2, "meter"),
  3352. weight: math.unit(80, "kg"),
  3353. name: "Back",
  3354. image: {
  3355. source: "./media/characters/natalya/back.svg"
  3356. }
  3357. }
  3358. },
  3359. [
  3360. {
  3361. name: "Normal",
  3362. height: math.unit(150, "feet"),
  3363. default: true
  3364. },
  3365. {
  3366. name: "Megamacro",
  3367. height: math.unit(5, "miles")
  3368. },
  3369. {
  3370. name: "Full-Size",
  3371. height: math.unit(600, "kiloparsecs")
  3372. }
  3373. ]
  3374. ))
  3375. characterMakers.push(() => makeCharacter(
  3376. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3377. {
  3378. front: {
  3379. height: math.unit(2, "meter"),
  3380. weight: math.unit(50, "kg"),
  3381. name: "Front",
  3382. image: {
  3383. source: "./media/characters/erestrebah/front.svg",
  3384. extra: 208 / 193,
  3385. bottom: 0.055
  3386. }
  3387. },
  3388. back: {
  3389. height: math.unit(2, "meter"),
  3390. weight: math.unit(50, "kg"),
  3391. name: "Back",
  3392. image: {
  3393. source: "./media/characters/erestrebah/back.svg",
  3394. extra: 1.3
  3395. }
  3396. }
  3397. },
  3398. [
  3399. {
  3400. name: "Normal",
  3401. height: math.unit(10, "feet")
  3402. },
  3403. {
  3404. name: "Large",
  3405. height: math.unit(50, "feet"),
  3406. default: true
  3407. },
  3408. {
  3409. name: "Macro",
  3410. height: math.unit(300, "feet")
  3411. },
  3412. {
  3413. name: "Macro+",
  3414. height: math.unit(750, "feet")
  3415. },
  3416. {
  3417. name: "Megamacro",
  3418. height: math.unit(3, "miles")
  3419. }
  3420. ]
  3421. ))
  3422. characterMakers.push(() => makeCharacter(
  3423. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3424. {
  3425. front: {
  3426. height: math.unit(2, "meter"),
  3427. weight: math.unit(80, "kg"),
  3428. name: "Front",
  3429. image: {
  3430. source: "./media/characters/jennifer/front.svg",
  3431. bottom: 0.11,
  3432. extra: 1.16
  3433. }
  3434. },
  3435. frontAlt: {
  3436. height: math.unit(2, "meter"),
  3437. weight: math.unit(80, "kg"),
  3438. name: "Front (Alt)",
  3439. image: {
  3440. source: "./media/characters/jennifer/front-alt.svg"
  3441. }
  3442. }
  3443. },
  3444. [
  3445. {
  3446. name: "Canon Height",
  3447. height: math.unit(120, "feet"),
  3448. default: true
  3449. },
  3450. {
  3451. name: "Macro+",
  3452. height: math.unit(300, "feet")
  3453. },
  3454. {
  3455. name: "Megamacro",
  3456. height: math.unit(20000, "feet")
  3457. }
  3458. ]
  3459. ))
  3460. characterMakers.push(() => makeCharacter(
  3461. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3462. {
  3463. front: {
  3464. height: math.unit(2, "meter"),
  3465. weight: math.unit(50, "kg"),
  3466. name: "Front",
  3467. image: {
  3468. source: "./media/characters/kalista/front.svg",
  3469. extra: 1947 / 1700,
  3470. bottom: 76.6 / 1412.98
  3471. }
  3472. },
  3473. back: {
  3474. height: math.unit(2, "meter"),
  3475. weight: math.unit(50, "kg"),
  3476. name: "Back",
  3477. image: {
  3478. source: "./media/characters/kalista/back.svg",
  3479. extra: 1366 / 1156,
  3480. bottom: 33.9 / 1362.78
  3481. }
  3482. }
  3483. },
  3484. [
  3485. {
  3486. name: "Uncomfortably Small",
  3487. height: math.unit(10, "feet")
  3488. },
  3489. {
  3490. name: "Small",
  3491. height: math.unit(30, "feet")
  3492. },
  3493. {
  3494. name: "Macro",
  3495. height: math.unit(100, "feet"),
  3496. default: true
  3497. },
  3498. {
  3499. name: "Macro+",
  3500. height: math.unit(2000, "feet")
  3501. },
  3502. {
  3503. name: "True Form",
  3504. height: math.unit(8924, "miles")
  3505. }
  3506. ]
  3507. ))
  3508. characterMakers.push(() => makeCharacter(
  3509. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3510. {
  3511. front: {
  3512. height: math.unit(2, "meter"),
  3513. weight: math.unit(120, "kg"),
  3514. name: "Front",
  3515. image: {
  3516. source: "./media/characters/ggv/front.svg"
  3517. }
  3518. },
  3519. side: {
  3520. height: math.unit(2, "meter"),
  3521. weight: math.unit(120, "kg"),
  3522. name: "Side",
  3523. image: {
  3524. source: "./media/characters/ggv/side.svg"
  3525. }
  3526. }
  3527. },
  3528. [
  3529. {
  3530. name: "Extremely Puny",
  3531. height: math.unit(9 + 5 / 12, "feet")
  3532. },
  3533. {
  3534. name: "Horribly Small",
  3535. height: math.unit(47.7, "miles"),
  3536. default: true
  3537. },
  3538. {
  3539. name: "Reasonably Sized",
  3540. height: math.unit(25000, "parsecs")
  3541. },
  3542. {
  3543. name: "Slightly Uncompressed",
  3544. height: math.unit(7.77e31, "parsecs")
  3545. },
  3546. {
  3547. name: "Omniversal",
  3548. height: math.unit(1e300, "meters")
  3549. },
  3550. ]
  3551. ))
  3552. characterMakers.push(() => makeCharacter(
  3553. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3554. {
  3555. front: {
  3556. height: math.unit(2, "meter"),
  3557. weight: math.unit(75, "lb"),
  3558. name: "Front",
  3559. image: {
  3560. source: "./media/characters/napalm/front.svg"
  3561. }
  3562. },
  3563. back: {
  3564. height: math.unit(2, "meter"),
  3565. weight: math.unit(75, "lb"),
  3566. name: "Back",
  3567. image: {
  3568. source: "./media/characters/napalm/back.svg"
  3569. }
  3570. }
  3571. },
  3572. [
  3573. {
  3574. name: "Standard",
  3575. height: math.unit(55, "feet"),
  3576. default: true
  3577. }
  3578. ]
  3579. ))
  3580. characterMakers.push(() => makeCharacter(
  3581. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3582. {
  3583. front: {
  3584. height: math.unit(7 + 5 / 6, "feet"),
  3585. weight: math.unit(325, "lb"),
  3586. name: "Front",
  3587. image: {
  3588. source: "./media/characters/asana/front.svg",
  3589. extra: 1133 / 1060,
  3590. bottom: 15.2 / 1148.6
  3591. }
  3592. },
  3593. back: {
  3594. height: math.unit(7 + 5 / 6, "feet"),
  3595. weight: math.unit(325, "lb"),
  3596. name: "Back",
  3597. image: {
  3598. source: "./media/characters/asana/back.svg",
  3599. extra: 1114 / 1043,
  3600. bottom: 5 / 1120
  3601. }
  3602. },
  3603. dressedDark: {
  3604. height: math.unit(7 + 5 / 6, "feet"),
  3605. weight: math.unit(325, "lb"),
  3606. name: "Dressed (Dark)",
  3607. image: {
  3608. source: "./media/characters/asana/dressed-dark.svg",
  3609. extra: 1133 / 1060,
  3610. bottom: 15.2 / 1148.6
  3611. }
  3612. },
  3613. dressedLight: {
  3614. height: math.unit(7 + 5 / 6, "feet"),
  3615. weight: math.unit(325, "lb"),
  3616. name: "Dressed (Light)",
  3617. image: {
  3618. source: "./media/characters/asana/dressed-light.svg",
  3619. extra: 1133 / 1060,
  3620. bottom: 15.2 / 1148.6
  3621. }
  3622. },
  3623. },
  3624. [
  3625. {
  3626. name: "Standard",
  3627. height: math.unit(7 + 5 / 6, "feet"),
  3628. default: true
  3629. },
  3630. {
  3631. name: "Large",
  3632. height: math.unit(10, "meters")
  3633. },
  3634. {
  3635. name: "Macro",
  3636. height: math.unit(2500, "meters")
  3637. },
  3638. {
  3639. name: "Megamacro",
  3640. height: math.unit(5e6, "meters")
  3641. },
  3642. {
  3643. name: "Examacro",
  3644. height: math.unit(5e12, "lightyears")
  3645. },
  3646. {
  3647. name: "Max Size",
  3648. height: math.unit(1e31, "lightyears")
  3649. }
  3650. ]
  3651. ))
  3652. characterMakers.push(() => makeCharacter(
  3653. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3654. {
  3655. front: {
  3656. height: math.unit(2, "meter"),
  3657. weight: math.unit(60, "kg"),
  3658. name: "Front",
  3659. image: {
  3660. source: "./media/characters/ebony/front.svg",
  3661. bottom: 0.03,
  3662. extra: 1045 / 810 + 0.03
  3663. }
  3664. },
  3665. side: {
  3666. height: math.unit(2, "meter"),
  3667. weight: math.unit(60, "kg"),
  3668. name: "Side",
  3669. image: {
  3670. source: "./media/characters/ebony/side.svg",
  3671. bottom: 0.03,
  3672. extra: 1045 / 810 + 0.03
  3673. }
  3674. },
  3675. back: {
  3676. height: math.unit(2, "meter"),
  3677. weight: math.unit(60, "kg"),
  3678. name: "Back",
  3679. image: {
  3680. source: "./media/characters/ebony/back.svg",
  3681. bottom: 0.01,
  3682. extra: 1045 / 810 + 0.01
  3683. }
  3684. },
  3685. },
  3686. [
  3687. // TODO check why I did this lol
  3688. {
  3689. name: "Standard",
  3690. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3691. default: true
  3692. },
  3693. {
  3694. name: "Macro",
  3695. height: math.unit(200, "feet")
  3696. },
  3697. {
  3698. name: "Gigamacro",
  3699. height: math.unit(13000, "km")
  3700. }
  3701. ]
  3702. ))
  3703. characterMakers.push(() => makeCharacter(
  3704. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3705. {
  3706. front: {
  3707. height: math.unit(6, "feet"),
  3708. weight: math.unit(175, "lb"),
  3709. name: "Front",
  3710. image: {
  3711. source: "./media/characters/mountain/front.svg",
  3712. extra: 972 / 955,
  3713. bottom: 64 / 1036.6
  3714. }
  3715. },
  3716. back: {
  3717. height: math.unit(6, "feet"),
  3718. weight: math.unit(175, "lb"),
  3719. name: "Back",
  3720. image: {
  3721. source: "./media/characters/mountain/back.svg",
  3722. extra: 970 / 950,
  3723. bottom: 28.25 / 999
  3724. }
  3725. },
  3726. },
  3727. [
  3728. {
  3729. name: "Large",
  3730. height: math.unit(20, "meters")
  3731. },
  3732. {
  3733. name: "Macro",
  3734. height: math.unit(300, "meters")
  3735. },
  3736. {
  3737. name: "Gigamacro",
  3738. height: math.unit(10000, "km"),
  3739. default: true
  3740. },
  3741. {
  3742. name: "Examacro",
  3743. height: math.unit(10e9, "lightyears")
  3744. }
  3745. ]
  3746. ))
  3747. characterMakers.push(() => makeCharacter(
  3748. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3749. {
  3750. front: {
  3751. height: math.unit(8, "feet"),
  3752. weight: math.unit(500, "lb"),
  3753. name: "Front",
  3754. image: {
  3755. source: "./media/characters/rick/front.svg"
  3756. }
  3757. }
  3758. },
  3759. [
  3760. {
  3761. name: "Normal",
  3762. height: math.unit(8, "feet"),
  3763. default: true
  3764. },
  3765. {
  3766. name: "Macro",
  3767. height: math.unit(5, "km")
  3768. }
  3769. ]
  3770. ))
  3771. characterMakers.push(() => makeCharacter(
  3772. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3773. {
  3774. front: {
  3775. height: math.unit(8, "feet"),
  3776. weight: math.unit(120, "lb"),
  3777. name: "Front",
  3778. image: {
  3779. source: "./media/characters/ona/front.svg"
  3780. }
  3781. },
  3782. frontAlt: {
  3783. height: math.unit(8, "feet"),
  3784. weight: math.unit(120, "lb"),
  3785. name: "Front (Alt)",
  3786. image: {
  3787. source: "./media/characters/ona/front-alt.svg"
  3788. }
  3789. },
  3790. back: {
  3791. height: math.unit(8, "feet"),
  3792. weight: math.unit(120, "lb"),
  3793. name: "Back",
  3794. image: {
  3795. source: "./media/characters/ona/back.svg"
  3796. }
  3797. },
  3798. foot: {
  3799. height: math.unit(1.1, "feet"),
  3800. name: "Foot",
  3801. image: {
  3802. source: "./media/characters/ona/foot.svg"
  3803. }
  3804. }
  3805. },
  3806. [
  3807. {
  3808. name: "Megamacro",
  3809. height: math.unit(70, "km"),
  3810. default: true
  3811. },
  3812. {
  3813. name: "Gigamacro",
  3814. height: math.unit(681818, "miles")
  3815. },
  3816. {
  3817. name: "Examacro",
  3818. height: math.unit(3800000, "lightyears")
  3819. },
  3820. ]
  3821. ))
  3822. characterMakers.push(() => makeCharacter(
  3823. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3824. {
  3825. front: {
  3826. height: math.unit(12, "feet"),
  3827. weight: math.unit(3000, "lb"),
  3828. name: "Front",
  3829. image: {
  3830. source: "./media/characters/mech/front.svg",
  3831. extra: 2900 / 2770,
  3832. bottom: 110 / 3010
  3833. }
  3834. },
  3835. back: {
  3836. height: math.unit(12, "feet"),
  3837. weight: math.unit(3000, "lb"),
  3838. name: "Back",
  3839. image: {
  3840. source: "./media/characters/mech/back.svg",
  3841. extra: 3011 / 2890,
  3842. bottom: 94 / 3105
  3843. }
  3844. },
  3845. maw: {
  3846. height: math.unit(3.07, "feet"),
  3847. name: "Maw",
  3848. image: {
  3849. source: "./media/characters/mech/maw.svg"
  3850. }
  3851. },
  3852. head: {
  3853. height: math.unit(2.82, "feet"),
  3854. name: "Head",
  3855. image: {
  3856. source: "./media/characters/mech/head.svg"
  3857. }
  3858. },
  3859. dick: {
  3860. height: math.unit(1.43, "feet"),
  3861. name: "Dick",
  3862. image: {
  3863. source: "./media/characters/mech/dick.svg"
  3864. }
  3865. },
  3866. },
  3867. [
  3868. {
  3869. name: "Normal",
  3870. height: math.unit(12, "feet")
  3871. },
  3872. {
  3873. name: "Macro",
  3874. height: math.unit(300, "feet"),
  3875. default: true
  3876. },
  3877. {
  3878. name: "Macro+",
  3879. height: math.unit(1500, "feet")
  3880. },
  3881. ]
  3882. ))
  3883. characterMakers.push(() => makeCharacter(
  3884. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3885. {
  3886. front: {
  3887. height: math.unit(1.3, "meter"),
  3888. weight: math.unit(30, "kg"),
  3889. name: "Front",
  3890. image: {
  3891. source: "./media/characters/gregory/front.svg",
  3892. }
  3893. }
  3894. },
  3895. [
  3896. {
  3897. name: "Normal",
  3898. height: math.unit(1.3, "meter"),
  3899. default: true
  3900. },
  3901. {
  3902. name: "Macro",
  3903. height: math.unit(20, "meter")
  3904. }
  3905. ]
  3906. ))
  3907. characterMakers.push(() => makeCharacter(
  3908. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3909. {
  3910. front: {
  3911. height: math.unit(2.8, "meter"),
  3912. weight: math.unit(200, "kg"),
  3913. name: "Front",
  3914. image: {
  3915. source: "./media/characters/elory/front.svg",
  3916. }
  3917. }
  3918. },
  3919. [
  3920. {
  3921. name: "Normal",
  3922. height: math.unit(2.8, "meter"),
  3923. default: true
  3924. },
  3925. {
  3926. name: "Macro",
  3927. height: math.unit(38, "meter")
  3928. }
  3929. ]
  3930. ))
  3931. characterMakers.push(() => makeCharacter(
  3932. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3933. {
  3934. front: {
  3935. height: math.unit(470, "feet"),
  3936. weight: math.unit(924, "tons"),
  3937. name: "Front",
  3938. image: {
  3939. source: "./media/characters/angelpatamon/front.svg",
  3940. }
  3941. }
  3942. },
  3943. [
  3944. {
  3945. name: "Normal",
  3946. height: math.unit(470, "feet"),
  3947. default: true
  3948. },
  3949. {
  3950. name: "Deity Size I",
  3951. height: math.unit(28651.2, "km")
  3952. },
  3953. {
  3954. name: "Deity Size II",
  3955. height: math.unit(171907.2, "km")
  3956. }
  3957. ]
  3958. ))
  3959. characterMakers.push(() => makeCharacter(
  3960. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3961. {
  3962. side: {
  3963. height: math.unit(7.2, "meter"),
  3964. weight: math.unit(8.2, "tons"),
  3965. name: "Side",
  3966. image: {
  3967. source: "./media/characters/cryae/side.svg",
  3968. extra: 3500 / 1500
  3969. }
  3970. }
  3971. },
  3972. [
  3973. {
  3974. name: "Normal",
  3975. height: math.unit(7.2, "meter"),
  3976. default: true
  3977. }
  3978. ]
  3979. ))
  3980. characterMakers.push(() => makeCharacter(
  3981. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3982. {
  3983. front: {
  3984. height: math.unit(6, "feet"),
  3985. weight: math.unit(175, "lb"),
  3986. name: "Front",
  3987. image: {
  3988. source: "./media/characters/xera/front.svg",
  3989. extra: 2377 / 1972,
  3990. bottom: 75.5 / 2452
  3991. }
  3992. },
  3993. side: {
  3994. height: math.unit(6, "feet"),
  3995. weight: math.unit(175, "lb"),
  3996. name: "Side",
  3997. image: {
  3998. source: "./media/characters/xera/side.svg",
  3999. extra: 2345 / 2019,
  4000. bottom: 39.7 / 2384
  4001. }
  4002. },
  4003. back: {
  4004. height: math.unit(6, "feet"),
  4005. weight: math.unit(175, "lb"),
  4006. name: "Back",
  4007. image: {
  4008. source: "./media/characters/xera/back.svg",
  4009. extra: 2095 / 1984,
  4010. bottom: 67 / 2166
  4011. }
  4012. },
  4013. },
  4014. [
  4015. {
  4016. name: "Small",
  4017. height: math.unit(10, "feet")
  4018. },
  4019. {
  4020. name: "Macro",
  4021. height: math.unit(500, "meters"),
  4022. default: true
  4023. },
  4024. {
  4025. name: "Macro+",
  4026. height: math.unit(10, "km")
  4027. },
  4028. {
  4029. name: "Gigamacro",
  4030. height: math.unit(25000, "km")
  4031. },
  4032. {
  4033. name: "Teramacro",
  4034. height: math.unit(3e6, "km")
  4035. }
  4036. ]
  4037. ))
  4038. characterMakers.push(() => makeCharacter(
  4039. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4040. {
  4041. front: {
  4042. height: math.unit(6, "feet"),
  4043. weight: math.unit(175, "lb"),
  4044. name: "Front",
  4045. image: {
  4046. source: "./media/characters/nebula/front.svg",
  4047. extra: 2566 / 2362,
  4048. bottom: 81 / 2644
  4049. }
  4050. }
  4051. },
  4052. [
  4053. {
  4054. name: "Small",
  4055. height: math.unit(4.5, "meters")
  4056. },
  4057. {
  4058. name: "Macro",
  4059. height: math.unit(1500, "meters"),
  4060. default: true
  4061. },
  4062. {
  4063. name: "Megamacro",
  4064. height: math.unit(150, "km")
  4065. },
  4066. {
  4067. name: "Gigamacro",
  4068. height: math.unit(27000, "km")
  4069. }
  4070. ]
  4071. ))
  4072. characterMakers.push(() => makeCharacter(
  4073. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4074. {
  4075. front: {
  4076. height: math.unit(6, "feet"),
  4077. weight: math.unit(225, "lb"),
  4078. name: "Front",
  4079. image: {
  4080. source: "./media/characters/abysgar/front.svg"
  4081. }
  4082. }
  4083. },
  4084. [
  4085. {
  4086. name: "Small",
  4087. height: math.unit(4.5, "meters")
  4088. },
  4089. {
  4090. name: "Macro",
  4091. height: math.unit(1250, "meters"),
  4092. default: true
  4093. },
  4094. {
  4095. name: "Megamacro",
  4096. height: math.unit(125, "km")
  4097. },
  4098. {
  4099. name: "Gigamacro",
  4100. height: math.unit(26000, "km")
  4101. }
  4102. ]
  4103. ))
  4104. characterMakers.push(() => makeCharacter(
  4105. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4106. {
  4107. front: {
  4108. height: math.unit(6, "feet"),
  4109. weight: math.unit(180, "lb"),
  4110. name: "Front",
  4111. image: {
  4112. source: "./media/characters/yakuz/front.svg"
  4113. }
  4114. }
  4115. },
  4116. [
  4117. {
  4118. name: "Small",
  4119. height: math.unit(5, "meters")
  4120. },
  4121. {
  4122. name: "Macro",
  4123. height: math.unit(1500, "meters"),
  4124. default: true
  4125. },
  4126. {
  4127. name: "Megamacro",
  4128. height: math.unit(200, "km")
  4129. },
  4130. {
  4131. name: "Gigamacro",
  4132. height: math.unit(100000, "km")
  4133. }
  4134. ]
  4135. ))
  4136. characterMakers.push(() => makeCharacter(
  4137. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4138. {
  4139. front: {
  4140. height: math.unit(6, "feet"),
  4141. weight: math.unit(175, "lb"),
  4142. name: "Front",
  4143. image: {
  4144. source: "./media/characters/mirova/front.svg",
  4145. extra: 3334 / 3071,
  4146. bottom: 42 / 3375.6
  4147. }
  4148. }
  4149. },
  4150. [
  4151. {
  4152. name: "Small",
  4153. height: math.unit(5, "meters")
  4154. },
  4155. {
  4156. name: "Macro",
  4157. height: math.unit(900, "meters"),
  4158. default: true
  4159. },
  4160. {
  4161. name: "Megamacro",
  4162. height: math.unit(135, "km")
  4163. },
  4164. {
  4165. name: "Gigamacro",
  4166. height: math.unit(20000, "km")
  4167. }
  4168. ]
  4169. ))
  4170. characterMakers.push(() => makeCharacter(
  4171. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4172. {
  4173. side: {
  4174. height: math.unit(28.35, "feet"),
  4175. weight: math.unit(99.75, "tons"),
  4176. name: "Side",
  4177. image: {
  4178. source: "./media/characters/asana-mech/side.svg",
  4179. extra: 923 / 699,
  4180. bottom: 50 / 975
  4181. }
  4182. },
  4183. chaingun: {
  4184. height: math.unit(7, "feet"),
  4185. weight: math.unit(2400, "lb"),
  4186. name: "Chaingun",
  4187. image: {
  4188. source: "./media/characters/asana-mech/chaingun.svg"
  4189. }
  4190. },
  4191. laser: {
  4192. height: math.unit(7.12, "feet"),
  4193. weight: math.unit(2000, "lb"),
  4194. name: "Laser",
  4195. image: {
  4196. source: "./media/characters/asana-mech/laser.svg"
  4197. }
  4198. },
  4199. },
  4200. [
  4201. {
  4202. name: "Normal",
  4203. height: math.unit(28.35, "feet"),
  4204. default: true
  4205. },
  4206. {
  4207. name: "Macro",
  4208. height: math.unit(2500, "feet")
  4209. },
  4210. {
  4211. name: "Megamacro",
  4212. height: math.unit(25, "miles")
  4213. },
  4214. {
  4215. name: "Examacro",
  4216. height: math.unit(6e8, "lightyears")
  4217. },
  4218. ]
  4219. ))
  4220. characterMakers.push(() => makeCharacter(
  4221. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4222. {
  4223. front: {
  4224. height: math.unit(5, "meters"),
  4225. weight: math.unit(1000, "kg"),
  4226. name: "Front",
  4227. image: {
  4228. source: "./media/characters/asche/front.svg",
  4229. extra: 1258 / 1190,
  4230. bottom: 47 / 1305
  4231. }
  4232. },
  4233. frontUnderwear: {
  4234. height: math.unit(5, "meters"),
  4235. weight: math.unit(1000, "kg"),
  4236. name: "Front (Underwear)",
  4237. image: {
  4238. source: "./media/characters/asche/front-underwear.svg",
  4239. extra: 1258 / 1190,
  4240. bottom: 47 / 1305
  4241. }
  4242. },
  4243. frontDressed: {
  4244. height: math.unit(5, "meters"),
  4245. weight: math.unit(1000, "kg"),
  4246. name: "Front (Dressed)",
  4247. image: {
  4248. source: "./media/characters/asche/front-dressed.svg",
  4249. extra: 1258 / 1190,
  4250. bottom: 47 / 1305
  4251. }
  4252. },
  4253. frontArmor: {
  4254. height: math.unit(5, "meters"),
  4255. weight: math.unit(1000, "kg"),
  4256. name: "Front (Armored)",
  4257. image: {
  4258. source: "./media/characters/asche/front-armored.svg",
  4259. extra: 1374 / 1308,
  4260. bottom: 23 / 1397
  4261. }
  4262. },
  4263. mp724: {
  4264. height: math.unit(0.96, "meters"),
  4265. weight: math.unit(38, "kg"),
  4266. name: "H&K MP724",
  4267. image: {
  4268. source: "./media/characters/asche/h&k-mp724.svg"
  4269. }
  4270. },
  4271. side: {
  4272. height: math.unit(5, "meters"),
  4273. weight: math.unit(1000, "kg"),
  4274. name: "Side",
  4275. image: {
  4276. source: "./media/characters/asche/side.svg",
  4277. extra: 1717 / 1609,
  4278. bottom: 0.005
  4279. }
  4280. },
  4281. back: {
  4282. height: math.unit(5, "meters"),
  4283. weight: math.unit(1000, "kg"),
  4284. name: "Back",
  4285. image: {
  4286. source: "./media/characters/asche/back.svg",
  4287. extra: 1570 / 1501
  4288. }
  4289. },
  4290. },
  4291. [
  4292. {
  4293. name: "DEFCON 5",
  4294. height: math.unit(5, "meters")
  4295. },
  4296. {
  4297. name: "DEFCON 4",
  4298. height: math.unit(500, "meters"),
  4299. default: true
  4300. },
  4301. {
  4302. name: "DEFCON 3",
  4303. height: math.unit(5, "km")
  4304. },
  4305. {
  4306. name: "DEFCON 2",
  4307. height: math.unit(500, "km")
  4308. },
  4309. {
  4310. name: "DEFCON 1",
  4311. height: math.unit(500000, "km")
  4312. },
  4313. {
  4314. name: "DEFCON 0",
  4315. height: math.unit(3, "gigaparsecs")
  4316. },
  4317. ]
  4318. ))
  4319. characterMakers.push(() => makeCharacter(
  4320. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4321. {
  4322. front: {
  4323. height: math.unit(2, "meters"),
  4324. weight: math.unit(76, "kg"),
  4325. name: "Front",
  4326. image: {
  4327. source: "./media/characters/gale/front.svg"
  4328. }
  4329. },
  4330. frontAlt1: {
  4331. height: math.unit(2, "meters"),
  4332. weight: math.unit(76, "kg"),
  4333. name: "Front (Alt 1)",
  4334. image: {
  4335. source: "./media/characters/gale/front-alt-1.svg"
  4336. }
  4337. },
  4338. frontAlt2: {
  4339. height: math.unit(2, "meters"),
  4340. weight: math.unit(76, "kg"),
  4341. name: "Front (Alt 2)",
  4342. image: {
  4343. source: "./media/characters/gale/front-alt-2.svg"
  4344. }
  4345. },
  4346. },
  4347. [
  4348. {
  4349. name: "Normal",
  4350. height: math.unit(7, "feet")
  4351. },
  4352. {
  4353. name: "Macro",
  4354. height: math.unit(150, "feet"),
  4355. default: true
  4356. },
  4357. {
  4358. name: "Macro+",
  4359. height: math.unit(300, "feet")
  4360. },
  4361. ]
  4362. ))
  4363. characterMakers.push(() => makeCharacter(
  4364. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4365. {
  4366. front: {
  4367. height: math.unit(2, "meters"),
  4368. weight: math.unit(76, "kg"),
  4369. name: "Front",
  4370. image: {
  4371. source: "./media/characters/draylen/front.svg"
  4372. }
  4373. }
  4374. },
  4375. [
  4376. {
  4377. name: "Macro",
  4378. height: math.unit(150, "feet"),
  4379. default: true
  4380. }
  4381. ]
  4382. ))
  4383. characterMakers.push(() => makeCharacter(
  4384. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4385. {
  4386. front: {
  4387. height: math.unit(7 + 9 / 12, "feet"),
  4388. weight: math.unit(379, "lbs"),
  4389. name: "Front",
  4390. image: {
  4391. source: "./media/characters/chez/front.svg"
  4392. }
  4393. },
  4394. side: {
  4395. height: math.unit(7 + 9 / 12, "feet"),
  4396. weight: math.unit(379, "lbs"),
  4397. name: "Side",
  4398. image: {
  4399. source: "./media/characters/chez/side.svg"
  4400. }
  4401. }
  4402. },
  4403. [
  4404. {
  4405. name: "Normal",
  4406. height: math.unit(7 + 9 / 12, "feet"),
  4407. default: true
  4408. },
  4409. {
  4410. name: "God King",
  4411. height: math.unit(9750000, "meters")
  4412. }
  4413. ]
  4414. ))
  4415. characterMakers.push(() => makeCharacter(
  4416. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4417. {
  4418. front: {
  4419. height: math.unit(6, "feet"),
  4420. weight: math.unit(275, "lbs"),
  4421. name: "Front",
  4422. image: {
  4423. source: "./media/characters/kaylum/front.svg",
  4424. bottom: 0.01,
  4425. extra: 1166 / 1031
  4426. }
  4427. },
  4428. frontWingless: {
  4429. height: math.unit(6, "feet"),
  4430. weight: math.unit(275, "lbs"),
  4431. name: "Front (Wingless)",
  4432. image: {
  4433. source: "./media/characters/kaylum/front-wingless.svg",
  4434. bottom: 0.01,
  4435. extra: 1117 / 1031
  4436. }
  4437. }
  4438. },
  4439. [
  4440. {
  4441. name: "Normal",
  4442. height: math.unit(3.05, "meters")
  4443. },
  4444. {
  4445. name: "Master",
  4446. height: math.unit(5.5, "meters")
  4447. },
  4448. {
  4449. name: "Rampage",
  4450. height: math.unit(19, "meters")
  4451. },
  4452. {
  4453. name: "Macro Lite",
  4454. height: math.unit(37, "meters")
  4455. },
  4456. {
  4457. name: "Hyper Predator",
  4458. height: math.unit(61, "meters")
  4459. },
  4460. {
  4461. name: "Macro",
  4462. height: math.unit(138, "meters"),
  4463. default: true
  4464. }
  4465. ]
  4466. ))
  4467. characterMakers.push(() => makeCharacter(
  4468. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4469. {
  4470. front: {
  4471. height: math.unit(6, "feet"),
  4472. weight: math.unit(150, "lbs"),
  4473. name: "Front",
  4474. image: {
  4475. source: "./media/characters/geta/front.svg"
  4476. }
  4477. }
  4478. },
  4479. [
  4480. {
  4481. name: "Micro",
  4482. height: math.unit(3, "inches"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Normal",
  4487. height: math.unit(5 + 5 / 12, "feet")
  4488. }
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(6, "feet"),
  4496. weight: math.unit(300, "lbs"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/tyrnn/front.svg"
  4500. }
  4501. }
  4502. },
  4503. [
  4504. {
  4505. name: "Main Height",
  4506. height: math.unit(355, "feet"),
  4507. default: true
  4508. },
  4509. {
  4510. name: "Fave. Height",
  4511. height: math.unit(2400, "feet")
  4512. }
  4513. ]
  4514. ))
  4515. characterMakers.push(() => makeCharacter(
  4516. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4517. {
  4518. front: {
  4519. height: math.unit(6, "feet"),
  4520. weight: math.unit(300, "lbs"),
  4521. name: "Front",
  4522. image: {
  4523. source: "./media/characters/appledectomy/front.svg"
  4524. }
  4525. }
  4526. },
  4527. [
  4528. {
  4529. name: "Macro",
  4530. height: math.unit(2500, "feet")
  4531. },
  4532. {
  4533. name: "Megamacro",
  4534. height: math.unit(50, "miles"),
  4535. default: true
  4536. },
  4537. {
  4538. name: "Gigamacro",
  4539. height: math.unit(5000, "miles")
  4540. },
  4541. {
  4542. name: "Teramacro",
  4543. height: math.unit(250000, "miles")
  4544. },
  4545. ]
  4546. ))
  4547. characterMakers.push(() => makeCharacter(
  4548. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4549. {
  4550. front: {
  4551. height: math.unit(6, "feet"),
  4552. weight: math.unit(200, "lbs"),
  4553. name: "Front",
  4554. image: {
  4555. source: "./media/characters/vulpes/front.svg",
  4556. extra: 573 / 543,
  4557. bottom: 0.033
  4558. }
  4559. },
  4560. side: {
  4561. height: math.unit(6, "feet"),
  4562. weight: math.unit(200, "lbs"),
  4563. name: "Side",
  4564. image: {
  4565. source: "./media/characters/vulpes/side.svg",
  4566. extra: 577 / 549,
  4567. bottom: 11 / 588
  4568. }
  4569. },
  4570. back: {
  4571. height: math.unit(6, "feet"),
  4572. weight: math.unit(200, "lbs"),
  4573. name: "Back",
  4574. image: {
  4575. source: "./media/characters/vulpes/back.svg",
  4576. extra: 573 / 549,
  4577. bottom: 20 / 593
  4578. }
  4579. },
  4580. feet: {
  4581. height: math.unit(1.276, "feet"),
  4582. name: "Feet",
  4583. image: {
  4584. source: "./media/characters/vulpes/feet.svg"
  4585. }
  4586. },
  4587. maw: {
  4588. height: math.unit(1.18, "feet"),
  4589. name: "Maw",
  4590. image: {
  4591. source: "./media/characters/vulpes/maw.svg"
  4592. }
  4593. },
  4594. },
  4595. [
  4596. {
  4597. name: "Micro",
  4598. height: math.unit(2, "inches")
  4599. },
  4600. {
  4601. name: "Normal",
  4602. height: math.unit(6.3, "feet")
  4603. },
  4604. {
  4605. name: "Macro",
  4606. height: math.unit(850, "feet")
  4607. },
  4608. {
  4609. name: "Megamacro",
  4610. height: math.unit(7500, "feet"),
  4611. default: true
  4612. },
  4613. {
  4614. name: "Gigamacro",
  4615. height: math.unit(570000, "miles")
  4616. }
  4617. ]
  4618. ))
  4619. characterMakers.push(() => makeCharacter(
  4620. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4621. {
  4622. front: {
  4623. height: math.unit(6, "feet"),
  4624. weight: math.unit(210, "lbs"),
  4625. name: "Front",
  4626. image: {
  4627. source: "./media/characters/rain-fallen/front.svg"
  4628. }
  4629. },
  4630. side: {
  4631. height: math.unit(6, "feet"),
  4632. weight: math.unit(210, "lbs"),
  4633. name: "Side",
  4634. image: {
  4635. source: "./media/characters/rain-fallen/side.svg"
  4636. }
  4637. },
  4638. back: {
  4639. height: math.unit(6, "feet"),
  4640. weight: math.unit(210, "lbs"),
  4641. name: "Back",
  4642. image: {
  4643. source: "./media/characters/rain-fallen/back.svg"
  4644. }
  4645. },
  4646. feral: {
  4647. height: math.unit(9, "feet"),
  4648. weight: math.unit(700, "lbs"),
  4649. name: "Feral",
  4650. image: {
  4651. source: "./media/characters/rain-fallen/feral.svg"
  4652. }
  4653. },
  4654. },
  4655. [
  4656. {
  4657. name: "Meddling with Mortals",
  4658. height: math.unit(8 + 8/12, "feet")
  4659. },
  4660. {
  4661. name: "Normal",
  4662. height: math.unit(5, "meter")
  4663. },
  4664. {
  4665. name: "Macro",
  4666. height: math.unit(150, "meter"),
  4667. default: true
  4668. },
  4669. {
  4670. name: "Megamacro",
  4671. height: math.unit(278e6, "meter")
  4672. },
  4673. {
  4674. name: "Gigamacro",
  4675. height: math.unit(2e9, "meter")
  4676. },
  4677. {
  4678. name: "Teramacro",
  4679. height: math.unit(8e12, "meter")
  4680. },
  4681. {
  4682. name: "Devourer",
  4683. height: math.unit(14, "zettameters")
  4684. },
  4685. {
  4686. name: "Scarlet King",
  4687. height: math.unit(18, "yottameters")
  4688. },
  4689. {
  4690. name: "Void",
  4691. height: math.unit(1e88, "yottameters")
  4692. }
  4693. ]
  4694. ))
  4695. characterMakers.push(() => makeCharacter(
  4696. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4697. {
  4698. standing: {
  4699. height: math.unit(6, "feet"),
  4700. weight: math.unit(180, "lbs"),
  4701. name: "Standing",
  4702. image: {
  4703. source: "./media/characters/zaakira/standing.svg",
  4704. extra: 1599/1504,
  4705. bottom: 39/1638
  4706. }
  4707. },
  4708. laying: {
  4709. height: math.unit(3, "feet"),
  4710. weight: math.unit(180, "lbs"),
  4711. name: "Laying",
  4712. image: {
  4713. source: "./media/characters/zaakira/laying.svg"
  4714. }
  4715. },
  4716. },
  4717. [
  4718. {
  4719. name: "Normal",
  4720. height: math.unit(12, "feet")
  4721. },
  4722. {
  4723. name: "Macro",
  4724. height: math.unit(279, "feet"),
  4725. default: true
  4726. }
  4727. ]
  4728. ))
  4729. characterMakers.push(() => makeCharacter(
  4730. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4731. {
  4732. femSfw: {
  4733. height: math.unit(8, "feet"),
  4734. weight: math.unit(350, "lb"),
  4735. name: "Fem",
  4736. image: {
  4737. source: "./media/characters/sigvald/fem-sfw.svg",
  4738. extra: 182 / 164,
  4739. bottom: 8.7 / 190.5
  4740. }
  4741. },
  4742. femNsfw: {
  4743. height: math.unit(8, "feet"),
  4744. weight: math.unit(350, "lb"),
  4745. name: "Fem (NSFW)",
  4746. image: {
  4747. source: "./media/characters/sigvald/fem-nsfw.svg",
  4748. extra: 182 / 164,
  4749. bottom: 8.7 / 190.5
  4750. }
  4751. },
  4752. maleNsfw: {
  4753. height: math.unit(8, "feet"),
  4754. weight: math.unit(350, "lb"),
  4755. name: "Male (NSFW)",
  4756. image: {
  4757. source: "./media/characters/sigvald/male-nsfw.svg",
  4758. extra: 182 / 164,
  4759. bottom: 8.7 / 190.5
  4760. }
  4761. },
  4762. hermNsfw: {
  4763. height: math.unit(8, "feet"),
  4764. weight: math.unit(350, "lb"),
  4765. name: "Herm (NSFW)",
  4766. image: {
  4767. source: "./media/characters/sigvald/herm-nsfw.svg",
  4768. extra: 182 / 164,
  4769. bottom: 8.7 / 190.5
  4770. }
  4771. },
  4772. dick: {
  4773. height: math.unit(2.36, "feet"),
  4774. name: "Dick",
  4775. image: {
  4776. source: "./media/characters/sigvald/dick.svg"
  4777. }
  4778. },
  4779. eye: {
  4780. height: math.unit(0.31, "feet"),
  4781. name: "Eye",
  4782. image: {
  4783. source: "./media/characters/sigvald/eye.svg"
  4784. }
  4785. },
  4786. mouth: {
  4787. height: math.unit(0.92, "feet"),
  4788. name: "Mouth",
  4789. image: {
  4790. source: "./media/characters/sigvald/mouth.svg"
  4791. }
  4792. },
  4793. paws: {
  4794. height: math.unit(2.2, "feet"),
  4795. name: "Paws",
  4796. image: {
  4797. source: "./media/characters/sigvald/paws.svg"
  4798. }
  4799. }
  4800. },
  4801. [
  4802. {
  4803. name: "Normal",
  4804. height: math.unit(8, "feet")
  4805. },
  4806. {
  4807. name: "Large",
  4808. height: math.unit(12, "feet")
  4809. },
  4810. {
  4811. name: "Larger",
  4812. height: math.unit(20, "feet")
  4813. },
  4814. {
  4815. name: "Macro",
  4816. height: math.unit(150, "feet")
  4817. },
  4818. {
  4819. name: "Macro+",
  4820. height: math.unit(200, "feet"),
  4821. default: true
  4822. },
  4823. ]
  4824. ))
  4825. characterMakers.push(() => makeCharacter(
  4826. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4827. {
  4828. side: {
  4829. height: math.unit(12, "feet"),
  4830. weight: math.unit(2000, "kg"),
  4831. name: "Side",
  4832. image: {
  4833. source: "./media/characters/scott/side.svg",
  4834. extra: 754 / 724,
  4835. bottom: 0.069
  4836. }
  4837. },
  4838. upright: {
  4839. height: math.unit(12, "feet"),
  4840. weight: math.unit(2000, "kg"),
  4841. name: "Upright",
  4842. image: {
  4843. source: "./media/characters/scott/upright.svg",
  4844. extra: 3881 / 3722,
  4845. bottom: 0.05
  4846. }
  4847. },
  4848. },
  4849. [
  4850. {
  4851. name: "Normal",
  4852. height: math.unit(12, "feet"),
  4853. default: true
  4854. },
  4855. ]
  4856. ))
  4857. characterMakers.push(() => makeCharacter(
  4858. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4859. {
  4860. side: {
  4861. height: math.unit(8, "meters"),
  4862. weight: math.unit(84755, "lbs"),
  4863. name: "Side",
  4864. image: {
  4865. source: "./media/characters/tobias/side.svg",
  4866. extra: 1474 / 1096,
  4867. bottom: 38.9 / 1513.1235
  4868. }
  4869. },
  4870. },
  4871. [
  4872. {
  4873. name: "Normal",
  4874. height: math.unit(8, "meters"),
  4875. default: true
  4876. },
  4877. ]
  4878. ))
  4879. characterMakers.push(() => makeCharacter(
  4880. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4881. {
  4882. front: {
  4883. height: math.unit(5.5, "feet"),
  4884. weight: math.unit(400, "lbs"),
  4885. name: "Front",
  4886. image: {
  4887. source: "./media/characters/kieran/front.svg",
  4888. extra: 2694 / 2364,
  4889. bottom: 217 / 2908
  4890. }
  4891. },
  4892. side: {
  4893. height: math.unit(5.5, "feet"),
  4894. weight: math.unit(400, "lbs"),
  4895. name: "Side",
  4896. image: {
  4897. source: "./media/characters/kieran/side.svg",
  4898. extra: 875 / 777,
  4899. bottom: 84.6 / 959
  4900. }
  4901. },
  4902. },
  4903. [
  4904. {
  4905. name: "Normal",
  4906. height: math.unit(5.5, "feet"),
  4907. default: true
  4908. },
  4909. ]
  4910. ))
  4911. characterMakers.push(() => makeCharacter(
  4912. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4913. {
  4914. side: {
  4915. height: math.unit(2, "meters"),
  4916. weight: math.unit(70, "kg"),
  4917. name: "Side",
  4918. image: {
  4919. source: "./media/characters/sanya/side.svg",
  4920. bottom: 0.02,
  4921. extra: 1.02
  4922. }
  4923. },
  4924. },
  4925. [
  4926. {
  4927. name: "Small",
  4928. height: math.unit(2, "meters")
  4929. },
  4930. {
  4931. name: "Normal",
  4932. height: math.unit(3, "meters")
  4933. },
  4934. {
  4935. name: "Macro",
  4936. height: math.unit(16, "meters"),
  4937. default: true
  4938. },
  4939. ]
  4940. ))
  4941. characterMakers.push(() => makeCharacter(
  4942. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4943. {
  4944. front: {
  4945. height: math.unit(2, "meters"),
  4946. weight: math.unit(120, "kg"),
  4947. name: "Front",
  4948. image: {
  4949. source: "./media/characters/miranda/front.svg",
  4950. extra: 195 / 185,
  4951. bottom: 10.9 / 206.5
  4952. }
  4953. },
  4954. back: {
  4955. height: math.unit(2, "meters"),
  4956. weight: math.unit(120, "kg"),
  4957. name: "Back",
  4958. image: {
  4959. source: "./media/characters/miranda/back.svg",
  4960. extra: 201 / 193,
  4961. bottom: 2.3 / 203.7
  4962. }
  4963. },
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(10, "feet"),
  4969. default: true
  4970. }
  4971. ]
  4972. ))
  4973. characterMakers.push(() => makeCharacter(
  4974. { name: "James", species: ["deer"], tags: ["anthro"] },
  4975. {
  4976. side: {
  4977. height: math.unit(2, "meters"),
  4978. weight: math.unit(100, "kg"),
  4979. name: "Front",
  4980. image: {
  4981. source: "./media/characters/james/front.svg",
  4982. extra: 10 / 8.5
  4983. }
  4984. },
  4985. },
  4986. [
  4987. {
  4988. name: "Normal",
  4989. height: math.unit(8.5, "feet"),
  4990. default: true
  4991. }
  4992. ]
  4993. ))
  4994. characterMakers.push(() => makeCharacter(
  4995. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4996. {
  4997. side: {
  4998. height: math.unit(9.5, "feet"),
  4999. weight: math.unit(2500, "lbs"),
  5000. name: "Side",
  5001. image: {
  5002. source: "./media/characters/heather/side.svg"
  5003. }
  5004. },
  5005. },
  5006. [
  5007. {
  5008. name: "Normal",
  5009. height: math.unit(9.5, "feet"),
  5010. default: true
  5011. }
  5012. ]
  5013. ))
  5014. characterMakers.push(() => makeCharacter(
  5015. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5016. {
  5017. side: {
  5018. height: math.unit(6.5, "feet"),
  5019. weight: math.unit(400, "lbs"),
  5020. name: "Side",
  5021. image: {
  5022. source: "./media/characters/lukas/side.svg",
  5023. extra: 7.25 / 6.5
  5024. }
  5025. },
  5026. },
  5027. [
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(6.5, "feet"),
  5031. default: true
  5032. }
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5037. {
  5038. side: {
  5039. height: math.unit(5, "feet"),
  5040. weight: math.unit(3000, "lbs"),
  5041. name: "Side",
  5042. image: {
  5043. source: "./media/characters/louise/side.svg"
  5044. }
  5045. },
  5046. },
  5047. [
  5048. {
  5049. name: "Normal",
  5050. height: math.unit(5, "feet"),
  5051. default: true
  5052. }
  5053. ]
  5054. ))
  5055. characterMakers.push(() => makeCharacter(
  5056. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5057. {
  5058. side: {
  5059. height: math.unit(6, "feet"),
  5060. weight: math.unit(150, "lbs"),
  5061. name: "Side",
  5062. image: {
  5063. source: "./media/characters/ramona/side.svg"
  5064. }
  5065. },
  5066. },
  5067. [
  5068. {
  5069. name: "Normal",
  5070. height: math.unit(5.3, "meters"),
  5071. default: true
  5072. },
  5073. {
  5074. name: "Macro",
  5075. height: math.unit(20, "stories")
  5076. },
  5077. {
  5078. name: "Macro+",
  5079. height: math.unit(50, "stories")
  5080. },
  5081. ]
  5082. ))
  5083. characterMakers.push(() => makeCharacter(
  5084. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5085. {
  5086. standing: {
  5087. height: math.unit(5.75, "feet"),
  5088. weight: math.unit(160, "lbs"),
  5089. name: "Standing",
  5090. image: {
  5091. source: "./media/characters/deerpuff/standing.svg",
  5092. extra: 682 / 624
  5093. }
  5094. },
  5095. sitting: {
  5096. height: math.unit(5.75 / 1.79, "feet"),
  5097. weight: math.unit(160, "lbs"),
  5098. name: "Sitting",
  5099. image: {
  5100. source: "./media/characters/deerpuff/sitting.svg",
  5101. bottom: 44 / 400,
  5102. extra: 1
  5103. }
  5104. },
  5105. taurLaying: {
  5106. height: math.unit(6, "feet"),
  5107. weight: math.unit(400, "lbs"),
  5108. name: "Taur (Laying)",
  5109. image: {
  5110. source: "./media/characters/deerpuff/taur-laying.svg"
  5111. }
  5112. },
  5113. },
  5114. [
  5115. {
  5116. name: "Puffball",
  5117. height: math.unit(6, "inches")
  5118. },
  5119. {
  5120. name: "Normalpuff",
  5121. height: math.unit(5.75, "feet")
  5122. },
  5123. {
  5124. name: "Macropuff",
  5125. height: math.unit(1500, "feet"),
  5126. default: true
  5127. },
  5128. {
  5129. name: "Megapuff",
  5130. height: math.unit(500, "miles")
  5131. },
  5132. {
  5133. name: "Gigapuff",
  5134. height: math.unit(250000, "miles")
  5135. },
  5136. {
  5137. name: "Omegapuff",
  5138. height: math.unit(1000, "lightyears")
  5139. },
  5140. ]
  5141. ))
  5142. characterMakers.push(() => makeCharacter(
  5143. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5144. {
  5145. stomping: {
  5146. height: math.unit(6, "feet"),
  5147. weight: math.unit(170, "lbs"),
  5148. name: "Stomping",
  5149. image: {
  5150. source: "./media/characters/vivian/stomping.svg"
  5151. }
  5152. },
  5153. sitting: {
  5154. height: math.unit(6 / 1.75, "feet"),
  5155. weight: math.unit(170, "lbs"),
  5156. name: "Sitting",
  5157. image: {
  5158. source: "./media/characters/vivian/sitting.svg",
  5159. bottom: 1 / 6.4,
  5160. extra: 1,
  5161. }
  5162. },
  5163. },
  5164. [
  5165. {
  5166. name: "Normal",
  5167. height: math.unit(7, "feet"),
  5168. default: true
  5169. },
  5170. {
  5171. name: "Macro",
  5172. height: math.unit(10, "stories")
  5173. },
  5174. {
  5175. name: "Macro+",
  5176. height: math.unit(30, "stories")
  5177. },
  5178. {
  5179. name: "Megamacro",
  5180. height: math.unit(10, "miles")
  5181. },
  5182. {
  5183. name: "Megamacro+",
  5184. height: math.unit(2750000, "meters")
  5185. },
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5190. {
  5191. front: {
  5192. height: math.unit(6, "feet"),
  5193. weight: math.unit(160, "lbs"),
  5194. name: "Front",
  5195. image: {
  5196. source: "./media/characters/prince/front.svg",
  5197. extra: 3400 / 3000
  5198. }
  5199. },
  5200. jumping: {
  5201. height: math.unit(6, "feet"),
  5202. weight: math.unit(160, "lbs"),
  5203. name: "Jumping",
  5204. image: {
  5205. source: "./media/characters/prince/jump.svg",
  5206. extra: 2555 / 2134
  5207. }
  5208. },
  5209. },
  5210. [
  5211. {
  5212. name: "Normal",
  5213. height: math.unit(7.75, "feet"),
  5214. default: true
  5215. },
  5216. {
  5217. name: "Not cute",
  5218. height: math.unit(17, "feet")
  5219. },
  5220. {
  5221. name: "I said NOT",
  5222. height: math.unit(91, "feet")
  5223. },
  5224. {
  5225. name: "Please stop",
  5226. height: math.unit(560, "feet")
  5227. },
  5228. {
  5229. name: "What have you done",
  5230. height: math.unit(2200, "feet")
  5231. },
  5232. {
  5233. name: "Deer God",
  5234. height: math.unit(3.6, "miles")
  5235. },
  5236. ]
  5237. ))
  5238. characterMakers.push(() => makeCharacter(
  5239. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5240. {
  5241. standing: {
  5242. height: math.unit(6, "feet"),
  5243. weight: math.unit(300, "lbs"),
  5244. name: "Standing",
  5245. image: {
  5246. source: "./media/characters/psymon/standing.svg",
  5247. extra: 1888 / 1810,
  5248. bottom: 0.05
  5249. }
  5250. },
  5251. slithering: {
  5252. height: math.unit(6, "feet"),
  5253. weight: math.unit(300, "lbs"),
  5254. name: "Slithering",
  5255. image: {
  5256. source: "./media/characters/psymon/slithering.svg",
  5257. extra: 1330 / 1224
  5258. }
  5259. },
  5260. slitheringAlt: {
  5261. height: math.unit(6, "feet"),
  5262. weight: math.unit(300, "lbs"),
  5263. name: "Slithering (Alt)",
  5264. image: {
  5265. source: "./media/characters/psymon/slithering-alt.svg",
  5266. extra: 1330 / 1224
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(11.25, "feet"),
  5274. default: true
  5275. },
  5276. {
  5277. name: "Large",
  5278. height: math.unit(27, "feet")
  5279. },
  5280. {
  5281. name: "Giant",
  5282. height: math.unit(87, "feet")
  5283. },
  5284. {
  5285. name: "Macro",
  5286. height: math.unit(365, "feet")
  5287. },
  5288. {
  5289. name: "Megamacro",
  5290. height: math.unit(3, "miles")
  5291. },
  5292. {
  5293. name: "World Serpent",
  5294. height: math.unit(8000, "miles")
  5295. },
  5296. ]
  5297. ))
  5298. characterMakers.push(() => makeCharacter(
  5299. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5300. {
  5301. front: {
  5302. height: math.unit(6, "feet"),
  5303. weight: math.unit(180, "lbs"),
  5304. name: "Front",
  5305. image: {
  5306. source: "./media/characters/daimos/front.svg",
  5307. extra: 4160 / 3897,
  5308. bottom: 0.021
  5309. }
  5310. }
  5311. },
  5312. [
  5313. {
  5314. name: "Normal",
  5315. height: math.unit(8, "feet"),
  5316. default: true
  5317. },
  5318. {
  5319. name: "Big Dog",
  5320. height: math.unit(22, "feet")
  5321. },
  5322. {
  5323. name: "Macro",
  5324. height: math.unit(127, "feet")
  5325. },
  5326. {
  5327. name: "Megamacro",
  5328. height: math.unit(3600, "feet")
  5329. },
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5334. {
  5335. side: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(180, "lbs"),
  5338. name: "Side",
  5339. image: {
  5340. source: "./media/characters/blake/side.svg",
  5341. extra: 1212 / 1120,
  5342. bottom: 0.05
  5343. }
  5344. },
  5345. crouched: {
  5346. height: math.unit(6 * 0.57, "feet"),
  5347. weight: math.unit(180, "lbs"),
  5348. name: "Crouched",
  5349. image: {
  5350. source: "./media/characters/blake/crouched.svg",
  5351. extra: 840 / 587,
  5352. bottom: 0.04
  5353. }
  5354. },
  5355. bent: {
  5356. height: math.unit(6 * 0.75, "feet"),
  5357. weight: math.unit(180, "lbs"),
  5358. name: "Bent",
  5359. image: {
  5360. source: "./media/characters/blake/bent.svg",
  5361. extra: 592 / 544,
  5362. bottom: 0.035
  5363. }
  5364. },
  5365. },
  5366. [
  5367. {
  5368. name: "Normal",
  5369. height: math.unit(8 + 1 / 6, "feet"),
  5370. default: true
  5371. },
  5372. {
  5373. name: "Big Backside",
  5374. height: math.unit(37, "feet")
  5375. },
  5376. {
  5377. name: "Subway Shredder",
  5378. height: math.unit(72, "feet")
  5379. },
  5380. {
  5381. name: "City Carver",
  5382. height: math.unit(1675, "feet")
  5383. },
  5384. {
  5385. name: "Tectonic Tweaker",
  5386. height: math.unit(2300, "miles")
  5387. },
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5392. {
  5393. front: {
  5394. height: math.unit(6, "feet"),
  5395. weight: math.unit(180, "lbs"),
  5396. name: "Front",
  5397. image: {
  5398. source: "./media/characters/guisetto/front.svg",
  5399. extra: 856 / 817,
  5400. bottom: 0.06
  5401. }
  5402. },
  5403. airborne: {
  5404. height: math.unit(6, "feet"),
  5405. weight: math.unit(180, "lbs"),
  5406. name: "Airborne",
  5407. image: {
  5408. source: "./media/characters/guisetto/airborne.svg",
  5409. extra: 584 / 525
  5410. }
  5411. },
  5412. },
  5413. [
  5414. {
  5415. name: "Normal",
  5416. height: math.unit(10 + 11 / 12, "feet"),
  5417. default: true
  5418. },
  5419. {
  5420. name: "Large",
  5421. height: math.unit(35, "feet")
  5422. },
  5423. {
  5424. name: "Macro",
  5425. height: math.unit(475, "feet")
  5426. },
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5431. {
  5432. front: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(180, "lbs"),
  5435. name: "Front",
  5436. image: {
  5437. source: "./media/characters/luxor/front.svg",
  5438. extra: 2940 / 2152
  5439. }
  5440. },
  5441. back: {
  5442. height: math.unit(6, "feet"),
  5443. weight: math.unit(180, "lbs"),
  5444. name: "Back",
  5445. image: {
  5446. source: "./media/characters/luxor/back.svg",
  5447. extra: 1083 / 960
  5448. }
  5449. },
  5450. },
  5451. [
  5452. {
  5453. name: "Normal",
  5454. height: math.unit(5 + 5 / 6, "feet"),
  5455. default: true
  5456. },
  5457. {
  5458. name: "Lamp",
  5459. height: math.unit(50, "feet")
  5460. },
  5461. {
  5462. name: "Lämp",
  5463. height: math.unit(300, "feet")
  5464. },
  5465. {
  5466. name: "The sun is a lamp",
  5467. height: math.unit(250000, "miles")
  5468. },
  5469. ]
  5470. ))
  5471. characterMakers.push(() => makeCharacter(
  5472. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5473. {
  5474. front: {
  5475. height: math.unit(6, "feet"),
  5476. weight: math.unit(50, "lbs"),
  5477. name: "Front",
  5478. image: {
  5479. source: "./media/characters/huoyan/front.svg"
  5480. }
  5481. },
  5482. side: {
  5483. height: math.unit(6, "feet"),
  5484. weight: math.unit(180, "lbs"),
  5485. name: "Side",
  5486. image: {
  5487. source: "./media/characters/huoyan/side.svg"
  5488. }
  5489. },
  5490. },
  5491. [
  5492. {
  5493. name: "Chef",
  5494. height: math.unit(9, "feet")
  5495. },
  5496. {
  5497. name: "Normal",
  5498. height: math.unit(65, "feet"),
  5499. default: true
  5500. },
  5501. {
  5502. name: "Macro",
  5503. height: math.unit(780, "feet")
  5504. },
  5505. {
  5506. name: "Flaming Mountain",
  5507. height: math.unit(4.8, "miles")
  5508. },
  5509. {
  5510. name: "Celestial",
  5511. height: math.unit(765000, "miles")
  5512. },
  5513. ]
  5514. ))
  5515. characterMakers.push(() => makeCharacter(
  5516. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5517. {
  5518. front: {
  5519. height: math.unit(5 + 3 / 4, "feet"),
  5520. weight: math.unit(120, "lbs"),
  5521. name: "Front",
  5522. image: {
  5523. source: "./media/characters/tails/front.svg"
  5524. }
  5525. }
  5526. },
  5527. [
  5528. {
  5529. name: "Normal",
  5530. height: math.unit(5 + 3 / 4, "feet"),
  5531. default: true
  5532. }
  5533. ]
  5534. ))
  5535. characterMakers.push(() => makeCharacter(
  5536. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5537. {
  5538. front: {
  5539. height: math.unit(4, "feet"),
  5540. weight: math.unit(50, "lbs"),
  5541. name: "Front",
  5542. image: {
  5543. source: "./media/characters/rainy/front.svg"
  5544. }
  5545. }
  5546. },
  5547. [
  5548. {
  5549. name: "Macro",
  5550. height: math.unit(800, "feet"),
  5551. default: true
  5552. }
  5553. ]
  5554. ))
  5555. characterMakers.push(() => makeCharacter(
  5556. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5557. {
  5558. front: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(150, "lbs"),
  5561. name: "Front",
  5562. image: {
  5563. source: "./media/characters/rainier/front.svg"
  5564. }
  5565. }
  5566. },
  5567. [
  5568. {
  5569. name: "Micro",
  5570. height: math.unit(2, "mm"),
  5571. default: true
  5572. }
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5577. {
  5578. front: {
  5579. height: math.unit(8 + 4/12, "feet"),
  5580. name: "Front",
  5581. image: {
  5582. source: "./media/characters/andy-renard/front.svg",
  5583. extra: 1839/1726,
  5584. bottom: 134/1973
  5585. }
  5586. },
  5587. back: {
  5588. height: math.unit(8 + 4/12, "feet"),
  5589. name: "Back",
  5590. image: {
  5591. source: "./media/characters/andy-renard/back.svg",
  5592. extra: 1838/1710,
  5593. bottom: 105/1943
  5594. }
  5595. },
  5596. },
  5597. [
  5598. {
  5599. name: "Tall",
  5600. height: math.unit(8 + 4/12, "feet")
  5601. },
  5602. {
  5603. name: "Mini Macro",
  5604. height: math.unit(15, "feet"),
  5605. default: true
  5606. },
  5607. {
  5608. name: "Macro",
  5609. height: math.unit(100, "feet")
  5610. },
  5611. {
  5612. name: "Mega Macro",
  5613. height: math.unit(1000, "feet")
  5614. },
  5615. {
  5616. name: "Giga Macro",
  5617. height: math.unit(10, "miles")
  5618. },
  5619. {
  5620. name: "God Macro",
  5621. height: math.unit(1, "multiverse")
  5622. },
  5623. ]
  5624. ))
  5625. characterMakers.push(() => makeCharacter(
  5626. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5627. {
  5628. front: {
  5629. height: math.unit(6, "feet"),
  5630. weight: math.unit(210, "lbs"),
  5631. name: "Front",
  5632. image: {
  5633. source: "./media/characters/cimmaron/front-sfw.svg",
  5634. extra: 701 / 676,
  5635. bottom: 0.046
  5636. }
  5637. },
  5638. back: {
  5639. height: math.unit(6, "feet"),
  5640. weight: math.unit(210, "lbs"),
  5641. name: "Back",
  5642. image: {
  5643. source: "./media/characters/cimmaron/back-sfw.svg",
  5644. extra: 701 / 676,
  5645. bottom: 0.046
  5646. }
  5647. },
  5648. frontNsfw: {
  5649. height: math.unit(6, "feet"),
  5650. weight: math.unit(210, "lbs"),
  5651. name: "Front (NSFW)",
  5652. image: {
  5653. source: "./media/characters/cimmaron/front-nsfw.svg",
  5654. extra: 701 / 676,
  5655. bottom: 0.046
  5656. }
  5657. },
  5658. backNsfw: {
  5659. height: math.unit(6, "feet"),
  5660. weight: math.unit(210, "lbs"),
  5661. name: "Back (NSFW)",
  5662. image: {
  5663. source: "./media/characters/cimmaron/back-nsfw.svg",
  5664. extra: 701 / 676,
  5665. bottom: 0.046
  5666. }
  5667. },
  5668. dick: {
  5669. height: math.unit(1.714, "feet"),
  5670. name: "Dick",
  5671. image: {
  5672. source: "./media/characters/cimmaron/dick.svg"
  5673. }
  5674. },
  5675. },
  5676. [
  5677. {
  5678. name: "Normal",
  5679. height: math.unit(6, "feet"),
  5680. default: true
  5681. },
  5682. {
  5683. name: "Macro Mayor",
  5684. height: math.unit(350, "meters")
  5685. },
  5686. ]
  5687. ))
  5688. characterMakers.push(() => makeCharacter(
  5689. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5690. {
  5691. front: {
  5692. height: math.unit(6, "feet"),
  5693. weight: math.unit(200, "lbs"),
  5694. name: "Front",
  5695. image: {
  5696. source: "./media/characters/akari/front.svg",
  5697. extra: 962 / 901,
  5698. bottom: 0.04
  5699. }
  5700. }
  5701. },
  5702. [
  5703. {
  5704. name: "Micro",
  5705. height: math.unit(5, "inches"),
  5706. default: true
  5707. },
  5708. {
  5709. name: "Normal",
  5710. height: math.unit(7, "feet")
  5711. },
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5716. {
  5717. front: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(140, "lbs"),
  5720. name: "Front",
  5721. image: {
  5722. source: "./media/characters/cynosura/front.svg",
  5723. extra: 896 / 847
  5724. }
  5725. },
  5726. back: {
  5727. height: math.unit(6, "feet"),
  5728. weight: math.unit(140, "lbs"),
  5729. name: "Back",
  5730. image: {
  5731. source: "./media/characters/cynosura/back.svg",
  5732. extra: 1365 / 1250
  5733. }
  5734. },
  5735. },
  5736. [
  5737. {
  5738. name: "Micro",
  5739. height: math.unit(4, "inches")
  5740. },
  5741. {
  5742. name: "Normal",
  5743. height: math.unit(5.75, "feet"),
  5744. default: true
  5745. },
  5746. {
  5747. name: "Tall",
  5748. height: math.unit(10, "feet")
  5749. },
  5750. {
  5751. name: "Big",
  5752. height: math.unit(20, "feet")
  5753. },
  5754. {
  5755. name: "Macro",
  5756. height: math.unit(50, "feet")
  5757. },
  5758. ]
  5759. ))
  5760. characterMakers.push(() => makeCharacter(
  5761. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5762. {
  5763. front: {
  5764. height: math.unit(13 + 2/12, "feet"),
  5765. weight: math.unit(800, "kg"),
  5766. name: "Front",
  5767. image: {
  5768. source: "./media/characters/gin/front.svg",
  5769. extra: 1312/1191,
  5770. bottom: 45/1357
  5771. }
  5772. },
  5773. mouth: {
  5774. height: math.unit(2.39 * 1.8, "feet"),
  5775. name: "Mouth",
  5776. image: {
  5777. source: "./media/characters/gin/mouth.svg"
  5778. }
  5779. },
  5780. hand: {
  5781. height: math.unit(1.57 * 2.19, "feet"),
  5782. name: "Hand",
  5783. image: {
  5784. source: "./media/characters/gin/hand.svg"
  5785. }
  5786. },
  5787. foot: {
  5788. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5789. name: "Foot",
  5790. image: {
  5791. source: "./media/characters/gin/foot.svg"
  5792. }
  5793. },
  5794. sole: {
  5795. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5796. name: "Sole",
  5797. image: {
  5798. source: "./media/characters/gin/sole.svg"
  5799. }
  5800. },
  5801. },
  5802. [
  5803. {
  5804. name: "Very Small",
  5805. height: math.unit(13 + 2 / 12, "feet")
  5806. },
  5807. {
  5808. name: "Micro",
  5809. height: math.unit(600, "miles")
  5810. },
  5811. {
  5812. name: "Regular",
  5813. height: math.unit(20, "earths"),
  5814. default: true
  5815. },
  5816. {
  5817. name: "Macro",
  5818. height: math.unit(2.2, "solarradii")
  5819. },
  5820. {
  5821. name: "Teramacro",
  5822. height: math.unit(1.2, "galaxies")
  5823. },
  5824. {
  5825. name: "Omegamacro",
  5826. height: math.unit(200, "universes")
  5827. },
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(6 + 1 / 6, "feet"),
  5835. weight: math.unit(178, "lbs"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/guy/front.svg"
  5839. }
  5840. }
  5841. },
  5842. [
  5843. {
  5844. name: "Normal",
  5845. height: math.unit(6 + 1 / 6, "feet"),
  5846. default: true
  5847. },
  5848. {
  5849. name: "Large",
  5850. height: math.unit(25 + 7 / 12, "feet")
  5851. },
  5852. {
  5853. name: "Macro",
  5854. height: math.unit(60 + 9 / 12, "feet")
  5855. },
  5856. {
  5857. name: "Macro+",
  5858. height: math.unit(246, "feet")
  5859. },
  5860. {
  5861. name: "Macro++",
  5862. height: math.unit(878, "feet")
  5863. }
  5864. ]
  5865. ))
  5866. characterMakers.push(() => makeCharacter(
  5867. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5868. {
  5869. front: {
  5870. height: math.unit(9, "feet"),
  5871. weight: math.unit(800, "lbs"),
  5872. name: "Front",
  5873. image: {
  5874. source: "./media/characters/tiberius/front.svg",
  5875. extra: 2295 / 2071
  5876. }
  5877. },
  5878. back: {
  5879. height: math.unit(9, "feet"),
  5880. weight: math.unit(800, "lbs"),
  5881. name: "Back",
  5882. image: {
  5883. source: "./media/characters/tiberius/back.svg",
  5884. extra: 2373 / 2160
  5885. }
  5886. },
  5887. },
  5888. [
  5889. {
  5890. name: "Normal",
  5891. height: math.unit(9, "feet"),
  5892. default: true
  5893. }
  5894. ]
  5895. ))
  5896. characterMakers.push(() => makeCharacter(
  5897. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5898. {
  5899. front: {
  5900. height: math.unit(6, "feet"),
  5901. weight: math.unit(600, "lbs"),
  5902. name: "Front",
  5903. image: {
  5904. source: "./media/characters/surgo/front.svg",
  5905. extra: 3591 / 2227
  5906. }
  5907. },
  5908. back: {
  5909. height: math.unit(6, "feet"),
  5910. weight: math.unit(600, "lbs"),
  5911. name: "Back",
  5912. image: {
  5913. source: "./media/characters/surgo/back.svg",
  5914. extra: 3557 / 2228
  5915. }
  5916. },
  5917. laying: {
  5918. height: math.unit(6 * 0.85, "feet"),
  5919. weight: math.unit(600, "lbs"),
  5920. name: "Laying",
  5921. image: {
  5922. source: "./media/characters/surgo/laying.svg"
  5923. }
  5924. },
  5925. },
  5926. [
  5927. {
  5928. name: "Normal",
  5929. height: math.unit(6, "feet"),
  5930. default: true
  5931. }
  5932. ]
  5933. ))
  5934. characterMakers.push(() => makeCharacter(
  5935. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5936. {
  5937. side: {
  5938. height: math.unit(6, "feet"),
  5939. weight: math.unit(150, "lbs"),
  5940. name: "Side",
  5941. image: {
  5942. source: "./media/characters/cibus/side.svg",
  5943. extra: 800 / 400
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(6, "feet"),
  5951. default: true
  5952. }
  5953. ]
  5954. ))
  5955. characterMakers.push(() => makeCharacter(
  5956. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5957. {
  5958. front: {
  5959. height: math.unit(6, "feet"),
  5960. weight: math.unit(240, "lbs"),
  5961. name: "Front",
  5962. image: {
  5963. source: "./media/characters/nibbles/front.svg"
  5964. }
  5965. },
  5966. side: {
  5967. height: math.unit(6, "feet"),
  5968. weight: math.unit(240, "lbs"),
  5969. name: "Side",
  5970. image: {
  5971. source: "./media/characters/nibbles/side.svg"
  5972. }
  5973. },
  5974. },
  5975. [
  5976. {
  5977. name: "Normal",
  5978. height: math.unit(9, "feet"),
  5979. default: true
  5980. }
  5981. ]
  5982. ))
  5983. characterMakers.push(() => makeCharacter(
  5984. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5985. {
  5986. side: {
  5987. height: math.unit(5 + 1 / 6, "feet"),
  5988. weight: math.unit(130, "lbs"),
  5989. name: "Side",
  5990. image: {
  5991. source: "./media/characters/rikky/side.svg",
  5992. extra: 851 / 801
  5993. }
  5994. },
  5995. },
  5996. [
  5997. {
  5998. name: "Normal",
  5999. height: math.unit(5 + 1 / 6, "feet")
  6000. },
  6001. {
  6002. name: "Macro",
  6003. height: math.unit(152, "feet"),
  6004. default: true
  6005. },
  6006. {
  6007. name: "Megamacro",
  6008. height: math.unit(7, "miles")
  6009. }
  6010. ]
  6011. ))
  6012. characterMakers.push(() => makeCharacter(
  6013. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6014. {
  6015. side: {
  6016. height: math.unit(370, "cm"),
  6017. weight: math.unit(350, "lbs"),
  6018. name: "Side",
  6019. image: {
  6020. source: "./media/characters/malfressa/side.svg"
  6021. }
  6022. },
  6023. walking: {
  6024. height: math.unit(370, "cm"),
  6025. weight: math.unit(350, "lbs"),
  6026. name: "Walking",
  6027. image: {
  6028. source: "./media/characters/malfressa/walking.svg"
  6029. }
  6030. },
  6031. feral: {
  6032. height: math.unit(2500, "cm"),
  6033. weight: math.unit(100000, "lbs"),
  6034. name: "Feral",
  6035. image: {
  6036. source: "./media/characters/malfressa/feral.svg",
  6037. extra: 2108 / 837,
  6038. bottom: 0.02
  6039. }
  6040. },
  6041. },
  6042. [
  6043. {
  6044. name: "Normal",
  6045. height: math.unit(370, "cm")
  6046. },
  6047. {
  6048. name: "Macro",
  6049. height: math.unit(300, "meters"),
  6050. default: true
  6051. }
  6052. ]
  6053. ))
  6054. characterMakers.push(() => makeCharacter(
  6055. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6056. {
  6057. front: {
  6058. height: math.unit(6, "feet"),
  6059. weight: math.unit(60, "kg"),
  6060. name: "Front",
  6061. image: {
  6062. source: "./media/characters/jaro/front.svg"
  6063. }
  6064. },
  6065. back: {
  6066. height: math.unit(6, "feet"),
  6067. weight: math.unit(60, "kg"),
  6068. name: "Back",
  6069. image: {
  6070. source: "./media/characters/jaro/back.svg"
  6071. }
  6072. },
  6073. },
  6074. [
  6075. {
  6076. name: "Micro",
  6077. height: math.unit(7, "inches")
  6078. },
  6079. {
  6080. name: "Normal",
  6081. height: math.unit(5.5, "feet"),
  6082. default: true
  6083. },
  6084. {
  6085. name: "Minimacro",
  6086. height: math.unit(20, "feet")
  6087. },
  6088. {
  6089. name: "Macro",
  6090. height: math.unit(200, "meters")
  6091. }
  6092. ]
  6093. ))
  6094. characterMakers.push(() => makeCharacter(
  6095. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6096. {
  6097. front: {
  6098. height: math.unit(6, "feet"),
  6099. weight: math.unit(195, "lb"),
  6100. name: "Front",
  6101. image: {
  6102. source: "./media/characters/rogue/front.svg"
  6103. }
  6104. },
  6105. },
  6106. [
  6107. {
  6108. name: "Macro",
  6109. height: math.unit(90, "feet"),
  6110. default: true
  6111. },
  6112. ]
  6113. ))
  6114. characterMakers.push(() => makeCharacter(
  6115. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6116. {
  6117. front: {
  6118. height: math.unit(5 + 8 / 12, "feet"),
  6119. weight: math.unit(140, "lb"),
  6120. name: "Front",
  6121. image: {
  6122. source: "./media/characters/piper/front.svg",
  6123. extra: 3948/3655,
  6124. bottom: 0/3948
  6125. }
  6126. },
  6127. },
  6128. [
  6129. {
  6130. name: "Micro",
  6131. height: math.unit(2, "inches")
  6132. },
  6133. {
  6134. name: "Normal",
  6135. height: math.unit(5 + 8 / 12, "feet")
  6136. },
  6137. {
  6138. name: "Macro",
  6139. height: math.unit(250, "feet"),
  6140. default: true
  6141. },
  6142. {
  6143. name: "Megamacro",
  6144. height: math.unit(7, "miles")
  6145. },
  6146. ]
  6147. ))
  6148. characterMakers.push(() => makeCharacter(
  6149. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6150. {
  6151. front: {
  6152. height: math.unit(6, "feet"),
  6153. weight: math.unit(220, "lb"),
  6154. name: "Front",
  6155. image: {
  6156. source: "./media/characters/gemini/front.svg"
  6157. }
  6158. },
  6159. back: {
  6160. height: math.unit(6, "feet"),
  6161. weight: math.unit(220, "lb"),
  6162. name: "Back",
  6163. image: {
  6164. source: "./media/characters/gemini/back.svg"
  6165. }
  6166. },
  6167. kneeling: {
  6168. height: math.unit(6 / 1.5, "feet"),
  6169. weight: math.unit(220, "lb"),
  6170. name: "Kneeling",
  6171. image: {
  6172. source: "./media/characters/gemini/kneeling.svg",
  6173. bottom: 0.02
  6174. }
  6175. },
  6176. },
  6177. [
  6178. {
  6179. name: "Macro",
  6180. height: math.unit(300, "meters"),
  6181. default: true
  6182. },
  6183. {
  6184. name: "Megamacro",
  6185. height: math.unit(6900, "meters")
  6186. },
  6187. ]
  6188. ))
  6189. characterMakers.push(() => makeCharacter(
  6190. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6191. {
  6192. anthro: {
  6193. height: math.unit(2.35, "meters"),
  6194. weight: math.unit(73, "kg"),
  6195. name: "Anthro",
  6196. image: {
  6197. source: "./media/characters/alicia/anthro.svg",
  6198. extra: 2571 / 2385,
  6199. bottom: 75 / 2648
  6200. }
  6201. },
  6202. paw: {
  6203. height: math.unit(1.32, "feet"),
  6204. name: "Paw",
  6205. image: {
  6206. source: "./media/characters/alicia/paw.svg"
  6207. }
  6208. },
  6209. feral: {
  6210. height: math.unit(1.69, "meters"),
  6211. weight: math.unit(73, "kg"),
  6212. name: "Feral",
  6213. image: {
  6214. source: "./media/characters/alicia/feral.svg",
  6215. extra: 2123 / 1715,
  6216. bottom: 222 / 2349
  6217. }
  6218. },
  6219. },
  6220. [
  6221. {
  6222. name: "Normal",
  6223. height: math.unit(2.35, "meters")
  6224. },
  6225. {
  6226. name: "Macro",
  6227. height: math.unit(60, "meters"),
  6228. default: true
  6229. },
  6230. {
  6231. name: "Megamacro",
  6232. height: math.unit(10000, "kilometers")
  6233. },
  6234. ]
  6235. ))
  6236. characterMakers.push(() => makeCharacter(
  6237. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6238. {
  6239. front: {
  6240. height: math.unit(7, "feet"),
  6241. weight: math.unit(250, "lbs"),
  6242. name: "Front",
  6243. image: {
  6244. source: "./media/characters/archy/front.svg"
  6245. }
  6246. }
  6247. },
  6248. [
  6249. {
  6250. name: "Micro",
  6251. height: math.unit(1, "inch")
  6252. },
  6253. {
  6254. name: "Shorty",
  6255. height: math.unit(5, "feet")
  6256. },
  6257. {
  6258. name: "Normal",
  6259. height: math.unit(7, "feet")
  6260. },
  6261. {
  6262. name: "Macro",
  6263. height: math.unit(600, "meters"),
  6264. default: true
  6265. },
  6266. {
  6267. name: "Megamacro",
  6268. height: math.unit(1, "mile")
  6269. },
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6274. {
  6275. front: {
  6276. height: math.unit(1.65, "meters"),
  6277. weight: math.unit(74, "kg"),
  6278. name: "Front",
  6279. image: {
  6280. source: "./media/characters/berri/front.svg",
  6281. extra: 857 / 837,
  6282. bottom: 18 / 877
  6283. }
  6284. },
  6285. bum: {
  6286. height: math.unit(1.46, "feet"),
  6287. name: "Bum",
  6288. image: {
  6289. source: "./media/characters/berri/bum.svg"
  6290. }
  6291. },
  6292. mouth: {
  6293. height: math.unit(0.44, "feet"),
  6294. name: "Mouth",
  6295. image: {
  6296. source: "./media/characters/berri/mouth.svg"
  6297. }
  6298. },
  6299. paw: {
  6300. height: math.unit(0.826, "feet"),
  6301. name: "Paw",
  6302. image: {
  6303. source: "./media/characters/berri/paw.svg"
  6304. }
  6305. },
  6306. },
  6307. [
  6308. {
  6309. name: "Normal",
  6310. height: math.unit(1.65, "meters")
  6311. },
  6312. {
  6313. name: "Macro",
  6314. height: math.unit(60, "m"),
  6315. default: true
  6316. },
  6317. {
  6318. name: "Megamacro",
  6319. height: math.unit(9.213, "km")
  6320. },
  6321. {
  6322. name: "Planet Eater",
  6323. height: math.unit(489, "megameters")
  6324. },
  6325. {
  6326. name: "Teramacro",
  6327. height: math.unit(2471635000000, "meters")
  6328. },
  6329. {
  6330. name: "Examacro",
  6331. height: math.unit(8.0624e+26, "meters")
  6332. }
  6333. ]
  6334. ))
  6335. characterMakers.push(() => makeCharacter(
  6336. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6337. {
  6338. front: {
  6339. height: math.unit(1.72, "meters"),
  6340. weight: math.unit(68, "kg"),
  6341. name: "Front",
  6342. image: {
  6343. source: "./media/characters/lexi/front.svg"
  6344. }
  6345. }
  6346. },
  6347. [
  6348. {
  6349. name: "Very Smol",
  6350. height: math.unit(10, "mm")
  6351. },
  6352. {
  6353. name: "Micro",
  6354. height: math.unit(6.8, "cm"),
  6355. default: true
  6356. },
  6357. {
  6358. name: "Normal",
  6359. height: math.unit(1.72, "m")
  6360. }
  6361. ]
  6362. ))
  6363. characterMakers.push(() => makeCharacter(
  6364. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6365. {
  6366. front: {
  6367. height: math.unit(1.69, "meters"),
  6368. weight: math.unit(68, "kg"),
  6369. name: "Front",
  6370. image: {
  6371. source: "./media/characters/martin/front.svg",
  6372. extra: 596 / 581
  6373. }
  6374. }
  6375. },
  6376. [
  6377. {
  6378. name: "Micro",
  6379. height: math.unit(6.85, "cm"),
  6380. default: true
  6381. },
  6382. {
  6383. name: "Normal",
  6384. height: math.unit(1.69, "m")
  6385. }
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6390. {
  6391. front: {
  6392. height: math.unit(1.69, "meters"),
  6393. weight: math.unit(68, "kg"),
  6394. name: "Front",
  6395. image: {
  6396. source: "./media/characters/juno/front.svg"
  6397. }
  6398. }
  6399. },
  6400. [
  6401. {
  6402. name: "Micro",
  6403. height: math.unit(7, "cm")
  6404. },
  6405. {
  6406. name: "Normal",
  6407. height: math.unit(1.89, "m")
  6408. },
  6409. {
  6410. name: "Macro",
  6411. height: math.unit(353, "meters"),
  6412. default: true
  6413. }
  6414. ]
  6415. ))
  6416. characterMakers.push(() => makeCharacter(
  6417. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6418. {
  6419. front: {
  6420. height: math.unit(1.93, "meters"),
  6421. weight: math.unit(83, "kg"),
  6422. name: "Front",
  6423. image: {
  6424. source: "./media/characters/samantha/front.svg"
  6425. }
  6426. },
  6427. frontClothed: {
  6428. height: math.unit(1.93, "meters"),
  6429. weight: math.unit(83, "kg"),
  6430. name: "Front (Clothed)",
  6431. image: {
  6432. source: "./media/characters/samantha/front-clothed.svg"
  6433. }
  6434. },
  6435. back: {
  6436. height: math.unit(1.93, "meters"),
  6437. weight: math.unit(83, "kg"),
  6438. name: "Back",
  6439. image: {
  6440. source: "./media/characters/samantha/back.svg"
  6441. }
  6442. },
  6443. },
  6444. [
  6445. {
  6446. name: "Normal",
  6447. height: math.unit(1.93, "m")
  6448. },
  6449. {
  6450. name: "Macro",
  6451. height: math.unit(74, "meters"),
  6452. default: true
  6453. },
  6454. {
  6455. name: "Macro+",
  6456. height: math.unit(223, "meters"),
  6457. },
  6458. {
  6459. name: "Megamacro",
  6460. height: math.unit(8381, "meters"),
  6461. },
  6462. {
  6463. name: "Megamacro+",
  6464. height: math.unit(12000, "kilometers")
  6465. },
  6466. ]
  6467. ))
  6468. characterMakers.push(() => makeCharacter(
  6469. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6470. {
  6471. front: {
  6472. height: math.unit(1.92, "meters"),
  6473. weight: math.unit(80, "kg"),
  6474. name: "Front",
  6475. image: {
  6476. source: "./media/characters/dr-clay/front.svg"
  6477. }
  6478. },
  6479. frontClothed: {
  6480. height: math.unit(1.92, "meters"),
  6481. weight: math.unit(80, "kg"),
  6482. name: "Front (Clothed)",
  6483. image: {
  6484. source: "./media/characters/dr-clay/front-clothed.svg"
  6485. }
  6486. }
  6487. },
  6488. [
  6489. {
  6490. name: "Normal",
  6491. height: math.unit(1.92, "m")
  6492. },
  6493. {
  6494. name: "Macro",
  6495. height: math.unit(214, "meters"),
  6496. default: true
  6497. },
  6498. {
  6499. name: "Macro+",
  6500. height: math.unit(12.237, "meters"),
  6501. },
  6502. {
  6503. name: "Megamacro",
  6504. height: math.unit(557, "megameters"),
  6505. },
  6506. {
  6507. name: "Unimaginable",
  6508. height: math.unit(120e9, "lightyears")
  6509. },
  6510. ]
  6511. ))
  6512. characterMakers.push(() => makeCharacter(
  6513. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6514. {
  6515. front: {
  6516. height: math.unit(2, "meters"),
  6517. weight: math.unit(80, "kg"),
  6518. name: "Front",
  6519. image: {
  6520. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6521. }
  6522. }
  6523. },
  6524. [
  6525. {
  6526. name: "Teramacro",
  6527. height: math.unit(500000, "lightyears"),
  6528. default: true
  6529. },
  6530. ]
  6531. ))
  6532. characterMakers.push(() => makeCharacter(
  6533. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6534. {
  6535. crux: {
  6536. height: math.unit(2, "meters"),
  6537. weight: math.unit(150, "kg"),
  6538. name: "Crux",
  6539. image: {
  6540. source: "./media/characters/vemus/crux.svg",
  6541. extra: 1074/936,
  6542. bottom: 23/1097
  6543. }
  6544. },
  6545. skunkTanuki: {
  6546. height: math.unit(2, "meters"),
  6547. weight: math.unit(150, "kg"),
  6548. name: "Skunk-Tanuki",
  6549. image: {
  6550. source: "./media/characters/vemus/skunk-tanuki.svg",
  6551. extra: 926/893,
  6552. bottom: 20/946
  6553. }
  6554. },
  6555. },
  6556. [
  6557. {
  6558. name: "Normal",
  6559. height: math.unit(3.75, "meters"),
  6560. default: true
  6561. },
  6562. {
  6563. name: "Big",
  6564. height: math.unit(8, "meters")
  6565. },
  6566. {
  6567. name: "Macro",
  6568. height: math.unit(100, "meters")
  6569. },
  6570. {
  6571. name: "Macro+",
  6572. height: math.unit(1500, "meters")
  6573. },
  6574. {
  6575. name: "Stellar",
  6576. height: math.unit(14e8, "meters")
  6577. },
  6578. ]
  6579. ))
  6580. characterMakers.push(() => makeCharacter(
  6581. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6582. {
  6583. front: {
  6584. height: math.unit(2, "meters"),
  6585. weight: math.unit(70, "kg"),
  6586. name: "Front",
  6587. image: {
  6588. source: "./media/characters/beherit/front.svg",
  6589. extra: 1408 / 1242
  6590. }
  6591. }
  6592. },
  6593. [
  6594. {
  6595. name: "Normal",
  6596. height: math.unit(6, "feet")
  6597. },
  6598. {
  6599. name: "Lorg",
  6600. height: math.unit(25, "feet"),
  6601. default: true
  6602. },
  6603. {
  6604. name: "Lorger",
  6605. height: math.unit(75, "feet")
  6606. },
  6607. {
  6608. name: "Macro",
  6609. height: math.unit(200, "meters")
  6610. },
  6611. ]
  6612. ))
  6613. characterMakers.push(() => makeCharacter(
  6614. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6615. {
  6616. front: {
  6617. height: math.unit(2, "meters"),
  6618. weight: math.unit(150, "kg"),
  6619. name: "Front",
  6620. image: {
  6621. source: "./media/characters/everett/front.svg",
  6622. extra: 2038 / 1737,
  6623. bottom: 0.03
  6624. }
  6625. },
  6626. paw: {
  6627. height: math.unit(2 / 3.6, "meters"),
  6628. name: "Paw",
  6629. image: {
  6630. source: "./media/characters/everett/paw.svg"
  6631. }
  6632. },
  6633. },
  6634. [
  6635. {
  6636. name: "Normal",
  6637. height: math.unit(15, "feet"),
  6638. default: true
  6639. },
  6640. {
  6641. name: "Lorg",
  6642. height: math.unit(70, "feet"),
  6643. default: true
  6644. },
  6645. {
  6646. name: "Lorger",
  6647. height: math.unit(250, "feet")
  6648. },
  6649. {
  6650. name: "Macro",
  6651. height: math.unit(500, "meters")
  6652. },
  6653. ]
  6654. ))
  6655. characterMakers.push(() => makeCharacter(
  6656. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6657. {
  6658. front: {
  6659. height: math.unit(2, "meters"),
  6660. weight: math.unit(86, "kg"),
  6661. name: "Front",
  6662. image: {
  6663. source: "./media/characters/rose/front.svg",
  6664. extra: 1785/1636,
  6665. bottom: 30/1815
  6666. }
  6667. },
  6668. frontSporty: {
  6669. height: math.unit(2, "meters"),
  6670. weight: math.unit(86, "kg"),
  6671. name: "Front (Sporty)",
  6672. image: {
  6673. source: "./media/characters/rose/front-sporty.svg",
  6674. extra: 350/335,
  6675. bottom: 10/360
  6676. }
  6677. },
  6678. frontAlt: {
  6679. height: math.unit(1.6, "meters"),
  6680. weight: math.unit(86, "kg"),
  6681. name: "Front (Alt)",
  6682. image: {
  6683. source: "./media/characters/rose/front-alt.svg",
  6684. extra: 299/283,
  6685. bottom: 3/302
  6686. }
  6687. },
  6688. plush: {
  6689. height: math.unit(2, "meters"),
  6690. weight: math.unit(86/3, "kg"),
  6691. name: "Plush",
  6692. image: {
  6693. source: "./media/characters/rose/plush.svg",
  6694. extra: 361/337,
  6695. bottom: 11/372
  6696. }
  6697. },
  6698. },
  6699. [
  6700. {
  6701. name: "True Micro",
  6702. height: math.unit(9, "cm")
  6703. },
  6704. {
  6705. name: "Micro",
  6706. height: math.unit(16, "cm")
  6707. },
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(1.85, "meters"),
  6711. default: true
  6712. },
  6713. {
  6714. name: "Mini-Macro",
  6715. height: math.unit(5, "meters")
  6716. },
  6717. {
  6718. name: "Macro",
  6719. height: math.unit(15, "meters")
  6720. },
  6721. {
  6722. name: "True Macro",
  6723. height: math.unit(40, "meters")
  6724. },
  6725. {
  6726. name: "City Scale",
  6727. height: math.unit(1, "km")
  6728. },
  6729. ]
  6730. ))
  6731. characterMakers.push(() => makeCharacter(
  6732. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6733. {
  6734. front: {
  6735. height: math.unit(2, "meters"),
  6736. weight: math.unit(350, "lbs"),
  6737. name: "Front",
  6738. image: {
  6739. source: "./media/characters/regal/front.svg"
  6740. }
  6741. },
  6742. back: {
  6743. height: math.unit(2, "meters"),
  6744. weight: math.unit(350, "lbs"),
  6745. name: "Back",
  6746. image: {
  6747. source: "./media/characters/regal/back.svg"
  6748. }
  6749. },
  6750. },
  6751. [
  6752. {
  6753. name: "Macro",
  6754. height: math.unit(350, "feet"),
  6755. default: true
  6756. }
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(4 + 11 / 12, "feet"),
  6764. weight: math.unit(100, "lbs"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/opal/front.svg"
  6768. }
  6769. },
  6770. frontAlt: {
  6771. height: math.unit(4 + 11 / 12, "feet"),
  6772. weight: math.unit(100, "lbs"),
  6773. name: "Front (Alt)",
  6774. image: {
  6775. source: "./media/characters/opal/front-alt.svg"
  6776. }
  6777. },
  6778. },
  6779. [
  6780. {
  6781. name: "Small",
  6782. height: math.unit(4 + 11 / 12, "feet")
  6783. },
  6784. {
  6785. name: "Normal",
  6786. height: math.unit(20, "feet"),
  6787. default: true
  6788. },
  6789. {
  6790. name: "Macro",
  6791. height: math.unit(120, "feet")
  6792. },
  6793. {
  6794. name: "Megamacro",
  6795. height: math.unit(80, "miles")
  6796. },
  6797. {
  6798. name: "True Size",
  6799. height: math.unit(100000, "lightyears")
  6800. },
  6801. ]
  6802. ))
  6803. characterMakers.push(() => makeCharacter(
  6804. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6805. {
  6806. front: {
  6807. height: math.unit(6, "feet"),
  6808. weight: math.unit(200, "lbs"),
  6809. name: "Front",
  6810. image: {
  6811. source: "./media/characters/vector-wuff/front.svg"
  6812. }
  6813. }
  6814. },
  6815. [
  6816. {
  6817. name: "Normal",
  6818. height: math.unit(2.8, "meters")
  6819. },
  6820. {
  6821. name: "Macro",
  6822. height: math.unit(450, "meters"),
  6823. default: true
  6824. },
  6825. {
  6826. name: "Megamacro",
  6827. height: math.unit(15, "kilometers")
  6828. }
  6829. ]
  6830. ))
  6831. characterMakers.push(() => makeCharacter(
  6832. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6833. {
  6834. front: {
  6835. height: math.unit(6, "feet"),
  6836. weight: math.unit(256, "lbs"),
  6837. name: "Front",
  6838. image: {
  6839. source: "./media/characters/dannik/front.svg"
  6840. }
  6841. }
  6842. },
  6843. [
  6844. {
  6845. name: "Macro",
  6846. height: math.unit(69.57, "meters"),
  6847. default: true
  6848. },
  6849. ]
  6850. ))
  6851. characterMakers.push(() => makeCharacter(
  6852. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6853. {
  6854. front: {
  6855. height: math.unit(6, "feet"),
  6856. weight: math.unit(120, "lbs"),
  6857. name: "Front",
  6858. image: {
  6859. source: "./media/characters/azura-saharah/front.svg"
  6860. }
  6861. },
  6862. back: {
  6863. height: math.unit(6, "feet"),
  6864. weight: math.unit(120, "lbs"),
  6865. name: "Back",
  6866. image: {
  6867. source: "./media/characters/azura-saharah/back.svg"
  6868. }
  6869. },
  6870. },
  6871. [
  6872. {
  6873. name: "Macro",
  6874. height: math.unit(100, "feet"),
  6875. default: true
  6876. },
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6881. {
  6882. side: {
  6883. height: math.unit(5 + 4 / 12, "feet"),
  6884. weight: math.unit(163, "lbs"),
  6885. name: "Side",
  6886. image: {
  6887. source: "./media/characters/kennedy/side.svg"
  6888. }
  6889. }
  6890. },
  6891. [
  6892. {
  6893. name: "Standard Doggo",
  6894. height: math.unit(5 + 4 / 12, "feet")
  6895. },
  6896. {
  6897. name: "Big Doggo",
  6898. height: math.unit(25 + 3 / 12, "feet"),
  6899. default: true
  6900. },
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6905. {
  6906. front: {
  6907. height: math.unit(6, "feet"),
  6908. weight: math.unit(90, "lbs"),
  6909. name: "Front",
  6910. image: {
  6911. source: "./media/characters/odi-lunar/front.svg"
  6912. }
  6913. }
  6914. },
  6915. [
  6916. {
  6917. name: "Micro",
  6918. height: math.unit(3, "inches"),
  6919. default: true
  6920. },
  6921. {
  6922. name: "Normal",
  6923. height: math.unit(5.5, "feet")
  6924. }
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6929. {
  6930. back: {
  6931. height: math.unit(6, "feet"),
  6932. weight: math.unit(220, "lbs"),
  6933. name: "Back",
  6934. image: {
  6935. source: "./media/characters/mandake/back.svg"
  6936. }
  6937. }
  6938. },
  6939. [
  6940. {
  6941. name: "Normal",
  6942. height: math.unit(7, "feet"),
  6943. default: true
  6944. },
  6945. {
  6946. name: "Macro",
  6947. height: math.unit(78, "feet")
  6948. },
  6949. {
  6950. name: "Macro+",
  6951. height: math.unit(300, "meters")
  6952. },
  6953. {
  6954. name: "Macro++",
  6955. height: math.unit(2400, "feet")
  6956. },
  6957. {
  6958. name: "Megamacro",
  6959. height: math.unit(5167, "meters")
  6960. },
  6961. {
  6962. name: "Gigamacro",
  6963. height: math.unit(41769, "miles")
  6964. },
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6969. {
  6970. front: {
  6971. height: math.unit(6, "feet"),
  6972. weight: math.unit(120, "lbs"),
  6973. name: "Front",
  6974. image: {
  6975. source: "./media/characters/yozey/front.svg"
  6976. }
  6977. },
  6978. frontAlt: {
  6979. height: math.unit(6, "feet"),
  6980. weight: math.unit(120, "lbs"),
  6981. name: "Front (Alt)",
  6982. image: {
  6983. source: "./media/characters/yozey/front-alt.svg"
  6984. }
  6985. },
  6986. side: {
  6987. height: math.unit(6, "feet"),
  6988. weight: math.unit(120, "lbs"),
  6989. name: "Side",
  6990. image: {
  6991. source: "./media/characters/yozey/side.svg"
  6992. }
  6993. },
  6994. },
  6995. [
  6996. {
  6997. name: "Micro",
  6998. height: math.unit(3, "inches"),
  6999. default: true
  7000. },
  7001. {
  7002. name: "Normal",
  7003. height: math.unit(6, "feet")
  7004. }
  7005. ]
  7006. ))
  7007. characterMakers.push(() => makeCharacter(
  7008. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7009. {
  7010. front: {
  7011. height: math.unit(6, "feet"),
  7012. weight: math.unit(103, "lbs"),
  7013. name: "Front",
  7014. image: {
  7015. source: "./media/characters/valeska-voss/front.svg"
  7016. }
  7017. }
  7018. },
  7019. [
  7020. {
  7021. name: "Mini-Sized Sub",
  7022. height: math.unit(3.1, "inches")
  7023. },
  7024. {
  7025. name: "Mid-Sized Sub",
  7026. height: math.unit(6.2, "inches")
  7027. },
  7028. {
  7029. name: "Full-Sized Sub",
  7030. height: math.unit(9.3, "inches")
  7031. },
  7032. {
  7033. name: "Normal",
  7034. height: math.unit(5 + 2 / 12, "foot"),
  7035. default: true
  7036. },
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7041. {
  7042. front: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(160, "lbs"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/gene-zeta/front.svg",
  7048. extra: 3006 / 2826,
  7049. bottom: 182 / 3188
  7050. }
  7051. }
  7052. },
  7053. [
  7054. {
  7055. name: "Micro",
  7056. height: math.unit(6, "inches")
  7057. },
  7058. {
  7059. name: "Normal",
  7060. height: math.unit(5 + 11 / 12, "foot"),
  7061. default: true
  7062. },
  7063. {
  7064. name: "Macro",
  7065. height: math.unit(140, "feet")
  7066. },
  7067. {
  7068. name: "Supercharged",
  7069. height: math.unit(2500, "feet")
  7070. },
  7071. ]
  7072. ))
  7073. characterMakers.push(() => makeCharacter(
  7074. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7075. {
  7076. front: {
  7077. height: math.unit(6, "feet"),
  7078. weight: math.unit(350, "lbs"),
  7079. name: "Front",
  7080. image: {
  7081. source: "./media/characters/razinox/front.svg",
  7082. extra: 1686 / 1548,
  7083. bottom: 28.2 / 1868
  7084. }
  7085. },
  7086. back: {
  7087. height: math.unit(6, "feet"),
  7088. weight: math.unit(350, "lbs"),
  7089. name: "Back",
  7090. image: {
  7091. source: "./media/characters/razinox/back.svg",
  7092. extra: 1660 / 1590,
  7093. bottom: 15 / 1665
  7094. }
  7095. },
  7096. },
  7097. [
  7098. {
  7099. name: "Normal",
  7100. height: math.unit(10 + 8 / 12, "foot")
  7101. },
  7102. {
  7103. name: "Minimacro",
  7104. height: math.unit(15, "foot")
  7105. },
  7106. {
  7107. name: "Macro",
  7108. height: math.unit(60, "foot"),
  7109. default: true
  7110. },
  7111. {
  7112. name: "Megamacro",
  7113. height: math.unit(5, "miles")
  7114. },
  7115. {
  7116. name: "Gigamacro",
  7117. height: math.unit(6000, "miles")
  7118. },
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7123. {
  7124. front: {
  7125. height: math.unit(6, "feet"),
  7126. weight: math.unit(150, "lbs"),
  7127. name: "Front",
  7128. image: {
  7129. source: "./media/characters/cobalt/front.svg"
  7130. }
  7131. }
  7132. },
  7133. [
  7134. {
  7135. name: "Normal",
  7136. height: math.unit(8 + 1 / 12, "foot")
  7137. },
  7138. {
  7139. name: "Macro",
  7140. height: math.unit(111, "foot"),
  7141. default: true
  7142. },
  7143. {
  7144. name: "Supracosmic",
  7145. height: math.unit(1e42, "feet")
  7146. },
  7147. ]
  7148. ))
  7149. characterMakers.push(() => makeCharacter(
  7150. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7151. {
  7152. front: {
  7153. height: math.unit(6, "feet"),
  7154. weight: math.unit(140, "lbs"),
  7155. name: "Front",
  7156. image: {
  7157. source: "./media/characters/amanda/front.svg"
  7158. }
  7159. }
  7160. },
  7161. [
  7162. {
  7163. name: "Micro",
  7164. height: math.unit(5, "inches"),
  7165. default: true
  7166. },
  7167. ]
  7168. ))
  7169. characterMakers.push(() => makeCharacter(
  7170. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7171. {
  7172. front: {
  7173. height: math.unit(2.75, "meters"),
  7174. weight: math.unit(1200, "lb"),
  7175. name: "Front",
  7176. image: {
  7177. source: "./media/characters/teal/front.svg",
  7178. extra: 2463 / 2320,
  7179. bottom: 166 / 2629
  7180. }
  7181. },
  7182. back: {
  7183. height: math.unit(2.75, "meters"),
  7184. weight: math.unit(1200, "lb"),
  7185. name: "Back",
  7186. image: {
  7187. source: "./media/characters/teal/back.svg",
  7188. extra: 2580 / 2489,
  7189. bottom: 151 / 2731
  7190. }
  7191. },
  7192. sitting: {
  7193. height: math.unit(1.9, "meters"),
  7194. weight: math.unit(1200, "lb"),
  7195. name: "Sitting",
  7196. image: {
  7197. source: "./media/characters/teal/sitting.svg",
  7198. extra: 623 / 590,
  7199. bottom: 121 / 744
  7200. }
  7201. },
  7202. standing: {
  7203. height: math.unit(2.75, "meters"),
  7204. weight: math.unit(1200, "lb"),
  7205. name: "Standing",
  7206. image: {
  7207. source: "./media/characters/teal/standing.svg",
  7208. extra: 923 / 893,
  7209. bottom: 60 / 983
  7210. }
  7211. },
  7212. stretching: {
  7213. height: math.unit(3.65, "meters"),
  7214. weight: math.unit(1200, "lb"),
  7215. name: "Stretching",
  7216. image: {
  7217. source: "./media/characters/teal/stretching.svg",
  7218. extra: 1276 / 1244,
  7219. bottom: 0 / 1276
  7220. }
  7221. },
  7222. legged: {
  7223. height: math.unit(1.3, "meters"),
  7224. weight: math.unit(100, "lb"),
  7225. name: "Legged",
  7226. image: {
  7227. source: "./media/characters/teal/legged.svg",
  7228. extra: 462 / 437,
  7229. bottom: 24 / 486
  7230. }
  7231. },
  7232. naga: {
  7233. height: math.unit(5.4, "meters"),
  7234. weight: math.unit(4000, "lb"),
  7235. name: "Naga",
  7236. image: {
  7237. source: "./media/characters/teal/naga.svg",
  7238. extra: 1902 / 1858,
  7239. bottom: 0 / 1902
  7240. }
  7241. },
  7242. hand: {
  7243. height: math.unit(0.52, "meters"),
  7244. name: "Hand",
  7245. image: {
  7246. source: "./media/characters/teal/hand.svg"
  7247. }
  7248. },
  7249. maw: {
  7250. height: math.unit(0.43, "meters"),
  7251. name: "Maw",
  7252. image: {
  7253. source: "./media/characters/teal/maw.svg"
  7254. }
  7255. },
  7256. slit: {
  7257. height: math.unit(0.25, "meters"),
  7258. name: "Slit",
  7259. image: {
  7260. source: "./media/characters/teal/slit.svg"
  7261. }
  7262. },
  7263. },
  7264. [
  7265. {
  7266. name: "Normal",
  7267. height: math.unit(2.75, "meters"),
  7268. default: true
  7269. },
  7270. {
  7271. name: "Macro",
  7272. height: math.unit(300, "feet")
  7273. },
  7274. {
  7275. name: "Macro+",
  7276. height: math.unit(2000, "feet")
  7277. },
  7278. ]
  7279. ))
  7280. characterMakers.push(() => makeCharacter(
  7281. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7282. {
  7283. frontCat: {
  7284. height: math.unit(6, "feet"),
  7285. weight: math.unit(180, "lbs"),
  7286. name: "Front (Cat)",
  7287. image: {
  7288. source: "./media/characters/ravin-amulet/front-cat.svg"
  7289. }
  7290. },
  7291. frontCatAlt: {
  7292. height: math.unit(6, "feet"),
  7293. weight: math.unit(180, "lbs"),
  7294. name: "Front (Alt, Cat)",
  7295. image: {
  7296. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7297. }
  7298. },
  7299. frontWerewolf: {
  7300. height: math.unit(6 * 1.2, "feet"),
  7301. weight: math.unit(225, "lbs"),
  7302. name: "Front (Werewolf)",
  7303. image: {
  7304. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7305. }
  7306. },
  7307. backWerewolf: {
  7308. height: math.unit(6 * 1.2, "feet"),
  7309. weight: math.unit(225, "lbs"),
  7310. name: "Back (Werewolf)",
  7311. image: {
  7312. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7313. }
  7314. },
  7315. },
  7316. [
  7317. {
  7318. name: "Nano",
  7319. height: math.unit(1, "micrometer")
  7320. },
  7321. {
  7322. name: "Micro",
  7323. height: math.unit(1, "inch")
  7324. },
  7325. {
  7326. name: "Normal",
  7327. height: math.unit(6, "feet"),
  7328. default: true
  7329. },
  7330. {
  7331. name: "Macro",
  7332. height: math.unit(60, "feet")
  7333. }
  7334. ]
  7335. ))
  7336. characterMakers.push(() => makeCharacter(
  7337. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7338. {
  7339. front: {
  7340. height: math.unit(6, "feet"),
  7341. weight: math.unit(165, "lbs"),
  7342. name: "Front",
  7343. image: {
  7344. source: "./media/characters/fluoresce/front.svg"
  7345. }
  7346. }
  7347. },
  7348. [
  7349. {
  7350. name: "Micro",
  7351. height: math.unit(6, "cm")
  7352. },
  7353. {
  7354. name: "Normal",
  7355. height: math.unit(5 + 7 / 12, "feet"),
  7356. default: true
  7357. },
  7358. {
  7359. name: "Macro",
  7360. height: math.unit(56, "feet")
  7361. },
  7362. {
  7363. name: "Megamacro",
  7364. height: math.unit(1.9, "miles")
  7365. },
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7370. {
  7371. front: {
  7372. height: math.unit(9 + 6 / 12, "feet"),
  7373. weight: math.unit(523, "lbs"),
  7374. name: "Side",
  7375. image: {
  7376. source: "./media/characters/aurora/side.svg"
  7377. }
  7378. }
  7379. },
  7380. [
  7381. {
  7382. name: "Normal",
  7383. height: math.unit(9 + 6 / 12, "feet")
  7384. },
  7385. {
  7386. name: "Macro",
  7387. height: math.unit(96, "feet"),
  7388. default: true
  7389. },
  7390. {
  7391. name: "Macro+",
  7392. height: math.unit(243, "feet")
  7393. },
  7394. ]
  7395. ))
  7396. characterMakers.push(() => makeCharacter(
  7397. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7398. {
  7399. front: {
  7400. height: math.unit(194, "cm"),
  7401. weight: math.unit(90, "kg"),
  7402. name: "Front",
  7403. image: {
  7404. source: "./media/characters/ranek/front.svg"
  7405. }
  7406. },
  7407. side: {
  7408. height: math.unit(194, "cm"),
  7409. weight: math.unit(90, "kg"),
  7410. name: "Side",
  7411. image: {
  7412. source: "./media/characters/ranek/side.svg"
  7413. }
  7414. },
  7415. back: {
  7416. height: math.unit(194, "cm"),
  7417. weight: math.unit(90, "kg"),
  7418. name: "Back",
  7419. image: {
  7420. source: "./media/characters/ranek/back.svg"
  7421. }
  7422. },
  7423. feral: {
  7424. height: math.unit(30, "cm"),
  7425. weight: math.unit(1.6, "lbs"),
  7426. name: "Feral",
  7427. image: {
  7428. source: "./media/characters/ranek/feral.svg"
  7429. }
  7430. },
  7431. },
  7432. [
  7433. {
  7434. name: "Normal",
  7435. height: math.unit(194, "cm"),
  7436. default: true
  7437. },
  7438. {
  7439. name: "Macro",
  7440. height: math.unit(100, "meters")
  7441. },
  7442. ]
  7443. ))
  7444. characterMakers.push(() => makeCharacter(
  7445. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7446. {
  7447. front: {
  7448. height: math.unit(5 + 6 / 12, "feet"),
  7449. weight: math.unit(153, "lbs"),
  7450. name: "Front",
  7451. image: {
  7452. source: "./media/characters/andrew-cooper/front.svg"
  7453. }
  7454. },
  7455. },
  7456. [
  7457. {
  7458. name: "Nano",
  7459. height: math.unit(1, "mm")
  7460. },
  7461. {
  7462. name: "Micro",
  7463. height: math.unit(2, "inches")
  7464. },
  7465. {
  7466. name: "Normal",
  7467. height: math.unit(5 + 6 / 12, "feet"),
  7468. default: true
  7469. }
  7470. ]
  7471. ))
  7472. characterMakers.push(() => makeCharacter(
  7473. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7474. {
  7475. front: {
  7476. height: math.unit(6, "feet"),
  7477. weight: math.unit(180, "lbs"),
  7478. name: "Front",
  7479. image: {
  7480. source: "./media/characters/akane-sato/front.svg",
  7481. extra: 1219 / 1140
  7482. }
  7483. },
  7484. back: {
  7485. height: math.unit(6, "feet"),
  7486. weight: math.unit(180, "lbs"),
  7487. name: "Back",
  7488. image: {
  7489. source: "./media/characters/akane-sato/back.svg",
  7490. extra: 1219 / 1170
  7491. }
  7492. },
  7493. },
  7494. [
  7495. {
  7496. name: "Normal",
  7497. height: math.unit(2.5, "meters")
  7498. },
  7499. {
  7500. name: "Macro",
  7501. height: math.unit(250, "meters"),
  7502. default: true
  7503. },
  7504. {
  7505. name: "Megamacro",
  7506. height: math.unit(25, "km")
  7507. },
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7512. {
  7513. front: {
  7514. height: math.unit(6, "feet"),
  7515. weight: math.unit(65, "kg"),
  7516. name: "Front",
  7517. image: {
  7518. source: "./media/characters/rook/front.svg",
  7519. extra: 960 / 950
  7520. }
  7521. }
  7522. },
  7523. [
  7524. {
  7525. name: "Normal",
  7526. height: math.unit(8.8, "feet")
  7527. },
  7528. {
  7529. name: "Macro",
  7530. height: math.unit(88, "feet"),
  7531. default: true
  7532. },
  7533. {
  7534. name: "Megamacro",
  7535. height: math.unit(8, "miles")
  7536. },
  7537. ]
  7538. ))
  7539. characterMakers.push(() => makeCharacter(
  7540. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7541. {
  7542. front: {
  7543. height: math.unit(12 + 2 / 12, "feet"),
  7544. weight: math.unit(808, "lbs"),
  7545. name: "Front",
  7546. image: {
  7547. source: "./media/characters/prodigy/front.svg"
  7548. }
  7549. }
  7550. },
  7551. [
  7552. {
  7553. name: "Normal",
  7554. height: math.unit(12 + 2 / 12, "feet"),
  7555. default: true
  7556. },
  7557. {
  7558. name: "Macro",
  7559. height: math.unit(143, "feet")
  7560. },
  7561. {
  7562. name: "Macro+",
  7563. height: math.unit(400, "feet")
  7564. },
  7565. ]
  7566. ))
  7567. characterMakers.push(() => makeCharacter(
  7568. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7569. {
  7570. front: {
  7571. height: math.unit(6, "feet"),
  7572. weight: math.unit(225, "lbs"),
  7573. name: "Front",
  7574. image: {
  7575. source: "./media/characters/daniel/front.svg"
  7576. }
  7577. },
  7578. leaning: {
  7579. height: math.unit(6, "feet"),
  7580. weight: math.unit(225, "lbs"),
  7581. name: "Leaning",
  7582. image: {
  7583. source: "./media/characters/daniel/leaning.svg"
  7584. }
  7585. },
  7586. },
  7587. [
  7588. {
  7589. name: "Macro",
  7590. height: math.unit(1000, "feet"),
  7591. default: true
  7592. },
  7593. ]
  7594. ))
  7595. characterMakers.push(() => makeCharacter(
  7596. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7597. {
  7598. front: {
  7599. height: math.unit(6, "feet"),
  7600. weight: math.unit(88, "lbs"),
  7601. name: "Front",
  7602. image: {
  7603. source: "./media/characters/chiros/front.svg",
  7604. extra: 306 / 226
  7605. }
  7606. },
  7607. side: {
  7608. height: math.unit(6, "feet"),
  7609. weight: math.unit(88, "lbs"),
  7610. name: "Side",
  7611. image: {
  7612. source: "./media/characters/chiros/side.svg",
  7613. extra: 306 / 226
  7614. }
  7615. },
  7616. },
  7617. [
  7618. {
  7619. name: "Normal",
  7620. height: math.unit(6, "cm"),
  7621. default: true
  7622. },
  7623. ]
  7624. ))
  7625. characterMakers.push(() => makeCharacter(
  7626. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7627. {
  7628. front: {
  7629. height: math.unit(6, "feet"),
  7630. weight: math.unit(100, "lbs"),
  7631. name: "Front",
  7632. image: {
  7633. source: "./media/characters/selka/front.svg",
  7634. extra: 947 / 887
  7635. }
  7636. }
  7637. },
  7638. [
  7639. {
  7640. name: "Normal",
  7641. height: math.unit(5, "cm"),
  7642. default: true
  7643. },
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7648. {
  7649. front: {
  7650. height: math.unit(8 + 3 / 12, "feet"),
  7651. weight: math.unit(424, "lbs"),
  7652. name: "Front",
  7653. image: {
  7654. source: "./media/characters/verin/front.svg",
  7655. extra: 1845 / 1550
  7656. }
  7657. },
  7658. frontArmored: {
  7659. height: math.unit(8 + 3 / 12, "feet"),
  7660. weight: math.unit(424, "lbs"),
  7661. name: "Front (Armored)",
  7662. image: {
  7663. source: "./media/characters/verin/front-armor.svg",
  7664. extra: 1845 / 1550,
  7665. bottom: 0.01
  7666. }
  7667. },
  7668. back: {
  7669. height: math.unit(8 + 3 / 12, "feet"),
  7670. weight: math.unit(424, "lbs"),
  7671. name: "Back",
  7672. image: {
  7673. source: "./media/characters/verin/back.svg",
  7674. bottom: 0.1,
  7675. extra: 1
  7676. }
  7677. },
  7678. foot: {
  7679. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7680. name: "Foot",
  7681. image: {
  7682. source: "./media/characters/verin/foot.svg"
  7683. }
  7684. },
  7685. },
  7686. [
  7687. {
  7688. name: "Normal",
  7689. height: math.unit(8 + 3 / 12, "feet")
  7690. },
  7691. {
  7692. name: "Minimacro",
  7693. height: math.unit(21, "feet"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Macro",
  7698. height: math.unit(626, "feet")
  7699. },
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7704. {
  7705. front: {
  7706. height: math.unit(2.718, "meters"),
  7707. weight: math.unit(150, "lbs"),
  7708. name: "Front",
  7709. image: {
  7710. source: "./media/characters/sovrim-terraquian/front.svg"
  7711. }
  7712. },
  7713. back: {
  7714. height: math.unit(2.718, "meters"),
  7715. weight: math.unit(150, "lbs"),
  7716. name: "Back",
  7717. image: {
  7718. source: "./media/characters/sovrim-terraquian/back.svg"
  7719. }
  7720. }
  7721. },
  7722. [
  7723. {
  7724. name: "Micro",
  7725. height: math.unit(2, "inches")
  7726. },
  7727. {
  7728. name: "Small",
  7729. height: math.unit(1, "meter")
  7730. },
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(Math.E, "meters"),
  7734. default: true
  7735. },
  7736. {
  7737. name: "Macro",
  7738. height: math.unit(20, "meters")
  7739. },
  7740. {
  7741. name: "Macro+",
  7742. height: math.unit(400, "meters")
  7743. },
  7744. ]
  7745. ))
  7746. characterMakers.push(() => makeCharacter(
  7747. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7748. {
  7749. front: {
  7750. height: math.unit(7, "feet"),
  7751. weight: math.unit(489, "lbs"),
  7752. name: "Front",
  7753. image: {
  7754. source: "./media/characters/reece-silvermane/front.svg",
  7755. bottom: 0.02,
  7756. extra: 1
  7757. }
  7758. },
  7759. },
  7760. [
  7761. {
  7762. name: "Macro",
  7763. height: math.unit(1.5, "miles"),
  7764. default: true
  7765. },
  7766. ]
  7767. ))
  7768. characterMakers.push(() => makeCharacter(
  7769. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7770. {
  7771. front: {
  7772. height: math.unit(6, "feet"),
  7773. weight: math.unit(78, "kg"),
  7774. name: "Front",
  7775. image: {
  7776. source: "./media/characters/kane/front.svg",
  7777. extra: 978 / 899
  7778. }
  7779. },
  7780. },
  7781. [
  7782. {
  7783. name: "Normal",
  7784. height: math.unit(2.1, "m"),
  7785. },
  7786. {
  7787. name: "Macro",
  7788. height: math.unit(1, "km"),
  7789. default: true
  7790. },
  7791. ]
  7792. ))
  7793. characterMakers.push(() => makeCharacter(
  7794. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7795. {
  7796. front: {
  7797. height: math.unit(6, "feet"),
  7798. weight: math.unit(200, "kg"),
  7799. name: "Front",
  7800. image: {
  7801. source: "./media/characters/tegon/front.svg",
  7802. bottom: 0.01,
  7803. extra: 1
  7804. }
  7805. },
  7806. },
  7807. [
  7808. {
  7809. name: "Micro",
  7810. height: math.unit(1, "inch")
  7811. },
  7812. {
  7813. name: "Normal",
  7814. height: math.unit(6 + 3 / 12, "feet"),
  7815. default: true
  7816. },
  7817. {
  7818. name: "Macro",
  7819. height: math.unit(300, "feet")
  7820. },
  7821. {
  7822. name: "Megamacro",
  7823. height: math.unit(69, "miles")
  7824. },
  7825. ]
  7826. ))
  7827. characterMakers.push(() => makeCharacter(
  7828. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7829. {
  7830. side: {
  7831. height: math.unit(6, "feet"),
  7832. weight: math.unit(2304, "lbs"),
  7833. name: "Side",
  7834. image: {
  7835. source: "./media/characters/arcturax/side.svg",
  7836. extra: 790 / 376,
  7837. bottom: 0.01
  7838. }
  7839. },
  7840. },
  7841. [
  7842. {
  7843. name: "Micro",
  7844. height: math.unit(2, "inch")
  7845. },
  7846. {
  7847. name: "Normal",
  7848. height: math.unit(6, "feet")
  7849. },
  7850. {
  7851. name: "Macro",
  7852. height: math.unit(39, "feet"),
  7853. default: true
  7854. },
  7855. {
  7856. name: "Megamacro",
  7857. height: math.unit(7, "miles")
  7858. },
  7859. ]
  7860. ))
  7861. characterMakers.push(() => makeCharacter(
  7862. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7863. {
  7864. front: {
  7865. height: math.unit(6, "feet"),
  7866. weight: math.unit(50, "lbs"),
  7867. name: "Front",
  7868. image: {
  7869. source: "./media/characters/sentri/front.svg",
  7870. extra: 1750 / 1570,
  7871. bottom: 0.025
  7872. }
  7873. },
  7874. frontAlt: {
  7875. height: math.unit(6, "feet"),
  7876. weight: math.unit(50, "lbs"),
  7877. name: "Front (Alt)",
  7878. image: {
  7879. source: "./media/characters/sentri/front-alt.svg",
  7880. extra: 1750 / 1570,
  7881. bottom: 0.025
  7882. }
  7883. },
  7884. },
  7885. [
  7886. {
  7887. name: "Normal",
  7888. height: math.unit(15, "feet"),
  7889. default: true
  7890. },
  7891. {
  7892. name: "Macro",
  7893. height: math.unit(2500, "feet")
  7894. }
  7895. ]
  7896. ))
  7897. characterMakers.push(() => makeCharacter(
  7898. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7899. {
  7900. front: {
  7901. height: math.unit(5 + 8 / 12, "feet"),
  7902. weight: math.unit(130, "lbs"),
  7903. name: "Front",
  7904. image: {
  7905. source: "./media/characters/corvin/front.svg",
  7906. extra: 1803 / 1629
  7907. }
  7908. },
  7909. frontShirt: {
  7910. height: math.unit(5 + 8 / 12, "feet"),
  7911. weight: math.unit(130, "lbs"),
  7912. name: "Front (Shirt)",
  7913. image: {
  7914. source: "./media/characters/corvin/front-shirt.svg",
  7915. extra: 1803 / 1629
  7916. }
  7917. },
  7918. frontPoncho: {
  7919. height: math.unit(5 + 8 / 12, "feet"),
  7920. weight: math.unit(130, "lbs"),
  7921. name: "Front (Poncho)",
  7922. image: {
  7923. source: "./media/characters/corvin/front-poncho.svg",
  7924. extra: 1803 / 1629
  7925. }
  7926. },
  7927. side: {
  7928. height: math.unit(5 + 8 / 12, "feet"),
  7929. weight: math.unit(130, "lbs"),
  7930. name: "Side",
  7931. image: {
  7932. source: "./media/characters/corvin/side.svg",
  7933. extra: 1012 / 945
  7934. }
  7935. },
  7936. back: {
  7937. height: math.unit(5 + 8 / 12, "feet"),
  7938. weight: math.unit(130, "lbs"),
  7939. name: "Back",
  7940. image: {
  7941. source: "./media/characters/corvin/back.svg",
  7942. extra: 1803 / 1629
  7943. }
  7944. },
  7945. },
  7946. [
  7947. {
  7948. name: "Micro",
  7949. height: math.unit(3, "inches")
  7950. },
  7951. {
  7952. name: "Normal",
  7953. height: math.unit(5 + 8 / 12, "feet")
  7954. },
  7955. {
  7956. name: "Macro",
  7957. height: math.unit(300, "feet"),
  7958. default: true
  7959. },
  7960. {
  7961. name: "Megamacro",
  7962. height: math.unit(500, "miles")
  7963. }
  7964. ]
  7965. ))
  7966. characterMakers.push(() => makeCharacter(
  7967. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7968. {
  7969. front: {
  7970. height: math.unit(6, "feet"),
  7971. weight: math.unit(135, "lbs"),
  7972. name: "Front",
  7973. image: {
  7974. source: "./media/characters/q/front.svg",
  7975. extra: 854 / 752,
  7976. bottom: 0.005
  7977. }
  7978. },
  7979. back: {
  7980. height: math.unit(6, "feet"),
  7981. weight: math.unit(130, "lbs"),
  7982. name: "Back",
  7983. image: {
  7984. source: "./media/characters/q/back.svg",
  7985. extra: 854 / 752
  7986. }
  7987. },
  7988. },
  7989. [
  7990. {
  7991. name: "Macro",
  7992. height: math.unit(90, "feet"),
  7993. default: true
  7994. },
  7995. {
  7996. name: "Extra Macro",
  7997. height: math.unit(300, "feet"),
  7998. },
  7999. {
  8000. name: "BIG WALF",
  8001. height: math.unit(750, "feet"),
  8002. },
  8003. ]
  8004. ))
  8005. characterMakers.push(() => makeCharacter(
  8006. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8007. {
  8008. front: {
  8009. height: math.unit(6, "feet"),
  8010. weight: math.unit(150, "lbs"),
  8011. name: "Front",
  8012. image: {
  8013. source: "./media/characters/carley/front.svg",
  8014. extra: 3927 / 3540,
  8015. bottom: 29.2 / 735
  8016. }
  8017. }
  8018. },
  8019. [
  8020. {
  8021. name: "Normal",
  8022. height: math.unit(6 + 3 / 12, "feet")
  8023. },
  8024. {
  8025. name: "Macro",
  8026. height: math.unit(185, "feet"),
  8027. default: true
  8028. },
  8029. {
  8030. name: "Megamacro",
  8031. height: math.unit(8, "miles"),
  8032. },
  8033. ]
  8034. ))
  8035. characterMakers.push(() => makeCharacter(
  8036. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8037. {
  8038. front: {
  8039. height: math.unit(3, "feet"),
  8040. weight: math.unit(28, "lbs"),
  8041. name: "Front",
  8042. image: {
  8043. source: "./media/characters/citrine/front.svg"
  8044. }
  8045. }
  8046. },
  8047. [
  8048. {
  8049. name: "Normal",
  8050. height: math.unit(3, "feet"),
  8051. default: true
  8052. }
  8053. ]
  8054. ))
  8055. characterMakers.push(() => makeCharacter(
  8056. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8057. {
  8058. front: {
  8059. height: math.unit(14, "feet"),
  8060. weight: math.unit(1450, "kg"),
  8061. capacity: math.unit(15, "people"),
  8062. name: "Front",
  8063. image: {
  8064. source: "./media/characters/aura-starwind/front.svg",
  8065. extra: 1455 / 1335
  8066. }
  8067. },
  8068. side: {
  8069. height: math.unit(14, "feet"),
  8070. weight: math.unit(1450, "kg"),
  8071. capacity: math.unit(15, "people"),
  8072. name: "Side",
  8073. image: {
  8074. source: "./media/characters/aura-starwind/side.svg",
  8075. extra: 1654 / 1497
  8076. }
  8077. },
  8078. taur: {
  8079. height: math.unit(18, "feet"),
  8080. weight: math.unit(5500, "kg"),
  8081. capacity: math.unit(50, "people"),
  8082. name: "Taur",
  8083. image: {
  8084. source: "./media/characters/aura-starwind/taur.svg",
  8085. extra: 1760 / 1650
  8086. }
  8087. },
  8088. feral: {
  8089. height: math.unit(46, "feet"),
  8090. weight: math.unit(25000, "kg"),
  8091. capacity: math.unit(120, "people"),
  8092. name: "Feral",
  8093. image: {
  8094. source: "./media/characters/aura-starwind/feral.svg"
  8095. }
  8096. },
  8097. },
  8098. [
  8099. {
  8100. name: "Normal",
  8101. height: math.unit(14, "feet"),
  8102. default: true
  8103. },
  8104. {
  8105. name: "Macro",
  8106. height: math.unit(50, "meters")
  8107. },
  8108. {
  8109. name: "Megamacro",
  8110. height: math.unit(5000, "meters")
  8111. },
  8112. {
  8113. name: "Gigamacro",
  8114. height: math.unit(100000, "kilometers")
  8115. },
  8116. ]
  8117. ))
  8118. characterMakers.push(() => makeCharacter(
  8119. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8120. {
  8121. front: {
  8122. height: math.unit(2 + 7 / 12, "feet"),
  8123. weight: math.unit(32, "lbs"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/rivet/front.svg",
  8127. extra: 1716 / 1658,
  8128. bottom: 0.03
  8129. }
  8130. },
  8131. foot: {
  8132. height: math.unit(0.551, "feet"),
  8133. name: "Rivet's Foot",
  8134. image: {
  8135. source: "./media/characters/rivet/foot.svg"
  8136. },
  8137. rename: true
  8138. }
  8139. },
  8140. [
  8141. {
  8142. name: "Micro",
  8143. height: math.unit(1.5, "inches"),
  8144. },
  8145. {
  8146. name: "Normal",
  8147. height: math.unit(2 + 7 / 12, "feet"),
  8148. default: true
  8149. },
  8150. {
  8151. name: "Macro",
  8152. height: math.unit(85, "feet")
  8153. },
  8154. {
  8155. name: "Megamacro",
  8156. height: math.unit(2.2, "km")
  8157. }
  8158. ]
  8159. ))
  8160. characterMakers.push(() => makeCharacter(
  8161. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8162. {
  8163. front: {
  8164. height: math.unit(5 + 9 / 12, "feet"),
  8165. weight: math.unit(150, "lbs"),
  8166. name: "Front",
  8167. image: {
  8168. source: "./media/characters/coffee/front.svg",
  8169. extra: 3666 / 3032,
  8170. bottom: 0.04
  8171. }
  8172. },
  8173. foot: {
  8174. height: math.unit(1.29, "feet"),
  8175. name: "Foot",
  8176. image: {
  8177. source: "./media/characters/coffee/foot.svg"
  8178. }
  8179. },
  8180. },
  8181. [
  8182. {
  8183. name: "Micro",
  8184. height: math.unit(2, "inches"),
  8185. },
  8186. {
  8187. name: "Normal",
  8188. height: math.unit(5 + 9 / 12, "feet"),
  8189. default: true
  8190. },
  8191. {
  8192. name: "Macro",
  8193. height: math.unit(800, "feet")
  8194. },
  8195. {
  8196. name: "Megamacro",
  8197. height: math.unit(25, "miles")
  8198. }
  8199. ]
  8200. ))
  8201. characterMakers.push(() => makeCharacter(
  8202. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8203. {
  8204. front: {
  8205. height: math.unit(6, "feet"),
  8206. weight: math.unit(200, "lbs"),
  8207. name: "Front",
  8208. image: {
  8209. source: "./media/characters/chari-gal/front.svg",
  8210. extra: 1568 / 1385,
  8211. bottom: 0.047
  8212. }
  8213. },
  8214. gigantamax: {
  8215. height: math.unit(6 * 16, "feet"),
  8216. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8217. name: "Gigantamax",
  8218. image: {
  8219. source: "./media/characters/chari-gal/gigantamax.svg",
  8220. extra: 1124 / 888,
  8221. bottom: 0.03
  8222. }
  8223. },
  8224. },
  8225. [
  8226. {
  8227. name: "Normal",
  8228. height: math.unit(5 + 7 / 12, "feet")
  8229. },
  8230. {
  8231. name: "Macro",
  8232. height: math.unit(200, "feet"),
  8233. default: true
  8234. }
  8235. ]
  8236. ))
  8237. characterMakers.push(() => makeCharacter(
  8238. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8239. {
  8240. front: {
  8241. height: math.unit(6, "feet"),
  8242. weight: math.unit(150, "lbs"),
  8243. name: "Front",
  8244. image: {
  8245. source: "./media/characters/nova/front.svg",
  8246. extra: 5000 / 4722,
  8247. bottom: 0.02
  8248. }
  8249. }
  8250. },
  8251. [
  8252. {
  8253. name: "Micro-",
  8254. height: math.unit(0.8, "inches")
  8255. },
  8256. {
  8257. name: "Micro",
  8258. height: math.unit(2, "inches"),
  8259. default: true
  8260. },
  8261. ]
  8262. ))
  8263. characterMakers.push(() => makeCharacter(
  8264. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8265. {
  8266. front: {
  8267. height: math.unit(3 + 1 / 12, "feet"),
  8268. weight: math.unit(21.7, "lbs"),
  8269. name: "Front",
  8270. image: {
  8271. source: "./media/characters/argent/front.svg",
  8272. extra: 1471 / 1331,
  8273. bottom: 100.8 / 1575.5
  8274. }
  8275. }
  8276. },
  8277. [
  8278. {
  8279. name: "Micro",
  8280. height: math.unit(2, "inches")
  8281. },
  8282. {
  8283. name: "Normal",
  8284. height: math.unit(3 + 1 / 12, "feet"),
  8285. default: true
  8286. },
  8287. {
  8288. name: "Macro",
  8289. height: math.unit(120, "feet")
  8290. },
  8291. ]
  8292. ))
  8293. characterMakers.push(() => makeCharacter(
  8294. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8295. {
  8296. lamp: {
  8297. height: math.unit(7 * 1559 / 989, "feet"),
  8298. name: "Magic Lamp",
  8299. image: {
  8300. source: "./media/characters/mira-al-cul/lamp.svg",
  8301. extra: 1617 / 1559
  8302. }
  8303. },
  8304. front: {
  8305. height: math.unit(7, "feet"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/mira-al-cul/front.svg",
  8309. extra: 1044 / 990
  8310. }
  8311. },
  8312. },
  8313. [
  8314. {
  8315. name: "Heavily Restricted",
  8316. height: math.unit(7 * 1559 / 989, "feet")
  8317. },
  8318. {
  8319. name: "Freshly Freed",
  8320. height: math.unit(50 * 1559 / 989, "feet")
  8321. },
  8322. {
  8323. name: "World Encompassing",
  8324. height: math.unit(10000 * 1559 / 989, "miles")
  8325. },
  8326. {
  8327. name: "Galactic",
  8328. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8329. },
  8330. {
  8331. name: "Palmed Universe",
  8332. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8333. default: true
  8334. },
  8335. {
  8336. name: "Multiversal Matriarch",
  8337. height: math.unit(8.87e10, "yottameters")
  8338. },
  8339. {
  8340. name: "Void Mother",
  8341. height: math.unit(3.14e110, "yottaparsecs")
  8342. },
  8343. {
  8344. name: "Toying with Transcendence",
  8345. height: math.unit(1e307, "meters")
  8346. },
  8347. ]
  8348. ))
  8349. characterMakers.push(() => makeCharacter(
  8350. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8351. {
  8352. front: {
  8353. height: math.unit(17 + 1 / 12, "feet"),
  8354. weight: math.unit(476.2 * 5, "lbs"),
  8355. name: "Front",
  8356. image: {
  8357. source: "./media/characters/kuro-shi-uchū/front.svg",
  8358. extra: 2329 / 1835,
  8359. bottom: 0.02
  8360. }
  8361. },
  8362. },
  8363. [
  8364. {
  8365. name: "Micro",
  8366. height: math.unit(2, "inches")
  8367. },
  8368. {
  8369. name: "Normal",
  8370. height: math.unit(12, "meters")
  8371. },
  8372. {
  8373. name: "Planetary",
  8374. height: math.unit(0.00929, "AU"),
  8375. default: true
  8376. },
  8377. {
  8378. name: "Universal",
  8379. height: math.unit(20, "gigaparsecs")
  8380. },
  8381. ]
  8382. ))
  8383. characterMakers.push(() => makeCharacter(
  8384. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8385. {
  8386. front: {
  8387. height: math.unit(5 + 2 / 12, "feet"),
  8388. weight: math.unit(120, "lbs"),
  8389. name: "Front",
  8390. image: {
  8391. source: "./media/characters/katherine/front.svg",
  8392. extra: 2075 / 1969
  8393. }
  8394. },
  8395. dress: {
  8396. height: math.unit(5 + 2 / 12, "feet"),
  8397. weight: math.unit(120, "lbs"),
  8398. name: "Dress",
  8399. image: {
  8400. source: "./media/characters/katherine/dress.svg",
  8401. extra: 2258 / 2064
  8402. }
  8403. },
  8404. },
  8405. [
  8406. {
  8407. name: "Micro",
  8408. height: math.unit(1, "inches"),
  8409. default: true
  8410. },
  8411. {
  8412. name: "Normal",
  8413. height: math.unit(5 + 2 / 12, "feet")
  8414. },
  8415. {
  8416. name: "Macro",
  8417. height: math.unit(100, "meters")
  8418. },
  8419. {
  8420. name: "Megamacro",
  8421. height: math.unit(80, "miles")
  8422. },
  8423. ]
  8424. ))
  8425. characterMakers.push(() => makeCharacter(
  8426. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8427. {
  8428. front: {
  8429. height: math.unit(7 + 8 / 12, "feet"),
  8430. weight: math.unit(250, "lbs"),
  8431. name: "Front",
  8432. image: {
  8433. source: "./media/characters/yevis/front.svg",
  8434. extra: 1938 / 1755
  8435. }
  8436. }
  8437. },
  8438. [
  8439. {
  8440. name: "Mortal",
  8441. height: math.unit(7 + 8 / 12, "feet")
  8442. },
  8443. {
  8444. name: "Battle",
  8445. height: math.unit(25 + 11 / 12, "feet")
  8446. },
  8447. {
  8448. name: "Wrath",
  8449. height: math.unit(1654 + 11 / 12, "feet")
  8450. },
  8451. {
  8452. name: "Planet Destroyer",
  8453. height: math.unit(12000, "miles")
  8454. },
  8455. {
  8456. name: "Galaxy Conqueror",
  8457. height: math.unit(1.45, "zettameters"),
  8458. default: true
  8459. },
  8460. {
  8461. name: "Universal War",
  8462. height: math.unit(184, "gigaparsecs")
  8463. },
  8464. {
  8465. name: "Eternity War",
  8466. height: math.unit(1.98e55, "yottaparsecs")
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8472. {
  8473. front: {
  8474. height: math.unit(5 + 8 / 12, "feet"),
  8475. weight: math.unit(63, "kg"),
  8476. name: "Front",
  8477. image: {
  8478. source: "./media/characters/xavier/front.svg",
  8479. extra: 944 / 883
  8480. }
  8481. },
  8482. frontStretch: {
  8483. height: math.unit(5 + 8 / 12, "feet"),
  8484. weight: math.unit(63, "kg"),
  8485. name: "Stretching",
  8486. image: {
  8487. source: "./media/characters/xavier/front-stretch.svg",
  8488. extra: 962 / 820
  8489. }
  8490. },
  8491. },
  8492. [
  8493. {
  8494. name: "Normal",
  8495. height: math.unit(5 + 8 / 12, "feet")
  8496. },
  8497. {
  8498. name: "Macro",
  8499. height: math.unit(100, "meters"),
  8500. default: true
  8501. },
  8502. {
  8503. name: "McLargeHuge",
  8504. height: math.unit(10, "miles")
  8505. },
  8506. ]
  8507. ))
  8508. characterMakers.push(() => makeCharacter(
  8509. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8510. {
  8511. front: {
  8512. height: math.unit(5 + 5 / 12, "feet"),
  8513. weight: math.unit(150, "lb"),
  8514. name: "Front",
  8515. image: {
  8516. source: "./media/characters/joshii/front.svg",
  8517. extra: 765 / 653,
  8518. bottom: 51 / 816
  8519. }
  8520. },
  8521. foot: {
  8522. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8523. name: "Foot",
  8524. image: {
  8525. source: "./media/characters/joshii/foot.svg"
  8526. }
  8527. },
  8528. },
  8529. [
  8530. {
  8531. name: "Micro",
  8532. height: math.unit(2, "inches"),
  8533. default: true
  8534. },
  8535. {
  8536. name: "Normal",
  8537. height: math.unit(5 + 5 / 12, "feet")
  8538. },
  8539. {
  8540. name: "Macro",
  8541. height: math.unit(785, "feet")
  8542. },
  8543. {
  8544. name: "Megamacro",
  8545. height: math.unit(24.5, "miles")
  8546. },
  8547. ]
  8548. ))
  8549. characterMakers.push(() => makeCharacter(
  8550. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8551. {
  8552. front: {
  8553. height: math.unit(6, "feet"),
  8554. weight: math.unit(150, "lb"),
  8555. name: "Front",
  8556. image: {
  8557. source: "./media/characters/goddess-elizabeth/front.svg",
  8558. extra: 1800 / 1525,
  8559. bottom: 0.005
  8560. }
  8561. },
  8562. foot: {
  8563. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8564. name: "Foot",
  8565. image: {
  8566. source: "./media/characters/goddess-elizabeth/foot.svg"
  8567. }
  8568. },
  8569. mouth: {
  8570. height: math.unit(6, "feet"),
  8571. name: "Mouth",
  8572. image: {
  8573. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8574. }
  8575. },
  8576. },
  8577. [
  8578. {
  8579. name: "Micro",
  8580. height: math.unit(12, "feet")
  8581. },
  8582. {
  8583. name: "Normal",
  8584. height: math.unit(80, "miles"),
  8585. default: true
  8586. },
  8587. {
  8588. name: "Macro",
  8589. height: math.unit(15000, "parsecs")
  8590. },
  8591. ]
  8592. ))
  8593. characterMakers.push(() => makeCharacter(
  8594. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8595. {
  8596. front: {
  8597. height: math.unit(5 + 9 / 12, "feet"),
  8598. weight: math.unit(144, "lb"),
  8599. name: "Front",
  8600. image: {
  8601. source: "./media/characters/kara/front.svg"
  8602. }
  8603. },
  8604. feet: {
  8605. height: math.unit(6 / 6.765, "feet"),
  8606. name: "Kara's Feet",
  8607. rename: true,
  8608. image: {
  8609. source: "./media/characters/kara/feet.svg"
  8610. }
  8611. },
  8612. },
  8613. [
  8614. {
  8615. name: "Normal",
  8616. height: math.unit(5 + 9 / 12, "feet")
  8617. },
  8618. {
  8619. name: "Macro",
  8620. height: math.unit(174, "feet"),
  8621. default: true
  8622. },
  8623. ]
  8624. ))
  8625. characterMakers.push(() => makeCharacter(
  8626. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8627. {
  8628. front: {
  8629. height: math.unit(18, "feet"),
  8630. weight: math.unit(4050, "lb"),
  8631. name: "Front",
  8632. image: {
  8633. source: "./media/characters/tyrone/front.svg",
  8634. extra: 2405 / 2270,
  8635. bottom: 182 / 2587
  8636. }
  8637. },
  8638. },
  8639. [
  8640. {
  8641. name: "Normal",
  8642. height: math.unit(18, "feet"),
  8643. default: true
  8644. },
  8645. {
  8646. name: "Macro",
  8647. height: math.unit(300, "feet")
  8648. },
  8649. {
  8650. name: "Megamacro",
  8651. height: math.unit(15, "km")
  8652. },
  8653. {
  8654. name: "Gigamacro",
  8655. height: math.unit(500, "km")
  8656. },
  8657. {
  8658. name: "Teramacro",
  8659. height: math.unit(0.5, "gigameters")
  8660. },
  8661. {
  8662. name: "Omnimacro",
  8663. height: math.unit(1e252, "yottauniverse")
  8664. },
  8665. ]
  8666. ))
  8667. characterMakers.push(() => makeCharacter(
  8668. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8669. {
  8670. front: {
  8671. height: math.unit(7 + 8 / 12, "feet"),
  8672. weight: math.unit(120, "lb"),
  8673. name: "Front",
  8674. image: {
  8675. source: "./media/characters/danny/front.svg",
  8676. extra: 1490 / 1350
  8677. }
  8678. },
  8679. back: {
  8680. height: math.unit(7 + 8 / 12, "feet"),
  8681. weight: math.unit(120, "lb"),
  8682. name: "Back",
  8683. image: {
  8684. source: "./media/characters/danny/back.svg",
  8685. extra: 1490 / 1350
  8686. }
  8687. },
  8688. },
  8689. [
  8690. {
  8691. name: "Normal",
  8692. height: math.unit(7 + 8 / 12, "feet"),
  8693. default: true
  8694. },
  8695. ]
  8696. ))
  8697. characterMakers.push(() => makeCharacter(
  8698. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8699. {
  8700. front: {
  8701. height: math.unit(3.5, "inches"),
  8702. weight: math.unit(19, "grams"),
  8703. name: "Front",
  8704. image: {
  8705. source: "./media/characters/mallow/front.svg",
  8706. extra: 471 / 431
  8707. }
  8708. },
  8709. back: {
  8710. height: math.unit(3.5, "inches"),
  8711. weight: math.unit(19, "grams"),
  8712. name: "Back",
  8713. image: {
  8714. source: "./media/characters/mallow/back.svg",
  8715. extra: 471 / 431
  8716. }
  8717. },
  8718. },
  8719. [
  8720. {
  8721. name: "Normal",
  8722. height: math.unit(3.5, "inches"),
  8723. default: true
  8724. },
  8725. ]
  8726. ))
  8727. characterMakers.push(() => makeCharacter(
  8728. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8729. {
  8730. front: {
  8731. height: math.unit(9, "feet"),
  8732. weight: math.unit(230, "kg"),
  8733. name: "Front",
  8734. image: {
  8735. source: "./media/characters/starry-aqua/front.svg"
  8736. }
  8737. },
  8738. back: {
  8739. height: math.unit(9, "feet"),
  8740. weight: math.unit(230, "kg"),
  8741. name: "Back",
  8742. image: {
  8743. source: "./media/characters/starry-aqua/back.svg"
  8744. }
  8745. },
  8746. hand: {
  8747. height: math.unit(9 * 0.1168, "feet"),
  8748. name: "Hand",
  8749. image: {
  8750. source: "./media/characters/starry-aqua/hand.svg"
  8751. }
  8752. },
  8753. foot: {
  8754. height: math.unit(9 * 0.18, "feet"),
  8755. name: "Foot",
  8756. image: {
  8757. source: "./media/characters/starry-aqua/foot.svg"
  8758. }
  8759. }
  8760. },
  8761. [
  8762. {
  8763. name: "Micro",
  8764. height: math.unit(3, "inches")
  8765. },
  8766. {
  8767. name: "Normal",
  8768. height: math.unit(9, "feet")
  8769. },
  8770. {
  8771. name: "Macro",
  8772. height: math.unit(300, "feet"),
  8773. default: true
  8774. },
  8775. {
  8776. name: "Megamacro",
  8777. height: math.unit(3200, "feet")
  8778. }
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8783. {
  8784. front: {
  8785. height: math.unit(6, "feet"),
  8786. weight: math.unit(230, "lb"),
  8787. name: "Front",
  8788. image: {
  8789. source: "./media/characters/luka/front.svg",
  8790. extra: 1,
  8791. bottom: 0.025
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Normal",
  8798. height: math.unit(12 + 8 / 12, "feet"),
  8799. default: true
  8800. },
  8801. {
  8802. name: "Minimacro",
  8803. height: math.unit(20, "feet")
  8804. },
  8805. {
  8806. name: "Macro",
  8807. height: math.unit(250, "feet")
  8808. },
  8809. {
  8810. name: "Megamacro",
  8811. height: math.unit(5, "miles")
  8812. },
  8813. {
  8814. name: "Gigamacro",
  8815. height: math.unit(8000, "miles")
  8816. },
  8817. ]
  8818. ))
  8819. characterMakers.push(() => makeCharacter(
  8820. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8821. {
  8822. front: {
  8823. height: math.unit(6, "feet"),
  8824. weight: math.unit(150, "lb"),
  8825. name: "Front",
  8826. image: {
  8827. source: "./media/characters/natalie-nightring/front.svg",
  8828. extra: 1,
  8829. bottom: 0.06
  8830. }
  8831. },
  8832. },
  8833. [
  8834. {
  8835. name: "Uh Oh",
  8836. height: math.unit(0.1, "mm")
  8837. },
  8838. {
  8839. name: "Small",
  8840. height: math.unit(3, "inches")
  8841. },
  8842. {
  8843. name: "Human Scale",
  8844. height: math.unit(6, "feet")
  8845. },
  8846. {
  8847. name: "Librarian",
  8848. height: math.unit(50, "feet"),
  8849. default: true
  8850. },
  8851. {
  8852. name: "Immense",
  8853. height: math.unit(200, "miles")
  8854. },
  8855. ]
  8856. ))
  8857. characterMakers.push(() => makeCharacter(
  8858. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8859. {
  8860. front: {
  8861. height: math.unit(6, "feet"),
  8862. weight: math.unit(180, "lbs"),
  8863. name: "Front",
  8864. image: {
  8865. source: "./media/characters/danni-rosie/front.svg",
  8866. extra: 1260 / 1128,
  8867. bottom: 0.022
  8868. }
  8869. },
  8870. },
  8871. [
  8872. {
  8873. name: "Micro",
  8874. height: math.unit(2, "inches"),
  8875. default: true
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8881. {
  8882. front: {
  8883. height: math.unit(5 + 9 / 12, "feet"),
  8884. weight: math.unit(220, "lb"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/samantha-kruse/front.svg",
  8888. extra: (985 / 935),
  8889. bottom: 0.03
  8890. }
  8891. },
  8892. frontUndressed: {
  8893. height: math.unit(5 + 9 / 12, "feet"),
  8894. weight: math.unit(220, "lb"),
  8895. name: "Front (Undressed)",
  8896. image: {
  8897. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8898. extra: (973 / 923),
  8899. bottom: 0.025
  8900. }
  8901. },
  8902. fat: {
  8903. height: math.unit(5 + 9 / 12, "feet"),
  8904. weight: math.unit(900, "lb"),
  8905. name: "Front (Fat)",
  8906. image: {
  8907. source: "./media/characters/samantha-kruse/fat.svg",
  8908. extra: 2688 / 2561
  8909. }
  8910. },
  8911. },
  8912. [
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(5 + 9 / 12, "feet"),
  8916. default: true
  8917. }
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8922. {
  8923. back: {
  8924. height: math.unit(5 + 4 / 12, "feet"),
  8925. weight: math.unit(4963, "lb"),
  8926. name: "Back",
  8927. image: {
  8928. source: "./media/characters/amelia-rosie/back.svg",
  8929. extra: 1113 / 963,
  8930. bottom: 0.01
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Level 0",
  8937. height: math.unit(5 + 4 / 12, "feet")
  8938. },
  8939. {
  8940. name: "Level 1",
  8941. height: math.unit(164597, "feet"),
  8942. default: true
  8943. },
  8944. {
  8945. name: "Level 2",
  8946. height: math.unit(956243, "miles")
  8947. },
  8948. {
  8949. name: "Level 3",
  8950. height: math.unit(29421709423, "miles")
  8951. },
  8952. {
  8953. name: "Level 4",
  8954. height: math.unit(154, "lightyears")
  8955. },
  8956. {
  8957. name: "Level 5",
  8958. height: math.unit(4738272, "lightyears")
  8959. },
  8960. {
  8961. name: "Level 6",
  8962. height: math.unit(145787152896, "lightyears")
  8963. },
  8964. ]
  8965. ))
  8966. characterMakers.push(() => makeCharacter(
  8967. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8968. {
  8969. front: {
  8970. height: math.unit(5 + 11 / 12, "feet"),
  8971. weight: math.unit(65, "kg"),
  8972. name: "Front",
  8973. image: {
  8974. source: "./media/characters/rook-kitara/front.svg",
  8975. extra: 1347 / 1274,
  8976. bottom: 0.005
  8977. }
  8978. },
  8979. },
  8980. [
  8981. {
  8982. name: "Totally Unfair",
  8983. height: math.unit(1.8, "mm")
  8984. },
  8985. {
  8986. name: "Lap Rookie",
  8987. height: math.unit(1.4, "feet")
  8988. },
  8989. {
  8990. name: "Normal",
  8991. height: math.unit(5 + 11 / 12, "feet"),
  8992. default: true
  8993. },
  8994. {
  8995. name: "How Did This Happen",
  8996. height: math.unit(80, "miles")
  8997. }
  8998. ]
  8999. ))
  9000. characterMakers.push(() => makeCharacter(
  9001. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9002. {
  9003. front: {
  9004. height: math.unit(7, "feet"),
  9005. weight: math.unit(300, "lb"),
  9006. name: "Front",
  9007. image: {
  9008. source: "./media/characters/pisces/front.svg",
  9009. extra: 2255 / 2115,
  9010. bottom: 0.03
  9011. }
  9012. },
  9013. back: {
  9014. height: math.unit(7, "feet"),
  9015. weight: math.unit(300, "lb"),
  9016. name: "Back",
  9017. image: {
  9018. source: "./media/characters/pisces/back.svg",
  9019. extra: 2146 / 2055,
  9020. bottom: 0.04
  9021. }
  9022. },
  9023. },
  9024. [
  9025. {
  9026. name: "Normal",
  9027. height: math.unit(7, "feet"),
  9028. default: true
  9029. },
  9030. {
  9031. name: "Swimming Pool",
  9032. height: math.unit(12.2, "meters")
  9033. },
  9034. {
  9035. name: "Olympic Swimming Pool",
  9036. height: math.unit(56.3, "meters")
  9037. },
  9038. {
  9039. name: "Lake Superior",
  9040. height: math.unit(93900, "meters")
  9041. },
  9042. {
  9043. name: "Mediterranean Sea",
  9044. height: math.unit(644457, "meters")
  9045. },
  9046. {
  9047. name: "World's Oceans",
  9048. height: math.unit(4567491, "meters")
  9049. },
  9050. ]
  9051. ))
  9052. characterMakers.push(() => makeCharacter(
  9053. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9054. {
  9055. front: {
  9056. height: math.unit(2.3, "meters"),
  9057. weight: math.unit(120, "kg"),
  9058. name: "Front",
  9059. image: {
  9060. source: "./media/characters/zelas/front.svg"
  9061. }
  9062. },
  9063. side: {
  9064. height: math.unit(2.3, "meters"),
  9065. weight: math.unit(120, "kg"),
  9066. name: "Side",
  9067. image: {
  9068. source: "./media/characters/zelas/side.svg"
  9069. }
  9070. },
  9071. back: {
  9072. height: math.unit(2.3, "meters"),
  9073. weight: math.unit(120, "kg"),
  9074. name: "Back",
  9075. image: {
  9076. source: "./media/characters/zelas/back.svg"
  9077. }
  9078. },
  9079. foot: {
  9080. height: math.unit(1.116, "feet"),
  9081. name: "Foot",
  9082. image: {
  9083. source: "./media/characters/zelas/foot.svg"
  9084. }
  9085. },
  9086. },
  9087. [
  9088. {
  9089. name: "Normal",
  9090. height: math.unit(2.3, "meters")
  9091. },
  9092. {
  9093. name: "Macro",
  9094. height: math.unit(30, "meters"),
  9095. default: true
  9096. },
  9097. ]
  9098. ))
  9099. characterMakers.push(() => makeCharacter(
  9100. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9101. {
  9102. front: {
  9103. height: math.unit(1, "inch"),
  9104. weight: math.unit(0.21, "grams"),
  9105. name: "Front",
  9106. image: {
  9107. source: "./media/characters/talbot/front.svg",
  9108. extra: 594 / 544
  9109. }
  9110. },
  9111. },
  9112. [
  9113. {
  9114. name: "Micro",
  9115. height: math.unit(1, "inch"),
  9116. default: true
  9117. },
  9118. ]
  9119. ))
  9120. characterMakers.push(() => makeCharacter(
  9121. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9122. {
  9123. front: {
  9124. height: math.unit(3 + 3 / 12, "feet"),
  9125. weight: math.unit(51.8, "lb"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/fliss/front.svg",
  9129. extra: 840 / 640
  9130. }
  9131. },
  9132. },
  9133. [
  9134. {
  9135. name: "Teeny Tiny",
  9136. height: math.unit(1, "mm")
  9137. },
  9138. {
  9139. name: "Small",
  9140. height: math.unit(1, "inch"),
  9141. default: true
  9142. },
  9143. {
  9144. name: "Standard Sylveon",
  9145. height: math.unit(3 + 3 / 12, "feet")
  9146. },
  9147. {
  9148. name: "Large Nuisance",
  9149. height: math.unit(33, "feet")
  9150. },
  9151. {
  9152. name: "City Filler",
  9153. height: math.unit(3000, "feet")
  9154. },
  9155. {
  9156. name: "New Horizon",
  9157. height: math.unit(6000, "miles")
  9158. },
  9159. ]
  9160. ))
  9161. characterMakers.push(() => makeCharacter(
  9162. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9163. {
  9164. front: {
  9165. height: math.unit(5, "cm"),
  9166. weight: math.unit(1.94, "g"),
  9167. name: "Front",
  9168. image: {
  9169. source: "./media/characters/fleta/front.svg",
  9170. extra: 835 / 803
  9171. }
  9172. },
  9173. back: {
  9174. height: math.unit(5, "cm"),
  9175. weight: math.unit(1.94, "g"),
  9176. name: "Back",
  9177. image: {
  9178. source: "./media/characters/fleta/back.svg",
  9179. extra: 835 / 803
  9180. }
  9181. },
  9182. },
  9183. [
  9184. {
  9185. name: "Micro",
  9186. height: math.unit(5, "cm"),
  9187. default: true
  9188. },
  9189. ]
  9190. ))
  9191. characterMakers.push(() => makeCharacter(
  9192. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9193. {
  9194. front: {
  9195. height: math.unit(6, "feet"),
  9196. weight: math.unit(225, "lb"),
  9197. name: "Front",
  9198. image: {
  9199. source: "./media/characters/dominic/front.svg",
  9200. extra: 1770 / 1620,
  9201. bottom: 0.025
  9202. }
  9203. },
  9204. back: {
  9205. height: math.unit(6, "feet"),
  9206. weight: math.unit(225, "lb"),
  9207. name: "Back",
  9208. image: {
  9209. source: "./media/characters/dominic/back.svg",
  9210. extra: 1745 / 1620,
  9211. bottom: 0.065
  9212. }
  9213. },
  9214. },
  9215. [
  9216. {
  9217. name: "Nano",
  9218. height: math.unit(0.1, "mm")
  9219. },
  9220. {
  9221. name: "Micro-",
  9222. height: math.unit(1, "mm")
  9223. },
  9224. {
  9225. name: "Micro",
  9226. height: math.unit(4, "inches")
  9227. },
  9228. {
  9229. name: "Normal",
  9230. height: math.unit(6 + 4 / 12, "feet"),
  9231. default: true
  9232. },
  9233. {
  9234. name: "Macro",
  9235. height: math.unit(115, "feet")
  9236. },
  9237. {
  9238. name: "Macro+",
  9239. height: math.unit(955, "feet")
  9240. },
  9241. {
  9242. name: "Megamacro",
  9243. height: math.unit(8990, "feet")
  9244. },
  9245. {
  9246. name: "Gigmacro",
  9247. height: math.unit(9310, "miles")
  9248. },
  9249. {
  9250. name: "Teramacro",
  9251. height: math.unit(1567005010, "miles")
  9252. },
  9253. {
  9254. name: "Examacro",
  9255. height: math.unit(1425, "parsecs")
  9256. },
  9257. ]
  9258. ))
  9259. characterMakers.push(() => makeCharacter(
  9260. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9261. {
  9262. front: {
  9263. height: math.unit(400, "feet"),
  9264. weight: math.unit(44444444, "lb"),
  9265. name: "Front",
  9266. image: {
  9267. source: "./media/characters/major-colonel/front.svg"
  9268. }
  9269. },
  9270. back: {
  9271. height: math.unit(400, "feet"),
  9272. weight: math.unit(44444444, "lb"),
  9273. name: "Back",
  9274. image: {
  9275. source: "./media/characters/major-colonel/back.svg"
  9276. }
  9277. },
  9278. },
  9279. [
  9280. {
  9281. name: "Macro",
  9282. height: math.unit(400, "feet"),
  9283. default: true
  9284. },
  9285. ]
  9286. ))
  9287. characterMakers.push(() => makeCharacter(
  9288. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9289. {
  9290. catFront: {
  9291. height: math.unit(6, "feet"),
  9292. weight: math.unit(120, "lb"),
  9293. name: "Front (Cat Side)",
  9294. image: {
  9295. source: "./media/characters/axel-lycan/cat-front.svg",
  9296. extra: 430 / 402,
  9297. bottom: 43 / 472.35
  9298. }
  9299. },
  9300. catBack: {
  9301. height: math.unit(6, "feet"),
  9302. weight: math.unit(120, "lb"),
  9303. name: "Back (Cat Side)",
  9304. image: {
  9305. source: "./media/characters/axel-lycan/cat-back.svg",
  9306. extra: 447 / 419,
  9307. bottom: 23.3 / 469
  9308. }
  9309. },
  9310. wolfFront: {
  9311. height: math.unit(6, "feet"),
  9312. weight: math.unit(120, "lb"),
  9313. name: "Front (Wolf Side)",
  9314. image: {
  9315. source: "./media/characters/axel-lycan/wolf-front.svg",
  9316. extra: 485 / 456,
  9317. bottom: 19 / 504
  9318. }
  9319. },
  9320. wolfBack: {
  9321. height: math.unit(6, "feet"),
  9322. weight: math.unit(120, "lb"),
  9323. name: "Back (Wolf Side)",
  9324. image: {
  9325. source: "./media/characters/axel-lycan/wolf-back.svg",
  9326. extra: 475 / 438,
  9327. bottom: 39.2 / 514
  9328. }
  9329. },
  9330. },
  9331. [
  9332. {
  9333. name: "Macro",
  9334. height: math.unit(1, "km"),
  9335. default: true
  9336. },
  9337. ]
  9338. ))
  9339. characterMakers.push(() => makeCharacter(
  9340. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9341. {
  9342. front: {
  9343. height: math.unit(5 + 9 / 12, "feet"),
  9344. weight: math.unit(175, "lb"),
  9345. name: "Front",
  9346. image: {
  9347. source: "./media/characters/vanrel-hyena/front.svg",
  9348. extra: 1086 / 1010,
  9349. bottom: 0.04
  9350. }
  9351. },
  9352. },
  9353. [
  9354. {
  9355. name: "Normal",
  9356. height: math.unit(5 + 9 / 12, "feet"),
  9357. default: true
  9358. },
  9359. ]
  9360. ))
  9361. characterMakers.push(() => makeCharacter(
  9362. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9363. {
  9364. front: {
  9365. height: math.unit(6, "feet"),
  9366. weight: math.unit(103, "lb"),
  9367. name: "Front",
  9368. image: {
  9369. source: "./media/characters/abbott-absol/front.svg",
  9370. extra: 2010 / 1842
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Megamicro",
  9377. height: math.unit(0.1, "mm")
  9378. },
  9379. {
  9380. name: "Micro",
  9381. height: math.unit(1, "inch")
  9382. },
  9383. {
  9384. name: "Normal",
  9385. height: math.unit(6, "feet"),
  9386. default: true
  9387. },
  9388. ]
  9389. ))
  9390. characterMakers.push(() => makeCharacter(
  9391. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9392. {
  9393. front: {
  9394. height: math.unit(6, "feet"),
  9395. weight: math.unit(264, "lb"),
  9396. name: "Front",
  9397. image: {
  9398. source: "./media/characters/hector/front.svg",
  9399. extra: 2280 / 2130,
  9400. bottom: 0.07
  9401. }
  9402. },
  9403. },
  9404. [
  9405. {
  9406. name: "Normal",
  9407. height: math.unit(12.25, "foot"),
  9408. default: true
  9409. },
  9410. {
  9411. name: "Macro",
  9412. height: math.unit(160, "feet")
  9413. },
  9414. ]
  9415. ))
  9416. characterMakers.push(() => makeCharacter(
  9417. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9418. {
  9419. front: {
  9420. height: math.unit(6, "feet"),
  9421. weight: math.unit(150, "lb"),
  9422. name: "Front",
  9423. image: {
  9424. source: "./media/characters/sal/front.svg",
  9425. extra: 1846 / 1699,
  9426. bottom: 0.04
  9427. }
  9428. },
  9429. },
  9430. [
  9431. {
  9432. name: "Megamacro",
  9433. height: math.unit(10, "miles"),
  9434. default: true
  9435. },
  9436. ]
  9437. ))
  9438. characterMakers.push(() => makeCharacter(
  9439. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9440. {
  9441. front: {
  9442. height: math.unit(3, "meters"),
  9443. weight: math.unit(450, "kg"),
  9444. name: "front",
  9445. image: {
  9446. source: "./media/characters/ranger/front.svg",
  9447. extra: 2401 / 2243,
  9448. bottom: 0.05
  9449. }
  9450. },
  9451. },
  9452. [
  9453. {
  9454. name: "Normal",
  9455. height: math.unit(3, "meters"),
  9456. default: true
  9457. },
  9458. ]
  9459. ))
  9460. characterMakers.push(() => makeCharacter(
  9461. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9462. {
  9463. front: {
  9464. height: math.unit(14, "feet"),
  9465. weight: math.unit(800, "kg"),
  9466. name: "Front",
  9467. image: {
  9468. source: "./media/characters/theresa/front.svg",
  9469. extra: 3575 / 3346,
  9470. bottom: 0.03
  9471. }
  9472. },
  9473. },
  9474. [
  9475. {
  9476. name: "Normal",
  9477. height: math.unit(14, "feet"),
  9478. default: true
  9479. },
  9480. ]
  9481. ))
  9482. characterMakers.push(() => makeCharacter(
  9483. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9484. {
  9485. front: {
  9486. height: math.unit(6, "feet"),
  9487. weight: math.unit(3, "kg"),
  9488. name: "Front",
  9489. image: {
  9490. source: "./media/characters/ine/front.svg",
  9491. extra: 678 / 539,
  9492. bottom: 0.023
  9493. }
  9494. },
  9495. },
  9496. [
  9497. {
  9498. name: "Normal",
  9499. height: math.unit(2.265, "feet"),
  9500. default: true
  9501. },
  9502. ]
  9503. ))
  9504. characterMakers.push(() => makeCharacter(
  9505. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9506. {
  9507. front: {
  9508. height: math.unit(5, "feet"),
  9509. weight: math.unit(30, "kg"),
  9510. name: "Front",
  9511. image: {
  9512. source: "./media/characters/vial/front.svg",
  9513. extra: 1365 / 1277,
  9514. bottom: 0.04
  9515. }
  9516. },
  9517. },
  9518. [
  9519. {
  9520. name: "Normal",
  9521. height: math.unit(5, "feet"),
  9522. default: true
  9523. },
  9524. ]
  9525. ))
  9526. characterMakers.push(() => makeCharacter(
  9527. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9528. {
  9529. side: {
  9530. height: math.unit(3.4, "meters"),
  9531. weight: math.unit(1000, "lb"),
  9532. name: "Side",
  9533. image: {
  9534. source: "./media/characters/rovoska/side.svg",
  9535. extra: 4403 / 1515
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(3.4, "meters"),
  9543. default: true
  9544. },
  9545. ]
  9546. ))
  9547. characterMakers.push(() => makeCharacter(
  9548. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9549. {
  9550. front: {
  9551. height: math.unit(8, "feet"),
  9552. weight: math.unit(315, "lb"),
  9553. name: "Front",
  9554. image: {
  9555. source: "./media/characters/gunner-rotthbauer/front.svg"
  9556. }
  9557. },
  9558. back: {
  9559. height: math.unit(8, "feet"),
  9560. weight: math.unit(315, "lb"),
  9561. name: "Back",
  9562. image: {
  9563. source: "./media/characters/gunner-rotthbauer/back.svg"
  9564. }
  9565. },
  9566. },
  9567. [
  9568. {
  9569. name: "Micro",
  9570. height: math.unit(3.5, "inches")
  9571. },
  9572. {
  9573. name: "Normal",
  9574. height: math.unit(8, "feet"),
  9575. default: true
  9576. },
  9577. {
  9578. name: "Macro",
  9579. height: math.unit(250, "feet")
  9580. },
  9581. {
  9582. name: "Megamacro",
  9583. height: math.unit(1, "AU")
  9584. },
  9585. ]
  9586. ))
  9587. characterMakers.push(() => makeCharacter(
  9588. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9589. {
  9590. front: {
  9591. height: math.unit(5 + 5 / 12, "feet"),
  9592. weight: math.unit(140, "lb"),
  9593. name: "Front",
  9594. image: {
  9595. source: "./media/characters/allatia/front.svg",
  9596. extra: 1227 / 1180,
  9597. bottom: 0.027
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Normal",
  9604. height: math.unit(5 + 5 / 12, "feet")
  9605. },
  9606. {
  9607. name: "Macro",
  9608. height: math.unit(250, "feet"),
  9609. default: true
  9610. },
  9611. {
  9612. name: "Megamacro",
  9613. height: math.unit(8, "miles")
  9614. }
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9619. {
  9620. front: {
  9621. height: math.unit(6, "feet"),
  9622. weight: math.unit(120, "lb"),
  9623. name: "Front",
  9624. image: {
  9625. source: "./media/characters/tene/front.svg",
  9626. extra: 1728 / 1578,
  9627. bottom: 0.022
  9628. }
  9629. },
  9630. stomping: {
  9631. height: math.unit(2.025, "meters"),
  9632. weight: math.unit(120, "lb"),
  9633. name: "Stomping",
  9634. image: {
  9635. source: "./media/characters/tene/stomping.svg",
  9636. extra: 938 / 873,
  9637. bottom: 0.01
  9638. }
  9639. },
  9640. sitting: {
  9641. height: math.unit(1, "meter"),
  9642. weight: math.unit(120, "lb"),
  9643. name: "Sitting",
  9644. image: {
  9645. source: "./media/characters/tene/sitting.svg",
  9646. extra: 437 / 415,
  9647. bottom: 0.1
  9648. }
  9649. },
  9650. feral: {
  9651. height: math.unit(3.9, "feet"),
  9652. weight: math.unit(250, "lb"),
  9653. name: "Feral",
  9654. image: {
  9655. source: "./media/characters/tene/feral.svg",
  9656. extra: 717 / 458,
  9657. bottom: 0.179
  9658. }
  9659. },
  9660. },
  9661. [
  9662. {
  9663. name: "Normal",
  9664. height: math.unit(6, "feet")
  9665. },
  9666. {
  9667. name: "Macro",
  9668. height: math.unit(300, "feet"),
  9669. default: true
  9670. },
  9671. {
  9672. name: "Megamacro",
  9673. height: math.unit(5, "miles")
  9674. },
  9675. ]
  9676. ))
  9677. characterMakers.push(() => makeCharacter(
  9678. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9679. {
  9680. side: {
  9681. height: math.unit(6, "feet"),
  9682. name: "Side",
  9683. image: {
  9684. source: "./media/characters/evander/side.svg",
  9685. extra: 877 / 477
  9686. }
  9687. },
  9688. },
  9689. [
  9690. {
  9691. name: "Normal",
  9692. height: math.unit(0.83, "meters"),
  9693. default: true
  9694. },
  9695. ]
  9696. ))
  9697. characterMakers.push(() => makeCharacter(
  9698. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9699. {
  9700. front: {
  9701. height: math.unit(12, "feet"),
  9702. weight: math.unit(1000, "lb"),
  9703. name: "Front",
  9704. image: {
  9705. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9706. extra: 1762 / 1611
  9707. }
  9708. },
  9709. back: {
  9710. height: math.unit(12, "feet"),
  9711. weight: math.unit(1000, "lb"),
  9712. name: "Back",
  9713. image: {
  9714. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9715. extra: 1762 / 1611
  9716. }
  9717. },
  9718. },
  9719. [
  9720. {
  9721. name: "Normal",
  9722. height: math.unit(12, "feet"),
  9723. default: true
  9724. },
  9725. {
  9726. name: "Kaiju",
  9727. height: math.unit(150, "feet")
  9728. },
  9729. ]
  9730. ))
  9731. characterMakers.push(() => makeCharacter(
  9732. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9733. {
  9734. front: {
  9735. height: math.unit(6, "feet"),
  9736. weight: math.unit(150, "lb"),
  9737. name: "Front",
  9738. image: {
  9739. source: "./media/characters/zero-alurus/front.svg"
  9740. }
  9741. },
  9742. back: {
  9743. height: math.unit(6, "feet"),
  9744. weight: math.unit(150, "lb"),
  9745. name: "Back",
  9746. image: {
  9747. source: "./media/characters/zero-alurus/back.svg"
  9748. }
  9749. },
  9750. },
  9751. [
  9752. {
  9753. name: "Normal",
  9754. height: math.unit(5 + 10 / 12, "feet")
  9755. },
  9756. {
  9757. name: "Macro",
  9758. height: math.unit(60, "feet"),
  9759. default: true
  9760. },
  9761. {
  9762. name: "Macro+",
  9763. height: math.unit(450, "feet")
  9764. },
  9765. ]
  9766. ))
  9767. characterMakers.push(() => makeCharacter(
  9768. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9769. {
  9770. front: {
  9771. height: math.unit(6, "feet"),
  9772. weight: math.unit(200, "lb"),
  9773. name: "Front",
  9774. image: {
  9775. source: "./media/characters/mega-shi/front.svg",
  9776. extra: 1279 / 1250,
  9777. bottom: 0.02
  9778. }
  9779. },
  9780. back: {
  9781. height: math.unit(6, "feet"),
  9782. weight: math.unit(200, "lb"),
  9783. name: "Back",
  9784. image: {
  9785. source: "./media/characters/mega-shi/back.svg",
  9786. extra: 1279 / 1250,
  9787. bottom: 0.02
  9788. }
  9789. },
  9790. },
  9791. [
  9792. {
  9793. name: "Micro",
  9794. height: math.unit(16 + 6 / 12, "feet")
  9795. },
  9796. {
  9797. name: "Third Dimension",
  9798. height: math.unit(40, "meters")
  9799. },
  9800. {
  9801. name: "Normal",
  9802. height: math.unit(660, "feet"),
  9803. default: true
  9804. },
  9805. {
  9806. name: "Megamacro",
  9807. height: math.unit(10, "miles")
  9808. },
  9809. {
  9810. name: "Planetary Launch",
  9811. height: math.unit(500, "miles")
  9812. },
  9813. {
  9814. name: "Interstellar",
  9815. height: math.unit(1e9, "miles")
  9816. },
  9817. {
  9818. name: "Leaving the Universe",
  9819. height: math.unit(1, "gigaparsec")
  9820. },
  9821. {
  9822. name: "Travelling Universes",
  9823. height: math.unit(30e15, "parsecs")
  9824. },
  9825. ]
  9826. ))
  9827. characterMakers.push(() => makeCharacter(
  9828. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9829. {
  9830. front: {
  9831. height: math.unit(6, "feet"),
  9832. weight: math.unit(150, "lb"),
  9833. name: "Front",
  9834. image: {
  9835. source: "./media/characters/odyssey/front.svg",
  9836. extra: 1782 / 1582,
  9837. bottom: 0.01
  9838. }
  9839. },
  9840. side: {
  9841. height: math.unit(5.7, "feet"),
  9842. weight: math.unit(140, "lb"),
  9843. name: "Side",
  9844. image: {
  9845. source: "./media/characters/odyssey/side.svg",
  9846. extra: 6462 / 5700
  9847. }
  9848. },
  9849. },
  9850. [
  9851. {
  9852. name: "Normal",
  9853. height: math.unit(5 + 4 / 12, "feet")
  9854. },
  9855. {
  9856. name: "Macro",
  9857. height: math.unit(1, "km")
  9858. },
  9859. {
  9860. name: "Megamacro",
  9861. height: math.unit(3000, "km")
  9862. },
  9863. {
  9864. name: "Gigamacro",
  9865. height: math.unit(1, "AU"),
  9866. default: true
  9867. },
  9868. {
  9869. name: "Omniversal",
  9870. height: math.unit(100e14, "lightyears")
  9871. },
  9872. ]
  9873. ))
  9874. characterMakers.push(() => makeCharacter(
  9875. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9876. {
  9877. front: {
  9878. height: math.unit(6, "feet"),
  9879. weight: math.unit(300, "lb"),
  9880. name: "Front",
  9881. image: {
  9882. source: "./media/characters/mekuto/front.svg",
  9883. extra: 921 / 832,
  9884. bottom: 0.03
  9885. }
  9886. },
  9887. hand: {
  9888. height: math.unit(6 / 10.24, "feet"),
  9889. name: "Hand",
  9890. image: {
  9891. source: "./media/characters/mekuto/hand.svg"
  9892. }
  9893. },
  9894. foot: {
  9895. height: math.unit(6 / 5.05, "feet"),
  9896. name: "Foot",
  9897. image: {
  9898. source: "./media/characters/mekuto/foot.svg"
  9899. }
  9900. },
  9901. },
  9902. [
  9903. {
  9904. name: "Minimicro",
  9905. height: math.unit(0.2, "inches")
  9906. },
  9907. {
  9908. name: "Micro",
  9909. height: math.unit(1.5, "inches")
  9910. },
  9911. {
  9912. name: "Normal",
  9913. height: math.unit(5 + 11 / 12, "feet"),
  9914. default: true
  9915. },
  9916. {
  9917. name: "Minimacro",
  9918. height: math.unit(17 + 9 / 12, "feet")
  9919. },
  9920. {
  9921. name: "Macro",
  9922. height: math.unit(177.5, "feet")
  9923. },
  9924. {
  9925. name: "Megamacro",
  9926. height: math.unit(152, "miles")
  9927. },
  9928. ]
  9929. ))
  9930. characterMakers.push(() => makeCharacter(
  9931. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9932. {
  9933. front: {
  9934. height: math.unit(6.5, "inches"),
  9935. weight: math.unit(13, "oz"),
  9936. name: "Front",
  9937. image: {
  9938. source: "./media/characters/dafydd-tomos/front.svg",
  9939. extra: 2990 / 2603,
  9940. bottom: 0.03
  9941. }
  9942. },
  9943. },
  9944. [
  9945. {
  9946. name: "Micro",
  9947. height: math.unit(6.5, "inches"),
  9948. default: true
  9949. },
  9950. ]
  9951. ))
  9952. characterMakers.push(() => makeCharacter(
  9953. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9954. {
  9955. front: {
  9956. height: math.unit(6, "feet"),
  9957. weight: math.unit(150, "lb"),
  9958. name: "Front",
  9959. image: {
  9960. source: "./media/characters/splinter/front.svg",
  9961. extra: 2990 / 2882,
  9962. bottom: 0.04
  9963. }
  9964. },
  9965. back: {
  9966. height: math.unit(6, "feet"),
  9967. weight: math.unit(150, "lb"),
  9968. name: "Back",
  9969. image: {
  9970. source: "./media/characters/splinter/back.svg",
  9971. extra: 2990 / 2882,
  9972. bottom: 0.04
  9973. }
  9974. },
  9975. },
  9976. [
  9977. {
  9978. name: "Normal",
  9979. height: math.unit(6, "feet")
  9980. },
  9981. {
  9982. name: "Macro",
  9983. height: math.unit(230, "meters"),
  9984. default: true
  9985. },
  9986. ]
  9987. ))
  9988. characterMakers.push(() => makeCharacter(
  9989. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9990. {
  9991. front: {
  9992. height: math.unit(4 + 10 / 12, "feet"),
  9993. weight: math.unit(480, "lb"),
  9994. name: "Front",
  9995. image: {
  9996. source: "./media/characters/snow-gabumon/front.svg",
  9997. extra: 1140 / 963,
  9998. bottom: 0.058
  9999. }
  10000. },
  10001. back: {
  10002. height: math.unit(4 + 10 / 12, "feet"),
  10003. weight: math.unit(480, "lb"),
  10004. name: "Back",
  10005. image: {
  10006. source: "./media/characters/snow-gabumon/back.svg",
  10007. extra: 1115 / 962,
  10008. bottom: 0.041
  10009. }
  10010. },
  10011. frontUndresed: {
  10012. height: math.unit(4 + 10 / 12, "feet"),
  10013. weight: math.unit(480, "lb"),
  10014. name: "Front (Undressed)",
  10015. image: {
  10016. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10017. extra: 1061 / 960,
  10018. bottom: 0.045
  10019. }
  10020. },
  10021. },
  10022. [
  10023. {
  10024. name: "Micro",
  10025. height: math.unit(1, "inch")
  10026. },
  10027. {
  10028. name: "Normal",
  10029. height: math.unit(4 + 10 / 12, "feet"),
  10030. default: true
  10031. },
  10032. {
  10033. name: "Macro",
  10034. height: math.unit(200, "feet")
  10035. },
  10036. {
  10037. name: "Megamacro",
  10038. height: math.unit(120, "miles")
  10039. },
  10040. {
  10041. name: "Gigamacro",
  10042. height: math.unit(9800, "miles")
  10043. },
  10044. ]
  10045. ))
  10046. characterMakers.push(() => makeCharacter(
  10047. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10048. {
  10049. front: {
  10050. height: math.unit(1.7, "meters"),
  10051. weight: math.unit(140, "lb"),
  10052. name: "Front",
  10053. image: {
  10054. source: "./media/characters/moody/front.svg",
  10055. extra: 3226 / 3007,
  10056. bottom: 0.087
  10057. }
  10058. },
  10059. },
  10060. [
  10061. {
  10062. name: "Micro",
  10063. height: math.unit(1, "mm")
  10064. },
  10065. {
  10066. name: "Normal",
  10067. height: math.unit(1.7, "meters"),
  10068. default: true
  10069. },
  10070. {
  10071. name: "Macro",
  10072. height: math.unit(80, "meters")
  10073. },
  10074. {
  10075. name: "Macro+",
  10076. height: math.unit(500, "meters")
  10077. },
  10078. ]
  10079. ))
  10080. characterMakers.push(() => makeCharacter(
  10081. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10082. {
  10083. front: {
  10084. height: math.unit(6, "feet"),
  10085. weight: math.unit(150, "lb"),
  10086. name: "Front",
  10087. image: {
  10088. source: "./media/characters/zyas/front.svg",
  10089. extra: 1180 / 1120,
  10090. bottom: 0.045
  10091. }
  10092. },
  10093. },
  10094. [
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(10, "feet"),
  10098. default: true
  10099. },
  10100. {
  10101. name: "Macro",
  10102. height: math.unit(500, "feet")
  10103. },
  10104. {
  10105. name: "Megamacro",
  10106. height: math.unit(5, "miles")
  10107. },
  10108. {
  10109. name: "Teramacro",
  10110. height: math.unit(150000, "miles")
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(6, "feet"),
  10119. weight: math.unit(150, "lb"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/cuon/front.svg",
  10123. extra: 1390 / 1320,
  10124. bottom: 0.008
  10125. }
  10126. },
  10127. },
  10128. [
  10129. {
  10130. name: "Micro",
  10131. height: math.unit(3, "inches")
  10132. },
  10133. {
  10134. name: "Normal",
  10135. height: math.unit(18 + 9 / 12, "feet"),
  10136. default: true
  10137. },
  10138. {
  10139. name: "Macro",
  10140. height: math.unit(360, "feet")
  10141. },
  10142. {
  10143. name: "Megamacro",
  10144. height: math.unit(360, "miles")
  10145. },
  10146. ]
  10147. ))
  10148. characterMakers.push(() => makeCharacter(
  10149. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10150. {
  10151. front: {
  10152. height: math.unit(2.4, "meters"),
  10153. weight: math.unit(70, "kg"),
  10154. name: "Front",
  10155. image: {
  10156. source: "./media/characters/nyanuxk/front.svg",
  10157. extra: 1172 / 1084,
  10158. bottom: 0.065
  10159. }
  10160. },
  10161. side: {
  10162. height: math.unit(2.4, "meters"),
  10163. weight: math.unit(70, "kg"),
  10164. name: "Side",
  10165. image: {
  10166. source: "./media/characters/nyanuxk/side.svg",
  10167. extra: 1190 / 1132,
  10168. bottom: 0.007
  10169. }
  10170. },
  10171. back: {
  10172. height: math.unit(2.4, "meters"),
  10173. weight: math.unit(70, "kg"),
  10174. name: "Back",
  10175. image: {
  10176. source: "./media/characters/nyanuxk/back.svg",
  10177. extra: 1200 / 1141,
  10178. bottom: 0.015
  10179. }
  10180. },
  10181. foot: {
  10182. height: math.unit(0.52, "meters"),
  10183. name: "Foot",
  10184. image: {
  10185. source: "./media/characters/nyanuxk/foot.svg"
  10186. }
  10187. },
  10188. },
  10189. [
  10190. {
  10191. name: "Micro",
  10192. height: math.unit(2, "cm")
  10193. },
  10194. {
  10195. name: "Normal",
  10196. height: math.unit(2.4, "meters"),
  10197. default: true
  10198. },
  10199. {
  10200. name: "Smaller Macro",
  10201. height: math.unit(120, "meters")
  10202. },
  10203. {
  10204. name: "Bigger Macro",
  10205. height: math.unit(1.2, "km")
  10206. },
  10207. {
  10208. name: "Megamacro",
  10209. height: math.unit(15, "kilometers")
  10210. },
  10211. {
  10212. name: "Gigamacro",
  10213. height: math.unit(2000, "km")
  10214. },
  10215. {
  10216. name: "Teramacro",
  10217. height: math.unit(500000, "km")
  10218. },
  10219. ]
  10220. ))
  10221. characterMakers.push(() => makeCharacter(
  10222. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10223. {
  10224. side: {
  10225. height: math.unit(6, "feet"),
  10226. name: "Side",
  10227. image: {
  10228. source: "./media/characters/ailbhe/side.svg",
  10229. extra: 757 / 464,
  10230. bottom: 0.041
  10231. }
  10232. },
  10233. },
  10234. [
  10235. {
  10236. name: "Normal",
  10237. height: math.unit(1.07, "meters"),
  10238. default: true
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10244. {
  10245. front: {
  10246. height: math.unit(6, "feet"),
  10247. weight: math.unit(120, "kg"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/zevulfius/front.svg",
  10251. extra: 965 / 903
  10252. }
  10253. },
  10254. side: {
  10255. height: math.unit(6, "feet"),
  10256. weight: math.unit(120, "kg"),
  10257. name: "Side",
  10258. image: {
  10259. source: "./media/characters/zevulfius/side.svg",
  10260. extra: 939 / 900
  10261. }
  10262. },
  10263. back: {
  10264. height: math.unit(6, "feet"),
  10265. weight: math.unit(120, "kg"),
  10266. name: "Back",
  10267. image: {
  10268. source: "./media/characters/zevulfius/back.svg",
  10269. extra: 918 / 854,
  10270. bottom: 0.005
  10271. }
  10272. },
  10273. foot: {
  10274. height: math.unit(6 / 3.72, "feet"),
  10275. name: "Foot",
  10276. image: {
  10277. source: "./media/characters/zevulfius/foot.svg"
  10278. }
  10279. },
  10280. },
  10281. [
  10282. {
  10283. name: "Macro",
  10284. height: math.unit(750, "meters")
  10285. },
  10286. {
  10287. name: "Megamacro",
  10288. height: math.unit(20, "km"),
  10289. default: true
  10290. },
  10291. {
  10292. name: "Gigamacro",
  10293. height: math.unit(2000, "km")
  10294. },
  10295. {
  10296. name: "Teramacro",
  10297. height: math.unit(250000, "km")
  10298. },
  10299. ]
  10300. ))
  10301. characterMakers.push(() => makeCharacter(
  10302. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10303. {
  10304. front: {
  10305. height: math.unit(100, "feet"),
  10306. weight: math.unit(350, "kg"),
  10307. name: "Front",
  10308. image: {
  10309. source: "./media/characters/rikes/front.svg",
  10310. extra: 1565 / 1483,
  10311. bottom: 0.017
  10312. }
  10313. },
  10314. },
  10315. [
  10316. {
  10317. name: "Macro",
  10318. height: math.unit(100, "feet"),
  10319. default: true
  10320. },
  10321. ]
  10322. ))
  10323. characterMakers.push(() => makeCharacter(
  10324. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10325. {
  10326. anthro: {
  10327. height: math.unit(8, "feet"),
  10328. weight: math.unit(120, "kg"),
  10329. name: "Anthro",
  10330. image: {
  10331. source: "./media/characters/adam-silver-mane/anthro.svg",
  10332. extra: 5743 / 5339,
  10333. bottom: 0.07
  10334. }
  10335. },
  10336. taur: {
  10337. height: math.unit(16, "feet"),
  10338. weight: math.unit(1500, "kg"),
  10339. name: "Taur",
  10340. image: {
  10341. source: "./media/characters/adam-silver-mane/taur.svg",
  10342. extra: 1713 / 1571,
  10343. bottom: 0.01
  10344. }
  10345. },
  10346. },
  10347. [
  10348. {
  10349. name: "Normal",
  10350. height: math.unit(8, "feet")
  10351. },
  10352. {
  10353. name: "Minimacro",
  10354. height: math.unit(80, "feet")
  10355. },
  10356. {
  10357. name: "Macro",
  10358. height: math.unit(800, "feet"),
  10359. default: true
  10360. },
  10361. {
  10362. name: "Megamacro",
  10363. height: math.unit(8000, "feet")
  10364. },
  10365. {
  10366. name: "Gigamacro",
  10367. height: math.unit(800, "miles")
  10368. },
  10369. {
  10370. name: "Teramacro",
  10371. height: math.unit(80000, "miles")
  10372. },
  10373. {
  10374. name: "Celestial",
  10375. height: math.unit(8e6, "miles")
  10376. },
  10377. {
  10378. name: "Star Dragon",
  10379. height: math.unit(800000, "parsecs")
  10380. },
  10381. {
  10382. name: "Godly",
  10383. height: math.unit(800, "teraparsecs")
  10384. },
  10385. ]
  10386. ))
  10387. characterMakers.push(() => makeCharacter(
  10388. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10389. {
  10390. front: {
  10391. height: math.unit(6, "feet"),
  10392. weight: math.unit(150, "lb"),
  10393. name: "Front",
  10394. image: {
  10395. source: "./media/characters/ky'owin/front.svg",
  10396. extra: 3888 / 3068,
  10397. bottom: 0.015
  10398. }
  10399. },
  10400. },
  10401. [
  10402. {
  10403. name: "Normal",
  10404. height: math.unit(6 + 8 / 12, "feet")
  10405. },
  10406. {
  10407. name: "Large",
  10408. height: math.unit(68, "feet")
  10409. },
  10410. {
  10411. name: "Macro",
  10412. height: math.unit(132, "feet")
  10413. },
  10414. {
  10415. name: "Macro+",
  10416. height: math.unit(340, "feet")
  10417. },
  10418. {
  10419. name: "Macro++",
  10420. height: math.unit(680, "feet"),
  10421. default: true
  10422. },
  10423. {
  10424. name: "Megamacro",
  10425. height: math.unit(1, "mile")
  10426. },
  10427. {
  10428. name: "Megamacro+",
  10429. height: math.unit(10, "miles")
  10430. },
  10431. ]
  10432. ))
  10433. characterMakers.push(() => makeCharacter(
  10434. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10435. {
  10436. front: {
  10437. height: math.unit(4, "feet"),
  10438. weight: math.unit(50, "lb"),
  10439. name: "Front",
  10440. image: {
  10441. source: "./media/characters/mal/front.svg",
  10442. extra: 785 / 724,
  10443. bottom: 0.07
  10444. }
  10445. },
  10446. },
  10447. [
  10448. {
  10449. name: "Micro",
  10450. height: math.unit(4, "inches")
  10451. },
  10452. {
  10453. name: "Normal",
  10454. height: math.unit(4, "feet"),
  10455. default: true
  10456. },
  10457. {
  10458. name: "Macro",
  10459. height: math.unit(200, "feet")
  10460. },
  10461. ]
  10462. ))
  10463. characterMakers.push(() => makeCharacter(
  10464. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10465. {
  10466. front: {
  10467. height: math.unit(6, "feet"),
  10468. weight: math.unit(150, "lb"),
  10469. name: "Front",
  10470. image: {
  10471. source: "./media/characters/jordan-deware/front.svg",
  10472. extra: 1191 / 1012
  10473. }
  10474. },
  10475. },
  10476. [
  10477. {
  10478. name: "Nano",
  10479. height: math.unit(0.01, "mm")
  10480. },
  10481. {
  10482. name: "Minimicro",
  10483. height: math.unit(1, "mm")
  10484. },
  10485. {
  10486. name: "Micro",
  10487. height: math.unit(0.5, "inches")
  10488. },
  10489. {
  10490. name: "Normal",
  10491. height: math.unit(4, "feet"),
  10492. default: true
  10493. },
  10494. {
  10495. name: "Minimacro",
  10496. height: math.unit(40, "meters")
  10497. },
  10498. {
  10499. name: "Small Macro",
  10500. height: math.unit(400, "meters")
  10501. },
  10502. {
  10503. name: "Macro",
  10504. height: math.unit(4, "miles")
  10505. },
  10506. {
  10507. name: "Megamacro",
  10508. height: math.unit(40, "miles")
  10509. },
  10510. {
  10511. name: "Megamacro+",
  10512. height: math.unit(400, "miles")
  10513. },
  10514. {
  10515. name: "Gigamacro",
  10516. height: math.unit(400000, "miles")
  10517. },
  10518. ]
  10519. ))
  10520. characterMakers.push(() => makeCharacter(
  10521. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10522. {
  10523. side: {
  10524. height: math.unit(6, "feet"),
  10525. weight: math.unit(150, "lb"),
  10526. name: "Side",
  10527. image: {
  10528. source: "./media/characters/kimiko/side.svg",
  10529. extra: 600 / 358
  10530. }
  10531. },
  10532. },
  10533. [
  10534. {
  10535. name: "Normal",
  10536. height: math.unit(15, "feet"),
  10537. default: true
  10538. },
  10539. {
  10540. name: "Macro",
  10541. height: math.unit(220, "feet")
  10542. },
  10543. {
  10544. name: "Macro+",
  10545. height: math.unit(1450, "feet")
  10546. },
  10547. {
  10548. name: "Megamacro",
  10549. height: math.unit(11500, "feet")
  10550. },
  10551. {
  10552. name: "Gigamacro",
  10553. height: math.unit(9500, "miles")
  10554. },
  10555. {
  10556. name: "Teramacro",
  10557. height: math.unit(2208005005, "miles")
  10558. },
  10559. {
  10560. name: "Examacro",
  10561. height: math.unit(2750, "parsecs")
  10562. },
  10563. {
  10564. name: "Zettamacro",
  10565. height: math.unit(101500, "parsecs")
  10566. },
  10567. ]
  10568. ))
  10569. characterMakers.push(() => makeCharacter(
  10570. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10571. {
  10572. front: {
  10573. height: math.unit(6, "feet"),
  10574. weight: math.unit(70, "kg"),
  10575. name: "Front",
  10576. image: {
  10577. source: "./media/characters/andrew-sleepy/front.svg"
  10578. }
  10579. },
  10580. side: {
  10581. height: math.unit(6, "feet"),
  10582. weight: math.unit(70, "kg"),
  10583. name: "Side",
  10584. image: {
  10585. source: "./media/characters/andrew-sleepy/side.svg"
  10586. }
  10587. },
  10588. },
  10589. [
  10590. {
  10591. name: "Micro",
  10592. height: math.unit(1, "mm"),
  10593. default: true
  10594. },
  10595. ]
  10596. ))
  10597. characterMakers.push(() => makeCharacter(
  10598. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10599. {
  10600. front: {
  10601. height: math.unit(6, "feet"),
  10602. weight: math.unit(150, "lb"),
  10603. name: "Front",
  10604. image: {
  10605. source: "./media/characters/judio/front.svg",
  10606. extra: 1258 / 1110
  10607. }
  10608. },
  10609. },
  10610. [
  10611. {
  10612. name: "Normal",
  10613. height: math.unit(5 + 6 / 12, "feet")
  10614. },
  10615. {
  10616. name: "Macro",
  10617. height: math.unit(1000, "feet"),
  10618. default: true
  10619. },
  10620. {
  10621. name: "Megamacro",
  10622. height: math.unit(10, "miles")
  10623. },
  10624. ]
  10625. ))
  10626. characterMakers.push(() => makeCharacter(
  10627. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10628. {
  10629. front: {
  10630. height: math.unit(6, "feet"),
  10631. weight: math.unit(68, "kg"),
  10632. name: "Front",
  10633. image: {
  10634. source: "./media/characters/nomaxice/front.svg",
  10635. extra: 1498 / 1073,
  10636. bottom: 0.075
  10637. }
  10638. },
  10639. foot: {
  10640. height: math.unit(1.1, "feet"),
  10641. name: "Foot",
  10642. image: {
  10643. source: "./media/characters/nomaxice/foot.svg"
  10644. }
  10645. },
  10646. },
  10647. [
  10648. {
  10649. name: "Micro",
  10650. height: math.unit(8, "cm")
  10651. },
  10652. {
  10653. name: "Norm",
  10654. height: math.unit(1.82, "m")
  10655. },
  10656. {
  10657. name: "Norm+",
  10658. height: math.unit(8.8, "feet")
  10659. },
  10660. {
  10661. name: "Big",
  10662. height: math.unit(8, "meters"),
  10663. default: true
  10664. },
  10665. {
  10666. name: "Macro",
  10667. height: math.unit(18, "meters")
  10668. },
  10669. {
  10670. name: "Macro+",
  10671. height: math.unit(88, "meters")
  10672. },
  10673. ]
  10674. ))
  10675. characterMakers.push(() => makeCharacter(
  10676. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10677. {
  10678. front: {
  10679. height: math.unit(12, "feet"),
  10680. weight: math.unit(1.5, "tons"),
  10681. name: "Front",
  10682. image: {
  10683. source: "./media/characters/dydros/front.svg",
  10684. extra: 863 / 800,
  10685. bottom: 0.015
  10686. }
  10687. },
  10688. back: {
  10689. height: math.unit(12, "feet"),
  10690. weight: math.unit(1.5, "tons"),
  10691. name: "Back",
  10692. image: {
  10693. source: "./media/characters/dydros/back.svg",
  10694. extra: 900 / 843,
  10695. bottom: 0.005
  10696. }
  10697. },
  10698. },
  10699. [
  10700. {
  10701. name: "Normal",
  10702. height: math.unit(12, "feet"),
  10703. default: true
  10704. },
  10705. ]
  10706. ))
  10707. characterMakers.push(() => makeCharacter(
  10708. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10709. {
  10710. front: {
  10711. height: math.unit(6, "feet"),
  10712. weight: math.unit(100, "kg"),
  10713. name: "Front",
  10714. image: {
  10715. source: "./media/characters/riggi/front.svg",
  10716. extra: 5787 / 5303
  10717. }
  10718. },
  10719. hyper: {
  10720. height: math.unit(6 * 5 / 3, "feet"),
  10721. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10722. name: "Hyper",
  10723. image: {
  10724. source: "./media/characters/riggi/hyper.svg",
  10725. extra: 3595 / 3485
  10726. }
  10727. },
  10728. },
  10729. [
  10730. {
  10731. name: "Small Macro",
  10732. height: math.unit(50, "feet")
  10733. },
  10734. {
  10735. name: "Default",
  10736. height: math.unit(200, "feet"),
  10737. default: true
  10738. },
  10739. {
  10740. name: "Loom",
  10741. height: math.unit(10000, "feet")
  10742. },
  10743. {
  10744. name: "Cruising Altitude",
  10745. height: math.unit(30000, "feet")
  10746. },
  10747. {
  10748. name: "Megamacro",
  10749. height: math.unit(100, "miles")
  10750. },
  10751. {
  10752. name: "Continent Sized",
  10753. height: math.unit(2800, "miles")
  10754. },
  10755. {
  10756. name: "Earth Sized",
  10757. height: math.unit(8000, "miles")
  10758. },
  10759. ]
  10760. ))
  10761. characterMakers.push(() => makeCharacter(
  10762. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10763. {
  10764. front: {
  10765. height: math.unit(6, "feet"),
  10766. weight: math.unit(250, "lb"),
  10767. name: "Front",
  10768. image: {
  10769. source: "./media/characters/alexi/front.svg",
  10770. extra: 3483 / 3291,
  10771. bottom: 0.04
  10772. }
  10773. },
  10774. back: {
  10775. height: math.unit(6, "feet"),
  10776. weight: math.unit(250, "lb"),
  10777. name: "Back",
  10778. image: {
  10779. source: "./media/characters/alexi/back.svg",
  10780. extra: 3533 / 3356,
  10781. bottom: 0.021
  10782. }
  10783. },
  10784. frontTransforming: {
  10785. height: math.unit(8.58, "feet"),
  10786. weight: math.unit(1300, "lb"),
  10787. name: "Transforming",
  10788. image: {
  10789. source: "./media/characters/alexi/front-transforming.svg",
  10790. extra: 437 / 409,
  10791. bottom: 19 / 458.66
  10792. }
  10793. },
  10794. frontTransformed: {
  10795. height: math.unit(12.5, "feet"),
  10796. weight: math.unit(4000, "lb"),
  10797. name: "Transformed",
  10798. image: {
  10799. source: "./media/characters/alexi/front-transformed.svg",
  10800. extra: 639 / 614,
  10801. bottom: 30.55 / 671
  10802. }
  10803. },
  10804. },
  10805. [
  10806. {
  10807. name: "Normal",
  10808. height: math.unit(14, "feet"),
  10809. default: true
  10810. },
  10811. {
  10812. name: "Minimacro",
  10813. height: math.unit(30, "meters")
  10814. },
  10815. {
  10816. name: "Macro",
  10817. height: math.unit(500, "meters")
  10818. },
  10819. {
  10820. name: "Megamacro",
  10821. height: math.unit(9000, "km")
  10822. },
  10823. {
  10824. name: "Teramacro",
  10825. height: math.unit(384000, "km")
  10826. },
  10827. ]
  10828. ))
  10829. characterMakers.push(() => makeCharacter(
  10830. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10831. {
  10832. front: {
  10833. height: math.unit(6, "feet"),
  10834. weight: math.unit(150, "lb"),
  10835. name: "Front",
  10836. image: {
  10837. source: "./media/characters/kayroo/front.svg",
  10838. extra: 1153 / 1038,
  10839. bottom: 0.06
  10840. }
  10841. },
  10842. foot: {
  10843. height: math.unit(6, "feet"),
  10844. weight: math.unit(150, "lb"),
  10845. name: "Foot",
  10846. image: {
  10847. source: "./media/characters/kayroo/foot.svg"
  10848. }
  10849. },
  10850. },
  10851. [
  10852. {
  10853. name: "Normal",
  10854. height: math.unit(8, "feet"),
  10855. default: true
  10856. },
  10857. {
  10858. name: "Minimacro",
  10859. height: math.unit(250, "feet")
  10860. },
  10861. {
  10862. name: "Macro",
  10863. height: math.unit(2800, "feet")
  10864. },
  10865. {
  10866. name: "Megamacro",
  10867. height: math.unit(5200, "feet")
  10868. },
  10869. {
  10870. name: "Gigamacro",
  10871. height: math.unit(27000, "feet")
  10872. },
  10873. {
  10874. name: "Omega",
  10875. height: math.unit(45000, "feet")
  10876. },
  10877. ]
  10878. ))
  10879. characterMakers.push(() => makeCharacter(
  10880. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10881. {
  10882. front: {
  10883. height: math.unit(18, "feet"),
  10884. weight: math.unit(5800, "lb"),
  10885. name: "Front",
  10886. image: {
  10887. source: "./media/characters/rhys/front.svg",
  10888. extra: 3386 / 3090,
  10889. bottom: 0.07
  10890. }
  10891. },
  10892. },
  10893. [
  10894. {
  10895. name: "Normal",
  10896. height: math.unit(18, "feet"),
  10897. default: true
  10898. },
  10899. {
  10900. name: "Working Size",
  10901. height: math.unit(200, "feet")
  10902. },
  10903. {
  10904. name: "Demolition Size",
  10905. height: math.unit(2000, "feet")
  10906. },
  10907. {
  10908. name: "Maximum Licensed Size",
  10909. height: math.unit(5, "miles")
  10910. },
  10911. {
  10912. name: "Maximum Observed Size",
  10913. height: math.unit(10, "yottameters")
  10914. },
  10915. ]
  10916. ))
  10917. characterMakers.push(() => makeCharacter(
  10918. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10919. {
  10920. front: {
  10921. height: math.unit(6, "feet"),
  10922. weight: math.unit(250, "lb"),
  10923. name: "Front",
  10924. image: {
  10925. source: "./media/characters/toto/front.svg",
  10926. extra: 527 / 479,
  10927. bottom: 0.05
  10928. }
  10929. },
  10930. },
  10931. [
  10932. {
  10933. name: "Micro",
  10934. height: math.unit(3, "feet")
  10935. },
  10936. {
  10937. name: "Normal",
  10938. height: math.unit(10, "feet")
  10939. },
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(150, "feet"),
  10943. default: true
  10944. },
  10945. {
  10946. name: "Megamacro",
  10947. height: math.unit(1200, "feet")
  10948. },
  10949. ]
  10950. ))
  10951. characterMakers.push(() => makeCharacter(
  10952. { name: "King", species: ["lion"], tags: ["anthro"] },
  10953. {
  10954. back: {
  10955. height: math.unit(6, "feet"),
  10956. weight: math.unit(150, "lb"),
  10957. name: "Back",
  10958. image: {
  10959. source: "./media/characters/king/back.svg"
  10960. }
  10961. },
  10962. },
  10963. [
  10964. {
  10965. name: "Micro",
  10966. height: math.unit(2, "inches")
  10967. },
  10968. {
  10969. name: "Normal",
  10970. height: math.unit(8, "feet")
  10971. },
  10972. {
  10973. name: "Macro",
  10974. height: math.unit(200, "feet"),
  10975. default: true
  10976. },
  10977. {
  10978. name: "Megamacro",
  10979. height: math.unit(50, "miles")
  10980. },
  10981. ]
  10982. ))
  10983. characterMakers.push(() => makeCharacter(
  10984. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10985. {
  10986. anthro: {
  10987. height: math.unit(6 + 5 / 12, "feet"),
  10988. weight: math.unit(280, "lb"),
  10989. name: "Anthro",
  10990. image: {
  10991. source: "./media/characters/cordite/anthro.svg",
  10992. extra: 1986 / 1905,
  10993. bottom: 0.025
  10994. }
  10995. },
  10996. feral: {
  10997. height: math.unit(2, "feet"),
  10998. weight: math.unit(90, "lb"),
  10999. name: "Feral",
  11000. image: {
  11001. source: "./media/characters/cordite/feral.svg",
  11002. extra: 1260 / 755,
  11003. bottom: 0.05
  11004. }
  11005. },
  11006. },
  11007. [
  11008. {
  11009. name: "Normal",
  11010. height: math.unit(6 + 5 / 12, "feet"),
  11011. default: true
  11012. },
  11013. ]
  11014. ))
  11015. characterMakers.push(() => makeCharacter(
  11016. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11017. {
  11018. front: {
  11019. height: math.unit(6, "feet"),
  11020. weight: math.unit(150, "lb"),
  11021. name: "Front",
  11022. image: {
  11023. source: "./media/characters/pianostrong/front.svg",
  11024. extra: 6577 / 6254,
  11025. bottom: 0.02
  11026. }
  11027. },
  11028. side: {
  11029. height: math.unit(6, "feet"),
  11030. weight: math.unit(150, "lb"),
  11031. name: "Side",
  11032. image: {
  11033. source: "./media/characters/pianostrong/side.svg",
  11034. extra: 6106 / 5730
  11035. }
  11036. },
  11037. back: {
  11038. height: math.unit(6, "feet"),
  11039. weight: math.unit(150, "lb"),
  11040. name: "Back",
  11041. image: {
  11042. source: "./media/characters/pianostrong/back.svg",
  11043. extra: 6085 / 5733,
  11044. bottom: 0.01
  11045. }
  11046. },
  11047. },
  11048. [
  11049. {
  11050. name: "Macro",
  11051. height: math.unit(100, "feet")
  11052. },
  11053. {
  11054. name: "Macro+",
  11055. height: math.unit(300, "feet"),
  11056. default: true
  11057. },
  11058. {
  11059. name: "Macro++",
  11060. height: math.unit(1000, "feet")
  11061. },
  11062. ]
  11063. ))
  11064. characterMakers.push(() => makeCharacter(
  11065. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11066. {
  11067. front: {
  11068. height: math.unit(6, "feet"),
  11069. weight: math.unit(150, "lb"),
  11070. name: "Front",
  11071. image: {
  11072. source: "./media/characters/kona/front.svg",
  11073. extra: 2960 / 2629,
  11074. bottom: 0.005
  11075. }
  11076. },
  11077. },
  11078. [
  11079. {
  11080. name: "Normal",
  11081. height: math.unit(11 + 8 / 12, "feet")
  11082. },
  11083. {
  11084. name: "Macro",
  11085. height: math.unit(850, "feet"),
  11086. default: true
  11087. },
  11088. {
  11089. name: "Macro+",
  11090. height: math.unit(1.5, "km"),
  11091. default: true
  11092. },
  11093. {
  11094. name: "Megamacro",
  11095. height: math.unit(80, "miles")
  11096. },
  11097. {
  11098. name: "Gigamacro",
  11099. height: math.unit(3500, "miles")
  11100. },
  11101. ]
  11102. ))
  11103. characterMakers.push(() => makeCharacter(
  11104. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11105. {
  11106. side: {
  11107. height: math.unit(1.9, "meters"),
  11108. weight: math.unit(326, "kg"),
  11109. name: "Side",
  11110. image: {
  11111. source: "./media/characters/levi/side.svg",
  11112. extra: 1704 / 1334,
  11113. bottom: 0.02
  11114. }
  11115. },
  11116. },
  11117. [
  11118. {
  11119. name: "Normal",
  11120. height: math.unit(1.9, "meters"),
  11121. default: true
  11122. },
  11123. {
  11124. name: "Macro",
  11125. height: math.unit(20, "meters")
  11126. },
  11127. {
  11128. name: "Macro+",
  11129. height: math.unit(200, "meters")
  11130. },
  11131. {
  11132. name: "Megamacro",
  11133. height: math.unit(2, "km")
  11134. },
  11135. {
  11136. name: "Megamacro+",
  11137. height: math.unit(20, "km")
  11138. },
  11139. {
  11140. name: "Gigamacro",
  11141. height: math.unit(2500, "km")
  11142. },
  11143. {
  11144. name: "Gigamacro+",
  11145. height: math.unit(120000, "km")
  11146. },
  11147. {
  11148. name: "Teramacro",
  11149. height: math.unit(7.77e6, "km")
  11150. },
  11151. ]
  11152. ))
  11153. characterMakers.push(() => makeCharacter(
  11154. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11155. {
  11156. front: {
  11157. height: math.unit(6 + 4 / 12, "feet"),
  11158. weight: math.unit(188, "lb"),
  11159. name: "Front",
  11160. image: {
  11161. source: "./media/characters/bmc/front.svg",
  11162. extra: 1067 / 1022,
  11163. bottom: 0.047
  11164. }
  11165. },
  11166. },
  11167. [
  11168. {
  11169. name: "Human-sized",
  11170. height: math.unit(6 + 4 / 12, "feet")
  11171. },
  11172. {
  11173. name: "Small",
  11174. height: math.unit(250, "feet")
  11175. },
  11176. {
  11177. name: "Normal",
  11178. height: math.unit(1250, "feet"),
  11179. default: true
  11180. },
  11181. {
  11182. name: "Good Day",
  11183. height: math.unit(88, "miles")
  11184. },
  11185. {
  11186. name: "Largest Measured Size",
  11187. height: math.unit(11.2e6, "lightyears")
  11188. },
  11189. ]
  11190. ))
  11191. characterMakers.push(() => makeCharacter(
  11192. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11193. {
  11194. front: {
  11195. height: math.unit(20, "feet"),
  11196. weight: math.unit(2016, "kg"),
  11197. name: "Front",
  11198. image: {
  11199. source: "./media/characters/sven-the-kaiju/front.svg",
  11200. extra: 1277/1250,
  11201. bottom: 35/1312
  11202. }
  11203. },
  11204. mouth: {
  11205. height: math.unit(1.85, "feet"),
  11206. name: "Mouth",
  11207. image: {
  11208. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11209. }
  11210. },
  11211. },
  11212. [
  11213. {
  11214. name: "Fairy",
  11215. height: math.unit(6, "inches")
  11216. },
  11217. {
  11218. name: "Normal",
  11219. height: math.unit(20, "feet"),
  11220. default: true
  11221. },
  11222. {
  11223. name: "Rampage",
  11224. height: math.unit(200, "feet")
  11225. },
  11226. {
  11227. name: "Archfey Forest Guardian",
  11228. height: math.unit(1, "mile")
  11229. },
  11230. ]
  11231. ))
  11232. characterMakers.push(() => makeCharacter(
  11233. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11234. {
  11235. front: {
  11236. height: math.unit(4, "meters"),
  11237. weight: math.unit(2, "tons"),
  11238. name: "Front",
  11239. image: {
  11240. source: "./media/characters/marik/front.svg",
  11241. extra: 1057 / 1003,
  11242. bottom: 0.08
  11243. }
  11244. },
  11245. },
  11246. [
  11247. {
  11248. name: "Normal",
  11249. height: math.unit(4, "meters"),
  11250. default: true
  11251. },
  11252. {
  11253. name: "Macro",
  11254. height: math.unit(20, "meters")
  11255. },
  11256. {
  11257. name: "Megamacro",
  11258. height: math.unit(50, "km")
  11259. },
  11260. {
  11261. name: "Gigamacro",
  11262. height: math.unit(100, "km")
  11263. },
  11264. {
  11265. name: "Alpha Macro",
  11266. height: math.unit(7.88e7, "yottameters")
  11267. },
  11268. ]
  11269. ))
  11270. characterMakers.push(() => makeCharacter(
  11271. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11272. {
  11273. front: {
  11274. height: math.unit(6, "feet"),
  11275. weight: math.unit(110, "lb"),
  11276. name: "Front",
  11277. image: {
  11278. source: "./media/characters/mel/front.svg",
  11279. extra: 736 / 617,
  11280. bottom: 0.017
  11281. }
  11282. },
  11283. },
  11284. [
  11285. {
  11286. name: "Pico",
  11287. height: math.unit(3, "pm")
  11288. },
  11289. {
  11290. name: "Nano",
  11291. height: math.unit(3, "nm")
  11292. },
  11293. {
  11294. name: "Micro",
  11295. height: math.unit(0.3, "mm"),
  11296. default: true
  11297. },
  11298. {
  11299. name: "Micro+",
  11300. height: math.unit(3, "mm")
  11301. },
  11302. {
  11303. name: "Normal",
  11304. height: math.unit(5 + 10.5 / 12, "feet")
  11305. },
  11306. ]
  11307. ))
  11308. characterMakers.push(() => makeCharacter(
  11309. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11310. {
  11311. kaiju: {
  11312. height: math.unit(1.75, "meters"),
  11313. weight: math.unit(55, "kg"),
  11314. name: "Kaiju",
  11315. image: {
  11316. source: "./media/characters/lykonous/kaiju.svg",
  11317. extra: 1055 / 946,
  11318. bottom: 0.135
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Normal",
  11325. height: math.unit(2.5, "meters"),
  11326. default: true
  11327. },
  11328. {
  11329. name: "Kaiju Dragon",
  11330. height: math.unit(60, "meters")
  11331. },
  11332. {
  11333. name: "Mega Kaiju",
  11334. height: math.unit(120, "km")
  11335. },
  11336. {
  11337. name: "Giga Kaiju",
  11338. height: math.unit(200, "megameters")
  11339. },
  11340. {
  11341. name: "Terra Kaiju",
  11342. height: math.unit(400, "gigameters")
  11343. },
  11344. {
  11345. name: "Kaiju Dragon God",
  11346. height: math.unit(13000, "exaparsecs")
  11347. },
  11348. ]
  11349. ))
  11350. characterMakers.push(() => makeCharacter(
  11351. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11352. {
  11353. front: {
  11354. height: math.unit(6, "feet"),
  11355. weight: math.unit(150, "lb"),
  11356. name: "Front",
  11357. image: {
  11358. source: "./media/characters/blü/front.svg",
  11359. extra: 1883 / 1564,
  11360. bottom: 0.031
  11361. }
  11362. },
  11363. },
  11364. [
  11365. {
  11366. name: "Normal",
  11367. height: math.unit(13, "feet"),
  11368. default: true
  11369. },
  11370. {
  11371. name: "Big Boi",
  11372. height: math.unit(150, "meters")
  11373. },
  11374. {
  11375. name: "Mini Stomper",
  11376. height: math.unit(300, "meters")
  11377. },
  11378. {
  11379. name: "Macro",
  11380. height: math.unit(1000, "meters")
  11381. },
  11382. {
  11383. name: "Megamacro",
  11384. height: math.unit(11000, "meters")
  11385. },
  11386. {
  11387. name: "Gigamacro",
  11388. height: math.unit(11000, "km")
  11389. },
  11390. {
  11391. name: "Teramacro",
  11392. height: math.unit(420000, "km")
  11393. },
  11394. {
  11395. name: "Examacro",
  11396. height: math.unit(120, "parsecs")
  11397. },
  11398. {
  11399. name: "God Tho",
  11400. height: math.unit(98000000000, "parsecs")
  11401. },
  11402. ]
  11403. ))
  11404. characterMakers.push(() => makeCharacter(
  11405. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11406. {
  11407. taurFront: {
  11408. height: math.unit(6, "feet"),
  11409. weight: math.unit(200, "lb"),
  11410. name: "Taur (Front)",
  11411. image: {
  11412. source: "./media/characters/scales/taur-front.svg",
  11413. extra: 1,
  11414. bottom: 0.05
  11415. }
  11416. },
  11417. taurBack: {
  11418. height: math.unit(6, "feet"),
  11419. weight: math.unit(200, "lb"),
  11420. name: "Taur (Back)",
  11421. image: {
  11422. source: "./media/characters/scales/taur-back.svg",
  11423. extra: 1,
  11424. bottom: 0.08
  11425. }
  11426. },
  11427. anthro: {
  11428. height: math.unit(6 * 7 / 12, "feet"),
  11429. weight: math.unit(100, "lb"),
  11430. name: "Anthro",
  11431. image: {
  11432. source: "./media/characters/scales/anthro.svg",
  11433. extra: 1,
  11434. bottom: 0.06
  11435. }
  11436. },
  11437. },
  11438. [
  11439. {
  11440. name: "Normal",
  11441. height: math.unit(12, "feet"),
  11442. default: true
  11443. },
  11444. ]
  11445. ))
  11446. characterMakers.push(() => makeCharacter(
  11447. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11448. {
  11449. front: {
  11450. height: math.unit(6, "feet"),
  11451. weight: math.unit(150, "lb"),
  11452. name: "Front",
  11453. image: {
  11454. source: "./media/characters/koragos/front.svg",
  11455. extra: 841 / 794,
  11456. bottom: 0.035
  11457. }
  11458. },
  11459. back: {
  11460. height: math.unit(6, "feet"),
  11461. weight: math.unit(150, "lb"),
  11462. name: "Back",
  11463. image: {
  11464. source: "./media/characters/koragos/back.svg",
  11465. extra: 841 / 810,
  11466. bottom: 0.022
  11467. }
  11468. },
  11469. },
  11470. [
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(6 + 11 / 12, "feet"),
  11474. default: true
  11475. },
  11476. {
  11477. name: "Macro",
  11478. height: math.unit(490, "feet")
  11479. },
  11480. {
  11481. name: "Megamacro",
  11482. height: math.unit(10, "miles")
  11483. },
  11484. {
  11485. name: "Gigamacro",
  11486. height: math.unit(50, "miles")
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11492. {
  11493. front: {
  11494. height: math.unit(6, "feet"),
  11495. weight: math.unit(250, "lb"),
  11496. name: "Front",
  11497. image: {
  11498. source: "./media/characters/xylrem/front.svg",
  11499. extra: 3323 / 3050,
  11500. bottom: 0.065
  11501. }
  11502. },
  11503. },
  11504. [
  11505. {
  11506. name: "Micro",
  11507. height: math.unit(4, "feet")
  11508. },
  11509. {
  11510. name: "Normal",
  11511. height: math.unit(16, "feet"),
  11512. default: true
  11513. },
  11514. {
  11515. name: "Macro",
  11516. height: math.unit(2720, "feet")
  11517. },
  11518. {
  11519. name: "Megamacro",
  11520. height: math.unit(25000, "miles")
  11521. },
  11522. ]
  11523. ))
  11524. characterMakers.push(() => makeCharacter(
  11525. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11526. {
  11527. front: {
  11528. height: math.unit(8, "feet"),
  11529. weight: math.unit(250, "kg"),
  11530. name: "Front",
  11531. image: {
  11532. source: "./media/characters/ikideru/front.svg",
  11533. extra: 930 / 870,
  11534. bottom: 0.087
  11535. }
  11536. },
  11537. back: {
  11538. height: math.unit(8, "feet"),
  11539. weight: math.unit(250, "kg"),
  11540. name: "Back",
  11541. image: {
  11542. source: "./media/characters/ikideru/back.svg",
  11543. extra: 919 / 852,
  11544. bottom: 0.055
  11545. }
  11546. },
  11547. },
  11548. [
  11549. {
  11550. name: "Rare",
  11551. height: math.unit(8, "feet"),
  11552. default: true
  11553. },
  11554. {
  11555. name: "Playful Loom",
  11556. height: math.unit(80, "feet")
  11557. },
  11558. {
  11559. name: "City Leaner",
  11560. height: math.unit(230, "feet")
  11561. },
  11562. {
  11563. name: "Megamacro",
  11564. height: math.unit(2500, "feet")
  11565. },
  11566. {
  11567. name: "Gigamacro",
  11568. height: math.unit(26400, "feet")
  11569. },
  11570. {
  11571. name: "Tectonic Shifter",
  11572. height: math.unit(1.7, "megameters")
  11573. },
  11574. {
  11575. name: "Planet Carer",
  11576. height: math.unit(21, "megameters")
  11577. },
  11578. {
  11579. name: "God",
  11580. height: math.unit(11157.22, "parsecs")
  11581. },
  11582. ]
  11583. ))
  11584. characterMakers.push(() => makeCharacter(
  11585. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11586. {
  11587. front: {
  11588. height: math.unit(6, "feet"),
  11589. weight: math.unit(120, "lb"),
  11590. name: "Front",
  11591. image: {
  11592. source: "./media/characters/neo/front.svg"
  11593. }
  11594. },
  11595. },
  11596. [
  11597. {
  11598. name: "Micro",
  11599. height: math.unit(2, "inches"),
  11600. default: true
  11601. },
  11602. {
  11603. name: "Human Size",
  11604. height: math.unit(5 + 8 / 12, "feet")
  11605. },
  11606. ]
  11607. ))
  11608. characterMakers.push(() => makeCharacter(
  11609. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11610. {
  11611. front: {
  11612. height: math.unit(13 + 10 / 12, "feet"),
  11613. weight: math.unit(5320, "lb"),
  11614. name: "Front",
  11615. image: {
  11616. source: "./media/characters/chauncey-chantz/front.svg",
  11617. extra: 1587 / 1435,
  11618. bottom: 0.02
  11619. }
  11620. },
  11621. },
  11622. [
  11623. {
  11624. name: "Normal",
  11625. height: math.unit(13 + 10 / 12, "feet"),
  11626. default: true
  11627. },
  11628. {
  11629. name: "Macro",
  11630. height: math.unit(45, "feet")
  11631. },
  11632. {
  11633. name: "Megamacro",
  11634. height: math.unit(250, "miles")
  11635. },
  11636. {
  11637. name: "Planetary",
  11638. height: math.unit(10000, "miles")
  11639. },
  11640. {
  11641. name: "Galactic",
  11642. height: math.unit(40000, "parsecs")
  11643. },
  11644. {
  11645. name: "Universal",
  11646. height: math.unit(1, "yottameter")
  11647. },
  11648. ]
  11649. ))
  11650. characterMakers.push(() => makeCharacter(
  11651. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11652. {
  11653. front: {
  11654. height: math.unit(6, "feet"),
  11655. weight: math.unit(150, "lb"),
  11656. name: "Front",
  11657. image: {
  11658. source: "./media/characters/epifox/front.svg",
  11659. extra: 1,
  11660. bottom: 0.075
  11661. }
  11662. },
  11663. },
  11664. [
  11665. {
  11666. name: "Micro",
  11667. height: math.unit(6, "inches")
  11668. },
  11669. {
  11670. name: "Normal",
  11671. height: math.unit(12, "feet"),
  11672. default: true
  11673. },
  11674. {
  11675. name: "Macro",
  11676. height: math.unit(3810, "feet")
  11677. },
  11678. {
  11679. name: "Megamacro",
  11680. height: math.unit(500, "miles")
  11681. },
  11682. ]
  11683. ))
  11684. characterMakers.push(() => makeCharacter(
  11685. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11686. {
  11687. front: {
  11688. height: math.unit(1.8796, "m"),
  11689. weight: math.unit(230, "lb"),
  11690. name: "Front",
  11691. image: {
  11692. source: "./media/characters/colin-t/front.svg",
  11693. extra: 1272 / 1193,
  11694. bottom: 0.07
  11695. }
  11696. },
  11697. },
  11698. [
  11699. {
  11700. name: "Micro",
  11701. height: math.unit(0.571, "meters")
  11702. },
  11703. {
  11704. name: "Normal",
  11705. height: math.unit(1.8796, "meters"),
  11706. default: true
  11707. },
  11708. {
  11709. name: "Tall",
  11710. height: math.unit(4, "meters")
  11711. },
  11712. {
  11713. name: "Macro",
  11714. height: math.unit(67.241, "meters")
  11715. },
  11716. {
  11717. name: "Megamacro",
  11718. height: math.unit(371.856, "meters")
  11719. },
  11720. {
  11721. name: "Planetary",
  11722. height: math.unit(12631.5689, "km")
  11723. },
  11724. ]
  11725. ))
  11726. characterMakers.push(() => makeCharacter(
  11727. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11728. {
  11729. front: {
  11730. height: math.unit(1.85, "meters"),
  11731. weight: math.unit(80, "kg"),
  11732. name: "Front",
  11733. image: {
  11734. source: "./media/characters/matvei/front.svg",
  11735. extra: 614 / 594,
  11736. bottom: 0.01
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(1.85, "meters"),
  11744. default: true
  11745. },
  11746. ]
  11747. ))
  11748. characterMakers.push(() => makeCharacter(
  11749. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11750. {
  11751. front: {
  11752. height: math.unit(5 + 9 / 12, "feet"),
  11753. weight: math.unit(70, "lb"),
  11754. name: "Front",
  11755. image: {
  11756. source: "./media/characters/quincy/front.svg",
  11757. extra: 3041 / 2751
  11758. }
  11759. },
  11760. back: {
  11761. height: math.unit(5 + 9 / 12, "feet"),
  11762. weight: math.unit(70, "lb"),
  11763. name: "Back",
  11764. image: {
  11765. source: "./media/characters/quincy/back.svg",
  11766. extra: 3041 / 2751
  11767. }
  11768. },
  11769. flying: {
  11770. height: math.unit(5 + 4 / 12, "feet"),
  11771. weight: math.unit(70, "lb"),
  11772. name: "Flying",
  11773. image: {
  11774. source: "./media/characters/quincy/flying.svg",
  11775. extra: 1044 / 930
  11776. }
  11777. },
  11778. },
  11779. [
  11780. {
  11781. name: "Micro",
  11782. height: math.unit(3, "cm")
  11783. },
  11784. {
  11785. name: "Normal",
  11786. height: math.unit(5 + 9 / 12, "feet")
  11787. },
  11788. {
  11789. name: "Macro",
  11790. height: math.unit(200, "meters"),
  11791. default: true
  11792. },
  11793. {
  11794. name: "Megamacro",
  11795. height: math.unit(1000, "meters")
  11796. },
  11797. ]
  11798. ))
  11799. characterMakers.push(() => makeCharacter(
  11800. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11801. {
  11802. front: {
  11803. height: math.unit(3 + 11/12, "feet"),
  11804. weight: math.unit(50, "lb"),
  11805. name: "Front",
  11806. image: {
  11807. source: "./media/characters/vanrel/front.svg",
  11808. extra: 1104/949,
  11809. bottom: 52/1156
  11810. }
  11811. },
  11812. back: {
  11813. height: math.unit(3 + 11/12, "feet"),
  11814. weight: math.unit(50, "lb"),
  11815. name: "Back",
  11816. image: {
  11817. source: "./media/characters/vanrel/back.svg",
  11818. extra: 1119/976,
  11819. bottom: 37/1156
  11820. }
  11821. },
  11822. tome: {
  11823. height: math.unit(1.35, "feet"),
  11824. weight: math.unit(10, "lb"),
  11825. name: "Vanrel's Tome",
  11826. rename: true,
  11827. image: {
  11828. source: "./media/characters/vanrel/tome.svg"
  11829. }
  11830. },
  11831. beans: {
  11832. height: math.unit(0.89, "feet"),
  11833. name: "Beans",
  11834. image: {
  11835. source: "./media/characters/vanrel/beans.svg"
  11836. }
  11837. },
  11838. },
  11839. [
  11840. {
  11841. name: "Normal",
  11842. height: math.unit(3 + 11/12, "feet"),
  11843. default: true
  11844. },
  11845. ]
  11846. ))
  11847. characterMakers.push(() => makeCharacter(
  11848. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11849. {
  11850. front: {
  11851. height: math.unit(7 + 5 / 12, "feet"),
  11852. name: "Front",
  11853. image: {
  11854. source: "./media/characters/kuiper-vanrel/front.svg",
  11855. extra: 1219/1169,
  11856. bottom: 69/1288
  11857. }
  11858. },
  11859. back: {
  11860. height: math.unit(7 + 5 / 12, "feet"),
  11861. name: "Back",
  11862. image: {
  11863. source: "./media/characters/kuiper-vanrel/back.svg",
  11864. extra: 1236/1193,
  11865. bottom: 27/1263
  11866. }
  11867. },
  11868. foot: {
  11869. height: math.unit(0.55, "meters"),
  11870. name: "Foot",
  11871. image: {
  11872. source: "./media/characters/kuiper-vanrel/foot.svg",
  11873. }
  11874. },
  11875. battle: {
  11876. height: math.unit(6.824, "feet"),
  11877. name: "Battle",
  11878. image: {
  11879. source: "./media/characters/kuiper-vanrel/battle.svg",
  11880. extra: 1466 / 1327,
  11881. bottom: 29 / 1492.5
  11882. }
  11883. },
  11884. },
  11885. [
  11886. {
  11887. name: "Normal",
  11888. height: math.unit(7 + 5 / 12, "feet"),
  11889. default: true
  11890. },
  11891. ]
  11892. ))
  11893. characterMakers.push(() => makeCharacter(
  11894. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11895. {
  11896. front: {
  11897. height: math.unit(8 + 5 / 12, "feet"),
  11898. name: "Front",
  11899. image: {
  11900. source: "./media/characters/keset-vanrel/front.svg",
  11901. extra: 1231/1148,
  11902. bottom: 82/1313
  11903. }
  11904. },
  11905. back: {
  11906. height: math.unit(8 + 5 / 12, "feet"),
  11907. name: "Back",
  11908. image: {
  11909. source: "./media/characters/keset-vanrel/back.svg",
  11910. extra: 1240/1174,
  11911. bottom: 33/1273
  11912. }
  11913. },
  11914. hand: {
  11915. height: math.unit(0.6, "meters"),
  11916. name: "Hand",
  11917. image: {
  11918. source: "./media/characters/keset-vanrel/hand.svg"
  11919. }
  11920. },
  11921. foot: {
  11922. height: math.unit(0.94978, "meters"),
  11923. name: "Foot",
  11924. image: {
  11925. source: "./media/characters/keset-vanrel/foot.svg"
  11926. }
  11927. },
  11928. battle: {
  11929. height: math.unit(7.408, "feet"),
  11930. name: "Battle",
  11931. image: {
  11932. source: "./media/characters/keset-vanrel/battle.svg",
  11933. extra: 1890 / 1386,
  11934. bottom: 73.28 / 1970
  11935. }
  11936. },
  11937. },
  11938. [
  11939. {
  11940. name: "Normal",
  11941. height: math.unit(8 + 5 / 12, "feet"),
  11942. default: true
  11943. },
  11944. ]
  11945. ))
  11946. characterMakers.push(() => makeCharacter(
  11947. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11948. {
  11949. front: {
  11950. height: math.unit(6, "feet"),
  11951. weight: math.unit(150, "lb"),
  11952. name: "Front",
  11953. image: {
  11954. source: "./media/characters/neos/front.svg",
  11955. extra: 1696 / 992,
  11956. bottom: 0.14
  11957. }
  11958. },
  11959. },
  11960. [
  11961. {
  11962. name: "Normal",
  11963. height: math.unit(54, "cm"),
  11964. default: true
  11965. },
  11966. {
  11967. name: "Macro",
  11968. height: math.unit(100, "m")
  11969. },
  11970. {
  11971. name: "Megamacro",
  11972. height: math.unit(10, "km")
  11973. },
  11974. {
  11975. name: "Megamacro+",
  11976. height: math.unit(100, "km")
  11977. },
  11978. {
  11979. name: "Gigamacro",
  11980. height: math.unit(100, "Mm")
  11981. },
  11982. {
  11983. name: "Teramacro",
  11984. height: math.unit(100, "Gm")
  11985. },
  11986. {
  11987. name: "Examacro",
  11988. height: math.unit(100, "Em")
  11989. },
  11990. {
  11991. name: "Godly",
  11992. height: math.unit(10000, "Ym")
  11993. },
  11994. {
  11995. name: "Beyond Godly",
  11996. height: math.unit(25, "multiverses")
  11997. },
  11998. ]
  11999. ))
  12000. characterMakers.push(() => makeCharacter(
  12001. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12002. {
  12003. feminine: {
  12004. height: math.unit(5, "feet"),
  12005. weight: math.unit(100, "lb"),
  12006. name: "Feminine",
  12007. image: {
  12008. source: "./media/characters/sammy-mouse/feminine.svg",
  12009. extra: 2526 / 2425,
  12010. bottom: 0.123
  12011. }
  12012. },
  12013. masculine: {
  12014. height: math.unit(5, "feet"),
  12015. weight: math.unit(100, "lb"),
  12016. name: "Masculine",
  12017. image: {
  12018. source: "./media/characters/sammy-mouse/masculine.svg",
  12019. extra: 2526 / 2425,
  12020. bottom: 0.123
  12021. }
  12022. },
  12023. },
  12024. [
  12025. {
  12026. name: "Micro",
  12027. height: math.unit(5, "inches")
  12028. },
  12029. {
  12030. name: "Normal",
  12031. height: math.unit(5, "feet"),
  12032. default: true
  12033. },
  12034. {
  12035. name: "Macro",
  12036. height: math.unit(60, "feet")
  12037. },
  12038. ]
  12039. ))
  12040. characterMakers.push(() => makeCharacter(
  12041. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12042. {
  12043. front: {
  12044. height: math.unit(4, "feet"),
  12045. weight: math.unit(50, "lb"),
  12046. name: "Front",
  12047. image: {
  12048. source: "./media/characters/kole/front.svg",
  12049. extra: 1423 / 1303,
  12050. bottom: 0.025
  12051. }
  12052. },
  12053. back: {
  12054. height: math.unit(4, "feet"),
  12055. weight: math.unit(50, "lb"),
  12056. name: "Back",
  12057. image: {
  12058. source: "./media/characters/kole/back.svg",
  12059. extra: 1426 / 1280,
  12060. bottom: 0.02
  12061. }
  12062. },
  12063. },
  12064. [
  12065. {
  12066. name: "Normal",
  12067. height: math.unit(4, "feet"),
  12068. default: true
  12069. },
  12070. ]
  12071. ))
  12072. characterMakers.push(() => makeCharacter(
  12073. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12074. {
  12075. front: {
  12076. height: math.unit(2.5, "feet"),
  12077. weight: math.unit(32, "lb"),
  12078. name: "Front",
  12079. image: {
  12080. source: "./media/characters/rufran/front.svg",
  12081. extra: 1313/885,
  12082. bottom: 94/1407
  12083. }
  12084. },
  12085. side: {
  12086. height: math.unit(2.5, "feet"),
  12087. weight: math.unit(32, "lb"),
  12088. name: "Side",
  12089. image: {
  12090. source: "./media/characters/rufran/side.svg",
  12091. extra: 1109/852,
  12092. bottom: 118/1227
  12093. }
  12094. },
  12095. back: {
  12096. height: math.unit(2.5, "feet"),
  12097. weight: math.unit(32, "lb"),
  12098. name: "Back",
  12099. image: {
  12100. source: "./media/characters/rufran/back.svg",
  12101. extra: 1280/878,
  12102. bottom: 131/1411
  12103. }
  12104. },
  12105. mouth: {
  12106. height: math.unit(1.13, "feet"),
  12107. name: "Mouth",
  12108. image: {
  12109. source: "./media/characters/rufran/mouth.svg"
  12110. }
  12111. },
  12112. foot: {
  12113. height: math.unit(1.33, "feet"),
  12114. name: "Foot",
  12115. image: {
  12116. source: "./media/characters/rufran/foot.svg"
  12117. }
  12118. },
  12119. koboldFront: {
  12120. height: math.unit(2 + 6 / 12, "feet"),
  12121. weight: math.unit(20, "lb"),
  12122. name: "Front (Kobold)",
  12123. image: {
  12124. source: "./media/characters/rufran/kobold-front.svg",
  12125. extra: 2041 / 1839,
  12126. bottom: 0.055
  12127. }
  12128. },
  12129. koboldBack: {
  12130. height: math.unit(2 + 6 / 12, "feet"),
  12131. weight: math.unit(20, "lb"),
  12132. name: "Back (Kobold)",
  12133. image: {
  12134. source: "./media/characters/rufran/kobold-back.svg",
  12135. extra: 2054 / 1839,
  12136. bottom: 0.01
  12137. }
  12138. },
  12139. koboldHand: {
  12140. height: math.unit(0.2166, "meters"),
  12141. name: "Hand (Kobold)",
  12142. image: {
  12143. source: "./media/characters/rufran/kobold-hand.svg"
  12144. }
  12145. },
  12146. koboldFoot: {
  12147. height: math.unit(0.185, "meters"),
  12148. name: "Foot (Kobold)",
  12149. image: {
  12150. source: "./media/characters/rufran/kobold-foot.svg"
  12151. }
  12152. },
  12153. },
  12154. [
  12155. {
  12156. name: "Micro",
  12157. height: math.unit(1, "inch")
  12158. },
  12159. {
  12160. name: "Normal",
  12161. height: math.unit(2 + 6 / 12, "feet"),
  12162. default: true
  12163. },
  12164. {
  12165. name: "Big",
  12166. height: math.unit(60, "feet")
  12167. },
  12168. {
  12169. name: "Macro",
  12170. height: math.unit(325, "feet")
  12171. },
  12172. ]
  12173. ))
  12174. characterMakers.push(() => makeCharacter(
  12175. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12176. {
  12177. front: {
  12178. height: math.unit(0.3, "meters"),
  12179. weight: math.unit(3.5, "kg"),
  12180. name: "Front",
  12181. image: {
  12182. source: "./media/characters/chip/front.svg",
  12183. extra: 748 / 674
  12184. }
  12185. },
  12186. },
  12187. [
  12188. {
  12189. name: "Micro",
  12190. height: math.unit(1, "inch"),
  12191. default: true
  12192. },
  12193. ]
  12194. ))
  12195. characterMakers.push(() => makeCharacter(
  12196. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12197. {
  12198. side: {
  12199. height: math.unit(2.3, "meters"),
  12200. weight: math.unit(3500, "lb"),
  12201. name: "Side",
  12202. image: {
  12203. source: "./media/characters/torvid/side.svg",
  12204. extra: 1972 / 722,
  12205. bottom: 0.035
  12206. }
  12207. },
  12208. },
  12209. [
  12210. {
  12211. name: "Normal",
  12212. height: math.unit(2.3, "meters"),
  12213. default: true
  12214. },
  12215. ]
  12216. ))
  12217. characterMakers.push(() => makeCharacter(
  12218. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12219. {
  12220. front: {
  12221. height: math.unit(2, "meters"),
  12222. weight: math.unit(150.5, "kg"),
  12223. name: "Front",
  12224. image: {
  12225. source: "./media/characters/susan/front.svg",
  12226. extra: 693 / 635,
  12227. bottom: 0.05
  12228. }
  12229. },
  12230. },
  12231. [
  12232. {
  12233. name: "Megamacro",
  12234. height: math.unit(505, "miles"),
  12235. default: true
  12236. },
  12237. ]
  12238. ))
  12239. characterMakers.push(() => makeCharacter(
  12240. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12241. {
  12242. front: {
  12243. height: math.unit(6, "feet"),
  12244. weight: math.unit(150, "lb"),
  12245. name: "Front",
  12246. image: {
  12247. source: "./media/characters/raindrops/front.svg",
  12248. extra: 2655 / 2461,
  12249. bottom: 49 / 2705
  12250. }
  12251. },
  12252. back: {
  12253. height: math.unit(6, "feet"),
  12254. weight: math.unit(150, "lb"),
  12255. name: "Back",
  12256. image: {
  12257. source: "./media/characters/raindrops/back.svg",
  12258. extra: 2574 / 2400,
  12259. bottom: 65 / 2634
  12260. }
  12261. },
  12262. },
  12263. [
  12264. {
  12265. name: "Micro",
  12266. height: math.unit(6, "inches")
  12267. },
  12268. {
  12269. name: "Normal",
  12270. height: math.unit(6 + 2 / 12, "feet")
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(131, "feet"),
  12275. default: true
  12276. },
  12277. {
  12278. name: "Megamacro",
  12279. height: math.unit(15, "miles")
  12280. },
  12281. {
  12282. name: "Gigamacro",
  12283. height: math.unit(4000, "miles")
  12284. },
  12285. {
  12286. name: "Teramacro",
  12287. height: math.unit(315000, "miles")
  12288. },
  12289. ]
  12290. ))
  12291. characterMakers.push(() => makeCharacter(
  12292. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12293. {
  12294. front: {
  12295. height: math.unit(2.794, "meters"),
  12296. weight: math.unit(325, "kg"),
  12297. name: "Front",
  12298. image: {
  12299. source: "./media/characters/tezwa/front.svg",
  12300. extra: 2083 / 1906,
  12301. bottom: 0.031
  12302. }
  12303. },
  12304. foot: {
  12305. height: math.unit(0.687, "meters"),
  12306. name: "Foot",
  12307. image: {
  12308. source: "./media/characters/tezwa/foot.svg"
  12309. }
  12310. },
  12311. },
  12312. [
  12313. {
  12314. name: "Normal",
  12315. height: math.unit(9 + 2 / 12, "feet"),
  12316. default: true
  12317. },
  12318. ]
  12319. ))
  12320. characterMakers.push(() => makeCharacter(
  12321. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12322. {
  12323. front: {
  12324. height: math.unit(58, "feet"),
  12325. weight: math.unit(89000, "lb"),
  12326. name: "Front",
  12327. image: {
  12328. source: "./media/characters/typhus/front.svg",
  12329. extra: 816 / 800,
  12330. bottom: 0.065
  12331. }
  12332. },
  12333. },
  12334. [
  12335. {
  12336. name: "Macro",
  12337. height: math.unit(58, "feet"),
  12338. default: true
  12339. },
  12340. ]
  12341. ))
  12342. characterMakers.push(() => makeCharacter(
  12343. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12344. {
  12345. front: {
  12346. height: math.unit(12, "feet"),
  12347. weight: math.unit(6, "tonnes"),
  12348. name: "Front",
  12349. image: {
  12350. source: "./media/characters/lyra-von-wulf/front.svg",
  12351. extra: 1,
  12352. bottom: 0.10
  12353. }
  12354. },
  12355. frontMecha: {
  12356. height: math.unit(12, "feet"),
  12357. weight: math.unit(12, "tonnes"),
  12358. name: "Front (Mecha)",
  12359. image: {
  12360. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12361. extra: 1,
  12362. bottom: 0.042
  12363. }
  12364. },
  12365. maw: {
  12366. height: math.unit(2.2, "feet"),
  12367. name: "Maw",
  12368. image: {
  12369. source: "./media/characters/lyra-von-wulf/maw.svg"
  12370. }
  12371. },
  12372. },
  12373. [
  12374. {
  12375. name: "Normal",
  12376. height: math.unit(12, "feet"),
  12377. default: true
  12378. },
  12379. {
  12380. name: "Classic",
  12381. height: math.unit(50, "feet")
  12382. },
  12383. {
  12384. name: "Macro",
  12385. height: math.unit(500, "feet")
  12386. },
  12387. {
  12388. name: "Megamacro",
  12389. height: math.unit(1, "mile")
  12390. },
  12391. {
  12392. name: "Gigamacro",
  12393. height: math.unit(400, "miles")
  12394. },
  12395. {
  12396. name: "Teramacro",
  12397. height: math.unit(22000, "miles")
  12398. },
  12399. {
  12400. name: "Solarmacro",
  12401. height: math.unit(8600000, "miles")
  12402. },
  12403. {
  12404. name: "Galactic",
  12405. height: math.unit(1057000, "lightyears")
  12406. },
  12407. ]
  12408. ))
  12409. characterMakers.push(() => makeCharacter(
  12410. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12411. {
  12412. front: {
  12413. height: math.unit(6 + 10 / 12, "feet"),
  12414. weight: math.unit(150, "lb"),
  12415. name: "Front",
  12416. image: {
  12417. source: "./media/characters/dixon/front.svg",
  12418. extra: 3361 / 3209,
  12419. bottom: 0.01
  12420. }
  12421. },
  12422. },
  12423. [
  12424. {
  12425. name: "Normal",
  12426. height: math.unit(6 + 10 / 12, "feet"),
  12427. default: true
  12428. },
  12429. {
  12430. name: "Big",
  12431. height: math.unit(12, "meters")
  12432. },
  12433. {
  12434. name: "Macro",
  12435. height: math.unit(500, "meters")
  12436. },
  12437. {
  12438. name: "Megamacro",
  12439. height: math.unit(2, "km")
  12440. },
  12441. ]
  12442. ))
  12443. characterMakers.push(() => makeCharacter(
  12444. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12445. {
  12446. front: {
  12447. height: math.unit(185, "cm"),
  12448. weight: math.unit(68, "kg"),
  12449. name: "Front",
  12450. image: {
  12451. source: "./media/characters/kauko/front.svg",
  12452. extra: 1455 / 1421,
  12453. bottom: 0.03
  12454. }
  12455. },
  12456. back: {
  12457. height: math.unit(185, "cm"),
  12458. weight: math.unit(68, "kg"),
  12459. name: "Back",
  12460. image: {
  12461. source: "./media/characters/kauko/back.svg",
  12462. extra: 1455 / 1421,
  12463. bottom: 0.004
  12464. }
  12465. },
  12466. },
  12467. [
  12468. {
  12469. name: "Normal",
  12470. height: math.unit(185, "cm"),
  12471. default: true
  12472. },
  12473. ]
  12474. ))
  12475. characterMakers.push(() => makeCharacter(
  12476. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12477. {
  12478. front: {
  12479. height: math.unit(6, "feet"),
  12480. weight: math.unit(150, "kg"),
  12481. name: "Front",
  12482. image: {
  12483. source: "./media/characters/varg/front.svg",
  12484. extra: 1108 / 1018,
  12485. bottom: 0.0375
  12486. }
  12487. },
  12488. },
  12489. [
  12490. {
  12491. name: "Normal",
  12492. height: math.unit(5, "meters")
  12493. },
  12494. {
  12495. name: "Macro",
  12496. height: math.unit(200, "meters")
  12497. },
  12498. {
  12499. name: "Megamacro",
  12500. height: math.unit(20, "kilometers")
  12501. },
  12502. {
  12503. name: "True Size",
  12504. height: math.unit(211, "km"),
  12505. default: true
  12506. },
  12507. {
  12508. name: "Gigamacro",
  12509. height: math.unit(1000, "km")
  12510. },
  12511. {
  12512. name: "Gigamacro+",
  12513. height: math.unit(8000, "km")
  12514. },
  12515. {
  12516. name: "Teramacro",
  12517. height: math.unit(1000000, "km")
  12518. },
  12519. ]
  12520. ))
  12521. characterMakers.push(() => makeCharacter(
  12522. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12523. {
  12524. front: {
  12525. height: math.unit(7 + 7 / 12, "feet"),
  12526. weight: math.unit(267, "lb"),
  12527. name: "Front",
  12528. image: {
  12529. source: "./media/characters/dayza/front.svg",
  12530. extra: 1262 / 1200,
  12531. bottom: 0.035
  12532. }
  12533. },
  12534. side: {
  12535. height: math.unit(7 + 7 / 12, "feet"),
  12536. weight: math.unit(267, "lb"),
  12537. name: "Side",
  12538. image: {
  12539. source: "./media/characters/dayza/side.svg",
  12540. extra: 1295 / 1245,
  12541. bottom: 0.05
  12542. }
  12543. },
  12544. back: {
  12545. height: math.unit(7 + 7 / 12, "feet"),
  12546. weight: math.unit(267, "lb"),
  12547. name: "Back",
  12548. image: {
  12549. source: "./media/characters/dayza/back.svg",
  12550. extra: 1241 / 1170
  12551. }
  12552. },
  12553. },
  12554. [
  12555. {
  12556. name: "Normal",
  12557. height: math.unit(7 + 7 / 12, "feet"),
  12558. default: true
  12559. },
  12560. {
  12561. name: "Macro",
  12562. height: math.unit(155, "feet")
  12563. },
  12564. ]
  12565. ))
  12566. characterMakers.push(() => makeCharacter(
  12567. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12568. {
  12569. front: {
  12570. height: math.unit(6 + 5 / 12, "feet"),
  12571. weight: math.unit(160, "lb"),
  12572. name: "Front",
  12573. image: {
  12574. source: "./media/characters/xanthos/front.svg",
  12575. extra: 1,
  12576. bottom: 0.04
  12577. }
  12578. },
  12579. back: {
  12580. height: math.unit(6 + 5 / 12, "feet"),
  12581. weight: math.unit(160, "lb"),
  12582. name: "Back",
  12583. image: {
  12584. source: "./media/characters/xanthos/back.svg",
  12585. extra: 1,
  12586. bottom: 0.03
  12587. }
  12588. },
  12589. hand: {
  12590. height: math.unit(0.928, "feet"),
  12591. name: "Hand",
  12592. image: {
  12593. source: "./media/characters/xanthos/hand.svg"
  12594. }
  12595. },
  12596. foot: {
  12597. height: math.unit(1.286, "feet"),
  12598. name: "Foot",
  12599. image: {
  12600. source: "./media/characters/xanthos/foot.svg"
  12601. }
  12602. },
  12603. },
  12604. [
  12605. {
  12606. name: "Normal",
  12607. height: math.unit(6 + 5 / 12, "feet"),
  12608. default: true
  12609. },
  12610. {
  12611. name: "Normal+",
  12612. height: math.unit(6, "meters")
  12613. },
  12614. {
  12615. name: "Macro",
  12616. height: math.unit(40, "feet")
  12617. },
  12618. {
  12619. name: "Macro+",
  12620. height: math.unit(200, "meters")
  12621. },
  12622. {
  12623. name: "Megamacro",
  12624. height: math.unit(20, "km")
  12625. },
  12626. {
  12627. name: "Megamacro+",
  12628. height: math.unit(100, "km")
  12629. },
  12630. ]
  12631. ))
  12632. characterMakers.push(() => makeCharacter(
  12633. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12634. {
  12635. front: {
  12636. height: math.unit(6 + 3 / 12, "feet"),
  12637. weight: math.unit(215, "lb"),
  12638. name: "Front",
  12639. image: {
  12640. source: "./media/characters/grynn/front.svg",
  12641. extra: 4627 / 4209,
  12642. bottom: 0.047
  12643. }
  12644. },
  12645. },
  12646. [
  12647. {
  12648. name: "Micro",
  12649. height: math.unit(6, "inches")
  12650. },
  12651. {
  12652. name: "Normal",
  12653. height: math.unit(6 + 3 / 12, "feet"),
  12654. default: true
  12655. },
  12656. {
  12657. name: "Big",
  12658. height: math.unit(104, "feet")
  12659. },
  12660. {
  12661. name: "Macro",
  12662. height: math.unit(944, "feet")
  12663. },
  12664. {
  12665. name: "Macro+",
  12666. height: math.unit(9480, "feet")
  12667. },
  12668. {
  12669. name: "Megamacro",
  12670. height: math.unit(78752, "feet")
  12671. },
  12672. {
  12673. name: "Megamacro+",
  12674. height: math.unit(630128, "feet")
  12675. },
  12676. {
  12677. name: "Megamacro++",
  12678. height: math.unit(3150695, "feet")
  12679. },
  12680. ]
  12681. ))
  12682. characterMakers.push(() => makeCharacter(
  12683. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12684. {
  12685. front: {
  12686. height: math.unit(7 + 5 / 12, "feet"),
  12687. weight: math.unit(450, "lb"),
  12688. name: "Front",
  12689. image: {
  12690. source: "./media/characters/mocha-aura/front.svg",
  12691. extra: 1907 / 1817,
  12692. bottom: 0.04
  12693. }
  12694. },
  12695. back: {
  12696. height: math.unit(7 + 5 / 12, "feet"),
  12697. weight: math.unit(450, "lb"),
  12698. name: "Back",
  12699. image: {
  12700. source: "./media/characters/mocha-aura/back.svg",
  12701. extra: 1900 / 1825,
  12702. bottom: 0.045
  12703. }
  12704. },
  12705. },
  12706. [
  12707. {
  12708. name: "Nano",
  12709. height: math.unit(1, "nm")
  12710. },
  12711. {
  12712. name: "Megamicro",
  12713. height: math.unit(1, "mm")
  12714. },
  12715. {
  12716. name: "Micro",
  12717. height: math.unit(3, "inches")
  12718. },
  12719. {
  12720. name: "Normal",
  12721. height: math.unit(7 + 5 / 12, "feet"),
  12722. default: true
  12723. },
  12724. {
  12725. name: "Macro",
  12726. height: math.unit(30, "feet")
  12727. },
  12728. {
  12729. name: "Megamacro",
  12730. height: math.unit(3500, "feet")
  12731. },
  12732. {
  12733. name: "Teramacro",
  12734. height: math.unit(500000, "miles")
  12735. },
  12736. {
  12737. name: "Petamacro",
  12738. height: math.unit(50000000000000000, "parsecs")
  12739. },
  12740. ]
  12741. ))
  12742. characterMakers.push(() => makeCharacter(
  12743. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12744. {
  12745. front: {
  12746. height: math.unit(6, "feet"),
  12747. weight: math.unit(150, "lb"),
  12748. name: "Front",
  12749. image: {
  12750. source: "./media/characters/ilisha-devya/front.svg",
  12751. extra: 1,
  12752. bottom: 0.175
  12753. }
  12754. },
  12755. back: {
  12756. height: math.unit(6, "feet"),
  12757. weight: math.unit(150, "lb"),
  12758. name: "Back",
  12759. image: {
  12760. source: "./media/characters/ilisha-devya/back.svg",
  12761. extra: 1,
  12762. bottom: 0.015
  12763. }
  12764. },
  12765. },
  12766. [
  12767. {
  12768. name: "Macro",
  12769. height: math.unit(500, "feet"),
  12770. default: true
  12771. },
  12772. {
  12773. name: "Megamacro",
  12774. height: math.unit(10, "miles")
  12775. },
  12776. {
  12777. name: "Gigamacro",
  12778. height: math.unit(100000, "miles")
  12779. },
  12780. {
  12781. name: "Examacro",
  12782. height: math.unit(1e9, "lightyears")
  12783. },
  12784. {
  12785. name: "Omniversal",
  12786. height: math.unit(1e33, "lightyears")
  12787. },
  12788. {
  12789. name: "Beyond Infinite",
  12790. height: math.unit(1e100, "lightyears")
  12791. },
  12792. ]
  12793. ))
  12794. characterMakers.push(() => makeCharacter(
  12795. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12796. {
  12797. Side: {
  12798. height: math.unit(6, "feet"),
  12799. weight: math.unit(150, "lb"),
  12800. name: "Side",
  12801. image: {
  12802. source: "./media/characters/mira/side.svg",
  12803. extra: 900 / 799,
  12804. bottom: 0.02
  12805. }
  12806. },
  12807. },
  12808. [
  12809. {
  12810. name: "Human Size",
  12811. height: math.unit(6, "feet")
  12812. },
  12813. {
  12814. name: "Macro",
  12815. height: math.unit(100, "feet"),
  12816. default: true
  12817. },
  12818. {
  12819. name: "Megamacro",
  12820. height: math.unit(10, "miles")
  12821. },
  12822. {
  12823. name: "Gigamacro",
  12824. height: math.unit(25000, "miles")
  12825. },
  12826. {
  12827. name: "Teramacro",
  12828. height: math.unit(300, "AU")
  12829. },
  12830. {
  12831. name: "Full Size",
  12832. height: math.unit(4.5e10, "lightyears")
  12833. },
  12834. ]
  12835. ))
  12836. characterMakers.push(() => makeCharacter(
  12837. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12838. {
  12839. front: {
  12840. height: math.unit(6, "feet"),
  12841. weight: math.unit(150, "lb"),
  12842. name: "Front",
  12843. image: {
  12844. source: "./media/characters/holly/front.svg",
  12845. extra: 639 / 606
  12846. }
  12847. },
  12848. back: {
  12849. height: math.unit(6, "feet"),
  12850. weight: math.unit(150, "lb"),
  12851. name: "Back",
  12852. image: {
  12853. source: "./media/characters/holly/back.svg",
  12854. extra: 623 / 598
  12855. }
  12856. },
  12857. frontWorking: {
  12858. height: math.unit(6, "feet"),
  12859. weight: math.unit(150, "lb"),
  12860. name: "Front (Working)",
  12861. image: {
  12862. source: "./media/characters/holly/front-working.svg",
  12863. extra: 607 / 577,
  12864. bottom: 0.048
  12865. }
  12866. },
  12867. },
  12868. [
  12869. {
  12870. name: "Normal",
  12871. height: math.unit(12 + 3 / 12, "feet"),
  12872. default: true
  12873. },
  12874. ]
  12875. ))
  12876. characterMakers.push(() => makeCharacter(
  12877. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12878. {
  12879. front: {
  12880. height: math.unit(6, "feet"),
  12881. weight: math.unit(150, "lb"),
  12882. name: "Front",
  12883. image: {
  12884. source: "./media/characters/porter/front.svg",
  12885. extra: 1,
  12886. bottom: 0.01
  12887. }
  12888. },
  12889. frontRobes: {
  12890. height: math.unit(6, "feet"),
  12891. weight: math.unit(150, "lb"),
  12892. name: "Front (Robes)",
  12893. image: {
  12894. source: "./media/characters/porter/front-robes.svg",
  12895. extra: 1.01,
  12896. bottom: 0.01
  12897. }
  12898. },
  12899. },
  12900. [
  12901. {
  12902. name: "Normal",
  12903. height: math.unit(11 + 9 / 12, "feet"),
  12904. default: true
  12905. },
  12906. ]
  12907. ))
  12908. characterMakers.push(() => makeCharacter(
  12909. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12910. {
  12911. legendary: {
  12912. height: math.unit(6, "feet"),
  12913. weight: math.unit(150, "lb"),
  12914. name: "Legendary",
  12915. image: {
  12916. source: "./media/characters/lucy/legendary.svg",
  12917. extra: 1355 / 1100,
  12918. bottom: 0.045
  12919. }
  12920. },
  12921. },
  12922. [
  12923. {
  12924. name: "Legendary",
  12925. height: math.unit(86882 * 2, "miles"),
  12926. default: true
  12927. },
  12928. ]
  12929. ))
  12930. characterMakers.push(() => makeCharacter(
  12931. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12932. {
  12933. front: {
  12934. height: math.unit(6, "feet"),
  12935. weight: math.unit(150, "lb"),
  12936. name: "Front",
  12937. image: {
  12938. source: "./media/characters/drusilla/front.svg",
  12939. extra: 678 / 635,
  12940. bottom: 0.03
  12941. }
  12942. },
  12943. back: {
  12944. height: math.unit(6, "feet"),
  12945. weight: math.unit(150, "lb"),
  12946. name: "Back",
  12947. image: {
  12948. source: "./media/characters/drusilla/back.svg",
  12949. extra: 678 / 635,
  12950. bottom: 0.005
  12951. }
  12952. },
  12953. },
  12954. [
  12955. {
  12956. name: "Macro",
  12957. height: math.unit(100, "feet")
  12958. },
  12959. {
  12960. name: "Canon Height",
  12961. height: math.unit(2000, "feet"),
  12962. default: true
  12963. },
  12964. ]
  12965. ))
  12966. characterMakers.push(() => makeCharacter(
  12967. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12968. {
  12969. front: {
  12970. height: math.unit(6, "feet"),
  12971. weight: math.unit(180, "lb"),
  12972. name: "Front",
  12973. image: {
  12974. source: "./media/characters/renard-thatch/front.svg",
  12975. extra: 2411 / 2275,
  12976. bottom: 0.01
  12977. }
  12978. },
  12979. frontPosing: {
  12980. height: math.unit(6, "feet"),
  12981. weight: math.unit(180, "lb"),
  12982. name: "Front (Posing)",
  12983. image: {
  12984. source: "./media/characters/renard-thatch/front-posing.svg",
  12985. extra: 2381 / 2261,
  12986. bottom: 0.01
  12987. }
  12988. },
  12989. back: {
  12990. height: math.unit(6, "feet"),
  12991. weight: math.unit(180, "lb"),
  12992. name: "Back",
  12993. image: {
  12994. source: "./media/characters/renard-thatch/back.svg",
  12995. extra: 2428 / 2288
  12996. }
  12997. },
  12998. },
  12999. [
  13000. {
  13001. name: "Micro",
  13002. height: math.unit(3, "inches")
  13003. },
  13004. {
  13005. name: "Default",
  13006. height: math.unit(6, "feet"),
  13007. default: true
  13008. },
  13009. {
  13010. name: "Macro",
  13011. height: math.unit(75, "feet")
  13012. },
  13013. ]
  13014. ))
  13015. characterMakers.push(() => makeCharacter(
  13016. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13017. {
  13018. front: {
  13019. height: math.unit(1450, "feet"),
  13020. weight: math.unit(1.21e6, "tons"),
  13021. name: "Front",
  13022. image: {
  13023. source: "./media/characters/sekvra/front.svg",
  13024. extra: 1,
  13025. bottom: 0.03
  13026. }
  13027. },
  13028. frontClothed: {
  13029. height: math.unit(1450, "feet"),
  13030. weight: math.unit(1.21e6, "tons"),
  13031. name: "Front (Clothed)",
  13032. image: {
  13033. source: "./media/characters/sekvra/front-clothed.svg",
  13034. extra: 1,
  13035. bottom: 0.03
  13036. }
  13037. },
  13038. side: {
  13039. height: math.unit(1450, "feet"),
  13040. weight: math.unit(1.21e6, "tons"),
  13041. name: "Side",
  13042. image: {
  13043. source: "./media/characters/sekvra/side.svg",
  13044. extra: 1,
  13045. bottom: 0.025
  13046. }
  13047. },
  13048. back: {
  13049. height: math.unit(1450, "feet"),
  13050. weight: math.unit(1.21e6, "tons"),
  13051. name: "Back",
  13052. image: {
  13053. source: "./media/characters/sekvra/back.svg",
  13054. extra: 1,
  13055. bottom: 0.005
  13056. }
  13057. },
  13058. },
  13059. [
  13060. {
  13061. name: "Macro",
  13062. height: math.unit(1450, "feet"),
  13063. default: true
  13064. },
  13065. {
  13066. name: "Megamacro",
  13067. height: math.unit(15000, "feet")
  13068. },
  13069. ]
  13070. ))
  13071. characterMakers.push(() => makeCharacter(
  13072. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13073. {
  13074. front: {
  13075. height: math.unit(6, "feet"),
  13076. weight: math.unit(150, "lb"),
  13077. name: "Front",
  13078. image: {
  13079. source: "./media/characters/carmine/front.svg",
  13080. extra: 1,
  13081. bottom: 0.035
  13082. }
  13083. },
  13084. frontArmor: {
  13085. height: math.unit(6, "feet"),
  13086. weight: math.unit(150, "lb"),
  13087. name: "Front (Armor)",
  13088. image: {
  13089. source: "./media/characters/carmine/front-armor.svg",
  13090. extra: 1,
  13091. bottom: 0.035
  13092. }
  13093. },
  13094. },
  13095. [
  13096. {
  13097. name: "Large",
  13098. height: math.unit(1, "mile")
  13099. },
  13100. {
  13101. name: "Huge",
  13102. height: math.unit(40, "miles"),
  13103. default: true
  13104. },
  13105. {
  13106. name: "Colossal",
  13107. height: math.unit(2500, "miles")
  13108. },
  13109. ]
  13110. ))
  13111. characterMakers.push(() => makeCharacter(
  13112. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13113. {
  13114. front: {
  13115. height: math.unit(6, "feet"),
  13116. weight: math.unit(150, "lb"),
  13117. name: "Front",
  13118. image: {
  13119. source: "./media/characters/elyssia/front.svg",
  13120. extra: 2201 / 2035,
  13121. bottom: 0.05
  13122. }
  13123. },
  13124. frontClothed: {
  13125. height: math.unit(6, "feet"),
  13126. weight: math.unit(150, "lb"),
  13127. name: "Front (Clothed)",
  13128. image: {
  13129. source: "./media/characters/elyssia/front-clothed.svg",
  13130. extra: 2201 / 2035,
  13131. bottom: 0.05
  13132. }
  13133. },
  13134. back: {
  13135. height: math.unit(6, "feet"),
  13136. weight: math.unit(150, "lb"),
  13137. name: "Back",
  13138. image: {
  13139. source: "./media/characters/elyssia/back.svg",
  13140. extra: 2201 / 2035,
  13141. bottom: 0.013
  13142. }
  13143. },
  13144. },
  13145. [
  13146. {
  13147. name: "Smaller",
  13148. height: math.unit(150, "feet")
  13149. },
  13150. {
  13151. name: "Standard",
  13152. height: math.unit(1400, "feet"),
  13153. default: true
  13154. },
  13155. {
  13156. name: "Distracted",
  13157. height: math.unit(15000, "feet")
  13158. },
  13159. ]
  13160. ))
  13161. characterMakers.push(() => makeCharacter(
  13162. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13163. {
  13164. front: {
  13165. height: math.unit(7 + 4 / 12, "feet"),
  13166. weight: math.unit(500, "lb"),
  13167. name: "Front",
  13168. image: {
  13169. source: "./media/characters/geno-maxwell/front.svg",
  13170. extra: 2207 / 2040,
  13171. bottom: 0.015
  13172. }
  13173. },
  13174. },
  13175. [
  13176. {
  13177. name: "Micro",
  13178. height: math.unit(3, "inches")
  13179. },
  13180. {
  13181. name: "Normal",
  13182. height: math.unit(7 + 4 / 12, "feet"),
  13183. default: true
  13184. },
  13185. {
  13186. name: "Macro",
  13187. height: math.unit(220, "feet")
  13188. },
  13189. {
  13190. name: "Megamacro",
  13191. height: math.unit(11, "miles")
  13192. },
  13193. ]
  13194. ))
  13195. characterMakers.push(() => makeCharacter(
  13196. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13197. {
  13198. front: {
  13199. height: math.unit(7 + 4 / 12, "feet"),
  13200. weight: math.unit(500, "lb"),
  13201. name: "Front",
  13202. image: {
  13203. source: "./media/characters/regena-maxwell/front.svg",
  13204. extra: 3115 / 2770,
  13205. bottom: 0.02
  13206. }
  13207. },
  13208. },
  13209. [
  13210. {
  13211. name: "Normal",
  13212. height: math.unit(7 + 4 / 12, "feet"),
  13213. default: true
  13214. },
  13215. {
  13216. name: "Macro",
  13217. height: math.unit(220, "feet")
  13218. },
  13219. {
  13220. name: "Megamacro",
  13221. height: math.unit(11, "miles")
  13222. },
  13223. ]
  13224. ))
  13225. characterMakers.push(() => makeCharacter(
  13226. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13227. {
  13228. front: {
  13229. height: math.unit(6, "feet"),
  13230. weight: math.unit(150, "lb"),
  13231. name: "Front",
  13232. image: {
  13233. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13234. extra: 860 / 690,
  13235. bottom: 0.03
  13236. }
  13237. },
  13238. },
  13239. [
  13240. {
  13241. name: "Normal",
  13242. height: math.unit(1.7, "meters"),
  13243. default: true
  13244. },
  13245. ]
  13246. ))
  13247. characterMakers.push(() => makeCharacter(
  13248. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13249. {
  13250. front: {
  13251. height: math.unit(6, "feet"),
  13252. weight: math.unit(150, "lb"),
  13253. name: "Front",
  13254. image: {
  13255. source: "./media/characters/quilly/front.svg",
  13256. extra: 890 / 776
  13257. }
  13258. },
  13259. },
  13260. [
  13261. {
  13262. name: "Gigamacro",
  13263. height: math.unit(404090, "miles"),
  13264. default: true
  13265. },
  13266. ]
  13267. ))
  13268. characterMakers.push(() => makeCharacter(
  13269. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13270. {
  13271. front: {
  13272. height: math.unit(7 + 8 / 12, "feet"),
  13273. weight: math.unit(350, "lb"),
  13274. name: "Front",
  13275. image: {
  13276. source: "./media/characters/tempest/front.svg",
  13277. extra: 1175 / 1086,
  13278. bottom: 0.02
  13279. }
  13280. },
  13281. },
  13282. [
  13283. {
  13284. name: "Normal",
  13285. height: math.unit(7 + 8 / 12, "feet"),
  13286. default: true
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13292. {
  13293. side: {
  13294. height: math.unit(4 + 5 / 12, "feet"),
  13295. weight: math.unit(80, "lb"),
  13296. name: "Side",
  13297. image: {
  13298. source: "./media/characters/rodger/side.svg",
  13299. extra: 1235 / 1118
  13300. }
  13301. },
  13302. },
  13303. [
  13304. {
  13305. name: "Micro",
  13306. height: math.unit(1, "inch")
  13307. },
  13308. {
  13309. name: "Normal",
  13310. height: math.unit(4 + 5 / 12, "feet"),
  13311. default: true
  13312. },
  13313. {
  13314. name: "Macro",
  13315. height: math.unit(120, "feet")
  13316. },
  13317. ]
  13318. ))
  13319. characterMakers.push(() => makeCharacter(
  13320. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13321. {
  13322. front: {
  13323. height: math.unit(6, "feet"),
  13324. weight: math.unit(150, "lb"),
  13325. name: "Front",
  13326. image: {
  13327. source: "./media/characters/danyel/front.svg",
  13328. extra: 1185 / 1123,
  13329. bottom: 0.05
  13330. }
  13331. },
  13332. },
  13333. [
  13334. {
  13335. name: "Shrunken",
  13336. height: math.unit(0.5, "mm")
  13337. },
  13338. {
  13339. name: "Micro",
  13340. height: math.unit(1, "mm"),
  13341. default: true
  13342. },
  13343. {
  13344. name: "Upsized",
  13345. height: math.unit(5 + 5 / 12, "feet")
  13346. },
  13347. ]
  13348. ))
  13349. characterMakers.push(() => makeCharacter(
  13350. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13351. {
  13352. front: {
  13353. height: math.unit(5 + 6 / 12, "feet"),
  13354. weight: math.unit(200, "lb"),
  13355. name: "Front",
  13356. image: {
  13357. source: "./media/characters/vivian-bijoux/front.svg",
  13358. extra: 1,
  13359. bottom: 0.072
  13360. }
  13361. },
  13362. },
  13363. [
  13364. {
  13365. name: "Normal",
  13366. height: math.unit(5 + 6 / 12, "feet"),
  13367. default: true
  13368. },
  13369. {
  13370. name: "Bad Dream",
  13371. height: math.unit(500, "feet")
  13372. },
  13373. {
  13374. name: "Nightmare",
  13375. height: math.unit(500, "miles")
  13376. },
  13377. ]
  13378. ))
  13379. characterMakers.push(() => makeCharacter(
  13380. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13381. {
  13382. front: {
  13383. height: math.unit(6 + 1 / 12, "feet"),
  13384. weight: math.unit(260, "lb"),
  13385. name: "Front",
  13386. image: {
  13387. source: "./media/characters/zeta/front.svg",
  13388. extra: 1968 / 1889,
  13389. bottom: 0.06
  13390. }
  13391. },
  13392. back: {
  13393. height: math.unit(6 + 1 / 12, "feet"),
  13394. weight: math.unit(260, "lb"),
  13395. name: "Back",
  13396. image: {
  13397. source: "./media/characters/zeta/back.svg",
  13398. extra: 1944 / 1858,
  13399. bottom: 0.03
  13400. }
  13401. },
  13402. hand: {
  13403. height: math.unit(1.112, "feet"),
  13404. name: "Hand",
  13405. image: {
  13406. source: "./media/characters/zeta/hand.svg"
  13407. }
  13408. },
  13409. foot: {
  13410. height: math.unit(1.48, "feet"),
  13411. name: "Foot",
  13412. image: {
  13413. source: "./media/characters/zeta/foot.svg"
  13414. }
  13415. },
  13416. },
  13417. [
  13418. {
  13419. name: "Micro",
  13420. height: math.unit(6, "inches")
  13421. },
  13422. {
  13423. name: "Normal",
  13424. height: math.unit(6 + 1 / 12, "feet"),
  13425. default: true
  13426. },
  13427. {
  13428. name: "Macro",
  13429. height: math.unit(20, "feet")
  13430. },
  13431. ]
  13432. ))
  13433. characterMakers.push(() => makeCharacter(
  13434. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13435. {
  13436. front: {
  13437. height: math.unit(6, "feet"),
  13438. weight: math.unit(150, "lb"),
  13439. name: "Front",
  13440. image: {
  13441. source: "./media/characters/jamie-larsen/front.svg",
  13442. extra: 962 / 933,
  13443. bottom: 0.02
  13444. }
  13445. },
  13446. back: {
  13447. height: math.unit(6, "feet"),
  13448. weight: math.unit(150, "lb"),
  13449. name: "Back",
  13450. image: {
  13451. source: "./media/characters/jamie-larsen/back.svg",
  13452. extra: 997 / 946
  13453. }
  13454. },
  13455. },
  13456. [
  13457. {
  13458. name: "Macro",
  13459. height: math.unit(28 + 7 / 12, "feet"),
  13460. default: true
  13461. },
  13462. {
  13463. name: "Macro+",
  13464. height: math.unit(180, "feet")
  13465. },
  13466. {
  13467. name: "Megamacro",
  13468. height: math.unit(10, "miles")
  13469. },
  13470. {
  13471. name: "Gigamacro",
  13472. height: math.unit(200000, "miles")
  13473. },
  13474. ]
  13475. ))
  13476. characterMakers.push(() => makeCharacter(
  13477. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13478. {
  13479. front: {
  13480. height: math.unit(6, "feet"),
  13481. weight: math.unit(120, "lb"),
  13482. name: "Front",
  13483. image: {
  13484. source: "./media/characters/vance/front.svg",
  13485. extra: 1980 / 1890,
  13486. bottom: 0.09
  13487. }
  13488. },
  13489. back: {
  13490. height: math.unit(6, "feet"),
  13491. weight: math.unit(120, "lb"),
  13492. name: "Back",
  13493. image: {
  13494. source: "./media/characters/vance/back.svg",
  13495. extra: 2081 / 1994,
  13496. bottom: 0.014
  13497. }
  13498. },
  13499. hand: {
  13500. height: math.unit(0.88, "feet"),
  13501. name: "Hand",
  13502. image: {
  13503. source: "./media/characters/vance/hand.svg"
  13504. }
  13505. },
  13506. foot: {
  13507. height: math.unit(0.64, "feet"),
  13508. name: "Foot",
  13509. image: {
  13510. source: "./media/characters/vance/foot.svg"
  13511. }
  13512. },
  13513. },
  13514. [
  13515. {
  13516. name: "Small",
  13517. height: math.unit(90, "feet"),
  13518. default: true
  13519. },
  13520. {
  13521. name: "Macro",
  13522. height: math.unit(100, "meters")
  13523. },
  13524. {
  13525. name: "Megamacro",
  13526. height: math.unit(15, "miles")
  13527. },
  13528. ]
  13529. ))
  13530. characterMakers.push(() => makeCharacter(
  13531. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13532. {
  13533. front: {
  13534. height: math.unit(6, "feet"),
  13535. weight: math.unit(180, "lb"),
  13536. name: "Front",
  13537. image: {
  13538. source: "./media/characters/xochitl/front.svg",
  13539. extra: 2297 / 2261,
  13540. bottom: 0.065
  13541. }
  13542. },
  13543. back: {
  13544. height: math.unit(6, "feet"),
  13545. weight: math.unit(180, "lb"),
  13546. name: "Back",
  13547. image: {
  13548. source: "./media/characters/xochitl/back.svg",
  13549. extra: 2386 / 2354,
  13550. bottom: 0.01
  13551. }
  13552. },
  13553. foot: {
  13554. height: math.unit(6 / 5 * 1.15, "feet"),
  13555. weight: math.unit(150, "lb"),
  13556. name: "Foot",
  13557. image: {
  13558. source: "./media/characters/xochitl/foot.svg"
  13559. }
  13560. },
  13561. },
  13562. [
  13563. {
  13564. name: "Macro",
  13565. height: math.unit(80, "feet")
  13566. },
  13567. {
  13568. name: "Macro+",
  13569. height: math.unit(400, "feet"),
  13570. default: true
  13571. },
  13572. {
  13573. name: "Gigamacro",
  13574. height: math.unit(80000, "miles")
  13575. },
  13576. {
  13577. name: "Gigamacro+",
  13578. height: math.unit(400000, "miles")
  13579. },
  13580. {
  13581. name: "Teramacro",
  13582. height: math.unit(300, "AU")
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13588. {
  13589. front: {
  13590. height: math.unit(6, "feet"),
  13591. weight: math.unit(150, "lb"),
  13592. name: "Front",
  13593. image: {
  13594. source: "./media/characters/vincent/front.svg",
  13595. extra: 1130 / 1080,
  13596. bottom: 0.055
  13597. }
  13598. },
  13599. beak: {
  13600. height: math.unit(6 * 0.1, "feet"),
  13601. name: "Beak",
  13602. image: {
  13603. source: "./media/characters/vincent/beak.svg"
  13604. }
  13605. },
  13606. hand: {
  13607. height: math.unit(6 * 0.85, "feet"),
  13608. weight: math.unit(150, "lb"),
  13609. name: "Hand",
  13610. image: {
  13611. source: "./media/characters/vincent/hand.svg"
  13612. }
  13613. },
  13614. foot: {
  13615. height: math.unit(6 * 0.19, "feet"),
  13616. weight: math.unit(150, "lb"),
  13617. name: "Foot",
  13618. image: {
  13619. source: "./media/characters/vincent/foot.svg"
  13620. }
  13621. },
  13622. },
  13623. [
  13624. {
  13625. name: "Base",
  13626. height: math.unit(6 + 5 / 12, "feet"),
  13627. default: true
  13628. },
  13629. {
  13630. name: "Macro",
  13631. height: math.unit(300, "feet")
  13632. },
  13633. {
  13634. name: "Megamacro",
  13635. height: math.unit(2, "miles")
  13636. },
  13637. {
  13638. name: "Gigamacro",
  13639. height: math.unit(1000, "miles")
  13640. },
  13641. ]
  13642. ))
  13643. characterMakers.push(() => makeCharacter(
  13644. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13645. {
  13646. front: {
  13647. height: math.unit(2, "meters"),
  13648. weight: math.unit(500, "kg"),
  13649. name: "Front",
  13650. image: {
  13651. source: "./media/characters/coatl/front.svg",
  13652. extra: 3948 / 3500,
  13653. bottom: 0.082
  13654. }
  13655. },
  13656. },
  13657. [
  13658. {
  13659. name: "Normal",
  13660. height: math.unit(4, "meters")
  13661. },
  13662. {
  13663. name: "Macro",
  13664. height: math.unit(100, "meters"),
  13665. default: true
  13666. },
  13667. {
  13668. name: "Macro+",
  13669. height: math.unit(300, "meters")
  13670. },
  13671. {
  13672. name: "Megamacro",
  13673. height: math.unit(3, "gigameters")
  13674. },
  13675. {
  13676. name: "Megamacro+",
  13677. height: math.unit(300, "terameters")
  13678. },
  13679. {
  13680. name: "Megamacro++",
  13681. height: math.unit(3, "lightyears")
  13682. },
  13683. ]
  13684. ))
  13685. characterMakers.push(() => makeCharacter(
  13686. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13687. {
  13688. front: {
  13689. height: math.unit(6, "feet"),
  13690. weight: math.unit(50, "kg"),
  13691. name: "front",
  13692. image: {
  13693. source: "./media/characters/shiroryu/front.svg",
  13694. extra: 1990 / 1935
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Mortal Mingling",
  13701. height: math.unit(3, "meters")
  13702. },
  13703. {
  13704. name: "Kaiju-ish",
  13705. height: math.unit(250, "meters")
  13706. },
  13707. {
  13708. name: "Somewhat Godly",
  13709. height: math.unit(400, "km"),
  13710. default: true
  13711. },
  13712. {
  13713. name: "Planetary",
  13714. height: math.unit(300, "megameters")
  13715. },
  13716. {
  13717. name: "Galaxy-dwarfing",
  13718. height: math.unit(450, "kiloparsecs")
  13719. },
  13720. {
  13721. name: "Universe Eater",
  13722. height: math.unit(150, "gigaparsecs")
  13723. },
  13724. {
  13725. name: "Almost Immeasurable",
  13726. height: math.unit(1.3e266, "yottaparsecs")
  13727. },
  13728. ]
  13729. ))
  13730. characterMakers.push(() => makeCharacter(
  13731. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13732. {
  13733. front: {
  13734. height: math.unit(6, "feet"),
  13735. weight: math.unit(150, "lb"),
  13736. name: "Front",
  13737. image: {
  13738. source: "./media/characters/umeko/front.svg",
  13739. extra: 1,
  13740. bottom: 0.019
  13741. }
  13742. },
  13743. frontArmored: {
  13744. height: math.unit(6, "feet"),
  13745. weight: math.unit(150, "lb"),
  13746. name: "Front (Armored)",
  13747. image: {
  13748. source: "./media/characters/umeko/front-armored.svg",
  13749. extra: 1,
  13750. bottom: 0.021
  13751. }
  13752. },
  13753. },
  13754. [
  13755. {
  13756. name: "Macro",
  13757. height: math.unit(220, "feet"),
  13758. default: true
  13759. },
  13760. {
  13761. name: "Guardian Dragon",
  13762. height: math.unit(50, "miles")
  13763. },
  13764. {
  13765. name: "Cosmic",
  13766. height: math.unit(800000, "miles")
  13767. },
  13768. ]
  13769. ))
  13770. characterMakers.push(() => makeCharacter(
  13771. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13772. {
  13773. front: {
  13774. height: math.unit(6, "feet"),
  13775. weight: math.unit(150, "lb"),
  13776. name: "Front",
  13777. image: {
  13778. source: "./media/characters/cassidy/front.svg",
  13779. extra: 1,
  13780. bottom: 0.043
  13781. }
  13782. },
  13783. },
  13784. [
  13785. {
  13786. name: "Canon Height",
  13787. height: math.unit(120, "feet"),
  13788. default: true
  13789. },
  13790. {
  13791. name: "Macro+",
  13792. height: math.unit(400, "feet")
  13793. },
  13794. {
  13795. name: "Macro++",
  13796. height: math.unit(4000, "feet")
  13797. },
  13798. {
  13799. name: "Megamacro",
  13800. height: math.unit(3, "miles")
  13801. },
  13802. ]
  13803. ))
  13804. characterMakers.push(() => makeCharacter(
  13805. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13806. {
  13807. front: {
  13808. height: math.unit(6, "feet"),
  13809. weight: math.unit(150, "lb"),
  13810. name: "Front",
  13811. image: {
  13812. source: "./media/characters/isaac/front.svg",
  13813. extra: 896 / 815,
  13814. bottom: 0.11
  13815. }
  13816. },
  13817. },
  13818. [
  13819. {
  13820. name: "Human Size",
  13821. height: math.unit(8, "feet"),
  13822. default: true
  13823. },
  13824. {
  13825. name: "Macro",
  13826. height: math.unit(400, "feet")
  13827. },
  13828. {
  13829. name: "Megamacro",
  13830. height: math.unit(50, "miles")
  13831. },
  13832. {
  13833. name: "Canon Height",
  13834. height: math.unit(200, "AU")
  13835. },
  13836. ]
  13837. ))
  13838. characterMakers.push(() => makeCharacter(
  13839. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13840. {
  13841. front: {
  13842. height: math.unit(6, "feet"),
  13843. weight: math.unit(72, "kg"),
  13844. name: "Front",
  13845. image: {
  13846. source: "./media/characters/sleekit/front.svg",
  13847. extra: 4693 / 4487,
  13848. bottom: 0.012
  13849. }
  13850. },
  13851. },
  13852. [
  13853. {
  13854. name: "Minimum Height",
  13855. height: math.unit(10, "meters")
  13856. },
  13857. {
  13858. name: "Smaller",
  13859. height: math.unit(25, "meters")
  13860. },
  13861. {
  13862. name: "Larger",
  13863. height: math.unit(38, "meters"),
  13864. default: true
  13865. },
  13866. {
  13867. name: "Maximum height",
  13868. height: math.unit(100, "meters")
  13869. },
  13870. ]
  13871. ))
  13872. characterMakers.push(() => makeCharacter(
  13873. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13874. {
  13875. front: {
  13876. height: math.unit(6, "feet"),
  13877. weight: math.unit(150, "lb"),
  13878. name: "Front",
  13879. image: {
  13880. source: "./media/characters/nillia/front.svg",
  13881. extra: 2195 / 2037,
  13882. bottom: 0.005
  13883. }
  13884. },
  13885. back: {
  13886. height: math.unit(6, "feet"),
  13887. weight: math.unit(150, "lb"),
  13888. name: "Back",
  13889. image: {
  13890. source: "./media/characters/nillia/back.svg",
  13891. extra: 2195 / 2037,
  13892. bottom: 0.005
  13893. }
  13894. },
  13895. },
  13896. [
  13897. {
  13898. name: "Canon Height",
  13899. height: math.unit(489, "feet"),
  13900. default: true
  13901. }
  13902. ]
  13903. ))
  13904. characterMakers.push(() => makeCharacter(
  13905. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13906. {
  13907. front: {
  13908. height: math.unit(6, "feet"),
  13909. weight: math.unit(150, "lb"),
  13910. name: "Front",
  13911. image: {
  13912. source: "./media/characters/mesmyriza/front.svg",
  13913. extra: 2067 / 1784,
  13914. bottom: 0.035
  13915. }
  13916. },
  13917. foot: {
  13918. height: math.unit(6 / (250 / 35), "feet"),
  13919. name: "Foot",
  13920. image: {
  13921. source: "./media/characters/mesmyriza/foot.svg"
  13922. }
  13923. },
  13924. },
  13925. [
  13926. {
  13927. name: "Macro",
  13928. height: math.unit(457, "meters"),
  13929. default: true
  13930. },
  13931. {
  13932. name: "Megamacro",
  13933. height: math.unit(8, "megameters")
  13934. },
  13935. ]
  13936. ))
  13937. characterMakers.push(() => makeCharacter(
  13938. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13939. {
  13940. front: {
  13941. height: math.unit(6, "feet"),
  13942. weight: math.unit(250, "lb"),
  13943. name: "Front",
  13944. image: {
  13945. source: "./media/characters/saudade/front.svg",
  13946. extra: 1172 / 1139,
  13947. bottom: 0.035
  13948. }
  13949. },
  13950. },
  13951. [
  13952. {
  13953. name: "Micro",
  13954. height: math.unit(3, "inches")
  13955. },
  13956. {
  13957. name: "Normal",
  13958. height: math.unit(6, "feet"),
  13959. default: true
  13960. },
  13961. {
  13962. name: "Macro",
  13963. height: math.unit(50, "feet")
  13964. },
  13965. {
  13966. name: "Megamacro",
  13967. height: math.unit(2800, "feet")
  13968. },
  13969. ]
  13970. ))
  13971. characterMakers.push(() => makeCharacter(
  13972. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13973. {
  13974. front: {
  13975. height: math.unit(5 + 4 / 12, "feet"),
  13976. weight: math.unit(100, "lb"),
  13977. name: "Front",
  13978. image: {
  13979. source: "./media/characters/keireer/front.svg",
  13980. extra: 716 / 666,
  13981. bottom: 0.05
  13982. }
  13983. },
  13984. },
  13985. [
  13986. {
  13987. name: "Normal",
  13988. height: math.unit(5 + 4 / 12, "feet"),
  13989. default: true
  13990. },
  13991. ]
  13992. ))
  13993. characterMakers.push(() => makeCharacter(
  13994. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13995. {
  13996. front: {
  13997. height: math.unit(6, "feet"),
  13998. weight: math.unit(90, "kg"),
  13999. name: "Front",
  14000. image: {
  14001. source: "./media/characters/mirja/front.svg",
  14002. extra: 1789 / 1683,
  14003. bottom: 0.05
  14004. }
  14005. },
  14006. frontDressed: {
  14007. height: math.unit(6, "feet"),
  14008. weight: math.unit(90, "lb"),
  14009. name: "Front (Dressed)",
  14010. image: {
  14011. source: "./media/characters/mirja/front-dressed.svg",
  14012. extra: 1789 / 1683,
  14013. bottom: 0.05
  14014. }
  14015. },
  14016. back: {
  14017. height: math.unit(6, "feet"),
  14018. weight: math.unit(90, "lb"),
  14019. name: "Back",
  14020. image: {
  14021. source: "./media/characters/mirja/back.svg",
  14022. extra: 953 / 917,
  14023. bottom: 0.017
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "\"Incognito\"",
  14030. height: math.unit(3, "meters")
  14031. },
  14032. {
  14033. name: "Strolling Size",
  14034. height: math.unit(15, "km")
  14035. },
  14036. {
  14037. name: "Larger Strolling Size",
  14038. height: math.unit(400, "km")
  14039. },
  14040. {
  14041. name: "Preferred Size",
  14042. height: math.unit(5000, "km")
  14043. },
  14044. {
  14045. name: "True Size",
  14046. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14047. default: true
  14048. },
  14049. ]
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14053. {
  14054. front: {
  14055. height: math.unit(15, "feet"),
  14056. weight: math.unit(880, "kg"),
  14057. name: "Front",
  14058. image: {
  14059. source: "./media/characters/nightraver/front.svg",
  14060. extra: 2444 / 2160,
  14061. bottom: 0.027
  14062. }
  14063. },
  14064. back: {
  14065. height: math.unit(15, "feet"),
  14066. weight: math.unit(880, "kg"),
  14067. name: "Back",
  14068. image: {
  14069. source: "./media/characters/nightraver/back.svg",
  14070. extra: 2309 / 2180,
  14071. bottom: 0.005
  14072. }
  14073. },
  14074. sole: {
  14075. height: math.unit(2.878, "feet"),
  14076. name: "Sole",
  14077. image: {
  14078. source: "./media/characters/nightraver/sole.svg"
  14079. }
  14080. },
  14081. foot: {
  14082. height: math.unit(2.285, "feet"),
  14083. name: "Foot",
  14084. image: {
  14085. source: "./media/characters/nightraver/foot.svg"
  14086. }
  14087. },
  14088. maw: {
  14089. height: math.unit(2.67, "feet"),
  14090. name: "Maw",
  14091. image: {
  14092. source: "./media/characters/nightraver/maw.svg"
  14093. }
  14094. },
  14095. },
  14096. [
  14097. {
  14098. name: "Micro",
  14099. height: math.unit(1, "cm")
  14100. },
  14101. {
  14102. name: "Normal",
  14103. height: math.unit(15, "feet"),
  14104. default: true
  14105. },
  14106. {
  14107. name: "Macro",
  14108. height: math.unit(300, "feet")
  14109. },
  14110. {
  14111. name: "Megamacro",
  14112. height: math.unit(300, "miles")
  14113. },
  14114. {
  14115. name: "Gigamacro",
  14116. height: math.unit(10000, "miles")
  14117. },
  14118. ]
  14119. ))
  14120. characterMakers.push(() => makeCharacter(
  14121. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14122. {
  14123. side: {
  14124. height: math.unit(2, "inches"),
  14125. weight: math.unit(5, "grams"),
  14126. name: "Side",
  14127. image: {
  14128. source: "./media/characters/arc/side.svg"
  14129. }
  14130. },
  14131. },
  14132. [
  14133. {
  14134. name: "Micro",
  14135. height: math.unit(2, "inches"),
  14136. default: true
  14137. },
  14138. ]
  14139. ))
  14140. characterMakers.push(() => makeCharacter(
  14141. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14142. {
  14143. front: {
  14144. height: math.unit(1.1938, "meters"),
  14145. weight: math.unit(54, "kg"),
  14146. name: "Front",
  14147. image: {
  14148. source: "./media/characters/nebula-shahar/front.svg",
  14149. extra: 1642 / 1436,
  14150. bottom: 0.06
  14151. }
  14152. },
  14153. },
  14154. [
  14155. {
  14156. name: "Megamicro",
  14157. height: math.unit(0.3, "mm")
  14158. },
  14159. {
  14160. name: "Micro",
  14161. height: math.unit(3, "cm")
  14162. },
  14163. {
  14164. name: "Normal",
  14165. height: math.unit(138, "cm"),
  14166. default: true
  14167. },
  14168. {
  14169. name: "Macro",
  14170. height: math.unit(30, "m")
  14171. },
  14172. ]
  14173. ))
  14174. characterMakers.push(() => makeCharacter(
  14175. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14176. {
  14177. front: {
  14178. height: math.unit(5.24, "feet"),
  14179. weight: math.unit(150, "lb"),
  14180. name: "Front",
  14181. image: {
  14182. source: "./media/characters/shayla/front.svg",
  14183. extra: 1512 / 1414,
  14184. bottom: 0.01
  14185. }
  14186. },
  14187. back: {
  14188. height: math.unit(5.24, "feet"),
  14189. weight: math.unit(150, "lb"),
  14190. name: "Back",
  14191. image: {
  14192. source: "./media/characters/shayla/back.svg",
  14193. extra: 1512 / 1414
  14194. }
  14195. },
  14196. hand: {
  14197. height: math.unit(0.7781496062992126, "feet"),
  14198. name: "Hand",
  14199. image: {
  14200. source: "./media/characters/shayla/hand.svg"
  14201. }
  14202. },
  14203. foot: {
  14204. height: math.unit(1.4206036745406823, "feet"),
  14205. name: "Foot",
  14206. image: {
  14207. source: "./media/characters/shayla/foot.svg"
  14208. }
  14209. },
  14210. },
  14211. [
  14212. {
  14213. name: "Micro",
  14214. height: math.unit(0.32, "feet")
  14215. },
  14216. {
  14217. name: "Normal",
  14218. height: math.unit(5.24, "feet"),
  14219. default: true
  14220. },
  14221. {
  14222. name: "Macro",
  14223. height: math.unit(492.12, "feet")
  14224. },
  14225. {
  14226. name: "Megamacro",
  14227. height: math.unit(186.41, "miles")
  14228. },
  14229. ]
  14230. ))
  14231. characterMakers.push(() => makeCharacter(
  14232. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14233. {
  14234. front: {
  14235. height: math.unit(2.2, "m"),
  14236. weight: math.unit(120, "kg"),
  14237. name: "Front",
  14238. image: {
  14239. source: "./media/characters/pia-jr/front.svg",
  14240. extra: 1000 / 970,
  14241. bottom: 0.035
  14242. }
  14243. },
  14244. hand: {
  14245. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14246. name: "Hand",
  14247. image: {
  14248. source: "./media/characters/pia-jr/hand.svg"
  14249. }
  14250. },
  14251. paw: {
  14252. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14253. name: "Paw",
  14254. image: {
  14255. source: "./media/characters/pia-jr/paw.svg"
  14256. }
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Micro",
  14262. height: math.unit(1.2, "cm")
  14263. },
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(2.2, "m"),
  14267. default: true
  14268. },
  14269. {
  14270. name: "Macro",
  14271. height: math.unit(180, "m")
  14272. },
  14273. {
  14274. name: "Megamacro",
  14275. height: math.unit(420, "km")
  14276. },
  14277. ]
  14278. ))
  14279. characterMakers.push(() => makeCharacter(
  14280. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14281. {
  14282. front: {
  14283. height: math.unit(2, "m"),
  14284. weight: math.unit(115, "kg"),
  14285. name: "Front",
  14286. image: {
  14287. source: "./media/characters/pia-sr/front.svg",
  14288. extra: 760 / 730,
  14289. bottom: 0.015
  14290. }
  14291. },
  14292. back: {
  14293. height: math.unit(2, "m"),
  14294. weight: math.unit(115, "kg"),
  14295. name: "Back",
  14296. image: {
  14297. source: "./media/characters/pia-sr/back.svg",
  14298. extra: 760 / 730,
  14299. bottom: 0.01
  14300. }
  14301. },
  14302. hand: {
  14303. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14304. name: "Hand",
  14305. image: {
  14306. source: "./media/characters/pia-sr/hand.svg"
  14307. }
  14308. },
  14309. foot: {
  14310. height: math.unit(1.83, "feet"),
  14311. name: "Foot",
  14312. image: {
  14313. source: "./media/characters/pia-sr/foot.svg"
  14314. }
  14315. },
  14316. },
  14317. [
  14318. {
  14319. name: "Micro",
  14320. height: math.unit(88, "mm")
  14321. },
  14322. {
  14323. name: "Normal",
  14324. height: math.unit(2, "m"),
  14325. default: true
  14326. },
  14327. {
  14328. name: "Macro",
  14329. height: math.unit(200, "m")
  14330. },
  14331. {
  14332. name: "Megamacro",
  14333. height: math.unit(420, "km")
  14334. },
  14335. ]
  14336. ))
  14337. characterMakers.push(() => makeCharacter(
  14338. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14339. {
  14340. front: {
  14341. height: math.unit(8 + 2 / 12, "feet"),
  14342. weight: math.unit(300, "lb"),
  14343. name: "Front",
  14344. image: {
  14345. source: "./media/characters/kibibyte/front.svg",
  14346. extra: 2221 / 2098,
  14347. bottom: 0.04
  14348. }
  14349. },
  14350. },
  14351. [
  14352. {
  14353. name: "Normal",
  14354. height: math.unit(8 + 2 / 12, "feet"),
  14355. default: true
  14356. },
  14357. {
  14358. name: "Socialable Macro",
  14359. height: math.unit(50, "feet")
  14360. },
  14361. {
  14362. name: "Macro",
  14363. height: math.unit(300, "feet")
  14364. },
  14365. {
  14366. name: "Megamacro",
  14367. height: math.unit(500, "miles")
  14368. },
  14369. ]
  14370. ))
  14371. characterMakers.push(() => makeCharacter(
  14372. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14373. {
  14374. front: {
  14375. height: math.unit(6, "feet"),
  14376. weight: math.unit(150, "lb"),
  14377. name: "Front",
  14378. image: {
  14379. source: "./media/characters/felix/front.svg",
  14380. extra: 762 / 722,
  14381. bottom: 0.02
  14382. }
  14383. },
  14384. frontClothed: {
  14385. height: math.unit(6, "feet"),
  14386. weight: math.unit(150, "lb"),
  14387. name: "Front (Clothed)",
  14388. image: {
  14389. source: "./media/characters/felix/front-clothed.svg",
  14390. extra: 762 / 722,
  14391. bottom: 0.02
  14392. }
  14393. },
  14394. },
  14395. [
  14396. {
  14397. name: "Normal",
  14398. height: math.unit(6 + 8 / 12, "feet"),
  14399. default: true
  14400. },
  14401. {
  14402. name: "Macro",
  14403. height: math.unit(2600, "feet")
  14404. },
  14405. {
  14406. name: "Megamacro",
  14407. height: math.unit(450, "miles")
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14413. {
  14414. front: {
  14415. height: math.unit(6 + 1 / 12, "feet"),
  14416. weight: math.unit(250, "lb"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/tobo/front.svg",
  14420. extra: 608 / 586,
  14421. bottom: 0.023
  14422. }
  14423. },
  14424. back: {
  14425. height: math.unit(6 + 1 / 12, "feet"),
  14426. weight: math.unit(250, "lb"),
  14427. name: "Back",
  14428. image: {
  14429. source: "./media/characters/tobo/back.svg",
  14430. extra: 608 / 586
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Nano",
  14437. height: math.unit(2, "nm")
  14438. },
  14439. {
  14440. name: "Megamicro",
  14441. height: math.unit(0.1, "mm")
  14442. },
  14443. {
  14444. name: "Micro",
  14445. height: math.unit(1, "inch"),
  14446. default: true
  14447. },
  14448. {
  14449. name: "Human-sized",
  14450. height: math.unit(6 + 1 / 12, "feet")
  14451. },
  14452. {
  14453. name: "Macro",
  14454. height: math.unit(250, "feet")
  14455. },
  14456. {
  14457. name: "Megamacro",
  14458. height: math.unit(75, "miles")
  14459. },
  14460. {
  14461. name: "Texas-sized",
  14462. height: math.unit(750, "miles")
  14463. },
  14464. {
  14465. name: "Teramacro",
  14466. height: math.unit(50000, "miles")
  14467. },
  14468. ]
  14469. ))
  14470. characterMakers.push(() => makeCharacter(
  14471. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14472. {
  14473. front: {
  14474. height: math.unit(6, "feet"),
  14475. weight: math.unit(269, "lb"),
  14476. name: "Front",
  14477. image: {
  14478. source: "./media/characters/danny-kapowsky/front.svg",
  14479. extra: 766 / 736,
  14480. bottom: 0.044
  14481. }
  14482. },
  14483. back: {
  14484. height: math.unit(6, "feet"),
  14485. weight: math.unit(269, "lb"),
  14486. name: "Back",
  14487. image: {
  14488. source: "./media/characters/danny-kapowsky/back.svg",
  14489. extra: 797 / 760,
  14490. bottom: 0.025
  14491. }
  14492. },
  14493. },
  14494. [
  14495. {
  14496. name: "Macro",
  14497. height: math.unit(150, "feet"),
  14498. default: true
  14499. },
  14500. {
  14501. name: "Macro+",
  14502. height: math.unit(200, "feet")
  14503. },
  14504. {
  14505. name: "Macro++",
  14506. height: math.unit(300, "feet")
  14507. },
  14508. {
  14509. name: "Macro+++",
  14510. height: math.unit(400, "feet")
  14511. },
  14512. ]
  14513. ))
  14514. characterMakers.push(() => makeCharacter(
  14515. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14516. {
  14517. side: {
  14518. height: math.unit(6, "feet"),
  14519. weight: math.unit(170, "lb"),
  14520. name: "Side",
  14521. image: {
  14522. source: "./media/characters/finn/side.svg",
  14523. extra: 1953 / 1807,
  14524. bottom: 0.057
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Megamacro",
  14531. height: math.unit(14445, "feet"),
  14532. default: true
  14533. },
  14534. ]
  14535. ))
  14536. characterMakers.push(() => makeCharacter(
  14537. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14538. {
  14539. front: {
  14540. height: math.unit(5 + 6 / 12, "feet"),
  14541. weight: math.unit(125, "lb"),
  14542. name: "Front",
  14543. image: {
  14544. source: "./media/characters/roy/front.svg",
  14545. extra: 1,
  14546. bottom: 0.11
  14547. }
  14548. },
  14549. },
  14550. [
  14551. {
  14552. name: "Micro",
  14553. height: math.unit(3, "inches"),
  14554. default: true
  14555. },
  14556. {
  14557. name: "Normal",
  14558. height: math.unit(5 + 6 / 12, "feet")
  14559. },
  14560. {
  14561. name: "Lesser Macro",
  14562. height: math.unit(60, "feet")
  14563. },
  14564. {
  14565. name: "Greater Macro",
  14566. height: math.unit(120, "feet")
  14567. },
  14568. ]
  14569. ))
  14570. characterMakers.push(() => makeCharacter(
  14571. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14572. {
  14573. front: {
  14574. height: math.unit(6, "feet"),
  14575. weight: math.unit(100, "lb"),
  14576. name: "Front",
  14577. image: {
  14578. source: "./media/characters/aevsivs/front.svg",
  14579. extra: 1,
  14580. bottom: 0.03
  14581. }
  14582. },
  14583. back: {
  14584. height: math.unit(6, "feet"),
  14585. weight: math.unit(100, "lb"),
  14586. name: "Back",
  14587. image: {
  14588. source: "./media/characters/aevsivs/back.svg"
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Micro",
  14595. height: math.unit(2, "inches"),
  14596. default: true
  14597. },
  14598. {
  14599. name: "Normal",
  14600. height: math.unit(5, "feet")
  14601. },
  14602. ]
  14603. ))
  14604. characterMakers.push(() => makeCharacter(
  14605. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14606. {
  14607. front: {
  14608. height: math.unit(5 + 7 / 12, "feet"),
  14609. weight: math.unit(159, "lb"),
  14610. name: "Front",
  14611. image: {
  14612. source: "./media/characters/hildegard/front.svg",
  14613. extra: 289 / 269,
  14614. bottom: 7.63 / 297.8
  14615. }
  14616. },
  14617. back: {
  14618. height: math.unit(5 + 7 / 12, "feet"),
  14619. weight: math.unit(159, "lb"),
  14620. name: "Back",
  14621. image: {
  14622. source: "./media/characters/hildegard/back.svg",
  14623. extra: 280 / 260,
  14624. bottom: 2.3 / 282
  14625. }
  14626. },
  14627. },
  14628. [
  14629. {
  14630. name: "Normal",
  14631. height: math.unit(5 + 7 / 12, "feet"),
  14632. default: true
  14633. },
  14634. ]
  14635. ))
  14636. characterMakers.push(() => makeCharacter(
  14637. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14638. {
  14639. bernard: {
  14640. height: math.unit(2 + 7 / 12, "feet"),
  14641. weight: math.unit(66, "lb"),
  14642. name: "Bernard",
  14643. rename: true,
  14644. image: {
  14645. source: "./media/characters/bernard-wilder/bernard.svg",
  14646. extra: 192 / 128,
  14647. bottom: 0.05
  14648. }
  14649. },
  14650. wilder: {
  14651. height: math.unit(5 + 8 / 12, "feet"),
  14652. weight: math.unit(143, "lb"),
  14653. name: "Wilder",
  14654. rename: true,
  14655. image: {
  14656. source: "./media/characters/bernard-wilder/wilder.svg",
  14657. extra: 361 / 312,
  14658. bottom: 0.02
  14659. }
  14660. },
  14661. },
  14662. [
  14663. {
  14664. name: "Normal",
  14665. height: math.unit(2 + 7 / 12, "feet"),
  14666. default: true
  14667. },
  14668. ]
  14669. ))
  14670. characterMakers.push(() => makeCharacter(
  14671. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14672. {
  14673. anthro: {
  14674. height: math.unit(6 + 1 / 12, "feet"),
  14675. weight: math.unit(155, "lb"),
  14676. name: "Anthro",
  14677. image: {
  14678. source: "./media/characters/hearth/anthro.svg",
  14679. extra: 260 / 250,
  14680. bottom: 0.02
  14681. }
  14682. },
  14683. feral: {
  14684. height: math.unit(3.78, "feet"),
  14685. weight: math.unit(35, "kg"),
  14686. name: "Feral",
  14687. image: {
  14688. source: "./media/characters/hearth/feral.svg",
  14689. extra: 153 / 135,
  14690. bottom: 0.03
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Normal",
  14697. height: math.unit(6 + 1 / 12, "feet"),
  14698. default: true
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14704. {
  14705. front: {
  14706. height: math.unit(6, "feet"),
  14707. weight: math.unit(182, "lb"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/ingrid/front.svg",
  14711. extra: 294 / 268,
  14712. bottom: 0.027
  14713. }
  14714. },
  14715. },
  14716. [
  14717. {
  14718. name: "Normal",
  14719. height: math.unit(6, "feet"),
  14720. default: true
  14721. },
  14722. ]
  14723. ))
  14724. characterMakers.push(() => makeCharacter(
  14725. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14726. {
  14727. eevee: {
  14728. height: math.unit(2 + 10 / 12, "feet"),
  14729. weight: math.unit(86, "lb"),
  14730. name: "Malgam",
  14731. image: {
  14732. source: "./media/characters/malgam/eevee.svg",
  14733. extra: 218 / 180,
  14734. bottom: 0.2
  14735. }
  14736. },
  14737. sylveon: {
  14738. height: math.unit(4, "feet"),
  14739. weight: math.unit(101, "lb"),
  14740. name: "Future Malgam",
  14741. rename: true,
  14742. image: {
  14743. source: "./media/characters/malgam/sylveon.svg",
  14744. extra: 371 / 325,
  14745. bottom: 0.015
  14746. }
  14747. },
  14748. gigantamax: {
  14749. height: math.unit(50, "feet"),
  14750. name: "Gigantamax Malgam",
  14751. rename: true,
  14752. image: {
  14753. source: "./media/characters/malgam/gigantamax.svg"
  14754. }
  14755. },
  14756. },
  14757. [
  14758. {
  14759. name: "Normal",
  14760. height: math.unit(2 + 10 / 12, "feet"),
  14761. default: true
  14762. },
  14763. ]
  14764. ))
  14765. characterMakers.push(() => makeCharacter(
  14766. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14767. {
  14768. front: {
  14769. height: math.unit(5 + 11 / 12, "feet"),
  14770. weight: math.unit(188, "lb"),
  14771. name: "Front",
  14772. image: {
  14773. source: "./media/characters/fleur/front.svg",
  14774. extra: 309 / 283,
  14775. bottom: 0.007
  14776. }
  14777. },
  14778. },
  14779. [
  14780. {
  14781. name: "Normal",
  14782. height: math.unit(5 + 11 / 12, "feet"),
  14783. default: true
  14784. },
  14785. ]
  14786. ))
  14787. characterMakers.push(() => makeCharacter(
  14788. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14789. {
  14790. front: {
  14791. height: math.unit(5 + 4 / 12, "feet"),
  14792. weight: math.unit(122, "lb"),
  14793. name: "Front",
  14794. image: {
  14795. source: "./media/characters/jude/front.svg",
  14796. extra: 288 / 273,
  14797. bottom: 0.03
  14798. }
  14799. },
  14800. },
  14801. [
  14802. {
  14803. name: "Normal",
  14804. height: math.unit(5 + 4 / 12, "feet"),
  14805. default: true
  14806. },
  14807. ]
  14808. ))
  14809. characterMakers.push(() => makeCharacter(
  14810. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14811. {
  14812. front: {
  14813. height: math.unit(5 + 11 / 12, "feet"),
  14814. weight: math.unit(190, "lb"),
  14815. name: "Front",
  14816. image: {
  14817. source: "./media/characters/seara/front.svg",
  14818. extra: 1,
  14819. bottom: 0.05
  14820. }
  14821. },
  14822. },
  14823. [
  14824. {
  14825. name: "Normal",
  14826. height: math.unit(5 + 11 / 12, "feet"),
  14827. default: true
  14828. },
  14829. ]
  14830. ))
  14831. characterMakers.push(() => makeCharacter(
  14832. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14833. {
  14834. front: {
  14835. height: math.unit(16 + 5 / 12, "feet"),
  14836. weight: math.unit(524, "lb"),
  14837. name: "Front",
  14838. image: {
  14839. source: "./media/characters/caspian/front.svg",
  14840. extra: 1,
  14841. bottom: 0.04
  14842. }
  14843. },
  14844. },
  14845. [
  14846. {
  14847. name: "Normal",
  14848. height: math.unit(16 + 5 / 12, "feet"),
  14849. default: true
  14850. },
  14851. ]
  14852. ))
  14853. characterMakers.push(() => makeCharacter(
  14854. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14855. {
  14856. front: {
  14857. height: math.unit(5 + 7 / 12, "feet"),
  14858. weight: math.unit(170, "lb"),
  14859. name: "Front",
  14860. image: {
  14861. source: "./media/characters/mika/front.svg",
  14862. extra: 1,
  14863. bottom: 0.016
  14864. }
  14865. },
  14866. },
  14867. [
  14868. {
  14869. name: "Normal",
  14870. height: math.unit(5 + 7 / 12, "feet"),
  14871. default: true
  14872. },
  14873. ]
  14874. ))
  14875. characterMakers.push(() => makeCharacter(
  14876. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14877. {
  14878. front: {
  14879. height: math.unit(6 + 2 / 12, "feet"),
  14880. weight: math.unit(268, "lb"),
  14881. name: "Front",
  14882. image: {
  14883. source: "./media/characters/sol/front.svg",
  14884. extra: 247 / 231,
  14885. bottom: 0.05
  14886. }
  14887. },
  14888. },
  14889. [
  14890. {
  14891. name: "Normal",
  14892. height: math.unit(6 + 2 / 12, "feet"),
  14893. default: true
  14894. },
  14895. ]
  14896. ))
  14897. characterMakers.push(() => makeCharacter(
  14898. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14899. {
  14900. buizel: {
  14901. height: math.unit(2 + 5 / 12, "feet"),
  14902. weight: math.unit(87, "lb"),
  14903. name: "Buizel",
  14904. image: {
  14905. source: "./media/characters/umiko/buizel.svg",
  14906. extra: 172 / 157,
  14907. bottom: 0.01
  14908. }
  14909. },
  14910. floatzel: {
  14911. height: math.unit(5 + 9 / 12, "feet"),
  14912. weight: math.unit(250, "lb"),
  14913. name: "Floatzel",
  14914. image: {
  14915. source: "./media/characters/umiko/floatzel.svg",
  14916. extra: 262 / 248
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "Normal",
  14923. height: math.unit(2 + 5 / 12, "feet"),
  14924. default: true
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(6 + 2 / 12, "feet"),
  14933. weight: math.unit(146, "lb"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/iliac/front.svg",
  14937. extra: 389 / 365,
  14938. bottom: 0.035
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(6 + 2 / 12, "feet"),
  14946. default: true
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14952. {
  14953. front: {
  14954. height: math.unit(6, "feet"),
  14955. weight: math.unit(170, "lb"),
  14956. name: "Front",
  14957. image: {
  14958. source: "./media/characters/topaz/front.svg",
  14959. extra: 317 / 303,
  14960. bottom: 0.055
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Normal",
  14967. height: math.unit(6, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(5 + 11 / 12, "feet"),
  14977. weight: math.unit(144, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/gabriel/front.svg",
  14981. extra: 285 / 262,
  14982. bottom: 0.004
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(5 + 11 / 12, "feet"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14996. {
  14997. side: {
  14998. height: math.unit(6 + 5 / 12, "feet"),
  14999. weight: math.unit(300, "lb"),
  15000. name: "Side",
  15001. image: {
  15002. source: "./media/characters/tempest-suicune/side.svg",
  15003. extra: 195 / 154,
  15004. bottom: 0.04
  15005. }
  15006. },
  15007. },
  15008. [
  15009. {
  15010. name: "Normal",
  15011. height: math.unit(6 + 5 / 12, "feet"),
  15012. default: true
  15013. },
  15014. ]
  15015. ))
  15016. characterMakers.push(() => makeCharacter(
  15017. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15018. {
  15019. front: {
  15020. height: math.unit(7 + 2 / 12, "feet"),
  15021. weight: math.unit(322, "lb"),
  15022. name: "Front",
  15023. image: {
  15024. source: "./media/characters/vulcan/front.svg",
  15025. extra: 154 / 147,
  15026. bottom: 0.04
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(7 + 2 / 12, "feet"),
  15034. default: true
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15040. {
  15041. front: {
  15042. height: math.unit(5 + 10 / 12, "feet"),
  15043. weight: math.unit(264, "lb"),
  15044. name: "Front",
  15045. image: {
  15046. source: "./media/characters/gault/front.svg",
  15047. extra: 161 / 140,
  15048. bottom: 0.028
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(5 + 10 / 12, "feet"),
  15056. default: true
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15062. {
  15063. front: {
  15064. height: math.unit(6, "feet"),
  15065. weight: math.unit(150, "lb"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/shard/front.svg",
  15069. extra: 273 / 238,
  15070. bottom: 0.02
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(3 + 6 / 12, "feet"),
  15078. default: true
  15079. },
  15080. ]
  15081. ))
  15082. characterMakers.push(() => makeCharacter(
  15083. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15084. {
  15085. front: {
  15086. height: math.unit(5 + 11 / 12, "feet"),
  15087. weight: math.unit(146, "lb"),
  15088. name: "Front",
  15089. image: {
  15090. source: "./media/characters/ashe/front.svg",
  15091. extra: 400 / 373,
  15092. bottom: 0.01
  15093. }
  15094. },
  15095. },
  15096. [
  15097. {
  15098. name: "Normal",
  15099. height: math.unit(5 + 11 / 12, "feet"),
  15100. default: true
  15101. },
  15102. ]
  15103. ))
  15104. characterMakers.push(() => makeCharacter(
  15105. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15106. {
  15107. front: {
  15108. height: math.unit(5 + 5 / 12, "feet"),
  15109. weight: math.unit(135, "lb"),
  15110. name: "Front",
  15111. image: {
  15112. source: "./media/characters/beatrix/front.svg",
  15113. extra: 392 / 379,
  15114. bottom: 0.01
  15115. }
  15116. },
  15117. },
  15118. [
  15119. {
  15120. name: "Normal",
  15121. height: math.unit(6, "feet"),
  15122. default: true
  15123. },
  15124. ]
  15125. ))
  15126. characterMakers.push(() => makeCharacter(
  15127. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15128. {
  15129. front: {
  15130. height: math.unit(6, "feet"),
  15131. weight: math.unit(150, "lb"),
  15132. name: "Front",
  15133. image: {
  15134. source: "./media/characters/ignatius/front.svg",
  15135. extra: 245 / 222,
  15136. bottom: 0.01
  15137. }
  15138. },
  15139. },
  15140. [
  15141. {
  15142. name: "Normal",
  15143. height: math.unit(5 + 5 / 12, "feet"),
  15144. default: true
  15145. },
  15146. ]
  15147. ))
  15148. characterMakers.push(() => makeCharacter(
  15149. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15150. {
  15151. front: {
  15152. height: math.unit(6 + 2 / 12, "feet"),
  15153. weight: math.unit(138, "lb"),
  15154. name: "Front",
  15155. image: {
  15156. source: "./media/characters/mei-li/front.svg",
  15157. extra: 237 / 229,
  15158. bottom: 0.03
  15159. }
  15160. },
  15161. },
  15162. [
  15163. {
  15164. name: "Normal",
  15165. height: math.unit(6 + 2 / 12, "feet"),
  15166. default: true
  15167. },
  15168. ]
  15169. ))
  15170. characterMakers.push(() => makeCharacter(
  15171. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15172. {
  15173. front: {
  15174. height: math.unit(2 + 4 / 12, "feet"),
  15175. weight: math.unit(62, "lb"),
  15176. name: "Front",
  15177. image: {
  15178. source: "./media/characters/puru/front.svg",
  15179. extra: 206 / 149,
  15180. bottom: 0.06
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Normal",
  15187. height: math.unit(2 + 4 / 12, "feet"),
  15188. default: true
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15194. {
  15195. anthro: {
  15196. height: math.unit(5 + 8/12, "feet"),
  15197. weight: math.unit(200, "lb"),
  15198. energyNeed: math.unit(2000, "kcal"),
  15199. name: "Anthro",
  15200. image: {
  15201. source: "./media/characters/kee/anthro.svg",
  15202. extra: 3251/3184,
  15203. bottom: 250/3501
  15204. }
  15205. },
  15206. taur: {
  15207. height: math.unit(11, "feet"),
  15208. weight: math.unit(500, "lb"),
  15209. energyNeed: math.unit(5000, "kcal"),
  15210. name: "Taur",
  15211. image: {
  15212. source: "./media/characters/kee/taur.svg",
  15213. extra: 1362/1320,
  15214. bottom: 83/1445
  15215. }
  15216. },
  15217. },
  15218. [
  15219. {
  15220. name: "Normal",
  15221. height: math.unit(5 + 8/12, "feet"),
  15222. default: true
  15223. },
  15224. {
  15225. name: "Macro",
  15226. height: math.unit(35, "feet")
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15232. {
  15233. anthro: {
  15234. height: math.unit(7, "feet"),
  15235. weight: math.unit(190, "lb"),
  15236. name: "Anthro",
  15237. image: {
  15238. source: "./media/characters/cobalt-dracha/anthro.svg",
  15239. extra: 231 / 225,
  15240. bottom: 0.04
  15241. }
  15242. },
  15243. feral: {
  15244. height: math.unit(9 + 7 / 12, "feet"),
  15245. weight: math.unit(294, "lb"),
  15246. name: "Feral",
  15247. image: {
  15248. source: "./media/characters/cobalt-dracha/feral.svg",
  15249. extra: 692 / 633,
  15250. bottom: 0.05
  15251. }
  15252. },
  15253. },
  15254. [
  15255. {
  15256. name: "Normal",
  15257. height: math.unit(7, "feet"),
  15258. default: true
  15259. },
  15260. ]
  15261. ))
  15262. characterMakers.push(() => makeCharacter(
  15263. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15264. {
  15265. fallen: {
  15266. height: math.unit(11 + 8 / 12, "feet"),
  15267. weight: math.unit(485, "lb"),
  15268. name: "Java (Fallen)",
  15269. rename: true,
  15270. image: {
  15271. source: "./media/characters/java/fallen.svg",
  15272. extra: 226 / 208,
  15273. bottom: 0.005
  15274. }
  15275. },
  15276. godkin: {
  15277. height: math.unit(10 + 6 / 12, "feet"),
  15278. weight: math.unit(328, "lb"),
  15279. name: "Java (Godkin)",
  15280. rename: true,
  15281. image: {
  15282. source: "./media/characters/java/godkin.svg",
  15283. extra: 270 / 262,
  15284. bottom: 0.02
  15285. }
  15286. },
  15287. },
  15288. [
  15289. {
  15290. name: "Normal",
  15291. height: math.unit(11 + 8 / 12, "feet"),
  15292. default: true
  15293. },
  15294. ]
  15295. ))
  15296. characterMakers.push(() => makeCharacter(
  15297. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15298. {
  15299. front: {
  15300. height: math.unit(7 + 8 / 12, "feet"),
  15301. weight: math.unit(320, "lb"),
  15302. name: "Front",
  15303. image: {
  15304. source: "./media/characters/skoll/front.svg",
  15305. extra: 232 / 220,
  15306. bottom: 0.02
  15307. }
  15308. },
  15309. },
  15310. [
  15311. {
  15312. name: "Normal",
  15313. height: math.unit(7 + 8 / 12, "feet"),
  15314. default: true
  15315. },
  15316. ]
  15317. ))
  15318. characterMakers.push(() => makeCharacter(
  15319. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15320. {
  15321. front: {
  15322. height: math.unit(5 + 9 / 12, "feet"),
  15323. weight: math.unit(170, "lb"),
  15324. name: "Front",
  15325. image: {
  15326. source: "./media/characters/purna/front.svg",
  15327. extra: 239 / 229,
  15328. bottom: 0.01
  15329. }
  15330. },
  15331. },
  15332. [
  15333. {
  15334. name: "Normal",
  15335. height: math.unit(5 + 9 / 12, "feet"),
  15336. default: true
  15337. },
  15338. ]
  15339. ))
  15340. characterMakers.push(() => makeCharacter(
  15341. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15342. {
  15343. front: {
  15344. height: math.unit(5 + 9 / 12, "feet"),
  15345. weight: math.unit(142, "lb"),
  15346. name: "Front",
  15347. image: {
  15348. source: "./media/characters/kuva/front.svg",
  15349. extra: 281 / 271,
  15350. bottom: 0.006
  15351. }
  15352. },
  15353. },
  15354. [
  15355. {
  15356. name: "Normal",
  15357. height: math.unit(5 + 9 / 12, "feet"),
  15358. default: true
  15359. },
  15360. ]
  15361. ))
  15362. characterMakers.push(() => makeCharacter(
  15363. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15364. {
  15365. anthro: {
  15366. height: math.unit(9 + 2 / 12, "feet"),
  15367. weight: math.unit(270, "lb"),
  15368. name: "Anthro",
  15369. image: {
  15370. source: "./media/characters/embra/anthro.svg",
  15371. extra: 200 / 187,
  15372. bottom: 0.02
  15373. }
  15374. },
  15375. feral: {
  15376. height: math.unit(18 + 8 / 12, "feet"),
  15377. weight: math.unit(576, "lb"),
  15378. name: "Feral",
  15379. image: {
  15380. source: "./media/characters/embra/feral.svg",
  15381. extra: 152 / 137,
  15382. bottom: 0.037
  15383. }
  15384. },
  15385. },
  15386. [
  15387. {
  15388. name: "Normal",
  15389. height: math.unit(9 + 2 / 12, "feet"),
  15390. default: true
  15391. },
  15392. ]
  15393. ))
  15394. characterMakers.push(() => makeCharacter(
  15395. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15396. {
  15397. anthro: {
  15398. height: math.unit(10 + 9 / 12, "feet"),
  15399. weight: math.unit(224, "lb"),
  15400. name: "Anthro",
  15401. image: {
  15402. source: "./media/characters/grottos/anthro.svg",
  15403. extra: 350 / 332,
  15404. bottom: 0.045
  15405. }
  15406. },
  15407. feral: {
  15408. height: math.unit(20 + 7 / 12, "feet"),
  15409. weight: math.unit(629, "lb"),
  15410. name: "Feral",
  15411. image: {
  15412. source: "./media/characters/grottos/feral.svg",
  15413. extra: 207 / 190,
  15414. bottom: 0.05
  15415. }
  15416. },
  15417. },
  15418. [
  15419. {
  15420. name: "Normal",
  15421. height: math.unit(10 + 9 / 12, "feet"),
  15422. default: true
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15428. {
  15429. anthro: {
  15430. height: math.unit(9 + 6 / 12, "feet"),
  15431. weight: math.unit(298, "lb"),
  15432. name: "Anthro",
  15433. image: {
  15434. source: "./media/characters/frifna/anthro.svg",
  15435. extra: 282 / 269,
  15436. bottom: 0.015
  15437. }
  15438. },
  15439. feral: {
  15440. height: math.unit(16 + 2 / 12, "feet"),
  15441. weight: math.unit(624, "lb"),
  15442. name: "Feral",
  15443. image: {
  15444. source: "./media/characters/frifna/feral.svg"
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Normal",
  15451. height: math.unit(9 + 6 / 12, "feet"),
  15452. default: true
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(6 + 2 / 12, "feet"),
  15461. weight: math.unit(168, "lb"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/elise/front.svg",
  15465. extra: 276 / 271
  15466. }
  15467. },
  15468. },
  15469. [
  15470. {
  15471. name: "Normal",
  15472. height: math.unit(6 + 2 / 12, "feet"),
  15473. default: true
  15474. },
  15475. ]
  15476. ))
  15477. characterMakers.push(() => makeCharacter(
  15478. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15479. {
  15480. front: {
  15481. height: math.unit(5 + 10 / 12, "feet"),
  15482. weight: math.unit(210, "lb"),
  15483. name: "Front",
  15484. image: {
  15485. source: "./media/characters/glade/front.svg",
  15486. extra: 258 / 247,
  15487. bottom: 0.008
  15488. }
  15489. },
  15490. },
  15491. [
  15492. {
  15493. name: "Normal",
  15494. height: math.unit(5 + 10 / 12, "feet"),
  15495. default: true
  15496. },
  15497. ]
  15498. ))
  15499. characterMakers.push(() => makeCharacter(
  15500. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15501. {
  15502. front: {
  15503. height: math.unit(5 + 10 / 12, "feet"),
  15504. weight: math.unit(129, "lb"),
  15505. name: "Front",
  15506. image: {
  15507. source: "./media/characters/rina/front.svg",
  15508. extra: 266 / 255,
  15509. bottom: 0.005
  15510. }
  15511. },
  15512. },
  15513. [
  15514. {
  15515. name: "Normal",
  15516. height: math.unit(5 + 10 / 12, "feet"),
  15517. default: true
  15518. },
  15519. ]
  15520. ))
  15521. characterMakers.push(() => makeCharacter(
  15522. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15523. {
  15524. front: {
  15525. height: math.unit(6 + 1 / 12, "feet"),
  15526. weight: math.unit(192, "lb"),
  15527. name: "Front",
  15528. image: {
  15529. source: "./media/characters/veronica/front.svg",
  15530. extra: 319 / 309,
  15531. bottom: 0.005
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Normal",
  15538. height: math.unit(6 + 1 / 12, "feet"),
  15539. default: true
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15545. {
  15546. front: {
  15547. height: math.unit(9 + 3 / 12, "feet"),
  15548. weight: math.unit(1100, "lb"),
  15549. name: "Front",
  15550. image: {
  15551. source: "./media/characters/braxton/front.svg",
  15552. extra: 1057 / 984,
  15553. bottom: 0.05
  15554. }
  15555. },
  15556. },
  15557. [
  15558. {
  15559. name: "Normal",
  15560. height: math.unit(9 + 3 / 12, "feet")
  15561. },
  15562. {
  15563. name: "Giant",
  15564. height: math.unit(300, "feet"),
  15565. default: true
  15566. },
  15567. {
  15568. name: "Macro",
  15569. height: math.unit(700, "feet")
  15570. },
  15571. {
  15572. name: "Megamacro",
  15573. height: math.unit(6000, "feet")
  15574. },
  15575. ]
  15576. ))
  15577. characterMakers.push(() => makeCharacter(
  15578. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15579. {
  15580. front: {
  15581. height: math.unit(6 + 7 / 12, "feet"),
  15582. weight: math.unit(150, "lb"),
  15583. name: "Front",
  15584. image: {
  15585. source: "./media/characters/blue-feyonics/front.svg",
  15586. extra: 1403 / 1306,
  15587. bottom: 0.047
  15588. }
  15589. },
  15590. },
  15591. [
  15592. {
  15593. name: "Normal",
  15594. height: math.unit(6 + 7 / 12, "feet"),
  15595. default: true
  15596. },
  15597. ]
  15598. ))
  15599. characterMakers.push(() => makeCharacter(
  15600. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15601. {
  15602. front: {
  15603. height: math.unit(1.8, "meters"),
  15604. weight: math.unit(60, "kg"),
  15605. name: "Front",
  15606. image: {
  15607. source: "./media/characters/maxwell/front.svg",
  15608. extra: 2060 / 1873
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Micro",
  15615. height: math.unit(1, "mm")
  15616. },
  15617. {
  15618. name: "Normal",
  15619. height: math.unit(1.8, "meter"),
  15620. default: true
  15621. },
  15622. {
  15623. name: "Macro",
  15624. height: math.unit(30, "meters")
  15625. },
  15626. {
  15627. name: "Megamacro",
  15628. height: math.unit(10, "km")
  15629. },
  15630. ]
  15631. ))
  15632. characterMakers.push(() => makeCharacter(
  15633. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15634. {
  15635. front: {
  15636. height: math.unit(6, "feet"),
  15637. weight: math.unit(150, "lb"),
  15638. name: "Front",
  15639. image: {
  15640. source: "./media/characters/jack/front.svg",
  15641. extra: 1754 / 1640,
  15642. bottom: 0.01
  15643. }
  15644. },
  15645. },
  15646. [
  15647. {
  15648. name: "Normal",
  15649. height: math.unit(80000, "feet"),
  15650. default: true
  15651. },
  15652. {
  15653. name: "Max size",
  15654. height: math.unit(10, "lightyears")
  15655. },
  15656. ]
  15657. ))
  15658. characterMakers.push(() => makeCharacter(
  15659. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15660. {
  15661. urban: {
  15662. height: math.unit(5, "feet"),
  15663. weight: math.unit(240, "lb"),
  15664. name: "Urban",
  15665. image: {
  15666. source: "./media/characters/cafat/urban.svg",
  15667. extra: 1223/1126,
  15668. bottom: 205/1428
  15669. }
  15670. },
  15671. summer: {
  15672. height: math.unit(5, "feet"),
  15673. weight: math.unit(240, "lb"),
  15674. name: "Summer",
  15675. image: {
  15676. source: "./media/characters/cafat/summer.svg",
  15677. extra: 1223/1126,
  15678. bottom: 205/1428
  15679. }
  15680. },
  15681. winter: {
  15682. height: math.unit(5, "feet"),
  15683. weight: math.unit(240, "lb"),
  15684. name: "Winter",
  15685. image: {
  15686. source: "./media/characters/cafat/winter.svg",
  15687. extra: 1223/1126,
  15688. bottom: 205/1428
  15689. }
  15690. },
  15691. lingerie: {
  15692. height: math.unit(5, "feet"),
  15693. weight: math.unit(240, "lb"),
  15694. name: "Lingerie",
  15695. image: {
  15696. source: "./media/characters/cafat/lingerie.svg",
  15697. extra: 1223/1126,
  15698. bottom: 205/1428
  15699. }
  15700. },
  15701. upright: {
  15702. height: math.unit(6.3, "feet"),
  15703. weight: math.unit(240, "lb"),
  15704. name: "Upright",
  15705. image: {
  15706. source: "./media/characters/cafat/upright.svg",
  15707. bottom: 0.01
  15708. }
  15709. },
  15710. uprightFull: {
  15711. height: math.unit(6.3, "feet"),
  15712. weight: math.unit(240, "lb"),
  15713. name: "Upright (Full)",
  15714. image: {
  15715. source: "./media/characters/cafat/upright-full.svg",
  15716. bottom: 0.01
  15717. }
  15718. },
  15719. },
  15720. [
  15721. {
  15722. name: "Small",
  15723. height: math.unit(5, "feet"),
  15724. default: true
  15725. },
  15726. {
  15727. name: "Large",
  15728. height: math.unit(13, "feet")
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(6, "feet"),
  15737. weight: math.unit(150, "lb"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/verin-raharra/front.svg",
  15741. extra: 5019 / 4835,
  15742. bottom: 0.023
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(7 + 5 / 12, "feet"),
  15750. default: true
  15751. },
  15752. {
  15753. name: "Upsized",
  15754. height: math.unit(20, "feet")
  15755. },
  15756. ]
  15757. ))
  15758. characterMakers.push(() => makeCharacter(
  15759. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15760. {
  15761. front: {
  15762. height: math.unit(7, "feet"),
  15763. weight: math.unit(230, "lb"),
  15764. name: "Front",
  15765. image: {
  15766. source: "./media/characters/nakata/front.svg",
  15767. extra: 1.005,
  15768. bottom: 0.01
  15769. }
  15770. },
  15771. },
  15772. [
  15773. {
  15774. name: "Normal",
  15775. height: math.unit(7, "feet"),
  15776. default: true
  15777. },
  15778. {
  15779. name: "Big",
  15780. height: math.unit(14, "feet")
  15781. },
  15782. {
  15783. name: "Macro",
  15784. height: math.unit(400, "feet")
  15785. },
  15786. ]
  15787. ))
  15788. characterMakers.push(() => makeCharacter(
  15789. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15790. {
  15791. front: {
  15792. height: math.unit(4.91, "feet"),
  15793. weight: math.unit(100, "lb"),
  15794. name: "Front",
  15795. image: {
  15796. source: "./media/characters/lily/front.svg",
  15797. extra: 1585 / 1415,
  15798. bottom: 0.02
  15799. }
  15800. },
  15801. },
  15802. [
  15803. {
  15804. name: "Normal",
  15805. height: math.unit(4.91, "feet"),
  15806. default: true
  15807. },
  15808. ]
  15809. ))
  15810. characterMakers.push(() => makeCharacter(
  15811. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15812. {
  15813. laying: {
  15814. height: math.unit(4 + 4 / 12, "feet"),
  15815. weight: math.unit(600, "lb"),
  15816. name: "Laying",
  15817. image: {
  15818. source: "./media/characters/sheila/laying.svg",
  15819. extra: 1333 / 1265,
  15820. bottom: 0.16
  15821. }
  15822. },
  15823. },
  15824. [
  15825. {
  15826. name: "Normal",
  15827. height: math.unit(4 + 4 / 12, "feet"),
  15828. default: true
  15829. },
  15830. ]
  15831. ))
  15832. characterMakers.push(() => makeCharacter(
  15833. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15834. {
  15835. front: {
  15836. height: math.unit(6, "feet"),
  15837. weight: math.unit(190, "lb"),
  15838. name: "Front",
  15839. image: {
  15840. source: "./media/characters/sax/front.svg",
  15841. extra: 1187 / 973,
  15842. bottom: 0.042
  15843. }
  15844. },
  15845. },
  15846. [
  15847. {
  15848. name: "Micro",
  15849. height: math.unit(4, "inches"),
  15850. default: true
  15851. },
  15852. ]
  15853. ))
  15854. characterMakers.push(() => makeCharacter(
  15855. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15856. {
  15857. front: {
  15858. height: math.unit(6, "feet"),
  15859. weight: math.unit(150, "lb"),
  15860. name: "Front",
  15861. image: {
  15862. source: "./media/characters/pandora/front.svg",
  15863. extra: 2720 / 2556,
  15864. bottom: 0.015
  15865. }
  15866. },
  15867. back: {
  15868. height: math.unit(6, "feet"),
  15869. weight: math.unit(150, "lb"),
  15870. name: "Back",
  15871. image: {
  15872. source: "./media/characters/pandora/back.svg",
  15873. extra: 2720 / 2556,
  15874. bottom: 0.01
  15875. }
  15876. },
  15877. beans: {
  15878. height: math.unit(6 / 8, "feet"),
  15879. name: "Beans",
  15880. image: {
  15881. source: "./media/characters/pandora/beans.svg"
  15882. }
  15883. },
  15884. collar: {
  15885. height: math.unit(0.31, "feet"),
  15886. name: "Collar",
  15887. image: {
  15888. source: "./media/characters/pandora/collar.svg"
  15889. }
  15890. },
  15891. skirt: {
  15892. height: math.unit(6, "feet"),
  15893. weight: math.unit(150, "lb"),
  15894. name: "Skirt",
  15895. image: {
  15896. source: "./media/characters/pandora/skirt.svg",
  15897. extra: 1622 / 1525,
  15898. bottom: 0.015
  15899. }
  15900. },
  15901. hoodie: {
  15902. height: math.unit(6, "feet"),
  15903. weight: math.unit(150, "lb"),
  15904. name: "Hoodie",
  15905. image: {
  15906. source: "./media/characters/pandora/hoodie.svg",
  15907. extra: 1622 / 1525,
  15908. bottom: 0.015
  15909. }
  15910. },
  15911. casual: {
  15912. height: math.unit(6, "feet"),
  15913. weight: math.unit(150, "lb"),
  15914. name: "Casual",
  15915. image: {
  15916. source: "./media/characters/pandora/casual.svg",
  15917. extra: 1622 / 1525,
  15918. bottom: 0.015
  15919. }
  15920. },
  15921. },
  15922. [
  15923. {
  15924. name: "Normal",
  15925. height: math.unit(6, "feet")
  15926. },
  15927. {
  15928. name: "Big Steppy",
  15929. height: math.unit(1, "km"),
  15930. default: true
  15931. },
  15932. {
  15933. name: "Galactic Steppy",
  15934. height: math.unit(2, "gigameters")
  15935. },
  15936. ]
  15937. ))
  15938. characterMakers.push(() => makeCharacter(
  15939. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15940. {
  15941. side: {
  15942. height: math.unit(10, "feet"),
  15943. weight: math.unit(800, "kg"),
  15944. name: "Side",
  15945. image: {
  15946. source: "./media/characters/venio-darcony/side.svg",
  15947. extra: 1373 / 1003,
  15948. bottom: 0.037
  15949. }
  15950. },
  15951. front: {
  15952. height: math.unit(19, "feet"),
  15953. weight: math.unit(800, "kg"),
  15954. name: "Front",
  15955. image: {
  15956. source: "./media/characters/venio-darcony/front.svg"
  15957. }
  15958. },
  15959. back: {
  15960. height: math.unit(19, "feet"),
  15961. weight: math.unit(800, "kg"),
  15962. name: "Back",
  15963. image: {
  15964. source: "./media/characters/venio-darcony/back.svg"
  15965. }
  15966. },
  15967. sideNsfw: {
  15968. height: math.unit(10, "feet"),
  15969. weight: math.unit(800, "kg"),
  15970. name: "Side (NSFW)",
  15971. image: {
  15972. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15973. extra: 1373 / 1003,
  15974. bottom: 0.037
  15975. }
  15976. },
  15977. frontNsfw: {
  15978. height: math.unit(19, "feet"),
  15979. weight: math.unit(800, "kg"),
  15980. name: "Front (NSFW)",
  15981. image: {
  15982. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15983. }
  15984. },
  15985. backNsfw: {
  15986. height: math.unit(19, "feet"),
  15987. weight: math.unit(800, "kg"),
  15988. name: "Back (NSFW)",
  15989. image: {
  15990. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15991. }
  15992. },
  15993. sideArmored: {
  15994. height: math.unit(10, "feet"),
  15995. weight: math.unit(800, "kg"),
  15996. name: "Side (Armored)",
  15997. image: {
  15998. source: "./media/characters/venio-darcony/side-armored.svg",
  15999. extra: 1373 / 1003,
  16000. bottom: 0.037
  16001. }
  16002. },
  16003. frontArmored: {
  16004. height: math.unit(19, "feet"),
  16005. weight: math.unit(900, "kg"),
  16006. name: "Front (Armored)",
  16007. image: {
  16008. source: "./media/characters/venio-darcony/front-armored.svg"
  16009. }
  16010. },
  16011. backArmored: {
  16012. height: math.unit(19, "feet"),
  16013. weight: math.unit(900, "kg"),
  16014. name: "Back (Armored)",
  16015. image: {
  16016. source: "./media/characters/venio-darcony/back-armored.svg"
  16017. }
  16018. },
  16019. sword: {
  16020. height: math.unit(10, "feet"),
  16021. weight: math.unit(50, "lb"),
  16022. name: "Sword",
  16023. image: {
  16024. source: "./media/characters/venio-darcony/sword.svg"
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Normal",
  16031. height: math.unit(10, "feet")
  16032. },
  16033. {
  16034. name: "Macro",
  16035. height: math.unit(130, "feet"),
  16036. default: true
  16037. },
  16038. {
  16039. name: "Macro+",
  16040. height: math.unit(240, "feet")
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16046. {
  16047. front: {
  16048. height: math.unit(6, "feet"),
  16049. weight: math.unit(150, "lb"),
  16050. name: "Front",
  16051. image: {
  16052. source: "./media/characters/veski/front.svg",
  16053. extra: 1299 / 1225,
  16054. bottom: 0.04
  16055. }
  16056. },
  16057. back: {
  16058. height: math.unit(6, "feet"),
  16059. weight: math.unit(150, "lb"),
  16060. name: "Back",
  16061. image: {
  16062. source: "./media/characters/veski/back.svg",
  16063. extra: 1299 / 1225,
  16064. bottom: 0.008
  16065. }
  16066. },
  16067. maw: {
  16068. height: math.unit(1.5 * 1.21, "feet"),
  16069. name: "Maw",
  16070. image: {
  16071. source: "./media/characters/veski/maw.svg"
  16072. }
  16073. },
  16074. },
  16075. [
  16076. {
  16077. name: "Macro",
  16078. height: math.unit(2, "km"),
  16079. default: true
  16080. },
  16081. ]
  16082. ))
  16083. characterMakers.push(() => makeCharacter(
  16084. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16085. {
  16086. front: {
  16087. height: math.unit(5 + 7 / 12, "feet"),
  16088. name: "Front",
  16089. image: {
  16090. source: "./media/characters/isabelle/front.svg",
  16091. extra: 2130 / 1976,
  16092. bottom: 0.05
  16093. }
  16094. },
  16095. },
  16096. [
  16097. {
  16098. name: "Supermicro",
  16099. height: math.unit(10, "micrometers")
  16100. },
  16101. {
  16102. name: "Micro",
  16103. height: math.unit(1, "inch")
  16104. },
  16105. {
  16106. name: "Tiny",
  16107. height: math.unit(5, "inches")
  16108. },
  16109. {
  16110. name: "Standard",
  16111. height: math.unit(5 + 7 / 12, "inches")
  16112. },
  16113. {
  16114. name: "Macro",
  16115. height: math.unit(80, "meters"),
  16116. default: true
  16117. },
  16118. {
  16119. name: "Megamacro",
  16120. height: math.unit(250, "meters")
  16121. },
  16122. {
  16123. name: "Gigamacro",
  16124. height: math.unit(5, "km")
  16125. },
  16126. {
  16127. name: "Cosmic",
  16128. height: math.unit(2.5e6, "miles")
  16129. },
  16130. ]
  16131. ))
  16132. characterMakers.push(() => makeCharacter(
  16133. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16134. {
  16135. front: {
  16136. height: math.unit(6, "feet"),
  16137. weight: math.unit(150, "lb"),
  16138. name: "Front",
  16139. image: {
  16140. source: "./media/characters/hanzo/front.svg",
  16141. extra: 374 / 344,
  16142. bottom: 0.02
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Normal",
  16149. height: math.unit(8, "feet"),
  16150. default: true
  16151. },
  16152. ]
  16153. ))
  16154. characterMakers.push(() => makeCharacter(
  16155. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16156. {
  16157. front: {
  16158. height: math.unit(7, "feet"),
  16159. weight: math.unit(130, "lb"),
  16160. name: "Front",
  16161. image: {
  16162. source: "./media/characters/anna/front.svg",
  16163. extra: 169 / 145,
  16164. bottom: 0.06
  16165. }
  16166. },
  16167. full: {
  16168. height: math.unit(4.96, "feet"),
  16169. weight: math.unit(220, "lb"),
  16170. name: "Full",
  16171. image: {
  16172. source: "./media/characters/anna/full.svg",
  16173. extra: 138 / 114,
  16174. bottom: 0.15
  16175. }
  16176. },
  16177. tongue: {
  16178. height: math.unit(2.53, "feet"),
  16179. name: "Tongue",
  16180. image: {
  16181. source: "./media/characters/anna/tongue.svg"
  16182. }
  16183. },
  16184. },
  16185. [
  16186. {
  16187. name: "Normal",
  16188. height: math.unit(7, "feet"),
  16189. default: true
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16195. {
  16196. front: {
  16197. height: math.unit(7, "feet"),
  16198. weight: math.unit(150, "lb"),
  16199. name: "Front",
  16200. image: {
  16201. source: "./media/characters/ian-corvid/front.svg",
  16202. extra: 150 / 142,
  16203. bottom: 0.02
  16204. }
  16205. },
  16206. back: {
  16207. height: math.unit(7, "feet"),
  16208. weight: math.unit(150, "lb"),
  16209. name: "Back",
  16210. image: {
  16211. source: "./media/characters/ian-corvid/back.svg",
  16212. extra: 150 / 143,
  16213. bottom: 0.01
  16214. }
  16215. },
  16216. stomping: {
  16217. height: math.unit(7, "feet"),
  16218. weight: math.unit(150, "lb"),
  16219. name: "Stomping",
  16220. image: {
  16221. source: "./media/characters/ian-corvid/stomping.svg",
  16222. extra: 76 / 72
  16223. }
  16224. },
  16225. sitting: {
  16226. height: math.unit(7 / 1.8, "feet"),
  16227. weight: math.unit(150, "lb"),
  16228. name: "Sitting",
  16229. image: {
  16230. source: "./media/characters/ian-corvid/sitting.svg",
  16231. extra: 1400 / 1269,
  16232. bottom: 0.15
  16233. }
  16234. },
  16235. },
  16236. [
  16237. {
  16238. name: "Tiny Microw",
  16239. height: math.unit(1, "inch")
  16240. },
  16241. {
  16242. name: "Microw",
  16243. height: math.unit(6, "inches")
  16244. },
  16245. {
  16246. name: "Crow",
  16247. height: math.unit(7 + 1 / 12, "feet"),
  16248. default: true
  16249. },
  16250. {
  16251. name: "Macrow",
  16252. height: math.unit(176, "feet")
  16253. },
  16254. ]
  16255. ))
  16256. characterMakers.push(() => makeCharacter(
  16257. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16258. {
  16259. front: {
  16260. height: math.unit(5 + 7 / 12, "feet"),
  16261. weight: math.unit(147, "lb"),
  16262. name: "Front",
  16263. image: {
  16264. source: "./media/characters/natalie-kellon/front.svg",
  16265. extra: 1214 / 1141,
  16266. bottom: 0.02
  16267. }
  16268. },
  16269. },
  16270. [
  16271. {
  16272. name: "Micro",
  16273. height: math.unit(1 / 16, "inch")
  16274. },
  16275. {
  16276. name: "Tiny",
  16277. height: math.unit(4, "inches")
  16278. },
  16279. {
  16280. name: "Normal",
  16281. height: math.unit(5 + 7 / 12, "feet"),
  16282. default: true
  16283. },
  16284. {
  16285. name: "Amazon",
  16286. height: math.unit(12, "feet")
  16287. },
  16288. {
  16289. name: "Giantess",
  16290. height: math.unit(160, "meters")
  16291. },
  16292. {
  16293. name: "Titaness",
  16294. height: math.unit(800, "meters")
  16295. },
  16296. ]
  16297. ))
  16298. characterMakers.push(() => makeCharacter(
  16299. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16300. {
  16301. front: {
  16302. height: math.unit(6, "feet"),
  16303. weight: math.unit(150, "lb"),
  16304. name: "Front",
  16305. image: {
  16306. source: "./media/characters/alluria/front.svg",
  16307. extra: 806 / 738,
  16308. bottom: 0.01
  16309. }
  16310. },
  16311. side: {
  16312. height: math.unit(6, "feet"),
  16313. weight: math.unit(150, "lb"),
  16314. name: "Side",
  16315. image: {
  16316. source: "./media/characters/alluria/side.svg",
  16317. extra: 800 / 750,
  16318. }
  16319. },
  16320. back: {
  16321. height: math.unit(6, "feet"),
  16322. weight: math.unit(150, "lb"),
  16323. name: "Back",
  16324. image: {
  16325. source: "./media/characters/alluria/back.svg",
  16326. extra: 806 / 738,
  16327. }
  16328. },
  16329. frontMaid: {
  16330. height: math.unit(6, "feet"),
  16331. weight: math.unit(150, "lb"),
  16332. name: "Front (Maid)",
  16333. image: {
  16334. source: "./media/characters/alluria/front-maid.svg",
  16335. extra: 806 / 738,
  16336. bottom: 0.01
  16337. }
  16338. },
  16339. sideMaid: {
  16340. height: math.unit(6, "feet"),
  16341. weight: math.unit(150, "lb"),
  16342. name: "Side (Maid)",
  16343. image: {
  16344. source: "./media/characters/alluria/side-maid.svg",
  16345. extra: 800 / 750,
  16346. bottom: 0.005
  16347. }
  16348. },
  16349. backMaid: {
  16350. height: math.unit(6, "feet"),
  16351. weight: math.unit(150, "lb"),
  16352. name: "Back (Maid)",
  16353. image: {
  16354. source: "./media/characters/alluria/back-maid.svg",
  16355. extra: 806 / 738,
  16356. }
  16357. },
  16358. },
  16359. [
  16360. {
  16361. name: "Micro",
  16362. height: math.unit(6, "inches"),
  16363. default: true
  16364. },
  16365. ]
  16366. ))
  16367. characterMakers.push(() => makeCharacter(
  16368. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16369. {
  16370. front: {
  16371. height: math.unit(6, "feet"),
  16372. weight: math.unit(150, "lb"),
  16373. name: "Front",
  16374. image: {
  16375. source: "./media/characters/kyle/front.svg",
  16376. extra: 1069 / 962,
  16377. bottom: 77.228 / 1727.45
  16378. }
  16379. },
  16380. },
  16381. [
  16382. {
  16383. name: "Macro",
  16384. height: math.unit(150, "feet"),
  16385. default: true
  16386. },
  16387. ]
  16388. ))
  16389. characterMakers.push(() => makeCharacter(
  16390. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16391. {
  16392. front: {
  16393. height: math.unit(6, "feet"),
  16394. weight: math.unit(300, "lb"),
  16395. name: "Front",
  16396. image: {
  16397. source: "./media/characters/duncan/front.svg",
  16398. extra: 1650 / 1482,
  16399. bottom: 0.05
  16400. }
  16401. },
  16402. },
  16403. [
  16404. {
  16405. name: "Macro",
  16406. height: math.unit(100, "feet"),
  16407. default: true
  16408. },
  16409. ]
  16410. ))
  16411. characterMakers.push(() => makeCharacter(
  16412. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16413. {
  16414. front: {
  16415. height: math.unit(5 + 4 / 12, "feet"),
  16416. weight: math.unit(220, "lb"),
  16417. name: "Front",
  16418. image: {
  16419. source: "./media/characters/memory/front.svg",
  16420. extra: 3641 / 3545,
  16421. bottom: 0.03
  16422. }
  16423. },
  16424. back: {
  16425. height: math.unit(5 + 4 / 12, "feet"),
  16426. weight: math.unit(220, "lb"),
  16427. name: "Back",
  16428. image: {
  16429. source: "./media/characters/memory/back.svg",
  16430. extra: 3641 / 3545,
  16431. bottom: 0.025
  16432. }
  16433. },
  16434. frontSkirt: {
  16435. height: math.unit(5 + 4 / 12, "feet"),
  16436. weight: math.unit(220, "lb"),
  16437. name: "Front (Skirt)",
  16438. image: {
  16439. source: "./media/characters/memory/front-skirt.svg",
  16440. extra: 3641 / 3545,
  16441. bottom: 0.03
  16442. }
  16443. },
  16444. frontDress: {
  16445. height: math.unit(5 + 4 / 12, "feet"),
  16446. weight: math.unit(220, "lb"),
  16447. name: "Front (Dress)",
  16448. image: {
  16449. source: "./media/characters/memory/front-dress.svg",
  16450. extra: 3641 / 3545,
  16451. bottom: 0.03
  16452. }
  16453. },
  16454. },
  16455. [
  16456. {
  16457. name: "Micro",
  16458. height: math.unit(6, "inches"),
  16459. default: true
  16460. },
  16461. {
  16462. name: "Normal",
  16463. height: math.unit(5 + 4 / 12, "feet")
  16464. },
  16465. ]
  16466. ))
  16467. characterMakers.push(() => makeCharacter(
  16468. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16469. {
  16470. front: {
  16471. height: math.unit(4 + 11 / 12, "feet"),
  16472. weight: math.unit(100, "lb"),
  16473. name: "Front",
  16474. image: {
  16475. source: "./media/characters/luno/front.svg",
  16476. extra: 1535 / 1487,
  16477. bottom: 0.03
  16478. }
  16479. },
  16480. },
  16481. [
  16482. {
  16483. name: "Micro",
  16484. height: math.unit(3, "inches")
  16485. },
  16486. {
  16487. name: "Normal",
  16488. height: math.unit(4 + 11 / 12, "feet"),
  16489. default: true
  16490. },
  16491. {
  16492. name: "Macro",
  16493. height: math.unit(300, "feet")
  16494. },
  16495. {
  16496. name: "Megamacro",
  16497. height: math.unit(700, "miles")
  16498. },
  16499. ]
  16500. ))
  16501. characterMakers.push(() => makeCharacter(
  16502. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16503. {
  16504. front: {
  16505. height: math.unit(6 + 2 / 12, "feet"),
  16506. weight: math.unit(170, "lb"),
  16507. name: "Front",
  16508. image: {
  16509. source: "./media/characters/jamesy/front.svg",
  16510. extra: 440 / 382,
  16511. bottom: 0.005
  16512. }
  16513. },
  16514. },
  16515. [
  16516. {
  16517. name: "Micro",
  16518. height: math.unit(3, "inches")
  16519. },
  16520. {
  16521. name: "Normal",
  16522. height: math.unit(6 + 2 / 12, "feet"),
  16523. default: true
  16524. },
  16525. {
  16526. name: "Macro",
  16527. height: math.unit(300, "feet")
  16528. },
  16529. {
  16530. name: "Megamacro",
  16531. height: math.unit(700, "miles")
  16532. },
  16533. ]
  16534. ))
  16535. characterMakers.push(() => makeCharacter(
  16536. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16537. {
  16538. front: {
  16539. height: math.unit(6, "feet"),
  16540. weight: math.unit(160, "lb"),
  16541. name: "Front",
  16542. image: {
  16543. source: "./media/characters/mark/front.svg",
  16544. extra: 3300 / 3100,
  16545. bottom: 136.42 / 3440.47
  16546. }
  16547. },
  16548. },
  16549. [
  16550. {
  16551. name: "Macro",
  16552. height: math.unit(120, "meters")
  16553. },
  16554. {
  16555. name: "Bigger Macro",
  16556. height: math.unit(350, "meters")
  16557. },
  16558. {
  16559. name: "Megamacro",
  16560. height: math.unit(8, "km"),
  16561. default: true
  16562. },
  16563. {
  16564. name: "Continental",
  16565. height: math.unit(4550, "km")
  16566. },
  16567. {
  16568. name: "Planetary",
  16569. height: math.unit(65000, "km")
  16570. },
  16571. ]
  16572. ))
  16573. characterMakers.push(() => makeCharacter(
  16574. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16575. {
  16576. front: {
  16577. height: math.unit(6, "feet"),
  16578. weight: math.unit(400, "lb"),
  16579. name: "Front",
  16580. image: {
  16581. source: "./media/characters/mac/front.svg",
  16582. extra: 1048 / 987.7,
  16583. bottom: 60 / 1107.6,
  16584. }
  16585. },
  16586. },
  16587. [
  16588. {
  16589. name: "Macro",
  16590. height: math.unit(500, "feet"),
  16591. default: true
  16592. },
  16593. ]
  16594. ))
  16595. characterMakers.push(() => makeCharacter(
  16596. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16597. {
  16598. front: {
  16599. height: math.unit(5 + 2 / 12, "feet"),
  16600. weight: math.unit(190, "lb"),
  16601. name: "Front",
  16602. image: {
  16603. source: "./media/characters/bari/front.svg",
  16604. extra: 3156 / 2880,
  16605. bottom: 0.03
  16606. }
  16607. },
  16608. back: {
  16609. height: math.unit(5 + 2 / 12, "feet"),
  16610. weight: math.unit(190, "lb"),
  16611. name: "Back",
  16612. image: {
  16613. source: "./media/characters/bari/back.svg",
  16614. extra: 3260 / 2834,
  16615. bottom: 0.025
  16616. }
  16617. },
  16618. frontPlush: {
  16619. height: math.unit(5 + 2 / 12, "feet"),
  16620. weight: math.unit(190, "lb"),
  16621. name: "Front (Plush)",
  16622. image: {
  16623. source: "./media/characters/bari/front-plush.svg",
  16624. extra: 1112 / 1061,
  16625. bottom: 0.002
  16626. }
  16627. },
  16628. },
  16629. [
  16630. {
  16631. name: "Micro",
  16632. height: math.unit(3, "inches")
  16633. },
  16634. {
  16635. name: "Normal",
  16636. height: math.unit(5 + 2 / 12, "feet"),
  16637. default: true
  16638. },
  16639. {
  16640. name: "Macro",
  16641. height: math.unit(20, "feet")
  16642. },
  16643. ]
  16644. ))
  16645. characterMakers.push(() => makeCharacter(
  16646. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16647. {
  16648. front: {
  16649. height: math.unit(6 + 1 / 12, "feet"),
  16650. weight: math.unit(275, "lb"),
  16651. name: "Front",
  16652. image: {
  16653. source: "./media/characters/hunter-misha-raven/front.svg"
  16654. }
  16655. },
  16656. },
  16657. [
  16658. {
  16659. name: "Mortal",
  16660. height: math.unit(6 + 1 / 12, "feet")
  16661. },
  16662. {
  16663. name: "Divine",
  16664. height: math.unit(1.12134e34, "parsecs"),
  16665. default: true
  16666. },
  16667. ]
  16668. ))
  16669. characterMakers.push(() => makeCharacter(
  16670. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16671. {
  16672. front: {
  16673. height: math.unit(6 + 3 / 12, "feet"),
  16674. weight: math.unit(220, "lb"),
  16675. name: "Front",
  16676. image: {
  16677. source: "./media/characters/max-calore/front.svg",
  16678. extra: 1700 / 1648,
  16679. bottom: 0.01
  16680. }
  16681. },
  16682. back: {
  16683. height: math.unit(6 + 3 / 12, "feet"),
  16684. weight: math.unit(220, "lb"),
  16685. name: "Back",
  16686. image: {
  16687. source: "./media/characters/max-calore/back.svg",
  16688. extra: 1700 / 1648,
  16689. bottom: 0.01
  16690. }
  16691. },
  16692. },
  16693. [
  16694. {
  16695. name: "Normal",
  16696. height: math.unit(6 + 3 / 12, "feet"),
  16697. default: true
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16703. {
  16704. side: {
  16705. height: math.unit(2 + 8 / 12, "feet"),
  16706. weight: math.unit(99, "lb"),
  16707. name: "Side",
  16708. image: {
  16709. source: "./media/characters/aspen/side.svg",
  16710. extra: 152 / 138,
  16711. bottom: 0.032
  16712. }
  16713. },
  16714. },
  16715. [
  16716. {
  16717. name: "Normal",
  16718. height: math.unit(2 + 8 / 12, "feet"),
  16719. default: true
  16720. },
  16721. ]
  16722. ))
  16723. characterMakers.push(() => makeCharacter(
  16724. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16725. {
  16726. side: {
  16727. height: math.unit(3 + 2 / 12, "feet"),
  16728. weight: math.unit(224, "lb"),
  16729. name: "Side",
  16730. image: {
  16731. source: "./media/characters/sheila-feral-wolf/side.svg",
  16732. extra: 179 / 166,
  16733. bottom: 0.03
  16734. }
  16735. },
  16736. },
  16737. [
  16738. {
  16739. name: "Normal",
  16740. height: math.unit(3 + 2 / 12, "feet"),
  16741. default: true
  16742. },
  16743. ]
  16744. ))
  16745. characterMakers.push(() => makeCharacter(
  16746. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16747. {
  16748. side: {
  16749. height: math.unit(1 + 9 / 12, "feet"),
  16750. weight: math.unit(38, "lb"),
  16751. name: "Side",
  16752. image: {
  16753. source: "./media/characters/michelle/side.svg",
  16754. extra: 147 / 136.7,
  16755. bottom: 0.03
  16756. }
  16757. },
  16758. },
  16759. [
  16760. {
  16761. name: "Normal",
  16762. height: math.unit(1 + 9 / 12, "feet"),
  16763. default: true
  16764. },
  16765. ]
  16766. ))
  16767. characterMakers.push(() => makeCharacter(
  16768. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16769. {
  16770. front: {
  16771. height: math.unit(1 + 1 / 12, "feet"),
  16772. weight: math.unit(18, "lb"),
  16773. name: "Front",
  16774. image: {
  16775. source: "./media/characters/nino/front.svg"
  16776. }
  16777. },
  16778. },
  16779. [
  16780. {
  16781. name: "Normal",
  16782. height: math.unit(1 + 1 / 12, "feet"),
  16783. default: true
  16784. },
  16785. ]
  16786. ))
  16787. characterMakers.push(() => makeCharacter(
  16788. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16789. {
  16790. front: {
  16791. height: math.unit(1, "feet"),
  16792. weight: math.unit(16, "lb"),
  16793. name: "Front",
  16794. image: {
  16795. source: "./media/characters/viola/front.svg"
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(1, "feet"),
  16803. default: true
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16809. {
  16810. front: {
  16811. height: math.unit(6 + 5 / 12, "feet"),
  16812. weight: math.unit(580, "lb"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/atlas/front.svg",
  16816. extra: 298.5 / 290,
  16817. bottom: 0.015
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(6 + 5 / 12, "feet"),
  16825. default: true
  16826. },
  16827. ]
  16828. ))
  16829. characterMakers.push(() => makeCharacter(
  16830. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16831. {
  16832. side: {
  16833. height: math.unit(1 + 10 / 12, "feet"),
  16834. weight: math.unit(25, "lb"),
  16835. name: "Side",
  16836. image: {
  16837. source: "./media/characters/davy/side.svg",
  16838. extra: 200 / 170,
  16839. bottom: 0.01
  16840. }
  16841. },
  16842. },
  16843. [
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(1 + 10 / 12, "feet"),
  16847. default: true
  16848. },
  16849. ]
  16850. ))
  16851. characterMakers.push(() => makeCharacter(
  16852. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16853. {
  16854. side: {
  16855. height: math.unit(4 + 8 / 12, "feet"),
  16856. weight: math.unit(166, "lb"),
  16857. name: "Side",
  16858. image: {
  16859. source: "./media/characters/fiona/side.svg",
  16860. extra: 232 / 220,
  16861. bottom: 0.03
  16862. }
  16863. },
  16864. },
  16865. [
  16866. {
  16867. name: "Normal",
  16868. height: math.unit(4 + 8 / 12, "feet"),
  16869. default: true
  16870. },
  16871. ]
  16872. ))
  16873. characterMakers.push(() => makeCharacter(
  16874. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16875. {
  16876. front: {
  16877. height: math.unit(2, "feet"),
  16878. weight: math.unit(62, "lb"),
  16879. name: "Front",
  16880. image: {
  16881. source: "./media/characters/lyla/front.svg",
  16882. bottom: 0.1
  16883. }
  16884. },
  16885. },
  16886. [
  16887. {
  16888. name: "Normal",
  16889. height: math.unit(2, "feet"),
  16890. default: true
  16891. },
  16892. ]
  16893. ))
  16894. characterMakers.push(() => makeCharacter(
  16895. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16896. {
  16897. side: {
  16898. height: math.unit(1.8, "feet"),
  16899. weight: math.unit(44, "lb"),
  16900. name: "Side",
  16901. image: {
  16902. source: "./media/characters/perseus/side.svg",
  16903. bottom: 0.21
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(1.8, "feet"),
  16911. default: true
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16917. {
  16918. side: {
  16919. height: math.unit(4 + 2 / 12, "feet"),
  16920. weight: math.unit(20, "lb"),
  16921. name: "Side",
  16922. image: {
  16923. source: "./media/characters/remus/side.svg"
  16924. }
  16925. },
  16926. },
  16927. [
  16928. {
  16929. name: "Normal",
  16930. height: math.unit(4 + 2 / 12, "feet"),
  16931. default: true
  16932. },
  16933. ]
  16934. ))
  16935. characterMakers.push(() => makeCharacter(
  16936. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16937. {
  16938. front: {
  16939. height: math.unit(4 + 11 / 12, "feet"),
  16940. weight: math.unit(114, "lb"),
  16941. name: "Front",
  16942. image: {
  16943. source: "./media/characters/raf/front.svg",
  16944. bottom: 20.5 / 1863
  16945. }
  16946. },
  16947. side: {
  16948. height: math.unit(4 + 11 / 12, "feet"),
  16949. weight: math.unit(114, "lb"),
  16950. name: "Side",
  16951. image: {
  16952. source: "./media/characters/raf/side.svg",
  16953. bottom: 22 / 1822
  16954. }
  16955. },
  16956. },
  16957. [
  16958. {
  16959. name: "Micro",
  16960. height: math.unit(2, "inches")
  16961. },
  16962. {
  16963. name: "Normal",
  16964. height: math.unit(4 + 11 / 12, "feet"),
  16965. default: true
  16966. },
  16967. {
  16968. name: "Macro",
  16969. height: math.unit(70, "feet")
  16970. },
  16971. ]
  16972. ))
  16973. characterMakers.push(() => makeCharacter(
  16974. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16975. {
  16976. front: {
  16977. height: math.unit(1.5, "meters"),
  16978. weight: math.unit(68, "kg"),
  16979. name: "Front",
  16980. image: {
  16981. source: "./media/characters/liam-einarr/front.svg",
  16982. extra: 2822 / 2666
  16983. }
  16984. },
  16985. back: {
  16986. height: math.unit(1.5, "meters"),
  16987. weight: math.unit(68, "kg"),
  16988. name: "Back",
  16989. image: {
  16990. source: "./media/characters/liam-einarr/back.svg",
  16991. extra: 2822 / 2666,
  16992. bottom: 0.015
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(1.5, "meters"),
  17000. default: true
  17001. },
  17002. {
  17003. name: "Macro",
  17004. height: math.unit(150, "meters")
  17005. },
  17006. {
  17007. name: "Megamacro",
  17008. height: math.unit(35, "km")
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17014. {
  17015. front: {
  17016. height: math.unit(6, "feet"),
  17017. weight: math.unit(75, "kg"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/linda/front.svg",
  17021. extra: 930 / 874,
  17022. bottom: 0.004
  17023. }
  17024. },
  17025. },
  17026. [
  17027. {
  17028. name: "Normal",
  17029. height: math.unit(6, "feet"),
  17030. default: true
  17031. },
  17032. ]
  17033. ))
  17034. characterMakers.push(() => makeCharacter(
  17035. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17036. {
  17037. front: {
  17038. height: math.unit(6 + 8 / 12, "feet"),
  17039. weight: math.unit(220, "lb"),
  17040. name: "Front",
  17041. image: {
  17042. source: "./media/characters/caylex/front.svg",
  17043. extra: 821 / 772,
  17044. bottom: 0.07
  17045. }
  17046. },
  17047. back: {
  17048. height: math.unit(6 + 8 / 12, "feet"),
  17049. weight: math.unit(220, "lb"),
  17050. name: "Back",
  17051. image: {
  17052. source: "./media/characters/caylex/back.svg",
  17053. extra: 821 / 772,
  17054. bottom: 0.022
  17055. }
  17056. },
  17057. hand: {
  17058. height: math.unit(1.25, "feet"),
  17059. name: "Hand",
  17060. image: {
  17061. source: "./media/characters/caylex/hand.svg"
  17062. }
  17063. },
  17064. foot: {
  17065. height: math.unit(1.6, "feet"),
  17066. name: "Foot",
  17067. image: {
  17068. source: "./media/characters/caylex/foot.svg"
  17069. }
  17070. },
  17071. armored: {
  17072. height: math.unit(6 + 8 / 12, "feet"),
  17073. weight: math.unit(250, "lb"),
  17074. name: "Armored",
  17075. image: {
  17076. source: "./media/characters/caylex/armored.svg",
  17077. extra: 1420 / 1310,
  17078. bottom: 0.045
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Normal",
  17085. height: math.unit(6 + 8 / 12, "feet"),
  17086. default: true
  17087. },
  17088. {
  17089. name: "Normal+",
  17090. height: math.unit(12, "feet")
  17091. },
  17092. ]
  17093. ))
  17094. characterMakers.push(() => makeCharacter(
  17095. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17096. {
  17097. front: {
  17098. height: math.unit(7 + 6 / 12, "feet"),
  17099. weight: math.unit(288, "lb"),
  17100. name: "Front",
  17101. image: {
  17102. source: "./media/characters/alana/front.svg",
  17103. extra: 679 / 653,
  17104. bottom: 22.5 / 701
  17105. }
  17106. },
  17107. },
  17108. [
  17109. {
  17110. name: "Normal",
  17111. height: math.unit(7 + 6 / 12, "feet")
  17112. },
  17113. {
  17114. name: "Large",
  17115. height: math.unit(50, "feet")
  17116. },
  17117. {
  17118. name: "Macro",
  17119. height: math.unit(100, "feet"),
  17120. default: true
  17121. },
  17122. {
  17123. name: "Macro+",
  17124. height: math.unit(200, "feet")
  17125. },
  17126. ]
  17127. ))
  17128. characterMakers.push(() => makeCharacter(
  17129. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17130. {
  17131. front: {
  17132. height: math.unit(6 + 1 / 12, "feet"),
  17133. weight: math.unit(210, "lb"),
  17134. name: "Front",
  17135. image: {
  17136. source: "./media/characters/hasani/front.svg",
  17137. extra: 244 / 232,
  17138. bottom: 0.01
  17139. }
  17140. },
  17141. back: {
  17142. height: math.unit(6 + 1 / 12, "feet"),
  17143. weight: math.unit(210, "lb"),
  17144. name: "Back",
  17145. image: {
  17146. source: "./media/characters/hasani/back.svg",
  17147. extra: 244 / 232,
  17148. bottom: 0.01
  17149. }
  17150. },
  17151. },
  17152. [
  17153. {
  17154. name: "Normal",
  17155. height: math.unit(6 + 1 / 12, "feet")
  17156. },
  17157. {
  17158. name: "Macro",
  17159. height: math.unit(175, "feet"),
  17160. default: true
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17166. {
  17167. front: {
  17168. height: math.unit(1.82, "meters"),
  17169. weight: math.unit(140, "lb"),
  17170. name: "Front",
  17171. image: {
  17172. source: "./media/characters/nita/front.svg",
  17173. extra: 2473 / 2363,
  17174. bottom: 0.01
  17175. }
  17176. },
  17177. },
  17178. [
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(1.82, "m")
  17182. },
  17183. {
  17184. name: "Macro",
  17185. height: math.unit(300, "m")
  17186. },
  17187. {
  17188. name: "Mistake Canon",
  17189. height: math.unit(0.5, "miles"),
  17190. default: true
  17191. },
  17192. {
  17193. name: "Big Mistake",
  17194. height: math.unit(13, "miles")
  17195. },
  17196. {
  17197. name: "Playing God",
  17198. height: math.unit(2450, "miles")
  17199. },
  17200. ]
  17201. ))
  17202. characterMakers.push(() => makeCharacter(
  17203. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17204. {
  17205. front: {
  17206. height: math.unit(4, "feet"),
  17207. weight: math.unit(120, "lb"),
  17208. name: "Front",
  17209. image: {
  17210. source: "./media/characters/shiriko/front.svg",
  17211. extra: 970/934,
  17212. bottom: 5/975
  17213. }
  17214. },
  17215. },
  17216. [
  17217. {
  17218. name: "Normal",
  17219. height: math.unit(4, "feet"),
  17220. default: true
  17221. },
  17222. ]
  17223. ))
  17224. characterMakers.push(() => makeCharacter(
  17225. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17226. {
  17227. front: {
  17228. height: math.unit(6, "feet"),
  17229. name: "front",
  17230. image: {
  17231. source: "./media/characters/deja/front.svg",
  17232. extra: 926 / 840,
  17233. bottom: 0.07
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Planck Length",
  17240. height: math.unit(1.6e-35, "meters")
  17241. },
  17242. {
  17243. name: "Normal",
  17244. height: math.unit(30.48, "meters"),
  17245. default: true
  17246. },
  17247. {
  17248. name: "Universal",
  17249. height: math.unit(8.8e26, "meters")
  17250. },
  17251. ]
  17252. ))
  17253. characterMakers.push(() => makeCharacter(
  17254. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17255. {
  17256. side: {
  17257. height: math.unit(8, "feet"),
  17258. weight: math.unit(6300, "lb"),
  17259. name: "Side",
  17260. image: {
  17261. source: "./media/characters/anima/side.svg",
  17262. bottom: 0.035
  17263. }
  17264. },
  17265. },
  17266. [
  17267. {
  17268. name: "Normal",
  17269. height: math.unit(8, "feet"),
  17270. default: true
  17271. },
  17272. ]
  17273. ))
  17274. characterMakers.push(() => makeCharacter(
  17275. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17276. {
  17277. front: {
  17278. height: math.unit(8, "feet"),
  17279. weight: math.unit(350, "lb"),
  17280. name: "Front",
  17281. image: {
  17282. source: "./media/characters/bianca/front.svg",
  17283. extra: 234 / 225,
  17284. bottom: 0.03
  17285. }
  17286. },
  17287. },
  17288. [
  17289. {
  17290. name: "Normal",
  17291. height: math.unit(8, "feet"),
  17292. default: true
  17293. },
  17294. ]
  17295. ))
  17296. characterMakers.push(() => makeCharacter(
  17297. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17298. {
  17299. front: {
  17300. height: math.unit(6, "feet"),
  17301. weight: math.unit(150, "lb"),
  17302. name: "Front",
  17303. image: {
  17304. source: "./media/characters/adinia/front.svg",
  17305. extra: 1845 / 1672,
  17306. bottom: 0.02
  17307. }
  17308. },
  17309. back: {
  17310. height: math.unit(6, "feet"),
  17311. weight: math.unit(150, "lb"),
  17312. name: "Back",
  17313. image: {
  17314. source: "./media/characters/adinia/back.svg",
  17315. extra: 1845 / 1672,
  17316. bottom: 0.002
  17317. }
  17318. },
  17319. },
  17320. [
  17321. {
  17322. name: "Normal",
  17323. height: math.unit(11 + 5 / 12, "feet"),
  17324. default: true
  17325. },
  17326. ]
  17327. ))
  17328. characterMakers.push(() => makeCharacter(
  17329. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17330. {
  17331. front: {
  17332. height: math.unit(3, "meters"),
  17333. weight: math.unit(200, "kg"),
  17334. name: "Front",
  17335. image: {
  17336. source: "./media/characters/lykasa/front.svg",
  17337. extra: 1076 / 976,
  17338. bottom: 0.06
  17339. }
  17340. },
  17341. },
  17342. [
  17343. {
  17344. name: "Normal",
  17345. height: math.unit(3, "meters")
  17346. },
  17347. {
  17348. name: "Kaiju",
  17349. height: math.unit(120, "meters"),
  17350. default: true
  17351. },
  17352. {
  17353. name: "Mega Kaiju",
  17354. height: math.unit(240, "km")
  17355. },
  17356. {
  17357. name: "Giga Kaiju",
  17358. height: math.unit(400, "megameters")
  17359. },
  17360. {
  17361. name: "Tera Kaiju",
  17362. height: math.unit(800, "gigameters")
  17363. },
  17364. {
  17365. name: "Kaiju Dragon Goddess",
  17366. height: math.unit(26, "zettaparsecs")
  17367. },
  17368. ]
  17369. ))
  17370. characterMakers.push(() => makeCharacter(
  17371. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17372. {
  17373. side: {
  17374. height: math.unit(283 / 124 * 6, "feet"),
  17375. weight: math.unit(35000, "lb"),
  17376. name: "Side",
  17377. image: {
  17378. source: "./media/characters/malfaren/side.svg",
  17379. extra: 2500 / 1010,
  17380. bottom: 0.01
  17381. }
  17382. },
  17383. front: {
  17384. height: math.unit(22.36, "feet"),
  17385. weight: math.unit(35000, "lb"),
  17386. name: "Front",
  17387. image: {
  17388. source: "./media/characters/malfaren/front.svg",
  17389. extra: 1631 / 1476,
  17390. bottom: 0.01
  17391. }
  17392. },
  17393. maw: {
  17394. height: math.unit(6.9, "feet"),
  17395. name: "Maw",
  17396. image: {
  17397. source: "./media/characters/malfaren/maw.svg"
  17398. }
  17399. },
  17400. },
  17401. [
  17402. {
  17403. name: "Big",
  17404. height: math.unit(283 / 162 * 6, "feet"),
  17405. },
  17406. {
  17407. name: "Bigger",
  17408. height: math.unit(283 / 124 * 6, "feet")
  17409. },
  17410. {
  17411. name: "Massive",
  17412. height: math.unit(283 / 92 * 6, "feet"),
  17413. default: true
  17414. },
  17415. {
  17416. name: "👀💦",
  17417. height: math.unit(283 / 73 * 6, "feet"),
  17418. },
  17419. ]
  17420. ))
  17421. characterMakers.push(() => makeCharacter(
  17422. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17423. {
  17424. front: {
  17425. height: math.unit(1.7, "m"),
  17426. weight: math.unit(70, "kg"),
  17427. name: "Front",
  17428. image: {
  17429. source: "./media/characters/kernel/front.svg",
  17430. extra: 222 / 210,
  17431. bottom: 0.007
  17432. }
  17433. },
  17434. },
  17435. [
  17436. {
  17437. name: "Nano",
  17438. height: math.unit(17, "micrometers")
  17439. },
  17440. {
  17441. name: "Micro",
  17442. height: math.unit(1.7, "mm")
  17443. },
  17444. {
  17445. name: "Small",
  17446. height: math.unit(1.7, "cm")
  17447. },
  17448. {
  17449. name: "Normal",
  17450. height: math.unit(1.7, "m"),
  17451. default: true
  17452. },
  17453. ]
  17454. ))
  17455. characterMakers.push(() => makeCharacter(
  17456. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17457. {
  17458. front: {
  17459. height: math.unit(1.75, "meters"),
  17460. weight: math.unit(65, "kg"),
  17461. name: "Front",
  17462. image: {
  17463. source: "./media/characters/jayne-folest/front.svg",
  17464. extra: 2115 / 2007,
  17465. bottom: 0.02
  17466. }
  17467. },
  17468. back: {
  17469. height: math.unit(1.75, "meters"),
  17470. weight: math.unit(65, "kg"),
  17471. name: "Back",
  17472. image: {
  17473. source: "./media/characters/jayne-folest/back.svg",
  17474. extra: 2115 / 2007,
  17475. bottom: 0.005
  17476. }
  17477. },
  17478. frontClothed: {
  17479. height: math.unit(1.75, "meters"),
  17480. weight: math.unit(65, "kg"),
  17481. name: "Front (Clothed)",
  17482. image: {
  17483. source: "./media/characters/jayne-folest/front-clothed.svg",
  17484. extra: 2115 / 2007,
  17485. bottom: 0.035
  17486. }
  17487. },
  17488. hand: {
  17489. height: math.unit(1 / 1.260, "feet"),
  17490. name: "Hand",
  17491. image: {
  17492. source: "./media/characters/jayne-folest/hand.svg"
  17493. }
  17494. },
  17495. foot: {
  17496. height: math.unit(1 / 0.918, "feet"),
  17497. name: "Foot",
  17498. image: {
  17499. source: "./media/characters/jayne-folest/foot.svg"
  17500. }
  17501. },
  17502. },
  17503. [
  17504. {
  17505. name: "Micro",
  17506. height: math.unit(4, "cm")
  17507. },
  17508. {
  17509. name: "Normal",
  17510. height: math.unit(1.75, "meters")
  17511. },
  17512. {
  17513. name: "Macro",
  17514. height: math.unit(47.5, "meters"),
  17515. default: true
  17516. },
  17517. ]
  17518. ))
  17519. characterMakers.push(() => makeCharacter(
  17520. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17521. {
  17522. front: {
  17523. height: math.unit(180, "cm"),
  17524. weight: math.unit(70, "kg"),
  17525. name: "Front",
  17526. image: {
  17527. source: "./media/characters/algier/front.svg",
  17528. extra: 596 / 572,
  17529. bottom: 0.04
  17530. }
  17531. },
  17532. back: {
  17533. height: math.unit(180, "cm"),
  17534. weight: math.unit(70, "kg"),
  17535. name: "Back",
  17536. image: {
  17537. source: "./media/characters/algier/back.svg",
  17538. extra: 596 / 572,
  17539. bottom: 0.025
  17540. }
  17541. },
  17542. frontdressed: {
  17543. height: math.unit(180, "cm"),
  17544. weight: math.unit(150, "kg"),
  17545. name: "Front-dressed",
  17546. image: {
  17547. source: "./media/characters/algier/front-dressed.svg",
  17548. extra: 596 / 572,
  17549. bottom: 0.038
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Micro",
  17556. height: math.unit(5, "cm")
  17557. },
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(180, "cm"),
  17561. default: true
  17562. },
  17563. {
  17564. name: "Macro",
  17565. height: math.unit(64, "m")
  17566. },
  17567. ]
  17568. ))
  17569. characterMakers.push(() => makeCharacter(
  17570. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17571. {
  17572. upright: {
  17573. height: math.unit(7, "feet"),
  17574. weight: math.unit(300, "lb"),
  17575. name: "Upright",
  17576. image: {
  17577. source: "./media/characters/pretzel/upright.svg",
  17578. extra: 534 / 522,
  17579. bottom: 0.065
  17580. }
  17581. },
  17582. sprawling: {
  17583. height: math.unit(3.75, "feet"),
  17584. weight: math.unit(300, "lb"),
  17585. name: "Sprawling",
  17586. image: {
  17587. source: "./media/characters/pretzel/sprawling.svg",
  17588. extra: 314 / 281,
  17589. bottom: 0.1
  17590. }
  17591. },
  17592. tongue: {
  17593. height: math.unit(2, "feet"),
  17594. name: "Tongue",
  17595. image: {
  17596. source: "./media/characters/pretzel/tongue.svg"
  17597. }
  17598. },
  17599. },
  17600. [
  17601. {
  17602. name: "Normal",
  17603. height: math.unit(7, "feet"),
  17604. default: true
  17605. },
  17606. {
  17607. name: "Oversized",
  17608. height: math.unit(15, "feet")
  17609. },
  17610. {
  17611. name: "Huge",
  17612. height: math.unit(30, "feet")
  17613. },
  17614. {
  17615. name: "Macro",
  17616. height: math.unit(250, "feet")
  17617. },
  17618. ]
  17619. ))
  17620. characterMakers.push(() => makeCharacter(
  17621. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17622. {
  17623. sideFront: {
  17624. height: math.unit(5 + 2 / 12, "feet"),
  17625. weight: math.unit(120, "lb"),
  17626. name: "Front Side",
  17627. image: {
  17628. source: "./media/characters/roxi/side-front.svg",
  17629. extra: 2924 / 2717,
  17630. bottom: 0.08
  17631. }
  17632. },
  17633. sideBack: {
  17634. height: math.unit(5 + 2 / 12, "feet"),
  17635. weight: math.unit(120, "lb"),
  17636. name: "Back Side",
  17637. image: {
  17638. source: "./media/characters/roxi/side-back.svg",
  17639. extra: 2904 / 2693,
  17640. bottom: 0.06
  17641. }
  17642. },
  17643. front: {
  17644. height: math.unit(5 + 2 / 12, "feet"),
  17645. weight: math.unit(120, "lb"),
  17646. name: "Front",
  17647. image: {
  17648. source: "./media/characters/roxi/front.svg",
  17649. extra: 2028 / 1907,
  17650. bottom: 0.01
  17651. }
  17652. },
  17653. frontAlt: {
  17654. height: math.unit(5 + 2 / 12, "feet"),
  17655. weight: math.unit(120, "lb"),
  17656. name: "Front (Alt)",
  17657. image: {
  17658. source: "./media/characters/roxi/front-alt.svg",
  17659. extra: 1828 / 1798,
  17660. bottom: 0.01
  17661. }
  17662. },
  17663. sitting: {
  17664. height: math.unit(2.8, "feet"),
  17665. weight: math.unit(120, "lb"),
  17666. name: "Sitting",
  17667. image: {
  17668. source: "./media/characters/roxi/sitting.svg",
  17669. extra: 2660 / 2462,
  17670. bottom: 0.1
  17671. }
  17672. },
  17673. },
  17674. [
  17675. {
  17676. name: "Normal",
  17677. height: math.unit(5 + 2 / 12, "feet"),
  17678. default: true
  17679. },
  17680. ]
  17681. ))
  17682. characterMakers.push(() => makeCharacter(
  17683. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17684. {
  17685. side: {
  17686. height: math.unit(55, "feet"),
  17687. weight: math.unit(153, "tons"),
  17688. name: "Side",
  17689. image: {
  17690. source: "./media/characters/shadow/side.svg",
  17691. extra: 701 / 628,
  17692. bottom: 0.02
  17693. }
  17694. },
  17695. flying: {
  17696. height: math.unit(145, "feet"),
  17697. weight: math.unit(153, "tons"),
  17698. name: "Flying",
  17699. image: {
  17700. source: "./media/characters/shadow/flying.svg"
  17701. }
  17702. },
  17703. },
  17704. [
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(55, "feet"),
  17708. default: true
  17709. },
  17710. ]
  17711. ))
  17712. characterMakers.push(() => makeCharacter(
  17713. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17714. {
  17715. front: {
  17716. height: math.unit(6, "feet"),
  17717. weight: math.unit(200, "lb"),
  17718. name: "Front",
  17719. image: {
  17720. source: "./media/characters/marcie/front.svg",
  17721. extra: 960 / 876,
  17722. bottom: 58 / 1017.87
  17723. }
  17724. },
  17725. },
  17726. [
  17727. {
  17728. name: "Macro",
  17729. height: math.unit(1, "mile"),
  17730. default: true
  17731. },
  17732. ]
  17733. ))
  17734. characterMakers.push(() => makeCharacter(
  17735. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17736. {
  17737. front: {
  17738. height: math.unit(7, "feet"),
  17739. weight: math.unit(200, "lb"),
  17740. name: "Front",
  17741. image: {
  17742. source: "./media/characters/kachina/front.svg",
  17743. extra: 1290.68 / 1119,
  17744. bottom: 36.5 / 1327.18
  17745. }
  17746. },
  17747. },
  17748. [
  17749. {
  17750. name: "Normal",
  17751. height: math.unit(7, "feet"),
  17752. default: true
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17758. {
  17759. looking: {
  17760. height: math.unit(2, "meters"),
  17761. weight: math.unit(300, "kg"),
  17762. name: "Looking",
  17763. image: {
  17764. source: "./media/characters/kash/looking.svg",
  17765. extra: 474 / 344,
  17766. bottom: 0.03
  17767. }
  17768. },
  17769. side: {
  17770. height: math.unit(2, "meters"),
  17771. weight: math.unit(300, "kg"),
  17772. name: "Side",
  17773. image: {
  17774. source: "./media/characters/kash/side.svg",
  17775. extra: 302 / 251,
  17776. bottom: 0.03
  17777. }
  17778. },
  17779. front: {
  17780. height: math.unit(2, "meters"),
  17781. weight: math.unit(300, "kg"),
  17782. name: "Front",
  17783. image: {
  17784. source: "./media/characters/kash/front.svg",
  17785. extra: 495 / 360,
  17786. bottom: 0.015
  17787. }
  17788. },
  17789. },
  17790. [
  17791. {
  17792. name: "Normal",
  17793. height: math.unit(2, "meters"),
  17794. default: true
  17795. },
  17796. {
  17797. name: "Big",
  17798. height: math.unit(3, "meters")
  17799. },
  17800. {
  17801. name: "Large",
  17802. height: math.unit(5, "meters")
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17808. {
  17809. feeding: {
  17810. height: math.unit(6.7, "feet"),
  17811. weight: math.unit(350, "lb"),
  17812. name: "Feeding",
  17813. image: {
  17814. source: "./media/characters/lalim/feeding.svg",
  17815. }
  17816. },
  17817. },
  17818. [
  17819. {
  17820. name: "Normal",
  17821. height: math.unit(6.7, "feet"),
  17822. default: true
  17823. },
  17824. ]
  17825. ))
  17826. characterMakers.push(() => makeCharacter(
  17827. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17828. {
  17829. front: {
  17830. height: math.unit(9.5, "feet"),
  17831. weight: math.unit(600, "lb"),
  17832. name: "Front",
  17833. image: {
  17834. source: "./media/characters/de'vout/front.svg",
  17835. extra: 1443 / 1328,
  17836. bottom: 0.025
  17837. }
  17838. },
  17839. back: {
  17840. height: math.unit(9.5, "feet"),
  17841. weight: math.unit(600, "lb"),
  17842. name: "Back",
  17843. image: {
  17844. source: "./media/characters/de'vout/back.svg",
  17845. extra: 1443 / 1328
  17846. }
  17847. },
  17848. frontDressed: {
  17849. height: math.unit(9.5, "feet"),
  17850. weight: math.unit(600, "lb"),
  17851. name: "Front (Dressed",
  17852. image: {
  17853. source: "./media/characters/de'vout/front-dressed.svg",
  17854. extra: 1443 / 1328,
  17855. bottom: 0.025
  17856. }
  17857. },
  17858. backDressed: {
  17859. height: math.unit(9.5, "feet"),
  17860. weight: math.unit(600, "lb"),
  17861. name: "Back (Dressed",
  17862. image: {
  17863. source: "./media/characters/de'vout/back-dressed.svg",
  17864. extra: 1443 / 1328
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(9.5, "feet"),
  17872. default: true
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17878. {
  17879. front: {
  17880. height: math.unit(8, "feet"),
  17881. weight: math.unit(225, "lb"),
  17882. name: "Front",
  17883. image: {
  17884. source: "./media/characters/talana/front.svg",
  17885. extra: 1410 / 1300,
  17886. bottom: 0.015
  17887. }
  17888. },
  17889. frontDressed: {
  17890. height: math.unit(8, "feet"),
  17891. weight: math.unit(225, "lb"),
  17892. name: "Front (Dressed",
  17893. image: {
  17894. source: "./media/characters/talana/front-dressed.svg",
  17895. extra: 1410 / 1300,
  17896. bottom: 0.015
  17897. }
  17898. },
  17899. },
  17900. [
  17901. {
  17902. name: "Normal",
  17903. height: math.unit(8, "feet"),
  17904. default: true
  17905. },
  17906. ]
  17907. ))
  17908. characterMakers.push(() => makeCharacter(
  17909. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17910. {
  17911. side: {
  17912. height: math.unit(7.2, "feet"),
  17913. weight: math.unit(150, "lb"),
  17914. name: "Side",
  17915. image: {
  17916. source: "./media/characters/xeauvok/side.svg",
  17917. extra: 1975 / 1523,
  17918. bottom: 0.07
  17919. }
  17920. },
  17921. },
  17922. [
  17923. {
  17924. name: "Normal",
  17925. height: math.unit(7.2, "feet"),
  17926. default: true
  17927. },
  17928. ]
  17929. ))
  17930. characterMakers.push(() => makeCharacter(
  17931. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17932. {
  17933. side: {
  17934. height: math.unit(10, "feet"),
  17935. weight: math.unit(900, "kg"),
  17936. name: "Side",
  17937. image: {
  17938. source: "./media/characters/zara/side.svg",
  17939. extra: 504 / 498
  17940. }
  17941. },
  17942. },
  17943. [
  17944. {
  17945. name: "Normal",
  17946. height: math.unit(10, "feet"),
  17947. default: true
  17948. },
  17949. ]
  17950. ))
  17951. characterMakers.push(() => makeCharacter(
  17952. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17953. {
  17954. side: {
  17955. height: math.unit(6, "feet"),
  17956. weight: math.unit(150, "lb"),
  17957. name: "Side",
  17958. image: {
  17959. source: "./media/characters/richard-dragon/side.svg",
  17960. extra: 845 / 340,
  17961. bottom: 0.017
  17962. }
  17963. },
  17964. maw: {
  17965. height: math.unit(2.97, "feet"),
  17966. name: "Maw",
  17967. image: {
  17968. source: "./media/characters/richard-dragon/maw.svg"
  17969. }
  17970. },
  17971. },
  17972. [
  17973. ]
  17974. ))
  17975. characterMakers.push(() => makeCharacter(
  17976. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17977. {
  17978. front: {
  17979. height: math.unit(4, "feet"),
  17980. weight: math.unit(100, "lb"),
  17981. name: "Front",
  17982. image: {
  17983. source: "./media/characters/richard-smeargle/front.svg",
  17984. extra: 2952 / 2820,
  17985. bottom: 0.028
  17986. }
  17987. },
  17988. },
  17989. [
  17990. {
  17991. name: "Normal",
  17992. height: math.unit(4, "feet"),
  17993. default: true
  17994. },
  17995. {
  17996. name: "Dynamax",
  17997. height: math.unit(20, "meters")
  17998. },
  17999. ]
  18000. ))
  18001. characterMakers.push(() => makeCharacter(
  18002. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18003. {
  18004. front: {
  18005. height: math.unit(6, "feet"),
  18006. weight: math.unit(110, "lb"),
  18007. name: "Front",
  18008. image: {
  18009. source: "./media/characters/klay/front.svg",
  18010. extra: 962 / 883,
  18011. bottom: 0.04
  18012. }
  18013. },
  18014. back: {
  18015. height: math.unit(6, "feet"),
  18016. weight: math.unit(110, "lb"),
  18017. name: "Back",
  18018. image: {
  18019. source: "./media/characters/klay/back.svg",
  18020. extra: 962 / 883
  18021. }
  18022. },
  18023. beans: {
  18024. height: math.unit(1.15, "feet"),
  18025. name: "Beans",
  18026. image: {
  18027. source: "./media/characters/klay/beans.svg"
  18028. }
  18029. },
  18030. },
  18031. [
  18032. {
  18033. name: "Micro",
  18034. height: math.unit(6, "inches")
  18035. },
  18036. {
  18037. name: "Mini",
  18038. height: math.unit(3, "feet")
  18039. },
  18040. {
  18041. name: "Normal",
  18042. height: math.unit(6, "feet"),
  18043. default: true
  18044. },
  18045. {
  18046. name: "Big",
  18047. height: math.unit(25, "feet")
  18048. },
  18049. {
  18050. name: "Macro",
  18051. height: math.unit(100, "feet")
  18052. },
  18053. {
  18054. name: "Megamacro",
  18055. height: math.unit(400, "feet")
  18056. },
  18057. ]
  18058. ))
  18059. characterMakers.push(() => makeCharacter(
  18060. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18061. {
  18062. front: {
  18063. height: math.unit(6, "feet"),
  18064. weight: math.unit(160, "lb"),
  18065. name: "Front",
  18066. image: {
  18067. source: "./media/characters/marcus/front.svg",
  18068. extra: 734 / 676,
  18069. bottom: 0.03
  18070. }
  18071. },
  18072. },
  18073. [
  18074. {
  18075. name: "Little",
  18076. height: math.unit(6, "feet")
  18077. },
  18078. {
  18079. name: "Normal",
  18080. height: math.unit(110, "feet"),
  18081. default: true
  18082. },
  18083. {
  18084. name: "Macro",
  18085. height: math.unit(250, "feet")
  18086. },
  18087. {
  18088. name: "Megamacro",
  18089. height: math.unit(1000, "feet")
  18090. },
  18091. ]
  18092. ))
  18093. characterMakers.push(() => makeCharacter(
  18094. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18095. {
  18096. front: {
  18097. height: math.unit(7, "feet"),
  18098. weight: math.unit(275, "lb"),
  18099. name: "Front",
  18100. image: {
  18101. source: "./media/characters/claude-delroute/front.svg",
  18102. extra: 230 / 214,
  18103. bottom: 0.007
  18104. }
  18105. },
  18106. side: {
  18107. height: math.unit(7, "feet"),
  18108. weight: math.unit(275, "lb"),
  18109. name: "Side",
  18110. image: {
  18111. source: "./media/characters/claude-delroute/side.svg",
  18112. extra: 222 / 214,
  18113. bottom: 0.01
  18114. }
  18115. },
  18116. back: {
  18117. height: math.unit(7, "feet"),
  18118. weight: math.unit(275, "lb"),
  18119. name: "Back",
  18120. image: {
  18121. source: "./media/characters/claude-delroute/back.svg",
  18122. extra: 230 / 214,
  18123. bottom: 0.015
  18124. }
  18125. },
  18126. maw: {
  18127. height: math.unit(0.6407, "meters"),
  18128. name: "Maw",
  18129. image: {
  18130. source: "./media/characters/claude-delroute/maw.svg"
  18131. }
  18132. },
  18133. },
  18134. [
  18135. {
  18136. name: "Normal",
  18137. height: math.unit(7, "feet"),
  18138. default: true
  18139. },
  18140. {
  18141. name: "Lorge",
  18142. height: math.unit(20, "feet")
  18143. },
  18144. ]
  18145. ))
  18146. characterMakers.push(() => makeCharacter(
  18147. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18148. {
  18149. front: {
  18150. height: math.unit(8 + 4 / 12, "feet"),
  18151. weight: math.unit(600, "lb"),
  18152. name: "Front",
  18153. image: {
  18154. source: "./media/characters/dragonien/front.svg",
  18155. extra: 100 / 94,
  18156. bottom: 3.3 / 103.3445
  18157. }
  18158. },
  18159. back: {
  18160. height: math.unit(8 + 4 / 12, "feet"),
  18161. weight: math.unit(600, "lb"),
  18162. name: "Back",
  18163. image: {
  18164. source: "./media/characters/dragonien/back.svg",
  18165. extra: 776 / 746,
  18166. bottom: 6.4 / 782.0616
  18167. }
  18168. },
  18169. foot: {
  18170. height: math.unit(1.54, "feet"),
  18171. name: "Foot",
  18172. image: {
  18173. source: "./media/characters/dragonien/foot.svg",
  18174. }
  18175. },
  18176. },
  18177. [
  18178. {
  18179. name: "Normal",
  18180. height: math.unit(8 + 4 / 12, "feet"),
  18181. default: true
  18182. },
  18183. {
  18184. name: "Macro",
  18185. height: math.unit(200, "feet")
  18186. },
  18187. {
  18188. name: "Megamacro",
  18189. height: math.unit(1, "mile")
  18190. },
  18191. {
  18192. name: "Gigamacro",
  18193. height: math.unit(1000, "miles")
  18194. },
  18195. ]
  18196. ))
  18197. characterMakers.push(() => makeCharacter(
  18198. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18199. {
  18200. front: {
  18201. height: math.unit(5 + 2 / 12, "feet"),
  18202. weight: math.unit(110, "lb"),
  18203. name: "Front",
  18204. image: {
  18205. source: "./media/characters/desta/front.svg",
  18206. extra: 767 / 726,
  18207. bottom: 11.7 / 779
  18208. }
  18209. },
  18210. back: {
  18211. height: math.unit(5 + 2 / 12, "feet"),
  18212. weight: math.unit(110, "lb"),
  18213. name: "Back",
  18214. image: {
  18215. source: "./media/characters/desta/back.svg",
  18216. extra: 777 / 728,
  18217. bottom: 6 / 784
  18218. }
  18219. },
  18220. frontAlt: {
  18221. height: math.unit(5 + 2 / 12, "feet"),
  18222. weight: math.unit(110, "lb"),
  18223. name: "Front",
  18224. image: {
  18225. source: "./media/characters/desta/front-alt.svg",
  18226. extra: 1482 / 1417
  18227. }
  18228. },
  18229. side: {
  18230. height: math.unit(5 + 2 / 12, "feet"),
  18231. weight: math.unit(110, "lb"),
  18232. name: "Side",
  18233. image: {
  18234. source: "./media/characters/desta/side.svg",
  18235. extra: 2579 / 2491,
  18236. bottom: 0.053
  18237. }
  18238. },
  18239. },
  18240. [
  18241. {
  18242. name: "Micro",
  18243. height: math.unit(6, "inches")
  18244. },
  18245. {
  18246. name: "Normal",
  18247. height: math.unit(5 + 2 / 12, "feet"),
  18248. default: true
  18249. },
  18250. {
  18251. name: "Macro",
  18252. height: math.unit(62, "feet")
  18253. },
  18254. {
  18255. name: "Megamacro",
  18256. height: math.unit(1800, "feet")
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18262. {
  18263. front: {
  18264. height: math.unit(10, "feet"),
  18265. weight: math.unit(700, "lb"),
  18266. name: "Front",
  18267. image: {
  18268. source: "./media/characters/storm-alystar/front.svg",
  18269. extra: 2112 / 1898,
  18270. bottom: 0.034
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Micro",
  18277. height: math.unit(3.5, "inches")
  18278. },
  18279. {
  18280. name: "Normal",
  18281. height: math.unit(10, "feet"),
  18282. default: true
  18283. },
  18284. {
  18285. name: "Macro",
  18286. height: math.unit(400, "feet")
  18287. },
  18288. {
  18289. name: "Deific",
  18290. height: math.unit(60, "miles")
  18291. },
  18292. ]
  18293. ))
  18294. characterMakers.push(() => makeCharacter(
  18295. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18296. {
  18297. front: {
  18298. height: math.unit(2.35, "meters"),
  18299. weight: math.unit(119, "kg"),
  18300. name: "Front",
  18301. image: {
  18302. source: "./media/characters/ilia/front.svg",
  18303. extra: 1285 / 1255,
  18304. bottom: 0.06
  18305. }
  18306. },
  18307. },
  18308. [
  18309. {
  18310. name: "Normal",
  18311. height: math.unit(2.35, "meters")
  18312. },
  18313. {
  18314. name: "Macro",
  18315. height: math.unit(140, "meters"),
  18316. default: true
  18317. },
  18318. {
  18319. name: "Megamacro",
  18320. height: math.unit(100, "miles")
  18321. },
  18322. ]
  18323. ))
  18324. characterMakers.push(() => makeCharacter(
  18325. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18326. {
  18327. front: {
  18328. height: math.unit(6 + 5 / 12, "feet"),
  18329. weight: math.unit(190, "lb"),
  18330. name: "Front",
  18331. image: {
  18332. source: "./media/characters/kingdead/front.svg",
  18333. extra: 1228 / 1177
  18334. }
  18335. },
  18336. },
  18337. [
  18338. {
  18339. name: "Micro",
  18340. height: math.unit(7, "inches")
  18341. },
  18342. {
  18343. name: "Normal",
  18344. height: math.unit(6 + 5 / 12, "feet")
  18345. },
  18346. {
  18347. name: "Macro",
  18348. height: math.unit(150, "feet"),
  18349. default: true
  18350. },
  18351. {
  18352. name: "Megamacro",
  18353. height: math.unit(200, "miles")
  18354. },
  18355. ]
  18356. ))
  18357. characterMakers.push(() => makeCharacter(
  18358. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18359. {
  18360. front: {
  18361. height: math.unit(8, "feet"),
  18362. weight: math.unit(600, "lb"),
  18363. name: "Front",
  18364. image: {
  18365. source: "./media/characters/kyrehx/front.svg",
  18366. extra: 1195 / 1095,
  18367. bottom: 0.034
  18368. }
  18369. },
  18370. },
  18371. [
  18372. {
  18373. name: "Micro",
  18374. height: math.unit(2, "inches")
  18375. },
  18376. {
  18377. name: "Normal",
  18378. height: math.unit(8, "feet"),
  18379. default: true
  18380. },
  18381. {
  18382. name: "Macro",
  18383. height: math.unit(255, "feet")
  18384. },
  18385. ]
  18386. ))
  18387. characterMakers.push(() => makeCharacter(
  18388. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18389. {
  18390. front: {
  18391. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18392. weight: math.unit(184, "lb"),
  18393. name: "Front",
  18394. image: {
  18395. source: "./media/characters/xang/front.svg",
  18396. extra: 845 / 755
  18397. }
  18398. },
  18399. },
  18400. [
  18401. {
  18402. name: "Normal",
  18403. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18404. default: true
  18405. },
  18406. {
  18407. name: "Macro",
  18408. height: math.unit(0.935 * 146, "feet")
  18409. },
  18410. {
  18411. name: "Megamacro",
  18412. height: math.unit(0.935 * 3, "miles")
  18413. },
  18414. ]
  18415. ))
  18416. characterMakers.push(() => makeCharacter(
  18417. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18418. {
  18419. frontDressed: {
  18420. height: math.unit(5 + 7 / 12, "feet"),
  18421. weight: math.unit(140, "lb"),
  18422. name: "Front (Dressed)",
  18423. image: {
  18424. source: "./media/characters/doc-weardno/front-dressed.svg",
  18425. extra: 263 / 234
  18426. }
  18427. },
  18428. backDressed: {
  18429. height: math.unit(5 + 7 / 12, "feet"),
  18430. weight: math.unit(140, "lb"),
  18431. name: "Back (Dressed)",
  18432. image: {
  18433. source: "./media/characters/doc-weardno/back-dressed.svg",
  18434. extra: 266 / 238
  18435. }
  18436. },
  18437. front: {
  18438. height: math.unit(5 + 7 / 12, "feet"),
  18439. weight: math.unit(140, "lb"),
  18440. name: "Front",
  18441. image: {
  18442. source: "./media/characters/doc-weardno/front.svg",
  18443. extra: 254 / 233
  18444. }
  18445. },
  18446. },
  18447. [
  18448. {
  18449. name: "Micro",
  18450. height: math.unit(3, "inches")
  18451. },
  18452. {
  18453. name: "Normal",
  18454. height: math.unit(5 + 7 / 12, "feet"),
  18455. default: true
  18456. },
  18457. {
  18458. name: "Macro",
  18459. height: math.unit(25, "feet")
  18460. },
  18461. {
  18462. name: "Megamacro",
  18463. height: math.unit(2, "miles")
  18464. },
  18465. ]
  18466. ))
  18467. characterMakers.push(() => makeCharacter(
  18468. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18469. {
  18470. front: {
  18471. height: math.unit(6 + 2 / 12, "feet"),
  18472. weight: math.unit(153, "lb"),
  18473. name: "Front",
  18474. image: {
  18475. source: "./media/characters/seth-whilst/front.svg",
  18476. bottom: 0.07
  18477. }
  18478. },
  18479. },
  18480. [
  18481. {
  18482. name: "Micro",
  18483. height: math.unit(5, "inches")
  18484. },
  18485. {
  18486. name: "Normal",
  18487. height: math.unit(6 + 2 / 12, "feet"),
  18488. default: true
  18489. },
  18490. ]
  18491. ))
  18492. characterMakers.push(() => makeCharacter(
  18493. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18494. {
  18495. front: {
  18496. height: math.unit(3, "inches"),
  18497. weight: math.unit(8, "grams"),
  18498. name: "Front",
  18499. image: {
  18500. source: "./media/characters/pocket-jabari/front.svg",
  18501. extra: 1024 / 974,
  18502. bottom: 0.039
  18503. }
  18504. },
  18505. },
  18506. [
  18507. {
  18508. name: "Minimicro",
  18509. height: math.unit(8, "mm")
  18510. },
  18511. {
  18512. name: "Micro",
  18513. height: math.unit(3, "inches"),
  18514. default: true
  18515. },
  18516. {
  18517. name: "Normal",
  18518. height: math.unit(3, "feet")
  18519. },
  18520. ]
  18521. ))
  18522. characterMakers.push(() => makeCharacter(
  18523. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18524. {
  18525. front: {
  18526. height: math.unit(15, "feet"),
  18527. weight: math.unit(3280, "lb"),
  18528. name: "Front",
  18529. image: {
  18530. source: "./media/characters/sapphy/front.svg",
  18531. extra: 671 / 577,
  18532. bottom: 0.085
  18533. }
  18534. },
  18535. back: {
  18536. height: math.unit(15, "feet"),
  18537. weight: math.unit(3280, "lb"),
  18538. name: "Back",
  18539. image: {
  18540. source: "./media/characters/sapphy/back.svg",
  18541. extra: 631 / 607,
  18542. bottom: 0.045
  18543. }
  18544. },
  18545. },
  18546. [
  18547. {
  18548. name: "Normal",
  18549. height: math.unit(15, "feet")
  18550. },
  18551. {
  18552. name: "Casual Macro",
  18553. height: math.unit(120, "feet")
  18554. },
  18555. {
  18556. name: "Macro",
  18557. height: math.unit(2150, "feet"),
  18558. default: true
  18559. },
  18560. {
  18561. name: "Megamacro",
  18562. height: math.unit(8, "miles")
  18563. },
  18564. {
  18565. name: "Galaxy Mom",
  18566. height: math.unit(6, "megalightyears")
  18567. },
  18568. ]
  18569. ))
  18570. characterMakers.push(() => makeCharacter(
  18571. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18572. {
  18573. front: {
  18574. height: math.unit(6, "feet"),
  18575. weight: math.unit(170, "lb"),
  18576. name: "Front",
  18577. image: {
  18578. source: "./media/characters/kiro/front.svg",
  18579. extra: 1064 / 1012,
  18580. bottom: 0.052
  18581. }
  18582. },
  18583. },
  18584. [
  18585. {
  18586. name: "Micro",
  18587. height: math.unit(6, "inches")
  18588. },
  18589. {
  18590. name: "Normal",
  18591. height: math.unit(6, "feet"),
  18592. default: true
  18593. },
  18594. {
  18595. name: "Macro",
  18596. height: math.unit(72, "feet")
  18597. },
  18598. ]
  18599. ))
  18600. characterMakers.push(() => makeCharacter(
  18601. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18602. {
  18603. front: {
  18604. height: math.unit(5 + 9 / 12, "feet"),
  18605. weight: math.unit(175, "lb"),
  18606. name: "Front",
  18607. image: {
  18608. source: "./media/characters/irishfox/front.svg",
  18609. extra: 1912 / 1680,
  18610. bottom: 0.02
  18611. }
  18612. },
  18613. },
  18614. [
  18615. {
  18616. name: "Nano",
  18617. height: math.unit(1, "mm")
  18618. },
  18619. {
  18620. name: "Micro",
  18621. height: math.unit(2, "inches")
  18622. },
  18623. {
  18624. name: "Normal",
  18625. height: math.unit(5 + 9 / 12, "feet"),
  18626. default: true
  18627. },
  18628. {
  18629. name: "Macro",
  18630. height: math.unit(45, "feet")
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18636. {
  18637. front: {
  18638. height: math.unit(6 + 1 / 12, "feet"),
  18639. weight: math.unit(75, "lb"),
  18640. name: "Front",
  18641. image: {
  18642. source: "./media/characters/aronai-sieyes/front.svg",
  18643. extra: 1556 / 1480,
  18644. bottom: 0.015
  18645. }
  18646. },
  18647. side: {
  18648. height: math.unit(6 + 1 / 12, "feet"),
  18649. weight: math.unit(75, "lb"),
  18650. name: "Side",
  18651. image: {
  18652. source: "./media/characters/aronai-sieyes/side.svg",
  18653. extra: 1433 / 1390,
  18654. bottom: 0.0393
  18655. }
  18656. },
  18657. back: {
  18658. height: math.unit(6 + 1 / 12, "feet"),
  18659. weight: math.unit(75, "lb"),
  18660. name: "Back",
  18661. image: {
  18662. source: "./media/characters/aronai-sieyes/back.svg",
  18663. extra: 1544 / 1494,
  18664. bottom: 0.02
  18665. }
  18666. },
  18667. frontClothed: {
  18668. height: math.unit(6 + 1 / 12, "feet"),
  18669. weight: math.unit(75, "lb"),
  18670. name: "Front (Clothed)",
  18671. image: {
  18672. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18673. extra: 1582 / 1527
  18674. }
  18675. },
  18676. feral: {
  18677. height: math.unit(18, "feet"),
  18678. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18679. name: "Feral",
  18680. image: {
  18681. source: "./media/characters/aronai-sieyes/feral.svg",
  18682. extra: 1530 / 1240,
  18683. bottom: 0.035
  18684. }
  18685. },
  18686. },
  18687. [
  18688. {
  18689. name: "Micro",
  18690. height: math.unit(2, "inches")
  18691. },
  18692. {
  18693. name: "Normal",
  18694. height: math.unit(6 + 1 / 12, "feet"),
  18695. default: true
  18696. }
  18697. ]
  18698. ))
  18699. characterMakers.push(() => makeCharacter(
  18700. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18701. {
  18702. front: {
  18703. height: math.unit(12, "feet"),
  18704. weight: math.unit(410, "kg"),
  18705. name: "Front",
  18706. image: {
  18707. source: "./media/characters/xuna/front.svg",
  18708. extra: 2184 / 1980
  18709. }
  18710. },
  18711. side: {
  18712. height: math.unit(12, "feet"),
  18713. weight: math.unit(410, "kg"),
  18714. name: "Side",
  18715. image: {
  18716. source: "./media/characters/xuna/side.svg",
  18717. extra: 2184 / 1980
  18718. }
  18719. },
  18720. back: {
  18721. height: math.unit(12, "feet"),
  18722. weight: math.unit(410, "kg"),
  18723. name: "Back",
  18724. image: {
  18725. source: "./media/characters/xuna/back.svg",
  18726. extra: 2184 / 1980
  18727. }
  18728. },
  18729. },
  18730. [
  18731. {
  18732. name: "Nano glow",
  18733. height: math.unit(10, "nm")
  18734. },
  18735. {
  18736. name: "Micro floof",
  18737. height: math.unit(0.3, "m")
  18738. },
  18739. {
  18740. name: "Huggable softy boi",
  18741. height: math.unit(3.6576, "m"),
  18742. default: true
  18743. },
  18744. {
  18745. name: "Admirable floof",
  18746. height: math.unit(80, "meters")
  18747. },
  18748. {
  18749. name: "Gentle macro",
  18750. height: math.unit(300, "meters")
  18751. },
  18752. {
  18753. name: "Very careful floof",
  18754. height: math.unit(3200, "meters")
  18755. },
  18756. {
  18757. name: "The mega floof",
  18758. height: math.unit(36000, "meters")
  18759. },
  18760. {
  18761. name: "Giga-fur-Wicker",
  18762. height: math.unit(4800000, "meters")
  18763. },
  18764. {
  18765. name: "Licky world",
  18766. height: math.unit(20000000, "meters")
  18767. },
  18768. {
  18769. name: "Floofy cyan sun",
  18770. height: math.unit(1500000000, "meters")
  18771. },
  18772. {
  18773. name: "Milky Wicker",
  18774. height: math.unit(1000000000000000000000, "meters")
  18775. },
  18776. {
  18777. name: "The observing Wicker",
  18778. height: math.unit(999999999999999999999999999, "meters")
  18779. },
  18780. ]
  18781. ))
  18782. characterMakers.push(() => makeCharacter(
  18783. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18784. {
  18785. front: {
  18786. height: math.unit(5 + 9 / 12, "feet"),
  18787. weight: math.unit(150, "lb"),
  18788. name: "Front",
  18789. image: {
  18790. source: "./media/characters/arokha-sieyes/front.svg",
  18791. extra: 1425 / 1284,
  18792. bottom: 0.05
  18793. }
  18794. },
  18795. },
  18796. [
  18797. {
  18798. name: "Normal",
  18799. height: math.unit(5 + 9 / 12, "feet")
  18800. },
  18801. {
  18802. name: "Macro",
  18803. height: math.unit(30, "meters"),
  18804. default: true
  18805. },
  18806. ]
  18807. ))
  18808. characterMakers.push(() => makeCharacter(
  18809. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18810. {
  18811. front: {
  18812. height: math.unit(6, "feet"),
  18813. weight: math.unit(180, "lb"),
  18814. name: "Front",
  18815. image: {
  18816. source: "./media/characters/arokh-sieyes/front.svg",
  18817. extra: 1830 / 1769,
  18818. bottom: 0.01
  18819. }
  18820. },
  18821. },
  18822. [
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(6, "feet")
  18826. },
  18827. {
  18828. name: "Macro",
  18829. height: math.unit(30, "meters"),
  18830. default: true
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18836. {
  18837. side: {
  18838. height: math.unit(13 + 1 / 12, "feet"),
  18839. weight: math.unit(8.5, "tonnes"),
  18840. name: "Side",
  18841. image: {
  18842. source: "./media/characters/goldeneye/side.svg",
  18843. extra: 1182 / 778,
  18844. bottom: 0.067
  18845. }
  18846. },
  18847. paw: {
  18848. height: math.unit(3.4, "feet"),
  18849. name: "Paw",
  18850. image: {
  18851. source: "./media/characters/goldeneye/paw.svg"
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Normal",
  18858. height: math.unit(13 + 1 / 12, "feet"),
  18859. default: true
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18865. {
  18866. front: {
  18867. height: math.unit(6 + 1 / 12, "feet"),
  18868. weight: math.unit(210, "lb"),
  18869. name: "Front",
  18870. image: {
  18871. source: "./media/characters/leonardo-lycheborne/front.svg",
  18872. extra: 390 / 365,
  18873. bottom: 0.032
  18874. }
  18875. },
  18876. side: {
  18877. height: math.unit(6 + 1 / 12, "feet"),
  18878. weight: math.unit(210, "lb"),
  18879. name: "Side",
  18880. image: {
  18881. source: "./media/characters/leonardo-lycheborne/side.svg",
  18882. extra: 390 / 365,
  18883. bottom: 0.005
  18884. }
  18885. },
  18886. back: {
  18887. height: math.unit(6 + 1 / 12, "feet"),
  18888. weight: math.unit(210, "lb"),
  18889. name: "Back",
  18890. image: {
  18891. source: "./media/characters/leonardo-lycheborne/back.svg",
  18892. extra: 392 / 366,
  18893. bottom: 0.01
  18894. }
  18895. },
  18896. hand: {
  18897. height: math.unit(1.08, "feet"),
  18898. name: "Hand",
  18899. image: {
  18900. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18901. }
  18902. },
  18903. foot: {
  18904. height: math.unit(1.32, "feet"),
  18905. name: "Foot",
  18906. image: {
  18907. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18908. }
  18909. },
  18910. were: {
  18911. height: math.unit(20, "feet"),
  18912. weight: math.unit(7800, "lb"),
  18913. name: "Were",
  18914. image: {
  18915. source: "./media/characters/leonardo-lycheborne/were.svg",
  18916. extra: 308 / 294,
  18917. bottom: 0.048
  18918. }
  18919. },
  18920. feral: {
  18921. height: math.unit(7.5, "feet"),
  18922. weight: math.unit(600, "lb"),
  18923. name: "Feral",
  18924. image: {
  18925. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18926. extra: 210 / 186,
  18927. bottom: 0.108
  18928. }
  18929. },
  18930. taur: {
  18931. height: math.unit(11, "feet"),
  18932. weight: math.unit(3300, "lb"),
  18933. name: "Taur",
  18934. image: {
  18935. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18936. extra: 320 / 303,
  18937. bottom: 0.025
  18938. }
  18939. },
  18940. barghest: {
  18941. height: math.unit(11, "feet"),
  18942. weight: math.unit(1300, "lb"),
  18943. name: "Barghest",
  18944. image: {
  18945. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18946. extra: 323 / 302,
  18947. bottom: 0.027
  18948. }
  18949. },
  18950. dick: {
  18951. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18952. name: "Dick",
  18953. image: {
  18954. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18955. }
  18956. },
  18957. dickWere: {
  18958. height: math.unit((20) / 3.8, "feet"),
  18959. name: "Dick (Were)",
  18960. image: {
  18961. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18962. }
  18963. },
  18964. },
  18965. [
  18966. {
  18967. name: "Normal",
  18968. height: math.unit(6 + 1 / 12, "feet"),
  18969. default: true
  18970. },
  18971. ]
  18972. ))
  18973. characterMakers.push(() => makeCharacter(
  18974. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18975. {
  18976. front: {
  18977. height: math.unit(10, "feet"),
  18978. weight: math.unit(350, "lb"),
  18979. name: "Front",
  18980. image: {
  18981. source: "./media/characters/jet/front.svg",
  18982. extra: 2050 / 1980,
  18983. bottom: 0.013
  18984. }
  18985. },
  18986. back: {
  18987. height: math.unit(10, "feet"),
  18988. weight: math.unit(350, "lb"),
  18989. name: "Back",
  18990. image: {
  18991. source: "./media/characters/jet/back.svg",
  18992. extra: 2050 / 1980,
  18993. bottom: 0.013
  18994. }
  18995. },
  18996. },
  18997. [
  18998. {
  18999. name: "Micro",
  19000. height: math.unit(6, "inches")
  19001. },
  19002. {
  19003. name: "Normal",
  19004. height: math.unit(10, "feet"),
  19005. default: true
  19006. },
  19007. {
  19008. name: "Macro",
  19009. height: math.unit(100, "feet")
  19010. },
  19011. ]
  19012. ))
  19013. characterMakers.push(() => makeCharacter(
  19014. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19015. {
  19016. front: {
  19017. height: math.unit(15, "feet"),
  19018. weight: math.unit(2800, "lb"),
  19019. name: "Front",
  19020. image: {
  19021. source: "./media/characters/tanarath/front.svg",
  19022. extra: 2392 / 2220,
  19023. bottom: 0.03
  19024. }
  19025. },
  19026. back: {
  19027. height: math.unit(15, "feet"),
  19028. weight: math.unit(2800, "lb"),
  19029. name: "Back",
  19030. image: {
  19031. source: "./media/characters/tanarath/back.svg",
  19032. extra: 2392 / 2220,
  19033. bottom: 0.03
  19034. }
  19035. },
  19036. },
  19037. [
  19038. {
  19039. name: "Normal",
  19040. height: math.unit(15, "feet"),
  19041. default: true
  19042. },
  19043. ]
  19044. ))
  19045. characterMakers.push(() => makeCharacter(
  19046. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19047. {
  19048. front: {
  19049. height: math.unit(7 + 1 / 12, "feet"),
  19050. weight: math.unit(175, "lb"),
  19051. name: "Front",
  19052. image: {
  19053. source: "./media/characters/patty-cattybatty/front.svg",
  19054. extra: 908 / 874,
  19055. bottom: 0.025
  19056. }
  19057. },
  19058. },
  19059. [
  19060. {
  19061. name: "Micro",
  19062. height: math.unit(1, "inch")
  19063. },
  19064. {
  19065. name: "Normal",
  19066. height: math.unit(7 + 1 / 12, "feet")
  19067. },
  19068. {
  19069. name: "Mini Macro",
  19070. height: math.unit(155, "feet")
  19071. },
  19072. {
  19073. name: "Macro",
  19074. height: math.unit(1077, "feet")
  19075. },
  19076. {
  19077. name: "Mega Macro",
  19078. height: math.unit(47650, "feet"),
  19079. default: true
  19080. },
  19081. {
  19082. name: "Giga Macro",
  19083. height: math.unit(440, "miles")
  19084. },
  19085. {
  19086. name: "Tera Macro",
  19087. height: math.unit(8700, "miles")
  19088. },
  19089. {
  19090. name: "Planetary Macro",
  19091. height: math.unit(32700, "miles")
  19092. },
  19093. {
  19094. name: "Solar Macro",
  19095. height: math.unit(550000, "miles")
  19096. },
  19097. {
  19098. name: "Celestial Macro",
  19099. height: math.unit(2.5, "AU")
  19100. },
  19101. ]
  19102. ))
  19103. characterMakers.push(() => makeCharacter(
  19104. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19105. {
  19106. front: {
  19107. height: math.unit(4 + 5 / 12, "feet"),
  19108. weight: math.unit(90, "lb"),
  19109. name: "Front",
  19110. image: {
  19111. source: "./media/characters/cappu/front.svg",
  19112. extra: 1247 / 1152,
  19113. bottom: 0.012
  19114. }
  19115. },
  19116. },
  19117. [
  19118. {
  19119. name: "Normal",
  19120. height: math.unit(4 + 5 / 12, "feet"),
  19121. default: true
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19127. {
  19128. frontDressed: {
  19129. height: math.unit(70, "cm"),
  19130. weight: math.unit(6, "kg"),
  19131. name: "Front (Dressed)",
  19132. image: {
  19133. source: "./media/characters/sebi/front-dressed.svg",
  19134. extra: 713.5 / 686.5,
  19135. bottom: 0.003
  19136. }
  19137. },
  19138. front: {
  19139. height: math.unit(70, "cm"),
  19140. weight: math.unit(5, "kg"),
  19141. name: "Front",
  19142. image: {
  19143. source: "./media/characters/sebi/front.svg",
  19144. extra: 713.5 / 686.5,
  19145. bottom: 0.003
  19146. }
  19147. }
  19148. },
  19149. [
  19150. {
  19151. name: "Normal",
  19152. height: math.unit(70, "cm"),
  19153. default: true
  19154. },
  19155. {
  19156. name: "Macro",
  19157. height: math.unit(8, "meters")
  19158. },
  19159. ]
  19160. ))
  19161. characterMakers.push(() => makeCharacter(
  19162. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19163. {
  19164. front: {
  19165. height: math.unit(6, "feet"),
  19166. weight: math.unit(150, "lb"),
  19167. name: "Front",
  19168. image: {
  19169. source: "./media/characters/typhek/front.svg",
  19170. extra: 1948 / 1929,
  19171. bottom: 0.025
  19172. }
  19173. },
  19174. side: {
  19175. height: math.unit(6, "feet"),
  19176. weight: math.unit(150, "lb"),
  19177. name: "Side",
  19178. image: {
  19179. source: "./media/characters/typhek/side.svg",
  19180. extra: 2034 / 2010,
  19181. bottom: 0.003
  19182. }
  19183. },
  19184. back: {
  19185. height: math.unit(6, "feet"),
  19186. weight: math.unit(150, "lb"),
  19187. name: "Back",
  19188. image: {
  19189. source: "./media/characters/typhek/back.svg",
  19190. extra: 2005 / 1978,
  19191. bottom: 0.004
  19192. }
  19193. },
  19194. palm: {
  19195. height: math.unit(1.2, "feet"),
  19196. name: "Palm",
  19197. image: {
  19198. source: "./media/characters/typhek/palm.svg"
  19199. }
  19200. },
  19201. fist: {
  19202. height: math.unit(1.1, "feet"),
  19203. name: "Fist",
  19204. image: {
  19205. source: "./media/characters/typhek/fist.svg"
  19206. }
  19207. },
  19208. foot: {
  19209. height: math.unit(1.57, "feet"),
  19210. name: "Foot",
  19211. image: {
  19212. source: "./media/characters/typhek/foot.svg"
  19213. }
  19214. },
  19215. sole: {
  19216. height: math.unit(2.05, "feet"),
  19217. name: "Sole",
  19218. image: {
  19219. source: "./media/characters/typhek/sole.svg"
  19220. }
  19221. },
  19222. },
  19223. [
  19224. {
  19225. name: "Macro",
  19226. height: math.unit(40, "stories"),
  19227. default: true
  19228. },
  19229. {
  19230. name: "Megamacro",
  19231. height: math.unit(1, "mile")
  19232. },
  19233. {
  19234. name: "Gigamacro",
  19235. height: math.unit(4000, "solarradii")
  19236. },
  19237. {
  19238. name: "Universal",
  19239. height: math.unit(1.1, "universes")
  19240. }
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19245. {
  19246. side: {
  19247. height: math.unit(5 + 7 / 12, "feet"),
  19248. weight: math.unit(150, "lb"),
  19249. name: "Side",
  19250. image: {
  19251. source: "./media/characters/kassy/side.svg",
  19252. extra: 1280 / 1225,
  19253. bottom: 0.002
  19254. }
  19255. },
  19256. front: {
  19257. height: math.unit(5 + 7 / 12, "feet"),
  19258. weight: math.unit(150, "lb"),
  19259. name: "Front",
  19260. image: {
  19261. source: "./media/characters/kassy/front.svg",
  19262. extra: 1280 / 1225,
  19263. bottom: 0.025
  19264. }
  19265. },
  19266. back: {
  19267. height: math.unit(5 + 7 / 12, "feet"),
  19268. weight: math.unit(150, "lb"),
  19269. name: "Back",
  19270. image: {
  19271. source: "./media/characters/kassy/back.svg",
  19272. extra: 1280 / 1225,
  19273. bottom: 0.002
  19274. }
  19275. },
  19276. foot: {
  19277. height: math.unit(1.266, "feet"),
  19278. name: "Foot",
  19279. image: {
  19280. source: "./media/characters/kassy/foot.svg"
  19281. }
  19282. },
  19283. },
  19284. [
  19285. {
  19286. name: "Normal",
  19287. height: math.unit(5 + 7 / 12, "feet")
  19288. },
  19289. {
  19290. name: "Macro",
  19291. height: math.unit(137, "feet"),
  19292. default: true
  19293. },
  19294. {
  19295. name: "Megamacro",
  19296. height: math.unit(1, "mile")
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19302. {
  19303. front: {
  19304. height: math.unit(6 + 1 / 12, "feet"),
  19305. weight: math.unit(200, "lb"),
  19306. name: "Front",
  19307. image: {
  19308. source: "./media/characters/neil/front.svg",
  19309. extra: 1326 / 1250,
  19310. bottom: 0.023
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Normal",
  19317. height: math.unit(6 + 1 / 12, "feet"),
  19318. default: true
  19319. },
  19320. {
  19321. name: "Macro",
  19322. height: math.unit(200, "feet")
  19323. },
  19324. ]
  19325. ))
  19326. characterMakers.push(() => makeCharacter(
  19327. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19328. {
  19329. front: {
  19330. height: math.unit(5 + 9 / 12, "feet"),
  19331. weight: math.unit(190, "lb"),
  19332. name: "Front",
  19333. image: {
  19334. source: "./media/characters/atticus/front.svg",
  19335. extra: 2934 / 2785,
  19336. bottom: 0.025
  19337. }
  19338. },
  19339. },
  19340. [
  19341. {
  19342. name: "Normal",
  19343. height: math.unit(5 + 9 / 12, "feet"),
  19344. default: true
  19345. },
  19346. {
  19347. name: "Macro",
  19348. height: math.unit(180, "feet")
  19349. },
  19350. ]
  19351. ))
  19352. characterMakers.push(() => makeCharacter(
  19353. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19354. {
  19355. side: {
  19356. height: math.unit(9, "feet"),
  19357. weight: math.unit(650, "lb"),
  19358. name: "Side",
  19359. image: {
  19360. source: "./media/characters/milo/side.svg",
  19361. extra: 2644 / 2310,
  19362. bottom: 0.032
  19363. }
  19364. },
  19365. },
  19366. [
  19367. {
  19368. name: "Normal",
  19369. height: math.unit(9, "feet"),
  19370. default: true
  19371. },
  19372. {
  19373. name: "Macro",
  19374. height: math.unit(300, "feet")
  19375. },
  19376. ]
  19377. ))
  19378. characterMakers.push(() => makeCharacter(
  19379. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19380. {
  19381. side: {
  19382. height: math.unit(8, "meters"),
  19383. weight: math.unit(90000, "kg"),
  19384. name: "Side",
  19385. image: {
  19386. source: "./media/characters/ijzer/side.svg",
  19387. extra: 2756 / 1600,
  19388. bottom: 0.01
  19389. }
  19390. },
  19391. },
  19392. [
  19393. {
  19394. name: "Small",
  19395. height: math.unit(3, "meters")
  19396. },
  19397. {
  19398. name: "Normal",
  19399. height: math.unit(8, "meters"),
  19400. default: true
  19401. },
  19402. {
  19403. name: "Normal+",
  19404. height: math.unit(10, "meters")
  19405. },
  19406. {
  19407. name: "Bigger",
  19408. height: math.unit(24, "meters")
  19409. },
  19410. {
  19411. name: "Huge",
  19412. height: math.unit(80, "meters")
  19413. },
  19414. ]
  19415. ))
  19416. characterMakers.push(() => makeCharacter(
  19417. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19418. {
  19419. front: {
  19420. height: math.unit(6 + 2 / 12, "feet"),
  19421. weight: math.unit(153, "lb"),
  19422. name: "Front",
  19423. image: {
  19424. source: "./media/characters/luca-cervicum/front.svg",
  19425. extra: 370 / 327,
  19426. bottom: 0.015
  19427. }
  19428. },
  19429. back: {
  19430. height: math.unit(6 + 2 / 12, "feet"),
  19431. weight: math.unit(153, "lb"),
  19432. name: "Back",
  19433. image: {
  19434. source: "./media/characters/luca-cervicum/back.svg",
  19435. extra: 367 / 333,
  19436. bottom: 0.005
  19437. }
  19438. },
  19439. frontGear: {
  19440. height: math.unit(6 + 2 / 12, "feet"),
  19441. weight: math.unit(173, "lb"),
  19442. name: "Front (Gear)",
  19443. image: {
  19444. source: "./media/characters/luca-cervicum/front-gear.svg",
  19445. extra: 377 / 333,
  19446. bottom: 0.006
  19447. }
  19448. },
  19449. },
  19450. [
  19451. {
  19452. name: "Normal",
  19453. height: math.unit(6 + 2 / 12, "feet"),
  19454. default: true
  19455. },
  19456. ]
  19457. ))
  19458. characterMakers.push(() => makeCharacter(
  19459. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19460. {
  19461. front: {
  19462. height: math.unit(6 + 1 / 12, "feet"),
  19463. weight: math.unit(304, "lb"),
  19464. name: "Front",
  19465. image: {
  19466. source: "./media/characters/oliver/front.svg",
  19467. extra: 157 / 143,
  19468. bottom: 0.08
  19469. }
  19470. },
  19471. },
  19472. [
  19473. {
  19474. name: "Normal",
  19475. height: math.unit(6 + 1 / 12, "feet"),
  19476. default: true
  19477. },
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19482. {
  19483. front: {
  19484. height: math.unit(5 + 7 / 12, "feet"),
  19485. weight: math.unit(140, "lb"),
  19486. name: "Front",
  19487. image: {
  19488. source: "./media/characters/shane/front.svg",
  19489. extra: 304 / 289,
  19490. bottom: 0.005
  19491. }
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Normal",
  19497. height: math.unit(5 + 7 / 12, "feet"),
  19498. default: true
  19499. },
  19500. ]
  19501. ))
  19502. characterMakers.push(() => makeCharacter(
  19503. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19504. {
  19505. front: {
  19506. height: math.unit(5 + 9 / 12, "feet"),
  19507. weight: math.unit(178, "lb"),
  19508. name: "Front",
  19509. image: {
  19510. source: "./media/characters/shin/front.svg",
  19511. extra: 159 / 151,
  19512. bottom: 0.015
  19513. }
  19514. },
  19515. },
  19516. [
  19517. {
  19518. name: "Normal",
  19519. height: math.unit(5 + 9 / 12, "feet"),
  19520. default: true
  19521. },
  19522. ]
  19523. ))
  19524. characterMakers.push(() => makeCharacter(
  19525. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19526. {
  19527. front: {
  19528. height: math.unit(5 + 10 / 12, "feet"),
  19529. weight: math.unit(168, "lb"),
  19530. name: "Front",
  19531. image: {
  19532. source: "./media/characters/xerxes/front.svg",
  19533. extra: 282 / 260,
  19534. bottom: 0.045
  19535. }
  19536. },
  19537. },
  19538. [
  19539. {
  19540. name: "Normal",
  19541. height: math.unit(5 + 10 / 12, "feet"),
  19542. default: true
  19543. },
  19544. ]
  19545. ))
  19546. characterMakers.push(() => makeCharacter(
  19547. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19548. {
  19549. front: {
  19550. height: math.unit(6 + 7 / 12, "feet"),
  19551. weight: math.unit(208, "lb"),
  19552. name: "Front",
  19553. image: {
  19554. source: "./media/characters/chaska/front.svg",
  19555. extra: 332 / 319,
  19556. bottom: 0.015
  19557. }
  19558. },
  19559. },
  19560. [
  19561. {
  19562. name: "Normal",
  19563. height: math.unit(6 + 7 / 12, "feet"),
  19564. default: true
  19565. },
  19566. ]
  19567. ))
  19568. characterMakers.push(() => makeCharacter(
  19569. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19570. {
  19571. front: {
  19572. height: math.unit(5 + 8 / 12, "feet"),
  19573. weight: math.unit(208, "lb"),
  19574. name: "Front",
  19575. image: {
  19576. source: "./media/characters/enuk/front.svg",
  19577. extra: 437 / 406,
  19578. bottom: 0.02
  19579. }
  19580. },
  19581. },
  19582. [
  19583. {
  19584. name: "Normal",
  19585. height: math.unit(5 + 8 / 12, "feet"),
  19586. default: true
  19587. },
  19588. ]
  19589. ))
  19590. characterMakers.push(() => makeCharacter(
  19591. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19592. {
  19593. front: {
  19594. height: math.unit(5 + 10 / 12, "feet"),
  19595. weight: math.unit(252, "lb"),
  19596. name: "Front",
  19597. image: {
  19598. source: "./media/characters/bruun/front.svg",
  19599. extra: 197 / 187,
  19600. bottom: 0.012
  19601. }
  19602. },
  19603. },
  19604. [
  19605. {
  19606. name: "Normal",
  19607. height: math.unit(5 + 10 / 12, "feet"),
  19608. default: true
  19609. },
  19610. ]
  19611. ))
  19612. characterMakers.push(() => makeCharacter(
  19613. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19614. {
  19615. front: {
  19616. height: math.unit(6 + 10 / 12, "feet"),
  19617. weight: math.unit(255, "lb"),
  19618. name: "Front",
  19619. image: {
  19620. source: "./media/characters/alexeev/front.svg",
  19621. extra: 213 / 200,
  19622. bottom: 0.05
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Normal",
  19629. height: math.unit(6 + 10 / 12, "feet"),
  19630. default: true
  19631. },
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19636. {
  19637. front: {
  19638. height: math.unit(2 + 8 / 12, "feet"),
  19639. weight: math.unit(22, "lb"),
  19640. name: "Front",
  19641. image: {
  19642. source: "./media/characters/evelyn/front.svg",
  19643. extra: 208 / 180
  19644. }
  19645. },
  19646. },
  19647. [
  19648. {
  19649. name: "Normal",
  19650. height: math.unit(2 + 8 / 12, "feet"),
  19651. default: true
  19652. },
  19653. ]
  19654. ))
  19655. characterMakers.push(() => makeCharacter(
  19656. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19657. {
  19658. front: {
  19659. height: math.unit(5 + 9 / 12, "feet"),
  19660. weight: math.unit(139, "lb"),
  19661. name: "Front",
  19662. image: {
  19663. source: "./media/characters/inca/front.svg",
  19664. extra: 294 / 291,
  19665. bottom: 0.03
  19666. }
  19667. },
  19668. },
  19669. [
  19670. {
  19671. name: "Normal",
  19672. height: math.unit(5 + 9 / 12, "feet"),
  19673. default: true
  19674. },
  19675. ]
  19676. ))
  19677. characterMakers.push(() => makeCharacter(
  19678. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19679. {
  19680. front: {
  19681. height: math.unit(5 + 1 / 12, "feet"),
  19682. weight: math.unit(84, "lb"),
  19683. name: "Front",
  19684. image: {
  19685. source: "./media/characters/magdalene/front.svg",
  19686. extra: 293 / 273
  19687. }
  19688. },
  19689. },
  19690. [
  19691. {
  19692. name: "Normal",
  19693. height: math.unit(5 + 1 / 12, "feet"),
  19694. default: true
  19695. },
  19696. ]
  19697. ))
  19698. characterMakers.push(() => makeCharacter(
  19699. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19700. {
  19701. front: {
  19702. height: math.unit(6 + 3 / 12, "feet"),
  19703. weight: math.unit(185, "lb"),
  19704. name: "Front",
  19705. image: {
  19706. source: "./media/characters/mera/front.svg",
  19707. extra: 291 / 277,
  19708. bottom: 0.03
  19709. }
  19710. },
  19711. },
  19712. [
  19713. {
  19714. name: "Normal",
  19715. height: math.unit(6 + 3 / 12, "feet"),
  19716. default: true
  19717. },
  19718. ]
  19719. ))
  19720. characterMakers.push(() => makeCharacter(
  19721. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19722. {
  19723. front: {
  19724. height: math.unit(6 + 7 / 12, "feet"),
  19725. weight: math.unit(160, "lb"),
  19726. name: "Front",
  19727. image: {
  19728. source: "./media/characters/ceres/front.svg",
  19729. extra: 1023 / 950,
  19730. bottom: 0.027
  19731. }
  19732. },
  19733. back: {
  19734. height: math.unit(6 + 7 / 12, "feet"),
  19735. weight: math.unit(160, "lb"),
  19736. name: "Back",
  19737. image: {
  19738. source: "./media/characters/ceres/back.svg",
  19739. extra: 1023 / 950
  19740. }
  19741. },
  19742. },
  19743. [
  19744. {
  19745. name: "Normal",
  19746. height: math.unit(6 + 7 / 12, "feet"),
  19747. default: true
  19748. },
  19749. ]
  19750. ))
  19751. characterMakers.push(() => makeCharacter(
  19752. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19753. {
  19754. front: {
  19755. height: math.unit(5 + 10 / 12, "feet"),
  19756. weight: math.unit(150, "lb"),
  19757. name: "Front",
  19758. image: {
  19759. source: "./media/characters/kris/front.svg",
  19760. extra: 885 / 803,
  19761. bottom: 0.03
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "Normal",
  19768. height: math.unit(5 + 10 / 12, "feet"),
  19769. default: true
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19775. {
  19776. front: {
  19777. height: math.unit(7, "feet"),
  19778. weight: math.unit(120, "kg"),
  19779. name: "Front",
  19780. image: {
  19781. source: "./media/characters/taluthus/front.svg",
  19782. extra: 903 / 833,
  19783. bottom: 0.015
  19784. }
  19785. },
  19786. },
  19787. [
  19788. {
  19789. name: "Normal",
  19790. height: math.unit(7, "feet"),
  19791. default: true
  19792. },
  19793. {
  19794. name: "Macro",
  19795. height: math.unit(300, "feet")
  19796. },
  19797. ]
  19798. ))
  19799. characterMakers.push(() => makeCharacter(
  19800. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19801. {
  19802. front: {
  19803. height: math.unit(5 + 9 / 12, "feet"),
  19804. weight: math.unit(145, "lb"),
  19805. name: "Front",
  19806. image: {
  19807. source: "./media/characters/dawn/front.svg",
  19808. extra: 2094 / 2016,
  19809. bottom: 0.025
  19810. }
  19811. },
  19812. back: {
  19813. height: math.unit(5 + 9 / 12, "feet"),
  19814. weight: math.unit(160, "lb"),
  19815. name: "Back",
  19816. image: {
  19817. source: "./media/characters/dawn/back.svg",
  19818. extra: 2112 / 2080,
  19819. bottom: 0.005
  19820. }
  19821. },
  19822. },
  19823. [
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(6 + 7 / 12, "feet"),
  19827. default: true
  19828. },
  19829. ]
  19830. ))
  19831. characterMakers.push(() => makeCharacter(
  19832. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19833. {
  19834. anthro: {
  19835. height: math.unit(8 + 3 / 12, "feet"),
  19836. weight: math.unit(450, "lb"),
  19837. name: "Anthro",
  19838. image: {
  19839. source: "./media/characters/arador/anthro.svg",
  19840. extra: 1835 / 1718,
  19841. bottom: 0.025
  19842. }
  19843. },
  19844. feral: {
  19845. height: math.unit(4, "feet"),
  19846. weight: math.unit(200, "lb"),
  19847. name: "Feral",
  19848. image: {
  19849. source: "./media/characters/arador/feral.svg",
  19850. extra: 1683 / 1514,
  19851. bottom: 0.07
  19852. }
  19853. },
  19854. },
  19855. [
  19856. {
  19857. name: "Normal",
  19858. height: math.unit(8 + 3 / 12, "feet")
  19859. },
  19860. {
  19861. name: "Macro",
  19862. height: math.unit(82.5, "feet"),
  19863. default: true
  19864. },
  19865. ]
  19866. ))
  19867. characterMakers.push(() => makeCharacter(
  19868. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19869. {
  19870. front: {
  19871. height: math.unit(5 + 10 / 12, "feet"),
  19872. weight: math.unit(125, "lb"),
  19873. name: "Front",
  19874. image: {
  19875. source: "./media/characters/dharsi/front.svg",
  19876. extra: 716 / 630,
  19877. bottom: 0.035
  19878. }
  19879. },
  19880. },
  19881. [
  19882. {
  19883. name: "Nano",
  19884. height: math.unit(100, "nm")
  19885. },
  19886. {
  19887. name: "Micro",
  19888. height: math.unit(2, "inches")
  19889. },
  19890. {
  19891. name: "Normal",
  19892. height: math.unit(5 + 10 / 12, "feet"),
  19893. default: true
  19894. },
  19895. {
  19896. name: "Macro",
  19897. height: math.unit(1000, "feet")
  19898. },
  19899. {
  19900. name: "Megamacro",
  19901. height: math.unit(10, "miles")
  19902. },
  19903. {
  19904. name: "Gigamacro",
  19905. height: math.unit(3000, "miles")
  19906. },
  19907. {
  19908. name: "Teramacro",
  19909. height: math.unit(500000, "miles")
  19910. },
  19911. {
  19912. name: "Teramacro+",
  19913. height: math.unit(30, "galaxies")
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19919. {
  19920. front: {
  19921. height: math.unit(6, "feet"),
  19922. weight: math.unit(150, "lb"),
  19923. name: "Front",
  19924. image: {
  19925. source: "./media/characters/deathy/front.svg",
  19926. extra: 1552 / 1463,
  19927. bottom: 0.025
  19928. }
  19929. },
  19930. side: {
  19931. height: math.unit(6, "feet"),
  19932. weight: math.unit(150, "lb"),
  19933. name: "Side",
  19934. image: {
  19935. source: "./media/characters/deathy/side.svg",
  19936. extra: 1604 / 1455,
  19937. bottom: 0.025
  19938. }
  19939. },
  19940. back: {
  19941. height: math.unit(6, "feet"),
  19942. weight: math.unit(150, "lb"),
  19943. name: "Back",
  19944. image: {
  19945. source: "./media/characters/deathy/back.svg",
  19946. extra: 1580 / 1463,
  19947. bottom: 0.005
  19948. }
  19949. },
  19950. },
  19951. [
  19952. {
  19953. name: "Micro",
  19954. height: math.unit(5, "millimeters")
  19955. },
  19956. {
  19957. name: "Normal",
  19958. height: math.unit(6 + 5 / 12, "feet"),
  19959. default: true
  19960. },
  19961. ]
  19962. ))
  19963. characterMakers.push(() => makeCharacter(
  19964. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19965. {
  19966. front: {
  19967. height: math.unit(16, "feet"),
  19968. weight: math.unit(4000, "lb"),
  19969. name: "Front",
  19970. image: {
  19971. source: "./media/characters/juniper/front.svg",
  19972. bottom: 0.04
  19973. }
  19974. },
  19975. },
  19976. [
  19977. {
  19978. name: "Normal",
  19979. height: math.unit(16, "feet"),
  19980. default: true
  19981. },
  19982. ]
  19983. ))
  19984. characterMakers.push(() => makeCharacter(
  19985. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19986. {
  19987. front: {
  19988. height: math.unit(6, "feet"),
  19989. weight: math.unit(150, "lb"),
  19990. name: "Front",
  19991. image: {
  19992. source: "./media/characters/hipster/front.svg",
  19993. extra: 1312 / 1209,
  19994. bottom: 0.025
  19995. }
  19996. },
  19997. back: {
  19998. height: math.unit(6, "feet"),
  19999. weight: math.unit(150, "lb"),
  20000. name: "Back",
  20001. image: {
  20002. source: "./media/characters/hipster/back.svg",
  20003. extra: 1281 / 1196,
  20004. bottom: 0.01
  20005. }
  20006. },
  20007. },
  20008. [
  20009. {
  20010. name: "Micro",
  20011. height: math.unit(1, "mm")
  20012. },
  20013. {
  20014. name: "Normal",
  20015. height: math.unit(4, "inches"),
  20016. default: true
  20017. },
  20018. {
  20019. name: "Macro",
  20020. height: math.unit(500, "feet")
  20021. },
  20022. {
  20023. name: "Megamacro",
  20024. height: math.unit(1000, "miles")
  20025. },
  20026. ]
  20027. ))
  20028. characterMakers.push(() => makeCharacter(
  20029. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20030. {
  20031. front: {
  20032. height: math.unit(6, "feet"),
  20033. weight: math.unit(150, "lb"),
  20034. name: "Front",
  20035. image: {
  20036. source: "./media/characters/tendirmuldr/front.svg",
  20037. extra: 1878 / 1772,
  20038. bottom: 0.015
  20039. }
  20040. },
  20041. },
  20042. [
  20043. {
  20044. name: "Megamacro",
  20045. height: math.unit(1500, "miles"),
  20046. default: true
  20047. },
  20048. ]
  20049. ))
  20050. characterMakers.push(() => makeCharacter(
  20051. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20052. {
  20053. front: {
  20054. height: math.unit(14, "feet"),
  20055. weight: math.unit(12000, "lb"),
  20056. name: "Front",
  20057. image: {
  20058. source: "./media/characters/mort/front.svg",
  20059. extra: 365 / 318,
  20060. bottom: 0.01
  20061. }
  20062. },
  20063. side: {
  20064. height: math.unit(14, "feet"),
  20065. weight: math.unit(12000, "lb"),
  20066. name: "Side",
  20067. image: {
  20068. source: "./media/characters/mort/side.svg",
  20069. extra: 365 / 318,
  20070. bottom: 0.052
  20071. },
  20072. default: true
  20073. },
  20074. back: {
  20075. height: math.unit(14, "feet"),
  20076. weight: math.unit(12000, "lb"),
  20077. name: "Back",
  20078. image: {
  20079. source: "./media/characters/mort/back.svg",
  20080. extra: 371 / 332,
  20081. bottom: 0.18
  20082. }
  20083. },
  20084. },
  20085. [
  20086. {
  20087. name: "Normal",
  20088. height: math.unit(14, "feet"),
  20089. default: true
  20090. },
  20091. ]
  20092. ))
  20093. characterMakers.push(() => makeCharacter(
  20094. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20095. {
  20096. front: {
  20097. height: math.unit(8, "feet"),
  20098. weight: math.unit(1, "ton"),
  20099. name: "Front",
  20100. image: {
  20101. source: "./media/characters/lycoa/front.svg",
  20102. extra: 1875 / 1789,
  20103. bottom: 0.022
  20104. }
  20105. },
  20106. back: {
  20107. height: math.unit(8, "feet"),
  20108. weight: math.unit(1, "ton"),
  20109. name: "Back",
  20110. image: {
  20111. source: "./media/characters/lycoa/back.svg",
  20112. extra: 1835 / 1781,
  20113. bottom: 0.03
  20114. }
  20115. },
  20116. head: {
  20117. height: math.unit(2.1, "feet"),
  20118. name: "Head",
  20119. image: {
  20120. source: "./media/characters/lycoa/head.svg"
  20121. }
  20122. },
  20123. tailmaw: {
  20124. height: math.unit(1.9, "feet"),
  20125. name: "Tailmaw",
  20126. image: {
  20127. source: "./media/characters/lycoa/tailmaw.svg"
  20128. }
  20129. },
  20130. tentacles: {
  20131. height: math.unit(2.1, "feet"),
  20132. name: "Tentacles",
  20133. image: {
  20134. source: "./media/characters/lycoa/tentacles.svg"
  20135. }
  20136. },
  20137. dick: {
  20138. height: math.unit(1.73, "feet"),
  20139. name: "Dick",
  20140. image: {
  20141. source: "./media/characters/lycoa/dick.svg"
  20142. }
  20143. },
  20144. },
  20145. [
  20146. {
  20147. name: "Normal",
  20148. height: math.unit(8, "feet"),
  20149. default: true
  20150. },
  20151. {
  20152. name: "Macro",
  20153. height: math.unit(30, "feet")
  20154. },
  20155. ]
  20156. ))
  20157. characterMakers.push(() => makeCharacter(
  20158. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20159. {
  20160. front: {
  20161. height: math.unit(4 + 2 / 12, "feet"),
  20162. weight: math.unit(70, "lb"),
  20163. name: "Front",
  20164. image: {
  20165. source: "./media/characters/naldara/front.svg",
  20166. extra: 841 / 720,
  20167. bottom: 0.04
  20168. }
  20169. },
  20170. naga: {
  20171. height: math.unit(23, "feet"),
  20172. weight: math.unit(15000, "kg"),
  20173. name: "Naga",
  20174. image: {
  20175. source: "./media/characters/naldara/naga.svg",
  20176. extra: 3290 / 2959,
  20177. bottom: 124 / 3432
  20178. }
  20179. },
  20180. },
  20181. [
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(4 + 2 / 12, "feet"),
  20185. default: true
  20186. },
  20187. ]
  20188. ))
  20189. characterMakers.push(() => makeCharacter(
  20190. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20191. {
  20192. front: {
  20193. height: math.unit(13 + 7 / 12, "feet"),
  20194. weight: math.unit(1500, "lb"),
  20195. name: "Front",
  20196. image: {
  20197. source: "./media/characters/briar/front.svg",
  20198. extra: 626 / 596,
  20199. bottom: 0.08
  20200. }
  20201. },
  20202. },
  20203. [
  20204. {
  20205. name: "Normal",
  20206. height: math.unit(13 + 7 / 12, "feet"),
  20207. default: true
  20208. },
  20209. ]
  20210. ))
  20211. characterMakers.push(() => makeCharacter(
  20212. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20213. {
  20214. side: {
  20215. height: math.unit(10, "feet"),
  20216. weight: math.unit(500, "lb"),
  20217. name: "Side",
  20218. image: {
  20219. source: "./media/characters/vanguard/side.svg",
  20220. extra: 502 / 425,
  20221. bottom: 0.087
  20222. }
  20223. },
  20224. },
  20225. [
  20226. {
  20227. name: "Normal",
  20228. height: math.unit(10, "feet"),
  20229. default: true
  20230. },
  20231. ]
  20232. ))
  20233. characterMakers.push(() => makeCharacter(
  20234. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20235. {
  20236. front: {
  20237. height: math.unit(7.5, "feet"),
  20238. weight: math.unit(2, "lb"),
  20239. name: "Front",
  20240. image: {
  20241. source: "./media/characters/artemis/front.svg",
  20242. extra: 1192 / 1075,
  20243. bottom: 0.07
  20244. }
  20245. },
  20246. frontNsfw: {
  20247. height: math.unit(7.5, "feet"),
  20248. weight: math.unit(2, "lb"),
  20249. name: "Front (NSFW)",
  20250. image: {
  20251. source: "./media/characters/artemis/front-nsfw.svg",
  20252. extra: 1192 / 1075,
  20253. bottom: 0.07
  20254. }
  20255. },
  20256. frontNsfwer: {
  20257. height: math.unit(7.5, "feet"),
  20258. weight: math.unit(2, "lb"),
  20259. name: "Front (NSFW-er)",
  20260. image: {
  20261. source: "./media/characters/artemis/front-nsfwer.svg",
  20262. extra: 1192 / 1075,
  20263. bottom: 0.07
  20264. }
  20265. },
  20266. side: {
  20267. height: math.unit(7.5, "feet"),
  20268. weight: math.unit(2, "lb"),
  20269. name: "Side",
  20270. image: {
  20271. source: "./media/characters/artemis/side.svg",
  20272. extra: 1192 / 1075,
  20273. bottom: 0.07
  20274. }
  20275. },
  20276. sideNsfw: {
  20277. height: math.unit(7.5, "feet"),
  20278. weight: math.unit(2, "lb"),
  20279. name: "Side (NSFW)",
  20280. image: {
  20281. source: "./media/characters/artemis/side-nsfw.svg",
  20282. extra: 1192 / 1075,
  20283. bottom: 0.07
  20284. }
  20285. },
  20286. sideNsfwer: {
  20287. height: math.unit(7.5, "feet"),
  20288. weight: math.unit(2, "lb"),
  20289. name: "Side (NSFW-er)",
  20290. image: {
  20291. source: "./media/characters/artemis/side-nsfwer.svg",
  20292. extra: 1192 / 1075,
  20293. bottom: 0.07
  20294. }
  20295. },
  20296. maw: {
  20297. height: math.unit(1.1, "feet"),
  20298. name: "Maw",
  20299. image: {
  20300. source: "./media/characters/artemis/maw.svg"
  20301. }
  20302. },
  20303. stomach: {
  20304. height: math.unit(0.95, "feet"),
  20305. name: "Stomach",
  20306. image: {
  20307. source: "./media/characters/artemis/stomach.svg"
  20308. }
  20309. },
  20310. dickCanine: {
  20311. height: math.unit(1, "feet"),
  20312. name: "Dick (Canine)",
  20313. image: {
  20314. source: "./media/characters/artemis/dick-canine.svg"
  20315. }
  20316. },
  20317. dickEquine: {
  20318. height: math.unit(0.85, "feet"),
  20319. name: "Dick (Equine)",
  20320. image: {
  20321. source: "./media/characters/artemis/dick-equine.svg"
  20322. }
  20323. },
  20324. dickExotic: {
  20325. height: math.unit(0.85, "feet"),
  20326. name: "Dick (Exotic)",
  20327. image: {
  20328. source: "./media/characters/artemis/dick-exotic.svg"
  20329. }
  20330. },
  20331. },
  20332. [
  20333. {
  20334. name: "Normal",
  20335. height: math.unit(7.5, "feet"),
  20336. default: true
  20337. },
  20338. {
  20339. name: "Enlarged",
  20340. height: math.unit(12, "feet")
  20341. },
  20342. ]
  20343. ))
  20344. characterMakers.push(() => makeCharacter(
  20345. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20346. {
  20347. front: {
  20348. height: math.unit(5 + 3 / 12, "feet"),
  20349. weight: math.unit(160, "lb"),
  20350. name: "Front",
  20351. image: {
  20352. source: "./media/characters/kira/front.svg",
  20353. extra: 906 / 786,
  20354. bottom: 0.01
  20355. }
  20356. },
  20357. back: {
  20358. height: math.unit(5 + 3 / 12, "feet"),
  20359. weight: math.unit(160, "lb"),
  20360. name: "Back",
  20361. image: {
  20362. source: "./media/characters/kira/back.svg",
  20363. extra: 882 / 757,
  20364. bottom: 0.005
  20365. }
  20366. },
  20367. frontDressed: {
  20368. height: math.unit(5 + 3 / 12, "feet"),
  20369. weight: math.unit(160, "lb"),
  20370. name: "Front (Dressed)",
  20371. image: {
  20372. source: "./media/characters/kira/front-dressed.svg",
  20373. extra: 906 / 786,
  20374. bottom: 0.01
  20375. }
  20376. },
  20377. beans: {
  20378. height: math.unit(0.92, "feet"),
  20379. name: "Beans",
  20380. image: {
  20381. source: "./media/characters/kira/beans.svg"
  20382. }
  20383. },
  20384. },
  20385. [
  20386. {
  20387. name: "Normal",
  20388. height: math.unit(5 + 3 / 12, "feet"),
  20389. default: true
  20390. },
  20391. ]
  20392. ))
  20393. characterMakers.push(() => makeCharacter(
  20394. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20395. {
  20396. front: {
  20397. height: math.unit(5 + 4 / 12, "feet"),
  20398. weight: math.unit(145, "lb"),
  20399. name: "Front",
  20400. image: {
  20401. source: "./media/characters/scramble/front.svg",
  20402. extra: 763 / 727,
  20403. bottom: 0.05
  20404. }
  20405. },
  20406. back: {
  20407. height: math.unit(5 + 4 / 12, "feet"),
  20408. weight: math.unit(145, "lb"),
  20409. name: "Back",
  20410. image: {
  20411. source: "./media/characters/scramble/back.svg",
  20412. extra: 826 / 737,
  20413. bottom: 0.002
  20414. }
  20415. },
  20416. },
  20417. [
  20418. {
  20419. name: "Normal",
  20420. height: math.unit(5 + 4 / 12, "feet"),
  20421. default: true
  20422. },
  20423. ]
  20424. ))
  20425. characterMakers.push(() => makeCharacter(
  20426. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20427. {
  20428. side: {
  20429. height: math.unit(6 + 2 / 12, "feet"),
  20430. weight: math.unit(190, "lb"),
  20431. name: "Side",
  20432. image: {
  20433. source: "./media/characters/biscuit/side.svg",
  20434. extra: 858 / 791,
  20435. bottom: 0.044
  20436. }
  20437. },
  20438. },
  20439. [
  20440. {
  20441. name: "Normal",
  20442. height: math.unit(6 + 2 / 12, "feet"),
  20443. default: true
  20444. },
  20445. ]
  20446. ))
  20447. characterMakers.push(() => makeCharacter(
  20448. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20449. {
  20450. front: {
  20451. height: math.unit(5 + 2 / 12, "feet"),
  20452. weight: math.unit(120, "lb"),
  20453. name: "Front",
  20454. image: {
  20455. source: "./media/characters/poffin/front.svg",
  20456. extra: 786 / 680,
  20457. bottom: 0.005
  20458. }
  20459. },
  20460. },
  20461. [
  20462. {
  20463. name: "Normal",
  20464. height: math.unit(5 + 2 / 12, "feet"),
  20465. default: true
  20466. },
  20467. ]
  20468. ))
  20469. characterMakers.push(() => makeCharacter(
  20470. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20471. {
  20472. front: {
  20473. height: math.unit(6 + 3 / 12, "feet"),
  20474. weight: math.unit(519, "lb"),
  20475. name: "Front",
  20476. image: {
  20477. source: "./media/characters/dhari/front.svg",
  20478. extra: 1048 / 946,
  20479. bottom: 0.015
  20480. }
  20481. },
  20482. back: {
  20483. height: math.unit(6 + 3 / 12, "feet"),
  20484. weight: math.unit(519, "lb"),
  20485. name: "Back",
  20486. image: {
  20487. source: "./media/characters/dhari/back.svg",
  20488. extra: 1048 / 931,
  20489. bottom: 0.005
  20490. }
  20491. },
  20492. frontDressed: {
  20493. height: math.unit(6 + 3 / 12, "feet"),
  20494. weight: math.unit(519, "lb"),
  20495. name: "Front (Dressed)",
  20496. image: {
  20497. source: "./media/characters/dhari/front-dressed.svg",
  20498. extra: 1713 / 1546,
  20499. bottom: 0.02
  20500. }
  20501. },
  20502. backDressed: {
  20503. height: math.unit(6 + 3 / 12, "feet"),
  20504. weight: math.unit(519, "lb"),
  20505. name: "Back (Dressed)",
  20506. image: {
  20507. source: "./media/characters/dhari/back-dressed.svg",
  20508. extra: 1699 / 1537,
  20509. bottom: 0.01
  20510. }
  20511. },
  20512. maw: {
  20513. height: math.unit(0.95, "feet"),
  20514. name: "Maw",
  20515. image: {
  20516. source: "./media/characters/dhari/maw.svg"
  20517. }
  20518. },
  20519. wereFront: {
  20520. height: math.unit(12 + 8 / 12, "feet"),
  20521. weight: math.unit(4000, "lb"),
  20522. name: "Front (Were)",
  20523. image: {
  20524. source: "./media/characters/dhari/were-front.svg",
  20525. extra: 1065 / 969,
  20526. bottom: 0.015
  20527. }
  20528. },
  20529. wereBack: {
  20530. height: math.unit(12 + 8 / 12, "feet"),
  20531. weight: math.unit(4000, "lb"),
  20532. name: "Back (Were)",
  20533. image: {
  20534. source: "./media/characters/dhari/were-back.svg",
  20535. extra: 1065 / 969,
  20536. bottom: 0.012
  20537. }
  20538. },
  20539. wereMaw: {
  20540. height: math.unit(0.625, "meters"),
  20541. name: "Maw (Were)",
  20542. image: {
  20543. source: "./media/characters/dhari/were-maw.svg"
  20544. }
  20545. },
  20546. },
  20547. [
  20548. {
  20549. name: "Normal",
  20550. height: math.unit(6 + 3 / 12, "feet"),
  20551. default: true
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20557. {
  20558. anthro: {
  20559. height: math.unit(5 + 7 / 12, "feet"),
  20560. weight: math.unit(175, "lb"),
  20561. name: "Anthro",
  20562. image: {
  20563. source: "./media/characters/rena-dyne/anthro.svg",
  20564. extra: 1849 / 1785,
  20565. bottom: 0.005
  20566. }
  20567. },
  20568. taur: {
  20569. height: math.unit(15 + 6 / 12, "feet"),
  20570. weight: math.unit(8000, "lb"),
  20571. name: "Taur",
  20572. image: {
  20573. source: "./media/characters/rena-dyne/taur.svg",
  20574. extra: 2315 / 2234,
  20575. bottom: 0.033
  20576. }
  20577. },
  20578. },
  20579. [
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(5 + 7 / 12, "feet"),
  20583. default: true
  20584. },
  20585. ]
  20586. ))
  20587. characterMakers.push(() => makeCharacter(
  20588. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20589. {
  20590. front: {
  20591. height: math.unit(8, "feet"),
  20592. weight: math.unit(600, "lb"),
  20593. name: "Front",
  20594. image: {
  20595. source: "./media/characters/weremeep/front.svg",
  20596. extra: 967 / 862,
  20597. bottom: 0.01
  20598. }
  20599. },
  20600. },
  20601. [
  20602. {
  20603. name: "Normal",
  20604. height: math.unit(8, "feet"),
  20605. default: true
  20606. },
  20607. {
  20608. name: "Lorg",
  20609. height: math.unit(12, "feet")
  20610. },
  20611. {
  20612. name: "Oh Lawd She Comin'",
  20613. height: math.unit(20, "feet")
  20614. },
  20615. ]
  20616. ))
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20619. {
  20620. front: {
  20621. height: math.unit(4, "feet"),
  20622. weight: math.unit(90, "lb"),
  20623. name: "Front",
  20624. image: {
  20625. source: "./media/characters/reza/front.svg",
  20626. extra: 1183 / 1111,
  20627. bottom: 0.017
  20628. }
  20629. },
  20630. back: {
  20631. height: math.unit(4, "feet"),
  20632. weight: math.unit(90, "lb"),
  20633. name: "Back",
  20634. image: {
  20635. source: "./media/characters/reza/back.svg",
  20636. extra: 1183 / 1111,
  20637. bottom: 0.01
  20638. }
  20639. },
  20640. drake: {
  20641. height: math.unit(30, "feet"),
  20642. weight: math.unit(246960, "lb"),
  20643. name: "Drake",
  20644. image: {
  20645. source: "./media/characters/reza/drake.svg",
  20646. extra: 2350 / 2024,
  20647. bottom: 60.7 / 2403
  20648. }
  20649. },
  20650. },
  20651. [
  20652. {
  20653. name: "Normal",
  20654. height: math.unit(4, "feet"),
  20655. default: true
  20656. },
  20657. ]
  20658. ))
  20659. characterMakers.push(() => makeCharacter(
  20660. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20661. {
  20662. side: {
  20663. height: math.unit(15, "feet"),
  20664. weight: math.unit(14, "tons"),
  20665. name: "Side",
  20666. image: {
  20667. source: "./media/characters/athea/side.svg",
  20668. extra: 960 / 540,
  20669. bottom: 0.003
  20670. }
  20671. },
  20672. sitting: {
  20673. height: math.unit(6 * 2.85, "feet"),
  20674. weight: math.unit(14, "tons"),
  20675. name: "Sitting",
  20676. image: {
  20677. source: "./media/characters/athea/sitting.svg",
  20678. extra: 621 / 581,
  20679. bottom: 0.075
  20680. }
  20681. },
  20682. maw: {
  20683. height: math.unit(7.59498031496063, "feet"),
  20684. name: "Maw",
  20685. image: {
  20686. source: "./media/characters/athea/maw.svg"
  20687. }
  20688. },
  20689. },
  20690. [
  20691. {
  20692. name: "Lap Cat",
  20693. height: math.unit(2.5, "feet")
  20694. },
  20695. {
  20696. name: "Minimacro",
  20697. height: math.unit(15, "feet"),
  20698. default: true
  20699. },
  20700. {
  20701. name: "Macro",
  20702. height: math.unit(120, "feet")
  20703. },
  20704. {
  20705. name: "Macro+",
  20706. height: math.unit(640, "feet")
  20707. },
  20708. {
  20709. name: "Colossus",
  20710. height: math.unit(2.2, "miles")
  20711. },
  20712. ]
  20713. ))
  20714. characterMakers.push(() => makeCharacter(
  20715. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20716. {
  20717. front: {
  20718. height: math.unit(8 + 8 / 12, "feet"),
  20719. weight: math.unit(130, "kg"),
  20720. name: "Front",
  20721. image: {
  20722. source: "./media/characters/seroko/front.svg",
  20723. extra: 1385 / 1280,
  20724. bottom: 0.025
  20725. }
  20726. },
  20727. back: {
  20728. height: math.unit(8 + 8 / 12, "feet"),
  20729. weight: math.unit(130, "kg"),
  20730. name: "Back",
  20731. image: {
  20732. source: "./media/characters/seroko/back.svg",
  20733. extra: 1369 / 1238,
  20734. bottom: 0.018
  20735. }
  20736. },
  20737. frontDressed: {
  20738. height: math.unit(8 + 8 / 12, "feet"),
  20739. weight: math.unit(130, "kg"),
  20740. name: "Front (Dressed)",
  20741. image: {
  20742. source: "./media/characters/seroko/front-dressed.svg",
  20743. extra: 1366 / 1275,
  20744. bottom: 0.03
  20745. }
  20746. },
  20747. },
  20748. [
  20749. {
  20750. name: "Normal",
  20751. height: math.unit(8 + 8 / 12, "feet"),
  20752. default: true
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20758. {
  20759. front: {
  20760. height: math.unit(5.5, "feet"),
  20761. weight: math.unit(160, "lb"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/quatzi/front.svg",
  20765. extra: 2346 / 2242,
  20766. bottom: 0.015
  20767. }
  20768. },
  20769. },
  20770. [
  20771. {
  20772. name: "Normal",
  20773. height: math.unit(5.5, "feet"),
  20774. default: true
  20775. },
  20776. {
  20777. name: "Big",
  20778. height: math.unit(7.7, "feet")
  20779. },
  20780. ]
  20781. ))
  20782. characterMakers.push(() => makeCharacter(
  20783. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20784. {
  20785. front: {
  20786. height: math.unit(5 + 11 / 12, "feet"),
  20787. weight: math.unit(180, "lb"),
  20788. name: "Front",
  20789. image: {
  20790. source: "./media/characters/sen/front.svg",
  20791. extra: 1321 / 1254,
  20792. bottom: 0.015
  20793. }
  20794. },
  20795. side: {
  20796. height: math.unit(5 + 11 / 12, "feet"),
  20797. weight: math.unit(180, "lb"),
  20798. name: "Side",
  20799. image: {
  20800. source: "./media/characters/sen/side.svg",
  20801. extra: 1321 / 1254,
  20802. bottom: 0.007
  20803. }
  20804. },
  20805. back: {
  20806. height: math.unit(5 + 11 / 12, "feet"),
  20807. weight: math.unit(180, "lb"),
  20808. name: "Back",
  20809. image: {
  20810. source: "./media/characters/sen/back.svg",
  20811. extra: 1321 / 1254
  20812. }
  20813. },
  20814. },
  20815. [
  20816. {
  20817. name: "Normal",
  20818. height: math.unit(5 + 11 / 12, "feet"),
  20819. default: true
  20820. },
  20821. ]
  20822. ))
  20823. characterMakers.push(() => makeCharacter(
  20824. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20825. {
  20826. front: {
  20827. height: math.unit(166.6, "cm"),
  20828. weight: math.unit(66.6, "kg"),
  20829. name: "Front",
  20830. image: {
  20831. source: "./media/characters/fruity/front.svg",
  20832. extra: 1510 / 1386,
  20833. bottom: 0.04
  20834. }
  20835. },
  20836. back: {
  20837. height: math.unit(166.6, "cm"),
  20838. weight: math.unit(66.6, "lb"),
  20839. name: "Back",
  20840. image: {
  20841. source: "./media/characters/fruity/back.svg",
  20842. extra: 1563 / 1435,
  20843. bottom: 0.005
  20844. }
  20845. },
  20846. },
  20847. [
  20848. {
  20849. name: "Normal",
  20850. height: math.unit(166.6, "cm"),
  20851. default: true
  20852. },
  20853. {
  20854. name: "Demonic",
  20855. height: math.unit(166.6, "feet")
  20856. },
  20857. ]
  20858. ))
  20859. characterMakers.push(() => makeCharacter(
  20860. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20861. {
  20862. side: {
  20863. height: math.unit(10, "feet"),
  20864. weight: math.unit(500, "lb"),
  20865. name: "Side",
  20866. image: {
  20867. source: "./media/characters/zost/side.svg",
  20868. extra: 966 / 880,
  20869. bottom: 0.075
  20870. }
  20871. },
  20872. mawFront: {
  20873. height: math.unit(1.08, "meters"),
  20874. name: "Maw (Front)",
  20875. image: {
  20876. source: "./media/characters/zost/maw-front.svg"
  20877. }
  20878. },
  20879. mawSide: {
  20880. height: math.unit(2.66, "feet"),
  20881. name: "Maw (Side)",
  20882. image: {
  20883. source: "./media/characters/zost/maw-side.svg"
  20884. }
  20885. },
  20886. },
  20887. [
  20888. {
  20889. name: "Normal",
  20890. height: math.unit(10, "feet"),
  20891. default: true
  20892. },
  20893. ]
  20894. ))
  20895. characterMakers.push(() => makeCharacter(
  20896. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20897. {
  20898. front: {
  20899. height: math.unit(5 + 4 / 12, "feet"),
  20900. weight: math.unit(120, "lb"),
  20901. name: "Front",
  20902. image: {
  20903. source: "./media/characters/luci/front.svg",
  20904. extra: 1985 / 1884,
  20905. bottom: 0.04
  20906. }
  20907. },
  20908. back: {
  20909. height: math.unit(5 + 4 / 12, "feet"),
  20910. weight: math.unit(120, "lb"),
  20911. name: "Back",
  20912. image: {
  20913. source: "./media/characters/luci/back.svg",
  20914. extra: 1892 / 1791,
  20915. bottom: 0.002
  20916. }
  20917. },
  20918. },
  20919. [
  20920. {
  20921. name: "Normal",
  20922. height: math.unit(5 + 4 / 12, "feet"),
  20923. default: true
  20924. },
  20925. ]
  20926. ))
  20927. characterMakers.push(() => makeCharacter(
  20928. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20929. {
  20930. front: {
  20931. height: math.unit(1500, "feet"),
  20932. weight: math.unit(3.8e6, "tons"),
  20933. name: "Front",
  20934. image: {
  20935. source: "./media/characters/2th/front.svg",
  20936. extra: 3489 / 3350,
  20937. bottom: 0.1
  20938. }
  20939. },
  20940. foot: {
  20941. height: math.unit(461, "feet"),
  20942. name: "Foot",
  20943. image: {
  20944. source: "./media/characters/2th/foot.svg"
  20945. }
  20946. },
  20947. },
  20948. [
  20949. {
  20950. name: "\"Micro\"",
  20951. height: math.unit(15 + 7 / 12, "feet")
  20952. },
  20953. {
  20954. name: "Normal",
  20955. height: math.unit(1500, "feet"),
  20956. default: true
  20957. },
  20958. {
  20959. name: "Macro",
  20960. height: math.unit(5000, "feet")
  20961. },
  20962. {
  20963. name: "Megamacro",
  20964. height: math.unit(15, "miles")
  20965. },
  20966. {
  20967. name: "Gigamacro",
  20968. height: math.unit(4000, "miles")
  20969. },
  20970. {
  20971. name: "Galactic",
  20972. height: math.unit(50, "AU")
  20973. },
  20974. ]
  20975. ))
  20976. characterMakers.push(() => makeCharacter(
  20977. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20978. {
  20979. front: {
  20980. height: math.unit(5 + 6 / 12, "feet"),
  20981. weight: math.unit(220, "lb"),
  20982. name: "Front",
  20983. image: {
  20984. source: "./media/characters/amethyst/front.svg",
  20985. extra: 2078 / 2040,
  20986. bottom: 0.045
  20987. }
  20988. },
  20989. back: {
  20990. height: math.unit(5 + 6 / 12, "feet"),
  20991. weight: math.unit(220, "lb"),
  20992. name: "Back",
  20993. image: {
  20994. source: "./media/characters/amethyst/back.svg",
  20995. extra: 2021 / 1989,
  20996. bottom: 0.02
  20997. }
  20998. },
  20999. },
  21000. [
  21001. {
  21002. name: "Normal",
  21003. height: math.unit(5 + 6 / 12, "feet"),
  21004. default: true
  21005. },
  21006. ]
  21007. ))
  21008. characterMakers.push(() => makeCharacter(
  21009. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21010. {
  21011. front: {
  21012. height: math.unit(4 + 11 / 12, "feet"),
  21013. weight: math.unit(120, "lb"),
  21014. name: "Front",
  21015. image: {
  21016. source: "./media/characters/yumi-akiyama/front.svg",
  21017. extra: 1327 / 1235,
  21018. bottom: 0.02
  21019. }
  21020. },
  21021. back: {
  21022. height: math.unit(4 + 11 / 12, "feet"),
  21023. weight: math.unit(120, "lb"),
  21024. name: "Back",
  21025. image: {
  21026. source: "./media/characters/yumi-akiyama/back.svg",
  21027. extra: 1287 / 1245,
  21028. bottom: 0.002
  21029. }
  21030. },
  21031. },
  21032. [
  21033. {
  21034. name: "Galactic",
  21035. height: math.unit(50, "galaxies"),
  21036. default: true
  21037. },
  21038. {
  21039. name: "Universal",
  21040. height: math.unit(100, "universes")
  21041. },
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21046. {
  21047. front: {
  21048. height: math.unit(8, "feet"),
  21049. weight: math.unit(500, "lb"),
  21050. name: "Front",
  21051. image: {
  21052. source: "./media/characters/rifter-yrmori/front.svg",
  21053. extra: 1180 / 1125,
  21054. bottom: 0.02
  21055. }
  21056. },
  21057. back: {
  21058. height: math.unit(8, "feet"),
  21059. weight: math.unit(500, "lb"),
  21060. name: "Back",
  21061. image: {
  21062. source: "./media/characters/rifter-yrmori/back.svg",
  21063. extra: 1190 / 1145,
  21064. bottom: 0.001
  21065. }
  21066. },
  21067. wings: {
  21068. height: math.unit(7.75, "feet"),
  21069. weight: math.unit(500, "lb"),
  21070. name: "Wings",
  21071. image: {
  21072. source: "./media/characters/rifter-yrmori/wings.svg",
  21073. extra: 1357 / 1285
  21074. }
  21075. },
  21076. maw: {
  21077. height: math.unit(0.8, "feet"),
  21078. name: "Maw",
  21079. image: {
  21080. source: "./media/characters/rifter-yrmori/maw.svg"
  21081. }
  21082. },
  21083. mawfront: {
  21084. height: math.unit(1.45, "feet"),
  21085. name: "Maw (Front)",
  21086. image: {
  21087. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21088. }
  21089. },
  21090. },
  21091. [
  21092. {
  21093. name: "Normal",
  21094. height: math.unit(8, "feet"),
  21095. default: true
  21096. },
  21097. {
  21098. name: "Macro",
  21099. height: math.unit(42, "meters")
  21100. },
  21101. ]
  21102. ))
  21103. characterMakers.push(() => makeCharacter(
  21104. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21105. {
  21106. were: {
  21107. height: math.unit(25 + 6 / 12, "feet"),
  21108. weight: math.unit(10000, "lb"),
  21109. name: "Were",
  21110. image: {
  21111. source: "./media/characters/tahajin/were.svg",
  21112. extra: 801 / 770,
  21113. bottom: 0.042
  21114. }
  21115. },
  21116. aquatic: {
  21117. height: math.unit(6 + 4 / 12, "feet"),
  21118. weight: math.unit(160, "lb"),
  21119. name: "Aquatic",
  21120. image: {
  21121. source: "./media/characters/tahajin/aquatic.svg",
  21122. extra: 572 / 542,
  21123. bottom: 0.04
  21124. }
  21125. },
  21126. chow: {
  21127. height: math.unit(8 + 11 / 12, "feet"),
  21128. weight: math.unit(450, "lb"),
  21129. name: "Chow",
  21130. image: {
  21131. source: "./media/characters/tahajin/chow.svg",
  21132. extra: 660 / 640,
  21133. bottom: 0.015
  21134. }
  21135. },
  21136. demiNaga: {
  21137. height: math.unit(6 + 8 / 12, "feet"),
  21138. weight: math.unit(300, "lb"),
  21139. name: "Demi Naga",
  21140. image: {
  21141. source: "./media/characters/tahajin/demi-naga.svg",
  21142. extra: 643 / 615,
  21143. bottom: 0.1
  21144. }
  21145. },
  21146. data: {
  21147. height: math.unit(5, "inches"),
  21148. weight: math.unit(0.1, "lb"),
  21149. name: "Data",
  21150. image: {
  21151. source: "./media/characters/tahajin/data.svg"
  21152. }
  21153. },
  21154. fluu: {
  21155. height: math.unit(5 + 7 / 12, "feet"),
  21156. weight: math.unit(140, "lb"),
  21157. name: "Fluu",
  21158. image: {
  21159. source: "./media/characters/tahajin/fluu.svg",
  21160. extra: 628 / 592,
  21161. bottom: 0.02
  21162. }
  21163. },
  21164. starWarrior: {
  21165. height: math.unit(4 + 5 / 12, "feet"),
  21166. weight: math.unit(50, "lb"),
  21167. name: "Star Warrior",
  21168. image: {
  21169. source: "./media/characters/tahajin/star-warrior.svg"
  21170. }
  21171. },
  21172. },
  21173. [
  21174. {
  21175. name: "Normal",
  21176. height: math.unit(25 + 6 / 12, "feet"),
  21177. default: true
  21178. },
  21179. ]
  21180. ))
  21181. characterMakers.push(() => makeCharacter(
  21182. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21183. {
  21184. front: {
  21185. height: math.unit(8, "feet"),
  21186. weight: math.unit(350, "lb"),
  21187. name: "Front",
  21188. image: {
  21189. source: "./media/characters/gabira/front.svg",
  21190. extra: 608 / 580,
  21191. bottom: 0.03
  21192. }
  21193. },
  21194. back: {
  21195. height: math.unit(8, "feet"),
  21196. weight: math.unit(350, "lb"),
  21197. name: "Back",
  21198. image: {
  21199. source: "./media/characters/gabira/back.svg",
  21200. extra: 608 / 580,
  21201. bottom: 0.03
  21202. }
  21203. },
  21204. },
  21205. [
  21206. {
  21207. name: "Normal",
  21208. height: math.unit(8, "feet"),
  21209. default: true
  21210. },
  21211. ]
  21212. ))
  21213. characterMakers.push(() => makeCharacter(
  21214. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21215. {
  21216. front: {
  21217. height: math.unit(5 + 3 / 12, "feet"),
  21218. weight: math.unit(137, "lb"),
  21219. name: "Front",
  21220. image: {
  21221. source: "./media/characters/sasha-katraine/front.svg",
  21222. bottom: 0.045
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Micro",
  21229. height: math.unit(5, "inches")
  21230. },
  21231. {
  21232. name: "Normal",
  21233. height: math.unit(5 + 3 / 12, "feet"),
  21234. default: true
  21235. },
  21236. ]
  21237. ))
  21238. characterMakers.push(() => makeCharacter(
  21239. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21240. {
  21241. side: {
  21242. height: math.unit(4, "inches"),
  21243. weight: math.unit(200, "grams"),
  21244. name: "Side",
  21245. image: {
  21246. source: "./media/characters/der/side.svg",
  21247. extra: 719 / 400,
  21248. bottom: 30.6 / 749.9187
  21249. }
  21250. },
  21251. },
  21252. [
  21253. {
  21254. name: "Micro",
  21255. height: math.unit(4, "inches"),
  21256. default: true
  21257. },
  21258. ]
  21259. ))
  21260. characterMakers.push(() => makeCharacter(
  21261. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21262. {
  21263. side: {
  21264. height: math.unit(30, "meters"),
  21265. weight: math.unit(700, "tonnes"),
  21266. name: "Side",
  21267. image: {
  21268. source: "./media/characters/fixerdragon/side.svg",
  21269. extra: (1293.0514 - 116.03) / 1106.86,
  21270. bottom: 116.03 / 1293.0514
  21271. }
  21272. },
  21273. },
  21274. [
  21275. {
  21276. name: "Planck",
  21277. height: math.unit(1.6e-35, "meters")
  21278. },
  21279. {
  21280. name: "Micro",
  21281. height: math.unit(0.4, "meters")
  21282. },
  21283. {
  21284. name: "Normal",
  21285. height: math.unit(30, "meters"),
  21286. default: true
  21287. },
  21288. {
  21289. name: "Megamacro",
  21290. height: math.unit(1.2, "megameters")
  21291. },
  21292. {
  21293. name: "Teramacro",
  21294. height: math.unit(130, "terameters")
  21295. },
  21296. {
  21297. name: "Yottamacro",
  21298. height: math.unit(6200, "yottameters")
  21299. },
  21300. ]
  21301. ));
  21302. characterMakers.push(() => makeCharacter(
  21303. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21304. {
  21305. front: {
  21306. height: math.unit(8, "feet"),
  21307. weight: math.unit(250, "lb"),
  21308. name: "Front",
  21309. image: {
  21310. source: "./media/characters/kite/front.svg",
  21311. extra: 2796 / 2659,
  21312. bottom: 0.002
  21313. }
  21314. },
  21315. },
  21316. [
  21317. {
  21318. name: "Normal",
  21319. height: math.unit(8, "feet"),
  21320. default: true
  21321. },
  21322. {
  21323. name: "Macro",
  21324. height: math.unit(360, "feet")
  21325. },
  21326. {
  21327. name: "Megamacro",
  21328. height: math.unit(1500, "feet")
  21329. },
  21330. ]
  21331. ))
  21332. characterMakers.push(() => makeCharacter(
  21333. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21334. {
  21335. front: {
  21336. height: math.unit(5 + 10 / 12, "feet"),
  21337. weight: math.unit(150, "lb"),
  21338. name: "Front",
  21339. image: {
  21340. source: "./media/characters/poojawa-vynar/front.svg",
  21341. extra: (1506.1547 - 55) / 1356.6,
  21342. bottom: 55 / 1506.1547
  21343. }
  21344. },
  21345. frontTailless: {
  21346. height: math.unit(5 + 10 / 12, "feet"),
  21347. weight: math.unit(150, "lb"),
  21348. name: "Front (Tailless)",
  21349. image: {
  21350. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21351. extra: (1506.1547 - 55) / 1356.6,
  21352. bottom: 55 / 1506.1547
  21353. }
  21354. },
  21355. },
  21356. [
  21357. {
  21358. name: "Normal",
  21359. height: math.unit(5 + 10 / 12, "feet"),
  21360. default: true
  21361. },
  21362. ]
  21363. ))
  21364. characterMakers.push(() => makeCharacter(
  21365. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21366. {
  21367. front: {
  21368. height: math.unit(293, "meters"),
  21369. weight: math.unit(70400, "tons"),
  21370. name: "Front",
  21371. image: {
  21372. source: "./media/characters/violette/front.svg",
  21373. extra: 1227 / 1180,
  21374. bottom: 0.005
  21375. }
  21376. },
  21377. back: {
  21378. height: math.unit(293, "meters"),
  21379. weight: math.unit(70400, "tons"),
  21380. name: "Back",
  21381. image: {
  21382. source: "./media/characters/violette/back.svg",
  21383. extra: 1227 / 1180,
  21384. bottom: 0.005
  21385. }
  21386. },
  21387. },
  21388. [
  21389. {
  21390. name: "Macro",
  21391. height: math.unit(293, "meters"),
  21392. default: true
  21393. },
  21394. ]
  21395. ))
  21396. characterMakers.push(() => makeCharacter(
  21397. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21398. {
  21399. front: {
  21400. height: math.unit(1050, "feet"),
  21401. weight: math.unit(200000, "tons"),
  21402. name: "Front",
  21403. image: {
  21404. source: "./media/characters/alessandra/front.svg",
  21405. extra: 960 / 912,
  21406. bottom: 0.06
  21407. }
  21408. },
  21409. },
  21410. [
  21411. {
  21412. name: "Macro",
  21413. height: math.unit(1050, "feet")
  21414. },
  21415. {
  21416. name: "Macro+",
  21417. height: math.unit(900, "meters"),
  21418. default: true
  21419. },
  21420. ]
  21421. ))
  21422. characterMakers.push(() => makeCharacter(
  21423. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21424. {
  21425. front: {
  21426. height: math.unit(5, "feet"),
  21427. weight: math.unit(187, "lb"),
  21428. name: "Front",
  21429. image: {
  21430. source: "./media/characters/person/front.svg",
  21431. extra: 3087 / 2945,
  21432. bottom: 91 / 3181
  21433. }
  21434. },
  21435. },
  21436. [
  21437. {
  21438. name: "Micro",
  21439. height: math.unit(3, "inches")
  21440. },
  21441. {
  21442. name: "Normal",
  21443. height: math.unit(5, "feet"),
  21444. default: true
  21445. },
  21446. {
  21447. name: "Macro",
  21448. height: math.unit(90, "feet")
  21449. },
  21450. {
  21451. name: "Max Size",
  21452. height: math.unit(280, "feet")
  21453. },
  21454. ]
  21455. ))
  21456. characterMakers.push(() => makeCharacter(
  21457. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21458. {
  21459. front: {
  21460. height: math.unit(4.5, "meters"),
  21461. weight: math.unit(3200, "lb"),
  21462. name: "Front",
  21463. image: {
  21464. source: "./media/characters/ty/front.svg",
  21465. extra: 1038 / 960,
  21466. bottom: 31.156 / 1068
  21467. }
  21468. },
  21469. back: {
  21470. height: math.unit(4.5, "meters"),
  21471. weight: math.unit(3200, "lb"),
  21472. name: "Back",
  21473. image: {
  21474. source: "./media/characters/ty/back.svg",
  21475. extra: 1044 / 966,
  21476. bottom: 7.48 / 1049
  21477. }
  21478. },
  21479. },
  21480. [
  21481. {
  21482. name: "Normal",
  21483. height: math.unit(4.5, "meters"),
  21484. default: true
  21485. },
  21486. ]
  21487. ))
  21488. characterMakers.push(() => makeCharacter(
  21489. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21490. {
  21491. front: {
  21492. height: math.unit(5 + 4 / 12, "feet"),
  21493. weight: math.unit(115, "lb"),
  21494. name: "Front",
  21495. image: {
  21496. source: "./media/characters/rocky/front.svg",
  21497. extra: 1012 / 975,
  21498. bottom: 54 / 1066
  21499. }
  21500. },
  21501. },
  21502. [
  21503. {
  21504. name: "Normal",
  21505. height: math.unit(5 + 4 / 12, "feet"),
  21506. default: true
  21507. },
  21508. ]
  21509. ))
  21510. characterMakers.push(() => makeCharacter(
  21511. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21512. {
  21513. upright: {
  21514. height: math.unit(6, "meters"),
  21515. weight: math.unit(4000, "kg"),
  21516. name: "Upright",
  21517. image: {
  21518. source: "./media/characters/ruin/upright.svg",
  21519. extra: 668 / 661,
  21520. bottom: 42 / 799.8396
  21521. }
  21522. },
  21523. },
  21524. [
  21525. {
  21526. name: "Normal",
  21527. height: math.unit(6, "meters"),
  21528. default: true
  21529. },
  21530. ]
  21531. ))
  21532. characterMakers.push(() => makeCharacter(
  21533. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21534. {
  21535. front: {
  21536. height: math.unit(5, "feet"),
  21537. weight: math.unit(106, "lb"),
  21538. name: "Front",
  21539. image: {
  21540. source: "./media/characters/robin/front.svg",
  21541. extra: 862 / 799,
  21542. bottom: 42.4 / 914.8856
  21543. }
  21544. },
  21545. },
  21546. [
  21547. {
  21548. name: "Normal",
  21549. height: math.unit(5, "feet"),
  21550. default: true
  21551. },
  21552. ]
  21553. ))
  21554. characterMakers.push(() => makeCharacter(
  21555. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21556. {
  21557. side: {
  21558. height: math.unit(3, "feet"),
  21559. weight: math.unit(225, "lb"),
  21560. name: "Side",
  21561. image: {
  21562. source: "./media/characters/saian/side.svg",
  21563. extra: 566 / 356,
  21564. bottom: 79.7 / 643
  21565. }
  21566. },
  21567. maw: {
  21568. height: math.unit(2.85, "feet"),
  21569. name: "Maw",
  21570. image: {
  21571. source: "./media/characters/saian/maw.svg"
  21572. }
  21573. },
  21574. },
  21575. [
  21576. {
  21577. name: "Normal",
  21578. height: math.unit(3, "feet"),
  21579. default: true
  21580. },
  21581. ]
  21582. ))
  21583. characterMakers.push(() => makeCharacter(
  21584. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21585. {
  21586. side: {
  21587. height: math.unit(8, "feet"),
  21588. weight: math.unit(300, "lb"),
  21589. name: "Side",
  21590. image: {
  21591. source: "./media/characters/equus-silvermane/side.svg",
  21592. extra: 2176 / 2050,
  21593. bottom: 65.7 / 2245
  21594. }
  21595. },
  21596. front: {
  21597. height: math.unit(8, "feet"),
  21598. weight: math.unit(300, "lb"),
  21599. name: "Front",
  21600. image: {
  21601. source: "./media/characters/equus-silvermane/front.svg",
  21602. extra: 4633 / 4400,
  21603. bottom: 71.3 / 4706.915
  21604. }
  21605. },
  21606. sideStepping: {
  21607. height: math.unit(8, "feet"),
  21608. weight: math.unit(300, "lb"),
  21609. name: "Side (Stepping)",
  21610. image: {
  21611. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21612. extra: 1968 / 1860,
  21613. bottom: 16.4 / 1989
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Normal",
  21620. height: math.unit(8, "feet")
  21621. },
  21622. {
  21623. name: "Minimacro",
  21624. height: math.unit(75, "feet"),
  21625. default: true
  21626. },
  21627. {
  21628. name: "Macro",
  21629. height: math.unit(150, "feet")
  21630. },
  21631. {
  21632. name: "Macro+",
  21633. height: math.unit(1000, "feet")
  21634. },
  21635. {
  21636. name: "Megamacro",
  21637. height: math.unit(1, "mile")
  21638. },
  21639. ]
  21640. ))
  21641. characterMakers.push(() => makeCharacter(
  21642. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21643. {
  21644. side: {
  21645. height: math.unit(20, "feet"),
  21646. weight: math.unit(30000, "kg"),
  21647. name: "Side",
  21648. image: {
  21649. source: "./media/characters/windar/side.svg",
  21650. extra: 1491 / 1248,
  21651. bottom: 82.56 / 1568
  21652. }
  21653. },
  21654. },
  21655. [
  21656. {
  21657. name: "Normal",
  21658. height: math.unit(20, "feet"),
  21659. default: true
  21660. },
  21661. ]
  21662. ))
  21663. characterMakers.push(() => makeCharacter(
  21664. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21665. {
  21666. side: {
  21667. height: math.unit(15.66, "feet"),
  21668. weight: math.unit(150, "lb"),
  21669. name: "Side",
  21670. image: {
  21671. source: "./media/characters/melody/side.svg",
  21672. extra: 1097 / 944,
  21673. bottom: 11.8 / 1109
  21674. }
  21675. },
  21676. sideOutfit: {
  21677. height: math.unit(15.66, "feet"),
  21678. weight: math.unit(150, "lb"),
  21679. name: "Side (Outfit)",
  21680. image: {
  21681. source: "./media/characters/melody/side-outfit.svg",
  21682. extra: 1097 / 944,
  21683. bottom: 11.8 / 1109
  21684. }
  21685. },
  21686. },
  21687. [
  21688. {
  21689. name: "Normal",
  21690. height: math.unit(15.66, "feet"),
  21691. default: true
  21692. },
  21693. ]
  21694. ))
  21695. characterMakers.push(() => makeCharacter(
  21696. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21697. {
  21698. front: {
  21699. height: math.unit(8, "feet"),
  21700. weight: math.unit(325, "lb"),
  21701. name: "Front",
  21702. image: {
  21703. source: "./media/characters/windera/front.svg",
  21704. extra: 3180 / 2845,
  21705. bottom: 178 / 3365
  21706. }
  21707. },
  21708. },
  21709. [
  21710. {
  21711. name: "Normal",
  21712. height: math.unit(8, "feet"),
  21713. default: true
  21714. },
  21715. ]
  21716. ))
  21717. characterMakers.push(() => makeCharacter(
  21718. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21719. {
  21720. front: {
  21721. height: math.unit(28.75, "feet"),
  21722. weight: math.unit(2000, "kg"),
  21723. name: "Front",
  21724. image: {
  21725. source: "./media/characters/sonear/front.svg",
  21726. extra: 1041.1 / 964.9,
  21727. bottom: 53.7 / 1096.6
  21728. }
  21729. },
  21730. },
  21731. [
  21732. {
  21733. name: "Normal",
  21734. height: math.unit(28.75, "feet"),
  21735. default: true
  21736. },
  21737. ]
  21738. ))
  21739. characterMakers.push(() => makeCharacter(
  21740. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21741. {
  21742. side: {
  21743. height: math.unit(25.5, "feet"),
  21744. weight: math.unit(23000, "kg"),
  21745. name: "Side",
  21746. image: {
  21747. source: "./media/characters/kanara/side.svg"
  21748. }
  21749. },
  21750. },
  21751. [
  21752. {
  21753. name: "Normal",
  21754. height: math.unit(25.5, "feet"),
  21755. default: true
  21756. },
  21757. ]
  21758. ))
  21759. characterMakers.push(() => makeCharacter(
  21760. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21761. {
  21762. side: {
  21763. height: math.unit(10, "feet"),
  21764. weight: math.unit(1000, "kg"),
  21765. name: "Side",
  21766. image: {
  21767. source: "./media/characters/ereus/side.svg",
  21768. extra: 1157 / 959,
  21769. bottom: 153 / 1312.5
  21770. }
  21771. },
  21772. },
  21773. [
  21774. {
  21775. name: "Normal",
  21776. height: math.unit(10, "feet"),
  21777. default: true
  21778. },
  21779. ]
  21780. ))
  21781. characterMakers.push(() => makeCharacter(
  21782. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21783. {
  21784. side: {
  21785. height: math.unit(4.5, "feet"),
  21786. weight: math.unit(500, "lb"),
  21787. name: "Side",
  21788. image: {
  21789. source: "./media/characters/e-ter/side.svg",
  21790. extra: 1550 / 1248,
  21791. bottom: 146 / 1694
  21792. }
  21793. },
  21794. },
  21795. [
  21796. {
  21797. name: "Normal",
  21798. height: math.unit(4.5, "feet"),
  21799. default: true
  21800. },
  21801. ]
  21802. ))
  21803. characterMakers.push(() => makeCharacter(
  21804. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21805. {
  21806. side: {
  21807. height: math.unit(9.7, "feet"),
  21808. weight: math.unit(4000, "kg"),
  21809. name: "Side",
  21810. image: {
  21811. source: "./media/characters/yamie/side.svg"
  21812. }
  21813. },
  21814. },
  21815. [
  21816. {
  21817. name: "Normal",
  21818. height: math.unit(9.7, "feet"),
  21819. default: true
  21820. },
  21821. ]
  21822. ))
  21823. characterMakers.push(() => makeCharacter(
  21824. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21825. {
  21826. front: {
  21827. height: math.unit(50, "feet"),
  21828. weight: math.unit(50000, "kg"),
  21829. name: "Front",
  21830. image: {
  21831. source: "./media/characters/anders/front.svg",
  21832. extra: 570 / 539,
  21833. bottom: 14.7 / 586.7
  21834. }
  21835. },
  21836. },
  21837. [
  21838. {
  21839. name: "Large",
  21840. height: math.unit(50, "feet")
  21841. },
  21842. {
  21843. name: "Macro",
  21844. height: math.unit(2000, "feet"),
  21845. default: true
  21846. },
  21847. {
  21848. name: "Megamacro",
  21849. height: math.unit(12, "miles")
  21850. },
  21851. ]
  21852. ))
  21853. characterMakers.push(() => makeCharacter(
  21854. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21855. {
  21856. front: {
  21857. height: math.unit(7 + 2 / 12, "feet"),
  21858. weight: math.unit(300, "lb"),
  21859. name: "Front",
  21860. image: {
  21861. source: "./media/characters/reban/front.svg",
  21862. extra: 516 / 487,
  21863. bottom: 42.82 / 558.356
  21864. }
  21865. },
  21866. dick: {
  21867. height: math.unit(7 / 5, "feet"),
  21868. name: "Dick",
  21869. image: {
  21870. source: "./media/characters/reban/dick.svg"
  21871. }
  21872. },
  21873. },
  21874. [
  21875. {
  21876. name: "Natural Height",
  21877. height: math.unit(7 + 2 / 12, "feet")
  21878. },
  21879. {
  21880. name: "Macro",
  21881. height: math.unit(500, "feet"),
  21882. default: true
  21883. },
  21884. {
  21885. name: "Canon Height",
  21886. height: math.unit(50, "AU")
  21887. },
  21888. ]
  21889. ))
  21890. characterMakers.push(() => makeCharacter(
  21891. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21892. {
  21893. front: {
  21894. height: math.unit(6, "feet"),
  21895. weight: math.unit(150, "lb"),
  21896. name: "Front",
  21897. image: {
  21898. source: "./media/characters/terrance-keayes/front.svg",
  21899. extra: 1.005,
  21900. bottom: 151 / 1615
  21901. }
  21902. },
  21903. side: {
  21904. height: math.unit(6, "feet"),
  21905. weight: math.unit(150, "lb"),
  21906. name: "Side",
  21907. image: {
  21908. source: "./media/characters/terrance-keayes/side.svg",
  21909. extra: 1.005,
  21910. bottom: 129.4 / 1544
  21911. }
  21912. },
  21913. back: {
  21914. height: math.unit(6, "feet"),
  21915. weight: math.unit(150, "lb"),
  21916. name: "Back",
  21917. image: {
  21918. source: "./media/characters/terrance-keayes/back.svg",
  21919. extra: 1.005,
  21920. bottom: 58.4 / 1557.3
  21921. }
  21922. },
  21923. dick: {
  21924. height: math.unit(6 * 0.208, "feet"),
  21925. name: "Dick",
  21926. image: {
  21927. source: "./media/characters/terrance-keayes/dick.svg"
  21928. }
  21929. },
  21930. },
  21931. [
  21932. {
  21933. name: "Canon Height",
  21934. height: math.unit(35, "miles"),
  21935. default: true
  21936. },
  21937. ]
  21938. ))
  21939. characterMakers.push(() => makeCharacter(
  21940. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21941. {
  21942. front: {
  21943. height: math.unit(6, "feet"),
  21944. weight: math.unit(150, "lb"),
  21945. name: "Front",
  21946. image: {
  21947. source: "./media/characters/ofelia/front.svg",
  21948. extra: 546 / 541,
  21949. bottom: 39 / 583
  21950. }
  21951. },
  21952. back: {
  21953. height: math.unit(6, "feet"),
  21954. weight: math.unit(150, "lb"),
  21955. name: "Back",
  21956. image: {
  21957. source: "./media/characters/ofelia/back.svg",
  21958. extra: 564 / 559.5,
  21959. bottom: 8.69 / 573.02
  21960. }
  21961. },
  21962. maw: {
  21963. height: math.unit(1, "feet"),
  21964. name: "Maw",
  21965. image: {
  21966. source: "./media/characters/ofelia/maw.svg"
  21967. }
  21968. },
  21969. foot: {
  21970. height: math.unit(1.949, "feet"),
  21971. name: "Foot",
  21972. image: {
  21973. source: "./media/characters/ofelia/foot.svg"
  21974. }
  21975. },
  21976. },
  21977. [
  21978. {
  21979. name: "Canon Height",
  21980. height: math.unit(2000, "miles"),
  21981. default: true
  21982. },
  21983. ]
  21984. ))
  21985. characterMakers.push(() => makeCharacter(
  21986. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21987. {
  21988. front: {
  21989. height: math.unit(6, "feet"),
  21990. weight: math.unit(150, "lb"),
  21991. name: "Front",
  21992. image: {
  21993. source: "./media/characters/samuel/front.svg",
  21994. extra: 265 / 258,
  21995. bottom: 2 / 266.1566
  21996. }
  21997. },
  21998. },
  21999. [
  22000. {
  22001. name: "Macro",
  22002. height: math.unit(100, "feet"),
  22003. default: true
  22004. },
  22005. {
  22006. name: "Full Size",
  22007. height: math.unit(1000, "miles")
  22008. },
  22009. ]
  22010. ))
  22011. characterMakers.push(() => makeCharacter(
  22012. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22013. {
  22014. front: {
  22015. height: math.unit(6, "feet"),
  22016. weight: math.unit(300, "lb"),
  22017. name: "Front",
  22018. image: {
  22019. source: "./media/characters/beishir-kiel/front.svg",
  22020. extra: 569 / 547,
  22021. bottom: 41.9 / 609
  22022. }
  22023. },
  22024. maw: {
  22025. height: math.unit(6 * 0.202, "feet"),
  22026. name: "Maw",
  22027. image: {
  22028. source: "./media/characters/beishir-kiel/maw.svg"
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Macro",
  22035. height: math.unit(300, "feet"),
  22036. default: true
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22042. {
  22043. front: {
  22044. height: math.unit(5 + 7/12, "feet"),
  22045. weight: math.unit(120, "lb"),
  22046. name: "Front",
  22047. image: {
  22048. source: "./media/characters/logan-grey/front.svg",
  22049. extra: 1836/1738,
  22050. bottom: 108/1944
  22051. }
  22052. },
  22053. back: {
  22054. height: math.unit(5 + 7/12, "feet"),
  22055. weight: math.unit(120, "lb"),
  22056. name: "Back",
  22057. image: {
  22058. source: "./media/characters/logan-grey/back.svg",
  22059. extra: 1880/1794,
  22060. bottom: 24/1904
  22061. }
  22062. },
  22063. frontSfw: {
  22064. height: math.unit(5 + 7/12, "feet"),
  22065. weight: math.unit(120, "lb"),
  22066. name: "Front (SFW)",
  22067. image: {
  22068. source: "./media/characters/logan-grey/front-sfw.svg",
  22069. extra: 1836/1738,
  22070. bottom: 108/1944
  22071. }
  22072. },
  22073. backSfw: {
  22074. height: math.unit(5 + 7/12, "feet"),
  22075. weight: math.unit(120, "lb"),
  22076. name: "Back (SFW)",
  22077. image: {
  22078. source: "./media/characters/logan-grey/back-sfw.svg",
  22079. extra: 1880/1794,
  22080. bottom: 24/1904
  22081. }
  22082. },
  22083. hands: {
  22084. height: math.unit(0.84, "feet"),
  22085. name: "Hands",
  22086. image: {
  22087. source: "./media/characters/logan-grey/hands.svg"
  22088. }
  22089. },
  22090. paws: {
  22091. height: math.unit(0.72, "feet"),
  22092. name: "Paws",
  22093. image: {
  22094. source: "./media/characters/logan-grey/paws.svg"
  22095. }
  22096. },
  22097. cock: {
  22098. height: math.unit(1.45, "feet"),
  22099. name: "Cock",
  22100. image: {
  22101. source: "./media/characters/logan-grey/cock.svg"
  22102. }
  22103. },
  22104. cockAlt: {
  22105. height: math.unit(1.437, "feet"),
  22106. name: "Cock (alt)",
  22107. image: {
  22108. source: "./media/characters/logan-grey/cock-alt.svg"
  22109. }
  22110. },
  22111. },
  22112. [
  22113. {
  22114. name: "Normal",
  22115. height: math.unit(5 + 8 / 12, "feet")
  22116. },
  22117. {
  22118. name: "The 500 Foot Femboy",
  22119. height: math.unit(500, "feet"),
  22120. default: true
  22121. },
  22122. {
  22123. name: "Megmacro",
  22124. height: math.unit(20, "miles")
  22125. },
  22126. ]
  22127. ))
  22128. characterMakers.push(() => makeCharacter(
  22129. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22130. {
  22131. front: {
  22132. height: math.unit(8 + 2 / 12, "feet"),
  22133. weight: math.unit(275, "lb"),
  22134. name: "Front",
  22135. image: {
  22136. source: "./media/characters/draganta/front.svg",
  22137. extra: 1177 / 1135,
  22138. bottom: 33.46 / 1212.1
  22139. }
  22140. },
  22141. },
  22142. [
  22143. {
  22144. name: "Normal",
  22145. height: math.unit(8 + 6 / 12, "feet"),
  22146. default: true
  22147. },
  22148. {
  22149. name: "Macro",
  22150. height: math.unit(150, "feet")
  22151. },
  22152. {
  22153. name: "Megamacro",
  22154. height: math.unit(1000, "miles")
  22155. },
  22156. ]
  22157. ))
  22158. characterMakers.push(() => makeCharacter(
  22159. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22160. {
  22161. front: {
  22162. height: math.unit(1.72, "m"),
  22163. weight: math.unit(80, "lb"),
  22164. name: "Front",
  22165. image: {
  22166. source: "./media/characters/voski/front.svg",
  22167. extra: 2076.22 / 2022.4,
  22168. bottom: 102.7 / 2177.3866
  22169. }
  22170. },
  22171. frontNsfw: {
  22172. height: math.unit(1.72, "m"),
  22173. weight: math.unit(80, "lb"),
  22174. name: "Front (NSFW)",
  22175. image: {
  22176. source: "./media/characters/voski/front-nsfw.svg",
  22177. extra: 2076.22 / 2022.4,
  22178. bottom: 102.7 / 2177.3866
  22179. }
  22180. },
  22181. back: {
  22182. height: math.unit(1.72, "m"),
  22183. weight: math.unit(80, "lb"),
  22184. name: "Back",
  22185. image: {
  22186. source: "./media/characters/voski/back.svg",
  22187. extra: 2104 / 2051,
  22188. bottom: 10.45 / 2113.63
  22189. }
  22190. },
  22191. },
  22192. [
  22193. {
  22194. name: "Normal",
  22195. height: math.unit(1.72, "m")
  22196. },
  22197. {
  22198. name: "Macro",
  22199. height: math.unit(55, "m"),
  22200. default: true
  22201. },
  22202. {
  22203. name: "Macro+",
  22204. height: math.unit(300, "m")
  22205. },
  22206. {
  22207. name: "Macro++",
  22208. height: math.unit(700, "m")
  22209. },
  22210. {
  22211. name: "Macro+++",
  22212. height: math.unit(4500, "m")
  22213. },
  22214. {
  22215. name: "Macro++++",
  22216. height: math.unit(45, "km")
  22217. },
  22218. {
  22219. name: "Macro+++++",
  22220. height: math.unit(1220, "km")
  22221. },
  22222. ]
  22223. ))
  22224. characterMakers.push(() => makeCharacter(
  22225. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22226. {
  22227. front: {
  22228. height: math.unit(2.3, "m"),
  22229. weight: math.unit(304, "kg"),
  22230. name: "Front",
  22231. image: {
  22232. source: "./media/characters/icowom-lee/front.svg",
  22233. extra: 985 / 955,
  22234. bottom: 25.4 / 1012
  22235. }
  22236. },
  22237. fronttentacles: {
  22238. height: math.unit(2.3, "m"),
  22239. weight: math.unit(304, "kg"),
  22240. name: "Front-tentacles",
  22241. image: {
  22242. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22243. extra: 985 / 955,
  22244. bottom: 25.4 / 1012
  22245. }
  22246. },
  22247. back: {
  22248. height: math.unit(2.3, "m"),
  22249. weight: math.unit(304, "kg"),
  22250. name: "Back",
  22251. image: {
  22252. source: "./media/characters/icowom-lee/back.svg",
  22253. extra: 975 / 954,
  22254. bottom: 9.5 / 985
  22255. }
  22256. },
  22257. backtentacles: {
  22258. height: math.unit(2.3, "m"),
  22259. weight: math.unit(304, "kg"),
  22260. name: "Back-tentacles",
  22261. image: {
  22262. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22263. extra: 975 / 954,
  22264. bottom: 9.5 / 985
  22265. }
  22266. },
  22267. frontDressed: {
  22268. height: math.unit(2.3, "m"),
  22269. weight: math.unit(304, "kg"),
  22270. name: "Front (Dressed)",
  22271. image: {
  22272. source: "./media/characters/icowom-lee/front-dressed.svg",
  22273. extra: 3076 / 2933,
  22274. bottom: 51.4 / 3125.1889
  22275. }
  22276. },
  22277. rump: {
  22278. height: math.unit(0.776, "meters"),
  22279. name: "Rump",
  22280. image: {
  22281. source: "./media/characters/icowom-lee/rump.svg"
  22282. }
  22283. },
  22284. genitals: {
  22285. height: math.unit(0.78, "meters"),
  22286. name: "Genitals",
  22287. image: {
  22288. source: "./media/characters/icowom-lee/genitals.svg"
  22289. }
  22290. },
  22291. },
  22292. [
  22293. {
  22294. name: "Normal",
  22295. height: math.unit(2.3, "meters"),
  22296. default: true
  22297. },
  22298. {
  22299. name: "Macro",
  22300. height: math.unit(94, "meters"),
  22301. default: true
  22302. },
  22303. ]
  22304. ))
  22305. characterMakers.push(() => makeCharacter(
  22306. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22307. {
  22308. front: {
  22309. height: math.unit(22, "meters"),
  22310. weight: math.unit(21000, "kg"),
  22311. name: "Front",
  22312. image: {
  22313. source: "./media/characters/shock-diamond/front.svg",
  22314. extra: 2204 / 2053,
  22315. bottom: 65 / 2239.47
  22316. }
  22317. },
  22318. frontNude: {
  22319. height: math.unit(22, "meters"),
  22320. weight: math.unit(21000, "kg"),
  22321. name: "Front (Nude)",
  22322. image: {
  22323. source: "./media/characters/shock-diamond/front-nude.svg",
  22324. extra: 2514 / 2285,
  22325. bottom: 13 / 2527.56
  22326. }
  22327. },
  22328. },
  22329. [
  22330. {
  22331. name: "Normal",
  22332. height: math.unit(3, "meters")
  22333. },
  22334. {
  22335. name: "Macro",
  22336. height: math.unit(22, "meters"),
  22337. default: true
  22338. },
  22339. ]
  22340. ))
  22341. characterMakers.push(() => makeCharacter(
  22342. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22343. {
  22344. front: {
  22345. height: math.unit(5 + 4 / 12, "feet"),
  22346. weight: math.unit(120, "lb"),
  22347. name: "Front",
  22348. image: {
  22349. source: "./media/characters/rory/front.svg",
  22350. extra: 1318/1241,
  22351. bottom: 42/1360
  22352. }
  22353. },
  22354. back: {
  22355. height: math.unit(5 + 4 / 12, "feet"),
  22356. weight: math.unit(120, "lb"),
  22357. name: "Back",
  22358. image: {
  22359. source: "./media/characters/rory/back.svg",
  22360. extra: 1318/1241,
  22361. bottom: 42/1360
  22362. }
  22363. },
  22364. butt: {
  22365. height: math.unit(1.74, "feet"),
  22366. name: "Butt",
  22367. image: {
  22368. source: "./media/characters/rory/butt.svg"
  22369. }
  22370. },
  22371. dick: {
  22372. height: math.unit(1.02, "feet"),
  22373. name: "Dick",
  22374. image: {
  22375. source: "./media/characters/rory/dick.svg"
  22376. }
  22377. },
  22378. paws: {
  22379. height: math.unit(1, "feet"),
  22380. name: "Paws",
  22381. image: {
  22382. source: "./media/characters/rory/paws.svg"
  22383. }
  22384. },
  22385. frontAlt: {
  22386. height: math.unit(5 + 4 / 12, "feet"),
  22387. weight: math.unit(120, "lb"),
  22388. name: "Front (Alt)",
  22389. image: {
  22390. source: "./media/characters/rory/front-alt.svg",
  22391. extra: 589 / 556,
  22392. bottom: 45.7 / 635.76
  22393. }
  22394. },
  22395. frontAltNude: {
  22396. height: math.unit(5 + 4 / 12, "feet"),
  22397. weight: math.unit(120, "lb"),
  22398. name: "Front (Alt, Nude)",
  22399. image: {
  22400. source: "./media/characters/rory/front-alt-nude.svg",
  22401. extra: 589 / 556,
  22402. bottom: 45.7 / 635.76
  22403. }
  22404. },
  22405. side: {
  22406. height: math.unit(5 + 4 / 12, "feet"),
  22407. weight: math.unit(120, "lb"),
  22408. name: "Side",
  22409. image: {
  22410. source: "./media/characters/rory/side.svg",
  22411. extra: 597 / 564,
  22412. bottom: 55 / 653
  22413. }
  22414. },
  22415. backAlt: {
  22416. height: math.unit(5 + 4 / 12, "feet"),
  22417. weight: math.unit(120, "lb"),
  22418. name: "Back (Alt)",
  22419. image: {
  22420. source: "./media/characters/rory/back-alt.svg",
  22421. extra: 620 / 585,
  22422. bottom: 8.86 / 630.43
  22423. }
  22424. },
  22425. dickAlt: {
  22426. height: math.unit(0.86, "feet"),
  22427. name: "Dick (Alt)",
  22428. image: {
  22429. source: "./media/characters/rory/dick-alt.svg"
  22430. }
  22431. },
  22432. },
  22433. [
  22434. {
  22435. name: "Normal",
  22436. height: math.unit(5 + 4 / 12, "feet"),
  22437. default: true
  22438. },
  22439. {
  22440. name: "Macro",
  22441. height: math.unit(100, "feet")
  22442. },
  22443. {
  22444. name: "Macro+",
  22445. height: math.unit(140, "feet")
  22446. },
  22447. {
  22448. name: "Macro++",
  22449. height: math.unit(300, "feet")
  22450. },
  22451. ]
  22452. ))
  22453. characterMakers.push(() => makeCharacter(
  22454. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22455. {
  22456. front: {
  22457. height: math.unit(5 + 9 / 12, "feet"),
  22458. weight: math.unit(190, "lb"),
  22459. name: "Front",
  22460. image: {
  22461. source: "./media/characters/sprisk/front.svg",
  22462. extra: 1225 / 1180,
  22463. bottom: 42.7 / 1266.4
  22464. }
  22465. },
  22466. frontNsfw: {
  22467. height: math.unit(5 + 9 / 12, "feet"),
  22468. weight: math.unit(190, "lb"),
  22469. name: "Front (NSFW)",
  22470. image: {
  22471. source: "./media/characters/sprisk/front-nsfw.svg",
  22472. extra: 1225 / 1180,
  22473. bottom: 42.7 / 1266.4
  22474. }
  22475. },
  22476. back: {
  22477. height: math.unit(5 + 9 / 12, "feet"),
  22478. weight: math.unit(190, "lb"),
  22479. name: "Back",
  22480. image: {
  22481. source: "./media/characters/sprisk/back.svg",
  22482. extra: 1247 / 1200,
  22483. bottom: 5.6 / 1253.04
  22484. }
  22485. },
  22486. },
  22487. [
  22488. {
  22489. name: "Tiny",
  22490. height: math.unit(2, "inches")
  22491. },
  22492. {
  22493. name: "Normal",
  22494. height: math.unit(5 + 9 / 12, "feet"),
  22495. default: true
  22496. },
  22497. {
  22498. name: "Mini Macro",
  22499. height: math.unit(18, "feet")
  22500. },
  22501. {
  22502. name: "Macro",
  22503. height: math.unit(100, "feet")
  22504. },
  22505. {
  22506. name: "MACRO",
  22507. height: math.unit(50, "miles")
  22508. },
  22509. {
  22510. name: "M A C R O",
  22511. height: math.unit(300, "miles")
  22512. },
  22513. ]
  22514. ))
  22515. characterMakers.push(() => makeCharacter(
  22516. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22517. {
  22518. side: {
  22519. height: math.unit(15.6, "meters"),
  22520. weight: math.unit(700000, "kg"),
  22521. name: "Side",
  22522. image: {
  22523. source: "./media/characters/bunsen/side.svg",
  22524. extra: 1644 / 358
  22525. }
  22526. },
  22527. foot: {
  22528. height: math.unit(1.611 * 1644 / 358, "meter"),
  22529. name: "Foot",
  22530. image: {
  22531. source: "./media/characters/bunsen/foot.svg"
  22532. }
  22533. },
  22534. },
  22535. [
  22536. {
  22537. name: "Small",
  22538. height: math.unit(10, "feet")
  22539. },
  22540. {
  22541. name: "Normal",
  22542. height: math.unit(15.6, "meters"),
  22543. default: true
  22544. },
  22545. ]
  22546. ))
  22547. characterMakers.push(() => makeCharacter(
  22548. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22549. {
  22550. front: {
  22551. height: math.unit(4 + 11 / 12, "feet"),
  22552. weight: math.unit(140, "lb"),
  22553. name: "Front",
  22554. image: {
  22555. source: "./media/characters/sesh/front.svg",
  22556. extra: 3420 / 3231,
  22557. bottom: 72 / 3949.5
  22558. }
  22559. },
  22560. },
  22561. [
  22562. {
  22563. name: "Normal",
  22564. height: math.unit(4 + 11 / 12, "feet")
  22565. },
  22566. {
  22567. name: "Grown",
  22568. height: math.unit(15, "feet"),
  22569. default: true
  22570. },
  22571. {
  22572. name: "Macro",
  22573. height: math.unit(1500, "feet")
  22574. },
  22575. {
  22576. name: "Megamacro",
  22577. height: math.unit(30, "miles")
  22578. },
  22579. {
  22580. name: "Continental",
  22581. height: math.unit(3000, "miles")
  22582. },
  22583. {
  22584. name: "Gravity Mass",
  22585. height: math.unit(300000, "miles")
  22586. },
  22587. {
  22588. name: "Planet Buster",
  22589. height: math.unit(30000000, "miles")
  22590. },
  22591. {
  22592. name: "Big",
  22593. height: math.unit(3000000000, "miles")
  22594. },
  22595. ]
  22596. ))
  22597. characterMakers.push(() => makeCharacter(
  22598. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22599. {
  22600. front: {
  22601. height: math.unit(9, "feet"),
  22602. weight: math.unit(350, "lb"),
  22603. name: "Front",
  22604. image: {
  22605. source: "./media/characters/pepper/front.svg",
  22606. extra: 1448 / 1312,
  22607. bottom: 9.4 / 1457.88
  22608. }
  22609. },
  22610. back: {
  22611. height: math.unit(9, "feet"),
  22612. weight: math.unit(350, "lb"),
  22613. name: "Back",
  22614. image: {
  22615. source: "./media/characters/pepper/back.svg",
  22616. extra: 1423 / 1300,
  22617. bottom: 4.6 / 1429
  22618. }
  22619. },
  22620. maw: {
  22621. height: math.unit(0.932, "feet"),
  22622. name: "Maw",
  22623. image: {
  22624. source: "./media/characters/pepper/maw.svg"
  22625. }
  22626. },
  22627. },
  22628. [
  22629. {
  22630. name: "Normal",
  22631. height: math.unit(9, "feet"),
  22632. default: true
  22633. },
  22634. ]
  22635. ))
  22636. characterMakers.push(() => makeCharacter(
  22637. { name: "Maelstrom", species: ["monster"], 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/maelstrom/front.svg",
  22645. extra: 2100 / 1883,
  22646. bottom: 94 / 2196.7
  22647. }
  22648. },
  22649. },
  22650. [
  22651. {
  22652. name: "Less Kaiju",
  22653. height: math.unit(200, "feet")
  22654. },
  22655. {
  22656. name: "Kaiju",
  22657. height: math.unit(400, "feet"),
  22658. default: true
  22659. },
  22660. {
  22661. name: "Kaiju-er",
  22662. height: math.unit(600, "feet")
  22663. },
  22664. ]
  22665. ))
  22666. characterMakers.push(() => makeCharacter(
  22667. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22668. {
  22669. front: {
  22670. height: math.unit(6 + 5 / 12, "feet"),
  22671. weight: math.unit(180, "lb"),
  22672. name: "Front",
  22673. image: {
  22674. source: "./media/characters/lexir/front.svg",
  22675. extra: 180 / 172,
  22676. bottom: 12 / 192
  22677. }
  22678. },
  22679. back: {
  22680. height: math.unit(6 + 5 / 12, "feet"),
  22681. weight: math.unit(180, "lb"),
  22682. name: "Back",
  22683. image: {
  22684. source: "./media/characters/lexir/back.svg",
  22685. extra: 183.84 / 175.5,
  22686. bottom: 3.1 / 187
  22687. }
  22688. },
  22689. },
  22690. [
  22691. {
  22692. name: "Very Smal",
  22693. height: math.unit(1, "nm")
  22694. },
  22695. {
  22696. name: "Normal",
  22697. height: math.unit(6 + 5 / 12, "feet"),
  22698. default: true
  22699. },
  22700. {
  22701. name: "Macro",
  22702. height: math.unit(1, "mile")
  22703. },
  22704. {
  22705. name: "Megamacro",
  22706. height: math.unit(50, "miles")
  22707. },
  22708. ]
  22709. ))
  22710. characterMakers.push(() => makeCharacter(
  22711. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22712. {
  22713. front: {
  22714. height: math.unit(1.5, "meters"),
  22715. weight: math.unit(100, "lb"),
  22716. name: "Front",
  22717. image: {
  22718. source: "./media/characters/maksio/front.svg",
  22719. extra: 1549 / 1531,
  22720. bottom: 123.7 / 1674.5429
  22721. }
  22722. },
  22723. back: {
  22724. height: math.unit(1.5, "meters"),
  22725. weight: math.unit(100, "lb"),
  22726. name: "Back",
  22727. image: {
  22728. source: "./media/characters/maksio/back.svg",
  22729. extra: 1541 / 1509,
  22730. bottom: 97 / 1639
  22731. }
  22732. },
  22733. hand: {
  22734. height: math.unit(0.621, "feet"),
  22735. name: "Hand",
  22736. image: {
  22737. source: "./media/characters/maksio/hand.svg"
  22738. }
  22739. },
  22740. foot: {
  22741. height: math.unit(1.611, "feet"),
  22742. name: "Foot",
  22743. image: {
  22744. source: "./media/characters/maksio/foot.svg"
  22745. }
  22746. },
  22747. },
  22748. [
  22749. {
  22750. name: "Shrunken",
  22751. height: math.unit(10, "cm")
  22752. },
  22753. {
  22754. name: "Normal",
  22755. height: math.unit(150, "cm"),
  22756. default: true
  22757. },
  22758. ]
  22759. ))
  22760. characterMakers.push(() => makeCharacter(
  22761. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22762. {
  22763. front: {
  22764. height: math.unit(100, "feet"),
  22765. name: "Front",
  22766. image: {
  22767. source: "./media/characters/erza-bear/front.svg",
  22768. extra: 2449 / 2390,
  22769. bottom: 46 / 2494
  22770. }
  22771. },
  22772. back: {
  22773. height: math.unit(100, "feet"),
  22774. name: "Back",
  22775. image: {
  22776. source: "./media/characters/erza-bear/back.svg",
  22777. extra: 2489 / 2430,
  22778. bottom: 85.4 / 2480
  22779. }
  22780. },
  22781. tail: {
  22782. height: math.unit(42, "feet"),
  22783. name: "Tail",
  22784. image: {
  22785. source: "./media/characters/erza-bear/tail.svg"
  22786. }
  22787. },
  22788. tongue: {
  22789. height: math.unit(8, "feet"),
  22790. name: "Tongue",
  22791. image: {
  22792. source: "./media/characters/erza-bear/tongue.svg"
  22793. }
  22794. },
  22795. dick: {
  22796. height: math.unit(10.5, "feet"),
  22797. name: "Dick",
  22798. image: {
  22799. source: "./media/characters/erza-bear/dick.svg"
  22800. }
  22801. },
  22802. dickVertical: {
  22803. height: math.unit(16.9, "feet"),
  22804. name: "Dick (Vertical)",
  22805. image: {
  22806. source: "./media/characters/erza-bear/dick-vertical.svg"
  22807. }
  22808. },
  22809. },
  22810. [
  22811. {
  22812. name: "Macro",
  22813. height: math.unit(100, "feet"),
  22814. default: true
  22815. },
  22816. ]
  22817. ))
  22818. characterMakers.push(() => makeCharacter(
  22819. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22820. {
  22821. front: {
  22822. height: math.unit(172, "cm"),
  22823. weight: math.unit(73, "kg"),
  22824. name: "Front",
  22825. image: {
  22826. source: "./media/characters/violet-flor/front.svg",
  22827. extra: 1530 / 1442,
  22828. bottom: 61.9 / 1588.8
  22829. }
  22830. },
  22831. back: {
  22832. height: math.unit(180, "cm"),
  22833. weight: math.unit(73, "kg"),
  22834. name: "Back",
  22835. image: {
  22836. source: "./media/characters/violet-flor/back.svg",
  22837. extra: 1692 / 1630,
  22838. bottom: 20 / 1712
  22839. }
  22840. },
  22841. },
  22842. [
  22843. {
  22844. name: "Normal",
  22845. height: math.unit(172, "cm"),
  22846. default: true
  22847. },
  22848. ]
  22849. ))
  22850. characterMakers.push(() => makeCharacter(
  22851. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22852. {
  22853. front: {
  22854. height: math.unit(6, "feet"),
  22855. weight: math.unit(220, "lb"),
  22856. name: "Front",
  22857. image: {
  22858. source: "./media/characters/lynn-rhea/front.svg",
  22859. extra: 310 / 273
  22860. }
  22861. },
  22862. back: {
  22863. height: math.unit(6, "feet"),
  22864. weight: math.unit(220, "lb"),
  22865. name: "Back",
  22866. image: {
  22867. source: "./media/characters/lynn-rhea/back.svg",
  22868. extra: 310 / 273
  22869. }
  22870. },
  22871. dicks: {
  22872. height: math.unit(0.9, "feet"),
  22873. name: "Dicks",
  22874. image: {
  22875. source: "./media/characters/lynn-rhea/dicks.svg"
  22876. }
  22877. },
  22878. slit: {
  22879. height: math.unit(0.4, "feet"),
  22880. name: "Slit",
  22881. image: {
  22882. source: "./media/characters/lynn-rhea/slit.svg"
  22883. }
  22884. },
  22885. },
  22886. [
  22887. {
  22888. name: "Micro",
  22889. height: math.unit(1, "inch")
  22890. },
  22891. {
  22892. name: "Macro",
  22893. height: math.unit(60, "feet"),
  22894. default: true
  22895. },
  22896. {
  22897. name: "Megamacro",
  22898. height: math.unit(2, "miles")
  22899. },
  22900. {
  22901. name: "Gigamacro",
  22902. height: math.unit(3, "earths")
  22903. },
  22904. {
  22905. name: "Galactic",
  22906. height: math.unit(0.8, "galaxies")
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22912. {
  22913. front: {
  22914. height: math.unit(1600, "feet"),
  22915. weight: math.unit(85758785169, "kg"),
  22916. name: "Front",
  22917. image: {
  22918. source: "./media/characters/valathos/front.svg",
  22919. extra: 1451 / 1339
  22920. }
  22921. },
  22922. },
  22923. [
  22924. {
  22925. name: "Macro",
  22926. height: math.unit(1600, "feet"),
  22927. default: true
  22928. },
  22929. ]
  22930. ))
  22931. characterMakers.push(() => makeCharacter(
  22932. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22933. {
  22934. front: {
  22935. height: math.unit(7 + 5 / 12, "feet"),
  22936. weight: math.unit(300, "lb"),
  22937. name: "Front",
  22938. image: {
  22939. source: "./media/characters/azula/front.svg",
  22940. extra: 3208 / 2880,
  22941. bottom: 80.2 / 3277
  22942. }
  22943. },
  22944. back: {
  22945. height: math.unit(7 + 5 / 12, "feet"),
  22946. weight: math.unit(300, "lb"),
  22947. name: "Back",
  22948. image: {
  22949. source: "./media/characters/azula/back.svg",
  22950. extra: 3169 / 2822,
  22951. bottom: 150.6 / 3321
  22952. }
  22953. },
  22954. },
  22955. [
  22956. {
  22957. name: "Normal",
  22958. height: math.unit(7 + 5 / 12, "feet"),
  22959. default: true
  22960. },
  22961. {
  22962. name: "Big",
  22963. height: math.unit(20, "feet")
  22964. },
  22965. ]
  22966. ))
  22967. characterMakers.push(() => makeCharacter(
  22968. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22969. {
  22970. front: {
  22971. height: math.unit(5 + 1 / 12, "feet"),
  22972. weight: math.unit(110, "lb"),
  22973. name: "Front",
  22974. image: {
  22975. source: "./media/characters/rupert/front.svg",
  22976. extra: 1549 / 1495,
  22977. bottom: 54.2 / 1604.4
  22978. }
  22979. },
  22980. },
  22981. [
  22982. {
  22983. name: "Normal",
  22984. height: math.unit(5 + 1 / 12, "feet"),
  22985. default: true
  22986. },
  22987. ]
  22988. ))
  22989. characterMakers.push(() => makeCharacter(
  22990. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22991. {
  22992. front: {
  22993. height: math.unit(8 + 4 / 12, "feet"),
  22994. weight: math.unit(350, "lb"),
  22995. name: "Front",
  22996. image: {
  22997. source: "./media/characters/sheera-castellar/front.svg",
  22998. extra: 1957 / 1894,
  22999. bottom: 26.97 / 1975.017
  23000. }
  23001. },
  23002. side: {
  23003. height: math.unit(8 + 4 / 12, "feet"),
  23004. weight: math.unit(350, "lb"),
  23005. name: "Side",
  23006. image: {
  23007. source: "./media/characters/sheera-castellar/side.svg",
  23008. extra: 1957 / 1894
  23009. }
  23010. },
  23011. back: {
  23012. height: math.unit(8 + 4 / 12, "feet"),
  23013. weight: math.unit(350, "lb"),
  23014. name: "Back",
  23015. image: {
  23016. source: "./media/characters/sheera-castellar/back.svg",
  23017. extra: 1957 / 1894
  23018. }
  23019. },
  23020. angled: {
  23021. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23022. weight: math.unit(350, "lb"),
  23023. name: "Angled",
  23024. image: {
  23025. source: "./media/characters/sheera-castellar/angled.svg",
  23026. extra: 1807 / 1707,
  23027. bottom: 68 / 1875
  23028. }
  23029. },
  23030. genitals: {
  23031. height: math.unit(2.2, "feet"),
  23032. name: "Genitals",
  23033. image: {
  23034. source: "./media/characters/sheera-castellar/genitals.svg"
  23035. }
  23036. },
  23037. taur: {
  23038. height: math.unit(10 + 6/12, "feet"),
  23039. name: "Taur",
  23040. image: {
  23041. source: "./media/characters/sheera-castellar/taur.svg",
  23042. extra: 2017/1909,
  23043. bottom: 185/2202
  23044. }
  23045. },
  23046. },
  23047. [
  23048. {
  23049. name: "Normal",
  23050. height: math.unit(8 + 4 / 12, "feet")
  23051. },
  23052. {
  23053. name: "Macro",
  23054. height: math.unit(150, "feet"),
  23055. default: true
  23056. },
  23057. {
  23058. name: "Macro+",
  23059. height: math.unit(800, "feet")
  23060. },
  23061. ]
  23062. ))
  23063. characterMakers.push(() => makeCharacter(
  23064. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23065. {
  23066. front: {
  23067. height: math.unit(6, "feet"),
  23068. weight: math.unit(150, "lb"),
  23069. name: "Front",
  23070. image: {
  23071. source: "./media/characters/jaipur/front.svg",
  23072. extra: 3860 / 3731,
  23073. bottom: 287 / 4140
  23074. }
  23075. },
  23076. back: {
  23077. height: math.unit(6, "feet"),
  23078. weight: math.unit(150, "lb"),
  23079. name: "Back",
  23080. image: {
  23081. source: "./media/characters/jaipur/back.svg",
  23082. extra: 4060 / 3930,
  23083. bottom: 151 / 4200
  23084. }
  23085. },
  23086. },
  23087. [
  23088. {
  23089. name: "Normal",
  23090. height: math.unit(1.85, "meters"),
  23091. default: true
  23092. },
  23093. {
  23094. name: "Macro",
  23095. height: math.unit(150, "meters")
  23096. },
  23097. {
  23098. name: "Macro+",
  23099. height: math.unit(0.5, "miles")
  23100. },
  23101. {
  23102. name: "Macro++",
  23103. height: math.unit(2.5, "miles")
  23104. },
  23105. {
  23106. name: "Macro+++",
  23107. height: math.unit(12, "miles")
  23108. },
  23109. {
  23110. name: "Macro++++",
  23111. height: math.unit(120, "miles")
  23112. },
  23113. {
  23114. name: "Macro+++++",
  23115. height: math.unit(1200, "miles")
  23116. },
  23117. ]
  23118. ))
  23119. characterMakers.push(() => makeCharacter(
  23120. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23121. {
  23122. front: {
  23123. height: math.unit(6, "feet"),
  23124. weight: math.unit(150, "lb"),
  23125. name: "Front",
  23126. image: {
  23127. source: "./media/characters/sheila-wolf/front.svg",
  23128. extra: 1931 / 1808,
  23129. bottom: 29.5 / 1960
  23130. }
  23131. },
  23132. dick: {
  23133. height: math.unit(1.464, "feet"),
  23134. name: "Dick",
  23135. image: {
  23136. source: "./media/characters/sheila-wolf/dick.svg"
  23137. }
  23138. },
  23139. muzzle: {
  23140. height: math.unit(0.513, "feet"),
  23141. name: "Muzzle",
  23142. image: {
  23143. source: "./media/characters/sheila-wolf/muzzle.svg"
  23144. }
  23145. },
  23146. },
  23147. [
  23148. {
  23149. name: "Macro",
  23150. height: math.unit(70, "feet"),
  23151. default: true
  23152. },
  23153. ]
  23154. ))
  23155. characterMakers.push(() => makeCharacter(
  23156. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23157. {
  23158. front: {
  23159. height: math.unit(32, "meters"),
  23160. weight: math.unit(300000, "kg"),
  23161. name: "Front",
  23162. image: {
  23163. source: "./media/characters/almor/front.svg",
  23164. extra: 1408 / 1322,
  23165. bottom: 94.6 / 1506.5
  23166. }
  23167. },
  23168. },
  23169. [
  23170. {
  23171. name: "Macro",
  23172. height: math.unit(32, "meters"),
  23173. default: true
  23174. },
  23175. ]
  23176. ))
  23177. characterMakers.push(() => makeCharacter(
  23178. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23179. {
  23180. front: {
  23181. height: math.unit(7, "feet"),
  23182. weight: math.unit(200, "lb"),
  23183. name: "Front",
  23184. image: {
  23185. source: "./media/characters/silver/front.svg",
  23186. extra: 472.1 / 450.5,
  23187. bottom: 26.5 / 499.424
  23188. }
  23189. },
  23190. },
  23191. [
  23192. {
  23193. name: "Normal",
  23194. height: math.unit(7, "feet"),
  23195. default: true
  23196. },
  23197. {
  23198. name: "Macro",
  23199. height: math.unit(800, "feet")
  23200. },
  23201. {
  23202. name: "Megamacro",
  23203. height: math.unit(250, "miles")
  23204. },
  23205. ]
  23206. ))
  23207. characterMakers.push(() => makeCharacter(
  23208. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23209. {
  23210. front: {
  23211. height: math.unit(6, "feet"),
  23212. weight: math.unit(150, "lb"),
  23213. name: "Front",
  23214. image: {
  23215. source: "./media/characters/pliskin/front.svg",
  23216. extra: 1469 / 1359,
  23217. bottom: 70 / 1540
  23218. }
  23219. },
  23220. },
  23221. [
  23222. {
  23223. name: "Micro",
  23224. height: math.unit(3, "inches")
  23225. },
  23226. {
  23227. name: "Normal",
  23228. height: math.unit(5 + 11 / 12, "feet"),
  23229. default: true
  23230. },
  23231. {
  23232. name: "Macro",
  23233. height: math.unit(120, "feet")
  23234. },
  23235. ]
  23236. ))
  23237. characterMakers.push(() => makeCharacter(
  23238. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23239. {
  23240. front: {
  23241. height: math.unit(6, "feet"),
  23242. weight: math.unit(150, "lb"),
  23243. name: "Front",
  23244. image: {
  23245. source: "./media/characters/sammy/front.svg",
  23246. extra: 1193 / 1089,
  23247. bottom: 30.5 / 1226
  23248. }
  23249. },
  23250. },
  23251. [
  23252. {
  23253. name: "Macro",
  23254. height: math.unit(1700, "feet"),
  23255. default: true
  23256. },
  23257. {
  23258. name: "Examacro",
  23259. height: math.unit(2.5e9, "lightyears")
  23260. },
  23261. ]
  23262. ))
  23263. characterMakers.push(() => makeCharacter(
  23264. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23265. {
  23266. front: {
  23267. height: math.unit(21, "meters"),
  23268. weight: math.unit(12, "tonnes"),
  23269. name: "Front",
  23270. image: {
  23271. source: "./media/characters/kuru/front.svg",
  23272. extra: 4301 / 3785,
  23273. bottom: 371.3 / 4691
  23274. }
  23275. },
  23276. },
  23277. [
  23278. {
  23279. name: "Macro",
  23280. height: math.unit(21, "meters"),
  23281. default: true
  23282. },
  23283. ]
  23284. ))
  23285. characterMakers.push(() => makeCharacter(
  23286. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23287. {
  23288. front: {
  23289. height: math.unit(23, "meters"),
  23290. weight: math.unit(12.2, "tonnes"),
  23291. name: "Front",
  23292. image: {
  23293. source: "./media/characters/rakka/front.svg",
  23294. extra: 4670 / 4169,
  23295. bottom: 301 / 4968.7
  23296. }
  23297. },
  23298. },
  23299. [
  23300. {
  23301. name: "Macro",
  23302. height: math.unit(23, "meters"),
  23303. default: true
  23304. },
  23305. ]
  23306. ))
  23307. characterMakers.push(() => makeCharacter(
  23308. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23309. {
  23310. front: {
  23311. height: math.unit(6, "feet"),
  23312. weight: math.unit(150, "lb"),
  23313. name: "Front",
  23314. image: {
  23315. source: "./media/characters/rhys-feline/front.svg",
  23316. extra: 2488 / 2308,
  23317. bottom: 35.67 / 2519.19
  23318. }
  23319. },
  23320. },
  23321. [
  23322. {
  23323. name: "Really Small",
  23324. height: math.unit(1, "nm")
  23325. },
  23326. {
  23327. name: "Micro",
  23328. height: math.unit(4, "inches")
  23329. },
  23330. {
  23331. name: "Normal",
  23332. height: math.unit(4 + 10 / 12, "feet"),
  23333. default: true
  23334. },
  23335. {
  23336. name: "Macro",
  23337. height: math.unit(100, "feet")
  23338. },
  23339. {
  23340. name: "Megamacto",
  23341. height: math.unit(50, "miles")
  23342. },
  23343. ]
  23344. ))
  23345. characterMakers.push(() => makeCharacter(
  23346. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23347. {
  23348. side: {
  23349. height: math.unit(30, "feet"),
  23350. weight: math.unit(35000, "kg"),
  23351. name: "Side",
  23352. image: {
  23353. source: "./media/characters/alydar/side.svg",
  23354. extra: 234 / 222,
  23355. bottom: 6.5 / 241
  23356. }
  23357. },
  23358. front: {
  23359. height: math.unit(30, "feet"),
  23360. weight: math.unit(35000, "kg"),
  23361. name: "Front",
  23362. image: {
  23363. source: "./media/characters/alydar/front.svg",
  23364. extra: 223.37 / 210.2,
  23365. bottom: 22.3 / 246.76
  23366. }
  23367. },
  23368. top: {
  23369. height: math.unit(64.54, "feet"),
  23370. weight: math.unit(35000, "kg"),
  23371. name: "Top",
  23372. image: {
  23373. source: "./media/characters/alydar/top.svg"
  23374. }
  23375. },
  23376. anthro: {
  23377. height: math.unit(30, "feet"),
  23378. weight: math.unit(9000, "kg"),
  23379. name: "Anthro",
  23380. image: {
  23381. source: "./media/characters/alydar/anthro.svg",
  23382. extra: 432 / 421,
  23383. bottom: 7.18 / 440
  23384. }
  23385. },
  23386. maw: {
  23387. height: math.unit(11.693, "feet"),
  23388. name: "Maw",
  23389. image: {
  23390. source: "./media/characters/alydar/maw.svg"
  23391. }
  23392. },
  23393. head: {
  23394. height: math.unit(11.693, "feet"),
  23395. name: "Head",
  23396. image: {
  23397. source: "./media/characters/alydar/head.svg"
  23398. }
  23399. },
  23400. headAlt: {
  23401. height: math.unit(12.861, "feet"),
  23402. name: "Head (Alt)",
  23403. image: {
  23404. source: "./media/characters/alydar/head-alt.svg"
  23405. }
  23406. },
  23407. wing: {
  23408. height: math.unit(20.712, "feet"),
  23409. name: "Wing",
  23410. image: {
  23411. source: "./media/characters/alydar/wing.svg"
  23412. }
  23413. },
  23414. wingFeather: {
  23415. height: math.unit(9.662, "feet"),
  23416. name: "Wing Feather",
  23417. image: {
  23418. source: "./media/characters/alydar/wing-feather.svg"
  23419. }
  23420. },
  23421. countourFeather: {
  23422. height: math.unit(4.154, "feet"),
  23423. name: "Contour Feather",
  23424. image: {
  23425. source: "./media/characters/alydar/contour-feather.svg"
  23426. }
  23427. },
  23428. },
  23429. [
  23430. {
  23431. name: "Diplomatic",
  23432. height: math.unit(13, "feet"),
  23433. default: true
  23434. },
  23435. {
  23436. name: "Small",
  23437. height: math.unit(30, "feet")
  23438. },
  23439. {
  23440. name: "Normal",
  23441. height: math.unit(95, "feet"),
  23442. default: true
  23443. },
  23444. {
  23445. name: "Large",
  23446. height: math.unit(285, "feet")
  23447. },
  23448. {
  23449. name: "Incomprehensible",
  23450. height: math.unit(450, "megameters")
  23451. },
  23452. ]
  23453. ))
  23454. characterMakers.push(() => makeCharacter(
  23455. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23456. {
  23457. side: {
  23458. height: math.unit(11, "feet"),
  23459. weight: math.unit(1750, "kg"),
  23460. name: "Side",
  23461. image: {
  23462. source: "./media/characters/selicia/side.svg",
  23463. extra: 440 / 396,
  23464. bottom: 24.8 / 465.979
  23465. }
  23466. },
  23467. maw: {
  23468. height: math.unit(4.665, "feet"),
  23469. name: "Maw",
  23470. image: {
  23471. source: "./media/characters/selicia/maw.svg"
  23472. }
  23473. },
  23474. },
  23475. [
  23476. {
  23477. name: "Normal",
  23478. height: math.unit(11, "feet"),
  23479. default: true
  23480. },
  23481. ]
  23482. ))
  23483. characterMakers.push(() => makeCharacter(
  23484. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23485. {
  23486. side: {
  23487. height: math.unit(2 + 6 / 12, "feet"),
  23488. weight: math.unit(30, "lb"),
  23489. name: "Side",
  23490. image: {
  23491. source: "./media/characters/layla/side.svg",
  23492. extra: 244 / 188,
  23493. bottom: 18.2 / 262.1
  23494. }
  23495. },
  23496. back: {
  23497. height: math.unit(2 + 6 / 12, "feet"),
  23498. weight: math.unit(30, "lb"),
  23499. name: "Back",
  23500. image: {
  23501. source: "./media/characters/layla/back.svg",
  23502. extra: 308 / 241.5,
  23503. bottom: 8.9 / 316.8
  23504. }
  23505. },
  23506. cumming: {
  23507. height: math.unit(2 + 6 / 12, "feet"),
  23508. weight: math.unit(30, "lb"),
  23509. name: "Cumming",
  23510. image: {
  23511. source: "./media/characters/layla/cumming.svg",
  23512. extra: 342 / 279,
  23513. bottom: 595 / 938
  23514. }
  23515. },
  23516. dickFlaccid: {
  23517. height: math.unit(2.595, "feet"),
  23518. name: "Flaccid Genitals",
  23519. image: {
  23520. source: "./media/characters/layla/dick-flaccid.svg"
  23521. }
  23522. },
  23523. dickErect: {
  23524. height: math.unit(2.359, "feet"),
  23525. name: "Erect Genitals",
  23526. image: {
  23527. source: "./media/characters/layla/dick-erect.svg"
  23528. }
  23529. },
  23530. dragon: {
  23531. height: math.unit(40, "feet"),
  23532. name: "Dragon",
  23533. image: {
  23534. source: "./media/characters/layla/dragon.svg",
  23535. extra: 610/535,
  23536. bottom: 367/977
  23537. }
  23538. },
  23539. taur: {
  23540. height: math.unit(30, "feet"),
  23541. name: "Taur",
  23542. image: {
  23543. source: "./media/characters/layla/taur.svg",
  23544. extra: 1268/1199,
  23545. bottom: 112/1380
  23546. }
  23547. },
  23548. },
  23549. [
  23550. {
  23551. name: "Micro",
  23552. height: math.unit(1, "inch")
  23553. },
  23554. {
  23555. name: "Small",
  23556. height: math.unit(1, "foot")
  23557. },
  23558. {
  23559. name: "Normal",
  23560. height: math.unit(2 + 6 / 12, "feet"),
  23561. default: true
  23562. },
  23563. {
  23564. name: "Macro",
  23565. height: math.unit(200, "feet")
  23566. },
  23567. {
  23568. name: "Megamacro",
  23569. height: math.unit(1000, "miles")
  23570. },
  23571. {
  23572. name: "Planetary",
  23573. height: math.unit(8000, "miles")
  23574. },
  23575. {
  23576. name: "True Layla",
  23577. height: math.unit(200000 * 7, "multiverses")
  23578. },
  23579. ]
  23580. ))
  23581. characterMakers.push(() => makeCharacter(
  23582. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23583. {
  23584. back: {
  23585. height: math.unit(10.5, "feet"),
  23586. weight: math.unit(800, "lb"),
  23587. name: "Back",
  23588. image: {
  23589. source: "./media/characters/knox/back.svg",
  23590. extra: 1486 / 1089,
  23591. bottom: 107 / 1601.4
  23592. }
  23593. },
  23594. side: {
  23595. height: math.unit(10.5, "feet"),
  23596. weight: math.unit(800, "lb"),
  23597. name: "Side",
  23598. image: {
  23599. source: "./media/characters/knox/side.svg",
  23600. extra: 244 / 218,
  23601. bottom: 14 / 260
  23602. }
  23603. },
  23604. },
  23605. [
  23606. {
  23607. name: "Compact",
  23608. height: math.unit(10.5, "feet"),
  23609. default: true
  23610. },
  23611. {
  23612. name: "Dynamax",
  23613. height: math.unit(210, "feet")
  23614. },
  23615. {
  23616. name: "Full Macro",
  23617. height: math.unit(850, "feet")
  23618. },
  23619. ]
  23620. ))
  23621. characterMakers.push(() => makeCharacter(
  23622. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23623. {
  23624. front: {
  23625. height: math.unit(6, "feet"),
  23626. weight: math.unit(152, "lb"),
  23627. name: "Front",
  23628. image: {
  23629. source: "./media/characters/shin-pikachu/front.svg",
  23630. extra: 1854/1602,
  23631. bottom: 166/2020
  23632. }
  23633. },
  23634. hand: {
  23635. height: math.unit(1.055, "feet"),
  23636. name: "Hand",
  23637. image: {
  23638. source: "./media/characters/shin-pikachu/hand.svg"
  23639. }
  23640. },
  23641. foot: {
  23642. height: math.unit(1.1, "feet"),
  23643. name: "Foot",
  23644. image: {
  23645. source: "./media/characters/shin-pikachu/foot.svg"
  23646. }
  23647. },
  23648. collar: {
  23649. height: math.unit(0.386, "feet"),
  23650. name: "Collar",
  23651. image: {
  23652. source: "./media/characters/shin-pikachu/collar.svg"
  23653. }
  23654. },
  23655. },
  23656. [
  23657. {
  23658. name: "Smallest",
  23659. height: math.unit(0.5, "inches")
  23660. },
  23661. {
  23662. name: "Micro",
  23663. height: math.unit(6, "inches")
  23664. },
  23665. {
  23666. name: "Normal",
  23667. height: math.unit(6, "feet"),
  23668. default: true
  23669. },
  23670. {
  23671. name: "Macro",
  23672. height: math.unit(150, "feet")
  23673. },
  23674. ]
  23675. ))
  23676. characterMakers.push(() => makeCharacter(
  23677. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23678. {
  23679. front: {
  23680. height: math.unit(28, "feet"),
  23681. weight: math.unit(10500, "lb"),
  23682. name: "Front",
  23683. image: {
  23684. source: "./media/characters/kayda/front.svg",
  23685. extra: 1536 / 1428,
  23686. bottom: 68.7 / 1603
  23687. }
  23688. },
  23689. back: {
  23690. height: math.unit(28, "feet"),
  23691. weight: math.unit(10500, "lb"),
  23692. name: "Back",
  23693. image: {
  23694. source: "./media/characters/kayda/back.svg",
  23695. extra: 1557 / 1464,
  23696. bottom: 39.5 / 1597.49
  23697. }
  23698. },
  23699. dick: {
  23700. height: math.unit(3.858, "feet"),
  23701. name: "Dick",
  23702. image: {
  23703. source: "./media/characters/kayda/dick.svg"
  23704. }
  23705. },
  23706. },
  23707. [
  23708. {
  23709. name: "Macro",
  23710. height: math.unit(28, "feet"),
  23711. default: true
  23712. },
  23713. ]
  23714. ))
  23715. characterMakers.push(() => makeCharacter(
  23716. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23717. {
  23718. front: {
  23719. height: math.unit(10 + 11 / 12, "feet"),
  23720. weight: math.unit(1400, "lb"),
  23721. name: "Front",
  23722. image: {
  23723. source: "./media/characters/brian/front.svg",
  23724. extra: 737 / 692,
  23725. bottom: 55.4 / 785
  23726. }
  23727. },
  23728. },
  23729. [
  23730. {
  23731. name: "Normal",
  23732. height: math.unit(10 + 11 / 12, "feet"),
  23733. default: true
  23734. },
  23735. ]
  23736. ))
  23737. characterMakers.push(() => makeCharacter(
  23738. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23739. {
  23740. front: {
  23741. height: math.unit(5 + 8 / 12, "feet"),
  23742. weight: math.unit(140, "lb"),
  23743. name: "Front",
  23744. image: {
  23745. source: "./media/characters/khemri/front.svg",
  23746. extra: 4780 / 4059,
  23747. bottom: 80.1 / 4859.25
  23748. }
  23749. },
  23750. },
  23751. [
  23752. {
  23753. name: "Micro",
  23754. height: math.unit(6, "inches")
  23755. },
  23756. {
  23757. name: "Normal",
  23758. height: math.unit(5 + 8 / 12, "feet"),
  23759. default: true
  23760. },
  23761. ]
  23762. ))
  23763. characterMakers.push(() => makeCharacter(
  23764. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23765. {
  23766. front: {
  23767. height: math.unit(13, "feet"),
  23768. weight: math.unit(1700, "lb"),
  23769. name: "Front",
  23770. image: {
  23771. source: "./media/characters/felix-braveheart/front.svg",
  23772. extra: 1222 / 1157,
  23773. bottom: 53.2 / 1280
  23774. }
  23775. },
  23776. back: {
  23777. height: math.unit(13, "feet"),
  23778. weight: math.unit(1700, "lb"),
  23779. name: "Back",
  23780. image: {
  23781. source: "./media/characters/felix-braveheart/back.svg",
  23782. extra: 1277 / 1203,
  23783. bottom: 50.2 / 1327
  23784. }
  23785. },
  23786. feral: {
  23787. height: math.unit(6, "feet"),
  23788. weight: math.unit(400, "lb"),
  23789. name: "Feral",
  23790. image: {
  23791. source: "./media/characters/felix-braveheart/feral.svg",
  23792. extra: 682 / 625,
  23793. bottom: 6.9 / 688
  23794. }
  23795. },
  23796. },
  23797. [
  23798. {
  23799. name: "Normal",
  23800. height: math.unit(13, "feet"),
  23801. default: true
  23802. },
  23803. ]
  23804. ))
  23805. characterMakers.push(() => makeCharacter(
  23806. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23807. {
  23808. side: {
  23809. height: math.unit(5 + 11 / 12, "feet"),
  23810. weight: math.unit(1400, "lb"),
  23811. name: "Side",
  23812. image: {
  23813. source: "./media/characters/shadow-blade/side.svg",
  23814. extra: 1726 / 1267,
  23815. bottom: 58.4 / 1785
  23816. }
  23817. },
  23818. },
  23819. [
  23820. {
  23821. name: "Normal",
  23822. height: math.unit(5 + 11 / 12, "feet"),
  23823. default: true
  23824. },
  23825. ]
  23826. ))
  23827. characterMakers.push(() => makeCharacter(
  23828. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23829. {
  23830. front: {
  23831. height: math.unit(1 + 6 / 12, "feet"),
  23832. weight: math.unit(25, "lb"),
  23833. name: "Front",
  23834. image: {
  23835. source: "./media/characters/karla-halldor/front.svg",
  23836. extra: 1459 / 1383,
  23837. bottom: 12 / 1472
  23838. }
  23839. },
  23840. },
  23841. [
  23842. {
  23843. name: "Normal",
  23844. height: math.unit(1 + 6 / 12, "feet"),
  23845. default: true
  23846. },
  23847. ]
  23848. ))
  23849. characterMakers.push(() => makeCharacter(
  23850. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23851. {
  23852. front: {
  23853. height: math.unit(6 + 2 / 12, "feet"),
  23854. weight: math.unit(160, "lb"),
  23855. name: "Front",
  23856. image: {
  23857. source: "./media/characters/ariam/front.svg",
  23858. extra: 714 / 617,
  23859. bottom: 23.4 / 737,
  23860. }
  23861. },
  23862. squatting: {
  23863. height: math.unit(4.1, "feet"),
  23864. weight: math.unit(160, "lb"),
  23865. name: "Squatting",
  23866. image: {
  23867. source: "./media/characters/ariam/squatting.svg",
  23868. extra: 2617 / 2112,
  23869. bottom: 61.2 / 2681,
  23870. }
  23871. },
  23872. },
  23873. [
  23874. {
  23875. name: "Normal",
  23876. height: math.unit(6 + 2 / 12, "feet"),
  23877. default: true
  23878. },
  23879. {
  23880. name: "Normal+",
  23881. height: math.unit(4, "meters")
  23882. },
  23883. {
  23884. name: "Macro",
  23885. height: math.unit(50, "meters")
  23886. },
  23887. {
  23888. name: "Macro+",
  23889. height: math.unit(100, "meters")
  23890. },
  23891. {
  23892. name: "Megamacro",
  23893. height: math.unit(20, "km")
  23894. },
  23895. ]
  23896. ))
  23897. characterMakers.push(() => makeCharacter(
  23898. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23899. {
  23900. front: {
  23901. height: math.unit(1.67, "meters"),
  23902. weight: math.unit(140, "lb"),
  23903. name: "Front",
  23904. image: {
  23905. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23906. extra: 438 / 410,
  23907. bottom: 0.75 / 439
  23908. }
  23909. },
  23910. },
  23911. [
  23912. {
  23913. name: "Shrunken",
  23914. height: math.unit(7.6, "cm")
  23915. },
  23916. {
  23917. name: "Human Scale",
  23918. height: math.unit(1.67, "meters")
  23919. },
  23920. {
  23921. name: "Wolxi Scale",
  23922. height: math.unit(36.7, "meters"),
  23923. default: true
  23924. },
  23925. ]
  23926. ))
  23927. characterMakers.push(() => makeCharacter(
  23928. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23929. {
  23930. front: {
  23931. height: math.unit(1.73, "meters"),
  23932. weight: math.unit(240, "lb"),
  23933. name: "Front",
  23934. image: {
  23935. source: "./media/characters/izue-two-mothers/front.svg",
  23936. extra: 469 / 437,
  23937. bottom: 1.24 / 470.6
  23938. }
  23939. },
  23940. },
  23941. [
  23942. {
  23943. name: "Shrunken",
  23944. height: math.unit(7.86, "cm")
  23945. },
  23946. {
  23947. name: "Human Scale",
  23948. height: math.unit(1.73, "meters")
  23949. },
  23950. {
  23951. name: "Wolxi Scale",
  23952. height: math.unit(38, "meters"),
  23953. default: true
  23954. },
  23955. ]
  23956. ))
  23957. characterMakers.push(() => makeCharacter(
  23958. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23959. {
  23960. front: {
  23961. height: math.unit(1.55, "meters"),
  23962. weight: math.unit(120, "lb"),
  23963. name: "Front",
  23964. image: {
  23965. source: "./media/characters/teeku-love-shack/front.svg",
  23966. extra: 387 / 362,
  23967. bottom: 1.51 / 388
  23968. }
  23969. },
  23970. },
  23971. [
  23972. {
  23973. name: "Shrunken",
  23974. height: math.unit(7, "cm")
  23975. },
  23976. {
  23977. name: "Human Scale",
  23978. height: math.unit(1.55, "meters")
  23979. },
  23980. {
  23981. name: "Wolxi Scale",
  23982. height: math.unit(34.1, "meters"),
  23983. default: true
  23984. },
  23985. ]
  23986. ))
  23987. characterMakers.push(() => makeCharacter(
  23988. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23989. {
  23990. front: {
  23991. height: math.unit(1.83, "meters"),
  23992. weight: math.unit(135, "lb"),
  23993. name: "Front",
  23994. image: {
  23995. source: "./media/characters/dejma-the-red/front.svg",
  23996. extra: 480 / 458,
  23997. bottom: 1.8 / 482
  23998. }
  23999. },
  24000. },
  24001. [
  24002. {
  24003. name: "Shrunken",
  24004. height: math.unit(8.3, "cm")
  24005. },
  24006. {
  24007. name: "Human Scale",
  24008. height: math.unit(1.83, "meters")
  24009. },
  24010. {
  24011. name: "Wolxi Scale",
  24012. height: math.unit(40, "meters"),
  24013. default: true
  24014. },
  24015. ]
  24016. ))
  24017. characterMakers.push(() => makeCharacter(
  24018. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24019. {
  24020. front: {
  24021. height: math.unit(1.78, "meters"),
  24022. weight: math.unit(65, "kg"),
  24023. name: "Front",
  24024. image: {
  24025. source: "./media/characters/aki/front.svg",
  24026. extra: 452 / 415
  24027. }
  24028. },
  24029. frontNsfw: {
  24030. height: math.unit(1.78, "meters"),
  24031. weight: math.unit(65, "kg"),
  24032. name: "Front (NSFW)",
  24033. image: {
  24034. source: "./media/characters/aki/front-nsfw.svg",
  24035. extra: 452 / 415
  24036. }
  24037. },
  24038. back: {
  24039. height: math.unit(1.78, "meters"),
  24040. weight: math.unit(65, "kg"),
  24041. name: "Back",
  24042. image: {
  24043. source: "./media/characters/aki/back.svg",
  24044. extra: 452 / 415
  24045. }
  24046. },
  24047. rump: {
  24048. height: math.unit(2.05, "feet"),
  24049. name: "Rump",
  24050. image: {
  24051. source: "./media/characters/aki/rump.svg"
  24052. }
  24053. },
  24054. dick: {
  24055. height: math.unit(0.95, "feet"),
  24056. name: "Dick",
  24057. image: {
  24058. source: "./media/characters/aki/dick.svg"
  24059. }
  24060. },
  24061. },
  24062. [
  24063. {
  24064. name: "Micro",
  24065. height: math.unit(15, "cm")
  24066. },
  24067. {
  24068. name: "Normal",
  24069. height: math.unit(178, "cm"),
  24070. default: true
  24071. },
  24072. {
  24073. name: "Macro",
  24074. height: math.unit(214, "m")
  24075. },
  24076. {
  24077. name: "Macro+",
  24078. height: math.unit(534, "m")
  24079. },
  24080. ]
  24081. ))
  24082. characterMakers.push(() => makeCharacter(
  24083. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24084. {
  24085. front: {
  24086. height: math.unit(5 + 5 / 12, "feet"),
  24087. weight: math.unit(120, "lb"),
  24088. name: "Front",
  24089. image: {
  24090. source: "./media/characters/ari/front.svg",
  24091. extra: 714.5 / 682,
  24092. bottom: 8 / 722.5
  24093. }
  24094. },
  24095. },
  24096. [
  24097. {
  24098. name: "Normal",
  24099. height: math.unit(5 + 5 / 12, "feet")
  24100. },
  24101. {
  24102. name: "Macro",
  24103. height: math.unit(100, "feet"),
  24104. default: true
  24105. },
  24106. {
  24107. name: "Megamacro",
  24108. height: math.unit(100, "miles")
  24109. },
  24110. {
  24111. name: "Gigamacro",
  24112. height: math.unit(80000, "miles")
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24118. {
  24119. side: {
  24120. height: math.unit(9, "feet"),
  24121. weight: math.unit(400, "kg"),
  24122. name: "Side",
  24123. image: {
  24124. source: "./media/characters/bolt/side.svg",
  24125. extra: 1126 / 896,
  24126. bottom: 60 / 1187.3,
  24127. }
  24128. },
  24129. },
  24130. [
  24131. {
  24132. name: "Micro",
  24133. height: math.unit(5, "inches")
  24134. },
  24135. {
  24136. name: "Normal",
  24137. height: math.unit(9, "feet"),
  24138. default: true
  24139. },
  24140. {
  24141. name: "Macro",
  24142. height: math.unit(700, "feet")
  24143. },
  24144. {
  24145. name: "Max Size",
  24146. height: math.unit(1.52e22, "yottameters")
  24147. },
  24148. ]
  24149. ))
  24150. characterMakers.push(() => makeCharacter(
  24151. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24152. {
  24153. front: {
  24154. height: math.unit(4.53, "meters"),
  24155. weight: math.unit(3, "tons"),
  24156. name: "Front",
  24157. image: {
  24158. source: "./media/characters/draekon-sylviar/front.svg",
  24159. extra: 1228 / 1068,
  24160. bottom: 41 / 1270
  24161. }
  24162. },
  24163. tail: {
  24164. height: math.unit(1.772, "meter"),
  24165. name: "Tail",
  24166. image: {
  24167. source: "./media/characters/draekon-sylviar/tail.svg"
  24168. }
  24169. },
  24170. head: {
  24171. height: math.unit(1.331, "meter"),
  24172. name: "Head",
  24173. image: {
  24174. source: "./media/characters/draekon-sylviar/head.svg"
  24175. }
  24176. },
  24177. hand: {
  24178. height: math.unit(0.564, "meter"),
  24179. name: "Hand",
  24180. image: {
  24181. source: "./media/characters/draekon-sylviar/hand.svg"
  24182. }
  24183. },
  24184. foot: {
  24185. height: math.unit(0.621, "meter"),
  24186. name: "Foot",
  24187. image: {
  24188. source: "./media/characters/draekon-sylviar/foot.svg",
  24189. bottom: 32 / 324
  24190. }
  24191. },
  24192. dick: {
  24193. height: math.unit(61, "cm"),
  24194. name: "Dick",
  24195. image: {
  24196. source: "./media/characters/draekon-sylviar/dick.svg"
  24197. }
  24198. },
  24199. dickseparated: {
  24200. height: math.unit(61, "cm"),
  24201. name: "Dick-separated",
  24202. image: {
  24203. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24204. }
  24205. },
  24206. },
  24207. [
  24208. {
  24209. name: "Small",
  24210. height: math.unit(4.53 / 2, "meters"),
  24211. default: true
  24212. },
  24213. {
  24214. name: "Normal",
  24215. height: math.unit(4.53, "meters"),
  24216. default: true
  24217. },
  24218. {
  24219. name: "Large",
  24220. height: math.unit(4.53 * 2, "meters"),
  24221. },
  24222. ]
  24223. ))
  24224. characterMakers.push(() => makeCharacter(
  24225. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24226. {
  24227. front: {
  24228. height: math.unit(6 + 2 / 12, "feet"),
  24229. weight: math.unit(180, "lb"),
  24230. name: "Front",
  24231. image: {
  24232. source: "./media/characters/brawler/front.svg",
  24233. extra: 3301 / 3027,
  24234. bottom: 138 / 3439
  24235. }
  24236. },
  24237. },
  24238. [
  24239. {
  24240. name: "Normal",
  24241. height: math.unit(6 + 2 / 12, "feet"),
  24242. default: true
  24243. },
  24244. ]
  24245. ))
  24246. characterMakers.push(() => makeCharacter(
  24247. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24248. {
  24249. front: {
  24250. height: math.unit(11, "feet"),
  24251. weight: math.unit(1000, "lb"),
  24252. name: "Front",
  24253. image: {
  24254. source: "./media/characters/alex/front.svg",
  24255. bottom: 44.5 / 620
  24256. }
  24257. },
  24258. },
  24259. [
  24260. {
  24261. name: "Micro",
  24262. height: math.unit(5, "inches")
  24263. },
  24264. {
  24265. name: "Normal",
  24266. height: math.unit(11, "feet"),
  24267. default: true
  24268. },
  24269. {
  24270. name: "Macro",
  24271. height: math.unit(9.5e9, "feet")
  24272. },
  24273. {
  24274. name: "Max Size",
  24275. height: math.unit(1.4e283, "yottameters")
  24276. },
  24277. ]
  24278. ))
  24279. characterMakers.push(() => makeCharacter(
  24280. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24281. {
  24282. female: {
  24283. height: math.unit(29.9, "m"),
  24284. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24285. name: "Female",
  24286. image: {
  24287. source: "./media/characters/zenari/female.svg",
  24288. extra: 3281.6 / 3217,
  24289. bottom: 72.2 / 3353
  24290. }
  24291. },
  24292. male: {
  24293. height: math.unit(27.7, "m"),
  24294. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24295. name: "Male",
  24296. image: {
  24297. source: "./media/characters/zenari/male.svg",
  24298. extra: 3008 / 2991,
  24299. bottom: 54.6 / 3069
  24300. }
  24301. },
  24302. },
  24303. [
  24304. {
  24305. name: "Macro",
  24306. height: math.unit(29.7, "meters"),
  24307. default: true
  24308. },
  24309. ]
  24310. ))
  24311. characterMakers.push(() => makeCharacter(
  24312. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24313. {
  24314. female: {
  24315. height: math.unit(23.8, "m"),
  24316. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24317. name: "Female",
  24318. image: {
  24319. source: "./media/characters/mactarian/female.svg",
  24320. extra: 2662 / 2569,
  24321. bottom: 73 / 2736
  24322. }
  24323. },
  24324. male: {
  24325. height: math.unit(23.8, "m"),
  24326. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24327. name: "Male",
  24328. image: {
  24329. source: "./media/characters/mactarian/male.svg",
  24330. extra: 2673 / 2600,
  24331. bottom: 76 / 2750
  24332. }
  24333. },
  24334. },
  24335. [
  24336. {
  24337. name: "Macro",
  24338. height: math.unit(23.8, "meters"),
  24339. default: true
  24340. },
  24341. ]
  24342. ))
  24343. characterMakers.push(() => makeCharacter(
  24344. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24345. {
  24346. female: {
  24347. height: math.unit(19.3, "m"),
  24348. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24349. name: "Female",
  24350. image: {
  24351. source: "./media/characters/umok/female.svg",
  24352. extra: 2186 / 2078,
  24353. bottom: 87 / 2277
  24354. }
  24355. },
  24356. male: {
  24357. height: math.unit(19.5, "m"),
  24358. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24359. name: "Male",
  24360. image: {
  24361. source: "./media/characters/umok/male.svg",
  24362. extra: 2233 / 2140,
  24363. bottom: 24.4 / 2258
  24364. }
  24365. },
  24366. },
  24367. [
  24368. {
  24369. name: "Macro",
  24370. height: math.unit(19.3, "meters"),
  24371. default: true
  24372. },
  24373. ]
  24374. ))
  24375. characterMakers.push(() => makeCharacter(
  24376. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24377. {
  24378. female: {
  24379. height: math.unit(26.15, "m"),
  24380. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24381. name: "Female",
  24382. image: {
  24383. source: "./media/characters/joraxian/female.svg",
  24384. extra: 2912 / 2824,
  24385. bottom: 36 / 2956
  24386. }
  24387. },
  24388. male: {
  24389. height: math.unit(25.4, "m"),
  24390. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24391. name: "Male",
  24392. image: {
  24393. source: "./media/characters/joraxian/male.svg",
  24394. extra: 2877 / 2721,
  24395. bottom: 82 / 2967
  24396. }
  24397. },
  24398. },
  24399. [
  24400. {
  24401. name: "Macro",
  24402. height: math.unit(26.15, "meters"),
  24403. default: true
  24404. },
  24405. ]
  24406. ))
  24407. characterMakers.push(() => makeCharacter(
  24408. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24409. {
  24410. female: {
  24411. height: math.unit(21.6, "m"),
  24412. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24413. name: "Female",
  24414. image: {
  24415. source: "./media/characters/sthara/female.svg",
  24416. extra: 2516 / 2347,
  24417. bottom: 21.5 / 2537
  24418. }
  24419. },
  24420. male: {
  24421. height: math.unit(24, "m"),
  24422. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24423. name: "Male",
  24424. image: {
  24425. source: "./media/characters/sthara/male.svg",
  24426. extra: 2732 / 2607,
  24427. bottom: 23 / 2732
  24428. }
  24429. },
  24430. },
  24431. [
  24432. {
  24433. name: "Macro",
  24434. height: math.unit(21.6, "meters"),
  24435. default: true
  24436. },
  24437. ]
  24438. ))
  24439. characterMakers.push(() => makeCharacter(
  24440. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24441. {
  24442. front: {
  24443. height: math.unit(6 + 4 / 12, "feet"),
  24444. weight: math.unit(175, "lb"),
  24445. name: "Front",
  24446. image: {
  24447. source: "./media/characters/luka-bryzant/front.svg",
  24448. extra: 311 / 289,
  24449. bottom: 4 / 315
  24450. }
  24451. },
  24452. back: {
  24453. height: math.unit(6 + 4 / 12, "feet"),
  24454. weight: math.unit(175, "lb"),
  24455. name: "Back",
  24456. image: {
  24457. source: "./media/characters/luka-bryzant/back.svg",
  24458. extra: 311 / 289,
  24459. bottom: 3.8 / 313.7
  24460. }
  24461. },
  24462. },
  24463. [
  24464. {
  24465. name: "Micro",
  24466. height: math.unit(10, "inches")
  24467. },
  24468. {
  24469. name: "Normal",
  24470. height: math.unit(6 + 4 / 12, "feet"),
  24471. default: true
  24472. },
  24473. {
  24474. name: "Large",
  24475. height: math.unit(12, "feet")
  24476. },
  24477. ]
  24478. ))
  24479. characterMakers.push(() => makeCharacter(
  24480. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24481. {
  24482. front: {
  24483. height: math.unit(5 + 7 / 12, "feet"),
  24484. weight: math.unit(185, "lb"),
  24485. name: "Front",
  24486. image: {
  24487. source: "./media/characters/aman-aquila/front.svg",
  24488. extra: 1013 / 976,
  24489. bottom: 45.6 / 1057
  24490. }
  24491. },
  24492. side: {
  24493. height: math.unit(5 + 7 / 12, "feet"),
  24494. weight: math.unit(185, "lb"),
  24495. name: "Side",
  24496. image: {
  24497. source: "./media/characters/aman-aquila/side.svg",
  24498. extra: 1054 / 1011,
  24499. bottom: 15 / 1070
  24500. }
  24501. },
  24502. back: {
  24503. height: math.unit(5 + 7 / 12, "feet"),
  24504. weight: math.unit(185, "lb"),
  24505. name: "Back",
  24506. image: {
  24507. source: "./media/characters/aman-aquila/back.svg",
  24508. extra: 1026 / 970,
  24509. bottom: 12 / 1039
  24510. }
  24511. },
  24512. head: {
  24513. height: math.unit(1.211, "feet"),
  24514. name: "Head",
  24515. image: {
  24516. source: "./media/characters/aman-aquila/head.svg",
  24517. }
  24518. },
  24519. },
  24520. [
  24521. {
  24522. name: "Minimicro",
  24523. height: math.unit(0.057, "inches")
  24524. },
  24525. {
  24526. name: "Micro",
  24527. height: math.unit(7, "inches")
  24528. },
  24529. {
  24530. name: "Mini",
  24531. height: math.unit(3 + 7 / 12, "feet")
  24532. },
  24533. {
  24534. name: "Normal",
  24535. height: math.unit(5 + 7 / 12, "feet"),
  24536. default: true
  24537. },
  24538. {
  24539. name: "Macro",
  24540. height: math.unit(157 + 7 / 12, "feet")
  24541. },
  24542. {
  24543. name: "Megamacro",
  24544. height: math.unit(1557 + 7 / 12, "feet")
  24545. },
  24546. {
  24547. name: "Gigamacro",
  24548. height: math.unit(15557 + 7 / 12, "feet")
  24549. },
  24550. ]
  24551. ))
  24552. characterMakers.push(() => makeCharacter(
  24553. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24554. {
  24555. front: {
  24556. height: math.unit(3 + 2 / 12, "inches"),
  24557. weight: math.unit(0.3, "ounces"),
  24558. name: "Front",
  24559. image: {
  24560. source: "./media/characters/hiphae/front.svg",
  24561. extra: 1931 / 1683,
  24562. bottom: 24 / 1955
  24563. }
  24564. },
  24565. },
  24566. [
  24567. {
  24568. name: "Normal",
  24569. height: math.unit(3 + 1 / 2, "inches"),
  24570. default: true
  24571. },
  24572. ]
  24573. ))
  24574. characterMakers.push(() => makeCharacter(
  24575. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24576. {
  24577. front: {
  24578. height: math.unit(5 + 10 / 12, "feet"),
  24579. weight: math.unit(165, "lb"),
  24580. name: "Front",
  24581. image: {
  24582. source: "./media/characters/nicky/front.svg",
  24583. extra: 3144 / 2886,
  24584. bottom: 45.6 / 3192
  24585. }
  24586. },
  24587. back: {
  24588. height: math.unit(5 + 10 / 12, "feet"),
  24589. weight: math.unit(165, "lb"),
  24590. name: "Back",
  24591. image: {
  24592. source: "./media/characters/nicky/back.svg",
  24593. extra: 3055 / 2804,
  24594. bottom: 28.4 / 3087
  24595. }
  24596. },
  24597. frontclothed: {
  24598. height: math.unit(5 + 10 / 12, "feet"),
  24599. weight: math.unit(165, "lb"),
  24600. name: "Front-clothed",
  24601. image: {
  24602. source: "./media/characters/nicky/front-clothed.svg",
  24603. extra: 3184.9 / 2926.9,
  24604. bottom: 86.5 / 3239.9
  24605. }
  24606. },
  24607. foot: {
  24608. height: math.unit(1.16, "feet"),
  24609. name: "Foot",
  24610. image: {
  24611. source: "./media/characters/nicky/foot.svg"
  24612. }
  24613. },
  24614. feet: {
  24615. height: math.unit(1.34, "feet"),
  24616. name: "Feet",
  24617. image: {
  24618. source: "./media/characters/nicky/feet.svg"
  24619. }
  24620. },
  24621. maw: {
  24622. height: math.unit(0.9, "feet"),
  24623. name: "Maw",
  24624. image: {
  24625. source: "./media/characters/nicky/maw.svg"
  24626. }
  24627. },
  24628. },
  24629. [
  24630. {
  24631. name: "Normal",
  24632. height: math.unit(5 + 10 / 12, "feet"),
  24633. default: true
  24634. },
  24635. {
  24636. name: "Macro",
  24637. height: math.unit(60, "feet")
  24638. },
  24639. {
  24640. name: "Megamacro",
  24641. height: math.unit(1, "mile")
  24642. },
  24643. ]
  24644. ))
  24645. characterMakers.push(() => makeCharacter(
  24646. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24647. {
  24648. side: {
  24649. height: math.unit(10, "feet"),
  24650. weight: math.unit(600, "lb"),
  24651. name: "Side",
  24652. image: {
  24653. source: "./media/characters/blair/side.svg",
  24654. bottom: 16.6 / 475,
  24655. extra: 458 / 431
  24656. }
  24657. },
  24658. },
  24659. [
  24660. {
  24661. name: "Micro",
  24662. height: math.unit(8, "inches")
  24663. },
  24664. {
  24665. name: "Normal",
  24666. height: math.unit(10, "feet"),
  24667. default: true
  24668. },
  24669. {
  24670. name: "Macro",
  24671. height: math.unit(180, "feet")
  24672. },
  24673. ]
  24674. ))
  24675. characterMakers.push(() => makeCharacter(
  24676. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24677. {
  24678. front: {
  24679. height: math.unit(5 + 4 / 12, "feet"),
  24680. weight: math.unit(125, "lb"),
  24681. name: "Front",
  24682. image: {
  24683. source: "./media/characters/fisher/front.svg",
  24684. extra: 444 / 390,
  24685. bottom: 2 / 444.8
  24686. }
  24687. },
  24688. },
  24689. [
  24690. {
  24691. name: "Micro",
  24692. height: math.unit(4, "inches")
  24693. },
  24694. {
  24695. name: "Normal",
  24696. height: math.unit(5 + 4 / 12, "feet"),
  24697. default: true
  24698. },
  24699. {
  24700. name: "Macro",
  24701. height: math.unit(100, "feet")
  24702. },
  24703. ]
  24704. ))
  24705. characterMakers.push(() => makeCharacter(
  24706. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24707. {
  24708. front: {
  24709. height: math.unit(6.71, "feet"),
  24710. weight: math.unit(200, "lb"),
  24711. capacity: math.unit(1000000, "people"),
  24712. name: "Front",
  24713. image: {
  24714. source: "./media/characters/gliss/front.svg",
  24715. extra: 2347 / 2231,
  24716. bottom: 113 / 2462
  24717. }
  24718. },
  24719. hammerspaceSize: {
  24720. height: math.unit(6.71 * 717, "feet"),
  24721. weight: math.unit(200, "lb"),
  24722. capacity: math.unit(1000000, "people"),
  24723. name: "Hammerspace Size",
  24724. image: {
  24725. source: "./media/characters/gliss/front.svg",
  24726. extra: 2347 / 2231,
  24727. bottom: 113 / 2462
  24728. }
  24729. },
  24730. },
  24731. [
  24732. {
  24733. name: "Normal",
  24734. height: math.unit(6.71, "feet"),
  24735. default: true
  24736. },
  24737. ]
  24738. ))
  24739. characterMakers.push(() => makeCharacter(
  24740. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24741. {
  24742. side: {
  24743. height: math.unit(1.44, "m"),
  24744. weight: math.unit(80, "kg"),
  24745. name: "Side",
  24746. image: {
  24747. source: "./media/characters/dune-anderson/side.svg",
  24748. bottom: 49 / 1426
  24749. }
  24750. },
  24751. },
  24752. [
  24753. {
  24754. name: "Wolf-sized",
  24755. height: math.unit(1.44, "meters")
  24756. },
  24757. {
  24758. name: "Normal",
  24759. height: math.unit(5.05, "meters"),
  24760. default: true
  24761. },
  24762. {
  24763. name: "Big",
  24764. height: math.unit(14.4, "meters")
  24765. },
  24766. {
  24767. name: "Huge",
  24768. height: math.unit(144, "meters")
  24769. },
  24770. ]
  24771. ))
  24772. characterMakers.push(() => makeCharacter(
  24773. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24774. {
  24775. front: {
  24776. height: math.unit(7, "feet"),
  24777. weight: math.unit(425, "lb"),
  24778. name: "Front",
  24779. image: {
  24780. source: "./media/characters/hind/front.svg",
  24781. extra: 2091 / 1860,
  24782. bottom: 129 / 2220
  24783. }
  24784. },
  24785. back: {
  24786. height: math.unit(7, "feet"),
  24787. weight: math.unit(425, "lb"),
  24788. name: "Back",
  24789. image: {
  24790. source: "./media/characters/hind/back.svg",
  24791. extra: 2091 / 1860,
  24792. bottom: 24.6 / 2309
  24793. }
  24794. },
  24795. tail: {
  24796. height: math.unit(2.8, "feet"),
  24797. name: "Tail",
  24798. image: {
  24799. source: "./media/characters/hind/tail.svg"
  24800. }
  24801. },
  24802. head: {
  24803. height: math.unit(2.55, "feet"),
  24804. name: "Head",
  24805. image: {
  24806. source: "./media/characters/hind/head.svg"
  24807. }
  24808. },
  24809. },
  24810. [
  24811. {
  24812. name: "XS",
  24813. height: math.unit(0.7, "feet")
  24814. },
  24815. {
  24816. name: "Normal",
  24817. height: math.unit(7, "feet"),
  24818. default: true
  24819. },
  24820. {
  24821. name: "XL",
  24822. height: math.unit(70, "feet")
  24823. },
  24824. ]
  24825. ))
  24826. characterMakers.push(() => makeCharacter(
  24827. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  24828. {
  24829. front: {
  24830. height: math.unit(6, "feet"),
  24831. weight: math.unit(150, "lb"),
  24832. name: "Front",
  24833. image: {
  24834. source: "./media/characters/tharquench-sizestealer/front.svg",
  24835. extra: 2318 / 2063,
  24836. bottom: 93.4 / 2410
  24837. }
  24838. },
  24839. },
  24840. [
  24841. {
  24842. name: "Nano",
  24843. height: math.unit(1, "mm")
  24844. },
  24845. {
  24846. name: "Micro",
  24847. height: math.unit(1, "cm")
  24848. },
  24849. {
  24850. name: "Normal",
  24851. height: math.unit(2.1, "meters"),
  24852. default: true
  24853. },
  24854. ]
  24855. ))
  24856. characterMakers.push(() => makeCharacter(
  24857. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24858. {
  24859. front: {
  24860. height: math.unit(7 + 5 / 12, "feet"),
  24861. weight: math.unit(357, "lb"),
  24862. name: "Front",
  24863. image: {
  24864. source: "./media/characters/solex-draconov/front.svg",
  24865. extra: 1993 / 1865,
  24866. bottom: 117 / 2111
  24867. }
  24868. },
  24869. },
  24870. [
  24871. {
  24872. name: "Natural Height",
  24873. height: math.unit(7 + 5 / 12, "feet"),
  24874. default: true
  24875. },
  24876. {
  24877. name: "Macro",
  24878. height: math.unit(350, "feet")
  24879. },
  24880. {
  24881. name: "Macro+",
  24882. height: math.unit(1000, "feet")
  24883. },
  24884. {
  24885. name: "Megamacro",
  24886. height: math.unit(20, "km")
  24887. },
  24888. {
  24889. name: "Megamacro+",
  24890. height: math.unit(1000, "km")
  24891. },
  24892. {
  24893. name: "Gigamacro",
  24894. height: math.unit(2.5, "Gm")
  24895. },
  24896. {
  24897. name: "Teramacro",
  24898. height: math.unit(15, "Tm")
  24899. },
  24900. {
  24901. name: "Galactic",
  24902. height: math.unit(30, "Zm")
  24903. },
  24904. {
  24905. name: "Universal",
  24906. height: math.unit(21000, "Ym")
  24907. },
  24908. {
  24909. name: "Omniversal",
  24910. height: math.unit(9.861e50, "Ym")
  24911. },
  24912. {
  24913. name: "Existential",
  24914. height: math.unit(1e300, "meters")
  24915. },
  24916. ]
  24917. ))
  24918. characterMakers.push(() => makeCharacter(
  24919. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24920. {
  24921. side: {
  24922. height: math.unit(25, "feet"),
  24923. weight: math.unit(90000, "lb"),
  24924. name: "Side",
  24925. image: {
  24926. source: "./media/characters/mandarax/side.svg",
  24927. extra: 614 / 332,
  24928. bottom: 55 / 630
  24929. }
  24930. },
  24931. head: {
  24932. height: math.unit(11.4, "feet"),
  24933. name: "Head",
  24934. image: {
  24935. source: "./media/characters/mandarax/head.svg"
  24936. }
  24937. },
  24938. belly: {
  24939. height: math.unit(33, "feet"),
  24940. name: "Belly",
  24941. capacity: math.unit(500, "people"),
  24942. image: {
  24943. source: "./media/characters/mandarax/belly.svg"
  24944. }
  24945. },
  24946. dick: {
  24947. height: math.unit(8.46, "feet"),
  24948. name: "Dick",
  24949. image: {
  24950. source: "./media/characters/mandarax/dick.svg"
  24951. }
  24952. },
  24953. top: {
  24954. height: math.unit(28, "meters"),
  24955. name: "Top",
  24956. image: {
  24957. source: "./media/characters/mandarax/top.svg"
  24958. }
  24959. },
  24960. },
  24961. [
  24962. {
  24963. name: "Normal",
  24964. height: math.unit(25, "feet"),
  24965. default: true
  24966. },
  24967. ]
  24968. ))
  24969. characterMakers.push(() => makeCharacter(
  24970. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24971. {
  24972. front: {
  24973. height: math.unit(5, "feet"),
  24974. weight: math.unit(90, "lb"),
  24975. name: "Front",
  24976. image: {
  24977. source: "./media/characters/pixil/front.svg",
  24978. extra: 2000 / 1618,
  24979. bottom: 12.3 / 2011
  24980. }
  24981. },
  24982. },
  24983. [
  24984. {
  24985. name: "Normal",
  24986. height: math.unit(5, "feet"),
  24987. default: true
  24988. },
  24989. {
  24990. name: "Megamacro",
  24991. height: math.unit(10, "miles"),
  24992. },
  24993. ]
  24994. ))
  24995. characterMakers.push(() => makeCharacter(
  24996. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24997. {
  24998. front: {
  24999. height: math.unit(7 + 2 / 12, "feet"),
  25000. weight: math.unit(200, "lb"),
  25001. name: "Front",
  25002. image: {
  25003. source: "./media/characters/angel/front.svg",
  25004. extra: 1830 / 1737,
  25005. bottom: 22.6 / 1854,
  25006. }
  25007. },
  25008. },
  25009. [
  25010. {
  25011. name: "Normal",
  25012. height: math.unit(7 + 2 / 12, "feet"),
  25013. default: true
  25014. },
  25015. {
  25016. name: "Macro",
  25017. height: math.unit(1000, "feet")
  25018. },
  25019. {
  25020. name: "Megamacro",
  25021. height: math.unit(2, "miles")
  25022. },
  25023. {
  25024. name: "Gigamacro",
  25025. height: math.unit(20, "earths")
  25026. },
  25027. ]
  25028. ))
  25029. characterMakers.push(() => makeCharacter(
  25030. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25031. {
  25032. front: {
  25033. height: math.unit(5, "feet"),
  25034. weight: math.unit(180, "lb"),
  25035. name: "Front",
  25036. image: {
  25037. source: "./media/characters/mekana/front.svg",
  25038. extra: 1671 / 1605,
  25039. bottom: 3.5 / 1691
  25040. }
  25041. },
  25042. side: {
  25043. height: math.unit(5, "feet"),
  25044. weight: math.unit(180, "lb"),
  25045. name: "Side",
  25046. image: {
  25047. source: "./media/characters/mekana/side.svg",
  25048. extra: 1671 / 1605,
  25049. bottom: 3.5 / 1691
  25050. }
  25051. },
  25052. back: {
  25053. height: math.unit(5, "feet"),
  25054. weight: math.unit(180, "lb"),
  25055. name: "Back",
  25056. image: {
  25057. source: "./media/characters/mekana/back.svg",
  25058. extra: 1671 / 1605,
  25059. bottom: 3.5 / 1691
  25060. }
  25061. },
  25062. },
  25063. [
  25064. {
  25065. name: "Normal",
  25066. height: math.unit(5, "feet"),
  25067. default: true
  25068. },
  25069. ]
  25070. ))
  25071. characterMakers.push(() => makeCharacter(
  25072. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25073. {
  25074. front: {
  25075. height: math.unit(4 + 6 / 12, "feet"),
  25076. weight: math.unit(80, "lb"),
  25077. name: "Front",
  25078. image: {
  25079. source: "./media/characters/pixie/front.svg",
  25080. extra: 1924 / 1825,
  25081. bottom: 22.4 / 1946
  25082. }
  25083. },
  25084. },
  25085. [
  25086. {
  25087. name: "Normal",
  25088. height: math.unit(4 + 6 / 12, "feet"),
  25089. default: true
  25090. },
  25091. {
  25092. name: "Macro",
  25093. height: math.unit(40, "feet")
  25094. },
  25095. ]
  25096. ))
  25097. characterMakers.push(() => makeCharacter(
  25098. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25099. {
  25100. front: {
  25101. height: math.unit(2.1, "meters"),
  25102. weight: math.unit(200, "lb"),
  25103. name: "Front",
  25104. image: {
  25105. source: "./media/characters/the-lascivious/front.svg",
  25106. extra: 1 / 0.893,
  25107. bottom: 3.5 / 573.7
  25108. }
  25109. },
  25110. },
  25111. [
  25112. {
  25113. name: "Human Scale",
  25114. height: math.unit(2.1, "meters")
  25115. },
  25116. {
  25117. name: "Wolxi Scale",
  25118. height: math.unit(46.2, "m"),
  25119. default: true
  25120. },
  25121. {
  25122. name: "Boinker of Buildings",
  25123. height: math.unit(10, "km")
  25124. },
  25125. {
  25126. name: "Shagger of Skyscrapers",
  25127. height: math.unit(40, "km")
  25128. },
  25129. {
  25130. name: "Banger of Boroughs",
  25131. height: math.unit(4000, "km")
  25132. },
  25133. {
  25134. name: "Screwer of States",
  25135. height: math.unit(100000, "km")
  25136. },
  25137. {
  25138. name: "Pounder of Planets",
  25139. height: math.unit(2000000, "km")
  25140. },
  25141. ]
  25142. ))
  25143. characterMakers.push(() => makeCharacter(
  25144. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25145. {
  25146. front: {
  25147. height: math.unit(6, "feet"),
  25148. weight: math.unit(150, "lb"),
  25149. name: "Front",
  25150. image: {
  25151. source: "./media/characters/aj/front.svg",
  25152. extra: 2039 / 1562,
  25153. bottom: 40 / 2079
  25154. }
  25155. },
  25156. },
  25157. [
  25158. {
  25159. name: "Normal",
  25160. height: math.unit(11 + 6 / 12, "feet"),
  25161. default: true
  25162. },
  25163. {
  25164. name: "Megamacro",
  25165. height: math.unit(60, "megameters")
  25166. },
  25167. ]
  25168. ))
  25169. characterMakers.push(() => makeCharacter(
  25170. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25171. {
  25172. side: {
  25173. height: math.unit(31 + 8 / 12, "feet"),
  25174. weight: math.unit(75000, "kg"),
  25175. name: "Side",
  25176. image: {
  25177. source: "./media/characters/koros/side.svg",
  25178. extra: 1442 / 1297,
  25179. bottom: 122.7 / 1562
  25180. }
  25181. },
  25182. dicksKingsCrown: {
  25183. height: math.unit(6, "feet"),
  25184. name: "Dicks (King's Crown)",
  25185. image: {
  25186. source: "./media/characters/koros/dicks-kings-crown.svg"
  25187. }
  25188. },
  25189. dicksTailSet: {
  25190. height: math.unit(3, "feet"),
  25191. name: "Dicks (Tail Set)",
  25192. image: {
  25193. source: "./media/characters/koros/dicks-tail-set.svg"
  25194. }
  25195. },
  25196. dickCumming: {
  25197. height: math.unit(7.98, "feet"),
  25198. name: "Dick (Cumming)",
  25199. image: {
  25200. source: "./media/characters/koros/dick-cumming.svg"
  25201. }
  25202. },
  25203. dicksBack: {
  25204. height: math.unit(5.9, "feet"),
  25205. name: "Dicks (Back)",
  25206. image: {
  25207. source: "./media/characters/koros/dicks-back.svg"
  25208. }
  25209. },
  25210. dicksFront: {
  25211. height: math.unit(3.72, "feet"),
  25212. name: "Dicks (Front)",
  25213. image: {
  25214. source: "./media/characters/koros/dicks-front.svg"
  25215. }
  25216. },
  25217. dicksPeeking: {
  25218. height: math.unit(3.0, "feet"),
  25219. name: "Dicks (Peeking)",
  25220. image: {
  25221. source: "./media/characters/koros/dicks-peeking.svg"
  25222. }
  25223. },
  25224. eye: {
  25225. height: math.unit(1.7, "feet"),
  25226. name: "Eye",
  25227. image: {
  25228. source: "./media/characters/koros/eye.svg"
  25229. }
  25230. },
  25231. headFront: {
  25232. height: math.unit(11.69, "feet"),
  25233. name: "Head (Front)",
  25234. image: {
  25235. source: "./media/characters/koros/head-front.svg"
  25236. }
  25237. },
  25238. headSide: {
  25239. height: math.unit(14, "feet"),
  25240. name: "Head (Side)",
  25241. image: {
  25242. source: "./media/characters/koros/head-side.svg"
  25243. }
  25244. },
  25245. leg: {
  25246. height: math.unit(17, "feet"),
  25247. name: "Leg",
  25248. image: {
  25249. source: "./media/characters/koros/leg.svg"
  25250. }
  25251. },
  25252. mawSide: {
  25253. height: math.unit(12.8, "feet"),
  25254. name: "Maw (Side)",
  25255. image: {
  25256. source: "./media/characters/koros/maw-side.svg"
  25257. }
  25258. },
  25259. mawSpitting: {
  25260. height: math.unit(17, "feet"),
  25261. name: "Maw (Spitting)",
  25262. image: {
  25263. source: "./media/characters/koros/maw-spitting.svg"
  25264. }
  25265. },
  25266. slit: {
  25267. height: math.unit(2.8, "feet"),
  25268. name: "Slit",
  25269. image: {
  25270. source: "./media/characters/koros/slit.svg"
  25271. }
  25272. },
  25273. stomach: {
  25274. height: math.unit(6.8, "feet"),
  25275. capacity: math.unit(20, "people"),
  25276. name: "Stomach",
  25277. image: {
  25278. source: "./media/characters/koros/stomach.svg"
  25279. }
  25280. },
  25281. wingspanBottom: {
  25282. height: math.unit(114, "feet"),
  25283. name: "Wingspan (Bottom)",
  25284. image: {
  25285. source: "./media/characters/koros/wingspan-bottom.svg"
  25286. }
  25287. },
  25288. wingspanTop: {
  25289. height: math.unit(104, "feet"),
  25290. name: "Wingspan (Top)",
  25291. image: {
  25292. source: "./media/characters/koros/wingspan-top.svg"
  25293. }
  25294. },
  25295. },
  25296. [
  25297. {
  25298. name: "Normal",
  25299. height: math.unit(31 + 8 / 12, "feet"),
  25300. default: true
  25301. },
  25302. ]
  25303. ))
  25304. characterMakers.push(() => makeCharacter(
  25305. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25306. {
  25307. front: {
  25308. height: math.unit(18 + 5 / 12, "feet"),
  25309. weight: math.unit(3750, "kg"),
  25310. name: "Front",
  25311. image: {
  25312. source: "./media/characters/vexx/front.svg",
  25313. extra: 426 / 396,
  25314. bottom: 31.5 / 458
  25315. }
  25316. },
  25317. maw: {
  25318. height: math.unit(6, "feet"),
  25319. name: "Maw",
  25320. image: {
  25321. source: "./media/characters/vexx/maw.svg"
  25322. }
  25323. },
  25324. },
  25325. [
  25326. {
  25327. name: "Normal",
  25328. height: math.unit(18 + 5 / 12, "feet"),
  25329. default: true
  25330. },
  25331. ]
  25332. ))
  25333. characterMakers.push(() => makeCharacter(
  25334. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25335. {
  25336. front: {
  25337. height: math.unit(17 + 6 / 12, "feet"),
  25338. weight: math.unit(150, "lb"),
  25339. name: "Front",
  25340. image: {
  25341. source: "./media/characters/baadra/front.svg",
  25342. extra: 3137 / 2890,
  25343. bottom: 168.4 / 3305
  25344. }
  25345. },
  25346. back: {
  25347. height: math.unit(17 + 6 / 12, "feet"),
  25348. weight: math.unit(150, "lb"),
  25349. name: "Back",
  25350. image: {
  25351. source: "./media/characters/baadra/back.svg",
  25352. extra: 3142 / 2890,
  25353. bottom: 220 / 3371
  25354. }
  25355. },
  25356. head: {
  25357. height: math.unit(5.45, "feet"),
  25358. name: "Head",
  25359. image: {
  25360. source: "./media/characters/baadra/head.svg"
  25361. }
  25362. },
  25363. headAngry: {
  25364. height: math.unit(4.95, "feet"),
  25365. name: "Head (Angry)",
  25366. image: {
  25367. source: "./media/characters/baadra/head-angry.svg"
  25368. }
  25369. },
  25370. headOpen: {
  25371. height: math.unit(6, "feet"),
  25372. name: "Head (Open)",
  25373. image: {
  25374. source: "./media/characters/baadra/head-open.svg"
  25375. }
  25376. },
  25377. },
  25378. [
  25379. {
  25380. name: "Normal",
  25381. height: math.unit(17 + 6 / 12, "feet"),
  25382. default: true
  25383. },
  25384. ]
  25385. ))
  25386. characterMakers.push(() => makeCharacter(
  25387. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25388. {
  25389. front: {
  25390. height: math.unit(7 + 3 / 12, "feet"),
  25391. weight: math.unit(180, "lb"),
  25392. name: "Front",
  25393. image: {
  25394. source: "./media/characters/juri/front.svg",
  25395. extra: 1401 / 1237,
  25396. bottom: 18.5 / 1418
  25397. }
  25398. },
  25399. side: {
  25400. height: math.unit(7 + 3 / 12, "feet"),
  25401. weight: math.unit(180, "lb"),
  25402. name: "Side",
  25403. image: {
  25404. source: "./media/characters/juri/side.svg",
  25405. extra: 1424 / 1242,
  25406. bottom: 18.5 / 1447
  25407. }
  25408. },
  25409. sitting: {
  25410. height: math.unit(6, "feet"),
  25411. weight: math.unit(180, "lb"),
  25412. name: "Sitting",
  25413. image: {
  25414. source: "./media/characters/juri/sitting.svg",
  25415. extra: 1270 / 1143,
  25416. bottom: 100 / 1343
  25417. }
  25418. },
  25419. back: {
  25420. height: math.unit(7 + 3 / 12, "feet"),
  25421. weight: math.unit(180, "lb"),
  25422. name: "Back",
  25423. image: {
  25424. source: "./media/characters/juri/back.svg",
  25425. extra: 1377 / 1240,
  25426. bottom: 23.7 / 1405
  25427. }
  25428. },
  25429. maw: {
  25430. height: math.unit(2.8, "feet"),
  25431. name: "Maw",
  25432. image: {
  25433. source: "./media/characters/juri/maw.svg"
  25434. }
  25435. },
  25436. stomach: {
  25437. height: math.unit(0.89, "feet"),
  25438. capacity: math.unit(4, "liters"),
  25439. name: "Stomach",
  25440. image: {
  25441. source: "./media/characters/juri/stomach.svg"
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Normal",
  25448. height: math.unit(7 + 3 / 12, "feet"),
  25449. default: true
  25450. },
  25451. ]
  25452. ))
  25453. characterMakers.push(() => makeCharacter(
  25454. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25455. {
  25456. fox: {
  25457. height: math.unit(5 + 6 / 12, "feet"),
  25458. weight: math.unit(140, "lb"),
  25459. name: "Fox",
  25460. image: {
  25461. source: "./media/characters/maxene-sita/fox.svg",
  25462. extra: 146 / 138,
  25463. bottom: 2.1 / 148.19
  25464. }
  25465. },
  25466. foxLaying: {
  25467. height: math.unit(1.70, "feet"),
  25468. weight: math.unit(140, "lb"),
  25469. name: "Fox (Laying)",
  25470. image: {
  25471. source: "./media/characters/maxene-sita/fox-laying.svg",
  25472. extra: 910 / 572,
  25473. bottom: 71 / 981
  25474. }
  25475. },
  25476. kitsune: {
  25477. height: math.unit(10, "feet"),
  25478. weight: math.unit(800, "lb"),
  25479. name: "Kitsune",
  25480. image: {
  25481. source: "./media/characters/maxene-sita/kitsune.svg",
  25482. extra: 185 / 176,
  25483. bottom: 4.7 / 189.9
  25484. }
  25485. },
  25486. hellhound: {
  25487. height: math.unit(10, "feet"),
  25488. weight: math.unit(700, "lb"),
  25489. name: "Hellhound",
  25490. image: {
  25491. source: "./media/characters/maxene-sita/hellhound.svg",
  25492. extra: 1600 / 1545,
  25493. bottom: 81 / 1681
  25494. }
  25495. },
  25496. },
  25497. [
  25498. {
  25499. name: "Normal",
  25500. height: math.unit(5 + 6 / 12, "feet"),
  25501. default: true
  25502. },
  25503. ]
  25504. ))
  25505. characterMakers.push(() => makeCharacter(
  25506. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25507. {
  25508. front: {
  25509. height: math.unit(3 + 4 / 12, "feet"),
  25510. weight: math.unit(70, "lb"),
  25511. name: "Front",
  25512. image: {
  25513. source: "./media/characters/maia/front.svg",
  25514. extra: 227 / 219.5,
  25515. bottom: 40 / 267
  25516. }
  25517. },
  25518. back: {
  25519. height: math.unit(3 + 4 / 12, "feet"),
  25520. weight: math.unit(70, "lb"),
  25521. name: "Back",
  25522. image: {
  25523. source: "./media/characters/maia/back.svg",
  25524. extra: 237 / 225
  25525. }
  25526. },
  25527. },
  25528. [
  25529. {
  25530. name: "Normal",
  25531. height: math.unit(3 + 4 / 12, "feet"),
  25532. default: true
  25533. },
  25534. ]
  25535. ))
  25536. characterMakers.push(() => makeCharacter(
  25537. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25538. {
  25539. front: {
  25540. height: math.unit(5 + 10 / 12, "feet"),
  25541. weight: math.unit(197, "lb"),
  25542. name: "Front",
  25543. image: {
  25544. source: "./media/characters/jabaro/front.svg",
  25545. extra: 225 / 216,
  25546. bottom: 5.06 / 230
  25547. }
  25548. },
  25549. back: {
  25550. height: math.unit(5 + 10 / 12, "feet"),
  25551. weight: math.unit(197, "lb"),
  25552. name: "Back",
  25553. image: {
  25554. source: "./media/characters/jabaro/back.svg",
  25555. extra: 225 / 219,
  25556. bottom: 1.9 / 227
  25557. }
  25558. },
  25559. },
  25560. [
  25561. {
  25562. name: "Normal",
  25563. height: math.unit(5 + 10 / 12, "feet"),
  25564. default: true
  25565. },
  25566. ]
  25567. ))
  25568. characterMakers.push(() => makeCharacter(
  25569. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25570. {
  25571. front: {
  25572. height: math.unit(5 + 8 / 12, "feet"),
  25573. weight: math.unit(139, "lb"),
  25574. name: "Front",
  25575. image: {
  25576. source: "./media/characters/risa/front.svg",
  25577. extra: 270 / 260,
  25578. bottom: 11.2 / 282
  25579. }
  25580. },
  25581. back: {
  25582. height: math.unit(5 + 8 / 12, "feet"),
  25583. weight: math.unit(139, "lb"),
  25584. name: "Back",
  25585. image: {
  25586. source: "./media/characters/risa/back.svg",
  25587. extra: 264 / 255,
  25588. bottom: 4 / 268
  25589. }
  25590. },
  25591. },
  25592. [
  25593. {
  25594. name: "Normal",
  25595. height: math.unit(5 + 8 / 12, "feet"),
  25596. default: true
  25597. },
  25598. ]
  25599. ))
  25600. characterMakers.push(() => makeCharacter(
  25601. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25602. {
  25603. front: {
  25604. height: math.unit(2 + 11 / 12, "feet"),
  25605. weight: math.unit(30, "lb"),
  25606. name: "Front",
  25607. image: {
  25608. source: "./media/characters/weatley/front.svg",
  25609. bottom: 10.7 / 414,
  25610. extra: 403.5 / 362
  25611. }
  25612. },
  25613. back: {
  25614. height: math.unit(2 + 11 / 12, "feet"),
  25615. weight: math.unit(30, "lb"),
  25616. name: "Back",
  25617. image: {
  25618. source: "./media/characters/weatley/back.svg",
  25619. bottom: 10.7 / 414,
  25620. extra: 403.5 / 362
  25621. }
  25622. },
  25623. },
  25624. [
  25625. {
  25626. name: "Normal",
  25627. height: math.unit(2 + 11 / 12, "feet"),
  25628. default: true
  25629. },
  25630. ]
  25631. ))
  25632. characterMakers.push(() => makeCharacter(
  25633. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25634. {
  25635. front: {
  25636. height: math.unit(5 + 2 / 12, "feet"),
  25637. weight: math.unit(50, "kg"),
  25638. name: "Front",
  25639. image: {
  25640. source: "./media/characters/mercury-crescent/front.svg",
  25641. extra: 1088 / 1033,
  25642. bottom: 18.9 / 1109
  25643. }
  25644. },
  25645. },
  25646. [
  25647. {
  25648. name: "Normal",
  25649. height: math.unit(5 + 2 / 12, "feet"),
  25650. default: true
  25651. },
  25652. ]
  25653. ))
  25654. characterMakers.push(() => makeCharacter(
  25655. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25656. {
  25657. front: {
  25658. height: math.unit(2, "feet"),
  25659. weight: math.unit(15, "kg"),
  25660. name: "Front",
  25661. image: {
  25662. source: "./media/characters/diamond-jones/front.svg",
  25663. extra: 727/723,
  25664. bottom: 46/773
  25665. }
  25666. },
  25667. },
  25668. [
  25669. {
  25670. name: "Normal",
  25671. height: math.unit(2, "feet"),
  25672. default: true
  25673. },
  25674. ]
  25675. ))
  25676. characterMakers.push(() => makeCharacter(
  25677. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25678. {
  25679. front: {
  25680. height: math.unit(3, "feet"),
  25681. weight: math.unit(30, "kg"),
  25682. name: "Front",
  25683. image: {
  25684. source: "./media/characters/sweet-bit/front.svg",
  25685. extra: 675 / 567,
  25686. bottom: 27.7 / 703
  25687. }
  25688. },
  25689. },
  25690. [
  25691. {
  25692. name: "Normal",
  25693. height: math.unit(3, "feet"),
  25694. default: true
  25695. },
  25696. ]
  25697. ))
  25698. characterMakers.push(() => makeCharacter(
  25699. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25700. {
  25701. side: {
  25702. height: math.unit(9.178, "feet"),
  25703. weight: math.unit(500, "lb"),
  25704. name: "Side",
  25705. image: {
  25706. source: "./media/characters/umbrazen/side.svg",
  25707. extra: 1730 / 1473,
  25708. bottom: 34.6 / 1765
  25709. }
  25710. },
  25711. },
  25712. [
  25713. {
  25714. name: "Normal",
  25715. height: math.unit(9.178, "feet"),
  25716. default: true
  25717. },
  25718. ]
  25719. ))
  25720. characterMakers.push(() => makeCharacter(
  25721. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25722. {
  25723. front: {
  25724. height: math.unit(10, "feet"),
  25725. weight: math.unit(750, "lb"),
  25726. name: "Front",
  25727. image: {
  25728. source: "./media/characters/arlist/front.svg",
  25729. extra: 961 / 778,
  25730. bottom: 6.2 / 986
  25731. }
  25732. },
  25733. },
  25734. [
  25735. {
  25736. name: "Normal",
  25737. height: math.unit(10, "feet"),
  25738. default: true
  25739. },
  25740. ]
  25741. ))
  25742. characterMakers.push(() => makeCharacter(
  25743. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25744. {
  25745. front: {
  25746. height: math.unit(5 + 1 / 12, "feet"),
  25747. weight: math.unit(110, "lb"),
  25748. name: "Front",
  25749. image: {
  25750. source: "./media/characters/aradel/front.svg",
  25751. extra: 324 / 303,
  25752. bottom: 3.6 / 329.4
  25753. }
  25754. },
  25755. },
  25756. [
  25757. {
  25758. name: "Normal",
  25759. height: math.unit(5 + 1 / 12, "feet"),
  25760. default: true
  25761. },
  25762. ]
  25763. ))
  25764. characterMakers.push(() => makeCharacter(
  25765. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25766. {
  25767. front: {
  25768. height: math.unit(3 + 8 / 12, "feet"),
  25769. weight: math.unit(50, "lb"),
  25770. name: "Front",
  25771. image: {
  25772. source: "./media/characters/serryn/front.svg",
  25773. extra: 1792 / 1656,
  25774. bottom: 43.5 / 1840
  25775. }
  25776. },
  25777. },
  25778. [
  25779. {
  25780. name: "Normal",
  25781. height: math.unit(3 + 8 / 12, "feet"),
  25782. default: true
  25783. },
  25784. ]
  25785. ))
  25786. characterMakers.push(() => makeCharacter(
  25787. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25788. {
  25789. front: {
  25790. height: math.unit(7 + 10 / 12, "feet"),
  25791. weight: math.unit(255, "lb"),
  25792. name: "Front",
  25793. image: {
  25794. source: "./media/characters/xavier-thyme/front.svg",
  25795. extra: 3733 / 3642,
  25796. bottom: 131 / 3869
  25797. }
  25798. },
  25799. frontRaven: {
  25800. height: math.unit(7 + 10 / 12, "feet"),
  25801. weight: math.unit(255, "lb"),
  25802. name: "Front (Raven)",
  25803. image: {
  25804. source: "./media/characters/xavier-thyme/front-raven.svg",
  25805. extra: 4385 / 3642,
  25806. bottom: 131 / 4517
  25807. }
  25808. },
  25809. },
  25810. [
  25811. {
  25812. name: "Normal",
  25813. height: math.unit(7 + 10 / 12, "feet"),
  25814. default: true
  25815. },
  25816. ]
  25817. ))
  25818. characterMakers.push(() => makeCharacter(
  25819. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25820. {
  25821. front: {
  25822. height: math.unit(1.6, "m"),
  25823. weight: math.unit(50, "kg"),
  25824. name: "Front",
  25825. image: {
  25826. source: "./media/characters/kiki/front.svg",
  25827. extra: 4682 / 3610,
  25828. bottom: 115 / 4777
  25829. }
  25830. },
  25831. },
  25832. [
  25833. {
  25834. name: "Normal",
  25835. height: math.unit(1.6, "meters"),
  25836. default: true
  25837. },
  25838. ]
  25839. ))
  25840. characterMakers.push(() => makeCharacter(
  25841. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25842. {
  25843. front: {
  25844. height: math.unit(50, "m"),
  25845. weight: math.unit(500, "tonnes"),
  25846. name: "Front",
  25847. image: {
  25848. source: "./media/characters/ryoko/front.svg",
  25849. extra: 4632 / 3926,
  25850. bottom: 193 / 4823
  25851. }
  25852. },
  25853. },
  25854. [
  25855. {
  25856. name: "Normal",
  25857. height: math.unit(50, "meters"),
  25858. default: true
  25859. },
  25860. ]
  25861. ))
  25862. characterMakers.push(() => makeCharacter(
  25863. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25864. {
  25865. front: {
  25866. height: math.unit(30, "m"),
  25867. weight: math.unit(22, "tonnes"),
  25868. name: "Front",
  25869. image: {
  25870. source: "./media/characters/elio/front.svg",
  25871. extra: 4582 / 3720,
  25872. bottom: 236 / 4828
  25873. }
  25874. },
  25875. },
  25876. [
  25877. {
  25878. name: "Normal",
  25879. height: math.unit(30, "meters"),
  25880. default: true
  25881. },
  25882. ]
  25883. ))
  25884. characterMakers.push(() => makeCharacter(
  25885. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25886. {
  25887. front: {
  25888. height: math.unit(6 + 3 / 12, "feet"),
  25889. weight: math.unit(120, "lb"),
  25890. name: "Front",
  25891. image: {
  25892. source: "./media/characters/azura/front.svg",
  25893. extra: 1149 / 1135,
  25894. bottom: 45 / 1194
  25895. }
  25896. },
  25897. frontClothed: {
  25898. height: math.unit(6 + 3 / 12, "feet"),
  25899. weight: math.unit(120, "lb"),
  25900. name: "Front (Clothed)",
  25901. image: {
  25902. source: "./media/characters/azura/front-clothed.svg",
  25903. extra: 1149 / 1135,
  25904. bottom: 45 / 1194
  25905. }
  25906. },
  25907. },
  25908. [
  25909. {
  25910. name: "Normal",
  25911. height: math.unit(6 + 3 / 12, "feet"),
  25912. default: true
  25913. },
  25914. {
  25915. name: "Macro",
  25916. height: math.unit(20 + 6 / 12, "feet")
  25917. },
  25918. {
  25919. name: "Megamacro",
  25920. height: math.unit(12, "miles")
  25921. },
  25922. {
  25923. name: "Gigamacro",
  25924. height: math.unit(10000, "miles")
  25925. },
  25926. {
  25927. name: "Teramacro",
  25928. height: math.unit(900000, "miles")
  25929. },
  25930. ]
  25931. ))
  25932. characterMakers.push(() => makeCharacter(
  25933. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25934. {
  25935. front: {
  25936. height: math.unit(12, "feet"),
  25937. weight: math.unit(1, "ton"),
  25938. capacity: math.unit(660000, "gallons"),
  25939. name: "Front",
  25940. image: {
  25941. source: "./media/characters/zeus/front.svg",
  25942. extra: 5005 / 4717,
  25943. bottom: 363 / 5388
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Normal",
  25950. height: math.unit(12, "feet")
  25951. },
  25952. {
  25953. name: "Preferred Size",
  25954. height: math.unit(0.5, "miles"),
  25955. default: true
  25956. },
  25957. {
  25958. name: "Giga Horse",
  25959. height: math.unit(300, "miles")
  25960. },
  25961. {
  25962. name: "Riding Planets",
  25963. height: math.unit(30, "megameters")
  25964. },
  25965. {
  25966. name: "Cosmic Giant",
  25967. height: math.unit(3, "zettameters")
  25968. },
  25969. {
  25970. name: "Breeding God",
  25971. height: math.unit(9.92e22, "yottameters")
  25972. },
  25973. ]
  25974. ))
  25975. characterMakers.push(() => makeCharacter(
  25976. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25977. {
  25978. side: {
  25979. height: math.unit(9, "feet"),
  25980. weight: math.unit(1500, "kg"),
  25981. name: "Side",
  25982. image: {
  25983. source: "./media/characters/fang/side.svg",
  25984. extra: 924 / 866,
  25985. bottom: 47.5 / 972.3
  25986. }
  25987. },
  25988. },
  25989. [
  25990. {
  25991. name: "Normal",
  25992. height: math.unit(9, "feet"),
  25993. default: true
  25994. },
  25995. {
  25996. name: "Macro",
  25997. height: math.unit(75 + 6 / 12, "feet")
  25998. },
  25999. {
  26000. name: "Teramacro",
  26001. height: math.unit(50000, "miles")
  26002. },
  26003. ]
  26004. ))
  26005. characterMakers.push(() => makeCharacter(
  26006. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26007. {
  26008. front: {
  26009. height: math.unit(10, "feet"),
  26010. weight: math.unit(2, "tons"),
  26011. name: "Front",
  26012. image: {
  26013. source: "./media/characters/rekhit/front.svg",
  26014. extra: 2796 / 2590,
  26015. bottom: 225 / 3022
  26016. }
  26017. },
  26018. },
  26019. [
  26020. {
  26021. name: "Normal",
  26022. height: math.unit(10, "feet"),
  26023. default: true
  26024. },
  26025. {
  26026. name: "Macro",
  26027. height: math.unit(500, "feet")
  26028. },
  26029. ]
  26030. ))
  26031. characterMakers.push(() => makeCharacter(
  26032. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26033. {
  26034. front: {
  26035. height: math.unit(7 + 6.451 / 12, "feet"),
  26036. weight: math.unit(310, "lb"),
  26037. name: "Front",
  26038. image: {
  26039. source: "./media/characters/dahlia-verrick/front.svg",
  26040. extra: 1488 / 1365,
  26041. bottom: 6.2 / 1495
  26042. }
  26043. },
  26044. back: {
  26045. height: math.unit(7 + 6.451 / 12, "feet"),
  26046. weight: math.unit(310, "lb"),
  26047. name: "Back",
  26048. image: {
  26049. source: "./media/characters/dahlia-verrick/back.svg",
  26050. extra: 1472 / 1351,
  26051. bottom: 5.28 / 1477
  26052. }
  26053. },
  26054. frontBusiness: {
  26055. height: math.unit(7 + 6.451 / 12, "feet"),
  26056. weight: math.unit(200, "lb"),
  26057. name: "Front (Business)",
  26058. image: {
  26059. source: "./media/characters/dahlia-verrick/front-business.svg",
  26060. extra: 1478 / 1381,
  26061. bottom: 5.5 / 1484
  26062. }
  26063. },
  26064. frontCasual: {
  26065. height: math.unit(7 + 6.451 / 12, "feet"),
  26066. weight: math.unit(200, "lb"),
  26067. name: "Front (Casual)",
  26068. image: {
  26069. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26070. extra: 1478 / 1381,
  26071. bottom: 5.5 / 1484
  26072. }
  26073. },
  26074. },
  26075. [
  26076. {
  26077. name: "Travel-Sized",
  26078. height: math.unit(7.45, "inches")
  26079. },
  26080. {
  26081. name: "Normal",
  26082. height: math.unit(7 + 6.451 / 12, "feet"),
  26083. default: true
  26084. },
  26085. {
  26086. name: "Hitting the Town",
  26087. height: math.unit(37 + 8 / 12, "feet")
  26088. },
  26089. {
  26090. name: "Stomp in the Suburbs",
  26091. height: math.unit(964 + 9.728 / 12, "feet")
  26092. },
  26093. {
  26094. name: "Sit on the City",
  26095. height: math.unit(61747 + 10.592 / 12, "feet")
  26096. },
  26097. {
  26098. name: "Glomp the Globe",
  26099. height: math.unit(252919327 + 4.832 / 12, "feet")
  26100. },
  26101. ]
  26102. ))
  26103. characterMakers.push(() => makeCharacter(
  26104. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26105. {
  26106. front: {
  26107. height: math.unit(6 + 4 / 12, "feet"),
  26108. weight: math.unit(320, "lb"),
  26109. name: "Front",
  26110. image: {
  26111. source: "./media/characters/balina-mahigan/front.svg",
  26112. extra: 447 / 428,
  26113. bottom: 18 / 466
  26114. }
  26115. },
  26116. back: {
  26117. height: math.unit(6 + 4 / 12, "feet"),
  26118. weight: math.unit(320, "lb"),
  26119. name: "Back",
  26120. image: {
  26121. source: "./media/characters/balina-mahigan/back.svg",
  26122. extra: 445 / 428,
  26123. bottom: 4.07 / 448
  26124. }
  26125. },
  26126. arm: {
  26127. height: math.unit(1.88, "feet"),
  26128. name: "Arm",
  26129. image: {
  26130. source: "./media/characters/balina-mahigan/arm.svg"
  26131. }
  26132. },
  26133. backPort: {
  26134. height: math.unit(0.685, "feet"),
  26135. name: "Back Port",
  26136. image: {
  26137. source: "./media/characters/balina-mahigan/back-port.svg"
  26138. }
  26139. },
  26140. hoofpaw: {
  26141. height: math.unit(1.41, "feet"),
  26142. name: "Hoofpaw",
  26143. image: {
  26144. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26145. }
  26146. },
  26147. leftHandBack: {
  26148. height: math.unit(0.938, "feet"),
  26149. name: "Left Hand (Back)",
  26150. image: {
  26151. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26152. }
  26153. },
  26154. leftHandFront: {
  26155. height: math.unit(0.938, "feet"),
  26156. name: "Left Hand (Front)",
  26157. image: {
  26158. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26159. }
  26160. },
  26161. rightHandBack: {
  26162. height: math.unit(0.95, "feet"),
  26163. name: "Right Hand (Back)",
  26164. image: {
  26165. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26166. }
  26167. },
  26168. rightHandFront: {
  26169. height: math.unit(0.95, "feet"),
  26170. name: "Right Hand (Front)",
  26171. image: {
  26172. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26173. }
  26174. },
  26175. },
  26176. [
  26177. {
  26178. name: "Normal",
  26179. height: math.unit(6 + 4 / 12, "feet"),
  26180. default: true
  26181. },
  26182. ]
  26183. ))
  26184. characterMakers.push(() => makeCharacter(
  26185. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26186. {
  26187. front: {
  26188. height: math.unit(6, "feet"),
  26189. weight: math.unit(320, "lb"),
  26190. name: "Front",
  26191. image: {
  26192. source: "./media/characters/balina-mejeri/front.svg",
  26193. extra: 517 / 488,
  26194. bottom: 44.2 / 561
  26195. }
  26196. },
  26197. },
  26198. [
  26199. {
  26200. name: "Normal",
  26201. height: math.unit(6 + 4 / 12, "feet")
  26202. },
  26203. {
  26204. name: "Business",
  26205. height: math.unit(155, "feet"),
  26206. default: true
  26207. },
  26208. ]
  26209. ))
  26210. characterMakers.push(() => makeCharacter(
  26211. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26212. {
  26213. kneeling: {
  26214. height: math.unit(6 + 4 / 12, "feet"),
  26215. weight: math.unit(300 * 20, "lb"),
  26216. name: "Kneeling",
  26217. image: {
  26218. source: "./media/characters/balbarian/kneeling.svg",
  26219. extra: 922 / 862,
  26220. bottom: 42.4 / 965
  26221. }
  26222. },
  26223. },
  26224. [
  26225. {
  26226. name: "Normal",
  26227. height: math.unit(6 + 4 / 12, "feet")
  26228. },
  26229. {
  26230. name: "Treasured",
  26231. height: math.unit(18 + 9 / 12, "feet"),
  26232. default: true
  26233. },
  26234. {
  26235. name: "Macro",
  26236. height: math.unit(900, "feet")
  26237. },
  26238. ]
  26239. ))
  26240. characterMakers.push(() => makeCharacter(
  26241. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26242. {
  26243. front: {
  26244. height: math.unit(6 + 4 / 12, "feet"),
  26245. weight: math.unit(325, "lb"),
  26246. name: "Front",
  26247. image: {
  26248. source: "./media/characters/balina-amarini/front.svg",
  26249. extra: 415 / 403,
  26250. bottom: 19 / 433.4
  26251. }
  26252. },
  26253. back: {
  26254. height: math.unit(6 + 4 / 12, "feet"),
  26255. weight: math.unit(325, "lb"),
  26256. name: "Back",
  26257. image: {
  26258. source: "./media/characters/balina-amarini/back.svg",
  26259. extra: 415 / 403,
  26260. bottom: 13.5 / 432
  26261. }
  26262. },
  26263. overdrive: {
  26264. height: math.unit(6 + 4 / 12, "feet"),
  26265. weight: math.unit(400, "lb"),
  26266. name: "Overdrive",
  26267. image: {
  26268. source: "./media/characters/balina-amarini/overdrive.svg",
  26269. extra: 269 / 259,
  26270. bottom: 12 / 282
  26271. }
  26272. },
  26273. },
  26274. [
  26275. {
  26276. name: "Boom",
  26277. height: math.unit(9 + 10 / 12, "feet"),
  26278. default: true
  26279. },
  26280. {
  26281. name: "Macro",
  26282. height: math.unit(280, "feet")
  26283. },
  26284. ]
  26285. ))
  26286. characterMakers.push(() => makeCharacter(
  26287. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26288. {
  26289. goddess: {
  26290. height: math.unit(600, "feet"),
  26291. weight: math.unit(2000000, "tons"),
  26292. name: "Goddess",
  26293. image: {
  26294. source: "./media/characters/lady-kubwa/goddess.svg",
  26295. extra: 1240.5 / 1223,
  26296. bottom: 22 / 1263
  26297. }
  26298. },
  26299. goddesser: {
  26300. height: math.unit(900, "feet"),
  26301. weight: math.unit(20000000, "lb"),
  26302. name: "Goddess-er",
  26303. image: {
  26304. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26305. extra: 899 / 888,
  26306. bottom: 12.6 / 912
  26307. }
  26308. },
  26309. },
  26310. [
  26311. {
  26312. name: "Macro",
  26313. height: math.unit(600, "feet"),
  26314. default: true
  26315. },
  26316. {
  26317. name: "Megamacro",
  26318. height: math.unit(250, "miles")
  26319. },
  26320. ]
  26321. ))
  26322. characterMakers.push(() => makeCharacter(
  26323. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26324. {
  26325. front: {
  26326. height: math.unit(7 + 7 / 12, "feet"),
  26327. weight: math.unit(250, "lb"),
  26328. name: "Front",
  26329. image: {
  26330. source: "./media/characters/tala-grovehorn/front.svg",
  26331. extra: 2636 / 2525,
  26332. bottom: 147 / 2781
  26333. }
  26334. },
  26335. back: {
  26336. height: math.unit(7 + 7 / 12, "feet"),
  26337. weight: math.unit(250, "lb"),
  26338. name: "Back",
  26339. image: {
  26340. source: "./media/characters/tala-grovehorn/back.svg",
  26341. extra: 2635 / 2539,
  26342. bottom: 100 / 2732.8
  26343. }
  26344. },
  26345. mouth: {
  26346. height: math.unit(1.15, "feet"),
  26347. name: "Mouth",
  26348. image: {
  26349. source: "./media/characters/tala-grovehorn/mouth.svg"
  26350. }
  26351. },
  26352. dick: {
  26353. height: math.unit(2.36, "feet"),
  26354. name: "Dick",
  26355. image: {
  26356. source: "./media/characters/tala-grovehorn/dick.svg"
  26357. }
  26358. },
  26359. slit: {
  26360. height: math.unit(0.61, "feet"),
  26361. name: "Slit",
  26362. image: {
  26363. source: "./media/characters/tala-grovehorn/slit.svg"
  26364. }
  26365. },
  26366. },
  26367. [
  26368. ]
  26369. ))
  26370. characterMakers.push(() => makeCharacter(
  26371. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26372. {
  26373. front: {
  26374. height: math.unit(7 + 7 / 12, "feet"),
  26375. weight: math.unit(225, "lb"),
  26376. name: "Front",
  26377. image: {
  26378. source: "./media/characters/epona/front.svg",
  26379. extra: 2445 / 2290,
  26380. bottom: 251 / 2696
  26381. }
  26382. },
  26383. back: {
  26384. height: math.unit(7 + 7 / 12, "feet"),
  26385. weight: math.unit(225, "lb"),
  26386. name: "Back",
  26387. image: {
  26388. source: "./media/characters/epona/back.svg",
  26389. extra: 2546 / 2408,
  26390. bottom: 44 / 2589
  26391. }
  26392. },
  26393. genitals: {
  26394. height: math.unit(1.5, "feet"),
  26395. name: "Genitals",
  26396. image: {
  26397. source: "./media/characters/epona/genitals.svg"
  26398. }
  26399. },
  26400. },
  26401. [
  26402. {
  26403. name: "Normal",
  26404. height: math.unit(7 + 7 / 12, "feet"),
  26405. default: true
  26406. },
  26407. ]
  26408. ))
  26409. characterMakers.push(() => makeCharacter(
  26410. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26411. {
  26412. front: {
  26413. height: math.unit(7, "feet"),
  26414. weight: math.unit(518, "lb"),
  26415. name: "Front",
  26416. image: {
  26417. source: "./media/characters/avia-bloodbourn/front.svg",
  26418. extra: 1466 / 1350,
  26419. bottom: 65 / 1527
  26420. }
  26421. },
  26422. },
  26423. [
  26424. ]
  26425. ))
  26426. characterMakers.push(() => makeCharacter(
  26427. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26428. {
  26429. front: {
  26430. height: math.unit(9.35, "feet"),
  26431. weight: math.unit(600, "lb"),
  26432. name: "Front",
  26433. image: {
  26434. source: "./media/characters/amera/front.svg",
  26435. extra: 891 / 818,
  26436. bottom: 30 / 922.7
  26437. }
  26438. },
  26439. back: {
  26440. height: math.unit(9.35, "feet"),
  26441. weight: math.unit(600, "lb"),
  26442. name: "Back",
  26443. image: {
  26444. source: "./media/characters/amera/back.svg",
  26445. extra: 876 / 824,
  26446. bottom: 6.8 / 884
  26447. }
  26448. },
  26449. dick: {
  26450. height: math.unit(2.14, "feet"),
  26451. name: "Dick",
  26452. image: {
  26453. source: "./media/characters/amera/dick.svg"
  26454. }
  26455. },
  26456. },
  26457. [
  26458. {
  26459. name: "Normal",
  26460. height: math.unit(9.35, "feet"),
  26461. default: true
  26462. },
  26463. ]
  26464. ))
  26465. characterMakers.push(() => makeCharacter(
  26466. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26467. {
  26468. kneeling: {
  26469. height: math.unit(3 + 4 / 12, "feet"),
  26470. weight: math.unit(90, "lb"),
  26471. name: "Kneeling",
  26472. image: {
  26473. source: "./media/characters/rosewen/kneeling.svg",
  26474. extra: 1835 / 1571,
  26475. bottom: 27.7 / 1862
  26476. }
  26477. },
  26478. },
  26479. [
  26480. {
  26481. name: "Normal",
  26482. height: math.unit(3 + 4 / 12, "feet"),
  26483. default: true
  26484. },
  26485. ]
  26486. ))
  26487. characterMakers.push(() => makeCharacter(
  26488. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26489. {
  26490. front: {
  26491. height: math.unit(5 + 10 / 12, "feet"),
  26492. weight: math.unit(200, "lb"),
  26493. name: "Front",
  26494. image: {
  26495. source: "./media/characters/sabah/front.svg",
  26496. extra: 849 / 763,
  26497. bottom: 33.9 / 881
  26498. }
  26499. },
  26500. },
  26501. [
  26502. {
  26503. name: "Normal",
  26504. height: math.unit(5 + 10 / 12, "feet"),
  26505. default: true
  26506. },
  26507. ]
  26508. ))
  26509. characterMakers.push(() => makeCharacter(
  26510. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26511. {
  26512. front: {
  26513. height: math.unit(3 + 5 / 12, "feet"),
  26514. weight: math.unit(40, "kg"),
  26515. name: "Front",
  26516. image: {
  26517. source: "./media/characters/purple-flame/front.svg",
  26518. extra: 1577 / 1412,
  26519. bottom: 97 / 1694
  26520. }
  26521. },
  26522. frontDressed: {
  26523. height: math.unit(3 + 5 / 12, "feet"),
  26524. weight: math.unit(40, "kg"),
  26525. name: "Front (Dressed)",
  26526. image: {
  26527. source: "./media/characters/purple-flame/front-dressed.svg",
  26528. extra: 1577 / 1412,
  26529. bottom: 97 / 1694
  26530. }
  26531. },
  26532. headphones: {
  26533. height: math.unit(0.85, "feet"),
  26534. name: "Headphones",
  26535. image: {
  26536. source: "./media/characters/purple-flame/headphones.svg"
  26537. }
  26538. },
  26539. },
  26540. [
  26541. {
  26542. name: "Really Small",
  26543. height: math.unit(5, "cm")
  26544. },
  26545. {
  26546. name: "Micro",
  26547. height: math.unit(1 + 5 / 12, "feet")
  26548. },
  26549. {
  26550. name: "Normal",
  26551. height: math.unit(3 + 5 / 12, "feet"),
  26552. default: true
  26553. },
  26554. {
  26555. name: "Minimacro",
  26556. height: math.unit(125, "feet")
  26557. },
  26558. {
  26559. name: "Macro",
  26560. height: math.unit(0.5, "miles")
  26561. },
  26562. {
  26563. name: "Megamacro",
  26564. height: math.unit(50, "miles")
  26565. },
  26566. {
  26567. name: "Gigantic",
  26568. height: math.unit(750, "miles")
  26569. },
  26570. {
  26571. name: "Planetary",
  26572. height: math.unit(15000, "miles")
  26573. },
  26574. ]
  26575. ))
  26576. characterMakers.push(() => makeCharacter(
  26577. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26578. {
  26579. front: {
  26580. height: math.unit(14, "feet"),
  26581. weight: math.unit(959, "lb"),
  26582. name: "Front",
  26583. image: {
  26584. source: "./media/characters/arsenal/front.svg",
  26585. extra: 2357 / 2157,
  26586. bottom: 93 / 2458
  26587. }
  26588. },
  26589. },
  26590. [
  26591. {
  26592. name: "Normal",
  26593. height: math.unit(14, "feet"),
  26594. default: true
  26595. },
  26596. ]
  26597. ))
  26598. characterMakers.push(() => makeCharacter(
  26599. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26600. {
  26601. front: {
  26602. height: math.unit(6, "feet"),
  26603. weight: math.unit(150, "lb"),
  26604. name: "Front",
  26605. image: {
  26606. source: "./media/characters/adira/front.svg",
  26607. extra: 1078 / 1029,
  26608. bottom: 87 / 1166
  26609. }
  26610. },
  26611. },
  26612. [
  26613. {
  26614. name: "Micro",
  26615. height: math.unit(4, "inches"),
  26616. default: true
  26617. },
  26618. {
  26619. name: "Macro",
  26620. height: math.unit(50, "feet")
  26621. },
  26622. ]
  26623. ))
  26624. characterMakers.push(() => makeCharacter(
  26625. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26626. {
  26627. front: {
  26628. height: math.unit(16, "feet"),
  26629. weight: math.unit(1000, "lb"),
  26630. name: "Front",
  26631. image: {
  26632. source: "./media/characters/grim/front.svg",
  26633. extra: 622 / 614,
  26634. bottom: 18.1 / 642
  26635. }
  26636. },
  26637. back: {
  26638. height: math.unit(16, "feet"),
  26639. weight: math.unit(1000, "lb"),
  26640. name: "Back",
  26641. image: {
  26642. source: "./media/characters/grim/back.svg",
  26643. extra: 610.6 / 602,
  26644. bottom: 40.8 / 652
  26645. }
  26646. },
  26647. hunched: {
  26648. height: math.unit(9.75, "feet"),
  26649. weight: math.unit(1000, "lb"),
  26650. name: "Hunched",
  26651. image: {
  26652. source: "./media/characters/grim/hunched.svg",
  26653. extra: 304 / 297,
  26654. bottom: 35.4 / 394
  26655. }
  26656. },
  26657. },
  26658. [
  26659. {
  26660. name: "Normal",
  26661. height: math.unit(16, "feet"),
  26662. default: true
  26663. },
  26664. ]
  26665. ))
  26666. characterMakers.push(() => makeCharacter(
  26667. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26668. {
  26669. front: {
  26670. height: math.unit(2.3, "meters"),
  26671. weight: math.unit(300, "lb"),
  26672. name: "Front",
  26673. image: {
  26674. source: "./media/characters/sinja/front-sfw.svg",
  26675. extra: 1393 / 1294,
  26676. bottom: 70 / 1463
  26677. }
  26678. },
  26679. frontNsfw: {
  26680. height: math.unit(2.3, "meters"),
  26681. weight: math.unit(300, "lb"),
  26682. name: "Front (NSFW)",
  26683. image: {
  26684. source: "./media/characters/sinja/front-nsfw.svg",
  26685. extra: 1393 / 1294,
  26686. bottom: 70 / 1463
  26687. }
  26688. },
  26689. back: {
  26690. height: math.unit(2.3, "meters"),
  26691. weight: math.unit(300, "lb"),
  26692. name: "Back",
  26693. image: {
  26694. source: "./media/characters/sinja/back.svg",
  26695. extra: 1393 / 1294,
  26696. bottom: 70 / 1463
  26697. }
  26698. },
  26699. head: {
  26700. height: math.unit(1.771, "feet"),
  26701. name: "Head",
  26702. image: {
  26703. source: "./media/characters/sinja/head.svg"
  26704. }
  26705. },
  26706. slit: {
  26707. height: math.unit(0.8, "feet"),
  26708. name: "Slit",
  26709. image: {
  26710. source: "./media/characters/sinja/slit.svg"
  26711. }
  26712. },
  26713. },
  26714. [
  26715. {
  26716. name: "Normal",
  26717. height: math.unit(2.3, "meters")
  26718. },
  26719. {
  26720. name: "Macro",
  26721. height: math.unit(91, "meters"),
  26722. default: true
  26723. },
  26724. {
  26725. name: "Megamacro",
  26726. height: math.unit(91440, "meters")
  26727. },
  26728. {
  26729. name: "Gigamacro",
  26730. height: math.unit(60960000, "meters")
  26731. },
  26732. {
  26733. name: "Teramacro",
  26734. height: math.unit(9144000000, "meters")
  26735. },
  26736. ]
  26737. ))
  26738. characterMakers.push(() => makeCharacter(
  26739. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26740. {
  26741. front: {
  26742. height: math.unit(1.7, "meters"),
  26743. weight: math.unit(130, "lb"),
  26744. name: "Front",
  26745. image: {
  26746. source: "./media/characters/kyu/front.svg",
  26747. extra: 415 / 395,
  26748. bottom: 5 / 420
  26749. }
  26750. },
  26751. head: {
  26752. height: math.unit(1.75, "feet"),
  26753. name: "Head",
  26754. image: {
  26755. source: "./media/characters/kyu/head.svg"
  26756. }
  26757. },
  26758. foot: {
  26759. height: math.unit(0.81, "feet"),
  26760. name: "Foot",
  26761. image: {
  26762. source: "./media/characters/kyu/foot.svg"
  26763. }
  26764. },
  26765. },
  26766. [
  26767. {
  26768. name: "Normal",
  26769. height: math.unit(1.7, "meters")
  26770. },
  26771. {
  26772. name: "Macro",
  26773. height: math.unit(131, "feet"),
  26774. default: true
  26775. },
  26776. {
  26777. name: "Megamacro",
  26778. height: math.unit(91440, "meters")
  26779. },
  26780. {
  26781. name: "Gigamacro",
  26782. height: math.unit(60960000, "meters")
  26783. },
  26784. {
  26785. name: "Teramacro",
  26786. height: math.unit(9144000000, "meters")
  26787. },
  26788. ]
  26789. ))
  26790. characterMakers.push(() => makeCharacter(
  26791. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26792. {
  26793. front: {
  26794. height: math.unit(7 + 1 / 12, "feet"),
  26795. weight: math.unit(250, "lb"),
  26796. name: "Front",
  26797. image: {
  26798. source: "./media/characters/joey/front.svg",
  26799. extra: 1791 / 1537,
  26800. bottom: 28 / 1816
  26801. }
  26802. },
  26803. },
  26804. [
  26805. {
  26806. name: "Micro",
  26807. height: math.unit(3, "inches")
  26808. },
  26809. {
  26810. name: "Normal",
  26811. height: math.unit(7 + 1 / 12, "feet"),
  26812. default: true
  26813. },
  26814. ]
  26815. ))
  26816. characterMakers.push(() => makeCharacter(
  26817. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26818. {
  26819. front: {
  26820. height: math.unit(165, "cm"),
  26821. weight: math.unit(140, "lb"),
  26822. name: "Front",
  26823. image: {
  26824. source: "./media/characters/sam-evans/front.svg",
  26825. extra: 3417 / 3230,
  26826. bottom: 41.3 / 3417
  26827. }
  26828. },
  26829. frontSixTails: {
  26830. height: math.unit(165, "cm"),
  26831. weight: math.unit(140, "lb"),
  26832. name: "Front-six-tails",
  26833. image: {
  26834. source: "./media/characters/sam-evans/front-six-tails.svg",
  26835. extra: 3417 / 3230,
  26836. bottom: 41.3 / 3417
  26837. }
  26838. },
  26839. back: {
  26840. height: math.unit(165, "cm"),
  26841. weight: math.unit(140, "lb"),
  26842. name: "Back",
  26843. image: {
  26844. source: "./media/characters/sam-evans/back.svg",
  26845. extra: 3227 / 3032,
  26846. bottom: 6.8 / 3234
  26847. }
  26848. },
  26849. face: {
  26850. height: math.unit(0.68, "feet"),
  26851. name: "Face",
  26852. image: {
  26853. source: "./media/characters/sam-evans/face.svg"
  26854. }
  26855. },
  26856. },
  26857. [
  26858. {
  26859. name: "Normal",
  26860. height: math.unit(165, "cm"),
  26861. default: true
  26862. },
  26863. {
  26864. name: "Macro",
  26865. height: math.unit(100, "meters")
  26866. },
  26867. {
  26868. name: "Macro+",
  26869. height: math.unit(800, "meters")
  26870. },
  26871. {
  26872. name: "Macro++",
  26873. height: math.unit(3, "km")
  26874. },
  26875. {
  26876. name: "Macro+++",
  26877. height: math.unit(30, "km")
  26878. },
  26879. ]
  26880. ))
  26881. characterMakers.push(() => makeCharacter(
  26882. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26883. {
  26884. front: {
  26885. height: math.unit(10, "feet"),
  26886. weight: math.unit(750, "lb"),
  26887. name: "Front",
  26888. image: {
  26889. source: "./media/characters/juliet-a/front.svg",
  26890. extra: 1766 / 1720,
  26891. bottom: 43 / 1809
  26892. }
  26893. },
  26894. back: {
  26895. height: math.unit(10, "feet"),
  26896. weight: math.unit(750, "lb"),
  26897. name: "Back",
  26898. image: {
  26899. source: "./media/characters/juliet-a/back.svg",
  26900. extra: 1781 / 1734,
  26901. bottom: 35 / 1810,
  26902. }
  26903. },
  26904. },
  26905. [
  26906. {
  26907. name: "Normal",
  26908. height: math.unit(10, "feet"),
  26909. default: true
  26910. },
  26911. {
  26912. name: "Dragon Form",
  26913. height: math.unit(250, "feet")
  26914. },
  26915. {
  26916. name: "Macro",
  26917. height: math.unit(1000, "feet")
  26918. },
  26919. {
  26920. name: "Megamacro",
  26921. height: math.unit(10000, "feet")
  26922. }
  26923. ]
  26924. ))
  26925. characterMakers.push(() => makeCharacter(
  26926. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26927. {
  26928. regular: {
  26929. height: math.unit(7 + 3 / 12, "feet"),
  26930. weight: math.unit(260, "lb"),
  26931. name: "Regular",
  26932. image: {
  26933. source: "./media/characters/wild/regular.svg",
  26934. extra: 97.45 / 92,
  26935. bottom: 6.8 / 104.3
  26936. }
  26937. },
  26938. biggums: {
  26939. height: math.unit(8 + 6 / 12, "feet"),
  26940. weight: math.unit(425, "lb"),
  26941. name: "Biggums",
  26942. image: {
  26943. source: "./media/characters/wild/biggums.svg",
  26944. extra: 97.45 / 92,
  26945. bottom: 7.5 / 132.34
  26946. }
  26947. },
  26948. mawRegular: {
  26949. height: math.unit(1.24, "feet"),
  26950. name: "Maw (Regular)",
  26951. image: {
  26952. source: "./media/characters/wild/maw.svg"
  26953. }
  26954. },
  26955. mawBiggums: {
  26956. height: math.unit(1.47, "feet"),
  26957. name: "Maw (Biggums)",
  26958. image: {
  26959. source: "./media/characters/wild/maw.svg"
  26960. }
  26961. },
  26962. },
  26963. [
  26964. {
  26965. name: "Normal",
  26966. height: math.unit(7 + 3 / 12, "feet"),
  26967. default: true
  26968. },
  26969. ]
  26970. ))
  26971. characterMakers.push(() => makeCharacter(
  26972. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26973. {
  26974. front: {
  26975. height: math.unit(2.5, "meters"),
  26976. weight: math.unit(200, "kg"),
  26977. name: "Front",
  26978. image: {
  26979. source: "./media/characters/vidar/front.svg",
  26980. extra: 2994 / 2795,
  26981. bottom: 56 / 3061
  26982. }
  26983. },
  26984. back: {
  26985. height: math.unit(2.5, "meters"),
  26986. weight: math.unit(200, "kg"),
  26987. name: "Back",
  26988. image: {
  26989. source: "./media/characters/vidar/back.svg",
  26990. extra: 3131 / 2928,
  26991. bottom: 13.5 / 3141.5
  26992. }
  26993. },
  26994. feral: {
  26995. height: math.unit(2.5, "meters"),
  26996. weight: math.unit(2000, "kg"),
  26997. name: "Feral",
  26998. image: {
  26999. source: "./media/characters/vidar/feral.svg",
  27000. extra: 2790 / 1765,
  27001. bottom: 6 / 2796
  27002. }
  27003. },
  27004. },
  27005. [
  27006. {
  27007. name: "Normal",
  27008. height: math.unit(2.5, "meters"),
  27009. default: true
  27010. },
  27011. {
  27012. name: "Macro",
  27013. height: math.unit(100, "meters")
  27014. },
  27015. ]
  27016. ))
  27017. characterMakers.push(() => makeCharacter(
  27018. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27019. {
  27020. front: {
  27021. height: math.unit(5 + 9 / 12, "feet"),
  27022. weight: math.unit(120, "lb"),
  27023. name: "Front",
  27024. image: {
  27025. source: "./media/characters/ash/front.svg",
  27026. extra: 2189 / 1961,
  27027. bottom: 5.2 / 2194
  27028. }
  27029. },
  27030. },
  27031. [
  27032. {
  27033. name: "Normal",
  27034. height: math.unit(5 + 9 / 12, "feet"),
  27035. default: true
  27036. },
  27037. ]
  27038. ))
  27039. characterMakers.push(() => makeCharacter(
  27040. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27041. {
  27042. front: {
  27043. height: math.unit(9, "feet"),
  27044. weight: math.unit(10000, "lb"),
  27045. name: "Front",
  27046. image: {
  27047. source: "./media/characters/gygabite/front.svg",
  27048. bottom: 31.7 / 537.8,
  27049. extra: 505 / 370
  27050. }
  27051. },
  27052. },
  27053. [
  27054. {
  27055. name: "Normal",
  27056. height: math.unit(9, "feet"),
  27057. default: true
  27058. },
  27059. ]
  27060. ))
  27061. characterMakers.push(() => makeCharacter(
  27062. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27063. {
  27064. front: {
  27065. height: math.unit(12, "feet"),
  27066. weight: math.unit(35000, "lb"),
  27067. name: "Front",
  27068. image: {
  27069. source: "./media/characters/p0tat0/front.svg",
  27070. extra: 1065 / 921,
  27071. bottom: 55.7 / 1121.25
  27072. }
  27073. },
  27074. },
  27075. [
  27076. {
  27077. name: "Normal",
  27078. height: math.unit(12, "feet"),
  27079. default: true
  27080. },
  27081. ]
  27082. ))
  27083. characterMakers.push(() => makeCharacter(
  27084. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27085. {
  27086. side: {
  27087. height: math.unit(6.5, "feet"),
  27088. weight: math.unit(800, "lb"),
  27089. name: "Side",
  27090. image: {
  27091. source: "./media/characters/dusk/side.svg",
  27092. extra: 615 / 373,
  27093. bottom: 53 / 664
  27094. }
  27095. },
  27096. sitting: {
  27097. height: math.unit(7, "feet"),
  27098. weight: math.unit(800, "lb"),
  27099. name: "Sitting",
  27100. image: {
  27101. source: "./media/characters/dusk/sitting.svg",
  27102. extra: 753 / 425,
  27103. bottom: 33 / 774
  27104. }
  27105. },
  27106. head: {
  27107. height: math.unit(6.1, "feet"),
  27108. name: "Head",
  27109. image: {
  27110. source: "./media/characters/dusk/head.svg"
  27111. }
  27112. },
  27113. },
  27114. [
  27115. {
  27116. name: "Normal",
  27117. height: math.unit(7, "feet"),
  27118. default: true
  27119. },
  27120. ]
  27121. ))
  27122. characterMakers.push(() => makeCharacter(
  27123. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27124. {
  27125. front: {
  27126. height: math.unit(15, "feet"),
  27127. weight: math.unit(7000, "lb"),
  27128. name: "Front",
  27129. image: {
  27130. source: "./media/characters/jay-direwolf/front.svg",
  27131. extra: 1810 / 1732,
  27132. bottom: 66 / 1892
  27133. }
  27134. },
  27135. },
  27136. [
  27137. {
  27138. name: "Normal",
  27139. height: math.unit(15, "feet"),
  27140. default: true
  27141. },
  27142. ]
  27143. ))
  27144. characterMakers.push(() => makeCharacter(
  27145. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27146. {
  27147. front: {
  27148. height: math.unit(4 + 9 / 12, "feet"),
  27149. weight: math.unit(130, "lb"),
  27150. name: "Front",
  27151. image: {
  27152. source: "./media/characters/anchovie/front.svg",
  27153. extra: 382 / 350,
  27154. bottom: 25 / 409
  27155. }
  27156. },
  27157. back: {
  27158. height: math.unit(4 + 9 / 12, "feet"),
  27159. weight: math.unit(130, "lb"),
  27160. name: "Back",
  27161. image: {
  27162. source: "./media/characters/anchovie/back.svg",
  27163. extra: 385 / 352,
  27164. bottom: 16.6 / 402
  27165. }
  27166. },
  27167. frontDressed: {
  27168. height: math.unit(4 + 9 / 12, "feet"),
  27169. weight: math.unit(130, "lb"),
  27170. name: "Front (Dressed)",
  27171. image: {
  27172. source: "./media/characters/anchovie/front-dressed.svg",
  27173. extra: 382 / 350,
  27174. bottom: 25 / 409
  27175. }
  27176. },
  27177. backDressed: {
  27178. height: math.unit(4 + 9 / 12, "feet"),
  27179. weight: math.unit(130, "lb"),
  27180. name: "Back (Dressed)",
  27181. image: {
  27182. source: "./media/characters/anchovie/back-dressed.svg",
  27183. extra: 385 / 352,
  27184. bottom: 16.6 / 402
  27185. }
  27186. },
  27187. },
  27188. [
  27189. {
  27190. name: "Micro",
  27191. height: math.unit(6.4, "inches")
  27192. },
  27193. {
  27194. name: "Normal",
  27195. height: math.unit(4 + 9 / 12, "feet"),
  27196. default: true
  27197. },
  27198. ]
  27199. ))
  27200. characterMakers.push(() => makeCharacter(
  27201. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27202. {
  27203. front: {
  27204. height: math.unit(2, "meters"),
  27205. weight: math.unit(180, "lb"),
  27206. name: "Front",
  27207. image: {
  27208. source: "./media/characters/acidrenamon/front.svg",
  27209. extra: 987 / 890,
  27210. bottom: 22.8 / 1009
  27211. }
  27212. },
  27213. back: {
  27214. height: math.unit(2, "meters"),
  27215. weight: math.unit(180, "lb"),
  27216. name: "Back",
  27217. image: {
  27218. source: "./media/characters/acidrenamon/back.svg",
  27219. extra: 983 / 891,
  27220. bottom: 8.4 / 992
  27221. }
  27222. },
  27223. head: {
  27224. height: math.unit(1.92, "feet"),
  27225. name: "Head",
  27226. image: {
  27227. source: "./media/characters/acidrenamon/head.svg"
  27228. }
  27229. },
  27230. rump: {
  27231. height: math.unit(1.72, "feet"),
  27232. name: "Rump",
  27233. image: {
  27234. source: "./media/characters/acidrenamon/rump.svg"
  27235. }
  27236. },
  27237. tail: {
  27238. height: math.unit(4.2, "feet"),
  27239. name: "Tail",
  27240. image: {
  27241. source: "./media/characters/acidrenamon/tail.svg"
  27242. }
  27243. },
  27244. },
  27245. [
  27246. {
  27247. name: "Normal",
  27248. height: math.unit(2, "meters"),
  27249. default: true
  27250. },
  27251. {
  27252. name: "Minimacro",
  27253. height: math.unit(7, "meters")
  27254. },
  27255. {
  27256. name: "Macro",
  27257. height: math.unit(200, "meters")
  27258. },
  27259. {
  27260. name: "Gigamacro",
  27261. height: math.unit(0.2, "earths")
  27262. },
  27263. ]
  27264. ))
  27265. characterMakers.push(() => makeCharacter(
  27266. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27267. {
  27268. front: {
  27269. height: math.unit(6, "feet"),
  27270. weight: math.unit(150, "lb"),
  27271. name: "Front",
  27272. image: {
  27273. source: "./media/characters/kenzie-lee/front.svg",
  27274. extra: 1525 / 1465,
  27275. bottom: 45 / 1570
  27276. }
  27277. },
  27278. side: {
  27279. height: math.unit(6, "feet"),
  27280. weight: math.unit(150, "lb"),
  27281. name: "Side",
  27282. image: {
  27283. source: "./media/characters/kenzie-lee/side.svg",
  27284. extra: 5505 / 5383,
  27285. bottom: 60 / 5573
  27286. }
  27287. },
  27288. paw: {
  27289. height: math.unit(0.57, "feet"),
  27290. name: "Paw",
  27291. image: {
  27292. source: "./media/characters/kenzie-lee/paw.svg"
  27293. }
  27294. },
  27295. },
  27296. [
  27297. {
  27298. name: "Normal",
  27299. height: math.unit(152, "feet"),
  27300. default: true
  27301. },
  27302. {
  27303. name: "Megamacro",
  27304. height: math.unit(7, "miles")
  27305. },
  27306. {
  27307. name: "Gigamacro",
  27308. height: math.unit(8000, "miles")
  27309. },
  27310. ]
  27311. ))
  27312. characterMakers.push(() => makeCharacter(
  27313. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27314. {
  27315. side: {
  27316. height: math.unit(6, "feet"),
  27317. weight: math.unit(150, "lb"),
  27318. name: "Side",
  27319. image: {
  27320. source: "./media/characters/withers/side.svg",
  27321. extra: 1830 / 1728,
  27322. bottom: 96 / 1927
  27323. }
  27324. },
  27325. front: {
  27326. height: math.unit(6, "feet"),
  27327. weight: math.unit(150, "lb"),
  27328. name: "Front",
  27329. image: {
  27330. source: "./media/characters/withers/front.svg",
  27331. extra: 1514 / 1438,
  27332. bottom: 118 / 1632
  27333. }
  27334. },
  27335. },
  27336. [
  27337. {
  27338. name: "Macro",
  27339. height: math.unit(168, "feet"),
  27340. default: true
  27341. },
  27342. {
  27343. name: "Megamacro",
  27344. height: math.unit(15, "miles")
  27345. }
  27346. ]
  27347. ))
  27348. characterMakers.push(() => makeCharacter(
  27349. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27350. {
  27351. front: {
  27352. height: math.unit(6 + 7 / 12, "feet"),
  27353. weight: math.unit(250, "lb"),
  27354. name: "Front",
  27355. image: {
  27356. source: "./media/characters/nemoskii/front.svg",
  27357. extra: 2270 / 1734,
  27358. bottom: 86 / 2354
  27359. }
  27360. },
  27361. back: {
  27362. height: math.unit(6 + 7 / 12, "feet"),
  27363. weight: math.unit(250, "lb"),
  27364. name: "Back",
  27365. image: {
  27366. source: "./media/characters/nemoskii/back.svg",
  27367. extra: 1845 / 1788,
  27368. bottom: 10.5 / 1852
  27369. }
  27370. },
  27371. head: {
  27372. height: math.unit(1.31, "feet"),
  27373. name: "Head",
  27374. image: {
  27375. source: "./media/characters/nemoskii/head.svg"
  27376. }
  27377. },
  27378. },
  27379. [
  27380. {
  27381. name: "Micro",
  27382. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27383. },
  27384. {
  27385. name: "Normal",
  27386. height: math.unit(6 + 7 / 12, "feet"),
  27387. default: true
  27388. },
  27389. {
  27390. name: "Macro",
  27391. height: math.unit((6 + 7 / 12) * 150, "feet")
  27392. },
  27393. {
  27394. name: "Macro+",
  27395. height: math.unit((6 + 7 / 12) * 500, "feet")
  27396. },
  27397. {
  27398. name: "Megamacro",
  27399. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27400. },
  27401. ]
  27402. ))
  27403. characterMakers.push(() => makeCharacter(
  27404. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27405. {
  27406. front: {
  27407. height: math.unit(1, "mile"),
  27408. weight: math.unit(265261.9, "lb"),
  27409. name: "Front",
  27410. image: {
  27411. source: "./media/characters/shui/front.svg",
  27412. extra: 1633 / 1564,
  27413. bottom: 91.5 / 1726
  27414. }
  27415. },
  27416. },
  27417. [
  27418. {
  27419. name: "Macro",
  27420. height: math.unit(1, "mile"),
  27421. default: true
  27422. },
  27423. ]
  27424. ))
  27425. characterMakers.push(() => makeCharacter(
  27426. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27427. {
  27428. front: {
  27429. height: math.unit(12 + 6 / 12, "feet"),
  27430. weight: math.unit(1342, "lb"),
  27431. name: "Front",
  27432. image: {
  27433. source: "./media/characters/arokh-takakura/front.svg",
  27434. extra: 1089 / 1043,
  27435. bottom: 77.4 / 1176.7
  27436. }
  27437. },
  27438. back: {
  27439. height: math.unit(12 + 6 / 12, "feet"),
  27440. weight: math.unit(1342, "lb"),
  27441. name: "Back",
  27442. image: {
  27443. source: "./media/characters/arokh-takakura/back.svg",
  27444. extra: 1046 / 1019,
  27445. bottom: 102 / 1150
  27446. }
  27447. },
  27448. },
  27449. [
  27450. {
  27451. name: "Big",
  27452. height: math.unit(12 + 6 / 12, "feet"),
  27453. default: true
  27454. },
  27455. ]
  27456. ))
  27457. characterMakers.push(() => makeCharacter(
  27458. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27459. {
  27460. front: {
  27461. height: math.unit(5 + 6 / 12, "feet"),
  27462. weight: math.unit(150, "lb"),
  27463. name: "Front",
  27464. image: {
  27465. source: "./media/characters/theo/front.svg",
  27466. extra: 1184 / 1131,
  27467. bottom: 7.4 / 1191
  27468. }
  27469. },
  27470. },
  27471. [
  27472. {
  27473. name: "Micro",
  27474. height: math.unit(5, "inches")
  27475. },
  27476. {
  27477. name: "Normal",
  27478. height: math.unit(5 + 6 / 12, "feet"),
  27479. default: true
  27480. },
  27481. ]
  27482. ))
  27483. characterMakers.push(() => makeCharacter(
  27484. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27485. {
  27486. front: {
  27487. height: math.unit(5 + 9 / 12, "feet"),
  27488. weight: math.unit(130, "lb"),
  27489. name: "Front",
  27490. image: {
  27491. source: "./media/characters/cecelia-swift/front.svg",
  27492. extra: 502 / 484,
  27493. bottom: 23 / 523
  27494. }
  27495. },
  27496. back: {
  27497. height: math.unit(5 + 9 / 12, "feet"),
  27498. weight: math.unit(130, "lb"),
  27499. name: "Back",
  27500. image: {
  27501. source: "./media/characters/cecelia-swift/back.svg",
  27502. extra: 499 / 485,
  27503. bottom: 12 / 511
  27504. }
  27505. },
  27506. head: {
  27507. height: math.unit(0.90, "feet"),
  27508. name: "Head",
  27509. image: {
  27510. source: "./media/characters/cecelia-swift/head.svg"
  27511. }
  27512. },
  27513. rump: {
  27514. height: math.unit(1.75, "feet"),
  27515. name: "Rump",
  27516. image: {
  27517. source: "./media/characters/cecelia-swift/rump.svg"
  27518. }
  27519. },
  27520. },
  27521. [
  27522. {
  27523. name: "Normal",
  27524. height: math.unit(5 + 9 / 12, "feet"),
  27525. default: true
  27526. },
  27527. {
  27528. name: "Big",
  27529. height: math.unit(50, "feet")
  27530. },
  27531. {
  27532. name: "Macro",
  27533. height: math.unit(100, "feet")
  27534. },
  27535. {
  27536. name: "Macro+",
  27537. height: math.unit(500, "feet")
  27538. },
  27539. {
  27540. name: "Macro++",
  27541. height: math.unit(1000, "feet")
  27542. },
  27543. ]
  27544. ))
  27545. characterMakers.push(() => makeCharacter(
  27546. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27547. {
  27548. front: {
  27549. height: math.unit(6, "feet"),
  27550. weight: math.unit(150, "lb"),
  27551. name: "Front",
  27552. image: {
  27553. source: "./media/characters/kaunan/front.svg",
  27554. extra: 2890 / 2523,
  27555. bottom: 49 / 2939
  27556. }
  27557. },
  27558. },
  27559. [
  27560. {
  27561. name: "Macro",
  27562. height: math.unit(150, "feet"),
  27563. default: true
  27564. },
  27565. ]
  27566. ))
  27567. characterMakers.push(() => makeCharacter(
  27568. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27569. {
  27570. front: {
  27571. height: math.unit(175, "cm"),
  27572. weight: math.unit(60, "kg"),
  27573. name: "Front",
  27574. image: {
  27575. source: "./media/characters/fei/front.svg",
  27576. extra: 1873/1723,
  27577. bottom: 53/1926
  27578. }
  27579. },
  27580. },
  27581. [
  27582. {
  27583. name: "Mortal",
  27584. height: math.unit(175, "cm")
  27585. },
  27586. {
  27587. name: "Normal",
  27588. height: math.unit(3500, "m"),
  27589. default: true
  27590. },
  27591. {
  27592. name: "Stroll",
  27593. height: math.unit(17.5, "km")
  27594. },
  27595. {
  27596. name: "Showoff",
  27597. height: math.unit(175, "km")
  27598. },
  27599. ]
  27600. ))
  27601. characterMakers.push(() => makeCharacter(
  27602. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27603. {
  27604. front: {
  27605. height: math.unit(7, "feet"),
  27606. weight: math.unit(1000, "kg"),
  27607. name: "Front",
  27608. image: {
  27609. source: "./media/characters/edrax/front.svg",
  27610. extra: 2838 / 2550,
  27611. bottom: 130 / 2968
  27612. }
  27613. },
  27614. },
  27615. [
  27616. {
  27617. name: "Small",
  27618. height: math.unit(7, "feet")
  27619. },
  27620. {
  27621. name: "Normal",
  27622. height: math.unit(1500, "meters")
  27623. },
  27624. {
  27625. name: "Mega",
  27626. height: math.unit(12000000, "km"),
  27627. default: true
  27628. },
  27629. {
  27630. name: "Megamacro",
  27631. height: math.unit(10600000, "lightyears")
  27632. },
  27633. {
  27634. name: "Hypermacro",
  27635. height: math.unit(256, "yottameters")
  27636. },
  27637. ]
  27638. ))
  27639. characterMakers.push(() => makeCharacter(
  27640. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27641. {
  27642. front: {
  27643. height: math.unit(10, "feet"),
  27644. weight: math.unit(750, "lb"),
  27645. name: "Front",
  27646. image: {
  27647. source: "./media/characters/clove/front.svg",
  27648. extra: 2031 / 1860,
  27649. bottom: 47.8 / 2080
  27650. }
  27651. },
  27652. back: {
  27653. height: math.unit(10, "feet"),
  27654. weight: math.unit(750, "lb"),
  27655. name: "Back",
  27656. image: {
  27657. source: "./media/characters/clove/back.svg",
  27658. extra: 2025 / 1859,
  27659. bottom: 46 / 2071
  27660. }
  27661. },
  27662. },
  27663. [
  27664. {
  27665. name: "Normal",
  27666. height: math.unit(10, "feet"),
  27667. default: true
  27668. },
  27669. ]
  27670. ))
  27671. characterMakers.push(() => makeCharacter(
  27672. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27673. {
  27674. front: {
  27675. height: math.unit(4, "feet"),
  27676. weight: math.unit(50, "lb"),
  27677. name: "Front",
  27678. image: {
  27679. source: "./media/characters/alex-rabbit/front.svg",
  27680. extra: 507 / 458,
  27681. bottom: 18.5 / 527
  27682. }
  27683. },
  27684. back: {
  27685. height: math.unit(4, "feet"),
  27686. weight: math.unit(50, "lb"),
  27687. name: "Back",
  27688. image: {
  27689. source: "./media/characters/alex-rabbit/back.svg",
  27690. extra: 502 / 460,
  27691. bottom: 18.9 / 521
  27692. }
  27693. },
  27694. },
  27695. [
  27696. {
  27697. name: "Normal",
  27698. height: math.unit(4, "feet"),
  27699. default: true
  27700. },
  27701. ]
  27702. ))
  27703. characterMakers.push(() => makeCharacter(
  27704. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27705. {
  27706. front: {
  27707. height: math.unit(1 + 3 / 12, "feet"),
  27708. weight: math.unit(80, "lb"),
  27709. name: "Front",
  27710. image: {
  27711. source: "./media/characters/zander-rose/front.svg",
  27712. extra: 916 / 797,
  27713. bottom: 17 / 933
  27714. }
  27715. },
  27716. back: {
  27717. height: math.unit(1 + 3 / 12, "feet"),
  27718. weight: math.unit(80, "lb"),
  27719. name: "Back",
  27720. image: {
  27721. source: "./media/characters/zander-rose/back.svg",
  27722. extra: 903 / 779,
  27723. bottom: 31 / 934
  27724. }
  27725. },
  27726. },
  27727. [
  27728. {
  27729. name: "Normal",
  27730. height: math.unit(1 + 3 / 12, "feet"),
  27731. default: true
  27732. },
  27733. ]
  27734. ))
  27735. characterMakers.push(() => makeCharacter(
  27736. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27737. {
  27738. anthro: {
  27739. height: math.unit(6, "feet"),
  27740. weight: math.unit(150, "lb"),
  27741. name: "Anthro",
  27742. image: {
  27743. source: "./media/characters/razz/anthro.svg",
  27744. extra: 1437 / 1343,
  27745. bottom: 48 / 1485
  27746. }
  27747. },
  27748. feral: {
  27749. height: math.unit(6, "feet"),
  27750. weight: math.unit(150, "lb"),
  27751. name: "Feral",
  27752. image: {
  27753. source: "./media/characters/razz/feral.svg",
  27754. extra: 2569 / 1385,
  27755. bottom: 95 / 2664
  27756. }
  27757. },
  27758. },
  27759. [
  27760. {
  27761. name: "Normal",
  27762. height: math.unit(6, "feet"),
  27763. default: true
  27764. },
  27765. ]
  27766. ))
  27767. characterMakers.push(() => makeCharacter(
  27768. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27769. {
  27770. front: {
  27771. height: math.unit(9 + 4 / 12, "feet"),
  27772. weight: math.unit(500, "lb"),
  27773. name: "Front",
  27774. image: {
  27775. source: "./media/characters/morrigan/front.svg",
  27776. extra: 2707 / 2579,
  27777. bottom: 156 / 2863
  27778. }
  27779. },
  27780. },
  27781. [
  27782. {
  27783. name: "Normal",
  27784. height: math.unit(9 + 4 / 12, "feet"),
  27785. default: true
  27786. },
  27787. ]
  27788. ))
  27789. characterMakers.push(() => makeCharacter(
  27790. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27791. {
  27792. front: {
  27793. height: math.unit(5, "stories"),
  27794. weight: math.unit(4000, "lb"),
  27795. name: "Front",
  27796. image: {
  27797. source: "./media/characters/jenene/front.svg",
  27798. extra: 1780 / 1710,
  27799. bottom: 57 / 1837
  27800. }
  27801. },
  27802. },
  27803. [
  27804. {
  27805. name: "Normal",
  27806. height: math.unit(5, "stories"),
  27807. default: true
  27808. },
  27809. ]
  27810. ))
  27811. characterMakers.push(() => makeCharacter(
  27812. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27813. {
  27814. taurSfw: {
  27815. height: math.unit(10, "meters"),
  27816. weight: math.unit(17500, "kg"),
  27817. name: "Taur",
  27818. image: {
  27819. source: "./media/characters/faey/taur-sfw.svg",
  27820. extra: 1200 / 968,
  27821. bottom: 41 / 1241
  27822. }
  27823. },
  27824. chestmaw: {
  27825. height: math.unit(2.01, "meters"),
  27826. name: "Chestmaw",
  27827. image: {
  27828. source: "./media/characters/faey/chestmaw.svg"
  27829. }
  27830. },
  27831. foot: {
  27832. height: math.unit(2.43, "meters"),
  27833. name: "Foot",
  27834. image: {
  27835. source: "./media/characters/faey/foot.svg"
  27836. }
  27837. },
  27838. jaws: {
  27839. height: math.unit(1.66, "meters"),
  27840. name: "Jaws",
  27841. image: {
  27842. source: "./media/characters/faey/jaws.svg"
  27843. }
  27844. },
  27845. tongues: {
  27846. height: math.unit(2.01, "meters"),
  27847. name: "Tongues",
  27848. image: {
  27849. source: "./media/characters/faey/tongues.svg"
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Small",
  27856. height: math.unit(10, "meters"),
  27857. default: true
  27858. },
  27859. {
  27860. name: "Big",
  27861. height: math.unit(500000, "km")
  27862. },
  27863. ]
  27864. ))
  27865. characterMakers.push(() => makeCharacter(
  27866. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27867. {
  27868. front: {
  27869. height: math.unit(7, "feet"),
  27870. weight: math.unit(275, "lb"),
  27871. name: "Front",
  27872. image: {
  27873. source: "./media/characters/roku/front.svg",
  27874. extra: 903 / 878,
  27875. bottom: 37 / 940
  27876. }
  27877. },
  27878. },
  27879. [
  27880. {
  27881. name: "Normal",
  27882. height: math.unit(7, "feet"),
  27883. default: true
  27884. },
  27885. {
  27886. name: "Macro",
  27887. height: math.unit(500, "feet")
  27888. },
  27889. {
  27890. name: "Megamacro",
  27891. height: math.unit(200, "miles")
  27892. },
  27893. ]
  27894. ))
  27895. characterMakers.push(() => makeCharacter(
  27896. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27897. {
  27898. front: {
  27899. height: math.unit(6 + 2 / 12, "feet"),
  27900. weight: math.unit(150, "lb"),
  27901. name: "Front",
  27902. image: {
  27903. source: "./media/characters/lira/front.svg",
  27904. extra: 1727 / 1605,
  27905. bottom: 26 / 1753
  27906. }
  27907. },
  27908. back: {
  27909. height: math.unit(6 + 2 / 12, "feet"),
  27910. weight: math.unit(150, "lb"),
  27911. name: "Back",
  27912. image: {
  27913. source: "./media/characters/lira/back.svg",
  27914. extra: 1713/1621,
  27915. bottom: 20/1733
  27916. }
  27917. },
  27918. hand: {
  27919. height: math.unit(0.75, "feet"),
  27920. name: "Hand",
  27921. image: {
  27922. source: "./media/characters/lira/hand.svg"
  27923. }
  27924. },
  27925. maw: {
  27926. height: math.unit(0.65, "feet"),
  27927. name: "Maw",
  27928. image: {
  27929. source: "./media/characters/lira/maw.svg"
  27930. }
  27931. },
  27932. pawDigi: {
  27933. height: math.unit(1.6, "feet"),
  27934. name: "Paw Digi",
  27935. image: {
  27936. source: "./media/characters/lira/paw-digi.svg"
  27937. }
  27938. },
  27939. pawPlanti: {
  27940. height: math.unit(1.4, "feet"),
  27941. name: "Paw Planti",
  27942. image: {
  27943. source: "./media/characters/lira/paw-planti.svg"
  27944. }
  27945. },
  27946. },
  27947. [
  27948. {
  27949. name: "Normal",
  27950. height: math.unit(6 + 2 / 12, "feet"),
  27951. default: true
  27952. },
  27953. {
  27954. name: "Macro",
  27955. height: math.unit(100, "feet")
  27956. },
  27957. {
  27958. name: "Macro²",
  27959. height: math.unit(1600, "feet")
  27960. },
  27961. {
  27962. name: "Planetary",
  27963. height: math.unit(20, "earths")
  27964. },
  27965. ]
  27966. ))
  27967. characterMakers.push(() => makeCharacter(
  27968. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27969. {
  27970. front: {
  27971. height: math.unit(6, "feet"),
  27972. weight: math.unit(150, "lb"),
  27973. name: "Front",
  27974. image: {
  27975. source: "./media/characters/hadjet/front.svg",
  27976. extra: 1480 / 1346,
  27977. bottom: 26 / 1506
  27978. }
  27979. },
  27980. frontNsfw: {
  27981. height: math.unit(6, "feet"),
  27982. weight: math.unit(150, "lb"),
  27983. name: "Front (NSFW)",
  27984. image: {
  27985. source: "./media/characters/hadjet/front-nsfw.svg",
  27986. extra: 1440 / 1358,
  27987. bottom: 52 / 1492
  27988. }
  27989. },
  27990. },
  27991. [
  27992. {
  27993. name: "Macro",
  27994. height: math.unit(10, "stories"),
  27995. default: true
  27996. },
  27997. {
  27998. name: "Megamacro",
  27999. height: math.unit(1.5, "miles")
  28000. },
  28001. {
  28002. name: "Megamacro+",
  28003. height: math.unit(5, "miles")
  28004. },
  28005. ]
  28006. ))
  28007. characterMakers.push(() => makeCharacter(
  28008. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28009. {
  28010. side: {
  28011. height: math.unit(106, "feet"),
  28012. weight: math.unit(500, "tonnes"),
  28013. name: "Side",
  28014. image: {
  28015. source: "./media/characters/kodran/side.svg",
  28016. extra: 553 / 480,
  28017. bottom: 33 / 586
  28018. }
  28019. },
  28020. front: {
  28021. height: math.unit(132, "feet"),
  28022. weight: math.unit(500, "tonnes"),
  28023. name: "Front",
  28024. image: {
  28025. source: "./media/characters/kodran/front.svg",
  28026. extra: 667 / 643,
  28027. bottom: 42 / 709
  28028. }
  28029. },
  28030. flying: {
  28031. height: math.unit(350, "feet"),
  28032. weight: math.unit(500, "tonnes"),
  28033. name: "Flying",
  28034. image: {
  28035. source: "./media/characters/kodran/flying.svg"
  28036. }
  28037. },
  28038. foot: {
  28039. height: math.unit(33, "feet"),
  28040. name: "Foot",
  28041. image: {
  28042. source: "./media/characters/kodran/foot.svg"
  28043. }
  28044. },
  28045. footFront: {
  28046. height: math.unit(19, "feet"),
  28047. name: "Foot (Front)",
  28048. image: {
  28049. source: "./media/characters/kodran/foot-front.svg",
  28050. extra: 261 / 261,
  28051. bottom: 91 / 352
  28052. }
  28053. },
  28054. headFront: {
  28055. height: math.unit(53, "feet"),
  28056. name: "Head (Front)",
  28057. image: {
  28058. source: "./media/characters/kodran/head-front.svg"
  28059. }
  28060. },
  28061. headSide: {
  28062. height: math.unit(65, "feet"),
  28063. name: "Head (Side)",
  28064. image: {
  28065. source: "./media/characters/kodran/head-side.svg"
  28066. }
  28067. },
  28068. throat: {
  28069. height: math.unit(79, "feet"),
  28070. name: "Throat",
  28071. image: {
  28072. source: "./media/characters/kodran/throat.svg"
  28073. }
  28074. },
  28075. },
  28076. [
  28077. {
  28078. name: "Large",
  28079. height: math.unit(106, "feet"),
  28080. default: true
  28081. },
  28082. ]
  28083. ))
  28084. characterMakers.push(() => makeCharacter(
  28085. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28086. {
  28087. side: {
  28088. height: math.unit(11, "feet"),
  28089. weight: math.unit(150, "lb"),
  28090. name: "Side",
  28091. image: {
  28092. source: "./media/characters/pyxaron/side.svg",
  28093. extra: 305 / 195,
  28094. bottom: 17 / 322
  28095. }
  28096. },
  28097. },
  28098. [
  28099. {
  28100. name: "Normal",
  28101. height: math.unit(11, "feet"),
  28102. default: true
  28103. },
  28104. ]
  28105. ))
  28106. characterMakers.push(() => makeCharacter(
  28107. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28108. {
  28109. front: {
  28110. height: math.unit(6, "feet"),
  28111. weight: math.unit(150, "lb"),
  28112. name: "Front",
  28113. image: {
  28114. source: "./media/characters/meep/front.svg",
  28115. extra: 88 / 80,
  28116. bottom: 6 / 94
  28117. }
  28118. },
  28119. },
  28120. [
  28121. {
  28122. name: "Fun Sized",
  28123. height: math.unit(2, "inches"),
  28124. default: true
  28125. },
  28126. {
  28127. name: "Friend Sized",
  28128. height: math.unit(8, "inches")
  28129. },
  28130. ]
  28131. ))
  28132. characterMakers.push(() => makeCharacter(
  28133. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28134. {
  28135. front: {
  28136. height: math.unit(15, "feet"),
  28137. weight: math.unit(2500, "lb"),
  28138. name: "Front",
  28139. image: {
  28140. source: "./media/characters/holly-rabbit/front.svg",
  28141. extra: 1433 / 1233,
  28142. bottom: 125 / 1558
  28143. }
  28144. },
  28145. dick: {
  28146. height: math.unit(4.6, "feet"),
  28147. name: "Dick",
  28148. image: {
  28149. source: "./media/characters/holly-rabbit/dick.svg"
  28150. }
  28151. },
  28152. },
  28153. [
  28154. {
  28155. name: "Normal",
  28156. height: math.unit(15, "feet"),
  28157. default: true
  28158. },
  28159. {
  28160. name: "Macro",
  28161. height: math.unit(250, "feet")
  28162. },
  28163. {
  28164. name: "Macro+",
  28165. height: math.unit(2500, "feet")
  28166. },
  28167. ]
  28168. ))
  28169. characterMakers.push(() => makeCharacter(
  28170. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28171. {
  28172. front: {
  28173. height: math.unit(3.02, "meters"),
  28174. weight: math.unit(500, "kg"),
  28175. name: "Front",
  28176. image: {
  28177. source: "./media/characters/drena/front.svg",
  28178. extra: 282 / 243,
  28179. bottom: 8 / 290
  28180. }
  28181. },
  28182. side: {
  28183. height: math.unit(3.02, "meters"),
  28184. weight: math.unit(500, "kg"),
  28185. name: "Side",
  28186. image: {
  28187. source: "./media/characters/drena/side.svg",
  28188. extra: 280 / 245,
  28189. bottom: 10 / 290
  28190. }
  28191. },
  28192. back: {
  28193. height: math.unit(3.02, "meters"),
  28194. weight: math.unit(500, "kg"),
  28195. name: "Back",
  28196. image: {
  28197. source: "./media/characters/drena/back.svg",
  28198. extra: 278 / 243,
  28199. bottom: 2 / 280
  28200. }
  28201. },
  28202. foot: {
  28203. height: math.unit(0.75, "meters"),
  28204. name: "Foot",
  28205. image: {
  28206. source: "./media/characters/drena/foot.svg"
  28207. }
  28208. },
  28209. maw: {
  28210. height: math.unit(0.82, "meters"),
  28211. name: "Maw",
  28212. image: {
  28213. source: "./media/characters/drena/maw.svg"
  28214. }
  28215. },
  28216. rump: {
  28217. height: math.unit(0.93, "meters"),
  28218. name: "Rump",
  28219. image: {
  28220. source: "./media/characters/drena/rump.svg"
  28221. }
  28222. },
  28223. },
  28224. [
  28225. {
  28226. name: "Normal",
  28227. height: math.unit(3.02, "meters"),
  28228. default: true
  28229. },
  28230. ]
  28231. ))
  28232. characterMakers.push(() => makeCharacter(
  28233. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28234. {
  28235. front: {
  28236. height: math.unit(6 + 4 / 12, "feet"),
  28237. weight: math.unit(250, "lb"),
  28238. name: "Front",
  28239. image: {
  28240. source: "./media/characters/remmyzilla/front.svg",
  28241. extra: 4033 / 3588,
  28242. bottom: 123 / 4156
  28243. }
  28244. },
  28245. back: {
  28246. height: math.unit(6 + 4 / 12, "feet"),
  28247. weight: math.unit(250, "lb"),
  28248. name: "Back",
  28249. image: {
  28250. source: "./media/characters/remmyzilla/back.svg",
  28251. extra: 2687 / 2555,
  28252. bottom: 48 / 2735
  28253. }
  28254. },
  28255. paw: {
  28256. height: math.unit(1.73, "feet"),
  28257. name: "Paw",
  28258. image: {
  28259. source: "./media/characters/remmyzilla/paw.svg"
  28260. }
  28261. },
  28262. maw: {
  28263. height: math.unit(1.73, "feet"),
  28264. name: "Maw",
  28265. image: {
  28266. source: "./media/characters/remmyzilla/maw.svg"
  28267. }
  28268. },
  28269. },
  28270. [
  28271. {
  28272. name: "Normal",
  28273. height: math.unit(6 + 4 / 12, "feet")
  28274. },
  28275. {
  28276. name: "Minimacro",
  28277. height: math.unit(12 + 8 / 12, "feet")
  28278. },
  28279. {
  28280. name: "Normal",
  28281. height: math.unit(640, "feet"),
  28282. default: true
  28283. },
  28284. {
  28285. name: "Megamacro",
  28286. height: math.unit(6400, "feet")
  28287. },
  28288. {
  28289. name: "Gigamacro",
  28290. height: math.unit(64000, "miles")
  28291. },
  28292. ]
  28293. ))
  28294. characterMakers.push(() => makeCharacter(
  28295. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28296. {
  28297. front: {
  28298. height: math.unit(2.5, "meters"),
  28299. weight: math.unit(300, "lb"),
  28300. name: "Front",
  28301. image: {
  28302. source: "./media/characters/lawrence/front.svg",
  28303. extra: 357 / 335,
  28304. bottom: 30 / 387
  28305. }
  28306. },
  28307. back: {
  28308. height: math.unit(2.5, "meters"),
  28309. weight: math.unit(300, "lb"),
  28310. name: "Back",
  28311. image: {
  28312. source: "./media/characters/lawrence/back.svg",
  28313. extra: 357 / 338,
  28314. bottom: 16 / 373
  28315. }
  28316. },
  28317. head: {
  28318. height: math.unit(0.9, "meter"),
  28319. name: "Head",
  28320. image: {
  28321. source: "./media/characters/lawrence/head.svg"
  28322. }
  28323. },
  28324. maw: {
  28325. height: math.unit(0.7, "meter"),
  28326. name: "Maw",
  28327. image: {
  28328. source: "./media/characters/lawrence/maw.svg"
  28329. }
  28330. },
  28331. footBottom: {
  28332. height: math.unit(0.5, "meter"),
  28333. name: "Foot (Bottom)",
  28334. image: {
  28335. source: "./media/characters/lawrence/foot-bottom.svg"
  28336. }
  28337. },
  28338. footTop: {
  28339. height: math.unit(0.5, "meter"),
  28340. name: "Foot (Top)",
  28341. image: {
  28342. source: "./media/characters/lawrence/foot-top.svg"
  28343. }
  28344. },
  28345. },
  28346. [
  28347. {
  28348. name: "Normal",
  28349. height: math.unit(2.5, "meters"),
  28350. default: true
  28351. },
  28352. {
  28353. name: "Macro",
  28354. height: math.unit(95, "meters")
  28355. },
  28356. {
  28357. name: "Megamacro",
  28358. height: math.unit(150, "km")
  28359. },
  28360. ]
  28361. ))
  28362. characterMakers.push(() => makeCharacter(
  28363. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28364. {
  28365. front: {
  28366. height: math.unit(4.2, "meters"),
  28367. name: "Front",
  28368. image: {
  28369. source: "./media/characters/sydney/front.svg",
  28370. extra: 1323 / 1277,
  28371. bottom: 111 / 1434
  28372. }
  28373. },
  28374. },
  28375. [
  28376. {
  28377. name: "Normal",
  28378. height: math.unit(4.2, "meters"),
  28379. default: true
  28380. },
  28381. ]
  28382. ))
  28383. characterMakers.push(() => makeCharacter(
  28384. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28385. {
  28386. back: {
  28387. height: math.unit(201, "feet"),
  28388. name: "Back",
  28389. image: {
  28390. source: "./media/characters/jessica/back.svg",
  28391. extra: 273 / 259,
  28392. bottom: 7 / 280
  28393. }
  28394. },
  28395. },
  28396. [
  28397. {
  28398. name: "Normal",
  28399. height: math.unit(201, "feet"),
  28400. default: true
  28401. },
  28402. {
  28403. name: "Megamacro",
  28404. height: math.unit(8, "miles")
  28405. },
  28406. ]
  28407. ))
  28408. characterMakers.push(() => makeCharacter(
  28409. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28410. {
  28411. side: {
  28412. height: math.unit(320, "cm"),
  28413. name: "Side",
  28414. image: {
  28415. source: "./media/characters/victoria/side.svg",
  28416. extra: 778 / 346,
  28417. bottom: 56 / 834
  28418. }
  28419. },
  28420. maw: {
  28421. height: math.unit(5.9, "feet"),
  28422. name: "Maw",
  28423. image: {
  28424. source: "./media/characters/victoria/maw.svg"
  28425. }
  28426. },
  28427. },
  28428. [
  28429. {
  28430. name: "Normal",
  28431. height: math.unit(320, "cm"),
  28432. default: true
  28433. },
  28434. ]
  28435. ))
  28436. characterMakers.push(() => makeCharacter(
  28437. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28438. {
  28439. front: {
  28440. height: math.unit(5 + 6 / 12, "feet"),
  28441. name: "Front",
  28442. image: {
  28443. source: "./media/characters/cat/front.svg",
  28444. extra: 1449/1295,
  28445. bottom: 34/1483
  28446. }
  28447. },
  28448. back: {
  28449. height: math.unit(5 + 6 / 12, "feet"),
  28450. name: "Back",
  28451. image: {
  28452. source: "./media/characters/cat/back.svg",
  28453. extra: 1466/1301,
  28454. bottom: 19/1485
  28455. }
  28456. },
  28457. taur: {
  28458. height: math.unit(7, "feet"),
  28459. name: "Taur",
  28460. image: {
  28461. source: "./media/characters/cat/taur.svg",
  28462. extra: 1389/1233,
  28463. bottom: 83/1472
  28464. }
  28465. },
  28466. lucarioFront: {
  28467. height: math.unit(4, "feet"),
  28468. name: "Lucario (Front)",
  28469. image: {
  28470. source: "./media/characters/cat/lucario-front.svg",
  28471. extra: 1149/1019,
  28472. bottom: 84/1233
  28473. }
  28474. },
  28475. lucarioBack: {
  28476. height: math.unit(4, "feet"),
  28477. name: "Lucario (Back)",
  28478. image: {
  28479. source: "./media/characters/cat/lucario-back.svg",
  28480. extra: 1190/1059,
  28481. bottom: 33/1223
  28482. }
  28483. },
  28484. megaLucario: {
  28485. height: math.unit(4, "feet"),
  28486. name: "Mega Lucario",
  28487. image: {
  28488. source: "./media/characters/cat/mega-lucario.svg",
  28489. extra: 1515 / 1319,
  28490. bottom: 63 / 1578
  28491. }
  28492. },
  28493. nickit: {
  28494. height: math.unit(2, "feet"),
  28495. name: "Nickit",
  28496. image: {
  28497. source: "./media/characters/cat/nickit.svg",
  28498. extra: 1980 / 1585,
  28499. bottom: 102 / 2082
  28500. }
  28501. },
  28502. lopunnyFront: {
  28503. height: math.unit(5, "feet"),
  28504. name: "Lopunny (Front)",
  28505. image: {
  28506. source: "./media/characters/cat/lopunny-front.svg",
  28507. extra: 1782 / 1469,
  28508. bottom: 38 / 1820
  28509. }
  28510. },
  28511. lopunnyBack: {
  28512. height: math.unit(5, "feet"),
  28513. name: "Lopunny (Back)",
  28514. image: {
  28515. source: "./media/characters/cat/lopunny-back.svg",
  28516. extra: 1660 / 1490,
  28517. bottom: 25 / 1685
  28518. }
  28519. },
  28520. },
  28521. [
  28522. {
  28523. name: "Really small",
  28524. height: math.unit(1, "nm")
  28525. },
  28526. {
  28527. name: "Micro",
  28528. height: math.unit(5, "inches")
  28529. },
  28530. {
  28531. name: "Normal",
  28532. height: math.unit(5 + 6 / 12, "feet"),
  28533. default: true
  28534. },
  28535. {
  28536. name: "Macro",
  28537. height: math.unit(50, "feet")
  28538. },
  28539. {
  28540. name: "Macro+",
  28541. height: math.unit(150, "feet")
  28542. },
  28543. {
  28544. name: "Megamacro",
  28545. height: math.unit(100, "miles")
  28546. },
  28547. ]
  28548. ))
  28549. characterMakers.push(() => makeCharacter(
  28550. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28551. {
  28552. front: {
  28553. height: math.unit(63.4, "meters"),
  28554. weight: math.unit(3.28349e+6, "kilograms"),
  28555. name: "Front",
  28556. image: {
  28557. source: "./media/characters/kirina-violet/front.svg",
  28558. extra: 2812 / 2725,
  28559. bottom: 0 / 2812
  28560. }
  28561. },
  28562. back: {
  28563. height: math.unit(63.4, "meters"),
  28564. weight: math.unit(3.28349e+6, "kilograms"),
  28565. name: "Back",
  28566. image: {
  28567. source: "./media/characters/kirina-violet/back.svg",
  28568. extra: 2812 / 2725,
  28569. bottom: 0 / 2812
  28570. }
  28571. },
  28572. mouth: {
  28573. height: math.unit(4.35, "meters"),
  28574. name: "Mouth",
  28575. image: {
  28576. source: "./media/characters/kirina-violet/mouth.svg"
  28577. }
  28578. },
  28579. paw: {
  28580. height: math.unit(5.6, "meters"),
  28581. name: "Paw",
  28582. image: {
  28583. source: "./media/characters/kirina-violet/paw.svg"
  28584. }
  28585. },
  28586. tail: {
  28587. height: math.unit(18, "meters"),
  28588. name: "Tail",
  28589. image: {
  28590. source: "./media/characters/kirina-violet/tail.svg"
  28591. }
  28592. },
  28593. },
  28594. [
  28595. {
  28596. name: "Macro",
  28597. height: math.unit(63.4, "meters"),
  28598. default: true
  28599. },
  28600. ]
  28601. ))
  28602. characterMakers.push(() => makeCharacter(
  28603. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28604. {
  28605. front: {
  28606. height: math.unit(75, "feet"),
  28607. name: "Front",
  28608. image: {
  28609. source: "./media/characters/cat-gigachu/front.svg",
  28610. extra: 1239/1027,
  28611. bottom: 32/1271
  28612. }
  28613. },
  28614. back: {
  28615. height: math.unit(75, "feet"),
  28616. name: "Back",
  28617. image: {
  28618. source: "./media/characters/cat-gigachu/back.svg",
  28619. extra: 1229/1030,
  28620. bottom: 9/1238
  28621. }
  28622. },
  28623. },
  28624. [
  28625. {
  28626. name: "Dynamax",
  28627. height: math.unit(75, "feet"),
  28628. default: true
  28629. },
  28630. ]
  28631. ))
  28632. characterMakers.push(() => makeCharacter(
  28633. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28634. {
  28635. front: {
  28636. height: math.unit(6, "feet"),
  28637. weight: math.unit(150, "lb"),
  28638. name: "Front",
  28639. image: {
  28640. source: "./media/characters/sfaiyan/front.svg",
  28641. extra: 999 / 978,
  28642. bottom: 5 / 1004
  28643. }
  28644. },
  28645. },
  28646. [
  28647. {
  28648. name: "Normal",
  28649. height: math.unit(1.82, "meters")
  28650. },
  28651. {
  28652. name: "Giant",
  28653. height: math.unit(2.27, "km"),
  28654. default: true
  28655. },
  28656. ]
  28657. ))
  28658. characterMakers.push(() => makeCharacter(
  28659. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28660. {
  28661. front: {
  28662. height: math.unit(179, "cm"),
  28663. weight: math.unit(100, "kg"),
  28664. name: "Front",
  28665. image: {
  28666. source: "./media/characters/raunehkeli/front.svg",
  28667. extra: 1934 / 1926,
  28668. bottom: 0 / 1934
  28669. }
  28670. },
  28671. },
  28672. [
  28673. {
  28674. name: "Normal",
  28675. height: math.unit(179, "cm")
  28676. },
  28677. {
  28678. name: "Maximum",
  28679. height: math.unit(575, "meters"),
  28680. default: true
  28681. },
  28682. ]
  28683. ))
  28684. characterMakers.push(() => makeCharacter(
  28685. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28686. {
  28687. front: {
  28688. height: math.unit(6, "feet"),
  28689. weight: math.unit(150, "lb"),
  28690. name: "Front",
  28691. image: {
  28692. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28693. extra: 2625 / 2518,
  28694. bottom: 60 / 2685
  28695. }
  28696. },
  28697. },
  28698. [
  28699. {
  28700. name: "Normal",
  28701. height: math.unit(6 + 2 / 12, "feet")
  28702. },
  28703. {
  28704. name: "Macro",
  28705. height: math.unit(1180, "feet"),
  28706. default: true
  28707. },
  28708. ]
  28709. ))
  28710. characterMakers.push(() => makeCharacter(
  28711. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28712. {
  28713. front: {
  28714. height: math.unit(5 + 6 / 12, "feet"),
  28715. weight: math.unit(108, "lb"),
  28716. name: "Front",
  28717. image: {
  28718. source: "./media/characters/lilith-zott/front.svg",
  28719. extra: 2510 / 2238,
  28720. bottom: 100 / 2610
  28721. }
  28722. },
  28723. frontDressed: {
  28724. height: math.unit(5 + 6 / 12, "feet"),
  28725. weight: math.unit(108, "lb"),
  28726. name: "Front (Dressed)",
  28727. image: {
  28728. source: "./media/characters/lilith-zott/front-dressed.svg",
  28729. extra: 2510 / 2238,
  28730. bottom: 100 / 2610
  28731. }
  28732. },
  28733. },
  28734. [
  28735. {
  28736. name: "Normal",
  28737. height: math.unit(5 + 6 / 12, "feet")
  28738. },
  28739. {
  28740. name: "Macro",
  28741. height: math.unit(1030, "feet"),
  28742. default: true
  28743. },
  28744. ]
  28745. ))
  28746. characterMakers.push(() => makeCharacter(
  28747. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28748. {
  28749. front: {
  28750. height: math.unit(6, "feet"),
  28751. weight: math.unit(150, "lb"),
  28752. name: "Front",
  28753. image: {
  28754. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28755. extra: 2567 / 2435,
  28756. bottom: 39 / 2606
  28757. }
  28758. },
  28759. frontSuper: {
  28760. height: math.unit(6, "feet"),
  28761. name: "Front (Super)",
  28762. image: {
  28763. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28764. extra: 2567 / 2435,
  28765. bottom: 39 / 2606
  28766. }
  28767. },
  28768. },
  28769. [
  28770. {
  28771. name: "Normal",
  28772. height: math.unit(5 + 10 / 12, "feet")
  28773. },
  28774. {
  28775. name: "Macro",
  28776. height: math.unit(1100, "feet"),
  28777. default: true
  28778. },
  28779. ]
  28780. ))
  28781. characterMakers.push(() => makeCharacter(
  28782. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28783. {
  28784. front: {
  28785. height: math.unit(100, "miles"),
  28786. name: "Front",
  28787. image: {
  28788. source: "./media/characters/sona/front.svg",
  28789. extra: 2433 / 2201,
  28790. bottom: 53 / 2486
  28791. }
  28792. },
  28793. foot: {
  28794. height: math.unit(16.1, "miles"),
  28795. name: "Foot",
  28796. image: {
  28797. source: "./media/characters/sona/foot.svg"
  28798. }
  28799. },
  28800. },
  28801. [
  28802. {
  28803. name: "Macro",
  28804. height: math.unit(100, "miles"),
  28805. default: true
  28806. },
  28807. ]
  28808. ))
  28809. characterMakers.push(() => makeCharacter(
  28810. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28811. {
  28812. front: {
  28813. height: math.unit(6, "feet"),
  28814. weight: math.unit(150, "lb"),
  28815. name: "Front",
  28816. image: {
  28817. source: "./media/characters/bailey/front.svg",
  28818. extra: 1778 / 1724,
  28819. bottom: 30 / 1808
  28820. }
  28821. },
  28822. },
  28823. [
  28824. {
  28825. name: "Micro",
  28826. height: math.unit(4, "inches")
  28827. },
  28828. {
  28829. name: "Normal",
  28830. height: math.unit(5 + 5 / 12, "feet"),
  28831. default: true
  28832. },
  28833. {
  28834. name: "Macro",
  28835. height: math.unit(250, "feet")
  28836. },
  28837. {
  28838. name: "Megamacro",
  28839. height: math.unit(100, "miles")
  28840. },
  28841. ]
  28842. ))
  28843. characterMakers.push(() => makeCharacter(
  28844. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28845. {
  28846. front: {
  28847. height: math.unit(5 + 2 / 12, "feet"),
  28848. weight: math.unit(120, "lb"),
  28849. name: "Front",
  28850. image: {
  28851. source: "./media/characters/snaps/front.svg",
  28852. extra: 2370 / 2177,
  28853. bottom: 48 / 2418
  28854. }
  28855. },
  28856. back: {
  28857. height: math.unit(5 + 2 / 12, "feet"),
  28858. weight: math.unit(120, "lb"),
  28859. name: "Back",
  28860. image: {
  28861. source: "./media/characters/snaps/back.svg",
  28862. extra: 2408 / 2258,
  28863. bottom: 15 / 2423
  28864. }
  28865. },
  28866. },
  28867. [
  28868. {
  28869. name: "Micro",
  28870. height: math.unit(9, "inches")
  28871. },
  28872. {
  28873. name: "Normal",
  28874. height: math.unit(5 + 2 / 12, "feet"),
  28875. default: true
  28876. },
  28877. {
  28878. name: "Mini Macro",
  28879. height: math.unit(10, "feet")
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(1.8, "meters"),
  28888. weight: math.unit(85, "kg"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/azteck/front.svg",
  28892. extra: 2815 / 2625,
  28893. bottom: 89 / 2904
  28894. }
  28895. },
  28896. back: {
  28897. height: math.unit(1.8, "meters"),
  28898. weight: math.unit(85, "kg"),
  28899. name: "Back",
  28900. image: {
  28901. source: "./media/characters/azteck/back.svg",
  28902. extra: 2856 / 2648,
  28903. bottom: 85 / 2941
  28904. }
  28905. },
  28906. frontDressed: {
  28907. height: math.unit(1.8, "meters"),
  28908. weight: math.unit(85, "kg"),
  28909. name: "Front (Dressed)",
  28910. image: {
  28911. source: "./media/characters/azteck/front-dressed.svg",
  28912. extra: 2147 / 2003,
  28913. bottom: 68 / 2215
  28914. }
  28915. },
  28916. head: {
  28917. height: math.unit(0.47, "meters"),
  28918. weight: math.unit(85, "kg"),
  28919. name: "Head",
  28920. image: {
  28921. source: "./media/characters/azteck/head.svg"
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Bite sized",
  28928. height: math.unit(16, "cm")
  28929. },
  28930. {
  28931. name: "Normal",
  28932. height: math.unit(1.8, "meters"),
  28933. default: true
  28934. },
  28935. ]
  28936. ))
  28937. characterMakers.push(() => makeCharacter(
  28938. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28939. {
  28940. front: {
  28941. height: math.unit(6, "feet"),
  28942. weight: math.unit(150, "lb"),
  28943. name: "Front",
  28944. image: {
  28945. source: "./media/characters/pidge/front.svg",
  28946. extra: 620 / 588,
  28947. bottom: 9 / 629
  28948. }
  28949. },
  28950. back: {
  28951. height: math.unit(6, "feet"),
  28952. weight: math.unit(150, "lb"),
  28953. name: "Back",
  28954. image: {
  28955. source: "./media/characters/pidge/back.svg",
  28956. extra: 620 / 588,
  28957. bottom: 9 / 629
  28958. }
  28959. },
  28960. },
  28961. [
  28962. {
  28963. name: "Macro",
  28964. height: math.unit(1, "mile"),
  28965. default: true
  28966. },
  28967. ]
  28968. ))
  28969. characterMakers.push(() => makeCharacter(
  28970. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28971. {
  28972. front: {
  28973. height: math.unit(6, "feet"),
  28974. weight: math.unit(150, "lb"),
  28975. name: "Front",
  28976. image: {
  28977. source: "./media/characters/en/front.svg",
  28978. extra: 1697 / 1563,
  28979. bottom: 103 / 1800
  28980. }
  28981. },
  28982. back: {
  28983. height: math.unit(6, "feet"),
  28984. weight: math.unit(150, "lb"),
  28985. name: "Back",
  28986. image: {
  28987. source: "./media/characters/en/back.svg",
  28988. extra: 1700 / 1570,
  28989. bottom: 51 / 1751
  28990. }
  28991. },
  28992. frontDressed: {
  28993. height: math.unit(6, "feet"),
  28994. weight: math.unit(150, "lb"),
  28995. name: "Front (Dressed)",
  28996. image: {
  28997. source: "./media/characters/en/front-dressed.svg",
  28998. extra: 1697 / 1563,
  28999. bottom: 103 / 1800
  29000. }
  29001. },
  29002. backDressed: {
  29003. height: math.unit(6, "feet"),
  29004. weight: math.unit(150, "lb"),
  29005. name: "Back (Dressed)",
  29006. image: {
  29007. source: "./media/characters/en/back-dressed.svg",
  29008. extra: 1700 / 1570,
  29009. bottom: 51 / 1751
  29010. }
  29011. },
  29012. },
  29013. [
  29014. {
  29015. name: "Macro",
  29016. height: math.unit(210, "feet"),
  29017. default: true
  29018. },
  29019. ]
  29020. ))
  29021. characterMakers.push(() => makeCharacter(
  29022. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29023. {
  29024. front: {
  29025. height: math.unit(6, "feet"),
  29026. weight: math.unit(150, "lb"),
  29027. name: "Front",
  29028. image: {
  29029. source: "./media/characters/haze-orris/front.svg",
  29030. extra: 3975 / 3525,
  29031. bottom: 137 / 4112
  29032. }
  29033. },
  29034. },
  29035. [
  29036. {
  29037. name: "Micro",
  29038. height: math.unit(150, "mm"),
  29039. default: true
  29040. },
  29041. ]
  29042. ))
  29043. characterMakers.push(() => makeCharacter(
  29044. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29045. {
  29046. front: {
  29047. height: math.unit(6, "feet"),
  29048. weight: math.unit(150, "lb"),
  29049. name: "Front",
  29050. image: {
  29051. source: "./media/characters/casselene-yaro/front.svg",
  29052. extra: 4721 / 4541,
  29053. bottom: 82 / 4803
  29054. }
  29055. },
  29056. back: {
  29057. height: math.unit(6, "feet"),
  29058. weight: math.unit(150, "lb"),
  29059. name: "Back",
  29060. image: {
  29061. source: "./media/characters/casselene-yaro/back.svg",
  29062. extra: 4569 / 4377,
  29063. bottom: 69 / 4638
  29064. }
  29065. },
  29066. frontDressed: {
  29067. height: math.unit(6, "feet"),
  29068. weight: math.unit(150, "lb"),
  29069. name: "Front-dressed",
  29070. image: {
  29071. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29072. extra: 4721 / 4541,
  29073. bottom: 82 / 4803
  29074. }
  29075. },
  29076. },
  29077. [
  29078. {
  29079. name: "Macro",
  29080. height: math.unit(190, "feet"),
  29081. default: true
  29082. },
  29083. ]
  29084. ))
  29085. characterMakers.push(() => makeCharacter(
  29086. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29087. {
  29088. front: {
  29089. height: math.unit(6, "feet"),
  29090. weight: math.unit(150, "lb"),
  29091. name: "Front",
  29092. image: {
  29093. source: "./media/characters/myra-rue-delore/front.svg",
  29094. extra: 1340 / 1308,
  29095. bottom: 67 / 1407
  29096. }
  29097. },
  29098. back: {
  29099. height: math.unit(6, "feet"),
  29100. weight: math.unit(150, "lb"),
  29101. name: "Back",
  29102. image: {
  29103. source: "./media/characters/myra-rue-delore/back.svg",
  29104. extra: 1341 / 1310,
  29105. bottom: 40 / 1381
  29106. }
  29107. },
  29108. frontDressed: {
  29109. height: math.unit(6, "feet"),
  29110. weight: math.unit(150, "lb"),
  29111. name: "Front (Dressed)",
  29112. image: {
  29113. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29114. extra: 1340 / 1308,
  29115. bottom: 67 / 1407
  29116. }
  29117. },
  29118. },
  29119. [
  29120. {
  29121. name: "Macro",
  29122. height: math.unit(150, "feet"),
  29123. default: true
  29124. },
  29125. ]
  29126. ))
  29127. characterMakers.push(() => makeCharacter(
  29128. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29129. {
  29130. front: {
  29131. height: math.unit(10, "feet"),
  29132. weight: math.unit(15015, "lb"),
  29133. name: "Front",
  29134. image: {
  29135. source: "./media/characters/fem!plat/front.svg",
  29136. extra: 2799 / 2604,
  29137. bottom: 149 / 2948
  29138. }
  29139. },
  29140. },
  29141. [
  29142. {
  29143. name: "Normal",
  29144. height: math.unit(10, "feet"),
  29145. default: true
  29146. },
  29147. {
  29148. name: "Macro",
  29149. height: math.unit(100, "feet")
  29150. },
  29151. {
  29152. name: "Megamacro",
  29153. height: math.unit(1000, "feet")
  29154. },
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29159. {
  29160. front: {
  29161. height: math.unit(15 + 5 / 12, "feet"),
  29162. weight: math.unit(4600, "lb"),
  29163. name: "Front",
  29164. image: {
  29165. source: "./media/characters/neapolitan-ananassa/front.svg",
  29166. extra: 2903 / 2736,
  29167. bottom: 0 / 2903
  29168. }
  29169. },
  29170. side: {
  29171. height: math.unit(15 + 5 / 12, "feet"),
  29172. weight: math.unit(4600, "lb"),
  29173. name: "Side",
  29174. image: {
  29175. source: "./media/characters/neapolitan-ananassa/side.svg",
  29176. extra: 2925 / 2719,
  29177. bottom: 0 / 2925
  29178. }
  29179. },
  29180. back: {
  29181. height: math.unit(15 + 5 / 12, "feet"),
  29182. weight: math.unit(4600, "lb"),
  29183. name: "Back",
  29184. image: {
  29185. source: "./media/characters/neapolitan-ananassa/back.svg",
  29186. extra: 2903 / 2736,
  29187. bottom: 0 / 2903
  29188. }
  29189. },
  29190. },
  29191. [
  29192. {
  29193. name: "Normal",
  29194. height: math.unit(15 + 5 / 12, "feet"),
  29195. default: true
  29196. },
  29197. {
  29198. name: "Post-Millenium",
  29199. height: math.unit(35 + 5 / 12, "feet")
  29200. },
  29201. {
  29202. name: "Post-Era",
  29203. height: math.unit(450 + 5 / 12, "feet")
  29204. },
  29205. ]
  29206. ))
  29207. characterMakers.push(() => makeCharacter(
  29208. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29209. {
  29210. front: {
  29211. height: math.unit(300, "meters"),
  29212. weight: math.unit(125000, "tonnes"),
  29213. name: "Front",
  29214. image: {
  29215. source: "./media/characters/pazuzu/front.svg",
  29216. extra: 877 / 794,
  29217. bottom: 47 / 924
  29218. }
  29219. },
  29220. },
  29221. [
  29222. {
  29223. name: "Macro",
  29224. height: math.unit(300, "meters"),
  29225. default: true
  29226. },
  29227. ]
  29228. ))
  29229. characterMakers.push(() => makeCharacter(
  29230. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29231. {
  29232. side: {
  29233. height: math.unit(10 + 7 / 12, "feet"),
  29234. weight: math.unit(2.5, "tons"),
  29235. name: "Side",
  29236. image: {
  29237. source: "./media/characters/aasha/side.svg",
  29238. extra: 1345 / 1245,
  29239. bottom: 111 / 1456
  29240. }
  29241. },
  29242. back: {
  29243. height: math.unit(10 + 7 / 12, "feet"),
  29244. weight: math.unit(2.5, "tons"),
  29245. name: "Back",
  29246. image: {
  29247. source: "./media/characters/aasha/back.svg",
  29248. extra: 1133 / 1057,
  29249. bottom: 257 / 1390
  29250. }
  29251. },
  29252. },
  29253. [
  29254. {
  29255. name: "Normal",
  29256. height: math.unit(10 + 7 / 12, "feet"),
  29257. default: true
  29258. },
  29259. ]
  29260. ))
  29261. characterMakers.push(() => makeCharacter(
  29262. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29263. {
  29264. front: {
  29265. height: math.unit(6 + 3 / 12, "feet"),
  29266. name: "Front",
  29267. image: {
  29268. source: "./media/characters/nevan/front.svg",
  29269. extra: 704 / 704,
  29270. bottom: 28 / 732
  29271. }
  29272. },
  29273. back: {
  29274. height: math.unit(6 + 3 / 12, "feet"),
  29275. name: "Back",
  29276. image: {
  29277. source: "./media/characters/nevan/back.svg",
  29278. extra: 714 / 714,
  29279. bottom: 21 / 735
  29280. }
  29281. },
  29282. frontFlaccid: {
  29283. height: math.unit(6 + 3 / 12, "feet"),
  29284. name: "Front (Flaccid)",
  29285. image: {
  29286. source: "./media/characters/nevan/front-flaccid.svg",
  29287. extra: 704 / 704,
  29288. bottom: 28 / 732
  29289. }
  29290. },
  29291. frontErect: {
  29292. height: math.unit(6 + 3 / 12, "feet"),
  29293. name: "Front (Erect)",
  29294. image: {
  29295. source: "./media/characters/nevan/front-erect.svg",
  29296. extra: 704 / 704,
  29297. bottom: 28 / 732
  29298. }
  29299. },
  29300. backFlaccid: {
  29301. height: math.unit(6 + 3 / 12, "feet"),
  29302. name: "Back (Flaccid)",
  29303. image: {
  29304. source: "./media/characters/nevan/back-flaccid.svg",
  29305. extra: 714 / 714,
  29306. bottom: 21 / 735
  29307. }
  29308. },
  29309. },
  29310. [
  29311. {
  29312. name: "Normal",
  29313. height: math.unit(6 + 3 / 12, "feet"),
  29314. default: true
  29315. },
  29316. ]
  29317. ))
  29318. characterMakers.push(() => makeCharacter(
  29319. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29320. {
  29321. front: {
  29322. height: math.unit(4, "feet"),
  29323. name: "Front",
  29324. image: {
  29325. source: "./media/characters/arhan/front.svg",
  29326. extra: 3368 / 3133,
  29327. bottom: 0 / 3368
  29328. }
  29329. },
  29330. side: {
  29331. height: math.unit(4, "feet"),
  29332. name: "Side",
  29333. image: {
  29334. source: "./media/characters/arhan/side.svg",
  29335. extra: 3347 / 3105,
  29336. bottom: 0 / 3347
  29337. }
  29338. },
  29339. tongue: {
  29340. height: math.unit(1.42, "feet"),
  29341. name: "Tongue",
  29342. image: {
  29343. source: "./media/characters/arhan/tongue.svg"
  29344. }
  29345. },
  29346. head: {
  29347. height: math.unit(0.85, "feet"),
  29348. name: "Head",
  29349. image: {
  29350. source: "./media/characters/arhan/head.svg"
  29351. }
  29352. },
  29353. },
  29354. [
  29355. {
  29356. name: "Normal",
  29357. height: math.unit(4, "feet"),
  29358. default: true
  29359. },
  29360. ]
  29361. ))
  29362. characterMakers.push(() => makeCharacter(
  29363. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29364. {
  29365. front: {
  29366. height: math.unit(5 + 7.5 / 12, "feet"),
  29367. weight: math.unit(120, "lb"),
  29368. name: "Front",
  29369. image: {
  29370. source: "./media/characters/digi-duncan/front.svg",
  29371. extra: 330 / 326,
  29372. bottom: 16 / 346
  29373. }
  29374. },
  29375. side: {
  29376. height: math.unit(5 + 7.5 / 12, "feet"),
  29377. weight: math.unit(120, "lb"),
  29378. name: "Side",
  29379. image: {
  29380. source: "./media/characters/digi-duncan/side.svg",
  29381. extra: 341 / 337,
  29382. bottom: 1 / 342
  29383. }
  29384. },
  29385. back: {
  29386. height: math.unit(5 + 7.5 / 12, "feet"),
  29387. weight: math.unit(120, "lb"),
  29388. name: "Back",
  29389. image: {
  29390. source: "./media/characters/digi-duncan/back.svg",
  29391. extra: 330 / 326,
  29392. bottom: 12 / 342
  29393. }
  29394. },
  29395. },
  29396. [
  29397. {
  29398. name: "Speck",
  29399. height: math.unit(0.25, "mm")
  29400. },
  29401. {
  29402. name: "Micro",
  29403. height: math.unit(5, "mm")
  29404. },
  29405. {
  29406. name: "Tiny",
  29407. height: math.unit(0.5, "inches"),
  29408. default: true
  29409. },
  29410. {
  29411. name: "Human",
  29412. height: math.unit(5 + 7.5 / 12, "feet")
  29413. },
  29414. {
  29415. name: "Minigiant",
  29416. height: math.unit(8 + 5.25, "feet")
  29417. },
  29418. {
  29419. name: "Giant",
  29420. height: math.unit(2000, "feet")
  29421. },
  29422. {
  29423. name: "Mega",
  29424. height: math.unit(371.1, "miles")
  29425. },
  29426. ]
  29427. ))
  29428. characterMakers.push(() => makeCharacter(
  29429. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29430. {
  29431. front: {
  29432. height: math.unit(2, "meters"),
  29433. weight: math.unit(350, "kg"),
  29434. name: "Front",
  29435. image: {
  29436. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29437. extra: 898 / 838,
  29438. bottom: 9 / 907
  29439. }
  29440. },
  29441. },
  29442. [
  29443. {
  29444. name: "Micro",
  29445. height: math.unit(8, "meters")
  29446. },
  29447. {
  29448. name: "Normal",
  29449. height: math.unit(50, "meters"),
  29450. default: true
  29451. },
  29452. {
  29453. name: "Macro",
  29454. height: math.unit(500, "meters")
  29455. },
  29456. ]
  29457. ))
  29458. characterMakers.push(() => makeCharacter(
  29459. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29460. {
  29461. front: {
  29462. height: math.unit(6 + 6 / 12, "feet"),
  29463. name: "Front",
  29464. image: {
  29465. source: "./media/characters/khardesh/front.svg",
  29466. extra: 888 / 797,
  29467. bottom: 25 / 913
  29468. }
  29469. },
  29470. },
  29471. [
  29472. {
  29473. name: "Normal",
  29474. height: math.unit(6 + 6 / 12, "feet"),
  29475. default: true
  29476. },
  29477. {
  29478. name: "Normal+",
  29479. height: math.unit(4, "meters")
  29480. },
  29481. {
  29482. name: "Macro",
  29483. height: math.unit(50, "meters")
  29484. },
  29485. {
  29486. name: "Macro+",
  29487. height: math.unit(100, "meters")
  29488. },
  29489. {
  29490. name: "Megamacro",
  29491. height: math.unit(20, "km")
  29492. },
  29493. ]
  29494. ))
  29495. characterMakers.push(() => makeCharacter(
  29496. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29497. {
  29498. front: {
  29499. height: math.unit(6, "feet"),
  29500. weight: math.unit(150, "lb"),
  29501. name: "Front",
  29502. image: {
  29503. source: "./media/characters/kosho/front.svg",
  29504. extra: 1847 / 1847,
  29505. bottom: 86 / 1933
  29506. }
  29507. },
  29508. },
  29509. [
  29510. {
  29511. name: "Second-stage micro",
  29512. height: math.unit(0.5, "inches")
  29513. },
  29514. {
  29515. name: "First-stage micro",
  29516. height: math.unit(6, "inches")
  29517. },
  29518. {
  29519. name: "Normal",
  29520. height: math.unit(6, "feet"),
  29521. default: true
  29522. },
  29523. {
  29524. name: "First-stage macro",
  29525. height: math.unit(72, "feet")
  29526. },
  29527. {
  29528. name: "Second-stage macro",
  29529. height: math.unit(864, "feet")
  29530. },
  29531. ]
  29532. ))
  29533. characterMakers.push(() => makeCharacter(
  29534. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29535. {
  29536. normal: {
  29537. height: math.unit(4 + 6 / 12, "feet"),
  29538. name: "Normal",
  29539. image: {
  29540. source: "./media/characters/hydra/normal.svg",
  29541. extra: 2833 / 2634,
  29542. bottom: 68 / 2901
  29543. }
  29544. },
  29545. smol: {
  29546. height: math.unit(0.705, "inches"),
  29547. name: "Smol",
  29548. image: {
  29549. source: "./media/characters/hydra/smol.svg",
  29550. extra: 2715 / 2540,
  29551. bottom: 0 / 2715
  29552. }
  29553. },
  29554. },
  29555. [
  29556. {
  29557. name: "Normal",
  29558. height: math.unit(4 + 6 / 12, "feet"),
  29559. default: true
  29560. }
  29561. ]
  29562. ))
  29563. characterMakers.push(() => makeCharacter(
  29564. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29565. {
  29566. front: {
  29567. height: math.unit(0.6, "cm"),
  29568. name: "Front",
  29569. image: {
  29570. source: "./media/characters/daz/front.svg",
  29571. extra: 1682 / 1164,
  29572. bottom: 42 / 1724
  29573. }
  29574. },
  29575. },
  29576. [
  29577. {
  29578. name: "Normal",
  29579. height: math.unit(0.6, "cm"),
  29580. default: true
  29581. },
  29582. ]
  29583. ))
  29584. characterMakers.push(() => makeCharacter(
  29585. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29586. {
  29587. front: {
  29588. height: math.unit(6, "feet"),
  29589. weight: math.unit(235, "lb"),
  29590. name: "Front",
  29591. image: {
  29592. source: "./media/characters/theo-pangolin/front.svg",
  29593. extra: 1996 / 1969,
  29594. bottom: 115 / 2111
  29595. }
  29596. },
  29597. back: {
  29598. height: math.unit(6, "feet"),
  29599. weight: math.unit(235, "lb"),
  29600. name: "Back",
  29601. image: {
  29602. source: "./media/characters/theo-pangolin/back.svg",
  29603. extra: 1979 / 1979,
  29604. bottom: 40 / 2019
  29605. }
  29606. },
  29607. feral: {
  29608. height: math.unit(2, "feet"),
  29609. weight: math.unit(30, "lb"),
  29610. name: "Feral",
  29611. image: {
  29612. source: "./media/characters/theo-pangolin/feral.svg",
  29613. extra: 803 / 791,
  29614. bottom: 181 / 984
  29615. }
  29616. },
  29617. footFive: {
  29618. height: math.unit(1.43, "feet"),
  29619. name: "Foot (Five Toes)",
  29620. image: {
  29621. source: "./media/characters/theo-pangolin/foot-five.svg"
  29622. }
  29623. },
  29624. footFour: {
  29625. height: math.unit(1.43, "feet"),
  29626. name: "Foot (Four Toes)",
  29627. image: {
  29628. source: "./media/characters/theo-pangolin/foot-four.svg"
  29629. }
  29630. },
  29631. handFour: {
  29632. height: math.unit(0.81, "feet"),
  29633. name: "Hand (Four Fingers)",
  29634. image: {
  29635. source: "./media/characters/theo-pangolin/hand-four.svg"
  29636. }
  29637. },
  29638. handThree: {
  29639. height: math.unit(0.81, "feet"),
  29640. name: "Hand (Three Fingers)",
  29641. image: {
  29642. source: "./media/characters/theo-pangolin/hand-three.svg"
  29643. }
  29644. },
  29645. headFront: {
  29646. height: math.unit(1.37, "feet"),
  29647. name: "Head (Front)",
  29648. image: {
  29649. source: "./media/characters/theo-pangolin/head-front.svg"
  29650. }
  29651. },
  29652. headSide: {
  29653. height: math.unit(1.43, "feet"),
  29654. name: "Head (Side)",
  29655. image: {
  29656. source: "./media/characters/theo-pangolin/head-side.svg"
  29657. }
  29658. },
  29659. tongue: {
  29660. height: math.unit(2.29, "feet"),
  29661. name: "Tongue",
  29662. image: {
  29663. source: "./media/characters/theo-pangolin/tongue.svg"
  29664. }
  29665. },
  29666. },
  29667. [
  29668. {
  29669. name: "Normal",
  29670. height: math.unit(6, "feet")
  29671. },
  29672. {
  29673. name: "Macro",
  29674. height: math.unit(400, "feet"),
  29675. default: true
  29676. },
  29677. ]
  29678. ))
  29679. characterMakers.push(() => makeCharacter(
  29680. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29681. {
  29682. front: {
  29683. height: math.unit(6, "inches"),
  29684. weight: math.unit(0.036, "kg"),
  29685. name: "Front",
  29686. image: {
  29687. source: "./media/characters/renée/front.svg",
  29688. extra: 900 / 886,
  29689. bottom: 8 / 908
  29690. }
  29691. },
  29692. },
  29693. [
  29694. {
  29695. name: "Nano",
  29696. height: math.unit(1, "nm")
  29697. },
  29698. {
  29699. name: "Micro",
  29700. height: math.unit(1, "mm")
  29701. },
  29702. {
  29703. name: "Normal",
  29704. height: math.unit(6, "inches")
  29705. },
  29706. {
  29707. name: "Macro",
  29708. height: math.unit(2000, "feet"),
  29709. default: true
  29710. },
  29711. {
  29712. name: "Megamacro",
  29713. height: math.unit(2, "km")
  29714. },
  29715. {
  29716. name: "Gigamacro",
  29717. height: math.unit(2000, "km")
  29718. },
  29719. {
  29720. name: "Teramacro",
  29721. height: math.unit(250000, "km")
  29722. },
  29723. ]
  29724. ))
  29725. characterMakers.push(() => makeCharacter(
  29726. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29727. {
  29728. front: {
  29729. height: math.unit(4, "meters"),
  29730. weight: math.unit(150, "kg"),
  29731. name: "Front",
  29732. image: {
  29733. source: "./media/characters/caledvwlch/front.svg",
  29734. extra: 1760 / 1551,
  29735. bottom: 28 / 1788
  29736. }
  29737. },
  29738. side: {
  29739. height: math.unit(4, "meters"),
  29740. weight: math.unit(150, "kg"),
  29741. name: "Side",
  29742. image: {
  29743. source: "./media/characters/caledvwlch/side.svg",
  29744. extra: 1605 / 1536,
  29745. bottom: 31 / 1636
  29746. }
  29747. },
  29748. back: {
  29749. height: math.unit(4, "meters"),
  29750. weight: math.unit(150, "kg"),
  29751. name: "Back",
  29752. image: {
  29753. source: "./media/characters/caledvwlch/back.svg",
  29754. extra: 1635 / 1565,
  29755. bottom: 27 / 1662
  29756. }
  29757. },
  29758. },
  29759. [
  29760. {
  29761. name: "\"Incognito\"",
  29762. height: math.unit(4, "meters")
  29763. },
  29764. {
  29765. name: "Small rampage",
  29766. height: math.unit(600, "meters")
  29767. },
  29768. {
  29769. name: "Mega",
  29770. height: math.unit(30, "km")
  29771. },
  29772. {
  29773. name: "Home-size",
  29774. height: math.unit(50, "km"),
  29775. default: true
  29776. },
  29777. {
  29778. name: "Giga",
  29779. height: math.unit(300, "km")
  29780. },
  29781. {
  29782. name: "Lounging",
  29783. height: math.unit(11000, "km")
  29784. },
  29785. {
  29786. name: "Planet snacking",
  29787. height: math.unit(2000000, "km")
  29788. },
  29789. ]
  29790. ))
  29791. characterMakers.push(() => makeCharacter(
  29792. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29793. {
  29794. front: {
  29795. height: math.unit(6, "feet"),
  29796. weight: math.unit(215, "lb"),
  29797. name: "Front",
  29798. image: {
  29799. source: "./media/characters/sapphire-svell/front.svg",
  29800. extra: 495 / 455,
  29801. bottom: 20 / 515
  29802. }
  29803. },
  29804. back: {
  29805. height: math.unit(6, "feet"),
  29806. weight: math.unit(216, "lb"),
  29807. name: "Back",
  29808. image: {
  29809. source: "./media/characters/sapphire-svell/back.svg",
  29810. extra: 497 / 477,
  29811. bottom: 7 / 504
  29812. }
  29813. },
  29814. maw: {
  29815. height: math.unit(1.57, "feet"),
  29816. name: "Maw",
  29817. image: {
  29818. source: "./media/characters/sapphire-svell/maw.svg"
  29819. }
  29820. },
  29821. foot: {
  29822. height: math.unit(1.07, "feet"),
  29823. name: "Foot",
  29824. image: {
  29825. source: "./media/characters/sapphire-svell/foot.svg"
  29826. }
  29827. },
  29828. toering: {
  29829. height: math.unit(1.7, "inch"),
  29830. name: "Toering",
  29831. image: {
  29832. source: "./media/characters/sapphire-svell/toering.svg"
  29833. }
  29834. },
  29835. },
  29836. [
  29837. {
  29838. name: "Normal",
  29839. height: math.unit(300, "feet"),
  29840. default: true
  29841. },
  29842. {
  29843. name: "Augmented",
  29844. height: math.unit(1250, "feet")
  29845. },
  29846. {
  29847. name: "Unleashed",
  29848. height: math.unit(3000, "feet")
  29849. },
  29850. ]
  29851. ))
  29852. characterMakers.push(() => makeCharacter(
  29853. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29854. {
  29855. side: {
  29856. height: math.unit(2 + 3 / 12, "feet"),
  29857. weight: math.unit(110, "lb"),
  29858. name: "Side",
  29859. image: {
  29860. source: "./media/characters/glitch-flux/side.svg",
  29861. extra: 997 / 805,
  29862. bottom: 20 / 1017
  29863. }
  29864. },
  29865. },
  29866. [
  29867. {
  29868. name: "Normal",
  29869. height: math.unit(2 + 3 / 12, "feet"),
  29870. default: true
  29871. },
  29872. ]
  29873. ))
  29874. characterMakers.push(() => makeCharacter(
  29875. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29876. {
  29877. front: {
  29878. height: math.unit(4, "meters"),
  29879. name: "Front",
  29880. image: {
  29881. source: "./media/characters/mid/front.svg",
  29882. extra: 507 / 476,
  29883. bottom: 17 / 524
  29884. }
  29885. },
  29886. back: {
  29887. height: math.unit(4, "meters"),
  29888. name: "Back",
  29889. image: {
  29890. source: "./media/characters/mid/back.svg",
  29891. extra: 519 / 487,
  29892. bottom: 7 / 526
  29893. }
  29894. },
  29895. stuck: {
  29896. height: math.unit(2.2, "meters"),
  29897. name: "Stuck",
  29898. image: {
  29899. source: "./media/characters/mid/stuck.svg",
  29900. extra: 1951 / 1869,
  29901. bottom: 88 / 2039
  29902. }
  29903. }
  29904. },
  29905. [
  29906. {
  29907. name: "Normal",
  29908. height: math.unit(4, "meters"),
  29909. default: true
  29910. },
  29911. {
  29912. name: "Big",
  29913. height: math.unit(10, "meters")
  29914. },
  29915. {
  29916. name: "Macro",
  29917. height: math.unit(800, "meters")
  29918. },
  29919. {
  29920. name: "Megamacro",
  29921. height: math.unit(100, "km")
  29922. },
  29923. {
  29924. name: "Overgrown",
  29925. height: math.unit(1, "parsec")
  29926. },
  29927. ]
  29928. ))
  29929. characterMakers.push(() => makeCharacter(
  29930. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29931. {
  29932. front: {
  29933. height: math.unit(2.5, "meters"),
  29934. weight: math.unit(225, "kg"),
  29935. name: "Front",
  29936. image: {
  29937. source: "./media/characters/iris/front.svg",
  29938. extra: 3348 / 3251,
  29939. bottom: 205 / 3553
  29940. }
  29941. },
  29942. maw: {
  29943. height: math.unit(0.56, "meter"),
  29944. name: "Maw",
  29945. image: {
  29946. source: "./media/characters/iris/maw.svg"
  29947. }
  29948. },
  29949. },
  29950. [
  29951. {
  29952. name: "Mewter cat",
  29953. height: math.unit(1.2, "meters")
  29954. },
  29955. {
  29956. name: "Minimacro",
  29957. height: math.unit(2.5, "meters"),
  29958. default: true
  29959. },
  29960. {
  29961. name: "Macro",
  29962. height: math.unit(180, "meters")
  29963. },
  29964. {
  29965. name: "Megamacro",
  29966. height: math.unit(2746, "meters")
  29967. },
  29968. ]
  29969. ))
  29970. characterMakers.push(() => makeCharacter(
  29971. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29972. {
  29973. front: {
  29974. height: math.unit(6, "feet"),
  29975. weight: math.unit(135, "lb"),
  29976. name: "Front",
  29977. image: {
  29978. source: "./media/characters/axel/front.svg",
  29979. extra: 908 / 908,
  29980. bottom: 58 / 966
  29981. }
  29982. },
  29983. side: {
  29984. height: math.unit(6, "feet"),
  29985. weight: math.unit(135, "lb"),
  29986. name: "Side",
  29987. image: {
  29988. source: "./media/characters/axel/side.svg",
  29989. extra: 958 / 958,
  29990. bottom: 11 / 969
  29991. }
  29992. },
  29993. back: {
  29994. height: math.unit(6, "feet"),
  29995. weight: math.unit(135, "lb"),
  29996. name: "Back",
  29997. image: {
  29998. source: "./media/characters/axel/back.svg",
  29999. extra: 887 / 887,
  30000. bottom: 34 / 921
  30001. }
  30002. },
  30003. head: {
  30004. height: math.unit(1.07, "feet"),
  30005. name: "Head",
  30006. image: {
  30007. source: "./media/characters/axel/head.svg"
  30008. }
  30009. },
  30010. beak: {
  30011. height: math.unit(1.4, "feet"),
  30012. name: "Beak",
  30013. image: {
  30014. source: "./media/characters/axel/beak.svg"
  30015. }
  30016. },
  30017. beakSide: {
  30018. height: math.unit(1.4, "feet"),
  30019. name: "Beak Side",
  30020. image: {
  30021. source: "./media/characters/axel/beak-side.svg"
  30022. }
  30023. },
  30024. sheath: {
  30025. height: math.unit(0.5, "feet"),
  30026. name: "Sheath",
  30027. image: {
  30028. source: "./media/characters/axel/sheath.svg"
  30029. }
  30030. },
  30031. dick: {
  30032. height: math.unit(0.98, "feet"),
  30033. name: "Dick",
  30034. image: {
  30035. source: "./media/characters/axel/dick.svg"
  30036. }
  30037. },
  30038. },
  30039. [
  30040. {
  30041. name: "Macro",
  30042. height: math.unit(68, "meters"),
  30043. default: true
  30044. },
  30045. ]
  30046. ))
  30047. characterMakers.push(() => makeCharacter(
  30048. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30049. {
  30050. front: {
  30051. height: math.unit(3.5, "meters"),
  30052. weight: math.unit(1200, "kg"),
  30053. name: "Front",
  30054. image: {
  30055. source: "./media/characters/joanna/front.svg",
  30056. extra: 1596 / 1488,
  30057. bottom: 29 / 1625
  30058. }
  30059. },
  30060. back: {
  30061. height: math.unit(3.5, "meters"),
  30062. weight: math.unit(1200, "kg"),
  30063. name: "Back",
  30064. image: {
  30065. source: "./media/characters/joanna/back.svg",
  30066. extra: 1594 / 1495,
  30067. bottom: 26 / 1620
  30068. }
  30069. },
  30070. frontShorts: {
  30071. height: math.unit(3.5, "meters"),
  30072. weight: math.unit(1200, "kg"),
  30073. name: "Front (Shorts)",
  30074. image: {
  30075. source: "./media/characters/joanna/front-shorts.svg",
  30076. extra: 1596 / 1488,
  30077. bottom: 29 / 1625
  30078. }
  30079. },
  30080. frontBiker: {
  30081. height: math.unit(3.5, "meters"),
  30082. weight: math.unit(1200, "kg"),
  30083. name: "Front (Biker)",
  30084. image: {
  30085. source: "./media/characters/joanna/front-biker.svg",
  30086. extra: 1596 / 1488,
  30087. bottom: 29 / 1625
  30088. }
  30089. },
  30090. backBiker: {
  30091. height: math.unit(3.5, "meters"),
  30092. weight: math.unit(1200, "kg"),
  30093. name: "Back (Biker)",
  30094. image: {
  30095. source: "./media/characters/joanna/back-biker.svg",
  30096. extra: 1594 / 1495,
  30097. bottom: 88 / 1682
  30098. }
  30099. },
  30100. bikeLeft: {
  30101. height: math.unit(2.4, "meters"),
  30102. weight: math.unit(1600, "kg"),
  30103. name: "Bike (Left)",
  30104. image: {
  30105. source: "./media/characters/joanna/bike-left.svg",
  30106. extra: 720 / 720,
  30107. bottom: 8 / 728
  30108. }
  30109. },
  30110. bikeRight: {
  30111. height: math.unit(2.4, "meters"),
  30112. weight: math.unit(1600, "kg"),
  30113. name: "Bike (Right)",
  30114. image: {
  30115. source: "./media/characters/joanna/bike-right.svg",
  30116. extra: 720 / 720,
  30117. bottom: 8 / 728
  30118. }
  30119. },
  30120. },
  30121. [
  30122. {
  30123. name: "Incognito",
  30124. height: math.unit(3.5, "meters")
  30125. },
  30126. {
  30127. name: "Casual Big",
  30128. height: math.unit(200, "meters")
  30129. },
  30130. {
  30131. name: "Macro",
  30132. height: math.unit(600, "meters")
  30133. },
  30134. {
  30135. name: "Original",
  30136. height: math.unit(20, "km"),
  30137. default: true
  30138. },
  30139. {
  30140. name: "Giga",
  30141. height: math.unit(400, "km")
  30142. },
  30143. {
  30144. name: "Lounging",
  30145. height: math.unit(1500, "km")
  30146. },
  30147. {
  30148. name: "Planetary",
  30149. height: math.unit(200000, "km")
  30150. },
  30151. ]
  30152. ))
  30153. characterMakers.push(() => makeCharacter(
  30154. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30155. {
  30156. front: {
  30157. height: math.unit(6, "feet"),
  30158. weight: math.unit(150, "lb"),
  30159. name: "Front",
  30160. image: {
  30161. source: "./media/characters/hugo-sigil/front.svg",
  30162. extra: 522 / 500,
  30163. bottom: 2 / 524
  30164. }
  30165. },
  30166. back: {
  30167. height: math.unit(6, "feet"),
  30168. weight: math.unit(150, "lb"),
  30169. name: "Back",
  30170. image: {
  30171. source: "./media/characters/hugo-sigil/back.svg",
  30172. extra: 519 / 495,
  30173. bottom: 5 / 524
  30174. }
  30175. },
  30176. maw: {
  30177. height: math.unit(1.4, "feet"),
  30178. weight: math.unit(150, "lb"),
  30179. name: "Maw",
  30180. image: {
  30181. source: "./media/characters/hugo-sigil/maw.svg"
  30182. }
  30183. },
  30184. feet: {
  30185. height: math.unit(1.56, "feet"),
  30186. weight: math.unit(150, "lb"),
  30187. name: "Feet",
  30188. image: {
  30189. source: "./media/characters/hugo-sigil/feet.svg",
  30190. extra: 177 / 177,
  30191. bottom: 12 / 189
  30192. }
  30193. },
  30194. },
  30195. [
  30196. {
  30197. name: "Normal",
  30198. height: math.unit(6, "feet")
  30199. },
  30200. {
  30201. name: "Macro",
  30202. height: math.unit(200, "feet"),
  30203. default: true
  30204. },
  30205. ]
  30206. ))
  30207. characterMakers.push(() => makeCharacter(
  30208. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30209. {
  30210. front: {
  30211. height: math.unit(6, "feet"),
  30212. weight: math.unit(150, "lb"),
  30213. name: "Front",
  30214. image: {
  30215. source: "./media/characters/peri/front.svg",
  30216. extra: 2354 / 2233,
  30217. bottom: 49 / 2403
  30218. }
  30219. },
  30220. },
  30221. [
  30222. {
  30223. name: "Really Small",
  30224. height: math.unit(1, "nm")
  30225. },
  30226. {
  30227. name: "Micro",
  30228. height: math.unit(4, "inches")
  30229. },
  30230. {
  30231. name: "Normal",
  30232. height: math.unit(7, "inches"),
  30233. default: true
  30234. },
  30235. {
  30236. name: "Macro",
  30237. height: math.unit(400, "feet")
  30238. },
  30239. {
  30240. name: "Megamacro",
  30241. height: math.unit(100, "miles")
  30242. },
  30243. ]
  30244. ))
  30245. characterMakers.push(() => makeCharacter(
  30246. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30247. {
  30248. frontSlim: {
  30249. height: math.unit(7, "feet"),
  30250. name: "Front (Slim)",
  30251. image: {
  30252. source: "./media/characters/issilora/front-slim.svg",
  30253. extra: 529 / 449,
  30254. bottom: 53 / 582
  30255. }
  30256. },
  30257. sideSlim: {
  30258. height: math.unit(7, "feet"),
  30259. name: "Side (Slim)",
  30260. image: {
  30261. source: "./media/characters/issilora/side-slim.svg",
  30262. extra: 570 / 480,
  30263. bottom: 30 / 600
  30264. }
  30265. },
  30266. backSlim: {
  30267. height: math.unit(7, "feet"),
  30268. name: "Back (Slim)",
  30269. image: {
  30270. source: "./media/characters/issilora/back-slim.svg",
  30271. extra: 537 / 455,
  30272. bottom: 46 / 583
  30273. }
  30274. },
  30275. frontBuff: {
  30276. height: math.unit(7, "feet"),
  30277. name: "Front (Buff)",
  30278. image: {
  30279. source: "./media/characters/issilora/front-buff.svg",
  30280. extra: 2310 / 2035,
  30281. bottom: 335 / 2645
  30282. }
  30283. },
  30284. head: {
  30285. height: math.unit(1.94, "feet"),
  30286. name: "Head",
  30287. image: {
  30288. source: "./media/characters/issilora/head.svg"
  30289. }
  30290. },
  30291. },
  30292. [
  30293. {
  30294. name: "Minimum",
  30295. height: math.unit(7, "feet")
  30296. },
  30297. {
  30298. name: "Comfortable",
  30299. height: math.unit(17, "feet")
  30300. },
  30301. {
  30302. name: "Fun Size",
  30303. height: math.unit(47, "feet")
  30304. },
  30305. {
  30306. name: "Natural Macro",
  30307. height: math.unit(137, "feet"),
  30308. default: true
  30309. },
  30310. {
  30311. name: "Maximum Kaiju",
  30312. height: math.unit(397, "feet")
  30313. },
  30314. ]
  30315. ))
  30316. characterMakers.push(() => makeCharacter(
  30317. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30318. {
  30319. front: {
  30320. height: math.unit(50 + 9/12, "feet"),
  30321. weight: math.unit(32.8, "tons"),
  30322. name: "Front",
  30323. image: {
  30324. source: "./media/characters/irb'iiritaahn/front.svg",
  30325. extra: 1878/1826,
  30326. bottom: 326/2204
  30327. }
  30328. },
  30329. back: {
  30330. height: math.unit(50 + 9/12, "feet"),
  30331. weight: math.unit(32.8, "tons"),
  30332. name: "Back",
  30333. image: {
  30334. source: "./media/characters/irb'iiritaahn/back.svg",
  30335. extra: 2052/2018,
  30336. bottom: 152/2204
  30337. }
  30338. },
  30339. head: {
  30340. height: math.unit(12.86, "feet"),
  30341. name: "Head",
  30342. image: {
  30343. source: "./media/characters/irb'iiritaahn/head.svg"
  30344. }
  30345. },
  30346. maw: {
  30347. height: math.unit(9.66, "feet"),
  30348. name: "Maw",
  30349. image: {
  30350. source: "./media/characters/irb'iiritaahn/maw.svg"
  30351. }
  30352. },
  30353. frontDick: {
  30354. height: math.unit(8.78461, "feet"),
  30355. name: "Front Dick",
  30356. image: {
  30357. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30358. }
  30359. },
  30360. rearDick: {
  30361. height: math.unit(8.78461, "feet"),
  30362. name: "Rear Dick",
  30363. image: {
  30364. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30365. }
  30366. },
  30367. rearDickUnfolded: {
  30368. height: math.unit(8.78, "feet"),
  30369. name: "Rear Dick (Unfolded)",
  30370. image: {
  30371. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30372. }
  30373. },
  30374. wings: {
  30375. height: math.unit(43, "feet"),
  30376. name: "Wings",
  30377. image: {
  30378. source: "./media/characters/irb'iiritaahn/wings.svg"
  30379. }
  30380. },
  30381. },
  30382. [
  30383. {
  30384. name: "Macro",
  30385. height: math.unit(50 + 9/12, "feet"),
  30386. default: true
  30387. },
  30388. ]
  30389. ))
  30390. characterMakers.push(() => makeCharacter(
  30391. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30392. {
  30393. front: {
  30394. height: math.unit(205, "cm"),
  30395. weight: math.unit(102, "kg"),
  30396. name: "Front",
  30397. image: {
  30398. source: "./media/characters/irbisgreif/front.svg",
  30399. extra: 785/706,
  30400. bottom: 13/798
  30401. }
  30402. },
  30403. back: {
  30404. height: math.unit(205, "cm"),
  30405. weight: math.unit(102, "kg"),
  30406. name: "Back",
  30407. image: {
  30408. source: "./media/characters/irbisgreif/back.svg",
  30409. extra: 713/701,
  30410. bottom: 26/739
  30411. }
  30412. },
  30413. frontDressed: {
  30414. height: math.unit(216, "cm"),
  30415. weight: math.unit(102, "kg"),
  30416. name: "Front-dressed",
  30417. image: {
  30418. source: "./media/characters/irbisgreif/front-dressed.svg",
  30419. extra: 902/776,
  30420. bottom: 14/916
  30421. }
  30422. },
  30423. sideDressed: {
  30424. height: math.unit(195, "cm"),
  30425. weight: math.unit(102, "kg"),
  30426. name: "Side-dressed",
  30427. image: {
  30428. source: "./media/characters/irbisgreif/side-dressed.svg",
  30429. extra: 788/688,
  30430. bottom: 21/809
  30431. }
  30432. },
  30433. backDressed: {
  30434. height: math.unit(216, "cm"),
  30435. weight: math.unit(102, "kg"),
  30436. name: "Back-dressed",
  30437. image: {
  30438. source: "./media/characters/irbisgreif/back-dressed.svg",
  30439. extra: 901/783,
  30440. bottom: 10/911
  30441. }
  30442. },
  30443. dick: {
  30444. height: math.unit(0.49, "feet"),
  30445. name: "Dick",
  30446. image: {
  30447. source: "./media/characters/irbisgreif/dick.svg"
  30448. }
  30449. },
  30450. wingTop: {
  30451. height: math.unit(1.93 , "feet"),
  30452. name: "Wing-top",
  30453. image: {
  30454. source: "./media/characters/irbisgreif/wing-top.svg"
  30455. }
  30456. },
  30457. wingBottom: {
  30458. height: math.unit(1.93 , "feet"),
  30459. name: "Wing-bottom",
  30460. image: {
  30461. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30462. }
  30463. },
  30464. },
  30465. [
  30466. {
  30467. name: "Normal",
  30468. height: math.unit(216, "cm"),
  30469. default: true
  30470. },
  30471. ]
  30472. ))
  30473. characterMakers.push(() => makeCharacter(
  30474. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30475. {
  30476. front: {
  30477. height: math.unit(6, "feet"),
  30478. weight: math.unit(150, "lb"),
  30479. name: "Front",
  30480. image: {
  30481. source: "./media/characters/pride/front.svg",
  30482. extra: 1299/1230,
  30483. bottom: 18/1317
  30484. }
  30485. },
  30486. },
  30487. [
  30488. {
  30489. name: "Normal",
  30490. height: math.unit(7, "feet")
  30491. },
  30492. {
  30493. name: "Mini-macro",
  30494. height: math.unit(11, "feet")
  30495. },
  30496. {
  30497. name: "Macro",
  30498. height: math.unit(15, "meters"),
  30499. default: true
  30500. },
  30501. {
  30502. name: "Macro+",
  30503. height: math.unit(40, "meters")
  30504. },
  30505. ]
  30506. ))
  30507. characterMakers.push(() => makeCharacter(
  30508. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30509. {
  30510. front: {
  30511. height: math.unit(4 + 2 / 12, "feet"),
  30512. weight: math.unit(95, "lb"),
  30513. name: "Front",
  30514. image: {
  30515. source: "./media/characters/vaelophis-nyx/front.svg",
  30516. extra: 2532/2330,
  30517. bottom: 0/2532
  30518. }
  30519. },
  30520. back: {
  30521. height: math.unit(4 + 2 / 12, "feet"),
  30522. weight: math.unit(95, "lb"),
  30523. name: "Back",
  30524. image: {
  30525. source: "./media/characters/vaelophis-nyx/back.svg",
  30526. extra: 2484/2361,
  30527. bottom: 0/2484
  30528. }
  30529. },
  30530. feralSide: {
  30531. height: math.unit(2 + 1/12, "feet"),
  30532. weight: math.unit(20, "lb"),
  30533. name: "Feral (Side)",
  30534. image: {
  30535. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30536. extra: 1721/1581,
  30537. bottom: 70/1791
  30538. }
  30539. },
  30540. feralLazing: {
  30541. height: math.unit(1.08, "feet"),
  30542. weight: math.unit(20, "lb"),
  30543. name: "Feral (Lazing)",
  30544. image: {
  30545. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30546. extra: 822/822,
  30547. bottom: 248/1070
  30548. }
  30549. },
  30550. ear: {
  30551. height: math.unit(0.416, "feet"),
  30552. name: "Ear",
  30553. image: {
  30554. source: "./media/characters/vaelophis-nyx/ear.svg"
  30555. }
  30556. },
  30557. eye: {
  30558. height: math.unit(0.0748, "feet"),
  30559. name: "Eye",
  30560. image: {
  30561. source: "./media/characters/vaelophis-nyx/eye.svg"
  30562. }
  30563. },
  30564. mouth: {
  30565. height: math.unit(0.378, "feet"),
  30566. name: "Mouth",
  30567. image: {
  30568. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30569. }
  30570. },
  30571. spade: {
  30572. height: math.unit(0.55, "feet"),
  30573. name: "Spade",
  30574. image: {
  30575. source: "./media/characters/vaelophis-nyx/spade.svg"
  30576. }
  30577. },
  30578. },
  30579. [
  30580. {
  30581. name: "Normal",
  30582. height: math.unit(4 + 2/12, "feet"),
  30583. default: true
  30584. },
  30585. ]
  30586. ))
  30587. characterMakers.push(() => makeCharacter(
  30588. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30589. {
  30590. front: {
  30591. height: math.unit(7, "feet"),
  30592. weight: math.unit(231, "lb"),
  30593. name: "Front",
  30594. image: {
  30595. source: "./media/characters/flux/front.svg",
  30596. extra: 919/871,
  30597. bottom: 0/919
  30598. }
  30599. },
  30600. back: {
  30601. height: math.unit(7, "feet"),
  30602. weight: math.unit(231, "lb"),
  30603. name: "Back",
  30604. image: {
  30605. source: "./media/characters/flux/back.svg",
  30606. extra: 1040/992,
  30607. bottom: 0/1040
  30608. }
  30609. },
  30610. frontDressed: {
  30611. height: math.unit(7, "feet"),
  30612. weight: math.unit(231, "lb"),
  30613. name: "Front (Dressed)",
  30614. image: {
  30615. source: "./media/characters/flux/front-dressed.svg",
  30616. extra: 919/871,
  30617. bottom: 0/919
  30618. }
  30619. },
  30620. feralSide: {
  30621. height: math.unit(5, "feet"),
  30622. weight: math.unit(150, "lb"),
  30623. name: "Feral (Side)",
  30624. image: {
  30625. source: "./media/characters/flux/feral-side.svg",
  30626. extra: 598/528,
  30627. bottom: 28/626
  30628. }
  30629. },
  30630. head: {
  30631. height: math.unit(1.585, "feet"),
  30632. name: "Head",
  30633. image: {
  30634. source: "./media/characters/flux/head.svg"
  30635. }
  30636. },
  30637. headSide: {
  30638. height: math.unit(1.74, "feet"),
  30639. name: "Head (Side)",
  30640. image: {
  30641. source: "./media/characters/flux/head-side.svg"
  30642. }
  30643. },
  30644. headSideFire: {
  30645. height: math.unit(1.76, "feet"),
  30646. name: "Head (Side, Fire)",
  30647. image: {
  30648. source: "./media/characters/flux/head-side-fire.svg"
  30649. }
  30650. },
  30651. },
  30652. [
  30653. {
  30654. name: "Normal",
  30655. height: math.unit(7, "feet"),
  30656. default: true
  30657. },
  30658. ]
  30659. ))
  30660. characterMakers.push(() => makeCharacter(
  30661. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30662. {
  30663. front: {
  30664. height: math.unit(9, "feet"),
  30665. weight: math.unit(1012, "lb"),
  30666. name: "Front",
  30667. image: {
  30668. source: "./media/characters/ulfra-lupae/front.svg",
  30669. extra: 1083/1011,
  30670. bottom: 67/1150
  30671. }
  30672. },
  30673. },
  30674. [
  30675. {
  30676. name: "Micro",
  30677. height: math.unit(6, "inches")
  30678. },
  30679. {
  30680. name: "Socializing",
  30681. height: math.unit(6 + 5/12, "feet")
  30682. },
  30683. {
  30684. name: "Normal",
  30685. height: math.unit(9, "feet"),
  30686. default: true
  30687. },
  30688. {
  30689. name: "Macro",
  30690. height: math.unit(150, "feet")
  30691. },
  30692. ]
  30693. ))
  30694. characterMakers.push(() => makeCharacter(
  30695. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30696. {
  30697. front: {
  30698. height: math.unit(5 + 2/12, "feet"),
  30699. weight: math.unit(120, "lb"),
  30700. name: "Front",
  30701. image: {
  30702. source: "./media/characters/timber/front.svg",
  30703. extra: 2814/2705,
  30704. bottom: 181/2995
  30705. }
  30706. },
  30707. },
  30708. [
  30709. {
  30710. name: "Normal",
  30711. height: math.unit(5 + 2/12, "feet"),
  30712. default: true
  30713. },
  30714. ]
  30715. ))
  30716. characterMakers.push(() => makeCharacter(
  30717. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30718. {
  30719. front: {
  30720. height: math.unit(5 + 7/12, "feet"),
  30721. weight: math.unit(220, "lb"),
  30722. name: "Front",
  30723. image: {
  30724. source: "./media/characters/nicki/front.svg",
  30725. extra: 453/419,
  30726. bottom: 7/460
  30727. }
  30728. },
  30729. frontAlt: {
  30730. height: math.unit(5 + 7/12, "feet"),
  30731. weight: math.unit(220, "lb"),
  30732. name: "Front-alt",
  30733. image: {
  30734. source: "./media/characters/nicki/front-alt.svg",
  30735. extra: 435/411,
  30736. bottom: 12/447
  30737. }
  30738. },
  30739. back: {
  30740. height: math.unit(5 + 7/12, "feet"),
  30741. weight: math.unit(220, "lb"),
  30742. name: "Back",
  30743. image: {
  30744. source: "./media/characters/nicki/back.svg",
  30745. extra: 440/413,
  30746. bottom: 19/459
  30747. }
  30748. },
  30749. taur: {
  30750. height: math.unit(7 + 6/12, "feet"),
  30751. weight: math.unit(700, "lb"),
  30752. name: "Taur",
  30753. image: {
  30754. source: "./media/characters/nicki/taur.svg",
  30755. extra: 975/773,
  30756. bottom: 0/975
  30757. }
  30758. },
  30759. frontNsfw: {
  30760. height: math.unit(5 + 7/12, "feet"),
  30761. weight: math.unit(220, "lb"),
  30762. name: "Front (NSFW)",
  30763. image: {
  30764. source: "./media/characters/nicki/front-nsfw.svg",
  30765. extra: 453/419,
  30766. bottom: 7/460
  30767. }
  30768. },
  30769. frontNsfwAlt: {
  30770. height: math.unit(5 + 7/12, "feet"),
  30771. weight: math.unit(220, "lb"),
  30772. name: "Front (Alt, NSFW)",
  30773. image: {
  30774. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30775. extra: 435/411,
  30776. bottom: 12/447
  30777. }
  30778. },
  30779. backNsfw: {
  30780. height: math.unit(5 + 7/12, "feet"),
  30781. weight: math.unit(220, "lb"),
  30782. name: "Back (NSFW)",
  30783. image: {
  30784. source: "./media/characters/nicki/back-nsfw.svg",
  30785. extra: 440/413,
  30786. bottom: 19/459
  30787. }
  30788. },
  30789. head: {
  30790. height: math.unit(2.1, "feet"),
  30791. name: "Head",
  30792. image: {
  30793. source: "./media/characters/nicki/head.svg"
  30794. }
  30795. },
  30796. paw: {
  30797. height: math.unit(1.88, "feet"),
  30798. name: "Paw",
  30799. image: {
  30800. source: "./media/characters/nicki/paw.svg"
  30801. }
  30802. },
  30803. },
  30804. [
  30805. {
  30806. name: "Normal",
  30807. height: math.unit(5 + 7/12, "feet"),
  30808. default: true
  30809. },
  30810. ]
  30811. ))
  30812. characterMakers.push(() => makeCharacter(
  30813. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30814. {
  30815. front: {
  30816. height: math.unit(7 + 10/12, "feet"),
  30817. weight: math.unit(3.5, "tons"),
  30818. name: "Front",
  30819. image: {
  30820. source: "./media/characters/lee/front.svg",
  30821. extra: 1773/1615,
  30822. bottom: 86/1859
  30823. }
  30824. },
  30825. hand: {
  30826. height: math.unit(1.78, "feet"),
  30827. name: "Hand",
  30828. image: {
  30829. source: "./media/characters/lee/hand.svg"
  30830. }
  30831. },
  30832. maw: {
  30833. height: math.unit(1.18, "feet"),
  30834. name: "Maw",
  30835. image: {
  30836. source: "./media/characters/lee/maw.svg"
  30837. }
  30838. },
  30839. },
  30840. [
  30841. {
  30842. name: "Normal",
  30843. height: math.unit(7 + 10/12, "feet"),
  30844. default: true
  30845. },
  30846. ]
  30847. ))
  30848. characterMakers.push(() => makeCharacter(
  30849. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30850. {
  30851. front: {
  30852. height: math.unit(9, "feet"),
  30853. name: "Front",
  30854. image: {
  30855. source: "./media/characters/guti/front.svg",
  30856. extra: 4551/4355,
  30857. bottom: 123/4674
  30858. }
  30859. },
  30860. tongue: {
  30861. height: math.unit(1, "feet"),
  30862. name: "Tongue",
  30863. image: {
  30864. source: "./media/characters/guti/tongue.svg"
  30865. }
  30866. },
  30867. paw: {
  30868. height: math.unit(1.18, "feet"),
  30869. name: "Paw",
  30870. image: {
  30871. source: "./media/characters/guti/paw.svg"
  30872. }
  30873. },
  30874. },
  30875. [
  30876. {
  30877. name: "Normal",
  30878. height: math.unit(9, "feet"),
  30879. default: true
  30880. },
  30881. ]
  30882. ))
  30883. characterMakers.push(() => makeCharacter(
  30884. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30885. {
  30886. side: {
  30887. height: math.unit(5, "meters"),
  30888. name: "Side",
  30889. image: {
  30890. source: "./media/characters/vesper/side.svg",
  30891. extra: 1605/1518,
  30892. bottom: 0/1605
  30893. }
  30894. },
  30895. },
  30896. [
  30897. {
  30898. name: "Small",
  30899. height: math.unit(5, "meters")
  30900. },
  30901. {
  30902. name: "Sage",
  30903. height: math.unit(100, "meters"),
  30904. default: true
  30905. },
  30906. {
  30907. name: "Fun Size",
  30908. height: math.unit(600, "meters")
  30909. },
  30910. {
  30911. name: "Goddess",
  30912. height: math.unit(20000, "km")
  30913. },
  30914. {
  30915. name: "Maximum",
  30916. height: math.unit(5, "galaxies")
  30917. },
  30918. ]
  30919. ))
  30920. characterMakers.push(() => makeCharacter(
  30921. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30922. {
  30923. front: {
  30924. height: math.unit(6 + 3/12, "feet"),
  30925. weight: math.unit(190, "lb"),
  30926. name: "Front",
  30927. image: {
  30928. source: "./media/characters/gawain/front.svg",
  30929. extra: 2222/2139,
  30930. bottom: 90/2312
  30931. }
  30932. },
  30933. back: {
  30934. height: math.unit(6 + 3/12, "feet"),
  30935. weight: math.unit(190, "lb"),
  30936. name: "Back",
  30937. image: {
  30938. source: "./media/characters/gawain/back.svg",
  30939. extra: 2199/2111,
  30940. bottom: 73/2272
  30941. }
  30942. },
  30943. },
  30944. [
  30945. {
  30946. name: "Normal",
  30947. height: math.unit(6 + 3/12, "feet"),
  30948. default: true
  30949. },
  30950. ]
  30951. ))
  30952. characterMakers.push(() => makeCharacter(
  30953. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30954. {
  30955. side: {
  30956. height: math.unit(3.5, "meters"),
  30957. weight: math.unit(16000, "lb"),
  30958. name: "Side",
  30959. image: {
  30960. source: "./media/characters/dascalti/side.svg",
  30961. extra: 392/273,
  30962. bottom: 47/439
  30963. }
  30964. },
  30965. breath: {
  30966. height: math.unit(7.4, "feet"),
  30967. name: "Breath",
  30968. image: {
  30969. source: "./media/characters/dascalti/breath.svg"
  30970. }
  30971. },
  30972. fed: {
  30973. height: math.unit(3.6, "meters"),
  30974. weight: math.unit(16000, "lb"),
  30975. name: "Fed",
  30976. image: {
  30977. source: "./media/characters/dascalti/fed.svg",
  30978. extra: 1419/820,
  30979. bottom: 95/1514
  30980. }
  30981. },
  30982. },
  30983. [
  30984. {
  30985. name: "Normal",
  30986. height: math.unit(3.5, "meters"),
  30987. default: true
  30988. },
  30989. ]
  30990. ))
  30991. characterMakers.push(() => makeCharacter(
  30992. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30993. {
  30994. front: {
  30995. height: math.unit(3 + 5/12, "feet"),
  30996. name: "Front",
  30997. image: {
  30998. source: "./media/characters/mauve/front.svg",
  30999. extra: 1126/1033,
  31000. bottom: 65/1191
  31001. }
  31002. },
  31003. side: {
  31004. height: math.unit(3 + 5/12, "feet"),
  31005. name: "Side",
  31006. image: {
  31007. source: "./media/characters/mauve/side.svg",
  31008. extra: 1089/1001,
  31009. bottom: 29/1118
  31010. }
  31011. },
  31012. back: {
  31013. height: math.unit(3 + 5/12, "feet"),
  31014. name: "Back",
  31015. image: {
  31016. source: "./media/characters/mauve/back.svg",
  31017. extra: 1173/1053,
  31018. bottom: 109/1282
  31019. }
  31020. },
  31021. },
  31022. [
  31023. {
  31024. name: "Normal",
  31025. height: math.unit(3 + 5/12, "feet"),
  31026. default: true
  31027. },
  31028. ]
  31029. ))
  31030. characterMakers.push(() => makeCharacter(
  31031. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31032. {
  31033. front: {
  31034. height: math.unit(6 + 3/12, "feet"),
  31035. weight: math.unit(430, "lb"),
  31036. name: "Front",
  31037. image: {
  31038. source: "./media/characters/carlos/front.svg",
  31039. extra: 1964/1913,
  31040. bottom: 70/2034
  31041. }
  31042. },
  31043. },
  31044. [
  31045. {
  31046. name: "Normal",
  31047. height: math.unit(6 + 3/12, "feet"),
  31048. default: true
  31049. },
  31050. ]
  31051. ))
  31052. characterMakers.push(() => makeCharacter(
  31053. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31054. {
  31055. back: {
  31056. height: math.unit(5 + 10/12, "feet"),
  31057. weight: math.unit(200, "lb"),
  31058. name: "Back",
  31059. image: {
  31060. source: "./media/characters/jax/back.svg",
  31061. extra: 764/739,
  31062. bottom: 25/789
  31063. }
  31064. },
  31065. },
  31066. [
  31067. {
  31068. name: "Normal",
  31069. height: math.unit(5 + 10/12, "feet"),
  31070. default: true
  31071. },
  31072. ]
  31073. ))
  31074. characterMakers.push(() => makeCharacter(
  31075. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31076. {
  31077. front: {
  31078. height: math.unit(8, "feet"),
  31079. weight: math.unit(250, "lb"),
  31080. name: "Front",
  31081. image: {
  31082. source: "./media/characters/eikthynir/front.svg",
  31083. extra: 1332/1166,
  31084. bottom: 82/1414
  31085. }
  31086. },
  31087. back: {
  31088. height: math.unit(8, "feet"),
  31089. weight: math.unit(250, "lb"),
  31090. name: "Back",
  31091. image: {
  31092. source: "./media/characters/eikthynir/back.svg",
  31093. extra: 1342/1190,
  31094. bottom: 19/1361
  31095. }
  31096. },
  31097. dick: {
  31098. height: math.unit(2.35, "feet"),
  31099. name: "Dick",
  31100. image: {
  31101. source: "./media/characters/eikthynir/dick.svg"
  31102. }
  31103. },
  31104. },
  31105. [
  31106. {
  31107. name: "Normal",
  31108. height: math.unit(8, "feet"),
  31109. default: true
  31110. },
  31111. ]
  31112. ))
  31113. characterMakers.push(() => makeCharacter(
  31114. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31115. {
  31116. front: {
  31117. height: math.unit(99, "meters"),
  31118. weight: math.unit(13000, "tons"),
  31119. name: "Front",
  31120. image: {
  31121. source: "./media/characters/zlmos/front.svg",
  31122. extra: 2202/1992,
  31123. bottom: 315/2517
  31124. }
  31125. },
  31126. },
  31127. [
  31128. {
  31129. name: "Macro",
  31130. height: math.unit(99, "meters"),
  31131. default: true
  31132. },
  31133. ]
  31134. ))
  31135. characterMakers.push(() => makeCharacter(
  31136. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31137. {
  31138. front: {
  31139. height: math.unit(6 + 5/12, "feet"),
  31140. name: "Front",
  31141. image: {
  31142. source: "./media/characters/purri/front.svg",
  31143. extra: 1698/1610,
  31144. bottom: 32/1730
  31145. }
  31146. },
  31147. frontAlt: {
  31148. height: math.unit(6 + 5/12, "feet"),
  31149. name: "Front (Alt)",
  31150. image: {
  31151. source: "./media/characters/purri/front-alt.svg",
  31152. extra: 450/420,
  31153. bottom: 26/476
  31154. }
  31155. },
  31156. boots: {
  31157. height: math.unit(5.5, "feet"),
  31158. name: "Boots",
  31159. image: {
  31160. source: "./media/characters/purri/boots.svg",
  31161. extra: 905/853,
  31162. bottom: 18/923
  31163. }
  31164. },
  31165. lying: {
  31166. height: math.unit(2, "feet"),
  31167. name: "Lying",
  31168. image: {
  31169. source: "./media/characters/purri/lying.svg",
  31170. extra: 940/843,
  31171. bottom: 146/1086
  31172. }
  31173. },
  31174. devious: {
  31175. height: math.unit(1.77, "feet"),
  31176. name: "Devious",
  31177. image: {
  31178. source: "./media/characters/purri/devious.svg",
  31179. extra: 1440/1155,
  31180. bottom: 147/1587
  31181. }
  31182. },
  31183. bean: {
  31184. height: math.unit(1.94, "feet"),
  31185. name: "Bean",
  31186. image: {
  31187. source: "./media/characters/purri/bean.svg"
  31188. }
  31189. },
  31190. },
  31191. [
  31192. {
  31193. name: "Micro",
  31194. height: math.unit(1, "mm")
  31195. },
  31196. {
  31197. name: "Normal",
  31198. height: math.unit(6 + 5/12, "feet"),
  31199. default: true
  31200. },
  31201. {
  31202. name: "Macro :3c",
  31203. height: math.unit(2, "miles")
  31204. },
  31205. ]
  31206. ))
  31207. characterMakers.push(() => makeCharacter(
  31208. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31209. {
  31210. front: {
  31211. height: math.unit(6 + 2/12, "feet"),
  31212. weight: math.unit(250, "lb"),
  31213. name: "Front",
  31214. image: {
  31215. source: "./media/characters/moonlight/front.svg",
  31216. extra: 1044/908,
  31217. bottom: 56/1100
  31218. }
  31219. },
  31220. feral: {
  31221. height: math.unit(3 + 1/12, "feet"),
  31222. weight: math.unit(50, "kg"),
  31223. name: "Feral",
  31224. image: {
  31225. source: "./media/characters/moonlight/feral.svg",
  31226. extra: 3705/2791,
  31227. bottom: 145/3850
  31228. }
  31229. },
  31230. paw: {
  31231. height: math.unit(1, "feet"),
  31232. name: "Paw",
  31233. image: {
  31234. source: "./media/characters/moonlight/paw.svg"
  31235. }
  31236. },
  31237. paws: {
  31238. height: math.unit(0.98, "feet"),
  31239. name: "Paws",
  31240. image: {
  31241. source: "./media/characters/moonlight/paws.svg",
  31242. extra: 939/939,
  31243. bottom: 50/989
  31244. }
  31245. },
  31246. mouth: {
  31247. height: math.unit(0.48, "feet"),
  31248. name: "Mouth",
  31249. image: {
  31250. source: "./media/characters/moonlight/mouth.svg"
  31251. }
  31252. },
  31253. dick: {
  31254. height: math.unit(1.46, "feet"),
  31255. name: "Dick",
  31256. image: {
  31257. source: "./media/characters/moonlight/dick.svg"
  31258. }
  31259. },
  31260. },
  31261. [
  31262. {
  31263. name: "Normal",
  31264. height: math.unit(6 + 2/12, "feet"),
  31265. default: true
  31266. },
  31267. {
  31268. name: "Macro",
  31269. height: math.unit(300, "feet")
  31270. },
  31271. {
  31272. name: "Macro+",
  31273. height: math.unit(1, "mile")
  31274. },
  31275. {
  31276. name: "Mt. Moon",
  31277. height: math.unit(5, "miles")
  31278. },
  31279. {
  31280. name: "Megamacro",
  31281. height: math.unit(15, "miles")
  31282. },
  31283. ]
  31284. ))
  31285. characterMakers.push(() => makeCharacter(
  31286. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31287. {
  31288. back: {
  31289. height: math.unit(6, "feet"),
  31290. weight: math.unit(150, "lb"),
  31291. name: "Back",
  31292. image: {
  31293. source: "./media/characters/sylen/back.svg",
  31294. extra: 1335/1273,
  31295. bottom: 107/1442
  31296. }
  31297. },
  31298. },
  31299. [
  31300. {
  31301. name: "Normal",
  31302. height: math.unit(5 + 5/12, "feet")
  31303. },
  31304. {
  31305. name: "Megamacro",
  31306. height: math.unit(3, "miles"),
  31307. default: true
  31308. },
  31309. ]
  31310. ))
  31311. characterMakers.push(() => makeCharacter(
  31312. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31313. {
  31314. front: {
  31315. height: math.unit(6, "feet"),
  31316. weight: math.unit(190, "lb"),
  31317. name: "Front",
  31318. image: {
  31319. source: "./media/characters/huttser/front.svg",
  31320. extra: 1152/1058,
  31321. bottom: 23/1175
  31322. }
  31323. },
  31324. side: {
  31325. height: math.unit(6, "feet"),
  31326. weight: math.unit(190, "lb"),
  31327. name: "Side",
  31328. image: {
  31329. source: "./media/characters/huttser/side.svg",
  31330. extra: 1174/1065,
  31331. bottom: 18/1192
  31332. }
  31333. },
  31334. back: {
  31335. height: math.unit(6, "feet"),
  31336. weight: math.unit(190, "lb"),
  31337. name: "Back",
  31338. image: {
  31339. source: "./media/characters/huttser/back.svg",
  31340. extra: 1158/1056,
  31341. bottom: 12/1170
  31342. }
  31343. },
  31344. },
  31345. [
  31346. ]
  31347. ))
  31348. characterMakers.push(() => makeCharacter(
  31349. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31350. {
  31351. side: {
  31352. height: math.unit(12 + 9/12, "feet"),
  31353. weight: math.unit(15000, "lb"),
  31354. name: "Side",
  31355. image: {
  31356. source: "./media/characters/faan/side.svg",
  31357. extra: 2747/2697,
  31358. bottom: 0/2747
  31359. }
  31360. },
  31361. front: {
  31362. height: math.unit(12 + 9/12, "feet"),
  31363. weight: math.unit(15000, "lb"),
  31364. name: "Front",
  31365. image: {
  31366. source: "./media/characters/faan/front.svg",
  31367. extra: 607/571,
  31368. bottom: 24/631
  31369. }
  31370. },
  31371. head: {
  31372. height: math.unit(2.85, "feet"),
  31373. name: "Head",
  31374. image: {
  31375. source: "./media/characters/faan/head.svg"
  31376. }
  31377. },
  31378. headAlt: {
  31379. height: math.unit(3.13, "feet"),
  31380. name: "Head-alt",
  31381. image: {
  31382. source: "./media/characters/faan/head-alt.svg"
  31383. }
  31384. },
  31385. },
  31386. [
  31387. {
  31388. name: "Normal",
  31389. height: math.unit(12 + 9/12, "feet"),
  31390. default: true
  31391. },
  31392. ]
  31393. ))
  31394. characterMakers.push(() => makeCharacter(
  31395. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31396. {
  31397. front: {
  31398. height: math.unit(6, "feet"),
  31399. weight: math.unit(300, "lb"),
  31400. name: "Front",
  31401. image: {
  31402. source: "./media/characters/tanio/front.svg",
  31403. extra: 711/673,
  31404. bottom: 25/736
  31405. }
  31406. },
  31407. },
  31408. [
  31409. {
  31410. name: "Normal",
  31411. height: math.unit(6, "feet"),
  31412. default: true
  31413. },
  31414. ]
  31415. ))
  31416. characterMakers.push(() => makeCharacter(
  31417. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31418. {
  31419. front: {
  31420. height: math.unit(3, "inches"),
  31421. name: "Front",
  31422. image: {
  31423. source: "./media/characters/noboru/front.svg",
  31424. extra: 1039/932,
  31425. bottom: 18/1057
  31426. }
  31427. },
  31428. },
  31429. [
  31430. {
  31431. name: "Micro",
  31432. height: math.unit(3, "inches"),
  31433. default: true
  31434. },
  31435. ]
  31436. ))
  31437. characterMakers.push(() => makeCharacter(
  31438. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31439. {
  31440. front: {
  31441. height: math.unit(1.85, "meters"),
  31442. weight: math.unit(80, "kg"),
  31443. name: "Front",
  31444. image: {
  31445. source: "./media/characters/daniel-barrett/front.svg",
  31446. extra: 355/337,
  31447. bottom: 9/364
  31448. }
  31449. },
  31450. },
  31451. [
  31452. {
  31453. name: "Pico",
  31454. height: math.unit(0.0433, "mm")
  31455. },
  31456. {
  31457. name: "Nano",
  31458. height: math.unit(1.5, "mm")
  31459. },
  31460. {
  31461. name: "Micro",
  31462. height: math.unit(5.3, "cm"),
  31463. default: true
  31464. },
  31465. {
  31466. name: "Normal",
  31467. height: math.unit(1.85, "meters")
  31468. },
  31469. {
  31470. name: "Macro",
  31471. height: math.unit(64.7, "meters")
  31472. },
  31473. {
  31474. name: "Megamacro",
  31475. height: math.unit(2.26, "km")
  31476. },
  31477. {
  31478. name: "Gigamacro",
  31479. height: math.unit(79, "km")
  31480. },
  31481. {
  31482. name: "Teramacro",
  31483. height: math.unit(2765, "km")
  31484. },
  31485. {
  31486. name: "Petamacro",
  31487. height: math.unit(96678, "km")
  31488. },
  31489. ]
  31490. ))
  31491. characterMakers.push(() => makeCharacter(
  31492. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31493. {
  31494. front: {
  31495. height: math.unit(30, "meters"),
  31496. weight: math.unit(400, "tons"),
  31497. name: "Front",
  31498. image: {
  31499. source: "./media/characters/zeel/front.svg",
  31500. extra: 2599/2599,
  31501. bottom: 226/2825
  31502. }
  31503. },
  31504. },
  31505. [
  31506. {
  31507. name: "Macro",
  31508. height: math.unit(30, "meters"),
  31509. default: true
  31510. },
  31511. ]
  31512. ))
  31513. characterMakers.push(() => makeCharacter(
  31514. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31515. {
  31516. front: {
  31517. height: math.unit(6 + 7/12, "feet"),
  31518. weight: math.unit(210, "lb"),
  31519. name: "Front",
  31520. image: {
  31521. source: "./media/characters/tarn/front.svg",
  31522. extra: 3517/3220,
  31523. bottom: 91/3608
  31524. }
  31525. },
  31526. back: {
  31527. height: math.unit(6 + 7/12, "feet"),
  31528. weight: math.unit(210, "lb"),
  31529. name: "Back",
  31530. image: {
  31531. source: "./media/characters/tarn/back.svg",
  31532. extra: 3566/3241,
  31533. bottom: 34/3600
  31534. }
  31535. },
  31536. dick: {
  31537. height: math.unit(1.65, "feet"),
  31538. name: "Dick",
  31539. image: {
  31540. source: "./media/characters/tarn/dick.svg"
  31541. }
  31542. },
  31543. paw: {
  31544. height: math.unit(1.80, "feet"),
  31545. name: "Paw",
  31546. image: {
  31547. source: "./media/characters/tarn/paw.svg"
  31548. }
  31549. },
  31550. tongue: {
  31551. height: math.unit(0.97, "feet"),
  31552. name: "Tongue",
  31553. image: {
  31554. source: "./media/characters/tarn/tongue.svg"
  31555. }
  31556. },
  31557. },
  31558. [
  31559. {
  31560. name: "Micro",
  31561. height: math.unit(4, "inches")
  31562. },
  31563. {
  31564. name: "Normal",
  31565. height: math.unit(6 + 7/12, "feet"),
  31566. default: true
  31567. },
  31568. {
  31569. name: "Macro",
  31570. height: math.unit(300, "feet")
  31571. },
  31572. ]
  31573. ))
  31574. characterMakers.push(() => makeCharacter(
  31575. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31576. {
  31577. front: {
  31578. height: math.unit(5 + 7/12, "feet"),
  31579. weight: math.unit(80, "kg"),
  31580. name: "Front",
  31581. image: {
  31582. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31583. extra: 3023/2865,
  31584. bottom: 33/3056
  31585. }
  31586. },
  31587. back: {
  31588. height: math.unit(5 + 7/12, "feet"),
  31589. weight: math.unit(80, "kg"),
  31590. name: "Back",
  31591. image: {
  31592. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31593. extra: 3020/2886,
  31594. bottom: 30/3050
  31595. }
  31596. },
  31597. dick: {
  31598. height: math.unit(0.98, "feet"),
  31599. name: "Dick",
  31600. image: {
  31601. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31602. }
  31603. },
  31604. anatomy: {
  31605. height: math.unit(2.86, "feet"),
  31606. name: "Anatomy",
  31607. image: {
  31608. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31609. }
  31610. },
  31611. },
  31612. [
  31613. {
  31614. name: "Really Small",
  31615. height: math.unit(2, "inches")
  31616. },
  31617. {
  31618. name: "Micro",
  31619. height: math.unit(5.583, "inches")
  31620. },
  31621. {
  31622. name: "Normal",
  31623. height: math.unit(5 + 7/12, "feet"),
  31624. default: true
  31625. },
  31626. {
  31627. name: "Macro",
  31628. height: math.unit(67, "feet")
  31629. },
  31630. {
  31631. name: "Megamacro",
  31632. height: math.unit(134, "feet")
  31633. },
  31634. ]
  31635. ))
  31636. characterMakers.push(() => makeCharacter(
  31637. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31638. {
  31639. front: {
  31640. height: math.unit(9, "feet"),
  31641. weight: math.unit(120, "lb"),
  31642. name: "Front",
  31643. image: {
  31644. source: "./media/characters/sally/front.svg",
  31645. extra: 1506/1349,
  31646. bottom: 66/1572
  31647. }
  31648. },
  31649. },
  31650. [
  31651. {
  31652. name: "Normal",
  31653. height: math.unit(9, "feet"),
  31654. default: true
  31655. },
  31656. ]
  31657. ))
  31658. characterMakers.push(() => makeCharacter(
  31659. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31660. {
  31661. front: {
  31662. height: math.unit(8, "feet"),
  31663. weight: math.unit(900, "lb"),
  31664. name: "Front",
  31665. image: {
  31666. source: "./media/characters/owen/front.svg",
  31667. extra: 1761/1657,
  31668. bottom: 74/1835
  31669. }
  31670. },
  31671. side: {
  31672. height: math.unit(8, "feet"),
  31673. weight: math.unit(900, "lb"),
  31674. name: "Side",
  31675. image: {
  31676. source: "./media/characters/owen/side.svg",
  31677. extra: 1797/1734,
  31678. bottom: 30/1827
  31679. }
  31680. },
  31681. back: {
  31682. height: math.unit(8, "feet"),
  31683. weight: math.unit(900, "lb"),
  31684. name: "Back",
  31685. image: {
  31686. source: "./media/characters/owen/back.svg",
  31687. extra: 1796/1706,
  31688. bottom: 59/1855
  31689. }
  31690. },
  31691. maw: {
  31692. height: math.unit(1.76, "feet"),
  31693. name: "Maw",
  31694. image: {
  31695. source: "./media/characters/owen/maw.svg"
  31696. }
  31697. },
  31698. },
  31699. [
  31700. {
  31701. name: "Normal",
  31702. height: math.unit(8, "feet"),
  31703. default: true
  31704. },
  31705. ]
  31706. ))
  31707. characterMakers.push(() => makeCharacter(
  31708. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31709. {
  31710. front: {
  31711. height: math.unit(4, "feet"),
  31712. weight: math.unit(400, "lb"),
  31713. name: "Front",
  31714. image: {
  31715. source: "./media/characters/ryth/front.svg",
  31716. extra: 1920/1748,
  31717. bottom: 42/1962
  31718. }
  31719. },
  31720. back: {
  31721. height: math.unit(4, "feet"),
  31722. weight: math.unit(400, "lb"),
  31723. name: "Back",
  31724. image: {
  31725. source: "./media/characters/ryth/back.svg",
  31726. extra: 1897/1690,
  31727. bottom: 89/1986
  31728. }
  31729. },
  31730. mouth: {
  31731. height: math.unit(1.39, "feet"),
  31732. name: "Mouth",
  31733. image: {
  31734. source: "./media/characters/ryth/mouth.svg"
  31735. }
  31736. },
  31737. tailmaw: {
  31738. height: math.unit(1.23, "feet"),
  31739. name: "Tailmaw",
  31740. image: {
  31741. source: "./media/characters/ryth/tailmaw.svg"
  31742. }
  31743. },
  31744. goia: {
  31745. height: math.unit(12, "feet"),
  31746. weight: math.unit(10800, "lb"),
  31747. name: "Goia",
  31748. image: {
  31749. source: "./media/characters/ryth/goia.svg",
  31750. extra: 3450/3198,
  31751. bottom: 61/3511
  31752. }
  31753. },
  31754. },
  31755. [
  31756. {
  31757. name: "Normal",
  31758. height: math.unit(4, "feet"),
  31759. default: true
  31760. },
  31761. ]
  31762. ))
  31763. characterMakers.push(() => makeCharacter(
  31764. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31765. {
  31766. front: {
  31767. height: math.unit(7, "feet"),
  31768. weight: math.unit(180, "lb"),
  31769. name: "Front",
  31770. image: {
  31771. source: "./media/characters/necrolance/front.svg",
  31772. extra: 1062/947,
  31773. bottom: 41/1103
  31774. }
  31775. },
  31776. back: {
  31777. height: math.unit(7, "feet"),
  31778. weight: math.unit(180, "lb"),
  31779. name: "Back",
  31780. image: {
  31781. source: "./media/characters/necrolance/back.svg",
  31782. extra: 1045/984,
  31783. bottom: 14/1059
  31784. }
  31785. },
  31786. wing: {
  31787. height: math.unit(2.67, "feet"),
  31788. name: "Wing",
  31789. image: {
  31790. source: "./media/characters/necrolance/wing.svg"
  31791. }
  31792. },
  31793. },
  31794. [
  31795. {
  31796. name: "Normal",
  31797. height: math.unit(7, "feet"),
  31798. default: true
  31799. },
  31800. ]
  31801. ))
  31802. characterMakers.push(() => makeCharacter(
  31803. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31804. {
  31805. front: {
  31806. height: math.unit(76, "meters"),
  31807. weight: math.unit(30000, "tons"),
  31808. name: "Front",
  31809. image: {
  31810. source: "./media/characters/tyler/front.svg",
  31811. extra: 1640/1640,
  31812. bottom: 114/1754
  31813. }
  31814. },
  31815. },
  31816. [
  31817. {
  31818. name: "Macro",
  31819. height: math.unit(76, "meters"),
  31820. default: true
  31821. },
  31822. ]
  31823. ))
  31824. characterMakers.push(() => makeCharacter(
  31825. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31826. {
  31827. front: {
  31828. height: math.unit(4 + 11/12, "feet"),
  31829. weight: math.unit(132, "lb"),
  31830. name: "Front",
  31831. image: {
  31832. source: "./media/characters/icey/front.svg",
  31833. extra: 2750/2550,
  31834. bottom: 33/2783
  31835. }
  31836. },
  31837. back: {
  31838. height: math.unit(4 + 11/12, "feet"),
  31839. weight: math.unit(132, "lb"),
  31840. name: "Back",
  31841. image: {
  31842. source: "./media/characters/icey/back.svg",
  31843. extra: 2624/2481,
  31844. bottom: 35/2659
  31845. }
  31846. },
  31847. },
  31848. [
  31849. {
  31850. name: "Normal",
  31851. height: math.unit(4 + 11/12, "feet"),
  31852. default: true
  31853. },
  31854. ]
  31855. ))
  31856. characterMakers.push(() => makeCharacter(
  31857. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31858. {
  31859. front: {
  31860. height: math.unit(100, "feet"),
  31861. weight: math.unit(0, "lb"),
  31862. name: "Front",
  31863. image: {
  31864. source: "./media/characters/smile/front.svg",
  31865. extra: 2983/2912,
  31866. bottom: 162/3145
  31867. }
  31868. },
  31869. back: {
  31870. height: math.unit(100, "feet"),
  31871. weight: math.unit(0, "lb"),
  31872. name: "Back",
  31873. image: {
  31874. source: "./media/characters/smile/back.svg",
  31875. extra: 3143/3031,
  31876. bottom: 91/3234
  31877. }
  31878. },
  31879. head: {
  31880. height: math.unit(26.3, "feet"),
  31881. weight: math.unit(0, "lb"),
  31882. name: "Head",
  31883. image: {
  31884. source: "./media/characters/smile/head.svg"
  31885. }
  31886. },
  31887. collar: {
  31888. height: math.unit(5.3, "feet"),
  31889. weight: math.unit(0, "lb"),
  31890. name: "Collar",
  31891. image: {
  31892. source: "./media/characters/smile/collar.svg"
  31893. }
  31894. },
  31895. },
  31896. [
  31897. {
  31898. name: "Macro",
  31899. height: math.unit(100, "feet"),
  31900. default: true
  31901. },
  31902. ]
  31903. ))
  31904. characterMakers.push(() => makeCharacter(
  31905. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31906. {
  31907. dragon: {
  31908. height: math.unit(26, "feet"),
  31909. weight: math.unit(36, "tons"),
  31910. name: "Dragon",
  31911. image: {
  31912. source: "./media/characters/arimphae/dragon.svg",
  31913. extra: 1574/983,
  31914. bottom: 357/1931
  31915. }
  31916. },
  31917. drake: {
  31918. height: math.unit(9, "feet"),
  31919. weight: math.unit(1.5, "tons"),
  31920. name: "Drake",
  31921. image: {
  31922. source: "./media/characters/arimphae/drake.svg",
  31923. extra: 1120/925,
  31924. bottom: 435/1555
  31925. }
  31926. },
  31927. },
  31928. [
  31929. {
  31930. name: "Small",
  31931. height: math.unit(26*5/9, "feet")
  31932. },
  31933. {
  31934. name: "Normal",
  31935. height: math.unit(26, "feet"),
  31936. default: true
  31937. },
  31938. ]
  31939. ))
  31940. characterMakers.push(() => makeCharacter(
  31941. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31942. {
  31943. front: {
  31944. height: math.unit(8 + 9/12, "feet"),
  31945. name: "Front",
  31946. image: {
  31947. source: "./media/characters/xander/front.svg",
  31948. extra: 848/673,
  31949. bottom: 62/910
  31950. }
  31951. },
  31952. },
  31953. [
  31954. {
  31955. name: "Normal",
  31956. height: math.unit(8 + 9/12, "feet"),
  31957. default: true
  31958. },
  31959. {
  31960. name: "Gaze Grabber",
  31961. height: math.unit(13 + 8/12, "feet")
  31962. },
  31963. {
  31964. name: "Jaw Dropper",
  31965. height: math.unit(27, "feet")
  31966. },
  31967. {
  31968. name: "Show Stopper",
  31969. height: math.unit(136, "feet")
  31970. },
  31971. {
  31972. name: "Superstar",
  31973. height: math.unit(1.9e6, "miles")
  31974. },
  31975. ]
  31976. ))
  31977. characterMakers.push(() => makeCharacter(
  31978. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31979. {
  31980. side: {
  31981. height: math.unit(2100, "feet"),
  31982. name: "Side",
  31983. image: {
  31984. source: "./media/characters/osiris/side.svg",
  31985. extra: 1105/939,
  31986. bottom: 167/1272
  31987. }
  31988. },
  31989. },
  31990. [
  31991. {
  31992. name: "Macro",
  31993. height: math.unit(2100, "feet"),
  31994. default: true
  31995. },
  31996. ]
  31997. ))
  31998. characterMakers.push(() => makeCharacter(
  31999. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32000. {
  32001. front: {
  32002. height: math.unit(6 + 8/12, "feet"),
  32003. weight: math.unit(225, "lb"),
  32004. name: "Front",
  32005. image: {
  32006. source: "./media/characters/rhys-londe/front.svg",
  32007. extra: 2258/2141,
  32008. bottom: 188/2446
  32009. }
  32010. },
  32011. back: {
  32012. height: math.unit(6 + 8/12, "feet"),
  32013. weight: math.unit(225, "lb"),
  32014. name: "Back",
  32015. image: {
  32016. source: "./media/characters/rhys-londe/back.svg",
  32017. extra: 2237/2137,
  32018. bottom: 63/2300
  32019. }
  32020. },
  32021. frontNsfw: {
  32022. height: math.unit(6 + 8/12, "feet"),
  32023. weight: math.unit(225, "lb"),
  32024. name: "Front (NSFW)",
  32025. image: {
  32026. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32027. extra: 2258/2141,
  32028. bottom: 188/2446
  32029. }
  32030. },
  32031. backNsfw: {
  32032. height: math.unit(6 + 8/12, "feet"),
  32033. weight: math.unit(225, "lb"),
  32034. name: "Back (NSFW)",
  32035. image: {
  32036. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32037. extra: 2237/2137,
  32038. bottom: 63/2300
  32039. }
  32040. },
  32041. dick: {
  32042. height: math.unit(30, "inches"),
  32043. name: "Dick",
  32044. image: {
  32045. source: "./media/characters/rhys-londe/dick.svg"
  32046. }
  32047. },
  32048. maw: {
  32049. height: math.unit(1.6, "feet"),
  32050. name: "Maw",
  32051. image: {
  32052. source: "./media/characters/rhys-londe/maw.svg"
  32053. }
  32054. },
  32055. },
  32056. [
  32057. {
  32058. name: "Normal",
  32059. height: math.unit(6 + 8/12, "feet"),
  32060. default: true
  32061. },
  32062. ]
  32063. ))
  32064. characterMakers.push(() => makeCharacter(
  32065. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32066. {
  32067. front: {
  32068. height: math.unit(3 + 10/12, "feet"),
  32069. weight: math.unit(90, "lb"),
  32070. name: "Front",
  32071. image: {
  32072. source: "./media/characters/taivas-ensim/front.svg",
  32073. extra: 1327/1216,
  32074. bottom: 96/1423
  32075. }
  32076. },
  32077. back: {
  32078. height: math.unit(3 + 10/12, "feet"),
  32079. weight: math.unit(90, "lb"),
  32080. name: "Back",
  32081. image: {
  32082. source: "./media/characters/taivas-ensim/back.svg",
  32083. extra: 1355/1247,
  32084. bottom: 11/1366
  32085. }
  32086. },
  32087. frontNsfw: {
  32088. height: math.unit(3 + 10/12, "feet"),
  32089. weight: math.unit(90, "lb"),
  32090. name: "Front (NSFW)",
  32091. image: {
  32092. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32093. extra: 1327/1216,
  32094. bottom: 96/1423
  32095. }
  32096. },
  32097. backNsfw: {
  32098. height: math.unit(3 + 10/12, "feet"),
  32099. weight: math.unit(90, "lb"),
  32100. name: "Back (NSFW)",
  32101. image: {
  32102. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32103. extra: 1355/1247,
  32104. bottom: 11/1366
  32105. }
  32106. },
  32107. },
  32108. [
  32109. {
  32110. name: "Normal",
  32111. height: math.unit(3 + 10/12, "feet"),
  32112. default: true
  32113. },
  32114. ]
  32115. ))
  32116. characterMakers.push(() => makeCharacter(
  32117. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32118. {
  32119. front: {
  32120. height: math.unit(9 + 6/12, "feet"),
  32121. weight: math.unit(940, "lb"),
  32122. name: "Front",
  32123. image: {
  32124. source: "./media/characters/byliss/front.svg",
  32125. extra: 1327/1290,
  32126. bottom: 82/1409
  32127. }
  32128. },
  32129. back: {
  32130. height: math.unit(9 + 6/12, "feet"),
  32131. weight: math.unit(940, "lb"),
  32132. name: "Back",
  32133. image: {
  32134. source: "./media/characters/byliss/back.svg",
  32135. extra: 1376/1349,
  32136. bottom: 9/1385
  32137. }
  32138. },
  32139. frontNsfw: {
  32140. height: math.unit(9 + 6/12, "feet"),
  32141. weight: math.unit(940, "lb"),
  32142. name: "Front (NSFW)",
  32143. image: {
  32144. source: "./media/characters/byliss/front-nsfw.svg",
  32145. extra: 1327/1290,
  32146. bottom: 82/1409
  32147. }
  32148. },
  32149. backNsfw: {
  32150. height: math.unit(9 + 6/12, "feet"),
  32151. weight: math.unit(940, "lb"),
  32152. name: "Back (NSFW)",
  32153. image: {
  32154. source: "./media/characters/byliss/back-nsfw.svg",
  32155. extra: 1376/1349,
  32156. bottom: 9/1385
  32157. }
  32158. },
  32159. },
  32160. [
  32161. {
  32162. name: "Normal",
  32163. height: math.unit(9 + 6/12, "feet"),
  32164. default: true
  32165. },
  32166. ]
  32167. ))
  32168. characterMakers.push(() => makeCharacter(
  32169. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32170. {
  32171. front: {
  32172. height: math.unit(5 + 2/12, "feet"),
  32173. weight: math.unit(200, "lb"),
  32174. name: "Front",
  32175. image: {
  32176. source: "./media/characters/noraly/front.svg",
  32177. extra: 4985/4773,
  32178. bottom: 150/5135
  32179. }
  32180. },
  32181. full: {
  32182. height: math.unit(5 + 2/12, "feet"),
  32183. weight: math.unit(164, "lb"),
  32184. name: "Full",
  32185. image: {
  32186. source: "./media/characters/noraly/full.svg",
  32187. extra: 1114/1059,
  32188. bottom: 35/1149
  32189. }
  32190. },
  32191. fuller: {
  32192. height: math.unit(5 + 2/12, "feet"),
  32193. weight: math.unit(230, "lb"),
  32194. name: "Fuller",
  32195. image: {
  32196. source: "./media/characters/noraly/fuller.svg",
  32197. extra: 1114/1059,
  32198. bottom: 35/1149
  32199. }
  32200. },
  32201. fullest: {
  32202. height: math.unit(5 + 2/12, "feet"),
  32203. weight: math.unit(300, "lb"),
  32204. name: "Fullest",
  32205. image: {
  32206. source: "./media/characters/noraly/fullest.svg",
  32207. extra: 1114/1059,
  32208. bottom: 35/1149
  32209. }
  32210. },
  32211. },
  32212. [
  32213. {
  32214. name: "Normal",
  32215. height: math.unit(5 + 2/12, "feet"),
  32216. default: true
  32217. },
  32218. ]
  32219. ))
  32220. characterMakers.push(() => makeCharacter(
  32221. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32222. {
  32223. front: {
  32224. height: math.unit(5 + 2/12, "feet"),
  32225. weight: math.unit(210, "lb"),
  32226. name: "Front",
  32227. image: {
  32228. source: "./media/characters/pera/front.svg",
  32229. extra: 1560/1531,
  32230. bottom: 165/1725
  32231. }
  32232. },
  32233. back: {
  32234. height: math.unit(5 + 2/12, "feet"),
  32235. weight: math.unit(210, "lb"),
  32236. name: "Back",
  32237. image: {
  32238. source: "./media/characters/pera/back.svg",
  32239. extra: 1523/1493,
  32240. bottom: 152/1675
  32241. }
  32242. },
  32243. dick: {
  32244. height: math.unit(2.4, "feet"),
  32245. name: "Dick",
  32246. image: {
  32247. source: "./media/characters/pera/dick.svg"
  32248. }
  32249. },
  32250. },
  32251. [
  32252. {
  32253. name: "Normal",
  32254. height: math.unit(5 + 2/12, "feet"),
  32255. default: true
  32256. },
  32257. ]
  32258. ))
  32259. characterMakers.push(() => makeCharacter(
  32260. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32261. {
  32262. front: {
  32263. height: math.unit(12, "feet"),
  32264. weight: math.unit(3200, "lb"),
  32265. name: "Front",
  32266. image: {
  32267. source: "./media/characters/julian/front.svg",
  32268. extra: 2962/2701,
  32269. bottom: 184/3146
  32270. }
  32271. },
  32272. maw: {
  32273. height: math.unit(5.35, "feet"),
  32274. name: "Maw",
  32275. image: {
  32276. source: "./media/characters/julian/maw.svg"
  32277. }
  32278. },
  32279. paw: {
  32280. height: math.unit(3.07, "feet"),
  32281. name: "Paw",
  32282. image: {
  32283. source: "./media/characters/julian/paw.svg"
  32284. }
  32285. },
  32286. },
  32287. [
  32288. {
  32289. name: "Default",
  32290. height: math.unit(12, "feet"),
  32291. default: true
  32292. },
  32293. {
  32294. name: "Big",
  32295. height: math.unit(50, "feet")
  32296. },
  32297. {
  32298. name: "Really Big",
  32299. height: math.unit(1, "mile")
  32300. },
  32301. {
  32302. name: "Extremely Big",
  32303. height: math.unit(100, "miles")
  32304. },
  32305. {
  32306. name: "Planet Hugger",
  32307. height: math.unit(200, "megameters")
  32308. },
  32309. {
  32310. name: "Unreasonably Big",
  32311. height: math.unit(1e300, "meters")
  32312. },
  32313. ]
  32314. ))
  32315. characterMakers.push(() => makeCharacter(
  32316. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32317. {
  32318. solgooleo: {
  32319. height: math.unit(4, "meters"),
  32320. weight: math.unit(6000*1.5, "kg"),
  32321. volume: math.unit(6000, "liters"),
  32322. name: "Solgooleo",
  32323. image: {
  32324. source: "./media/characters/pi/solgooleo.svg",
  32325. extra: 388/331,
  32326. bottom: 29/417
  32327. }
  32328. },
  32329. },
  32330. [
  32331. {
  32332. name: "Normal",
  32333. height: math.unit(4, "meters"),
  32334. default: true
  32335. },
  32336. ]
  32337. ))
  32338. characterMakers.push(() => makeCharacter(
  32339. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32340. {
  32341. front: {
  32342. height: math.unit(8 + 2/12, "feet"),
  32343. weight: math.unit(4, "tons"),
  32344. name: "Front",
  32345. image: {
  32346. source: "./media/characters/shaun/front.svg",
  32347. extra: 1550/1505,
  32348. bottom: 353/1903
  32349. }
  32350. },
  32351. },
  32352. [
  32353. {
  32354. name: "Lorg",
  32355. height: math.unit(8 + 2/12, "feet"),
  32356. default: true
  32357. },
  32358. ]
  32359. ))
  32360. characterMakers.push(() => makeCharacter(
  32361. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32362. {
  32363. front: {
  32364. height: math.unit(7, "feet"),
  32365. name: "Front",
  32366. image: {
  32367. source: "./media/characters/sini/front.svg",
  32368. extra: 726/678,
  32369. bottom: 35/761
  32370. }
  32371. },
  32372. back: {
  32373. height: math.unit(7, "feet"),
  32374. name: "Back",
  32375. image: {
  32376. source: "./media/characters/sini/back.svg",
  32377. extra: 743/701,
  32378. bottom: 12/755
  32379. }
  32380. },
  32381. mawAnthro: {
  32382. height: math.unit(2.14, "feet"),
  32383. name: "Maw (Anthro)",
  32384. image: {
  32385. source: "./media/characters/sini/maw-anthro.svg"
  32386. }
  32387. },
  32388. dick: {
  32389. height: math.unit(1.45, "feet"),
  32390. name: "Dick (Anthro)",
  32391. image: {
  32392. source: "./media/characters/sini/dick-anthro.svg"
  32393. }
  32394. },
  32395. feral: {
  32396. height: math.unit(16, "feet"),
  32397. name: "Feral",
  32398. image: {
  32399. source: "./media/characters/sini/feral.svg",
  32400. extra: 814/605,
  32401. bottom: 11/825
  32402. }
  32403. },
  32404. mawFeral: {
  32405. height: math.unit(5.66, "feet"),
  32406. name: "Maw-feral",
  32407. image: {
  32408. source: "./media/characters/sini/maw-feral.svg"
  32409. }
  32410. },
  32411. footFeral: {
  32412. height: math.unit(5.17, "feet"),
  32413. name: "Foot-feral",
  32414. image: {
  32415. source: "./media/characters/sini/foot-feral.svg"
  32416. }
  32417. },
  32418. },
  32419. [
  32420. {
  32421. name: "Normal",
  32422. height: math.unit(7, "feet"),
  32423. default: true
  32424. },
  32425. ]
  32426. ))
  32427. characterMakers.push(() => makeCharacter(
  32428. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32429. {
  32430. side: {
  32431. height: math.unit(13, "meters"),
  32432. weight: math.unit(9072, "kg"),
  32433. name: "Side",
  32434. image: {
  32435. source: "./media/characters/raylldo/side.svg",
  32436. extra: 403/344,
  32437. bottom: 42/445
  32438. }
  32439. },
  32440. leaping: {
  32441. height: math.unit(12.3, "meters"),
  32442. weight: math.unit(9072, "kg"),
  32443. name: "Leaping",
  32444. image: {
  32445. source: "./media/characters/raylldo/leaping.svg",
  32446. extra: 470/249,
  32447. bottom: 13/483
  32448. }
  32449. },
  32450. flying: {
  32451. height: math.unit(18, "meters"),
  32452. weight: math.unit(9072, "kg"),
  32453. name: "Flying",
  32454. image: {
  32455. source: "./media/characters/raylldo/flying.svg"
  32456. }
  32457. },
  32458. head: {
  32459. height: math.unit(5.85, "meters"),
  32460. name: "Head",
  32461. image: {
  32462. source: "./media/characters/raylldo/head.svg"
  32463. }
  32464. },
  32465. maw: {
  32466. height: math.unit(5.32, "meters"),
  32467. name: "Maw",
  32468. image: {
  32469. source: "./media/characters/raylldo/maw.svg"
  32470. }
  32471. },
  32472. eye: {
  32473. height: math.unit(0.54, "meters"),
  32474. name: "Eye",
  32475. image: {
  32476. source: "./media/characters/raylldo/eye.svg"
  32477. }
  32478. },
  32479. },
  32480. [
  32481. {
  32482. name: "Normal",
  32483. height: math.unit(13, "meters"),
  32484. default: true
  32485. },
  32486. ]
  32487. ))
  32488. characterMakers.push(() => makeCharacter(
  32489. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32490. {
  32491. anthroFront: {
  32492. height: math.unit(9, "feet"),
  32493. weight: math.unit(600, "lb"),
  32494. name: "Anthro (Front)",
  32495. image: {
  32496. source: "./media/characters/glint/anthro-front.svg",
  32497. extra: 1097/1018,
  32498. bottom: 28/1125
  32499. }
  32500. },
  32501. anthroBack: {
  32502. height: math.unit(9, "feet"),
  32503. weight: math.unit(600, "lb"),
  32504. name: "Anthro (Back)",
  32505. image: {
  32506. source: "./media/characters/glint/anthro-back.svg",
  32507. extra: 1154/997,
  32508. bottom: 36/1190
  32509. }
  32510. },
  32511. feral: {
  32512. height: math.unit(11, "feet"),
  32513. weight: math.unit(50000, "lb"),
  32514. name: "Feral",
  32515. image: {
  32516. source: "./media/characters/glint/feral.svg",
  32517. extra: 3035/1585,
  32518. bottom: 1169/4204
  32519. }
  32520. },
  32521. dickAnthro: {
  32522. height: math.unit(0.7, "meters"),
  32523. name: "Dick (Anthro)",
  32524. image: {
  32525. source: "./media/characters/glint/dick-anthro.svg"
  32526. }
  32527. },
  32528. dickFeral: {
  32529. height: math.unit(2.65, "meters"),
  32530. name: "Dick (Feral)",
  32531. image: {
  32532. source: "./media/characters/glint/dick-feral.svg"
  32533. }
  32534. },
  32535. slitHidden: {
  32536. height: math.unit(5.85, "meters"),
  32537. name: "Slit (Hidden)",
  32538. image: {
  32539. source: "./media/characters/glint/slit-hidden.svg"
  32540. }
  32541. },
  32542. slitErect: {
  32543. height: math.unit(5.85, "meters"),
  32544. name: "Slit (Erect)",
  32545. image: {
  32546. source: "./media/characters/glint/slit-erect.svg"
  32547. }
  32548. },
  32549. mawAnthro: {
  32550. height: math.unit(0.63, "meters"),
  32551. name: "Maw (Anthro)",
  32552. image: {
  32553. source: "./media/characters/glint/maw.svg"
  32554. }
  32555. },
  32556. mawFeral: {
  32557. height: math.unit(2.89, "meters"),
  32558. name: "Maw (Feral)",
  32559. image: {
  32560. source: "./media/characters/glint/maw.svg"
  32561. }
  32562. },
  32563. },
  32564. [
  32565. {
  32566. name: "Normal",
  32567. height: math.unit(9, "feet"),
  32568. default: true
  32569. },
  32570. ]
  32571. ))
  32572. characterMakers.push(() => makeCharacter(
  32573. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32574. {
  32575. side: {
  32576. height: math.unit(15, "feet"),
  32577. weight: math.unit(5000, "kg"),
  32578. name: "Side",
  32579. image: {
  32580. source: "./media/characters/kairne/side.svg",
  32581. extra: 979/811,
  32582. bottom: 13/992
  32583. }
  32584. },
  32585. front: {
  32586. height: math.unit(15, "feet"),
  32587. weight: math.unit(5000, "kg"),
  32588. name: "Front",
  32589. image: {
  32590. source: "./media/characters/kairne/front.svg",
  32591. extra: 908/814,
  32592. bottom: 26/934
  32593. }
  32594. },
  32595. sideNsfw: {
  32596. height: math.unit(15, "feet"),
  32597. weight: math.unit(5000, "kg"),
  32598. name: "Side (NSFW)",
  32599. image: {
  32600. source: "./media/characters/kairne/side-nsfw.svg",
  32601. extra: 979/811,
  32602. bottom: 13/992
  32603. }
  32604. },
  32605. frontNsfw: {
  32606. height: math.unit(15, "feet"),
  32607. weight: math.unit(5000, "kg"),
  32608. name: "Front (NSFW)",
  32609. image: {
  32610. source: "./media/characters/kairne/front-nsfw.svg",
  32611. extra: 908/814,
  32612. bottom: 26/934
  32613. }
  32614. },
  32615. dickCaged: {
  32616. height: math.unit(0.65, "meters"),
  32617. name: "Dick-caged",
  32618. image: {
  32619. source: "./media/characters/kairne/dick-caged.svg"
  32620. }
  32621. },
  32622. dick: {
  32623. height: math.unit(0.79, "meters"),
  32624. name: "Dick",
  32625. image: {
  32626. source: "./media/characters/kairne/dick.svg"
  32627. }
  32628. },
  32629. genitals: {
  32630. height: math.unit(1.29, "meters"),
  32631. name: "Genitals",
  32632. image: {
  32633. source: "./media/characters/kairne/genitals.svg"
  32634. }
  32635. },
  32636. maw: {
  32637. height: math.unit(1.73, "meters"),
  32638. name: "Maw",
  32639. image: {
  32640. source: "./media/characters/kairne/maw.svg"
  32641. }
  32642. },
  32643. },
  32644. [
  32645. {
  32646. name: "Normal",
  32647. height: math.unit(15, "feet"),
  32648. default: true
  32649. },
  32650. ]
  32651. ))
  32652. characterMakers.push(() => makeCharacter(
  32653. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32654. {
  32655. front: {
  32656. height: math.unit(5 + 8/12, "feet"),
  32657. weight: math.unit(139, "lb"),
  32658. name: "Front",
  32659. image: {
  32660. source: "./media/characters/biscuit-jackal/front.svg",
  32661. extra: 2106/1961,
  32662. bottom: 58/2164
  32663. }
  32664. },
  32665. back: {
  32666. height: math.unit(5 + 8/12, "feet"),
  32667. weight: math.unit(139, "lb"),
  32668. name: "Back",
  32669. image: {
  32670. source: "./media/characters/biscuit-jackal/back.svg",
  32671. extra: 2132/1976,
  32672. bottom: 57/2189
  32673. }
  32674. },
  32675. werejackal: {
  32676. height: math.unit(6 + 3/12, "feet"),
  32677. weight: math.unit(188, "lb"),
  32678. name: "Werejackal",
  32679. image: {
  32680. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32681. extra: 2373/2178,
  32682. bottom: 53/2426
  32683. }
  32684. },
  32685. },
  32686. [
  32687. {
  32688. name: "Normal",
  32689. height: math.unit(5 + 8/12, "feet"),
  32690. default: true
  32691. },
  32692. ]
  32693. ))
  32694. characterMakers.push(() => makeCharacter(
  32695. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32696. {
  32697. front: {
  32698. height: math.unit(140, "cm"),
  32699. weight: math.unit(45, "kg"),
  32700. name: "Front",
  32701. image: {
  32702. source: "./media/characters/tayra-white/front.svg",
  32703. extra: 2229/2192,
  32704. bottom: 75/2304
  32705. }
  32706. },
  32707. },
  32708. [
  32709. {
  32710. name: "Normal",
  32711. height: math.unit(140, "cm"),
  32712. default: true
  32713. },
  32714. ]
  32715. ))
  32716. characterMakers.push(() => makeCharacter(
  32717. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32718. {
  32719. front: {
  32720. height: math.unit(4 + 5/12, "feet"),
  32721. name: "Front",
  32722. image: {
  32723. source: "./media/characters/scoop/front.svg",
  32724. extra: 1257/1136,
  32725. bottom: 69/1326
  32726. }
  32727. },
  32728. back: {
  32729. height: math.unit(4 + 5/12, "feet"),
  32730. name: "Back",
  32731. image: {
  32732. source: "./media/characters/scoop/back.svg",
  32733. extra: 1321/1152,
  32734. bottom: 32/1353
  32735. }
  32736. },
  32737. maw: {
  32738. height: math.unit(0.68, "feet"),
  32739. name: "Maw",
  32740. image: {
  32741. source: "./media/characters/scoop/maw.svg"
  32742. }
  32743. },
  32744. },
  32745. [
  32746. {
  32747. name: "Really Small",
  32748. height: math.unit(1, "mm")
  32749. },
  32750. {
  32751. name: "Micro",
  32752. height: math.unit(1, "inch")
  32753. },
  32754. {
  32755. name: "Normal",
  32756. height: math.unit(4 + 5/12, "feet"),
  32757. default: true
  32758. },
  32759. {
  32760. name: "Macro",
  32761. height: math.unit(200, "feet")
  32762. },
  32763. {
  32764. name: "Megamacro",
  32765. height: math.unit(3240, "feet")
  32766. },
  32767. {
  32768. name: "Teramacro",
  32769. height: math.unit(2500, "miles")
  32770. },
  32771. ]
  32772. ))
  32773. characterMakers.push(() => makeCharacter(
  32774. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32775. {
  32776. front: {
  32777. height: math.unit(15 + 7/12, "feet"),
  32778. name: "Front",
  32779. image: {
  32780. source: "./media/characters/saphinara/front.svg",
  32781. extra: 604/546,
  32782. bottom: 19/623
  32783. }
  32784. },
  32785. side: {
  32786. height: math.unit(15 + 7/12, "feet"),
  32787. name: "Side",
  32788. image: {
  32789. source: "./media/characters/saphinara/side.svg",
  32790. extra: 605/547,
  32791. bottom: 6/611
  32792. }
  32793. },
  32794. back: {
  32795. height: math.unit(15 + 7/12, "feet"),
  32796. name: "Back",
  32797. image: {
  32798. source: "./media/characters/saphinara/back.svg",
  32799. extra: 591/531,
  32800. bottom: 13/604
  32801. }
  32802. },
  32803. frontTail: {
  32804. height: math.unit(15 + 7/12, "feet"),
  32805. name: "Front (Full Tail)",
  32806. image: {
  32807. source: "./media/characters/saphinara/front-tail.svg",
  32808. extra: 748/547,
  32809. bottom: 66/814
  32810. }
  32811. },
  32812. },
  32813. [
  32814. {
  32815. name: "Normal",
  32816. height: math.unit(15 + 7/12, "feet"),
  32817. default: true
  32818. },
  32819. {
  32820. name: "Angry",
  32821. height: math.unit(30 + 6/12, "feet")
  32822. },
  32823. {
  32824. name: "Enraged",
  32825. height: math.unit(102 + 1/12, "feet")
  32826. },
  32827. ]
  32828. ))
  32829. characterMakers.push(() => makeCharacter(
  32830. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32831. {
  32832. front: {
  32833. height: math.unit(6 + 8/12, "feet"),
  32834. weight: math.unit(300, "lb"),
  32835. name: "Front",
  32836. image: {
  32837. source: "./media/characters/jrain/front.svg",
  32838. extra: 3039/2865,
  32839. bottom: 399/3438
  32840. }
  32841. },
  32842. back: {
  32843. height: math.unit(6 + 8/12, "feet"),
  32844. weight: math.unit(300, "lb"),
  32845. name: "Back",
  32846. image: {
  32847. source: "./media/characters/jrain/back.svg",
  32848. extra: 3089/2938,
  32849. bottom: 172/3261
  32850. }
  32851. },
  32852. head: {
  32853. height: math.unit(2.14, "feet"),
  32854. name: "Head",
  32855. image: {
  32856. source: "./media/characters/jrain/head.svg"
  32857. }
  32858. },
  32859. maw: {
  32860. height: math.unit(1.77, "feet"),
  32861. name: "Maw",
  32862. image: {
  32863. source: "./media/characters/jrain/maw.svg"
  32864. }
  32865. },
  32866. leftHand: {
  32867. height: math.unit(1.1, "feet"),
  32868. name: "Left Hand",
  32869. image: {
  32870. source: "./media/characters/jrain/left-hand.svg"
  32871. }
  32872. },
  32873. rightHand: {
  32874. height: math.unit(1.1, "feet"),
  32875. name: "Right Hand",
  32876. image: {
  32877. source: "./media/characters/jrain/right-hand.svg"
  32878. }
  32879. },
  32880. eye: {
  32881. height: math.unit(0.35, "feet"),
  32882. name: "Eye",
  32883. image: {
  32884. source: "./media/characters/jrain/eye.svg"
  32885. }
  32886. },
  32887. },
  32888. [
  32889. {
  32890. name: "Normal",
  32891. height: math.unit(6 + 8/12, "feet"),
  32892. default: true
  32893. },
  32894. {
  32895. name: "Casually Large",
  32896. height: math.unit(25, "feet")
  32897. },
  32898. {
  32899. name: "Giant",
  32900. height: math.unit(100, "feet")
  32901. },
  32902. {
  32903. name: "Kaiju",
  32904. height: math.unit(300, "feet")
  32905. },
  32906. ]
  32907. ))
  32908. characterMakers.push(() => makeCharacter(
  32909. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32910. {
  32911. dragon: {
  32912. height: math.unit(5, "meters"),
  32913. name: "Dragon",
  32914. image: {
  32915. source: "./media/characters/sabrina/dragon.svg",
  32916. extra: 3670 / 2365,
  32917. bottom: 333 / 4003
  32918. }
  32919. },
  32920. gryphon: {
  32921. height: math.unit(3, "meters"),
  32922. name: "Gryphon",
  32923. image: {
  32924. source: "./media/characters/sabrina/gryphon.svg",
  32925. extra: 1576 / 945,
  32926. bottom: 71 / 1647
  32927. }
  32928. },
  32929. snake: {
  32930. height: math.unit(12, "meters"),
  32931. name: "Snake",
  32932. image: {
  32933. source: "./media/characters/sabrina/snake.svg",
  32934. extra: 1758 / 1320,
  32935. bottom: 186 / 1944
  32936. }
  32937. },
  32938. collar: {
  32939. height: math.unit(1.86, "meters"),
  32940. name: "Collar",
  32941. image: {
  32942. source: "./media/characters/sabrina/collar.svg"
  32943. }
  32944. },
  32945. eye: {
  32946. height: math.unit(0.53, "meters"),
  32947. name: "Eye",
  32948. image: {
  32949. source: "./media/characters/sabrina/eye.svg"
  32950. }
  32951. },
  32952. foot: {
  32953. height: math.unit(1.86, "meters"),
  32954. name: "Foot",
  32955. image: {
  32956. source: "./media/characters/sabrina/foot.svg"
  32957. }
  32958. },
  32959. hand: {
  32960. height: math.unit(1.32, "meters"),
  32961. name: "Hand",
  32962. image: {
  32963. source: "./media/characters/sabrina/hand.svg"
  32964. }
  32965. },
  32966. head: {
  32967. height: math.unit(2.44, "meters"),
  32968. name: "Head",
  32969. image: {
  32970. source: "./media/characters/sabrina/head.svg"
  32971. }
  32972. },
  32973. headAngry: {
  32974. height: math.unit(2.44, "meters"),
  32975. name: "Head (Angry))",
  32976. image: {
  32977. source: "./media/characters/sabrina/head-angry.svg"
  32978. }
  32979. },
  32980. maw: {
  32981. height: math.unit(1.65, "meters"),
  32982. name: "Maw",
  32983. image: {
  32984. source: "./media/characters/sabrina/maw.svg"
  32985. }
  32986. },
  32987. spikes: {
  32988. height: math.unit(1.69, "meters"),
  32989. name: "Spikes",
  32990. image: {
  32991. source: "./media/characters/sabrina/spikes.svg"
  32992. }
  32993. },
  32994. stomach: {
  32995. height: math.unit(1.15, "meters"),
  32996. name: "Stomach",
  32997. image: {
  32998. source: "./media/characters/sabrina/stomach.svg"
  32999. }
  33000. },
  33001. tongue: {
  33002. height: math.unit(1.27, "meters"),
  33003. name: "Tongue",
  33004. image: {
  33005. source: "./media/characters/sabrina/tongue.svg"
  33006. }
  33007. },
  33008. wingDorsal: {
  33009. height: math.unit(4.85, "meters"),
  33010. name: "Wing (Dorsal)",
  33011. image: {
  33012. source: "./media/characters/sabrina/wing-dorsal.svg"
  33013. }
  33014. },
  33015. wingVentral: {
  33016. height: math.unit(4.85, "meters"),
  33017. name: "Wing (Ventral)",
  33018. image: {
  33019. source: "./media/characters/sabrina/wing-ventral.svg"
  33020. }
  33021. },
  33022. },
  33023. [
  33024. {
  33025. name: "Normal",
  33026. height: math.unit(5, "meters"),
  33027. default: true
  33028. },
  33029. ]
  33030. ))
  33031. characterMakers.push(() => makeCharacter(
  33032. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33033. {
  33034. frontMaid: {
  33035. height: math.unit(5 + 5/12, "feet"),
  33036. weight: math.unit(130, "lb"),
  33037. name: "Front (Maid)",
  33038. image: {
  33039. source: "./media/characters/midnight-tales/front-maid.svg",
  33040. extra: 489/454,
  33041. bottom: 61/550
  33042. }
  33043. },
  33044. frontFormal: {
  33045. height: math.unit(5 + 5/12, "feet"),
  33046. weight: math.unit(130, "lb"),
  33047. name: "Front (Formal)",
  33048. image: {
  33049. source: "./media/characters/midnight-tales/front-formal.svg",
  33050. extra: 489/454,
  33051. bottom: 61/550
  33052. }
  33053. },
  33054. back: {
  33055. height: math.unit(5 + 5/12, "feet"),
  33056. weight: math.unit(130, "lb"),
  33057. name: "Back",
  33058. image: {
  33059. source: "./media/characters/midnight-tales/back.svg",
  33060. extra: 498/456,
  33061. bottom: 33/531
  33062. }
  33063. },
  33064. frontBeast: {
  33065. height: math.unit(40, "feet"),
  33066. weight: math.unit(64000, "lb"),
  33067. name: "Front (Beast)",
  33068. image: {
  33069. source: "./media/characters/midnight-tales/front-beast.svg",
  33070. extra: 927/860,
  33071. bottom: 53/980
  33072. }
  33073. },
  33074. backBeast: {
  33075. height: math.unit(40, "feet"),
  33076. weight: math.unit(64000, "lb"),
  33077. name: "Back (Beast)",
  33078. image: {
  33079. source: "./media/characters/midnight-tales/back-beast.svg",
  33080. extra: 929/855,
  33081. bottom: 16/945
  33082. }
  33083. },
  33084. footBeast: {
  33085. height: math.unit(6.7, "feet"),
  33086. name: "Foot (Beast)",
  33087. image: {
  33088. source: "./media/characters/midnight-tales/foot-beast.svg"
  33089. }
  33090. },
  33091. headBeast: {
  33092. height: math.unit(8, "feet"),
  33093. name: "Head (Beast)",
  33094. image: {
  33095. source: "./media/characters/midnight-tales/head-beast.svg"
  33096. }
  33097. },
  33098. },
  33099. [
  33100. {
  33101. name: "Normal",
  33102. height: math.unit(5 + 5 / 12, "feet"),
  33103. default: true
  33104. },
  33105. {
  33106. name: "Macro",
  33107. height: math.unit(25, "feet")
  33108. },
  33109. ]
  33110. ))
  33111. characterMakers.push(() => makeCharacter(
  33112. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33113. {
  33114. front: {
  33115. height: math.unit(5 + 10/12, "feet"),
  33116. name: "Front",
  33117. image: {
  33118. source: "./media/characters/argon/front.svg",
  33119. extra: 2009/1935,
  33120. bottom: 118/2127
  33121. }
  33122. },
  33123. back: {
  33124. height: math.unit(5 + 10/12, "feet"),
  33125. name: "Back",
  33126. image: {
  33127. source: "./media/characters/argon/back.svg",
  33128. extra: 2047/1992,
  33129. bottom: 20/2067
  33130. }
  33131. },
  33132. frontDressed: {
  33133. height: math.unit(5 + 10/12, "feet"),
  33134. name: "Front (Dressed)",
  33135. image: {
  33136. source: "./media/characters/argon/front-dressed.svg",
  33137. extra: 2009/1935,
  33138. bottom: 118/2127
  33139. }
  33140. },
  33141. },
  33142. [
  33143. {
  33144. name: "Normal",
  33145. height: math.unit(5 + 10/12, "feet"),
  33146. default: true
  33147. },
  33148. ]
  33149. ))
  33150. characterMakers.push(() => makeCharacter(
  33151. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33152. {
  33153. front: {
  33154. height: math.unit(8 + 6/12, "feet"),
  33155. weight: math.unit(1150, "lb"),
  33156. name: "Front",
  33157. image: {
  33158. source: "./media/characters/kichi/front.svg",
  33159. extra: 1267/1164,
  33160. bottom: 61/1328
  33161. }
  33162. },
  33163. back: {
  33164. height: math.unit(8 + 6/12, "feet"),
  33165. weight: math.unit(1150, "lb"),
  33166. name: "Back",
  33167. image: {
  33168. source: "./media/characters/kichi/back.svg",
  33169. extra: 1273/1166,
  33170. bottom: 33/1306
  33171. }
  33172. },
  33173. },
  33174. [
  33175. {
  33176. name: "Normal",
  33177. height: math.unit(8 + 6/12, "feet"),
  33178. default: true
  33179. },
  33180. ]
  33181. ))
  33182. characterMakers.push(() => makeCharacter(
  33183. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33184. {
  33185. front: {
  33186. height: math.unit(6, "feet"),
  33187. weight: math.unit(210, "lb"),
  33188. name: "Front",
  33189. image: {
  33190. source: "./media/characters/manetel-greyscale/front.svg",
  33191. extra: 350/312,
  33192. bottom: 8/358
  33193. }
  33194. },
  33195. },
  33196. [
  33197. {
  33198. name: "Micro",
  33199. height: math.unit(2, "inches")
  33200. },
  33201. {
  33202. name: "Normal",
  33203. height: math.unit(6, "feet"),
  33204. default: true
  33205. },
  33206. {
  33207. name: "Minimacro",
  33208. height: math.unit(17, "feet")
  33209. },
  33210. {
  33211. name: "Macro",
  33212. height: math.unit(117, "feet")
  33213. },
  33214. ]
  33215. ))
  33216. characterMakers.push(() => makeCharacter(
  33217. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33218. {
  33219. side: {
  33220. height: math.unit(5 + 1/12, "feet"),
  33221. weight: math.unit(418, "lb"),
  33222. name: "Side",
  33223. image: {
  33224. source: "./media/characters/softpurr/side.svg",
  33225. extra: 1993/1945,
  33226. bottom: 134/2127
  33227. }
  33228. },
  33229. front: {
  33230. height: math.unit(5 + 1/12, "feet"),
  33231. weight: math.unit(418, "lb"),
  33232. name: "Front",
  33233. image: {
  33234. source: "./media/characters/softpurr/front.svg",
  33235. extra: 1950/1856,
  33236. bottom: 174/2124
  33237. }
  33238. },
  33239. paw: {
  33240. height: math.unit(1, "feet"),
  33241. name: "Paw",
  33242. image: {
  33243. source: "./media/characters/softpurr/paw.svg"
  33244. }
  33245. },
  33246. },
  33247. [
  33248. {
  33249. name: "Normal",
  33250. height: math.unit(5 + 1/12, "feet"),
  33251. default: true
  33252. },
  33253. ]
  33254. ))
  33255. characterMakers.push(() => makeCharacter(
  33256. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33257. {
  33258. front: {
  33259. height: math.unit(260, "meters"),
  33260. name: "Front",
  33261. image: {
  33262. source: "./media/characters/anahita/front.svg",
  33263. extra: 665/635,
  33264. bottom: 89/754
  33265. }
  33266. },
  33267. },
  33268. [
  33269. {
  33270. name: "Macro",
  33271. height: math.unit(260, "meters"),
  33272. default: true
  33273. },
  33274. ]
  33275. ))
  33276. characterMakers.push(() => makeCharacter(
  33277. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33278. {
  33279. front: {
  33280. height: math.unit(4 + 10/12, "feet"),
  33281. weight: math.unit(160, "lb"),
  33282. name: "Front",
  33283. image: {
  33284. source: "./media/characters/chip-mouse/front.svg",
  33285. extra: 3528/3408,
  33286. bottom: 0/3528
  33287. }
  33288. },
  33289. frontNsfw: {
  33290. height: math.unit(4 + 10/12, "feet"),
  33291. weight: math.unit(160, "lb"),
  33292. name: "Front (NSFW)",
  33293. image: {
  33294. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33295. extra: 3528/3408,
  33296. bottom: 0/3528
  33297. }
  33298. },
  33299. },
  33300. [
  33301. {
  33302. name: "Normal",
  33303. height: math.unit(4 + 10/12, "feet"),
  33304. default: true
  33305. },
  33306. ]
  33307. ))
  33308. characterMakers.push(() => makeCharacter(
  33309. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33310. {
  33311. side: {
  33312. height: math.unit(10, "feet"),
  33313. weight: math.unit(14000, "lb"),
  33314. name: "Side",
  33315. image: {
  33316. source: "./media/characters/kremm/side.svg",
  33317. extra: 1390/1053,
  33318. bottom: 90/1480
  33319. }
  33320. },
  33321. gut: {
  33322. height: math.unit(5.8, "feet"),
  33323. name: "Gut",
  33324. image: {
  33325. source: "./media/characters/kremm/gut.svg"
  33326. }
  33327. },
  33328. ass: {
  33329. height: math.unit(6.1, "feet"),
  33330. name: "Ass",
  33331. image: {
  33332. source: "./media/characters/kremm/ass.svg"
  33333. }
  33334. },
  33335. jaws: {
  33336. height: math.unit(2.2, "feet"),
  33337. name: "Jaws",
  33338. image: {
  33339. source: "./media/characters/kremm/jaws.svg"
  33340. }
  33341. },
  33342. dick: {
  33343. height: math.unit(4.26, "feet"),
  33344. name: "Dick",
  33345. image: {
  33346. source: "./media/characters/kremm/dick.svg"
  33347. }
  33348. },
  33349. },
  33350. [
  33351. {
  33352. name: "Normal",
  33353. height: math.unit(10, "feet"),
  33354. default: true
  33355. },
  33356. ]
  33357. ))
  33358. characterMakers.push(() => makeCharacter(
  33359. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33360. {
  33361. front: {
  33362. height: math.unit(30, "stories"),
  33363. name: "Front",
  33364. image: {
  33365. source: "./media/characters/kai/front.svg",
  33366. extra: 1892/1718,
  33367. bottom: 162/2054
  33368. }
  33369. },
  33370. },
  33371. [
  33372. {
  33373. name: "Macro",
  33374. height: math.unit(30, "stories"),
  33375. default: true
  33376. },
  33377. ]
  33378. ))
  33379. characterMakers.push(() => makeCharacter(
  33380. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33381. {
  33382. front: {
  33383. height: math.unit(6 + 4/12, "feet"),
  33384. weight: math.unit(145, "lb"),
  33385. name: "Front",
  33386. image: {
  33387. source: "./media/characters/sykes/front.svg",
  33388. extra: 1321 / 1187,
  33389. bottom: 66 / 1387
  33390. }
  33391. },
  33392. back: {
  33393. height: math.unit(6 + 4/12, "feet"),
  33394. weight: math.unit(145, "lb"),
  33395. name: "Back",
  33396. image: {
  33397. source: "./media/characters/sykes/back.svg",
  33398. extra: 1326/1181,
  33399. bottom: 31/1357
  33400. }
  33401. },
  33402. handBack: {
  33403. height: math.unit(0.9, "feet"),
  33404. name: "Hand (Back)",
  33405. image: {
  33406. source: "./media/characters/sykes/hand-back.svg"
  33407. }
  33408. },
  33409. handFront: {
  33410. height: math.unit(0.839, "feet"),
  33411. name: "Hand (Front)",
  33412. image: {
  33413. source: "./media/characters/sykes/hand-front.svg"
  33414. }
  33415. },
  33416. leftFoot: {
  33417. height: math.unit(1.2, "feet"),
  33418. name: "Foot (Left)",
  33419. image: {
  33420. source: "./media/characters/sykes/foot-left.svg"
  33421. }
  33422. },
  33423. rightFoot: {
  33424. height: math.unit(1.2, "feet"),
  33425. name: "Foot (Right)",
  33426. image: {
  33427. source: "./media/characters/sykes/foot-right.svg"
  33428. }
  33429. },
  33430. maw: {
  33431. height: math.unit(1.93, "feet"),
  33432. name: "Maw",
  33433. image: {
  33434. source: "./media/characters/sykes/maw.svg"
  33435. }
  33436. },
  33437. teeth: {
  33438. height: math.unit(0.51, "feet"),
  33439. name: "Teeth",
  33440. image: {
  33441. source: "./media/characters/sykes/teeth.svg"
  33442. }
  33443. },
  33444. tongue: {
  33445. height: math.unit(2.13, "feet"),
  33446. name: "Tongue",
  33447. image: {
  33448. source: "./media/characters/sykes/tongue.svg"
  33449. }
  33450. },
  33451. uvula: {
  33452. height: math.unit(0.16, "feet"),
  33453. name: "Uvula",
  33454. image: {
  33455. source: "./media/characters/sykes/uvula.svg"
  33456. }
  33457. },
  33458. collar: {
  33459. height: math.unit(0.287, "feet"),
  33460. name: "Collar",
  33461. image: {
  33462. source: "./media/characters/sykes/collar.svg"
  33463. }
  33464. },
  33465. },
  33466. [
  33467. {
  33468. name: "Shrunken",
  33469. height: math.unit(5, "inches")
  33470. },
  33471. {
  33472. name: "Normal",
  33473. height: math.unit(6 + 4 / 12, "feet"),
  33474. default: true
  33475. },
  33476. {
  33477. name: "Big",
  33478. height: math.unit(15, "feet")
  33479. },
  33480. ]
  33481. ))
  33482. characterMakers.push(() => makeCharacter(
  33483. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33484. {
  33485. front: {
  33486. height: math.unit(5 + 8/12, "feet"),
  33487. weight: math.unit(190, "lb"),
  33488. name: "Front",
  33489. image: {
  33490. source: "./media/characters/oven-otter/front.svg",
  33491. extra: 1809/1740,
  33492. bottom: 181/1990
  33493. }
  33494. },
  33495. back: {
  33496. height: math.unit(5 + 8/12, "feet"),
  33497. weight: math.unit(190, "lb"),
  33498. name: "Back",
  33499. image: {
  33500. source: "./media/characters/oven-otter/back.svg",
  33501. extra: 1709/1635,
  33502. bottom: 118/1827
  33503. }
  33504. },
  33505. hand: {
  33506. height: math.unit(1.07, "feet"),
  33507. name: "Hand",
  33508. image: {
  33509. source: "./media/characters/oven-otter/hand.svg"
  33510. }
  33511. },
  33512. beans: {
  33513. height: math.unit(1.74, "feet"),
  33514. name: "Beans",
  33515. image: {
  33516. source: "./media/characters/oven-otter/beans.svg"
  33517. }
  33518. },
  33519. },
  33520. [
  33521. {
  33522. name: "Micro",
  33523. height: math.unit(0.5, "inches")
  33524. },
  33525. {
  33526. name: "Normal",
  33527. height: math.unit(5 + 8/12, "feet"),
  33528. default: true
  33529. },
  33530. {
  33531. name: "Macro",
  33532. height: math.unit(250, "feet")
  33533. },
  33534. {
  33535. name: "Really High",
  33536. height: math.unit(420, "feet")
  33537. },
  33538. ]
  33539. ))
  33540. characterMakers.push(() => makeCharacter(
  33541. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33542. {
  33543. front: {
  33544. height: math.unit(5, "meters"),
  33545. weight: math.unit(292000000000000, "kg"),
  33546. name: "Front",
  33547. image: {
  33548. source: "./media/characters/devourer/front.svg",
  33549. extra: 1800/1733,
  33550. bottom: 211/2011
  33551. }
  33552. },
  33553. maw: {
  33554. height: math.unit(1.1, "meter"),
  33555. name: "Maw",
  33556. image: {
  33557. source: "./media/characters/devourer/maw.svg"
  33558. }
  33559. },
  33560. },
  33561. [
  33562. {
  33563. name: "Small",
  33564. height: math.unit(3, "meters")
  33565. },
  33566. {
  33567. name: "Large",
  33568. height: math.unit(5, "meters"),
  33569. default: true
  33570. },
  33571. ]
  33572. ))
  33573. characterMakers.push(() => makeCharacter(
  33574. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33575. {
  33576. front: {
  33577. height: math.unit(6, "feet"),
  33578. weight: math.unit(400, "lb"),
  33579. name: "Front",
  33580. image: {
  33581. source: "./media/characters/ellarby/front.svg",
  33582. extra: 1909/1763,
  33583. bottom: 80/1989
  33584. }
  33585. },
  33586. back: {
  33587. height: math.unit(6, "feet"),
  33588. weight: math.unit(400, "lb"),
  33589. name: "Back",
  33590. image: {
  33591. source: "./media/characters/ellarby/back.svg",
  33592. extra: 1914/1784,
  33593. bottom: 172/2086
  33594. }
  33595. },
  33596. },
  33597. [
  33598. {
  33599. name: "Mischief",
  33600. height: math.unit(18, "inches")
  33601. },
  33602. {
  33603. name: "Trouble",
  33604. height: math.unit(12, "feet")
  33605. },
  33606. {
  33607. name: "Havoc",
  33608. height: math.unit(200, "feet"),
  33609. default: true
  33610. },
  33611. {
  33612. name: "Pandemonium",
  33613. height: math.unit(1, "mile")
  33614. },
  33615. {
  33616. name: "Catastrophe",
  33617. height: math.unit(100, "miles")
  33618. },
  33619. ]
  33620. ))
  33621. characterMakers.push(() => makeCharacter(
  33622. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33623. {
  33624. front: {
  33625. height: math.unit(4.7, "meters"),
  33626. weight: math.unit(6500, "kg"),
  33627. name: "Front",
  33628. image: {
  33629. source: "./media/characters/vex/front.svg",
  33630. extra: 1288/1140,
  33631. bottom: 100/1388
  33632. }
  33633. },
  33634. },
  33635. [
  33636. {
  33637. name: "Normal",
  33638. height: math.unit(4.7, "meters"),
  33639. default: true
  33640. },
  33641. ]
  33642. ))
  33643. characterMakers.push(() => makeCharacter(
  33644. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33645. {
  33646. normal: {
  33647. height: math.unit(6, "feet"),
  33648. weight: math.unit(350, "lb"),
  33649. name: "Normal",
  33650. image: {
  33651. source: "./media/characters/teshy/normal.svg",
  33652. extra: 1795/1735,
  33653. bottom: 16/1811
  33654. }
  33655. },
  33656. monsterFront: {
  33657. height: math.unit(12, "feet"),
  33658. weight: math.unit(4700, "lb"),
  33659. name: "Monster (Front)",
  33660. image: {
  33661. source: "./media/characters/teshy/monster-front.svg",
  33662. extra: 2042/2034,
  33663. bottom: 128/2170
  33664. }
  33665. },
  33666. monsterSide: {
  33667. height: math.unit(12, "feet"),
  33668. weight: math.unit(4700, "lb"),
  33669. name: "Monster (Side)",
  33670. image: {
  33671. source: "./media/characters/teshy/monster-side.svg",
  33672. extra: 2067/2056,
  33673. bottom: 70/2137
  33674. }
  33675. },
  33676. monsterBack: {
  33677. height: math.unit(12, "feet"),
  33678. weight: math.unit(4700, "lb"),
  33679. name: "Monster (Back)",
  33680. image: {
  33681. source: "./media/characters/teshy/monster-back.svg",
  33682. extra: 1921/1914,
  33683. bottom: 171/2092
  33684. }
  33685. },
  33686. },
  33687. [
  33688. {
  33689. name: "Normal",
  33690. height: math.unit(6, "feet"),
  33691. default: true
  33692. },
  33693. ]
  33694. ))
  33695. characterMakers.push(() => makeCharacter(
  33696. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33697. {
  33698. front: {
  33699. height: math.unit(6, "feet"),
  33700. name: "Front",
  33701. image: {
  33702. source: "./media/characters/ramey/front.svg",
  33703. extra: 790/787,
  33704. bottom: 27/817
  33705. }
  33706. },
  33707. },
  33708. [
  33709. {
  33710. name: "Normal",
  33711. height: math.unit(6, "feet"),
  33712. default: true
  33713. },
  33714. ]
  33715. ))
  33716. characterMakers.push(() => makeCharacter(
  33717. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33718. {
  33719. front: {
  33720. height: math.unit(5 + 5/12, "feet"),
  33721. weight: math.unit(120, "lb"),
  33722. name: "Front",
  33723. image: {
  33724. source: "./media/characters/phirae/front.svg",
  33725. extra: 2491/2436,
  33726. bottom: 38/2529
  33727. }
  33728. },
  33729. },
  33730. [
  33731. {
  33732. name: "Normal",
  33733. height: math.unit(5 + 5/12, "feet"),
  33734. default: true
  33735. },
  33736. ]
  33737. ))
  33738. characterMakers.push(() => makeCharacter(
  33739. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33740. {
  33741. front: {
  33742. height: math.unit(6, "feet"),
  33743. weight: math.unit(150, "lb"),
  33744. name: "Front",
  33745. image: {
  33746. source: "./media/characters/stagglas/front.svg",
  33747. extra: 962/882,
  33748. bottom: 53/1015
  33749. }
  33750. },
  33751. },
  33752. [
  33753. {
  33754. name: "Normal",
  33755. height: math.unit(5 + 3/12, "feet"),
  33756. default: true
  33757. },
  33758. ]
  33759. ))
  33760. characterMakers.push(() => makeCharacter(
  33761. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33762. {
  33763. front: {
  33764. height: math.unit(5 + 4/12, "feet"),
  33765. weight: math.unit(145, "lb"),
  33766. name: "Front",
  33767. image: {
  33768. source: "./media/characters/starra/front.svg",
  33769. extra: 1790/1691,
  33770. bottom: 91/1881
  33771. }
  33772. },
  33773. },
  33774. [
  33775. {
  33776. name: "Normal",
  33777. height: math.unit(5 + 4/12, "feet"),
  33778. default: true
  33779. },
  33780. ]
  33781. ))
  33782. characterMakers.push(() => makeCharacter(
  33783. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33784. {
  33785. front: {
  33786. height: math.unit(2.2, "meters"),
  33787. name: "Front",
  33788. image: {
  33789. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33790. extra: 1194/1005,
  33791. bottom: 25/1219
  33792. }
  33793. },
  33794. },
  33795. [
  33796. {
  33797. name: "Normal",
  33798. height: math.unit(2.2, "meters"),
  33799. default: true
  33800. },
  33801. ]
  33802. ))
  33803. characterMakers.push(() => makeCharacter(
  33804. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33805. {
  33806. side: {
  33807. height: math.unit(8 + 2/12, "feet"),
  33808. weight: math.unit(1240, "lb"),
  33809. name: "Side",
  33810. image: {
  33811. source: "./media/characters/mika-valentine/side.svg",
  33812. extra: 2670/2501,
  33813. bottom: 250/2920
  33814. }
  33815. },
  33816. },
  33817. [
  33818. {
  33819. name: "Normal",
  33820. height: math.unit(8 + 2/12, "feet"),
  33821. default: true
  33822. },
  33823. ]
  33824. ))
  33825. characterMakers.push(() => makeCharacter(
  33826. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33827. {
  33828. front: {
  33829. height: math.unit(7 + 2/12, "feet"),
  33830. name: "Front",
  33831. image: {
  33832. source: "./media/characters/xoltol/front.svg",
  33833. extra: 2212/2124,
  33834. bottom: 84/2296
  33835. }
  33836. },
  33837. side: {
  33838. height: math.unit(7 + 2/12, "feet"),
  33839. name: "Side",
  33840. image: {
  33841. source: "./media/characters/xoltol/side.svg",
  33842. extra: 2273/2197,
  33843. bottom: 26/2299
  33844. }
  33845. },
  33846. hand: {
  33847. height: math.unit(2.5, "feet"),
  33848. name: "Hand",
  33849. image: {
  33850. source: "./media/characters/xoltol/hand.svg"
  33851. }
  33852. },
  33853. },
  33854. [
  33855. {
  33856. name: "Small-ish",
  33857. height: math.unit(5 + 11/12, "feet")
  33858. },
  33859. {
  33860. name: "Normal",
  33861. height: math.unit(7 + 2/12, "feet")
  33862. },
  33863. {
  33864. name: "\"Macro\"",
  33865. height: math.unit(14 + 9/12, "feet"),
  33866. default: true
  33867. },
  33868. {
  33869. name: "Alternate Height",
  33870. height: math.unit(20, "feet")
  33871. },
  33872. {
  33873. name: "Actually Macro",
  33874. height: math.unit(100, "feet")
  33875. },
  33876. ]
  33877. ))
  33878. characterMakers.push(() => makeCharacter(
  33879. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33880. {
  33881. front: {
  33882. height: math.unit(5 + 2/12, "feet"),
  33883. name: "Front",
  33884. image: {
  33885. source: "./media/characters/kotetsu-redwood/front.svg",
  33886. extra: 1053/942,
  33887. bottom: 60/1113
  33888. }
  33889. },
  33890. },
  33891. [
  33892. {
  33893. name: "Normal",
  33894. height: math.unit(5 + 2/12, "feet"),
  33895. default: true
  33896. },
  33897. ]
  33898. ))
  33899. characterMakers.push(() => makeCharacter(
  33900. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33901. {
  33902. front: {
  33903. height: math.unit(2.4, "meters"),
  33904. weight: math.unit(125, "kg"),
  33905. name: "Front",
  33906. image: {
  33907. source: "./media/characters/lilith/front.svg",
  33908. extra: 1590/1513,
  33909. bottom: 203/1793
  33910. }
  33911. },
  33912. },
  33913. [
  33914. {
  33915. name: "Humanoid",
  33916. height: math.unit(2.4, "meters")
  33917. },
  33918. {
  33919. name: "Normal",
  33920. height: math.unit(6, "meters"),
  33921. default: true
  33922. },
  33923. {
  33924. name: "Largest",
  33925. height: math.unit(55, "meters")
  33926. },
  33927. ]
  33928. ))
  33929. characterMakers.push(() => makeCharacter(
  33930. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33931. {
  33932. front: {
  33933. height: math.unit(8 + 4/12, "feet"),
  33934. weight: math.unit(535, "lb"),
  33935. name: "Front",
  33936. image: {
  33937. source: "./media/characters/beh'kah-bolger/front.svg",
  33938. extra: 1660/1603,
  33939. bottom: 37/1697
  33940. }
  33941. },
  33942. },
  33943. [
  33944. {
  33945. name: "Normal",
  33946. height: math.unit(8 + 4/12, "feet"),
  33947. default: true
  33948. },
  33949. {
  33950. name: "Kaiju",
  33951. height: math.unit(250, "feet")
  33952. },
  33953. {
  33954. name: "Still Growing",
  33955. height: math.unit(10, "miles")
  33956. },
  33957. {
  33958. name: "Continental",
  33959. height: math.unit(5000, "miles")
  33960. },
  33961. {
  33962. name: "Final Form",
  33963. height: math.unit(2500000, "miles")
  33964. },
  33965. ]
  33966. ))
  33967. characterMakers.push(() => makeCharacter(
  33968. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33969. {
  33970. front: {
  33971. height: math.unit(7 + 2/12, "feet"),
  33972. weight: math.unit(230, "kg"),
  33973. name: "Front",
  33974. image: {
  33975. source: "./media/characters/tatyana-milewska/front.svg",
  33976. extra: 1199/1150,
  33977. bottom: 86/1285
  33978. }
  33979. },
  33980. },
  33981. [
  33982. {
  33983. name: "Normal",
  33984. height: math.unit(7 + 2/12, "feet"),
  33985. default: true
  33986. },
  33987. {
  33988. name: "Big",
  33989. height: math.unit(12, "feet")
  33990. },
  33991. {
  33992. name: "Minimacro",
  33993. height: math.unit(20, "feet")
  33994. },
  33995. {
  33996. name: "Macro",
  33997. height: math.unit(120, "feet")
  33998. },
  33999. ]
  34000. ))
  34001. characterMakers.push(() => makeCharacter(
  34002. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34003. {
  34004. front: {
  34005. height: math.unit(7 + 8/12, "feet"),
  34006. weight: math.unit(152, "kg"),
  34007. name: "Front",
  34008. image: {
  34009. source: "./media/characters/helen-arri/front.svg",
  34010. extra: 440/423,
  34011. bottom: 14/454
  34012. }
  34013. },
  34014. back: {
  34015. height: math.unit(7 + 8/12, "feet"),
  34016. weight: math.unit(152, "kg"),
  34017. name: "Back",
  34018. image: {
  34019. source: "./media/characters/helen-arri/back.svg",
  34020. extra: 443/426,
  34021. bottom: 8/451
  34022. }
  34023. },
  34024. },
  34025. [
  34026. {
  34027. name: "Normal",
  34028. height: math.unit(7 + 8/12, "feet"),
  34029. default: true
  34030. },
  34031. {
  34032. name: "Big",
  34033. height: math.unit(14, "feet")
  34034. },
  34035. {
  34036. name: "Minimacro",
  34037. height: math.unit(24, "feet")
  34038. },
  34039. {
  34040. name: "Macro",
  34041. height: math.unit(140, "feet")
  34042. },
  34043. ]
  34044. ))
  34045. characterMakers.push(() => makeCharacter(
  34046. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34047. {
  34048. front: {
  34049. height: math.unit(6, "meters"),
  34050. name: "Front",
  34051. image: {
  34052. source: "./media/characters/ehanu-rehu/front.svg",
  34053. extra: 1800/1800,
  34054. bottom: 59/1859
  34055. }
  34056. },
  34057. },
  34058. [
  34059. {
  34060. name: "Normal",
  34061. height: math.unit(6, "meters"),
  34062. default: true
  34063. },
  34064. ]
  34065. ))
  34066. characterMakers.push(() => makeCharacter(
  34067. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34068. {
  34069. front: {
  34070. height: math.unit(7 + 3/12, "feet"),
  34071. name: "Front",
  34072. image: {
  34073. source: "./media/characters/renholder/front.svg",
  34074. extra: 3096/2960,
  34075. bottom: 250/3346
  34076. }
  34077. },
  34078. },
  34079. [
  34080. {
  34081. name: "Normal Bat",
  34082. height: math.unit(7 + 3/12, "feet"),
  34083. default: true
  34084. },
  34085. {
  34086. name: "Slightly Tall Bat",
  34087. height: math.unit(100, "feet")
  34088. },
  34089. {
  34090. name: "Big Bat",
  34091. height: math.unit(1000, "feet")
  34092. },
  34093. {
  34094. name: "City-Sized Bat",
  34095. height: math.unit(200000, "feet")
  34096. },
  34097. {
  34098. name: "Bigger Bat",
  34099. height: math.unit(10000, "miles")
  34100. },
  34101. {
  34102. name: "Solar Sized Bat",
  34103. height: math.unit(100, "AU")
  34104. },
  34105. {
  34106. name: "Galactic Bat",
  34107. height: math.unit(200000, "lightyears")
  34108. },
  34109. {
  34110. name: "Universally Known Bat",
  34111. height: math.unit(1, "universe")
  34112. },
  34113. ]
  34114. ))
  34115. characterMakers.push(() => makeCharacter(
  34116. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34117. {
  34118. front: {
  34119. height: math.unit(6 + 11/12, "feet"),
  34120. weight: math.unit(250, "lb"),
  34121. name: "Front",
  34122. image: {
  34123. source: "./media/characters/cookiecat/front.svg",
  34124. extra: 893/827,
  34125. bottom: 14/907
  34126. }
  34127. },
  34128. },
  34129. [
  34130. {
  34131. name: "Micro",
  34132. height: math.unit(3, "inches")
  34133. },
  34134. {
  34135. name: "Normal",
  34136. height: math.unit(6 + 11/12, "feet"),
  34137. default: true
  34138. },
  34139. {
  34140. name: "Macro",
  34141. height: math.unit(100, "feet")
  34142. },
  34143. {
  34144. name: "Macro+",
  34145. height: math.unit(404, "feet")
  34146. },
  34147. {
  34148. name: "Megamacro",
  34149. height: math.unit(165, "miles")
  34150. },
  34151. {
  34152. name: "Planetary",
  34153. height: math.unit(4600, "miles")
  34154. },
  34155. ]
  34156. ))
  34157. characterMakers.push(() => makeCharacter(
  34158. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34159. {
  34160. front: {
  34161. height: math.unit(10 + 3/12, "feet"),
  34162. weight: math.unit(1500, "lb"),
  34163. name: "Front",
  34164. image: {
  34165. source: "./media/characters/tux-kusanagi/front.svg",
  34166. extra: 944/840,
  34167. bottom: 39/983
  34168. }
  34169. },
  34170. back: {
  34171. height: math.unit(10 + 3/12, "feet"),
  34172. weight: math.unit(1500, "lb"),
  34173. name: "Back",
  34174. image: {
  34175. source: "./media/characters/tux-kusanagi/back.svg",
  34176. extra: 941/842,
  34177. bottom: 28/969
  34178. }
  34179. },
  34180. rump: {
  34181. height: math.unit(5.25, "feet"),
  34182. name: "Rump",
  34183. image: {
  34184. source: "./media/characters/tux-kusanagi/rump.svg"
  34185. }
  34186. },
  34187. beak: {
  34188. height: math.unit(1.54, "feet"),
  34189. name: "Beak",
  34190. image: {
  34191. source: "./media/characters/tux-kusanagi/beak.svg"
  34192. }
  34193. },
  34194. },
  34195. [
  34196. {
  34197. name: "Normal",
  34198. height: math.unit(10 + 3/12, "feet"),
  34199. default: true
  34200. },
  34201. ]
  34202. ))
  34203. characterMakers.push(() => makeCharacter(
  34204. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34205. {
  34206. front: {
  34207. height: math.unit(58, "feet"),
  34208. weight: math.unit(200, "tons"),
  34209. name: "Front",
  34210. image: {
  34211. source: "./media/characters/uzarmazari/front.svg",
  34212. extra: 1575/1455,
  34213. bottom: 152/1727
  34214. }
  34215. },
  34216. back: {
  34217. height: math.unit(58, "feet"),
  34218. weight: math.unit(200, "tons"),
  34219. name: "Back",
  34220. image: {
  34221. source: "./media/characters/uzarmazari/back.svg",
  34222. extra: 1585/1510,
  34223. bottom: 157/1742
  34224. }
  34225. },
  34226. head: {
  34227. height: math.unit(26, "feet"),
  34228. name: "Head",
  34229. image: {
  34230. source: "./media/characters/uzarmazari/head.svg"
  34231. }
  34232. },
  34233. },
  34234. [
  34235. {
  34236. name: "Normal",
  34237. height: math.unit(58, "feet"),
  34238. default: true
  34239. },
  34240. ]
  34241. ))
  34242. characterMakers.push(() => makeCharacter(
  34243. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34244. {
  34245. side: {
  34246. height: math.unit(15, "feet"),
  34247. name: "Side",
  34248. image: {
  34249. source: "./media/characters/akitu/side.svg",
  34250. extra: 1421/1321,
  34251. bottom: 157/1578
  34252. }
  34253. },
  34254. front: {
  34255. height: math.unit(15, "feet"),
  34256. name: "Front",
  34257. image: {
  34258. source: "./media/characters/akitu/front.svg",
  34259. extra: 1435/1326,
  34260. bottom: 232/1667
  34261. }
  34262. },
  34263. },
  34264. [
  34265. {
  34266. name: "Normal",
  34267. height: math.unit(15, "feet"),
  34268. default: true
  34269. },
  34270. ]
  34271. ))
  34272. characterMakers.push(() => makeCharacter(
  34273. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34274. {
  34275. front: {
  34276. height: math.unit(10 + 8/12, "feet"),
  34277. name: "Front",
  34278. image: {
  34279. source: "./media/characters/azalie-croixland/front.svg",
  34280. extra: 1972/1856,
  34281. bottom: 31/2003
  34282. }
  34283. },
  34284. },
  34285. [
  34286. {
  34287. name: "Original Height",
  34288. height: math.unit(5 + 4/12, "feet")
  34289. },
  34290. {
  34291. name: "Normal Height",
  34292. height: math.unit(10 + 8/12, "feet"),
  34293. default: true
  34294. },
  34295. ]
  34296. ))
  34297. characterMakers.push(() => makeCharacter(
  34298. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34299. {
  34300. side: {
  34301. height: math.unit(7 + 1/12, "feet"),
  34302. weight: math.unit(245, "lb"),
  34303. name: "Side",
  34304. image: {
  34305. source: "./media/characters/kavus-kazian/side.svg",
  34306. extra: 349/342,
  34307. bottom: 15/364
  34308. }
  34309. },
  34310. },
  34311. [
  34312. {
  34313. name: "Normal",
  34314. height: math.unit(7 + 1/12, "feet"),
  34315. default: true
  34316. },
  34317. ]
  34318. ))
  34319. characterMakers.push(() => makeCharacter(
  34320. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34321. {
  34322. normal: {
  34323. height: math.unit(5 + 11/12, "feet"),
  34324. name: "Normal",
  34325. image: {
  34326. source: "./media/characters/moonlight-rose/normal.svg",
  34327. extra: 1979/1835,
  34328. bottom: 14/1993
  34329. }
  34330. },
  34331. demon: {
  34332. height: math.unit(5, "km"),
  34333. name: "Demon",
  34334. image: {
  34335. source: "./media/characters/moonlight-rose/demon.svg",
  34336. extra: 986/916,
  34337. bottom: 28/1014
  34338. }
  34339. },
  34340. },
  34341. [
  34342. {
  34343. name: "\"Natural\" height",
  34344. height: math.unit(5 + 11/12, "feet")
  34345. },
  34346. {
  34347. name: "Comfortable Size",
  34348. height: math.unit(40, "meters")
  34349. },
  34350. {
  34351. name: "Common Size",
  34352. height: math.unit(50, "km"),
  34353. default: true
  34354. },
  34355. {
  34356. name: "Demonic",
  34357. height: math.unit(1.24415e+21, "meters")
  34358. },
  34359. ]
  34360. ))
  34361. characterMakers.push(() => makeCharacter(
  34362. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34363. {
  34364. front: {
  34365. height: math.unit(16, "feet"),
  34366. weight: math.unit(610, "kg"),
  34367. name: "Front",
  34368. image: {
  34369. source: "./media/characters/huckle/front.svg",
  34370. extra: 1731/1625,
  34371. bottom: 33/1764
  34372. }
  34373. },
  34374. back: {
  34375. height: math.unit(16, "feet"),
  34376. weight: math.unit(610, "kg"),
  34377. name: "Back",
  34378. image: {
  34379. source: "./media/characters/huckle/back.svg",
  34380. extra: 1738/1651,
  34381. bottom: 37/1775
  34382. }
  34383. },
  34384. laughing: {
  34385. height: math.unit(3.75, "feet"),
  34386. name: "Laughing",
  34387. image: {
  34388. source: "./media/characters/huckle/laughing.svg"
  34389. }
  34390. },
  34391. angry: {
  34392. height: math.unit(4.15, "feet"),
  34393. name: "Angry",
  34394. image: {
  34395. source: "./media/characters/huckle/angry.svg"
  34396. }
  34397. },
  34398. },
  34399. [
  34400. {
  34401. name: "Normal",
  34402. height: math.unit(16, "feet"),
  34403. default: true
  34404. },
  34405. {
  34406. name: "Mini Macro",
  34407. height: math.unit(463, "feet")
  34408. },
  34409. {
  34410. name: "Macro",
  34411. height: math.unit(1680, "meters")
  34412. },
  34413. {
  34414. name: "Mega Macro",
  34415. height: math.unit(175, "km")
  34416. },
  34417. {
  34418. name: "Terra Macro",
  34419. height: math.unit(32, "gigameters")
  34420. },
  34421. {
  34422. name: "Multiverse+",
  34423. height: math.unit(2.56e23, "yottameters")
  34424. },
  34425. ]
  34426. ))
  34427. characterMakers.push(() => makeCharacter(
  34428. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34429. {
  34430. front: {
  34431. height: math.unit(6 + 9/12, "feet"),
  34432. weight: math.unit(280, "lb"),
  34433. name: "Front",
  34434. image: {
  34435. source: "./media/characters/candy/front.svg",
  34436. extra: 234/217,
  34437. bottom: 11/245
  34438. }
  34439. },
  34440. },
  34441. [
  34442. {
  34443. name: "Really Small",
  34444. height: math.unit(0.1, "nm")
  34445. },
  34446. {
  34447. name: "Micro",
  34448. height: math.unit(2, "inches")
  34449. },
  34450. {
  34451. name: "Normal",
  34452. height: math.unit(6 + 9/12, "feet"),
  34453. default: true
  34454. },
  34455. {
  34456. name: "Small Macro",
  34457. height: math.unit(69, "feet")
  34458. },
  34459. {
  34460. name: "Macro",
  34461. height: math.unit(160, "feet")
  34462. },
  34463. {
  34464. name: "Megamacro",
  34465. height: math.unit(22000, "miles")
  34466. },
  34467. {
  34468. name: "Gigamacro",
  34469. height: math.unit(50000, "miles")
  34470. },
  34471. ]
  34472. ))
  34473. characterMakers.push(() => makeCharacter(
  34474. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34475. {
  34476. front: {
  34477. height: math.unit(4, "feet"),
  34478. weight: math.unit(90, "lb"),
  34479. name: "Front",
  34480. image: {
  34481. source: "./media/characters/joey-mcdonald/front.svg",
  34482. extra: 1059/852,
  34483. bottom: 33/1092
  34484. }
  34485. },
  34486. back: {
  34487. height: math.unit(4, "feet"),
  34488. weight: math.unit(90, "lb"),
  34489. name: "Back",
  34490. image: {
  34491. source: "./media/characters/joey-mcdonald/back.svg",
  34492. extra: 1077/879,
  34493. bottom: 5/1082
  34494. }
  34495. },
  34496. },
  34497. [
  34498. {
  34499. name: "Normal",
  34500. height: math.unit(4, "feet"),
  34501. default: true
  34502. },
  34503. ]
  34504. ))
  34505. characterMakers.push(() => makeCharacter(
  34506. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34507. {
  34508. front: {
  34509. height: math.unit(12 + 6/12, "feet"),
  34510. name: "Front",
  34511. image: {
  34512. source: "./media/characters/kass-lockheed/front.svg",
  34513. extra: 354/343,
  34514. bottom: 9/363
  34515. }
  34516. },
  34517. back: {
  34518. height: math.unit(12 + 6/12, "feet"),
  34519. name: "Back",
  34520. image: {
  34521. source: "./media/characters/kass-lockheed/back.svg",
  34522. extra: 364/352,
  34523. bottom: 3/367
  34524. }
  34525. },
  34526. dick: {
  34527. height: math.unit(3.12, "feet"),
  34528. name: "Dick",
  34529. image: {
  34530. source: "./media/characters/kass-lockheed/dick.svg"
  34531. }
  34532. },
  34533. head: {
  34534. height: math.unit(2.6, "feet"),
  34535. name: "Head",
  34536. image: {
  34537. source: "./media/characters/kass-lockheed/head.svg"
  34538. }
  34539. },
  34540. bleh: {
  34541. height: math.unit(2.85, "feet"),
  34542. name: "Bleh",
  34543. image: {
  34544. source: "./media/characters/kass-lockheed/bleh.svg"
  34545. }
  34546. },
  34547. smug: {
  34548. height: math.unit(2.85, "feet"),
  34549. name: "Smug",
  34550. image: {
  34551. source: "./media/characters/kass-lockheed/smug.svg"
  34552. }
  34553. },
  34554. },
  34555. [
  34556. {
  34557. name: "Normal",
  34558. height: math.unit(12 + 6/12, "feet"),
  34559. default: true
  34560. },
  34561. ]
  34562. ))
  34563. characterMakers.push(() => makeCharacter(
  34564. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34565. {
  34566. front: {
  34567. height: math.unit(6 + 2/12, "feet"),
  34568. name: "Front",
  34569. image: {
  34570. source: "./media/characters/taylor/front.svg",
  34571. extra: 639/495,
  34572. bottom: 12/651
  34573. }
  34574. },
  34575. },
  34576. [
  34577. {
  34578. name: "Normal",
  34579. height: math.unit(6 + 2/12, "feet"),
  34580. default: true
  34581. },
  34582. {
  34583. name: "Big",
  34584. height: math.unit(15, "feet")
  34585. },
  34586. {
  34587. name: "Lorg",
  34588. height: math.unit(80, "feet")
  34589. },
  34590. {
  34591. name: "Too Lorg",
  34592. height: math.unit(120, "feet")
  34593. },
  34594. ]
  34595. ))
  34596. characterMakers.push(() => makeCharacter(
  34597. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34598. {
  34599. front: {
  34600. height: math.unit(15, "feet"),
  34601. name: "Front",
  34602. image: {
  34603. source: "./media/characters/kaizer/front.svg",
  34604. extra: 1612/1436,
  34605. bottom: 43/1655
  34606. }
  34607. },
  34608. },
  34609. [
  34610. {
  34611. name: "Normal",
  34612. height: math.unit(15, "feet"),
  34613. default: true
  34614. },
  34615. ]
  34616. ))
  34617. characterMakers.push(() => makeCharacter(
  34618. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34619. {
  34620. front: {
  34621. height: math.unit(2, "feet"),
  34622. weight: math.unit(30, "lb"),
  34623. name: "Front",
  34624. image: {
  34625. source: "./media/characters/sandy/front.svg",
  34626. extra: 1439/1307,
  34627. bottom: 194/1633
  34628. }
  34629. },
  34630. },
  34631. [
  34632. {
  34633. name: "Normal",
  34634. height: math.unit(2, "feet"),
  34635. default: true
  34636. },
  34637. ]
  34638. ))
  34639. characterMakers.push(() => makeCharacter(
  34640. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34641. {
  34642. front: {
  34643. height: math.unit(3, "feet"),
  34644. name: "Front",
  34645. image: {
  34646. source: "./media/characters/mellvi/front.svg",
  34647. extra: 1831/1630,
  34648. bottom: 58/1889
  34649. }
  34650. },
  34651. },
  34652. [
  34653. {
  34654. name: "Normal",
  34655. height: math.unit(3, "feet"),
  34656. default: true
  34657. },
  34658. ]
  34659. ))
  34660. characterMakers.push(() => makeCharacter(
  34661. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34662. {
  34663. front: {
  34664. height: math.unit(5 + 11/12, "feet"),
  34665. weight: math.unit(200, "lb"),
  34666. name: "Front",
  34667. image: {
  34668. source: "./media/characters/shirou/front.svg",
  34669. extra: 2491/2383,
  34670. bottom: 189/2680
  34671. }
  34672. },
  34673. back: {
  34674. height: math.unit(5 + 11/12, "feet"),
  34675. weight: math.unit(200, "lb"),
  34676. name: "Back",
  34677. image: {
  34678. source: "./media/characters/shirou/back.svg",
  34679. extra: 2554/2450,
  34680. bottom: 76/2630
  34681. }
  34682. },
  34683. },
  34684. [
  34685. {
  34686. name: "Normal",
  34687. height: math.unit(5 + 11/12, "feet"),
  34688. default: true
  34689. },
  34690. ]
  34691. ))
  34692. characterMakers.push(() => makeCharacter(
  34693. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34694. {
  34695. front: {
  34696. height: math.unit(6 + 3/12, "feet"),
  34697. weight: math.unit(177, "lb"),
  34698. name: "Front",
  34699. image: {
  34700. source: "./media/characters/noryu/front.svg",
  34701. extra: 973/885,
  34702. bottom: 10/983
  34703. }
  34704. },
  34705. },
  34706. [
  34707. {
  34708. name: "Normal",
  34709. height: math.unit(6 + 3/12, "feet"),
  34710. default: true
  34711. },
  34712. ]
  34713. ))
  34714. characterMakers.push(() => makeCharacter(
  34715. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34716. {
  34717. front: {
  34718. height: math.unit(5 + 6/12, "feet"),
  34719. weight: math.unit(170, "lb"),
  34720. name: "Front",
  34721. image: {
  34722. source: "./media/characters/mevolas-rubenido/front.svg",
  34723. extra: 2109/1901,
  34724. bottom: 96/2205
  34725. }
  34726. },
  34727. },
  34728. [
  34729. {
  34730. name: "Normal",
  34731. height: math.unit(5 + 6/12, "feet"),
  34732. default: true
  34733. },
  34734. ]
  34735. ))
  34736. characterMakers.push(() => makeCharacter(
  34737. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34738. {
  34739. front: {
  34740. height: math.unit(100, "feet"),
  34741. name: "Front",
  34742. image: {
  34743. source: "./media/characters/dee/front.svg",
  34744. extra: 2153/2036,
  34745. bottom: 59/2212
  34746. }
  34747. },
  34748. back: {
  34749. height: math.unit(100, "feet"),
  34750. name: "Back",
  34751. image: {
  34752. source: "./media/characters/dee/back.svg",
  34753. extra: 2183/2058,
  34754. bottom: 75/2258
  34755. }
  34756. },
  34757. foot: {
  34758. height: math.unit(19.43, "feet"),
  34759. name: "Foot",
  34760. image: {
  34761. source: "./media/characters/dee/foot.svg"
  34762. }
  34763. },
  34764. hoof: {
  34765. height: math.unit(20.6, "feet"),
  34766. name: "Hoof",
  34767. image: {
  34768. source: "./media/characters/dee/hoof.svg"
  34769. }
  34770. },
  34771. },
  34772. [
  34773. {
  34774. name: "Macro",
  34775. height: math.unit(100, "feet"),
  34776. default: true
  34777. },
  34778. ]
  34779. ))
  34780. characterMakers.push(() => makeCharacter(
  34781. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34782. {
  34783. front: {
  34784. height: math.unit(5 + 6/12, "feet"),
  34785. name: "Front",
  34786. image: {
  34787. source: "./media/characters/teh/front.svg",
  34788. extra: 1002/847,
  34789. bottom: 62/1064
  34790. }
  34791. },
  34792. },
  34793. [
  34794. {
  34795. name: "Normal",
  34796. height: math.unit(5 + 6/12, "feet"),
  34797. default: true
  34798. },
  34799. ]
  34800. ))
  34801. characterMakers.push(() => makeCharacter(
  34802. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34803. {
  34804. side: {
  34805. height: math.unit(6 + 1/12, "feet"),
  34806. weight: math.unit(204, "lb"),
  34807. name: "Side",
  34808. image: {
  34809. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34810. extra: 974/775,
  34811. bottom: 169/1143
  34812. }
  34813. },
  34814. sitting: {
  34815. height: math.unit(6 + 2/12, "feet"),
  34816. weight: math.unit(204, "lb"),
  34817. name: "Sitting",
  34818. image: {
  34819. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34820. extra: 1175/964,
  34821. bottom: 378/1553
  34822. }
  34823. },
  34824. },
  34825. [
  34826. {
  34827. name: "Normal",
  34828. height: math.unit(6 + 1/12, "feet"),
  34829. default: true
  34830. },
  34831. ]
  34832. ))
  34833. characterMakers.push(() => makeCharacter(
  34834. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34835. {
  34836. front: {
  34837. height: math.unit(6, "inches"),
  34838. name: "Front",
  34839. image: {
  34840. source: "./media/characters/tululi/front.svg",
  34841. extra: 1997/1876,
  34842. bottom: 20/2017
  34843. }
  34844. },
  34845. },
  34846. [
  34847. {
  34848. name: "Normal",
  34849. height: math.unit(6, "inches"),
  34850. default: true
  34851. },
  34852. ]
  34853. ))
  34854. characterMakers.push(() => makeCharacter(
  34855. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34856. {
  34857. front: {
  34858. height: math.unit(4 + 1/12, "feet"),
  34859. name: "Front",
  34860. image: {
  34861. source: "./media/characters/star/front.svg",
  34862. extra: 1493/1189,
  34863. bottom: 48/1541
  34864. }
  34865. },
  34866. },
  34867. [
  34868. {
  34869. name: "Normal",
  34870. height: math.unit(4 + 1/12, "feet"),
  34871. default: true
  34872. },
  34873. ]
  34874. ))
  34875. characterMakers.push(() => makeCharacter(
  34876. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34877. {
  34878. front: {
  34879. height: math.unit(6 + 3/12, "feet"),
  34880. name: "Front",
  34881. image: {
  34882. source: "./media/characters/comet/front.svg",
  34883. extra: 1681/1462,
  34884. bottom: 26/1707
  34885. }
  34886. },
  34887. },
  34888. [
  34889. {
  34890. name: "Normal",
  34891. height: math.unit(6 + 3/12, "feet"),
  34892. default: true
  34893. },
  34894. ]
  34895. ))
  34896. characterMakers.push(() => makeCharacter(
  34897. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34898. {
  34899. front: {
  34900. height: math.unit(950, "feet"),
  34901. name: "Front",
  34902. image: {
  34903. source: "./media/characters/vortex/front.svg",
  34904. extra: 1497/1434,
  34905. bottom: 56/1553
  34906. }
  34907. },
  34908. maw: {
  34909. height: math.unit(285, "feet"),
  34910. name: "Maw",
  34911. image: {
  34912. source: "./media/characters/vortex/maw.svg"
  34913. }
  34914. },
  34915. },
  34916. [
  34917. {
  34918. name: "Macro",
  34919. height: math.unit(950, "feet"),
  34920. default: true
  34921. },
  34922. ]
  34923. ))
  34924. characterMakers.push(() => makeCharacter(
  34925. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34926. {
  34927. front: {
  34928. height: math.unit(600, "feet"),
  34929. weight: math.unit(0.02, "grams"),
  34930. name: "Front",
  34931. image: {
  34932. source: "./media/characters/doodle/front.svg",
  34933. extra: 1578/1413,
  34934. bottom: 37/1615
  34935. }
  34936. },
  34937. },
  34938. [
  34939. {
  34940. name: "Macro",
  34941. height: math.unit(600, "feet"),
  34942. default: true
  34943. },
  34944. ]
  34945. ))
  34946. characterMakers.push(() => makeCharacter(
  34947. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34948. {
  34949. front: {
  34950. height: math.unit(6 + 6/12, "feet"),
  34951. name: "Front",
  34952. image: {
  34953. source: "./media/characters/jai/front.svg",
  34954. extra: 1645/1534,
  34955. bottom: 115/1760
  34956. }
  34957. },
  34958. },
  34959. [
  34960. {
  34961. name: "Normal",
  34962. height: math.unit(6 + 6/12, "feet"),
  34963. default: true
  34964. },
  34965. ]
  34966. ))
  34967. characterMakers.push(() => makeCharacter(
  34968. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34969. {
  34970. front: {
  34971. height: math.unit(6 + 8/12, "feet"),
  34972. name: "Front",
  34973. image: {
  34974. source: "./media/characters/pixel/front.svg",
  34975. extra: 1900/1735,
  34976. bottom: 63/1963
  34977. }
  34978. },
  34979. },
  34980. [
  34981. {
  34982. name: "Normal",
  34983. height: math.unit(6 + 8/12, "feet"),
  34984. default: true
  34985. },
  34986. ]
  34987. ))
  34988. characterMakers.push(() => makeCharacter(
  34989. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34990. {
  34991. front: {
  34992. height: math.unit(4 + 11/12, "feet"),
  34993. weight: math.unit(111, "lb"),
  34994. name: "Front",
  34995. image: {
  34996. source: "./media/characters/rhett/front.svg",
  34997. extra: 1682/1586,
  34998. bottom: 92/1774
  34999. }
  35000. },
  35001. },
  35002. [
  35003. {
  35004. name: "Mini",
  35005. height: math.unit(1 + 1/12, "feet")
  35006. },
  35007. {
  35008. name: "Normal",
  35009. height: math.unit(4 + 11/12, "feet"),
  35010. default: true
  35011. },
  35012. ]
  35013. ))
  35014. characterMakers.push(() => makeCharacter(
  35015. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35016. {
  35017. front: {
  35018. height: math.unit(3 + 3/12, "feet"),
  35019. name: "Front",
  35020. image: {
  35021. source: "./media/characters/penny/front.svg",
  35022. extra: 1406/1311,
  35023. bottom: 26/1432
  35024. }
  35025. },
  35026. },
  35027. [
  35028. {
  35029. name: "Normal",
  35030. height: math.unit(3 + 3/12, "feet"),
  35031. default: true
  35032. },
  35033. ]
  35034. ))
  35035. characterMakers.push(() => makeCharacter(
  35036. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35037. {
  35038. front: {
  35039. height: math.unit(4 + 11/12, "feet"),
  35040. name: "Front",
  35041. image: {
  35042. source: "./media/characters/monty/front.svg",
  35043. extra: 1479/1209,
  35044. bottom: 0/1479
  35045. }
  35046. },
  35047. },
  35048. [
  35049. {
  35050. name: "Normal",
  35051. height: math.unit(4 + 11/12, "feet"),
  35052. default: true
  35053. },
  35054. ]
  35055. ))
  35056. characterMakers.push(() => makeCharacter(
  35057. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35058. {
  35059. front: {
  35060. height: math.unit(8 + 4/12, "feet"),
  35061. name: "Front",
  35062. image: {
  35063. source: "./media/characters/sterling/front.svg",
  35064. extra: 1420/1236,
  35065. bottom: 27/1447
  35066. }
  35067. },
  35068. },
  35069. [
  35070. {
  35071. name: "Normal",
  35072. height: math.unit(8 + 4/12, "feet"),
  35073. default: true
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35079. {
  35080. front: {
  35081. height: math.unit(15, "feet"),
  35082. name: "Front",
  35083. image: {
  35084. source: "./media/characters/marble/front.svg",
  35085. extra: 973/937,
  35086. bottom: 32/1005
  35087. }
  35088. },
  35089. },
  35090. [
  35091. {
  35092. name: "Normal",
  35093. height: math.unit(15, "feet"),
  35094. default: true
  35095. },
  35096. ]
  35097. ))
  35098. characterMakers.push(() => makeCharacter(
  35099. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35100. {
  35101. front: {
  35102. height: math.unit(3, "inches"),
  35103. name: "Front",
  35104. image: {
  35105. source: "./media/characters/powder/front.svg",
  35106. extra: 1504/1334,
  35107. bottom: 518/2022
  35108. }
  35109. },
  35110. },
  35111. [
  35112. {
  35113. name: "Normal",
  35114. height: math.unit(3, "inches"),
  35115. default: true
  35116. },
  35117. ]
  35118. ))
  35119. characterMakers.push(() => makeCharacter(
  35120. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35121. {
  35122. front: {
  35123. height: math.unit(4 + 5/12, "feet"),
  35124. name: "Front",
  35125. image: {
  35126. source: "./media/characters/joey-raccoon/front.svg",
  35127. extra: 1273/1197,
  35128. bottom: 0/1273
  35129. }
  35130. },
  35131. },
  35132. [
  35133. {
  35134. name: "Normal",
  35135. height: math.unit(4 + 5/12, "feet"),
  35136. default: true
  35137. },
  35138. ]
  35139. ))
  35140. characterMakers.push(() => makeCharacter(
  35141. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35142. {
  35143. front: {
  35144. height: math.unit(8 + 4/12, "feet"),
  35145. name: "Front",
  35146. image: {
  35147. source: "./media/characters/vick/front.svg",
  35148. extra: 2187/2118,
  35149. bottom: 47/2234
  35150. }
  35151. },
  35152. },
  35153. [
  35154. {
  35155. name: "Normal",
  35156. height: math.unit(8 + 4/12, "feet"),
  35157. default: true
  35158. },
  35159. ]
  35160. ))
  35161. characterMakers.push(() => makeCharacter(
  35162. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35163. {
  35164. front: {
  35165. height: math.unit(5 + 5/12, "feet"),
  35166. name: "Front",
  35167. image: {
  35168. source: "./media/characters/mitsy/front.svg",
  35169. extra: 1842/1695,
  35170. bottom: 0/1842
  35171. }
  35172. },
  35173. },
  35174. [
  35175. {
  35176. name: "Normal",
  35177. height: math.unit(5 + 5/12, "feet"),
  35178. default: true
  35179. },
  35180. ]
  35181. ))
  35182. characterMakers.push(() => makeCharacter(
  35183. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35184. {
  35185. front: {
  35186. height: math.unit(6 + 3/12, "feet"),
  35187. name: "Front",
  35188. image: {
  35189. source: "./media/characters/silvy/front.svg",
  35190. extra: 1995/1836,
  35191. bottom: 225/2220
  35192. }
  35193. },
  35194. },
  35195. [
  35196. {
  35197. name: "Normal",
  35198. height: math.unit(6 + 3/12, "feet"),
  35199. default: true
  35200. },
  35201. ]
  35202. ))
  35203. characterMakers.push(() => makeCharacter(
  35204. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35205. {
  35206. front: {
  35207. height: math.unit(3 + 8/12, "feet"),
  35208. name: "Front",
  35209. image: {
  35210. source: "./media/characters/rodney/front.svg",
  35211. extra: 1956/1747,
  35212. bottom: 31/1987
  35213. }
  35214. },
  35215. frontDressed: {
  35216. height: math.unit(2.9, "feet"),
  35217. name: "Front (Dressed)",
  35218. image: {
  35219. source: "./media/characters/rodney/front-dressed.svg",
  35220. extra: 1382/1241,
  35221. bottom: 385/1767
  35222. }
  35223. },
  35224. },
  35225. [
  35226. {
  35227. name: "Normal",
  35228. height: math.unit(3 + 8/12, "feet"),
  35229. default: true
  35230. },
  35231. ]
  35232. ))
  35233. characterMakers.push(() => makeCharacter(
  35234. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35235. {
  35236. front: {
  35237. height: math.unit(5 + 9/12, "feet"),
  35238. weight: math.unit(194, "lbs"),
  35239. name: "Front",
  35240. image: {
  35241. source: "./media/characters/zakail-sudekai/front.svg",
  35242. extra: 2696/2533,
  35243. bottom: 248/2944
  35244. }
  35245. },
  35246. maw: {
  35247. height: math.unit(1.35, "feet"),
  35248. name: "Maw",
  35249. image: {
  35250. source: "./media/characters/zakail-sudekai/maw.svg"
  35251. }
  35252. },
  35253. },
  35254. [
  35255. {
  35256. name: "Normal",
  35257. height: math.unit(5 + 9/12, "feet"),
  35258. default: true
  35259. },
  35260. ]
  35261. ))
  35262. characterMakers.push(() => makeCharacter(
  35263. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35264. {
  35265. front: {
  35266. height: math.unit(8 + 4/12, "feet"),
  35267. weight: math.unit(1200, "lb"),
  35268. name: "Front",
  35269. image: {
  35270. source: "./media/characters/eleanor/front.svg",
  35271. extra: 1226/1192,
  35272. bottom: 52/1278
  35273. }
  35274. },
  35275. back: {
  35276. height: math.unit(8 + 4/12, "feet"),
  35277. weight: math.unit(1200, "lb"),
  35278. name: "Back",
  35279. image: {
  35280. source: "./media/characters/eleanor/back.svg",
  35281. extra: 1242/1184,
  35282. bottom: 60/1302
  35283. }
  35284. },
  35285. head: {
  35286. height: math.unit(2.62, "feet"),
  35287. name: "Head",
  35288. image: {
  35289. source: "./media/characters/eleanor/head.svg"
  35290. }
  35291. },
  35292. },
  35293. [
  35294. {
  35295. name: "Normal",
  35296. height: math.unit(8 + 4/12, "feet"),
  35297. default: true
  35298. },
  35299. ]
  35300. ))
  35301. characterMakers.push(() => makeCharacter(
  35302. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35303. {
  35304. front: {
  35305. height: math.unit(8 + 4/12, "feet"),
  35306. weight: math.unit(750, "lb"),
  35307. name: "Front",
  35308. image: {
  35309. source: "./media/characters/tanya/front.svg",
  35310. extra: 1749/1615,
  35311. bottom: 33/1782
  35312. }
  35313. },
  35314. },
  35315. [
  35316. {
  35317. name: "Normal",
  35318. height: math.unit(8 + 4/12, "feet"),
  35319. default: true
  35320. },
  35321. ]
  35322. ))
  35323. characterMakers.push(() => makeCharacter(
  35324. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35325. {
  35326. front: {
  35327. height: math.unit(5, "feet"),
  35328. weight: math.unit(225, "lb"),
  35329. name: "Front",
  35330. image: {
  35331. source: "./media/characters/cindy/front.svg",
  35332. extra: 1320/1250,
  35333. bottom: 42/1362
  35334. }
  35335. },
  35336. frontDressed: {
  35337. height: math.unit(5, "feet"),
  35338. weight: math.unit(225, "lb"),
  35339. name: "Front (Dressed)",
  35340. image: {
  35341. source: "./media/characters/cindy/front-dressed.svg",
  35342. extra: 1320/1250,
  35343. bottom: 42/1362
  35344. }
  35345. },
  35346. back: {
  35347. height: math.unit(5, "feet"),
  35348. weight: math.unit(225, "lb"),
  35349. name: "Back",
  35350. image: {
  35351. source: "./media/characters/cindy/back.svg",
  35352. extra: 1384/1346,
  35353. bottom: 14/1398
  35354. }
  35355. },
  35356. },
  35357. [
  35358. {
  35359. name: "Normal",
  35360. height: math.unit(5, "feet"),
  35361. default: true
  35362. },
  35363. ]
  35364. ))
  35365. characterMakers.push(() => makeCharacter(
  35366. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35367. {
  35368. front: {
  35369. height: math.unit(6 + 9/12, "feet"),
  35370. weight: math.unit(440, "lb"),
  35371. name: "Front",
  35372. image: {
  35373. source: "./media/characters/wilbur-owen/front.svg",
  35374. extra: 1575/1448,
  35375. bottom: 72/1647
  35376. }
  35377. },
  35378. back: {
  35379. height: math.unit(6 + 9/12, "feet"),
  35380. weight: math.unit(440, "lb"),
  35381. name: "Back",
  35382. image: {
  35383. source: "./media/characters/wilbur-owen/back.svg",
  35384. extra: 1578/1445,
  35385. bottom: 36/1614
  35386. }
  35387. },
  35388. },
  35389. [
  35390. {
  35391. name: "Normal",
  35392. height: math.unit(6 + 9/12, "feet"),
  35393. default: true
  35394. },
  35395. ]
  35396. ))
  35397. characterMakers.push(() => makeCharacter(
  35398. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35399. {
  35400. front: {
  35401. height: math.unit(6 + 5/12, "feet"),
  35402. weight: math.unit(650, "lb"),
  35403. name: "Front",
  35404. image: {
  35405. source: "./media/characters/keegan/front.svg",
  35406. extra: 2387/2198,
  35407. bottom: 33/2420
  35408. }
  35409. },
  35410. side: {
  35411. height: math.unit(6 + 5/12, "feet"),
  35412. weight: math.unit(650, "lb"),
  35413. name: "Side",
  35414. image: {
  35415. source: "./media/characters/keegan/side.svg",
  35416. extra: 2390/2202,
  35417. bottom: 47/2437
  35418. }
  35419. },
  35420. back: {
  35421. height: math.unit(6 + 5/12, "feet"),
  35422. weight: math.unit(650, "lb"),
  35423. name: "Back",
  35424. image: {
  35425. source: "./media/characters/keegan/back.svg",
  35426. extra: 2418/2268,
  35427. bottom: 15/2433
  35428. }
  35429. },
  35430. frontSfw: {
  35431. height: math.unit(6 + 5/12, "feet"),
  35432. weight: math.unit(650, "lb"),
  35433. name: "Front (SFW)",
  35434. image: {
  35435. source: "./media/characters/keegan/front-sfw.svg",
  35436. extra: 2387/2198,
  35437. bottom: 33/2420
  35438. }
  35439. },
  35440. beans: {
  35441. height: math.unit(1.85, "feet"),
  35442. name: "Beans",
  35443. image: {
  35444. source: "./media/characters/keegan/beans.svg"
  35445. }
  35446. },
  35447. },
  35448. [
  35449. {
  35450. name: "Normal",
  35451. height: math.unit(6 + 5/12, "feet"),
  35452. default: true
  35453. },
  35454. ]
  35455. ))
  35456. characterMakers.push(() => makeCharacter(
  35457. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35458. {
  35459. front: {
  35460. height: math.unit(9, "feet"),
  35461. name: "Front",
  35462. image: {
  35463. source: "./media/characters/colton/front.svg",
  35464. extra: 1589/1326,
  35465. bottom: 139/1728
  35466. }
  35467. },
  35468. },
  35469. [
  35470. {
  35471. name: "Normal",
  35472. height: math.unit(9, "feet"),
  35473. default: true
  35474. },
  35475. ]
  35476. ))
  35477. characterMakers.push(() => makeCharacter(
  35478. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35479. {
  35480. front: {
  35481. height: math.unit(2 + 9/12, "feet"),
  35482. name: "Front",
  35483. image: {
  35484. source: "./media/characters/bora/front.svg",
  35485. extra: 1265/1250,
  35486. bottom: 24/1289
  35487. }
  35488. },
  35489. },
  35490. [
  35491. {
  35492. name: "Normal",
  35493. height: math.unit(2 + 9/12, "feet"),
  35494. default: true
  35495. },
  35496. ]
  35497. ))
  35498. characterMakers.push(() => makeCharacter(
  35499. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35500. {
  35501. front: {
  35502. height: math.unit(8, "feet"),
  35503. name: "Front",
  35504. image: {
  35505. source: "./media/characters/myu-myu/front.svg",
  35506. extra: 1949/1857,
  35507. bottom: 90/2039
  35508. }
  35509. },
  35510. },
  35511. [
  35512. {
  35513. name: "Normal",
  35514. height: math.unit(8, "feet"),
  35515. default: true
  35516. },
  35517. {
  35518. name: "Big",
  35519. height: math.unit(15, "feet")
  35520. },
  35521. {
  35522. name: "BIG",
  35523. height: math.unit(25, "feet")
  35524. },
  35525. ]
  35526. ))
  35527. characterMakers.push(() => makeCharacter(
  35528. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35529. {
  35530. side: {
  35531. height: math.unit(7 + 5/12, "feet"),
  35532. weight: math.unit(2800, "lb"),
  35533. name: "Side",
  35534. image: {
  35535. source: "./media/characters/haloren/side.svg",
  35536. extra: 1793/409,
  35537. bottom: 59/1852
  35538. }
  35539. },
  35540. frontPaw: {
  35541. height: math.unit(2.36, "feet"),
  35542. name: "Front paw",
  35543. image: {
  35544. source: "./media/characters/haloren/front-paw.svg"
  35545. }
  35546. },
  35547. hindPaw: {
  35548. height: math.unit(3.18, "feet"),
  35549. name: "Hind paw",
  35550. image: {
  35551. source: "./media/characters/haloren/hind-paw.svg"
  35552. }
  35553. },
  35554. maw: {
  35555. height: math.unit(5.05, "feet"),
  35556. name: "Maw",
  35557. image: {
  35558. source: "./media/characters/haloren/maw.svg"
  35559. }
  35560. },
  35561. dick: {
  35562. height: math.unit(2.90, "feet"),
  35563. name: "Dick",
  35564. image: {
  35565. source: "./media/characters/haloren/dick.svg"
  35566. }
  35567. },
  35568. },
  35569. [
  35570. {
  35571. name: "Normal",
  35572. height: math.unit(7 + 5/12, "feet"),
  35573. default: true
  35574. },
  35575. {
  35576. name: "Enhanced",
  35577. height: math.unit(14 + 3/12, "feet")
  35578. },
  35579. ]
  35580. ))
  35581. characterMakers.push(() => makeCharacter(
  35582. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35583. {
  35584. front: {
  35585. height: math.unit(171, "cm"),
  35586. name: "Front",
  35587. image: {
  35588. source: "./media/characters/kimmy/front.svg",
  35589. extra: 1491/1435,
  35590. bottom: 53/1544
  35591. }
  35592. },
  35593. },
  35594. [
  35595. {
  35596. name: "Small",
  35597. height: math.unit(9, "cm")
  35598. },
  35599. {
  35600. name: "Normal",
  35601. height: math.unit(171, "cm"),
  35602. default: true
  35603. },
  35604. ]
  35605. ))
  35606. characterMakers.push(() => makeCharacter(
  35607. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35608. {
  35609. front: {
  35610. height: math.unit(8, "feet"),
  35611. weight: math.unit(300, "lb"),
  35612. name: "Front",
  35613. image: {
  35614. source: "./media/characters/galeboomer/front.svg",
  35615. extra: 4651/4415,
  35616. bottom: 162/4813
  35617. }
  35618. },
  35619. back: {
  35620. height: math.unit(8, "feet"),
  35621. weight: math.unit(300, "lb"),
  35622. name: "Back",
  35623. image: {
  35624. source: "./media/characters/galeboomer/back.svg",
  35625. extra: 4544/4314,
  35626. bottom: 16/4560
  35627. }
  35628. },
  35629. frontAlt: {
  35630. height: math.unit(8, "feet"),
  35631. weight: math.unit(300, "lb"),
  35632. name: "Front (Alt)",
  35633. image: {
  35634. source: "./media/characters/galeboomer/front-alt.svg",
  35635. extra: 4458/4228,
  35636. bottom: 68/4526
  35637. }
  35638. },
  35639. maw: {
  35640. height: math.unit(1.2, "feet"),
  35641. name: "Maw",
  35642. image: {
  35643. source: "./media/characters/galeboomer/maw.svg"
  35644. }
  35645. },
  35646. },
  35647. [
  35648. {
  35649. name: "Normal",
  35650. height: math.unit(8, "feet"),
  35651. default: true
  35652. },
  35653. ]
  35654. ))
  35655. characterMakers.push(() => makeCharacter(
  35656. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35657. {
  35658. front: {
  35659. height: math.unit(5 + 9/12, "feet"),
  35660. weight: math.unit(120, "lb"),
  35661. name: "Front",
  35662. image: {
  35663. source: "./media/characters/chyr/front.svg",
  35664. extra: 1323/1254,
  35665. bottom: 63/1386
  35666. }
  35667. },
  35668. back: {
  35669. height: math.unit(5 + 9/12, "feet"),
  35670. weight: math.unit(120, "lb"),
  35671. name: "Back",
  35672. image: {
  35673. source: "./media/characters/chyr/back.svg",
  35674. extra: 1323/1252,
  35675. bottom: 48/1371
  35676. }
  35677. },
  35678. },
  35679. [
  35680. {
  35681. name: "Normal",
  35682. height: math.unit(5 + 9/12, "feet"),
  35683. default: true
  35684. },
  35685. ]
  35686. ))
  35687. characterMakers.push(() => makeCharacter(
  35688. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35689. {
  35690. front: {
  35691. height: math.unit(7, "feet"),
  35692. weight: math.unit(310, "lb"),
  35693. name: "Front",
  35694. image: {
  35695. source: "./media/characters/solarus/front.svg",
  35696. extra: 2415/2021,
  35697. bottom: 103/2518
  35698. }
  35699. },
  35700. back: {
  35701. height: math.unit(7, "feet"),
  35702. weight: math.unit(310, "lb"),
  35703. name: "Back",
  35704. image: {
  35705. source: "./media/characters/solarus/back.svg",
  35706. extra: 2463/2089,
  35707. bottom: 79/2542
  35708. }
  35709. },
  35710. },
  35711. [
  35712. {
  35713. name: "Normal",
  35714. height: math.unit(7, "feet"),
  35715. default: true
  35716. },
  35717. ]
  35718. ))
  35719. characterMakers.push(() => makeCharacter(
  35720. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35721. {
  35722. front: {
  35723. height: math.unit(16, "feet"),
  35724. name: "Front",
  35725. image: {
  35726. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35727. extra: 1844/1780,
  35728. bottom: 58/1902
  35729. }
  35730. },
  35731. },
  35732. [
  35733. {
  35734. name: "Normal",
  35735. height: math.unit(16, "feet"),
  35736. default: true
  35737. },
  35738. ]
  35739. ))
  35740. characterMakers.push(() => makeCharacter(
  35741. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35742. {
  35743. front: {
  35744. height: math.unit(11 + 6/12, "feet"),
  35745. weight: math.unit(1366, "lb"),
  35746. name: "Front",
  35747. image: {
  35748. source: "./media/characters/lexor/front.svg",
  35749. extra: 1560/1481,
  35750. bottom: 211/1771
  35751. }
  35752. },
  35753. back: {
  35754. height: math.unit(11 + 6/12, "feet"),
  35755. weight: math.unit(1366, "lb"),
  35756. name: "Back",
  35757. image: {
  35758. source: "./media/characters/lexor/back.svg",
  35759. extra: 1614/1533,
  35760. bottom: 76/1690
  35761. }
  35762. },
  35763. maw: {
  35764. height: math.unit(3, "feet"),
  35765. name: "Maw",
  35766. image: {
  35767. source: "./media/characters/lexor/maw.svg"
  35768. }
  35769. },
  35770. dick: {
  35771. height: math.unit(2.59, "feet"),
  35772. name: "Dick",
  35773. image: {
  35774. source: "./media/characters/lexor/dick.svg"
  35775. }
  35776. },
  35777. },
  35778. [
  35779. {
  35780. name: "Normal",
  35781. height: math.unit(11 + 6/12, "feet"),
  35782. default: true
  35783. },
  35784. ]
  35785. ))
  35786. characterMakers.push(() => makeCharacter(
  35787. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35788. {
  35789. front: {
  35790. height: math.unit(5 + 8/12, "feet"),
  35791. name: "Front",
  35792. image: {
  35793. source: "./media/characters/magnum/front.svg",
  35794. extra: 942/855,
  35795. bottom: 26/968
  35796. }
  35797. },
  35798. },
  35799. [
  35800. {
  35801. name: "Normal",
  35802. height: math.unit(5 + 8/12, "feet"),
  35803. default: true
  35804. },
  35805. ]
  35806. ))
  35807. characterMakers.push(() => makeCharacter(
  35808. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35809. {
  35810. front: {
  35811. height: math.unit(18 + 4/12, "feet"),
  35812. weight: math.unit(1500, "kg"),
  35813. name: "Front",
  35814. image: {
  35815. source: "./media/characters/solas-sharpsman/front.svg",
  35816. extra: 1698/1589,
  35817. bottom: 0/1698
  35818. }
  35819. },
  35820. },
  35821. [
  35822. {
  35823. name: "Normal",
  35824. height: math.unit(18 + 4/12, "feet"),
  35825. default: true
  35826. },
  35827. ]
  35828. ))
  35829. characterMakers.push(() => makeCharacter(
  35830. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35831. {
  35832. front: {
  35833. height: math.unit(5 + 5/12, "feet"),
  35834. weight: math.unit(180, "lb"),
  35835. name: "Front",
  35836. image: {
  35837. source: "./media/characters/october/front.svg",
  35838. extra: 1800/1650,
  35839. bottom: 0/1800
  35840. }
  35841. },
  35842. frontNsfw: {
  35843. height: math.unit(5 + 5/12, "feet"),
  35844. weight: math.unit(180, "lb"),
  35845. name: "Front (NSFW)",
  35846. image: {
  35847. source: "./media/characters/october/front-nsfw.svg",
  35848. extra: 1392/1307,
  35849. bottom: 42/1434
  35850. }
  35851. },
  35852. },
  35853. [
  35854. {
  35855. name: "Normal",
  35856. height: math.unit(5 + 5/12, "feet"),
  35857. default: true
  35858. },
  35859. ]
  35860. ))
  35861. characterMakers.push(() => makeCharacter(
  35862. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35863. {
  35864. front: {
  35865. height: math.unit(8 + 6/12, "feet"),
  35866. name: "Front",
  35867. image: {
  35868. source: "./media/characters/essynkardi/front.svg",
  35869. extra: 1914/1846,
  35870. bottom: 22/1936
  35871. }
  35872. },
  35873. },
  35874. [
  35875. {
  35876. name: "Normal",
  35877. height: math.unit(8 + 6/12, "feet"),
  35878. default: true
  35879. },
  35880. ]
  35881. ))
  35882. characterMakers.push(() => makeCharacter(
  35883. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35884. {
  35885. front: {
  35886. height: math.unit(6 + 6/12, "feet"),
  35887. weight: math.unit(7, "lb"),
  35888. name: "Front",
  35889. image: {
  35890. source: "./media/characters/icky/front.svg",
  35891. extra: 813/782,
  35892. bottom: 66/879
  35893. }
  35894. },
  35895. back: {
  35896. height: math.unit(6 + 6/12, "feet"),
  35897. weight: math.unit(7, "lb"),
  35898. name: "Back",
  35899. image: {
  35900. source: "./media/characters/icky/back.svg",
  35901. extra: 754/735,
  35902. bottom: 56/810
  35903. }
  35904. },
  35905. },
  35906. [
  35907. {
  35908. name: "Normal",
  35909. height: math.unit(6 + 6/12, "feet"),
  35910. default: true
  35911. },
  35912. ]
  35913. ))
  35914. characterMakers.push(() => makeCharacter(
  35915. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35916. {
  35917. front: {
  35918. height: math.unit(15, "feet"),
  35919. name: "Front",
  35920. image: {
  35921. source: "./media/characters/rojas/front.svg",
  35922. extra: 1462/1408,
  35923. bottom: 95/1557
  35924. }
  35925. },
  35926. back: {
  35927. height: math.unit(15, "feet"),
  35928. name: "Back",
  35929. image: {
  35930. source: "./media/characters/rojas/back.svg",
  35931. extra: 1023/954,
  35932. bottom: 28/1051
  35933. }
  35934. },
  35935. },
  35936. [
  35937. {
  35938. name: "Normal",
  35939. height: math.unit(15, "feet"),
  35940. default: true
  35941. },
  35942. ]
  35943. ))
  35944. characterMakers.push(() => makeCharacter(
  35945. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35946. {
  35947. frontHuman: {
  35948. height: math.unit(5 + 7/12, "feet"),
  35949. name: "Front (Human)",
  35950. image: {
  35951. source: "./media/characters/alek-dryagan/front-human.svg",
  35952. extra: 1687/1667,
  35953. bottom: 69/1756
  35954. }
  35955. },
  35956. backHuman: {
  35957. height: math.unit(5 + 7/12, "feet"),
  35958. name: "Back (Human)",
  35959. image: {
  35960. source: "./media/characters/alek-dryagan/back-human.svg",
  35961. extra: 1670/1649,
  35962. bottom: 65/1735
  35963. }
  35964. },
  35965. frontDemi: {
  35966. height: math.unit(65, "feet"),
  35967. name: "Front (Demi)",
  35968. image: {
  35969. source: "./media/characters/alek-dryagan/front-demi.svg",
  35970. extra: 1669/1642,
  35971. bottom: 49/1718
  35972. }
  35973. },
  35974. backDemi: {
  35975. height: math.unit(65, "feet"),
  35976. name: "Back (Demi)",
  35977. image: {
  35978. source: "./media/characters/alek-dryagan/back-demi.svg",
  35979. extra: 1658/1637,
  35980. bottom: 40/1698
  35981. }
  35982. },
  35983. mawHuman: {
  35984. height: math.unit(0.3, "feet"),
  35985. name: "Maw (Human)",
  35986. image: {
  35987. source: "./media/characters/alek-dryagan/maw-human.svg"
  35988. }
  35989. },
  35990. mawDemi: {
  35991. height: math.unit(3.8, "feet"),
  35992. name: "Maw (Demi)",
  35993. image: {
  35994. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35995. }
  35996. },
  35997. },
  35998. [
  35999. {
  36000. name: "Normal",
  36001. height: math.unit(5 + 7/12, "feet"),
  36002. default: true
  36003. },
  36004. ]
  36005. ))
  36006. characterMakers.push(() => makeCharacter(
  36007. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36008. {
  36009. frontHuman: {
  36010. height: math.unit(5 + 2/12, "feet"),
  36011. name: "Front (Human)",
  36012. image: {
  36013. source: "./media/characters/gen/front-human.svg",
  36014. extra: 1627/1538,
  36015. bottom: 71/1698
  36016. }
  36017. },
  36018. backHuman: {
  36019. height: math.unit(5 + 2/12, "feet"),
  36020. name: "Back (Human)",
  36021. image: {
  36022. source: "./media/characters/gen/back-human.svg",
  36023. extra: 1638/1548,
  36024. bottom: 69/1707
  36025. }
  36026. },
  36027. frontDemi: {
  36028. height: math.unit(5 + 2/12, "feet"),
  36029. name: "Front (Demi)",
  36030. image: {
  36031. source: "./media/characters/gen/front-demi.svg",
  36032. extra: 1627/1538,
  36033. bottom: 71/1698
  36034. }
  36035. },
  36036. backDemi: {
  36037. height: math.unit(5 + 2/12, "feet"),
  36038. name: "Back (Demi)",
  36039. image: {
  36040. source: "./media/characters/gen/back-demi.svg",
  36041. extra: 1638/1548,
  36042. bottom: 69/1707
  36043. }
  36044. },
  36045. },
  36046. [
  36047. {
  36048. name: "Normal",
  36049. height: math.unit(5 + 2/12, "feet"),
  36050. default: true
  36051. },
  36052. ]
  36053. ))
  36054. characterMakers.push(() => makeCharacter(
  36055. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36056. {
  36057. frontImp: {
  36058. height: math.unit(1 + 11/12, "feet"),
  36059. name: "Front (Imp)",
  36060. image: {
  36061. source: "./media/characters/max-kobold/front-imp.svg",
  36062. extra: 1238/1134,
  36063. bottom: 81/1319
  36064. }
  36065. },
  36066. backImp: {
  36067. height: math.unit(1 + 11/12, "feet"),
  36068. name: "Back (Imp)",
  36069. image: {
  36070. source: "./media/characters/max-kobold/back-imp.svg",
  36071. extra: 1334/1175,
  36072. bottom: 34/1368
  36073. }
  36074. },
  36075. frontDemi: {
  36076. height: math.unit(5 + 9/12, "feet"),
  36077. name: "Front (Demi)",
  36078. image: {
  36079. source: "./media/characters/max-kobold/front-demi.svg",
  36080. extra: 1715/1685,
  36081. bottom: 54/1769
  36082. }
  36083. },
  36084. backDemi: {
  36085. height: math.unit(5 + 9/12, "feet"),
  36086. name: "Back (Demi)",
  36087. image: {
  36088. source: "./media/characters/max-kobold/back-demi.svg",
  36089. extra: 1752/1729,
  36090. bottom: 41/1793
  36091. }
  36092. },
  36093. handImp: {
  36094. height: math.unit(0.45, "feet"),
  36095. name: "Hand (Imp)",
  36096. image: {
  36097. source: "./media/characters/max-kobold/hand.svg"
  36098. }
  36099. },
  36100. pawImp: {
  36101. height: math.unit(0.46, "feet"),
  36102. name: "Paw (Imp)",
  36103. image: {
  36104. source: "./media/characters/max-kobold/paw.svg"
  36105. }
  36106. },
  36107. handDemi: {
  36108. height: math.unit(0.80, "feet"),
  36109. name: "Hand (Demi)",
  36110. image: {
  36111. source: "./media/characters/max-kobold/hand.svg"
  36112. }
  36113. },
  36114. pawDemi: {
  36115. height: math.unit(1.1, "feet"),
  36116. name: "Paw (Demi)",
  36117. image: {
  36118. source: "./media/characters/max-kobold/paw.svg"
  36119. }
  36120. },
  36121. headImp: {
  36122. height: math.unit(1.33, "feet"),
  36123. name: "Head (Imp)",
  36124. image: {
  36125. source: "./media/characters/max-kobold/head-imp.svg"
  36126. }
  36127. },
  36128. mawImp: {
  36129. height: math.unit(0.75, "feet"),
  36130. name: "Maw (Imp)",
  36131. image: {
  36132. source: "./media/characters/max-kobold/maw-imp.svg"
  36133. }
  36134. },
  36135. mawDemi: {
  36136. height: math.unit(0.42, "feet"),
  36137. name: "Maw (Demi)",
  36138. image: {
  36139. source: "./media/characters/max-kobold/maw-demi.svg"
  36140. }
  36141. },
  36142. },
  36143. [
  36144. {
  36145. name: "Normal",
  36146. height: math.unit(1 + 11/12, "feet"),
  36147. default: true
  36148. },
  36149. ]
  36150. ))
  36151. characterMakers.push(() => makeCharacter(
  36152. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36153. {
  36154. front: {
  36155. height: math.unit(7 + 5/12, "feet"),
  36156. name: "Front",
  36157. image: {
  36158. source: "./media/characters/carbon/front.svg",
  36159. extra: 1754/1689,
  36160. bottom: 65/1819
  36161. }
  36162. },
  36163. back: {
  36164. height: math.unit(7 + 5/12, "feet"),
  36165. name: "Back",
  36166. image: {
  36167. source: "./media/characters/carbon/back.svg",
  36168. extra: 1762/1695,
  36169. bottom: 24/1786
  36170. }
  36171. },
  36172. frontGigantamax: {
  36173. height: math.unit(150, "feet"),
  36174. name: "Front (Gigantamax)",
  36175. image: {
  36176. source: "./media/characters/carbon/front-gigantamax.svg",
  36177. extra: 1826/1669,
  36178. bottom: 59/1885
  36179. }
  36180. },
  36181. backGigantamax: {
  36182. height: math.unit(150, "feet"),
  36183. name: "Back (Gigantamax)",
  36184. image: {
  36185. source: "./media/characters/carbon/back-gigantamax.svg",
  36186. extra: 1796/1653,
  36187. bottom: 53/1849
  36188. }
  36189. },
  36190. maw: {
  36191. height: math.unit(0.48, "feet"),
  36192. name: "Maw",
  36193. image: {
  36194. source: "./media/characters/carbon/maw.svg"
  36195. }
  36196. },
  36197. mawGigantamax: {
  36198. height: math.unit(7.5, "feet"),
  36199. name: "Maw (Gigantamax)",
  36200. image: {
  36201. source: "./media/characters/carbon/maw-gigantamax.svg"
  36202. }
  36203. },
  36204. },
  36205. [
  36206. {
  36207. name: "Normal",
  36208. height: math.unit(7 + 5/12, "feet"),
  36209. default: true
  36210. },
  36211. ]
  36212. ))
  36213. characterMakers.push(() => makeCharacter(
  36214. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36215. {
  36216. front: {
  36217. height: math.unit(6, "feet"),
  36218. name: "Front",
  36219. image: {
  36220. source: "./media/characters/maverick/front.svg",
  36221. extra: 1672/1661,
  36222. bottom: 85/1757
  36223. }
  36224. },
  36225. back: {
  36226. height: math.unit(6, "feet"),
  36227. name: "Back",
  36228. image: {
  36229. source: "./media/characters/maverick/back.svg",
  36230. extra: 1642/1631,
  36231. bottom: 38/1680
  36232. }
  36233. },
  36234. },
  36235. [
  36236. {
  36237. name: "Normal",
  36238. height: math.unit(6, "feet"),
  36239. default: true
  36240. },
  36241. ]
  36242. ))
  36243. characterMakers.push(() => makeCharacter(
  36244. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36245. {
  36246. front: {
  36247. height: math.unit(15, "feet"),
  36248. weight: math.unit(615, "lb"),
  36249. name: "Front",
  36250. image: {
  36251. source: "./media/characters/grockle/front.svg",
  36252. extra: 1535/1427,
  36253. bottom: 56/1591
  36254. }
  36255. },
  36256. },
  36257. [
  36258. {
  36259. name: "Normal",
  36260. height: math.unit(15, "feet"),
  36261. default: true
  36262. },
  36263. {
  36264. name: "Large",
  36265. height: math.unit(150, "feet")
  36266. },
  36267. {
  36268. name: "Macro",
  36269. height: math.unit(1876, "feet")
  36270. },
  36271. {
  36272. name: "Mega Macro",
  36273. height: math.unit(121940, "feet")
  36274. },
  36275. {
  36276. name: "Giga Macro",
  36277. height: math.unit(750, "km")
  36278. },
  36279. {
  36280. name: "Tera Macro",
  36281. height: math.unit(750000, "km")
  36282. },
  36283. {
  36284. name: "Galactic",
  36285. height: math.unit(1.4e5, "km")
  36286. },
  36287. {
  36288. name: "Godlike",
  36289. height: math.unit(9.8e280, "galaxies")
  36290. },
  36291. ]
  36292. ))
  36293. characterMakers.push(() => makeCharacter(
  36294. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36295. {
  36296. front: {
  36297. height: math.unit(11, "meters"),
  36298. weight: math.unit(20, "tonnes"),
  36299. name: "Front",
  36300. image: {
  36301. source: "./media/characters/alistair/front.svg",
  36302. extra: 1265/1009,
  36303. bottom: 93/1358
  36304. }
  36305. },
  36306. },
  36307. [
  36308. {
  36309. name: "Normal",
  36310. height: math.unit(11, "meters"),
  36311. default: true
  36312. },
  36313. ]
  36314. ))
  36315. characterMakers.push(() => makeCharacter(
  36316. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36317. {
  36318. front: {
  36319. height: math.unit(5 + 8/12, "feet"),
  36320. name: "Front",
  36321. image: {
  36322. source: "./media/characters/haruka/front.svg",
  36323. extra: 2012/1952,
  36324. bottom: 0/2012
  36325. }
  36326. },
  36327. },
  36328. [
  36329. {
  36330. name: "Normal",
  36331. height: math.unit(5 + 8/12, "feet"),
  36332. default: true
  36333. },
  36334. ]
  36335. ))
  36336. characterMakers.push(() => makeCharacter(
  36337. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36338. {
  36339. back: {
  36340. height: math.unit(9, "feet"),
  36341. name: "Back",
  36342. image: {
  36343. source: "./media/characters/vivian-sylveon/back.svg",
  36344. extra: 1853/1714,
  36345. bottom: 0/1853
  36346. }
  36347. },
  36348. },
  36349. [
  36350. {
  36351. name: "Normal",
  36352. height: math.unit(9, "feet"),
  36353. default: true
  36354. },
  36355. {
  36356. name: "Macro",
  36357. height: math.unit(500, "feet")
  36358. },
  36359. {
  36360. name: "Megamacro",
  36361. height: math.unit(600, "miles")
  36362. },
  36363. {
  36364. name: "Gigamacro",
  36365. height: math.unit(30000, "miles")
  36366. },
  36367. ]
  36368. ))
  36369. characterMakers.push(() => makeCharacter(
  36370. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36371. {
  36372. anthro: {
  36373. height: math.unit(5 + 10/12, "feet"),
  36374. weight: math.unit(100, "lb"),
  36375. name: "Anthro",
  36376. image: {
  36377. source: "./media/characters/daiki/anthro.svg",
  36378. extra: 1115/1027,
  36379. bottom: 69/1184
  36380. }
  36381. },
  36382. feral: {
  36383. height: math.unit(200, "feet"),
  36384. name: "Feral",
  36385. image: {
  36386. source: "./media/characters/daiki/feral.svg",
  36387. extra: 1256/313,
  36388. bottom: 39/1295
  36389. }
  36390. },
  36391. feralHead: {
  36392. height: math.unit(171, "feet"),
  36393. name: "Feral Head",
  36394. image: {
  36395. source: "./media/characters/daiki/feral-head.svg"
  36396. }
  36397. },
  36398. manaDragon: {
  36399. height: math.unit(170, "meters"),
  36400. name: "Mana-dragon",
  36401. image: {
  36402. source: "./media/characters/daiki/mana-dragon.svg",
  36403. extra: 763/420,
  36404. bottom: 97/860
  36405. }
  36406. },
  36407. },
  36408. [
  36409. {
  36410. name: "Normal",
  36411. height: math.unit(5 + 10/12, "feet"),
  36412. default: true
  36413. },
  36414. ]
  36415. ))
  36416. characterMakers.push(() => makeCharacter(
  36417. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36418. {
  36419. fullyEquippedFront: {
  36420. height: math.unit(3 + 1/12, "feet"),
  36421. weight: math.unit(24, "lb"),
  36422. name: "Fully Equipped (Front)",
  36423. image: {
  36424. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36425. extra: 687/605,
  36426. bottom: 18/705
  36427. }
  36428. },
  36429. fullyEquippedBack: {
  36430. height: math.unit(3 + 1/12, "feet"),
  36431. weight: math.unit(24, "lb"),
  36432. name: "Fully Equipped (Back)",
  36433. image: {
  36434. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36435. extra: 689/590,
  36436. bottom: 18/707
  36437. }
  36438. },
  36439. dailyWear: {
  36440. height: math.unit(3 + 1/12, "feet"),
  36441. weight: math.unit(24, "lb"),
  36442. name: "Daily Wear",
  36443. image: {
  36444. source: "./media/characters/tea-spot/daily-wear.svg",
  36445. extra: 701/620,
  36446. bottom: 21/722
  36447. }
  36448. },
  36449. maidWork: {
  36450. height: math.unit(3 + 1/12, "feet"),
  36451. weight: math.unit(24, "lb"),
  36452. name: "Maid Work",
  36453. image: {
  36454. source: "./media/characters/tea-spot/maid-work.svg",
  36455. extra: 693/609,
  36456. bottom: 15/708
  36457. }
  36458. },
  36459. },
  36460. [
  36461. {
  36462. name: "Normal",
  36463. height: math.unit(3 + 1/12, "feet"),
  36464. default: true
  36465. },
  36466. ]
  36467. ))
  36468. characterMakers.push(() => makeCharacter(
  36469. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36470. {
  36471. front: {
  36472. height: math.unit(175, "cm"),
  36473. weight: math.unit(75, "kg"),
  36474. name: "Front",
  36475. image: {
  36476. source: "./media/characters/chee/front.svg",
  36477. extra: 1796/1740,
  36478. bottom: 40/1836
  36479. }
  36480. },
  36481. },
  36482. [
  36483. {
  36484. name: "Micro-Micro",
  36485. height: math.unit(1, "nm")
  36486. },
  36487. {
  36488. name: "Micro-erst",
  36489. height: math.unit(1, "micrometer")
  36490. },
  36491. {
  36492. name: "Micro-er",
  36493. height: math.unit(1, "cm")
  36494. },
  36495. {
  36496. name: "Normal",
  36497. height: math.unit(175, "cm"),
  36498. default: true
  36499. },
  36500. {
  36501. name: "Macro",
  36502. height: math.unit(100, "m")
  36503. },
  36504. {
  36505. name: "Macro-er",
  36506. height: math.unit(1, "km")
  36507. },
  36508. {
  36509. name: "Macro-erst",
  36510. height: math.unit(10, "km")
  36511. },
  36512. {
  36513. name: "Macro-Macro",
  36514. height: math.unit(100, "km")
  36515. },
  36516. ]
  36517. ))
  36518. characterMakers.push(() => makeCharacter(
  36519. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36520. {
  36521. front: {
  36522. height: math.unit(11 + 9/12, "feet"),
  36523. weight: math.unit(935, "lb"),
  36524. name: "Front",
  36525. image: {
  36526. source: "./media/characters/kingsley/front.svg",
  36527. extra: 1803/1674,
  36528. bottom: 127/1930
  36529. }
  36530. },
  36531. frontNude: {
  36532. height: math.unit(11 + 9/12, "feet"),
  36533. weight: math.unit(935, "lb"),
  36534. name: "Front (Nude)",
  36535. image: {
  36536. source: "./media/characters/kingsley/front-nude.svg",
  36537. extra: 1803/1674,
  36538. bottom: 127/1930
  36539. }
  36540. },
  36541. },
  36542. [
  36543. {
  36544. name: "Normal",
  36545. height: math.unit(11 + 9/12, "feet"),
  36546. default: true
  36547. },
  36548. ]
  36549. ))
  36550. characterMakers.push(() => makeCharacter(
  36551. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36552. {
  36553. side: {
  36554. height: math.unit(9, "feet"),
  36555. name: "Side",
  36556. image: {
  36557. source: "./media/characters/rymel/side.svg",
  36558. extra: 792/469,
  36559. bottom: 121/913
  36560. }
  36561. },
  36562. maw: {
  36563. height: math.unit(2.4, "meters"),
  36564. name: "Maw",
  36565. image: {
  36566. source: "./media/characters/rymel/maw.svg"
  36567. }
  36568. },
  36569. },
  36570. [
  36571. {
  36572. name: "House Drake",
  36573. height: math.unit(2, "feet")
  36574. },
  36575. {
  36576. name: "Reduced",
  36577. height: math.unit(4.5, "feet")
  36578. },
  36579. {
  36580. name: "Normal",
  36581. height: math.unit(9, "feet"),
  36582. default: true
  36583. },
  36584. ]
  36585. ))
  36586. characterMakers.push(() => makeCharacter(
  36587. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36588. {
  36589. front: {
  36590. height: math.unit(1.74, "meters"),
  36591. weight: math.unit(55, "kg"),
  36592. name: "Front",
  36593. image: {
  36594. source: "./media/characters/rubus/front.svg",
  36595. extra: 1894/1742,
  36596. bottom: 44/1938
  36597. }
  36598. },
  36599. },
  36600. [
  36601. {
  36602. name: "Normal",
  36603. height: math.unit(1.74, "meters"),
  36604. default: true
  36605. },
  36606. ]
  36607. ))
  36608. characterMakers.push(() => makeCharacter(
  36609. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36610. {
  36611. front: {
  36612. height: math.unit(5 + 2/12, "feet"),
  36613. weight: math.unit(112, "lb"),
  36614. name: "Front",
  36615. image: {
  36616. source: "./media/characters/cassie-kingston/front.svg",
  36617. extra: 1438/1390,
  36618. bottom: 47/1485
  36619. }
  36620. },
  36621. },
  36622. [
  36623. {
  36624. name: "Normal",
  36625. height: math.unit(5 + 2/12, "feet"),
  36626. default: true
  36627. },
  36628. {
  36629. name: "Macro",
  36630. height: math.unit(128, "feet")
  36631. },
  36632. {
  36633. name: "Megamacro",
  36634. height: math.unit(2.56, "miles")
  36635. },
  36636. ]
  36637. ))
  36638. characterMakers.push(() => makeCharacter(
  36639. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36640. {
  36641. front: {
  36642. height: math.unit(7, "feet"),
  36643. name: "Front",
  36644. image: {
  36645. source: "./media/characters/fox/front.svg",
  36646. extra: 1798/1703,
  36647. bottom: 55/1853
  36648. }
  36649. },
  36650. back: {
  36651. height: math.unit(7, "feet"),
  36652. name: "Back",
  36653. image: {
  36654. source: "./media/characters/fox/back.svg",
  36655. extra: 1748/1649,
  36656. bottom: 32/1780
  36657. }
  36658. },
  36659. head: {
  36660. height: math.unit(1.95, "feet"),
  36661. name: "Head",
  36662. image: {
  36663. source: "./media/characters/fox/head.svg"
  36664. }
  36665. },
  36666. dick: {
  36667. height: math.unit(1.33, "feet"),
  36668. name: "Dick",
  36669. image: {
  36670. source: "./media/characters/fox/dick.svg"
  36671. }
  36672. },
  36673. foot: {
  36674. height: math.unit(1, "feet"),
  36675. name: "Foot",
  36676. image: {
  36677. source: "./media/characters/fox/foot.svg"
  36678. }
  36679. },
  36680. paw: {
  36681. height: math.unit(0.92, "feet"),
  36682. name: "Paw",
  36683. image: {
  36684. source: "./media/characters/fox/paw.svg"
  36685. }
  36686. },
  36687. },
  36688. [
  36689. {
  36690. name: "Small",
  36691. height: math.unit(3, "inches")
  36692. },
  36693. {
  36694. name: "\"Realistic\"",
  36695. height: math.unit(7, "feet")
  36696. },
  36697. {
  36698. name: "Normal",
  36699. height: math.unit(150, "feet"),
  36700. default: true
  36701. },
  36702. {
  36703. name: "BIG",
  36704. height: math.unit(1200, "feet")
  36705. },
  36706. {
  36707. name: "👀",
  36708. height: math.unit(5, "miles")
  36709. },
  36710. {
  36711. name: "👀👀👀",
  36712. height: math.unit(64, "miles")
  36713. },
  36714. ]
  36715. ))
  36716. characterMakers.push(() => makeCharacter(
  36717. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36718. {
  36719. front: {
  36720. height: math.unit(625, "feet"),
  36721. name: "Front",
  36722. image: {
  36723. source: "./media/characters/asonja-rossa/front.svg",
  36724. extra: 1833/1686,
  36725. bottom: 24/1857
  36726. }
  36727. },
  36728. back: {
  36729. height: math.unit(625, "feet"),
  36730. name: "Back",
  36731. image: {
  36732. source: "./media/characters/asonja-rossa/back.svg",
  36733. extra: 1852/1753,
  36734. bottom: 26/1878
  36735. }
  36736. },
  36737. },
  36738. [
  36739. {
  36740. name: "Macro",
  36741. height: math.unit(625, "feet"),
  36742. default: true
  36743. },
  36744. ]
  36745. ))
  36746. characterMakers.push(() => makeCharacter(
  36747. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36748. {
  36749. side: {
  36750. height: math.unit(6, "feet"),
  36751. weight: math.unit(150, "lb"),
  36752. name: "Side",
  36753. image: {
  36754. source: "./media/characters/rezukii/side.svg",
  36755. extra: 979/542,
  36756. bottom: 87/1066
  36757. }
  36758. },
  36759. },
  36760. [
  36761. {
  36762. name: "Tiny",
  36763. height: math.unit(2, "feet")
  36764. },
  36765. {
  36766. name: "Smol",
  36767. height: math.unit(4, "feet")
  36768. },
  36769. {
  36770. name: "Normal",
  36771. height: math.unit(8, "feet"),
  36772. default: true
  36773. },
  36774. {
  36775. name: "Big",
  36776. height: math.unit(12, "feet")
  36777. },
  36778. {
  36779. name: "Macro",
  36780. height: math.unit(30, "feet")
  36781. },
  36782. ]
  36783. ))
  36784. characterMakers.push(() => makeCharacter(
  36785. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36786. {
  36787. front: {
  36788. height: math.unit(14, "feet"),
  36789. weight: math.unit(9.5, "tonnes"),
  36790. name: "Front",
  36791. image: {
  36792. source: "./media/characters/dawnheart/front.svg",
  36793. extra: 2792/2675,
  36794. bottom: 64/2856
  36795. }
  36796. },
  36797. },
  36798. [
  36799. {
  36800. name: "Normal",
  36801. height: math.unit(14, "feet"),
  36802. default: true
  36803. },
  36804. ]
  36805. ))
  36806. characterMakers.push(() => makeCharacter(
  36807. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36808. {
  36809. front: {
  36810. height: math.unit(1.7, "m"),
  36811. name: "Front",
  36812. image: {
  36813. source: "./media/characters/gladi/front.svg",
  36814. extra: 1460/1362,
  36815. bottom: 19/1479
  36816. }
  36817. },
  36818. back: {
  36819. height: math.unit(1.7, "m"),
  36820. name: "Back",
  36821. image: {
  36822. source: "./media/characters/gladi/back.svg",
  36823. extra: 1459/1357,
  36824. bottom: 12/1471
  36825. }
  36826. },
  36827. feral: {
  36828. height: math.unit(2.05, "m"),
  36829. name: "Feral",
  36830. image: {
  36831. source: "./media/characters/gladi/feral.svg",
  36832. extra: 821/557,
  36833. bottom: 91/912
  36834. }
  36835. },
  36836. },
  36837. [
  36838. {
  36839. name: "Shortest",
  36840. height: math.unit(70, "cm")
  36841. },
  36842. {
  36843. name: "Normal",
  36844. height: math.unit(1.7, "m")
  36845. },
  36846. {
  36847. name: "Macro",
  36848. height: math.unit(10, "m"),
  36849. default: true
  36850. },
  36851. {
  36852. name: "Tallest",
  36853. height: math.unit(200, "m")
  36854. },
  36855. ]
  36856. ))
  36857. characterMakers.push(() => makeCharacter(
  36858. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36859. {
  36860. front: {
  36861. height: math.unit(5 + 7/12, "feet"),
  36862. weight: math.unit(92, "kg"),
  36863. name: "Front",
  36864. image: {
  36865. source: "./media/characters/erdno/front.svg",
  36866. extra: 1954/1889,
  36867. bottom: 22/1976
  36868. }
  36869. },
  36870. },
  36871. [
  36872. {
  36873. name: "Normal",
  36874. height: math.unit(5 + 7/12, "feet"),
  36875. default: true
  36876. },
  36877. ]
  36878. ))
  36879. characterMakers.push(() => makeCharacter(
  36880. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36881. {
  36882. front: {
  36883. height: math.unit(5 + 10/12, "feet"),
  36884. weight: math.unit(150, "lb"),
  36885. name: "Front",
  36886. image: {
  36887. source: "./media/characters/jamie/front.svg",
  36888. extra: 1908/1768,
  36889. bottom: 19/1927
  36890. }
  36891. },
  36892. },
  36893. [
  36894. {
  36895. name: "Minimum",
  36896. height: math.unit(2, "cm")
  36897. },
  36898. {
  36899. name: "Micro",
  36900. height: math.unit(3, "inches")
  36901. },
  36902. {
  36903. name: "Normal",
  36904. height: math.unit(5 + 10/12, "feet"),
  36905. default: true
  36906. },
  36907. {
  36908. name: "Macro",
  36909. height: math.unit(150, "feet")
  36910. },
  36911. {
  36912. name: "Megamacro",
  36913. height: math.unit(10000, "m")
  36914. },
  36915. ]
  36916. ))
  36917. characterMakers.push(() => makeCharacter(
  36918. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36919. {
  36920. front: {
  36921. height: math.unit(2, "meters"),
  36922. weight: math.unit(100, "kg"),
  36923. name: "Front",
  36924. image: {
  36925. source: "./media/characters/shiron/front.svg",
  36926. extra: 2103/1985,
  36927. bottom: 98/2201
  36928. }
  36929. },
  36930. back: {
  36931. height: math.unit(2, "meters"),
  36932. weight: math.unit(100, "kg"),
  36933. name: "Back",
  36934. image: {
  36935. source: "./media/characters/shiron/back.svg",
  36936. extra: 2110/2015,
  36937. bottom: 89/2199
  36938. }
  36939. },
  36940. hand: {
  36941. height: math.unit(0.96, "feet"),
  36942. name: "Hand",
  36943. image: {
  36944. source: "./media/characters/shiron/hand.svg"
  36945. }
  36946. },
  36947. foot: {
  36948. height: math.unit(1.464, "feet"),
  36949. name: "Foot",
  36950. image: {
  36951. source: "./media/characters/shiron/foot.svg"
  36952. }
  36953. },
  36954. },
  36955. [
  36956. {
  36957. name: "Normal",
  36958. height: math.unit(2, "meters")
  36959. },
  36960. {
  36961. name: "Macro",
  36962. height: math.unit(500, "meters"),
  36963. default: true
  36964. },
  36965. {
  36966. name: "Megamacro",
  36967. height: math.unit(20, "km")
  36968. },
  36969. ]
  36970. ))
  36971. characterMakers.push(() => makeCharacter(
  36972. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36973. {
  36974. front: {
  36975. height: math.unit(6, "feet"),
  36976. name: "Front",
  36977. image: {
  36978. source: "./media/characters/sam/front.svg",
  36979. extra: 849/826,
  36980. bottom: 19/868
  36981. }
  36982. },
  36983. },
  36984. [
  36985. {
  36986. name: "Normal",
  36987. height: math.unit(6, "feet"),
  36988. default: true
  36989. },
  36990. ]
  36991. ))
  36992. characterMakers.push(() => makeCharacter(
  36993. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36994. {
  36995. front: {
  36996. height: math.unit(8 + 4/12, "feet"),
  36997. weight: math.unit(122, "kg"),
  36998. name: "Front",
  36999. image: {
  37000. source: "./media/characters/namori-kurogawa/front.svg",
  37001. extra: 1894/1576,
  37002. bottom: 34/1928
  37003. }
  37004. },
  37005. },
  37006. [
  37007. {
  37008. name: "Normal",
  37009. height: math.unit(8 + 4/12, "feet"),
  37010. default: true
  37011. },
  37012. ]
  37013. ))
  37014. characterMakers.push(() => makeCharacter(
  37015. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37016. {
  37017. front: {
  37018. height: math.unit(9, "feet"),
  37019. weight: math.unit(621, "lb"),
  37020. name: "Front",
  37021. image: {
  37022. source: "./media/characters/unmru/front.svg",
  37023. extra: 1853/1747,
  37024. bottom: 73/1926
  37025. }
  37026. },
  37027. side: {
  37028. height: math.unit(9, "feet"),
  37029. weight: math.unit(621, "lb"),
  37030. name: "Side",
  37031. image: {
  37032. source: "./media/characters/unmru/side.svg",
  37033. extra: 1781/1671,
  37034. bottom: 127/1908
  37035. }
  37036. },
  37037. back: {
  37038. height: math.unit(9, "feet"),
  37039. weight: math.unit(621, "lb"),
  37040. name: "Back",
  37041. image: {
  37042. source: "./media/characters/unmru/back.svg",
  37043. extra: 1894/1765,
  37044. bottom: 75/1969
  37045. }
  37046. },
  37047. dick: {
  37048. height: math.unit(3, "feet"),
  37049. weight: math.unit(35, "lb"),
  37050. name: "Dick",
  37051. image: {
  37052. source: "./media/characters/unmru/dick.svg"
  37053. }
  37054. },
  37055. },
  37056. [
  37057. {
  37058. name: "Normal",
  37059. height: math.unit(9, "feet")
  37060. },
  37061. {
  37062. name: "Natural",
  37063. height: math.unit(27, "feet"),
  37064. default: true
  37065. },
  37066. {
  37067. name: "Giant",
  37068. height: math.unit(90, "feet")
  37069. },
  37070. {
  37071. name: "Kaiju",
  37072. height: math.unit(270, "feet")
  37073. },
  37074. {
  37075. name: "Macro",
  37076. height: math.unit(900, "feet")
  37077. },
  37078. {
  37079. name: "Macro+",
  37080. height: math.unit(2700, "feet")
  37081. },
  37082. {
  37083. name: "Megamacro",
  37084. height: math.unit(9000, "feet")
  37085. },
  37086. {
  37087. name: "City-Crushing",
  37088. height: math.unit(27000, "feet")
  37089. },
  37090. {
  37091. name: "Mountain-Mashing",
  37092. height: math.unit(90000, "feet")
  37093. },
  37094. {
  37095. name: "Earth-Eclipsing",
  37096. height: math.unit(2.7e8, "feet")
  37097. },
  37098. {
  37099. name: "Sol-Swallowing",
  37100. height: math.unit(9e10, "feet")
  37101. },
  37102. {
  37103. name: "Majoris-Munching",
  37104. height: math.unit(2.7e13, "feet")
  37105. },
  37106. ]
  37107. ))
  37108. characterMakers.push(() => makeCharacter(
  37109. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37110. {
  37111. front: {
  37112. height: math.unit(1, "inch"),
  37113. name: "Front",
  37114. image: {
  37115. source: "./media/characters/squeaks-mouse/front.svg",
  37116. extra: 352/308,
  37117. bottom: 25/377
  37118. }
  37119. },
  37120. },
  37121. [
  37122. {
  37123. name: "Micro",
  37124. height: math.unit(1, "inch"),
  37125. default: true
  37126. },
  37127. ]
  37128. ))
  37129. characterMakers.push(() => makeCharacter(
  37130. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37131. {
  37132. side: {
  37133. height: math.unit(35, "feet"),
  37134. name: "Side",
  37135. image: {
  37136. source: "./media/characters/sayko/side.svg",
  37137. extra: 1697/1021,
  37138. bottom: 82/1779
  37139. }
  37140. },
  37141. head: {
  37142. height: math.unit(16, "feet"),
  37143. name: "Head",
  37144. image: {
  37145. source: "./media/characters/sayko/head.svg"
  37146. }
  37147. },
  37148. forepaw: {
  37149. height: math.unit(7.85, "feet"),
  37150. name: "Forepaw",
  37151. image: {
  37152. source: "./media/characters/sayko/forepaw.svg"
  37153. }
  37154. },
  37155. hindpaw: {
  37156. height: math.unit(8.8, "feet"),
  37157. name: "Hindpaw",
  37158. image: {
  37159. source: "./media/characters/sayko/hindpaw.svg"
  37160. }
  37161. },
  37162. },
  37163. [
  37164. {
  37165. name: "Normal",
  37166. height: math.unit(35, "feet"),
  37167. default: true
  37168. },
  37169. {
  37170. name: "Colossus",
  37171. height: math.unit(100, "meters")
  37172. },
  37173. {
  37174. name: "\"Small\" Deity",
  37175. height: math.unit(1, "km")
  37176. },
  37177. {
  37178. name: "\"Large\" Deity",
  37179. height: math.unit(15, "km")
  37180. },
  37181. ]
  37182. ))
  37183. characterMakers.push(() => makeCharacter(
  37184. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37185. {
  37186. front: {
  37187. height: math.unit(6, "feet"),
  37188. weight: math.unit(250, "lb"),
  37189. name: "Front",
  37190. image: {
  37191. source: "./media/characters/mukiro/front.svg",
  37192. extra: 1368/1310,
  37193. bottom: 34/1402
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "Normal",
  37200. height: math.unit(6, "feet"),
  37201. default: true
  37202. },
  37203. ]
  37204. ))
  37205. characterMakers.push(() => makeCharacter(
  37206. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37207. {
  37208. front: {
  37209. height: math.unit(12 + 4/12, "feet"),
  37210. name: "Front",
  37211. image: {
  37212. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37213. extra: 1346/1311,
  37214. bottom: 65/1411
  37215. }
  37216. },
  37217. },
  37218. [
  37219. {
  37220. name: "Base",
  37221. height: math.unit(12 + 4/12, "feet"),
  37222. default: true
  37223. },
  37224. {
  37225. name: "Macro",
  37226. height: math.unit(150, "feet")
  37227. },
  37228. {
  37229. name: "Mega",
  37230. height: math.unit(2, "miles")
  37231. },
  37232. {
  37233. name: "Demi God",
  37234. height: math.unit(4, "AU")
  37235. },
  37236. {
  37237. name: "God Size",
  37238. height: math.unit(1, "universe")
  37239. },
  37240. ]
  37241. ))
  37242. characterMakers.push(() => makeCharacter(
  37243. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37244. {
  37245. front: {
  37246. height: math.unit(3 + 3/12, "feet"),
  37247. weight: math.unit(88, "lb"),
  37248. name: "Front",
  37249. image: {
  37250. source: "./media/characters/trey/front.svg",
  37251. extra: 1815/1509,
  37252. bottom: 60/1875
  37253. }
  37254. },
  37255. },
  37256. [
  37257. {
  37258. name: "Normal",
  37259. height: math.unit(3 + 3/12, "feet"),
  37260. default: true
  37261. },
  37262. ]
  37263. ))
  37264. characterMakers.push(() => makeCharacter(
  37265. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37266. {
  37267. front: {
  37268. height: math.unit(4, "meters"),
  37269. name: "Front",
  37270. image: {
  37271. source: "./media/characters/adelonda/front.svg",
  37272. extra: 1942/1775,
  37273. bottom: 33/1975
  37274. }
  37275. },
  37276. back: {
  37277. height: math.unit(4, "meters"),
  37278. name: "Back",
  37279. image: {
  37280. source: "./media/characters/adelonda/back.svg",
  37281. extra: 1932/1780,
  37282. bottom: 42/1974
  37283. }
  37284. },
  37285. bust: {
  37286. height: math.unit(1.8, "meter"),
  37287. name: "Bust",
  37288. image: {
  37289. source: "./media/characters/adelonda/bust.svg"
  37290. }
  37291. },
  37292. },
  37293. [
  37294. {
  37295. name: "Normal",
  37296. height: math.unit(4, "meters"),
  37297. default: true
  37298. },
  37299. ]
  37300. ))
  37301. characterMakers.push(() => makeCharacter(
  37302. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37303. {
  37304. front: {
  37305. height: math.unit(8 + 4/12, "feet"),
  37306. weight: math.unit(670, "lb"),
  37307. name: "Front",
  37308. image: {
  37309. source: "./media/characters/acadiel/front.svg",
  37310. extra: 1901/1595,
  37311. bottom: 142/2043
  37312. }
  37313. },
  37314. },
  37315. [
  37316. {
  37317. name: "Normal",
  37318. height: math.unit(8 + 4/12, "feet"),
  37319. default: true
  37320. },
  37321. {
  37322. name: "Macro",
  37323. height: math.unit(200, "feet")
  37324. },
  37325. ]
  37326. ))
  37327. characterMakers.push(() => makeCharacter(
  37328. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37329. {
  37330. front: {
  37331. height: math.unit(6 + 2/12, "feet"),
  37332. weight: math.unit(185, "lb"),
  37333. name: "Front",
  37334. image: {
  37335. source: "./media/characters/kayne-ein/front.svg",
  37336. extra: 1780/1560,
  37337. bottom: 81/1861
  37338. }
  37339. },
  37340. },
  37341. [
  37342. {
  37343. name: "Normal",
  37344. height: math.unit(6 + 2/12, "feet"),
  37345. default: true
  37346. },
  37347. {
  37348. name: "Transformation Stage",
  37349. height: math.unit(15, "feet")
  37350. },
  37351. {
  37352. name: "Macro",
  37353. height: math.unit(150, "feet")
  37354. },
  37355. {
  37356. name: "Earth's Shadow",
  37357. height: math.unit(6200, "miles")
  37358. },
  37359. {
  37360. name: "Universal Demon",
  37361. height: math.unit(28e9, "parsecs")
  37362. },
  37363. {
  37364. name: "Multiverse God",
  37365. height: math.unit(3, "multiverses")
  37366. },
  37367. ]
  37368. ))
  37369. characterMakers.push(() => makeCharacter(
  37370. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37371. {
  37372. front: {
  37373. height: math.unit(5 + 5/12, "feet"),
  37374. name: "Front",
  37375. image: {
  37376. source: "./media/characters/fawn/front.svg",
  37377. extra: 1873/1731,
  37378. bottom: 95/1968
  37379. }
  37380. },
  37381. back: {
  37382. height: math.unit(5 + 5/12, "feet"),
  37383. name: "Back",
  37384. image: {
  37385. source: "./media/characters/fawn/back.svg",
  37386. extra: 1813/1700,
  37387. bottom: 14/1827
  37388. }
  37389. },
  37390. hoof: {
  37391. height: math.unit(1.45, "feet"),
  37392. name: "Hoof",
  37393. image: {
  37394. source: "./media/characters/fawn/hoof.svg"
  37395. }
  37396. },
  37397. },
  37398. [
  37399. {
  37400. name: "Normal",
  37401. height: math.unit(5 + 5/12, "feet"),
  37402. default: true
  37403. },
  37404. ]
  37405. ))
  37406. characterMakers.push(() => makeCharacter(
  37407. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37408. {
  37409. front: {
  37410. height: math.unit(2 + 5/12, "feet"),
  37411. name: "Front",
  37412. image: {
  37413. source: "./media/characters/orion/front.svg",
  37414. extra: 1366/1304,
  37415. bottom: 43/1409
  37416. }
  37417. },
  37418. paw: {
  37419. height: math.unit(0.52, "feet"),
  37420. name: "Paw",
  37421. image: {
  37422. source: "./media/characters/orion/paw.svg"
  37423. }
  37424. },
  37425. },
  37426. [
  37427. {
  37428. name: "Normal",
  37429. height: math.unit(2 + 5/12, "feet"),
  37430. default: true
  37431. },
  37432. ]
  37433. ))
  37434. characterMakers.push(() => makeCharacter(
  37435. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37436. {
  37437. front: {
  37438. height: math.unit(5 + 10/12, "feet"),
  37439. name: "Front",
  37440. image: {
  37441. source: "./media/characters/vera/front.svg",
  37442. extra: 1680/1575,
  37443. bottom: 49/1729
  37444. }
  37445. },
  37446. back: {
  37447. height: math.unit(5 + 10/12, "feet"),
  37448. name: "Back",
  37449. image: {
  37450. source: "./media/characters/vera/back.svg",
  37451. extra: 1700/1588,
  37452. bottom: 18/1718
  37453. }
  37454. },
  37455. arcanine: {
  37456. height: math.unit(6 + 8/12, "feet"),
  37457. name: "Arcanine",
  37458. image: {
  37459. source: "./media/characters/vera/arcanine.svg",
  37460. extra: 1590/1511,
  37461. bottom: 71/1661
  37462. }
  37463. },
  37464. maw: {
  37465. height: math.unit(0.82, "feet"),
  37466. name: "Maw",
  37467. image: {
  37468. source: "./media/characters/vera/maw.svg"
  37469. }
  37470. },
  37471. mawArcanine: {
  37472. height: math.unit(0.97, "feet"),
  37473. name: "Maw (Arcanine)",
  37474. image: {
  37475. source: "./media/characters/vera/maw-arcanine.svg"
  37476. }
  37477. },
  37478. paw: {
  37479. height: math.unit(0.75, "feet"),
  37480. name: "Paw",
  37481. image: {
  37482. source: "./media/characters/vera/paw.svg"
  37483. }
  37484. },
  37485. pawprint: {
  37486. height: math.unit(0.52, "feet"),
  37487. name: "Pawprint",
  37488. image: {
  37489. source: "./media/characters/vera/pawprint.svg"
  37490. }
  37491. },
  37492. },
  37493. [
  37494. {
  37495. name: "Normal",
  37496. height: math.unit(5 + 10/12, "feet"),
  37497. default: true
  37498. },
  37499. {
  37500. name: "Macro",
  37501. height: math.unit(75, "feet")
  37502. },
  37503. ]
  37504. ))
  37505. characterMakers.push(() => makeCharacter(
  37506. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37507. {
  37508. front: {
  37509. height: math.unit(4, "feet"),
  37510. weight: math.unit(40, "lb"),
  37511. name: "Front",
  37512. image: {
  37513. source: "./media/characters/orvan-rabbit/front.svg",
  37514. extra: 1896/1642,
  37515. bottom: 29/1925
  37516. }
  37517. },
  37518. },
  37519. [
  37520. {
  37521. name: "Normal",
  37522. height: math.unit(4, "feet"),
  37523. default: true
  37524. },
  37525. ]
  37526. ))
  37527. characterMakers.push(() => makeCharacter(
  37528. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37529. {
  37530. front: {
  37531. height: math.unit(6, "feet"),
  37532. weight: math.unit(168, "lb"),
  37533. name: "Front",
  37534. image: {
  37535. source: "./media/characters/lisa/front.svg",
  37536. extra: 2065/1867,
  37537. bottom: 46/2111
  37538. }
  37539. },
  37540. back: {
  37541. height: math.unit(6, "feet"),
  37542. weight: math.unit(168, "lb"),
  37543. name: "Back",
  37544. image: {
  37545. source: "./media/characters/lisa/back.svg",
  37546. extra: 1982/1838,
  37547. bottom: 29/2011
  37548. }
  37549. },
  37550. maw: {
  37551. height: math.unit(0.81, "feet"),
  37552. name: "Maw",
  37553. image: {
  37554. source: "./media/characters/lisa/maw.svg"
  37555. }
  37556. },
  37557. paw: {
  37558. height: math.unit(0.9, "feet"),
  37559. name: "Paw",
  37560. image: {
  37561. source: "./media/characters/lisa/paw.svg"
  37562. }
  37563. },
  37564. caribousune: {
  37565. height: math.unit(7 + 2/12, "feet"),
  37566. weight: math.unit(268, "lb"),
  37567. name: "Caribousune",
  37568. image: {
  37569. source: "./media/characters/lisa/caribousune.svg",
  37570. extra: 1843/1633,
  37571. bottom: 29/1872
  37572. }
  37573. },
  37574. frontCaribousune: {
  37575. height: math.unit(7 + 2/12, "feet"),
  37576. weight: math.unit(268, "lb"),
  37577. name: "Front (Caribousune)",
  37578. image: {
  37579. source: "./media/characters/lisa/front-caribousune.svg",
  37580. extra: 1818/1638,
  37581. bottom: 52/1870
  37582. }
  37583. },
  37584. sideCaribousune: {
  37585. height: math.unit(7 + 2/12, "feet"),
  37586. weight: math.unit(268, "lb"),
  37587. name: "Side (Caribousune)",
  37588. image: {
  37589. source: "./media/characters/lisa/side-caribousune.svg",
  37590. extra: 1851/1635,
  37591. bottom: 16/1867
  37592. }
  37593. },
  37594. backCaribousune: {
  37595. height: math.unit(7 + 2/12, "feet"),
  37596. weight: math.unit(268, "lb"),
  37597. name: "Back (Caribousune)",
  37598. image: {
  37599. source: "./media/characters/lisa/back-caribousune.svg",
  37600. extra: 1801/1604,
  37601. bottom: 44/1845
  37602. }
  37603. },
  37604. caribou: {
  37605. height: math.unit(7 + 2/12, "feet"),
  37606. weight: math.unit(268, "lb"),
  37607. name: "Caribou",
  37608. image: {
  37609. source: "./media/characters/lisa/caribou.svg",
  37610. extra: 1843/1633,
  37611. bottom: 29/1872
  37612. }
  37613. },
  37614. frontCaribou: {
  37615. height: math.unit(7 + 2/12, "feet"),
  37616. weight: math.unit(268, "lb"),
  37617. name: "Front (Caribou)",
  37618. image: {
  37619. source: "./media/characters/lisa/front-caribou.svg",
  37620. extra: 1818/1638,
  37621. bottom: 52/1870
  37622. }
  37623. },
  37624. sideCaribou: {
  37625. height: math.unit(7 + 2/12, "feet"),
  37626. weight: math.unit(268, "lb"),
  37627. name: "Side (Caribou)",
  37628. image: {
  37629. source: "./media/characters/lisa/side-caribou.svg",
  37630. extra: 1851/1635,
  37631. bottom: 16/1867
  37632. }
  37633. },
  37634. backCaribou: {
  37635. height: math.unit(7 + 2/12, "feet"),
  37636. weight: math.unit(268, "lb"),
  37637. name: "Back (Caribou)",
  37638. image: {
  37639. source: "./media/characters/lisa/back-caribou.svg",
  37640. extra: 1801/1604,
  37641. bottom: 44/1845
  37642. }
  37643. },
  37644. mawCaribou: {
  37645. height: math.unit(1.45, "feet"),
  37646. name: "Maw (Caribou)",
  37647. image: {
  37648. source: "./media/characters/lisa/maw-caribou.svg"
  37649. }
  37650. },
  37651. mawCaribousune: {
  37652. height: math.unit(1.45, "feet"),
  37653. name: "Maw (Caribousune)",
  37654. image: {
  37655. source: "./media/characters/lisa/maw-caribousune.svg"
  37656. }
  37657. },
  37658. pawCaribousune: {
  37659. height: math.unit(1.61, "feet"),
  37660. name: "Paw (Caribou)",
  37661. image: {
  37662. source: "./media/characters/lisa/paw-caribousune.svg"
  37663. }
  37664. },
  37665. },
  37666. [
  37667. {
  37668. name: "Normal",
  37669. height: math.unit(6, "feet")
  37670. },
  37671. {
  37672. name: "God Size",
  37673. height: math.unit(72, "feet"),
  37674. default: true
  37675. },
  37676. {
  37677. name: "Towering",
  37678. height: math.unit(288, "feet")
  37679. },
  37680. {
  37681. name: "City Size",
  37682. height: math.unit(48384, "feet")
  37683. },
  37684. {
  37685. name: "Continental",
  37686. height: math.unit(4200, "miles")
  37687. },
  37688. {
  37689. name: "Planet Eater",
  37690. height: math.unit(42, "earths")
  37691. },
  37692. {
  37693. name: "Star Swallower",
  37694. height: math.unit(42, "solarradii")
  37695. },
  37696. {
  37697. name: "System Swallower",
  37698. height: math.unit(84000, "AU")
  37699. },
  37700. {
  37701. name: "Galaxy Gobbler",
  37702. height: math.unit(42, "galaxies")
  37703. },
  37704. {
  37705. name: "Universe Devourer",
  37706. height: math.unit(42, "universes")
  37707. },
  37708. {
  37709. name: "Multiverse Muncher",
  37710. height: math.unit(42, "multiverses")
  37711. },
  37712. ]
  37713. ))
  37714. characterMakers.push(() => makeCharacter(
  37715. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37716. {
  37717. front: {
  37718. height: math.unit(36, "feet"),
  37719. name: "Front",
  37720. image: {
  37721. source: "./media/characters/shadow-rat/front.svg",
  37722. extra: 1845/1758,
  37723. bottom: 83/1928
  37724. }
  37725. },
  37726. },
  37727. [
  37728. {
  37729. name: "Macro",
  37730. height: math.unit(36, "feet"),
  37731. default: true
  37732. },
  37733. ]
  37734. ))
  37735. characterMakers.push(() => makeCharacter(
  37736. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37737. {
  37738. side: {
  37739. height: math.unit(8, "feet"),
  37740. weight: math.unit(2630, "lb"),
  37741. name: "Side",
  37742. image: {
  37743. source: "./media/characters/torallia/side.svg",
  37744. extra: 2164/2021,
  37745. bottom: 371/2535
  37746. }
  37747. },
  37748. },
  37749. [
  37750. {
  37751. name: "Mortal Interaction",
  37752. height: math.unit(8, "feet")
  37753. },
  37754. {
  37755. name: "Natural",
  37756. height: math.unit(24, "feet"),
  37757. default: true
  37758. },
  37759. {
  37760. name: "Giant",
  37761. height: math.unit(80, "feet")
  37762. },
  37763. {
  37764. name: "Kaiju",
  37765. height: math.unit(240, "feet")
  37766. },
  37767. {
  37768. name: "Macro",
  37769. height: math.unit(800, "feet")
  37770. },
  37771. {
  37772. name: "Macro+",
  37773. height: math.unit(2400, "feet")
  37774. },
  37775. {
  37776. name: "Macro++",
  37777. height: math.unit(8000, "feet")
  37778. },
  37779. {
  37780. name: "City-Crushing",
  37781. height: math.unit(24000, "feet")
  37782. },
  37783. {
  37784. name: "Mountain-Mashing",
  37785. height: math.unit(80000, "feet")
  37786. },
  37787. {
  37788. name: "District Demolisher",
  37789. height: math.unit(240000, "feet")
  37790. },
  37791. {
  37792. name: "Tri-County Terror",
  37793. height: math.unit(800000, "feet")
  37794. },
  37795. {
  37796. name: "State Smasher",
  37797. height: math.unit(2.4e6, "feet")
  37798. },
  37799. {
  37800. name: "Nation Nemesis",
  37801. height: math.unit(8e6, "feet")
  37802. },
  37803. {
  37804. name: "Continent Cracker",
  37805. height: math.unit(2.4e7, "feet")
  37806. },
  37807. {
  37808. name: "Planet-Pillaging",
  37809. height: math.unit(8e7, "feet")
  37810. },
  37811. {
  37812. name: "Earth-Eclipsing",
  37813. height: math.unit(2.4e8, "feet")
  37814. },
  37815. {
  37816. name: "Jovian-Jostling",
  37817. height: math.unit(8e8, "feet")
  37818. },
  37819. {
  37820. name: "Gas Giant Gulper",
  37821. height: math.unit(2.4e9, "feet")
  37822. },
  37823. {
  37824. name: "Astral Annihilator",
  37825. height: math.unit(8e9, "feet")
  37826. },
  37827. {
  37828. name: "Celestial Conqueror",
  37829. height: math.unit(2.4e10, "feet")
  37830. },
  37831. {
  37832. name: "Sol-Swallowing",
  37833. height: math.unit(8e10, "feet")
  37834. },
  37835. {
  37836. name: "Hunter of the Heavens",
  37837. height: math.unit(2.4e13, "feet")
  37838. },
  37839. ]
  37840. ))
  37841. characterMakers.push(() => makeCharacter(
  37842. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37843. {
  37844. front: {
  37845. height: math.unit(6 + 8/12, "feet"),
  37846. name: "Front",
  37847. image: {
  37848. source: "./media/characters/rebecca-pawlson/front.svg",
  37849. extra: 1737/1596,
  37850. bottom: 107/1844
  37851. }
  37852. },
  37853. back: {
  37854. height: math.unit(6 + 8/12, "feet"),
  37855. name: "Back",
  37856. image: {
  37857. source: "./media/characters/rebecca-pawlson/back.svg",
  37858. extra: 1702/1523,
  37859. bottom: 86/1788
  37860. }
  37861. },
  37862. },
  37863. [
  37864. {
  37865. name: "Normal",
  37866. height: math.unit(6 + 8/12, "feet")
  37867. },
  37868. {
  37869. name: "Mini Macro",
  37870. height: math.unit(10, "feet"),
  37871. default: true
  37872. },
  37873. {
  37874. name: "Macro",
  37875. height: math.unit(100, "feet")
  37876. },
  37877. {
  37878. name: "Mega Macro",
  37879. height: math.unit(2500, "feet")
  37880. },
  37881. {
  37882. name: "Giga Macro",
  37883. height: math.unit(50, "miles")
  37884. },
  37885. ]
  37886. ))
  37887. characterMakers.push(() => makeCharacter(
  37888. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37889. {
  37890. front: {
  37891. height: math.unit(7 + 6/12, "feet"),
  37892. weight: math.unit(600, "lb"),
  37893. name: "Front",
  37894. image: {
  37895. source: "./media/characters/moxie-nova/front.svg",
  37896. extra: 1734/1652,
  37897. bottom: 41/1775
  37898. }
  37899. },
  37900. },
  37901. [
  37902. {
  37903. name: "Normal",
  37904. height: math.unit(7 + 6/12, "feet"),
  37905. default: true
  37906. },
  37907. ]
  37908. ))
  37909. characterMakers.push(() => makeCharacter(
  37910. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37911. {
  37912. front: {
  37913. height: math.unit(5, "feet"),
  37914. weight: math.unit(150, "lb"),
  37915. name: "Front",
  37916. image: {
  37917. source: "./media/characters/tiffany/front.svg",
  37918. extra: 1941/1845,
  37919. bottom: 58/1999
  37920. }
  37921. },
  37922. },
  37923. [
  37924. {
  37925. name: "Normal",
  37926. height: math.unit(5, "feet"),
  37927. default: true
  37928. },
  37929. ]
  37930. ))
  37931. characterMakers.push(() => makeCharacter(
  37932. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37933. {
  37934. front: {
  37935. height: math.unit(8, "feet"),
  37936. weight: math.unit(300, "lb"),
  37937. name: "Front",
  37938. image: {
  37939. source: "./media/characters/raxinath/front.svg",
  37940. extra: 1407/1309,
  37941. bottom: 39/1446
  37942. }
  37943. },
  37944. back: {
  37945. height: math.unit(8, "feet"),
  37946. weight: math.unit(300, "lb"),
  37947. name: "Back",
  37948. image: {
  37949. source: "./media/characters/raxinath/back.svg",
  37950. extra: 1405/1315,
  37951. bottom: 9/1414
  37952. }
  37953. },
  37954. },
  37955. [
  37956. {
  37957. name: "Speck",
  37958. height: math.unit(0.5, "nm")
  37959. },
  37960. {
  37961. name: "Micro",
  37962. height: math.unit(3, "inches")
  37963. },
  37964. {
  37965. name: "Kobold",
  37966. height: math.unit(3, "feet")
  37967. },
  37968. {
  37969. name: "Normal",
  37970. height: math.unit(8, "feet"),
  37971. default: true
  37972. },
  37973. {
  37974. name: "Giant",
  37975. height: math.unit(50, "feet")
  37976. },
  37977. {
  37978. name: "Macro",
  37979. height: math.unit(1000, "feet")
  37980. },
  37981. {
  37982. name: "Megamacro",
  37983. height: math.unit(1, "mile")
  37984. },
  37985. ]
  37986. ))
  37987. characterMakers.push(() => makeCharacter(
  37988. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37989. {
  37990. front: {
  37991. height: math.unit(10, "feet"),
  37992. weight: math.unit(1442, "lb"),
  37993. name: "Front",
  37994. image: {
  37995. source: "./media/characters/mal-dragon/front.svg",
  37996. extra: 1515/1444,
  37997. bottom: 113/1628
  37998. }
  37999. },
  38000. back: {
  38001. height: math.unit(10, "feet"),
  38002. weight: math.unit(1442, "lb"),
  38003. name: "Back",
  38004. image: {
  38005. source: "./media/characters/mal-dragon/back.svg",
  38006. extra: 1527/1434,
  38007. bottom: 25/1552
  38008. }
  38009. },
  38010. },
  38011. [
  38012. {
  38013. name: "Mortal Interaction",
  38014. height: math.unit(10, "feet"),
  38015. default: true
  38016. },
  38017. {
  38018. name: "Large",
  38019. height: math.unit(30, "feet")
  38020. },
  38021. {
  38022. name: "Kaiju",
  38023. height: math.unit(300, "feet")
  38024. },
  38025. {
  38026. name: "Megamacro",
  38027. height: math.unit(10000, "feet")
  38028. },
  38029. {
  38030. name: "Continent Cracker",
  38031. height: math.unit(30000000, "feet")
  38032. },
  38033. {
  38034. name: "Sol-Swallowing",
  38035. height: math.unit(1e11, "feet")
  38036. },
  38037. {
  38038. name: "Light Universal",
  38039. height: math.unit(5, "universes")
  38040. },
  38041. {
  38042. name: "Universe Atoms",
  38043. height: math.unit(1.829e9, "universes")
  38044. },
  38045. {
  38046. name: "Light Multiversal",
  38047. height: math.unit(5, "multiverses")
  38048. },
  38049. {
  38050. name: "Multiverse Atoms",
  38051. height: math.unit(1.829e9, "multiverses")
  38052. },
  38053. {
  38054. name: "Fabric of Time",
  38055. height: math.unit(1e262, "multiverses")
  38056. },
  38057. ]
  38058. ))
  38059. characterMakers.push(() => makeCharacter(
  38060. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38061. {
  38062. front: {
  38063. height: math.unit(9, "feet"),
  38064. weight: math.unit(1050, "lb"),
  38065. name: "Front",
  38066. image: {
  38067. source: "./media/characters/tabitha/front.svg",
  38068. extra: 2083/1994,
  38069. bottom: 68/2151
  38070. }
  38071. },
  38072. },
  38073. [
  38074. {
  38075. name: "Baseline",
  38076. height: math.unit(9, "feet"),
  38077. default: true
  38078. },
  38079. {
  38080. name: "Giant",
  38081. height: math.unit(90, "feet")
  38082. },
  38083. {
  38084. name: "Macro",
  38085. height: math.unit(900, "feet")
  38086. },
  38087. {
  38088. name: "Megamacro",
  38089. height: math.unit(9000, "feet")
  38090. },
  38091. {
  38092. name: "City-Crushing",
  38093. height: math.unit(27000, "feet")
  38094. },
  38095. {
  38096. name: "Mountain-Mashing",
  38097. height: math.unit(90000, "feet")
  38098. },
  38099. {
  38100. name: "Nation Nemesis",
  38101. height: math.unit(9e6, "feet")
  38102. },
  38103. {
  38104. name: "Continent Cracker",
  38105. height: math.unit(27e6, "feet")
  38106. },
  38107. {
  38108. name: "Earth-Eclipsing",
  38109. height: math.unit(2.7e8, "feet")
  38110. },
  38111. {
  38112. name: "Gas Giant Gulper",
  38113. height: math.unit(2.7e9, "feet")
  38114. },
  38115. {
  38116. name: "Sol-Swallowing",
  38117. height: math.unit(9e10, "feet")
  38118. },
  38119. {
  38120. name: "Galaxy Gulper",
  38121. height: math.unit(9, "galaxies")
  38122. },
  38123. {
  38124. name: "Cosmos Churner",
  38125. height: math.unit(9, "universes")
  38126. },
  38127. ]
  38128. ))
  38129. characterMakers.push(() => makeCharacter(
  38130. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38131. {
  38132. front: {
  38133. height: math.unit(160, "cm"),
  38134. weight: math.unit(55, "kg"),
  38135. name: "Front",
  38136. image: {
  38137. source: "./media/characters/tow/front.svg",
  38138. extra: 1751/1722,
  38139. bottom: 74/1825
  38140. }
  38141. },
  38142. },
  38143. [
  38144. {
  38145. name: "Norm",
  38146. height: math.unit(160, "cm")
  38147. },
  38148. {
  38149. name: "Casual",
  38150. height: math.unit(3200, "m"),
  38151. default: true
  38152. },
  38153. {
  38154. name: "Show-Off",
  38155. height: math.unit(160, "km")
  38156. },
  38157. ]
  38158. ))
  38159. characterMakers.push(() => makeCharacter(
  38160. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38161. {
  38162. front: {
  38163. height: math.unit(7 + 11/12, "feet"),
  38164. weight: math.unit(342.8, "lb"),
  38165. name: "Front",
  38166. image: {
  38167. source: "./media/characters/vivian-orca-dragon/front.svg",
  38168. extra: 1890/1865,
  38169. bottom: 28/1918
  38170. }
  38171. },
  38172. },
  38173. [
  38174. {
  38175. name: "Micro",
  38176. height: math.unit(5, "inches")
  38177. },
  38178. {
  38179. name: "Normal",
  38180. height: math.unit(7 + 11/12, "feet"),
  38181. default: true
  38182. },
  38183. {
  38184. name: "Macro",
  38185. height: math.unit(395 + 7/12, "feet")
  38186. },
  38187. ]
  38188. ))
  38189. characterMakers.push(() => makeCharacter(
  38190. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38191. {
  38192. side: {
  38193. height: math.unit(10, "feet"),
  38194. weight: math.unit(1442, "lb"),
  38195. name: "Side",
  38196. image: {
  38197. source: "./media/characters/lotherakon/side.svg",
  38198. extra: 1604/1497,
  38199. bottom: 89/1693
  38200. }
  38201. },
  38202. },
  38203. [
  38204. {
  38205. name: "Mortal Interaction",
  38206. height: math.unit(10, "feet")
  38207. },
  38208. {
  38209. name: "Large",
  38210. height: math.unit(30, "feet"),
  38211. default: true
  38212. },
  38213. {
  38214. name: "Giant",
  38215. height: math.unit(100, "feet")
  38216. },
  38217. {
  38218. name: "Kaiju",
  38219. height: math.unit(300, "feet")
  38220. },
  38221. {
  38222. name: "Macro",
  38223. height: math.unit(1000, "feet")
  38224. },
  38225. {
  38226. name: "Macro+",
  38227. height: math.unit(3000, "feet")
  38228. },
  38229. {
  38230. name: "Megamacro",
  38231. height: math.unit(10000, "feet")
  38232. },
  38233. {
  38234. name: "City-Crushing",
  38235. height: math.unit(30000, "feet")
  38236. },
  38237. {
  38238. name: "Continent Cracker",
  38239. height: math.unit(30e6, "feet")
  38240. },
  38241. {
  38242. name: "Earth Eclipsing",
  38243. height: math.unit(3e8, "feet")
  38244. },
  38245. {
  38246. name: "Gas Giant Gulper",
  38247. height: math.unit(3e9, "feet")
  38248. },
  38249. {
  38250. name: "Sol-Swallowing",
  38251. height: math.unit(1e11, "feet")
  38252. },
  38253. {
  38254. name: "System Swallower",
  38255. height: math.unit(3e14, "feet")
  38256. },
  38257. {
  38258. name: "Galaxy Gulper",
  38259. height: math.unit(10, "galaxies")
  38260. },
  38261. {
  38262. name: "Light Universal",
  38263. height: math.unit(5, "universes")
  38264. },
  38265. {
  38266. name: "Universe Palm",
  38267. height: math.unit(20, "universes")
  38268. },
  38269. {
  38270. name: "Light Multiversal",
  38271. height: math.unit(5, "multiverses")
  38272. },
  38273. {
  38274. name: "Multiverse Palm",
  38275. height: math.unit(20, "multiverses")
  38276. },
  38277. {
  38278. name: "Inferno Incarnate",
  38279. height: math.unit(1e7, "multiverses")
  38280. },
  38281. ]
  38282. ))
  38283. characterMakers.push(() => makeCharacter(
  38284. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38285. {
  38286. front: {
  38287. height: math.unit(8, "feet"),
  38288. weight: math.unit(1200, "lb"),
  38289. name: "Front",
  38290. image: {
  38291. source: "./media/characters/malithee/front.svg",
  38292. extra: 1675/1640,
  38293. bottom: 162/1837
  38294. }
  38295. },
  38296. },
  38297. [
  38298. {
  38299. name: "Mortal Interaction",
  38300. height: math.unit(8, "feet"),
  38301. default: true
  38302. },
  38303. {
  38304. name: "Large",
  38305. height: math.unit(24, "feet")
  38306. },
  38307. {
  38308. name: "Kaiju",
  38309. height: math.unit(240, "feet")
  38310. },
  38311. {
  38312. name: "Megamacro",
  38313. height: math.unit(8000, "feet")
  38314. },
  38315. {
  38316. name: "Continent Cracker",
  38317. height: math.unit(24e6, "feet")
  38318. },
  38319. {
  38320. name: "Earth-Eclipsing",
  38321. height: math.unit(2.4e8, "feet")
  38322. },
  38323. {
  38324. name: "Sol-Swallowing",
  38325. height: math.unit(8e10, "feet")
  38326. },
  38327. {
  38328. name: "Galaxy Gulper",
  38329. height: math.unit(8, "galaxies")
  38330. },
  38331. {
  38332. name: "Light Universal",
  38333. height: math.unit(4, "universes")
  38334. },
  38335. {
  38336. name: "Universe Atoms",
  38337. height: math.unit(1.829e9, "universes")
  38338. },
  38339. {
  38340. name: "Light Multiversal",
  38341. height: math.unit(4, "multiverses")
  38342. },
  38343. {
  38344. name: "Multiverse Atoms",
  38345. height: math.unit(1.829e9, "multiverses")
  38346. },
  38347. {
  38348. name: "Nigh-Omnipresence",
  38349. height: math.unit(8e261, "multiverses")
  38350. },
  38351. ]
  38352. ))
  38353. characterMakers.push(() => makeCharacter(
  38354. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38355. {
  38356. front: {
  38357. height: math.unit(10, "feet"),
  38358. weight: math.unit(1500, "lb"),
  38359. name: "Front",
  38360. image: {
  38361. source: "./media/characters/miles-thestia/front.svg",
  38362. extra: 1812/1727,
  38363. bottom: 86/1898
  38364. }
  38365. },
  38366. back: {
  38367. height: math.unit(10, "feet"),
  38368. weight: math.unit(1500, "lb"),
  38369. name: "Back",
  38370. image: {
  38371. source: "./media/characters/miles-thestia/back.svg",
  38372. extra: 1799/1690,
  38373. bottom: 47/1846
  38374. }
  38375. },
  38376. frontNsfw: {
  38377. height: math.unit(10, "feet"),
  38378. weight: math.unit(1500, "lb"),
  38379. name: "Front (NSFW)",
  38380. image: {
  38381. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38382. extra: 1812/1727,
  38383. bottom: 86/1898
  38384. }
  38385. },
  38386. },
  38387. [
  38388. {
  38389. name: "Mini-Macro",
  38390. height: math.unit(10, "feet"),
  38391. default: true
  38392. },
  38393. ]
  38394. ))
  38395. characterMakers.push(() => makeCharacter(
  38396. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38397. {
  38398. front: {
  38399. height: math.unit(25, "feet"),
  38400. name: "Front",
  38401. image: {
  38402. source: "./media/characters/titan-s-wulf/front.svg",
  38403. extra: 1560/1484,
  38404. bottom: 76/1636
  38405. }
  38406. },
  38407. },
  38408. [
  38409. {
  38410. name: "Smallest",
  38411. height: math.unit(25, "feet"),
  38412. default: true
  38413. },
  38414. {
  38415. name: "Normal",
  38416. height: math.unit(200, "feet")
  38417. },
  38418. {
  38419. name: "Macro",
  38420. height: math.unit(200000, "feet")
  38421. },
  38422. {
  38423. name: "Multiversal Original",
  38424. height: math.unit(10000, "multiverses")
  38425. },
  38426. ]
  38427. ))
  38428. characterMakers.push(() => makeCharacter(
  38429. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38430. {
  38431. front: {
  38432. height: math.unit(8, "feet"),
  38433. weight: math.unit(553, "lb"),
  38434. name: "Front",
  38435. image: {
  38436. source: "./media/characters/tawendeh/front.svg",
  38437. extra: 2365/2268,
  38438. bottom: 83/2448
  38439. }
  38440. },
  38441. frontClothed: {
  38442. height: math.unit(8, "feet"),
  38443. weight: math.unit(553, "lb"),
  38444. name: "Front (Clothed)",
  38445. image: {
  38446. source: "./media/characters/tawendeh/front-clothed.svg",
  38447. extra: 2365/2268,
  38448. bottom: 83/2448
  38449. }
  38450. },
  38451. back: {
  38452. height: math.unit(8, "feet"),
  38453. weight: math.unit(553, "lb"),
  38454. name: "Back",
  38455. image: {
  38456. source: "./media/characters/tawendeh/back.svg",
  38457. extra: 2397/2294,
  38458. bottom: 42/2439
  38459. }
  38460. },
  38461. },
  38462. [
  38463. {
  38464. name: "Mortal Interaction",
  38465. height: math.unit(8, "feet"),
  38466. default: true
  38467. },
  38468. {
  38469. name: "Giant",
  38470. height: math.unit(80, "feet")
  38471. },
  38472. {
  38473. name: "Macro",
  38474. height: math.unit(800, "feet")
  38475. },
  38476. {
  38477. name: "Megamacro",
  38478. height: math.unit(8000, "feet")
  38479. },
  38480. {
  38481. name: "City-Crushing",
  38482. height: math.unit(24000, "feet")
  38483. },
  38484. {
  38485. name: "Mountain-Mashing",
  38486. height: math.unit(80000, "feet")
  38487. },
  38488. {
  38489. name: "Nation Nemesis",
  38490. height: math.unit(8e6, "feet")
  38491. },
  38492. {
  38493. name: "Continent Cracker",
  38494. height: math.unit(24e6, "feet")
  38495. },
  38496. {
  38497. name: "Earth-Eclipsing",
  38498. height: math.unit(2.4e8, "feet")
  38499. },
  38500. {
  38501. name: "Gas Giant Gulper",
  38502. height: math.unit(2.4e9, "feet")
  38503. },
  38504. {
  38505. name: "Sol-Swallowing",
  38506. height: math.unit(8e10, "feet")
  38507. },
  38508. {
  38509. name: "Galaxy Gulper",
  38510. height: math.unit(8, "galaxies")
  38511. },
  38512. {
  38513. name: "Cosmos Churner",
  38514. height: math.unit(8, "universes")
  38515. },
  38516. {
  38517. name: "Omnipotent Otter",
  38518. height: math.unit(80, "universes")
  38519. },
  38520. ]
  38521. ))
  38522. characterMakers.push(() => makeCharacter(
  38523. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38524. {
  38525. front: {
  38526. height: math.unit(2.6, "meters"),
  38527. weight: math.unit(900, "kg"),
  38528. name: "Front",
  38529. image: {
  38530. source: "./media/characters/neesha/front.svg",
  38531. extra: 1803/1653,
  38532. bottom: 128/1931
  38533. }
  38534. },
  38535. },
  38536. [
  38537. {
  38538. name: "Normal",
  38539. height: math.unit(2.6, "meters"),
  38540. default: true
  38541. },
  38542. {
  38543. name: "Macro",
  38544. height: math.unit(50, "meters")
  38545. },
  38546. ]
  38547. ))
  38548. characterMakers.push(() => makeCharacter(
  38549. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38550. {
  38551. front: {
  38552. height: math.unit(5, "feet"),
  38553. weight: math.unit(185, "lb"),
  38554. name: "Front",
  38555. image: {
  38556. source: "./media/characters/kyera/front.svg",
  38557. extra: 1875/1790,
  38558. bottom: 96/1971
  38559. }
  38560. },
  38561. },
  38562. [
  38563. {
  38564. name: "Normal",
  38565. height: math.unit(5, "feet"),
  38566. default: true
  38567. },
  38568. ]
  38569. ))
  38570. characterMakers.push(() => makeCharacter(
  38571. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38572. {
  38573. front: {
  38574. height: math.unit(7 + 6/12, "feet"),
  38575. weight: math.unit(540, "lb"),
  38576. name: "Front",
  38577. image: {
  38578. source: "./media/characters/yuko/front.svg",
  38579. extra: 1282/1222,
  38580. bottom: 101/1383
  38581. }
  38582. },
  38583. frontClothed: {
  38584. height: math.unit(7 + 6/12, "feet"),
  38585. weight: math.unit(540, "lb"),
  38586. name: "Front (Clothed)",
  38587. image: {
  38588. source: "./media/characters/yuko/front-clothed.svg",
  38589. extra: 1282/1222,
  38590. bottom: 101/1383
  38591. }
  38592. },
  38593. },
  38594. [
  38595. {
  38596. name: "Normal",
  38597. height: math.unit(7 + 6/12, "feet"),
  38598. default: true
  38599. },
  38600. {
  38601. name: "Macro",
  38602. height: math.unit(26 + 9/12, "feet")
  38603. },
  38604. {
  38605. name: "Megamacro",
  38606. height: math.unit(300, "feet")
  38607. },
  38608. {
  38609. name: "Gigamacro",
  38610. height: math.unit(5000, "feet")
  38611. },
  38612. {
  38613. name: "Planetary",
  38614. height: math.unit(10000, "miles")
  38615. },
  38616. ]
  38617. ))
  38618. characterMakers.push(() => makeCharacter(
  38619. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38620. {
  38621. front: {
  38622. height: math.unit(8 + 2/12, "feet"),
  38623. weight: math.unit(600, "lb"),
  38624. name: "Front",
  38625. image: {
  38626. source: "./media/characters/deam-nitrel/front.svg",
  38627. extra: 1308/1234,
  38628. bottom: 125/1433
  38629. }
  38630. },
  38631. },
  38632. [
  38633. {
  38634. name: "Normal",
  38635. height: math.unit(8 + 2/12, "feet"),
  38636. default: true
  38637. },
  38638. ]
  38639. ))
  38640. characterMakers.push(() => makeCharacter(
  38641. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38642. {
  38643. front: {
  38644. height: math.unit(6.1, "feet"),
  38645. weight: math.unit(180, "lb"),
  38646. name: "Front",
  38647. image: {
  38648. source: "./media/characters/skyress/front.svg",
  38649. extra: 1045/915,
  38650. bottom: 28/1073
  38651. }
  38652. },
  38653. maw: {
  38654. height: math.unit(1, "feet"),
  38655. name: "Maw",
  38656. image: {
  38657. source: "./media/characters/skyress/maw.svg"
  38658. }
  38659. },
  38660. },
  38661. [
  38662. {
  38663. name: "Normal",
  38664. height: math.unit(6.1, "feet"),
  38665. default: true
  38666. },
  38667. {
  38668. name: "Macro",
  38669. height: math.unit(200, "feet")
  38670. },
  38671. ]
  38672. ))
  38673. characterMakers.push(() => makeCharacter(
  38674. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38675. {
  38676. front: {
  38677. height: math.unit(4 + 2/12, "feet"),
  38678. weight: math.unit(40, "kg"),
  38679. name: "Front",
  38680. image: {
  38681. source: "./media/characters/amethyst-jones/front.svg",
  38682. extra: 1220/1150,
  38683. bottom: 101/1321
  38684. }
  38685. },
  38686. },
  38687. [
  38688. {
  38689. name: "Normal",
  38690. height: math.unit(4 + 2/12, "feet"),
  38691. default: true
  38692. },
  38693. ]
  38694. ))
  38695. characterMakers.push(() => makeCharacter(
  38696. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38697. {
  38698. front: {
  38699. height: math.unit(1.7, "m"),
  38700. weight: math.unit(135, "lb"),
  38701. name: "Front",
  38702. image: {
  38703. source: "./media/characters/jade/front.svg",
  38704. extra: 1818/1767,
  38705. bottom: 32/1850
  38706. }
  38707. },
  38708. back: {
  38709. height: math.unit(1.7, "m"),
  38710. weight: math.unit(135, "lb"),
  38711. name: "Back",
  38712. image: {
  38713. source: "./media/characters/jade/back.svg",
  38714. extra: 1869/1809,
  38715. bottom: 35/1904
  38716. }
  38717. },
  38718. hand: {
  38719. height: math.unit(0.24, "m"),
  38720. name: "Hand",
  38721. image: {
  38722. source: "./media/characters/jade/hand.svg"
  38723. }
  38724. },
  38725. foot: {
  38726. height: math.unit(0.263, "m"),
  38727. name: "Foot",
  38728. image: {
  38729. source: "./media/characters/jade/foot.svg"
  38730. }
  38731. },
  38732. dick: {
  38733. height: math.unit(0.47, "m"),
  38734. name: "Dick",
  38735. image: {
  38736. source: "./media/characters/jade/dick.svg"
  38737. }
  38738. },
  38739. },
  38740. [
  38741. {
  38742. name: "Micro",
  38743. height: math.unit(22, "cm")
  38744. },
  38745. {
  38746. name: "Normal",
  38747. height: math.unit(1.7, "m"),
  38748. default: true
  38749. },
  38750. {
  38751. name: "Macro",
  38752. height: math.unit(152, "m")
  38753. },
  38754. ]
  38755. ))
  38756. characterMakers.push(() => makeCharacter(
  38757. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38758. {
  38759. front: {
  38760. height: math.unit(100, "miles"),
  38761. weight: math.unit(20000, "tons"),
  38762. name: "Front",
  38763. image: {
  38764. source: "./media/characters/cookie/front.svg",
  38765. extra: 1125/1070,
  38766. bottom: 30/1155
  38767. }
  38768. },
  38769. },
  38770. [
  38771. {
  38772. name: "Big",
  38773. height: math.unit(50, "feet")
  38774. },
  38775. {
  38776. name: "Macro",
  38777. height: math.unit(100, "miles"),
  38778. default: true
  38779. },
  38780. {
  38781. name: "Megamacro",
  38782. height: math.unit(90000, "miles")
  38783. },
  38784. ]
  38785. ))
  38786. characterMakers.push(() => makeCharacter(
  38787. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38788. {
  38789. front: {
  38790. height: math.unit(6, "feet"),
  38791. weight: math.unit(145, "lb"),
  38792. name: "Front",
  38793. image: {
  38794. source: "./media/characters/farzian/front.svg",
  38795. extra: 1902/1693,
  38796. bottom: 108/2010
  38797. }
  38798. },
  38799. },
  38800. [
  38801. {
  38802. name: "Macro",
  38803. height: math.unit(500, "feet"),
  38804. default: true
  38805. },
  38806. ]
  38807. ))
  38808. characterMakers.push(() => makeCharacter(
  38809. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38810. {
  38811. front: {
  38812. height: math.unit(3 + 6/12, "feet"),
  38813. weight: math.unit(50, "lb"),
  38814. name: "Front",
  38815. image: {
  38816. source: "./media/characters/kimberly-tilson/front.svg",
  38817. extra: 1400/1322,
  38818. bottom: 36/1436
  38819. }
  38820. },
  38821. back: {
  38822. height: math.unit(3 + 6/12, "feet"),
  38823. weight: math.unit(50, "lb"),
  38824. name: "Back",
  38825. image: {
  38826. source: "./media/characters/kimberly-tilson/back.svg",
  38827. extra: 1370/1307,
  38828. bottom: 20/1390
  38829. }
  38830. },
  38831. },
  38832. [
  38833. {
  38834. name: "Normal",
  38835. height: math.unit(3 + 6/12, "feet"),
  38836. default: true
  38837. },
  38838. ]
  38839. ))
  38840. characterMakers.push(() => makeCharacter(
  38841. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38842. {
  38843. front: {
  38844. height: math.unit(1148, "feet"),
  38845. weight: math.unit(34057, "lb"),
  38846. name: "Front",
  38847. image: {
  38848. source: "./media/characters/harthos/front.svg",
  38849. extra: 1391/1339,
  38850. bottom: 13/1404
  38851. }
  38852. },
  38853. },
  38854. [
  38855. {
  38856. name: "Macro",
  38857. height: math.unit(1148, "feet"),
  38858. default: true
  38859. },
  38860. ]
  38861. ))
  38862. characterMakers.push(() => makeCharacter(
  38863. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38864. {
  38865. front: {
  38866. height: math.unit(15, "feet"),
  38867. name: "Front",
  38868. image: {
  38869. source: "./media/characters/hypatia/front.svg",
  38870. extra: 1653/1591,
  38871. bottom: 79/1732
  38872. }
  38873. },
  38874. },
  38875. [
  38876. {
  38877. name: "Normal",
  38878. height: math.unit(15, "feet")
  38879. },
  38880. {
  38881. name: "Small",
  38882. height: math.unit(300, "feet")
  38883. },
  38884. {
  38885. name: "Macro",
  38886. height: math.unit(2500, "feet"),
  38887. default: true
  38888. },
  38889. {
  38890. name: "Mega Macro",
  38891. height: math.unit(1500, "miles")
  38892. },
  38893. {
  38894. name: "Giga Macro",
  38895. height: math.unit(1.5e6, "miles")
  38896. },
  38897. ]
  38898. ))
  38899. characterMakers.push(() => makeCharacter(
  38900. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38901. {
  38902. front: {
  38903. height: math.unit(6, "feet"),
  38904. weight: math.unit(200, "lb"),
  38905. name: "Front",
  38906. image: {
  38907. source: "./media/characters/wulver/front.svg",
  38908. extra: 1724/1632,
  38909. bottom: 130/1854
  38910. }
  38911. },
  38912. frontNsfw: {
  38913. height: math.unit(6, "feet"),
  38914. weight: math.unit(200, "lb"),
  38915. name: "Front (NSFW)",
  38916. image: {
  38917. source: "./media/characters/wulver/front-nsfw.svg",
  38918. extra: 1724/1632,
  38919. bottom: 130/1854
  38920. }
  38921. },
  38922. },
  38923. [
  38924. {
  38925. name: "Human-Sized",
  38926. height: math.unit(6, "feet")
  38927. },
  38928. {
  38929. name: "Normal",
  38930. height: math.unit(4, "meters"),
  38931. default: true
  38932. },
  38933. {
  38934. name: "Large",
  38935. height: math.unit(6, "m")
  38936. },
  38937. ]
  38938. ))
  38939. characterMakers.push(() => makeCharacter(
  38940. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38941. {
  38942. front: {
  38943. height: math.unit(7, "feet"),
  38944. name: "Front",
  38945. image: {
  38946. source: "./media/characters/maru/front.svg",
  38947. extra: 1595/1570,
  38948. bottom: 0/1595
  38949. }
  38950. },
  38951. },
  38952. [
  38953. {
  38954. name: "Normal",
  38955. height: math.unit(7, "feet"),
  38956. default: true
  38957. },
  38958. {
  38959. name: "Macro",
  38960. height: math.unit(700, "feet")
  38961. },
  38962. {
  38963. name: "Mega Macro",
  38964. height: math.unit(25, "miles")
  38965. },
  38966. ]
  38967. ))
  38968. characterMakers.push(() => makeCharacter(
  38969. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38970. {
  38971. front: {
  38972. height: math.unit(6, "feet"),
  38973. weight: math.unit(170, "lb"),
  38974. name: "Front",
  38975. image: {
  38976. source: "./media/characters/xenon/front.svg",
  38977. extra: 1376/1305,
  38978. bottom: 56/1432
  38979. }
  38980. },
  38981. back: {
  38982. height: math.unit(6, "feet"),
  38983. weight: math.unit(170, "lb"),
  38984. name: "Back",
  38985. image: {
  38986. source: "./media/characters/xenon/back.svg",
  38987. extra: 1328/1259,
  38988. bottom: 95/1423
  38989. }
  38990. },
  38991. maw: {
  38992. height: math.unit(0.52, "feet"),
  38993. name: "Maw",
  38994. image: {
  38995. source: "./media/characters/xenon/maw.svg"
  38996. }
  38997. },
  38998. hand: {
  38999. height: math.unit(0.82, "feet"),
  39000. name: "Hand",
  39001. image: {
  39002. source: "./media/characters/xenon/hand.svg"
  39003. }
  39004. },
  39005. foot: {
  39006. height: math.unit(1.13, "feet"),
  39007. name: "Foot",
  39008. image: {
  39009. source: "./media/characters/xenon/foot.svg"
  39010. }
  39011. },
  39012. },
  39013. [
  39014. {
  39015. name: "Micro",
  39016. height: math.unit(0.8, "inches")
  39017. },
  39018. {
  39019. name: "Normal",
  39020. height: math.unit(6, "feet")
  39021. },
  39022. {
  39023. name: "Macro",
  39024. height: math.unit(50, "feet"),
  39025. default: true
  39026. },
  39027. {
  39028. name: "Macro+",
  39029. height: math.unit(250, "feet")
  39030. },
  39031. {
  39032. name: "Megamacro",
  39033. height: math.unit(1500, "feet")
  39034. },
  39035. ]
  39036. ))
  39037. characterMakers.push(() => makeCharacter(
  39038. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39039. {
  39040. front: {
  39041. height: math.unit(7 + 5/12, "feet"),
  39042. name: "Front",
  39043. image: {
  39044. source: "./media/characters/zane/front.svg",
  39045. extra: 1260/1203,
  39046. bottom: 94/1354
  39047. }
  39048. },
  39049. back: {
  39050. height: math.unit(5.05, "feet"),
  39051. name: "Back",
  39052. image: {
  39053. source: "./media/characters/zane/back.svg",
  39054. extra: 893/829,
  39055. bottom: 30/923
  39056. }
  39057. },
  39058. werewolf: {
  39059. height: math.unit(11, "feet"),
  39060. name: "Werewolf",
  39061. image: {
  39062. source: "./media/characters/zane/werewolf.svg",
  39063. extra: 1383/1323,
  39064. bottom: 89/1472
  39065. }
  39066. },
  39067. foot: {
  39068. height: math.unit(1.46, "feet"),
  39069. name: "Foot",
  39070. image: {
  39071. source: "./media/characters/zane/foot.svg"
  39072. }
  39073. },
  39074. footFront: {
  39075. height: math.unit(0.784, "feet"),
  39076. name: "Foot (Front)",
  39077. image: {
  39078. source: "./media/characters/zane/foot-front.svg"
  39079. }
  39080. },
  39081. dick: {
  39082. height: math.unit(1.95, "feet"),
  39083. name: "Dick",
  39084. image: {
  39085. source: "./media/characters/zane/dick.svg"
  39086. }
  39087. },
  39088. dickWerewolf: {
  39089. height: math.unit(3.77, "feet"),
  39090. name: "Dick (Werewolf)",
  39091. image: {
  39092. source: "./media/characters/zane/dick.svg"
  39093. }
  39094. },
  39095. },
  39096. [
  39097. {
  39098. name: "Normal",
  39099. height: math.unit(7 + 5/12, "feet"),
  39100. default: true
  39101. },
  39102. ]
  39103. ))
  39104. characterMakers.push(() => makeCharacter(
  39105. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39106. {
  39107. front: {
  39108. height: math.unit(6 + 2/12, "feet"),
  39109. weight: math.unit(284, "lb"),
  39110. name: "Front",
  39111. image: {
  39112. source: "./media/characters/benni-desparque/front.svg",
  39113. extra: 1353/1126,
  39114. bottom: 69/1422
  39115. }
  39116. },
  39117. },
  39118. [
  39119. {
  39120. name: "Civilian",
  39121. height: math.unit(6 + 2/12, "feet")
  39122. },
  39123. {
  39124. name: "Normal",
  39125. height: math.unit(98, "feet"),
  39126. default: true
  39127. },
  39128. {
  39129. name: "Kaiju Fighter",
  39130. height: math.unit(268, "feet")
  39131. },
  39132. ]
  39133. ))
  39134. characterMakers.push(() => makeCharacter(
  39135. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39136. {
  39137. front: {
  39138. height: math.unit(5, "feet"),
  39139. weight: math.unit(105, "lb"),
  39140. name: "Front",
  39141. image: {
  39142. source: "./media/characters/maxine/front.svg",
  39143. extra: 1386/1250,
  39144. bottom: 71/1457
  39145. }
  39146. },
  39147. },
  39148. [
  39149. {
  39150. name: "Normal",
  39151. height: math.unit(5, "feet"),
  39152. default: true
  39153. },
  39154. ]
  39155. ))
  39156. characterMakers.push(() => makeCharacter(
  39157. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39158. {
  39159. front: {
  39160. height: math.unit(11 + 7/12, "feet"),
  39161. weight: math.unit(9576, "lb"),
  39162. name: "Front",
  39163. image: {
  39164. source: "./media/characters/scaly/front.svg",
  39165. extra: 888/867,
  39166. bottom: 36/924
  39167. }
  39168. },
  39169. },
  39170. [
  39171. {
  39172. name: "Normal",
  39173. height: math.unit(11 + 7/12, "feet"),
  39174. default: true
  39175. },
  39176. ]
  39177. ))
  39178. characterMakers.push(() => makeCharacter(
  39179. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39180. {
  39181. front: {
  39182. height: math.unit(9, "inches"),
  39183. name: "Front",
  39184. image: {
  39185. source: "./media/characters/saelria/front.svg",
  39186. extra: 662/621,
  39187. bottom: 12/674
  39188. }
  39189. },
  39190. },
  39191. [
  39192. {
  39193. name: "Tiny",
  39194. height: math.unit(9, "inches"),
  39195. default: true
  39196. },
  39197. ]
  39198. ))
  39199. characterMakers.push(() => makeCharacter(
  39200. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39201. {
  39202. front: {
  39203. height: math.unit(80, "meters"),
  39204. weight: math.unit(7000, "tonnes"),
  39205. name: "Front",
  39206. image: {
  39207. source: "./media/characters/tef/front.svg",
  39208. extra: 2036/1991,
  39209. bottom: 54/2090
  39210. }
  39211. },
  39212. back: {
  39213. height: math.unit(80, "meters"),
  39214. weight: math.unit(7000, "tonnes"),
  39215. name: "Back",
  39216. image: {
  39217. source: "./media/characters/tef/back.svg",
  39218. extra: 2036/1991,
  39219. bottom: 54/2090
  39220. }
  39221. },
  39222. },
  39223. [
  39224. {
  39225. name: "Macro",
  39226. height: math.unit(80, "meters"),
  39227. default: true
  39228. },
  39229. ]
  39230. ))
  39231. characterMakers.push(() => makeCharacter(
  39232. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39233. {
  39234. front: {
  39235. height: math.unit(13, "feet"),
  39236. weight: math.unit(6, "tons"),
  39237. name: "Front",
  39238. image: {
  39239. source: "./media/characters/rover/front.svg",
  39240. extra: 1233/1156,
  39241. bottom: 50/1283
  39242. }
  39243. },
  39244. back: {
  39245. height: math.unit(13, "feet"),
  39246. weight: math.unit(6, "tons"),
  39247. name: "Back",
  39248. image: {
  39249. source: "./media/characters/rover/back.svg",
  39250. extra: 1327/1258,
  39251. bottom: 39/1366
  39252. }
  39253. },
  39254. },
  39255. [
  39256. {
  39257. name: "Normal",
  39258. height: math.unit(13, "feet"),
  39259. default: true
  39260. },
  39261. {
  39262. name: "Macro",
  39263. height: math.unit(1300, "feet")
  39264. },
  39265. {
  39266. name: "Megamacro",
  39267. height: math.unit(1300, "miles")
  39268. },
  39269. {
  39270. name: "Gigamacro",
  39271. height: math.unit(1300000, "miles")
  39272. },
  39273. ]
  39274. ))
  39275. characterMakers.push(() => makeCharacter(
  39276. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39277. {
  39278. front: {
  39279. height: math.unit(6, "feet"),
  39280. weight: math.unit(150, "lb"),
  39281. name: "Front",
  39282. image: {
  39283. source: "./media/characters/ariz/front.svg",
  39284. extra: 1401/1346,
  39285. bottom: 5/1406
  39286. }
  39287. },
  39288. },
  39289. [
  39290. {
  39291. name: "Normal",
  39292. height: math.unit(10, "feet"),
  39293. default: true
  39294. },
  39295. ]
  39296. ))
  39297. characterMakers.push(() => makeCharacter(
  39298. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39299. {
  39300. front: {
  39301. height: math.unit(6, "feet"),
  39302. weight: math.unit(140, "lb"),
  39303. name: "Front",
  39304. image: {
  39305. source: "./media/characters/sigrun/front.svg",
  39306. extra: 1418/1359,
  39307. bottom: 27/1445
  39308. }
  39309. },
  39310. },
  39311. [
  39312. {
  39313. name: "Macro",
  39314. height: math.unit(35, "feet"),
  39315. default: true
  39316. },
  39317. ]
  39318. ))
  39319. characterMakers.push(() => makeCharacter(
  39320. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39321. {
  39322. front: {
  39323. height: math.unit(6, "feet"),
  39324. weight: math.unit(150, "lb"),
  39325. name: "Front",
  39326. image: {
  39327. source: "./media/characters/numin/front.svg",
  39328. extra: 1433/1388,
  39329. bottom: 12/1445
  39330. }
  39331. },
  39332. },
  39333. [
  39334. {
  39335. name: "Macro",
  39336. height: math.unit(21.5, "km"),
  39337. default: true
  39338. },
  39339. ]
  39340. ))
  39341. characterMakers.push(() => makeCharacter(
  39342. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39343. {
  39344. front: {
  39345. height: math.unit(6, "feet"),
  39346. weight: math.unit(463, "lb"),
  39347. name: "Front",
  39348. image: {
  39349. source: "./media/characters/melwa/front.svg",
  39350. extra: 1307/1248,
  39351. bottom: 93/1400
  39352. }
  39353. },
  39354. },
  39355. [
  39356. {
  39357. name: "Macro",
  39358. height: math.unit(50, "meters"),
  39359. default: true
  39360. },
  39361. ]
  39362. ))
  39363. characterMakers.push(() => makeCharacter(
  39364. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39365. {
  39366. front: {
  39367. height: math.unit(325, "feet"),
  39368. name: "Front",
  39369. image: {
  39370. source: "./media/characters/zorkaiju/front.svg",
  39371. extra: 1955/1814,
  39372. bottom: 40/1995
  39373. }
  39374. },
  39375. frontExtended: {
  39376. height: math.unit(325, "feet"),
  39377. name: "Front (Extended)",
  39378. image: {
  39379. source: "./media/characters/zorkaiju/front-extended.svg",
  39380. extra: 1955/1814,
  39381. bottom: 40/1995
  39382. }
  39383. },
  39384. side: {
  39385. height: math.unit(325, "feet"),
  39386. name: "Side",
  39387. image: {
  39388. source: "./media/characters/zorkaiju/side.svg",
  39389. extra: 1495/1396,
  39390. bottom: 17/1512
  39391. }
  39392. },
  39393. sideExtended: {
  39394. height: math.unit(325, "feet"),
  39395. name: "Side (Extended)",
  39396. image: {
  39397. source: "./media/characters/zorkaiju/side-extended.svg",
  39398. extra: 1495/1396,
  39399. bottom: 17/1512
  39400. }
  39401. },
  39402. back: {
  39403. height: math.unit(325, "feet"),
  39404. name: "Back",
  39405. image: {
  39406. source: "./media/characters/zorkaiju/back.svg",
  39407. extra: 1959/1821,
  39408. bottom: 31/1990
  39409. }
  39410. },
  39411. backExtended: {
  39412. height: math.unit(325, "feet"),
  39413. name: "Back (Extended)",
  39414. image: {
  39415. source: "./media/characters/zorkaiju/back-extended.svg",
  39416. extra: 1959/1821,
  39417. bottom: 31/1990
  39418. }
  39419. },
  39420. hand: {
  39421. height: math.unit(58.4, "feet"),
  39422. name: "Hand",
  39423. image: {
  39424. source: "./media/characters/zorkaiju/hand.svg"
  39425. }
  39426. },
  39427. handExtended: {
  39428. height: math.unit(61.4, "feet"),
  39429. name: "Hand (Extended)",
  39430. image: {
  39431. source: "./media/characters/zorkaiju/hand-extended.svg"
  39432. }
  39433. },
  39434. foot: {
  39435. height: math.unit(95, "feet"),
  39436. name: "Foot",
  39437. image: {
  39438. source: "./media/characters/zorkaiju/foot.svg"
  39439. }
  39440. },
  39441. leftArm: {
  39442. height: math.unit(59, "feet"),
  39443. name: "Left Arm",
  39444. image: {
  39445. source: "./media/characters/zorkaiju/left-arm.svg"
  39446. }
  39447. },
  39448. rightArm: {
  39449. height: math.unit(59, "feet"),
  39450. name: "Right Arm",
  39451. image: {
  39452. source: "./media/characters/zorkaiju/right-arm.svg"
  39453. }
  39454. },
  39455. tail: {
  39456. height: math.unit(104, "feet"),
  39457. name: "Tail",
  39458. image: {
  39459. source: "./media/characters/zorkaiju/tail.svg"
  39460. }
  39461. },
  39462. tailExtended: {
  39463. height: math.unit(104, "feet"),
  39464. name: "Tail (Extended)",
  39465. image: {
  39466. source: "./media/characters/zorkaiju/tail-extended.svg"
  39467. }
  39468. },
  39469. tailBottom: {
  39470. height: math.unit(104, "feet"),
  39471. name: "Tail Bottom",
  39472. image: {
  39473. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39474. }
  39475. },
  39476. crystal: {
  39477. height: math.unit(27.54, "feet"),
  39478. name: "Crystal",
  39479. image: {
  39480. source: "./media/characters/zorkaiju/crystal.svg"
  39481. }
  39482. },
  39483. },
  39484. [
  39485. {
  39486. name: "Kaiju",
  39487. height: math.unit(325, "feet"),
  39488. default: true
  39489. },
  39490. ]
  39491. ))
  39492. characterMakers.push(() => makeCharacter(
  39493. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39494. {
  39495. front: {
  39496. height: math.unit(6 + 1/12, "feet"),
  39497. weight: math.unit(115, "lb"),
  39498. name: "Front",
  39499. image: {
  39500. source: "./media/characters/bailey-belfry/front.svg",
  39501. extra: 1240/1121,
  39502. bottom: 101/1341
  39503. }
  39504. },
  39505. },
  39506. [
  39507. {
  39508. name: "Normal",
  39509. height: math.unit(6 + 1/12, "feet"),
  39510. default: true
  39511. },
  39512. ]
  39513. ))
  39514. characterMakers.push(() => makeCharacter(
  39515. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39516. {
  39517. side: {
  39518. height: math.unit(4, "meters"),
  39519. weight: math.unit(250, "kg"),
  39520. name: "Side",
  39521. image: {
  39522. source: "./media/characters/blacky/side.svg",
  39523. extra: 1027/919,
  39524. bottom: 43/1070
  39525. }
  39526. },
  39527. maw: {
  39528. height: math.unit(1, "meters"),
  39529. name: "Maw",
  39530. image: {
  39531. source: "./media/characters/blacky/maw.svg"
  39532. }
  39533. },
  39534. paw: {
  39535. height: math.unit(1, "meters"),
  39536. name: "Paw",
  39537. image: {
  39538. source: "./media/characters/blacky/paw.svg"
  39539. }
  39540. },
  39541. },
  39542. [
  39543. {
  39544. name: "Normal",
  39545. height: math.unit(4, "meters"),
  39546. default: true
  39547. },
  39548. ]
  39549. ))
  39550. characterMakers.push(() => makeCharacter(
  39551. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39552. {
  39553. front: {
  39554. height: math.unit(170, "cm"),
  39555. weight: math.unit(66, "kg"),
  39556. name: "Front",
  39557. image: {
  39558. source: "./media/characters/thux-ei/front.svg",
  39559. extra: 1109/1011,
  39560. bottom: 8/1117
  39561. }
  39562. },
  39563. },
  39564. [
  39565. {
  39566. name: "Normal",
  39567. height: math.unit(170, "cm"),
  39568. default: true
  39569. },
  39570. ]
  39571. ))
  39572. characterMakers.push(() => makeCharacter(
  39573. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39574. {
  39575. front: {
  39576. height: math.unit(5, "feet"),
  39577. weight: math.unit(120, "lb"),
  39578. name: "Front",
  39579. image: {
  39580. source: "./media/characters/roxanne-voltaire/front.svg",
  39581. extra: 1901/1779,
  39582. bottom: 53/1954
  39583. }
  39584. },
  39585. },
  39586. [
  39587. {
  39588. name: "Normal",
  39589. height: math.unit(5, "feet"),
  39590. default: true
  39591. },
  39592. {
  39593. name: "Giant",
  39594. height: math.unit(50, "feet")
  39595. },
  39596. {
  39597. name: "Titan",
  39598. height: math.unit(500, "feet")
  39599. },
  39600. {
  39601. name: "Macro",
  39602. height: math.unit(5000, "feet")
  39603. },
  39604. {
  39605. name: "Megamacro",
  39606. height: math.unit(50000, "feet")
  39607. },
  39608. {
  39609. name: "Gigamacro",
  39610. height: math.unit(500000, "feet")
  39611. },
  39612. {
  39613. name: "Teramacro",
  39614. height: math.unit(5e6, "feet")
  39615. },
  39616. ]
  39617. ))
  39618. characterMakers.push(() => makeCharacter(
  39619. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39620. {
  39621. front: {
  39622. height: math.unit(6 + 2/12, "feet"),
  39623. name: "Front",
  39624. image: {
  39625. source: "./media/characters/squeaks/front.svg",
  39626. extra: 1823/1768,
  39627. bottom: 138/1961
  39628. }
  39629. },
  39630. },
  39631. [
  39632. {
  39633. name: "Micro",
  39634. height: math.unit(0.5, "inches")
  39635. },
  39636. {
  39637. name: "Normal",
  39638. height: math.unit(6 + 2/12, "feet"),
  39639. default: true
  39640. },
  39641. {
  39642. name: "Macro",
  39643. height: math.unit(600, "feet")
  39644. },
  39645. ]
  39646. ))
  39647. characterMakers.push(() => makeCharacter(
  39648. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39649. {
  39650. front: {
  39651. height: math.unit(1.72, "meters"),
  39652. name: "Front",
  39653. image: {
  39654. source: "./media/characters/archinger/front.svg",
  39655. extra: 1861/1675,
  39656. bottom: 125/1986
  39657. }
  39658. },
  39659. back: {
  39660. height: math.unit(1.72, "meters"),
  39661. name: "Back",
  39662. image: {
  39663. source: "./media/characters/archinger/back.svg",
  39664. extra: 1844/1701,
  39665. bottom: 104/1948
  39666. }
  39667. },
  39668. cock: {
  39669. height: math.unit(0.59, "feet"),
  39670. name: "Cock",
  39671. image: {
  39672. source: "./media/characters/archinger/cock.svg"
  39673. }
  39674. },
  39675. },
  39676. [
  39677. {
  39678. name: "Normal",
  39679. height: math.unit(1.72, "meters"),
  39680. default: true
  39681. },
  39682. {
  39683. name: "Macro",
  39684. height: math.unit(84, "meters")
  39685. },
  39686. {
  39687. name: "Macro+",
  39688. height: math.unit(112, "meters")
  39689. },
  39690. {
  39691. name: "Macro++",
  39692. height: math.unit(960, "meters")
  39693. },
  39694. {
  39695. name: "Macro+++",
  39696. height: math.unit(4, "km")
  39697. },
  39698. {
  39699. name: "Macro++++",
  39700. height: math.unit(48, "km")
  39701. },
  39702. {
  39703. name: "Macro+++++",
  39704. height: math.unit(4500, "km")
  39705. },
  39706. ]
  39707. ))
  39708. characterMakers.push(() => makeCharacter(
  39709. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  39710. {
  39711. front: {
  39712. height: math.unit(5 + 5/12, "feet"),
  39713. name: "Front",
  39714. image: {
  39715. source: "./media/characters/alsnapz/front.svg",
  39716. extra: 1157/1065,
  39717. bottom: 42/1199
  39718. }
  39719. },
  39720. },
  39721. [
  39722. {
  39723. name: "Normal",
  39724. height: math.unit(5 + 5/12, "feet"),
  39725. default: true
  39726. },
  39727. ]
  39728. ))
  39729. characterMakers.push(() => makeCharacter(
  39730. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  39731. {
  39732. side: {
  39733. height: math.unit(3.2, "earths"),
  39734. name: "Side",
  39735. image: {
  39736. source: "./media/characters/mag/side.svg",
  39737. extra: 1331/1008,
  39738. bottom: 52/1383
  39739. }
  39740. },
  39741. wing: {
  39742. height: math.unit(1.94, "earths"),
  39743. name: "Wing",
  39744. image: {
  39745. source: "./media/characters/mag/wing.svg"
  39746. }
  39747. },
  39748. dick: {
  39749. height: math.unit(1.8, "earths"),
  39750. name: "Dick",
  39751. image: {
  39752. source: "./media/characters/mag/dick.svg"
  39753. }
  39754. },
  39755. ass: {
  39756. height: math.unit(1.33, "earths"),
  39757. name: "Ass",
  39758. image: {
  39759. source: "./media/characters/mag/ass.svg"
  39760. }
  39761. },
  39762. head: {
  39763. height: math.unit(1.1, "earths"),
  39764. name: "Head",
  39765. image: {
  39766. source: "./media/characters/mag/head.svg"
  39767. }
  39768. },
  39769. maw: {
  39770. height: math.unit(1.62, "earths"),
  39771. name: "Maw",
  39772. image: {
  39773. source: "./media/characters/mag/maw.svg"
  39774. }
  39775. },
  39776. },
  39777. [
  39778. {
  39779. name: "Small",
  39780. height: math.unit(162, "feet")
  39781. },
  39782. {
  39783. name: "Normal",
  39784. height: math.unit(3.2, "earths"),
  39785. default: true
  39786. },
  39787. ]
  39788. ))
  39789. characterMakers.push(() => makeCharacter(
  39790. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  39791. {
  39792. front: {
  39793. height: math.unit(512, "feet"),
  39794. weight: math.unit(63509, "tonnes"),
  39795. name: "Front",
  39796. image: {
  39797. source: "./media/characters/vorrel-harroc/front.svg",
  39798. extra: 1075/1063,
  39799. bottom: 62/1137
  39800. }
  39801. },
  39802. },
  39803. [
  39804. {
  39805. name: "Normal",
  39806. height: math.unit(10, "feet")
  39807. },
  39808. {
  39809. name: "Macro",
  39810. height: math.unit(512, "feet"),
  39811. default: true
  39812. },
  39813. {
  39814. name: "Megamacro",
  39815. height: math.unit(256, "miles")
  39816. },
  39817. {
  39818. name: "Gigamacro",
  39819. height: math.unit(4096, "miles")
  39820. },
  39821. ]
  39822. ))
  39823. characterMakers.push(() => makeCharacter(
  39824. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  39825. {
  39826. side: {
  39827. height: math.unit(50, "feet"),
  39828. name: "Side",
  39829. image: {
  39830. source: "./media/characters/froimar/side.svg",
  39831. extra: 855/638,
  39832. bottom: 99/954
  39833. }
  39834. },
  39835. },
  39836. [
  39837. {
  39838. name: "Macro",
  39839. height: math.unit(50, "feet"),
  39840. default: true
  39841. },
  39842. ]
  39843. ))
  39844. characterMakers.push(() => makeCharacter(
  39845. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  39846. {
  39847. front: {
  39848. height: math.unit(210, "miles"),
  39849. name: "Front",
  39850. image: {
  39851. source: "./media/characters/timothy/front.svg",
  39852. extra: 1007/943,
  39853. bottom: 62/1069
  39854. }
  39855. },
  39856. frontSkirt: {
  39857. height: math.unit(210, "miles"),
  39858. name: "Front (Skirt)",
  39859. image: {
  39860. source: "./media/characters/timothy/front-skirt.svg",
  39861. extra: 1007/943,
  39862. bottom: 62/1069
  39863. }
  39864. },
  39865. frontCoat: {
  39866. height: math.unit(210, "miles"),
  39867. name: "Front (Coat)",
  39868. image: {
  39869. source: "./media/characters/timothy/front-coat.svg",
  39870. extra: 1007/943,
  39871. bottom: 62/1069
  39872. }
  39873. },
  39874. },
  39875. [
  39876. {
  39877. name: "Macro",
  39878. height: math.unit(210, "miles"),
  39879. default: true
  39880. },
  39881. {
  39882. name: "Megamacro",
  39883. height: math.unit(210000, "miles")
  39884. },
  39885. ]
  39886. ))
  39887. characterMakers.push(() => makeCharacter(
  39888. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  39889. {
  39890. front: {
  39891. height: math.unit(188, "feet"),
  39892. name: "Front",
  39893. image: {
  39894. source: "./media/characters/pyotr/front.svg",
  39895. extra: 1912/1826,
  39896. bottom: 18/1930
  39897. }
  39898. },
  39899. },
  39900. [
  39901. {
  39902. name: "Macro",
  39903. height: math.unit(188, "feet"),
  39904. default: true
  39905. },
  39906. {
  39907. name: "Megamacro",
  39908. height: math.unit(8, "miles")
  39909. },
  39910. ]
  39911. ))
  39912. characterMakers.push(() => makeCharacter(
  39913. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  39914. {
  39915. side: {
  39916. height: math.unit(10, "feet"),
  39917. weight: math.unit(4500, "lb"),
  39918. name: "Side",
  39919. image: {
  39920. source: "./media/characters/ackart/side.svg",
  39921. extra: 1776/1668,
  39922. bottom: 116/1892
  39923. }
  39924. },
  39925. },
  39926. [
  39927. {
  39928. name: "Normal",
  39929. height: math.unit(10, "feet"),
  39930. default: true
  39931. },
  39932. ]
  39933. ))
  39934. characterMakers.push(() => makeCharacter(
  39935. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  39936. {
  39937. side: {
  39938. height: math.unit(21, "feet"),
  39939. name: "Side",
  39940. image: {
  39941. source: "./media/characters/nolow/side.svg",
  39942. extra: 1484/1434,
  39943. bottom: 85/1569
  39944. }
  39945. },
  39946. sideErect: {
  39947. height: math.unit(21, "feet"),
  39948. name: "Side-erect",
  39949. image: {
  39950. source: "./media/characters/nolow/side-erect.svg",
  39951. extra: 1484/1434,
  39952. bottom: 85/1569
  39953. }
  39954. },
  39955. },
  39956. [
  39957. {
  39958. name: "Regular",
  39959. height: math.unit(12, "feet")
  39960. },
  39961. {
  39962. name: "Big Chee",
  39963. height: math.unit(21, "feet"),
  39964. default: true
  39965. },
  39966. ]
  39967. ))
  39968. characterMakers.push(() => makeCharacter(
  39969. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  39970. {
  39971. front: {
  39972. height: math.unit(7, "feet"),
  39973. weight: math.unit(250, "lb"),
  39974. name: "Front",
  39975. image: {
  39976. source: "./media/characters/nines/front.svg",
  39977. extra: 1741/1607,
  39978. bottom: 41/1782
  39979. }
  39980. },
  39981. side: {
  39982. height: math.unit(7, "feet"),
  39983. weight: math.unit(250, "lb"),
  39984. name: "Side",
  39985. image: {
  39986. source: "./media/characters/nines/side.svg",
  39987. extra: 1854/1735,
  39988. bottom: 93/1947
  39989. }
  39990. },
  39991. back: {
  39992. height: math.unit(7, "feet"),
  39993. weight: math.unit(250, "lb"),
  39994. name: "Back",
  39995. image: {
  39996. source: "./media/characters/nines/back.svg",
  39997. extra: 1748/1615,
  39998. bottom: 20/1768
  39999. }
  40000. },
  40001. },
  40002. [
  40003. {
  40004. name: "Megamacro",
  40005. height: math.unit(99, "km"),
  40006. default: true
  40007. },
  40008. ]
  40009. ))
  40010. characterMakers.push(() => makeCharacter(
  40011. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40012. {
  40013. front: {
  40014. height: math.unit(5 + 10/12, "feet"),
  40015. weight: math.unit(210, "lb"),
  40016. name: "Front",
  40017. image: {
  40018. source: "./media/characters/zenith/front.svg",
  40019. extra: 1531/1452,
  40020. bottom: 198/1729
  40021. }
  40022. },
  40023. back: {
  40024. height: math.unit(5 + 10/12, "feet"),
  40025. weight: math.unit(210, "lb"),
  40026. name: "Back",
  40027. image: {
  40028. source: "./media/characters/zenith/back.svg",
  40029. extra: 1571/1487,
  40030. bottom: 75/1646
  40031. }
  40032. },
  40033. },
  40034. [
  40035. {
  40036. name: "Normal",
  40037. height: math.unit(5 + 10/12, "feet"),
  40038. default: true
  40039. }
  40040. ]
  40041. ))
  40042. characterMakers.push(() => makeCharacter(
  40043. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40044. {
  40045. front: {
  40046. height: math.unit(4, "feet"),
  40047. weight: math.unit(60, "lb"),
  40048. name: "Front",
  40049. image: {
  40050. source: "./media/characters/jasper/front.svg",
  40051. extra: 1450/1379,
  40052. bottom: 19/1469
  40053. }
  40054. },
  40055. },
  40056. [
  40057. {
  40058. name: "Normal",
  40059. height: math.unit(4, "feet"),
  40060. default: true
  40061. },
  40062. ]
  40063. ))
  40064. characterMakers.push(() => makeCharacter(
  40065. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40066. {
  40067. front: {
  40068. height: math.unit(6 + 5/12, "feet"),
  40069. weight: math.unit(290, "lb"),
  40070. name: "Front",
  40071. image: {
  40072. source: "./media/characters/tiberius-thyben/front.svg",
  40073. extra: 757/739,
  40074. bottom: 39/796
  40075. }
  40076. },
  40077. },
  40078. [
  40079. {
  40080. name: "Micro",
  40081. height: math.unit(1.5, "inches")
  40082. },
  40083. {
  40084. name: "Normal",
  40085. height: math.unit(6 + 5/12, "feet"),
  40086. default: true
  40087. },
  40088. {
  40089. name: "Macro",
  40090. height: math.unit(300, "feet")
  40091. },
  40092. ]
  40093. ))
  40094. characterMakers.push(() => makeCharacter(
  40095. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40096. {
  40097. front: {
  40098. height: math.unit(5 + 6/12, "feet"),
  40099. weight: math.unit(60, "kg"),
  40100. name: "Front",
  40101. image: {
  40102. source: "./media/characters/sabre/front.svg",
  40103. extra: 738/671,
  40104. bottom: 27/765
  40105. }
  40106. },
  40107. },
  40108. [
  40109. {
  40110. name: "Teeny",
  40111. height: math.unit(2, "inches")
  40112. },
  40113. {
  40114. name: "Smol",
  40115. height: math.unit(8, "inches")
  40116. },
  40117. {
  40118. name: "Normal",
  40119. height: math.unit(5 + 6/12, "feet"),
  40120. default: true
  40121. },
  40122. {
  40123. name: "Mini-Macro",
  40124. height: math.unit(15, "feet")
  40125. },
  40126. {
  40127. name: "Macro",
  40128. height: math.unit(50, "feet")
  40129. },
  40130. ]
  40131. ))
  40132. characterMakers.push(() => makeCharacter(
  40133. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40134. {
  40135. front: {
  40136. height: math.unit(6 + 4/12, "feet"),
  40137. weight: math.unit(170, "lb"),
  40138. name: "Front",
  40139. image: {
  40140. source: "./media/characters/charlie/front.svg",
  40141. extra: 1348/1228,
  40142. bottom: 15/1363
  40143. }
  40144. },
  40145. },
  40146. [
  40147. {
  40148. name: "Macro",
  40149. height: math.unit(1700, "meters"),
  40150. default: true
  40151. },
  40152. {
  40153. name: "MegaMacro",
  40154. height: math.unit(20400, "meters")
  40155. },
  40156. ]
  40157. ))
  40158. characterMakers.push(() => makeCharacter(
  40159. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40160. {
  40161. front: {
  40162. height: math.unit(6 + 3/12, "feet"),
  40163. weight: math.unit(185, "lb"),
  40164. name: "Front",
  40165. image: {
  40166. source: "./media/characters/susan-grant/front.svg",
  40167. extra: 1351/1327,
  40168. bottom: 26/1377
  40169. }
  40170. },
  40171. },
  40172. [
  40173. {
  40174. name: "Normal",
  40175. height: math.unit(6 + 3/12, "feet"),
  40176. default: true
  40177. },
  40178. {
  40179. name: "Macro",
  40180. height: math.unit(225, "feet")
  40181. },
  40182. {
  40183. name: "Macro+",
  40184. height: math.unit(900, "feet")
  40185. },
  40186. {
  40187. name: "MegaMacro",
  40188. height: math.unit(14400, "feet")
  40189. },
  40190. ]
  40191. ))
  40192. characterMakers.push(() => makeCharacter(
  40193. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40194. {
  40195. front: {
  40196. height: math.unit(5 + 4/12, "feet"),
  40197. weight: math.unit(110, "lb"),
  40198. name: "Front",
  40199. image: {
  40200. source: "./media/characters/axel-isanov/front.svg",
  40201. extra: 1096/1065,
  40202. bottom: 13/1109
  40203. }
  40204. },
  40205. },
  40206. [
  40207. {
  40208. name: "Normal",
  40209. height: math.unit(5 + 4/12, "feet"),
  40210. default: true
  40211. },
  40212. ]
  40213. ))
  40214. characterMakers.push(() => makeCharacter(
  40215. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40216. {
  40217. front: {
  40218. height: math.unit(9, "feet"),
  40219. weight: math.unit(467, "lb"),
  40220. name: "Front",
  40221. image: {
  40222. source: "./media/characters/necahual/front.svg",
  40223. extra: 920/873,
  40224. bottom: 26/946
  40225. }
  40226. },
  40227. back: {
  40228. height: math.unit(9, "feet"),
  40229. weight: math.unit(467, "lb"),
  40230. name: "Back",
  40231. image: {
  40232. source: "./media/characters/necahual/back.svg",
  40233. extra: 930/884,
  40234. bottom: 16/946
  40235. }
  40236. },
  40237. frontUnderwear: {
  40238. height: math.unit(9, "feet"),
  40239. weight: math.unit(467, "lb"),
  40240. name: "Front (Underwear)",
  40241. image: {
  40242. source: "./media/characters/necahual/front-underwear.svg",
  40243. extra: 920/873,
  40244. bottom: 26/946
  40245. }
  40246. },
  40247. frontDressed: {
  40248. height: math.unit(9, "feet"),
  40249. weight: math.unit(467, "lb"),
  40250. name: "Front (Dressed)",
  40251. image: {
  40252. source: "./media/characters/necahual/front-dressed.svg",
  40253. extra: 920/873,
  40254. bottom: 26/946
  40255. }
  40256. },
  40257. },
  40258. [
  40259. {
  40260. name: "Comprsesed",
  40261. height: math.unit(9, "feet")
  40262. },
  40263. {
  40264. name: "Natural",
  40265. height: math.unit(15, "feet"),
  40266. default: true
  40267. },
  40268. {
  40269. name: "Boosted",
  40270. height: math.unit(50, "feet")
  40271. },
  40272. {
  40273. name: "Boosted+",
  40274. height: math.unit(150, "feet")
  40275. },
  40276. {
  40277. name: "Max",
  40278. height: math.unit(500, "feet")
  40279. },
  40280. ]
  40281. ))
  40282. characterMakers.push(() => makeCharacter(
  40283. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40284. {
  40285. front: {
  40286. height: math.unit(22 + 1/12, "feet"),
  40287. weight: math.unit(3200, "lb"),
  40288. name: "Front",
  40289. image: {
  40290. source: "./media/characters/theo-acacia/front.svg",
  40291. extra: 1796/1741,
  40292. bottom: 83/1879
  40293. }
  40294. },
  40295. frontUnderwear: {
  40296. height: math.unit(22 + 1/12, "feet"),
  40297. weight: math.unit(3200, "lb"),
  40298. name: "Front (Underwear)",
  40299. image: {
  40300. source: "./media/characters/theo-acacia/front-underwear.svg",
  40301. extra: 1796/1741,
  40302. bottom: 83/1879
  40303. }
  40304. },
  40305. frontNude: {
  40306. height: math.unit(22 + 1/12, "feet"),
  40307. weight: math.unit(3200, "lb"),
  40308. name: "Front (Nude)",
  40309. image: {
  40310. source: "./media/characters/theo-acacia/front-nude.svg",
  40311. extra: 1796/1741,
  40312. bottom: 83/1879
  40313. }
  40314. },
  40315. },
  40316. [
  40317. {
  40318. name: "Normal",
  40319. height: math.unit(22 + 1/12, "feet"),
  40320. default: true
  40321. },
  40322. ]
  40323. ))
  40324. characterMakers.push(() => makeCharacter(
  40325. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40326. {
  40327. front: {
  40328. height: math.unit(20, "feet"),
  40329. name: "Front",
  40330. image: {
  40331. source: "./media/characters/astra/front.svg",
  40332. extra: 1850/1714,
  40333. bottom: 106/1956
  40334. }
  40335. },
  40336. frontUndressed: {
  40337. height: math.unit(20, "feet"),
  40338. name: "Front (Undressed)",
  40339. image: {
  40340. source: "./media/characters/astra/front-undressed.svg",
  40341. extra: 1926/1749,
  40342. bottom: 0/1926
  40343. }
  40344. },
  40345. hand: {
  40346. height: math.unit(1.53, "feet"),
  40347. name: "Hand",
  40348. image: {
  40349. source: "./media/characters/astra/hand.svg"
  40350. }
  40351. },
  40352. paw: {
  40353. height: math.unit(1.53, "feet"),
  40354. name: "Paw",
  40355. image: {
  40356. source: "./media/characters/astra/paw.svg"
  40357. }
  40358. },
  40359. },
  40360. [
  40361. {
  40362. name: "Smallest",
  40363. height: math.unit(20, "feet")
  40364. },
  40365. {
  40366. name: "Normal",
  40367. height: math.unit(1e9, "miles"),
  40368. default: true
  40369. },
  40370. {
  40371. name: "Larger",
  40372. height: math.unit(5, "multiverses")
  40373. },
  40374. {
  40375. name: "Largest",
  40376. height: math.unit(1e9, "multiverses")
  40377. },
  40378. ]
  40379. ))
  40380. characterMakers.push(() => makeCharacter(
  40381. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40382. {
  40383. front: {
  40384. height: math.unit(8, "feet"),
  40385. name: "Front",
  40386. image: {
  40387. source: "./media/characters/breanna/front.svg",
  40388. extra: 1912/1632,
  40389. bottom: 33/1945
  40390. }
  40391. },
  40392. },
  40393. [
  40394. {
  40395. name: "Smallest",
  40396. height: math.unit(8, "feet")
  40397. },
  40398. {
  40399. name: "Normal",
  40400. height: math.unit(1, "mile"),
  40401. default: true
  40402. },
  40403. {
  40404. name: "Maximum",
  40405. height: math.unit(1500000000000, "lightyears")
  40406. },
  40407. ]
  40408. ))
  40409. characterMakers.push(() => makeCharacter(
  40410. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40411. {
  40412. front: {
  40413. height: math.unit(5 + 11/12, "feet"),
  40414. weight: math.unit(155, "lb"),
  40415. name: "Front",
  40416. image: {
  40417. source: "./media/characters/cai/front.svg",
  40418. extra: 1823/1702,
  40419. bottom: 32/1855
  40420. }
  40421. },
  40422. back: {
  40423. height: math.unit(5 + 11/12, "feet"),
  40424. weight: math.unit(155, "lb"),
  40425. name: "Back",
  40426. image: {
  40427. source: "./media/characters/cai/back.svg",
  40428. extra: 1809/1708,
  40429. bottom: 31/1840
  40430. }
  40431. },
  40432. },
  40433. [
  40434. {
  40435. name: "Normal",
  40436. height: math.unit(5 + 11/12, "feet"),
  40437. default: true
  40438. },
  40439. {
  40440. name: "Big",
  40441. height: math.unit(15, "feet")
  40442. },
  40443. {
  40444. name: "Macro",
  40445. height: math.unit(200, "feet")
  40446. },
  40447. ]
  40448. ))
  40449. characterMakers.push(() => makeCharacter(
  40450. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40451. {
  40452. front: {
  40453. height: math.unit(5 + 6/12, "feet"),
  40454. weight: math.unit(160, "lb"),
  40455. name: "Front",
  40456. image: {
  40457. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40458. extra: 1227/1174,
  40459. bottom: 37/1264
  40460. }
  40461. },
  40462. },
  40463. [
  40464. {
  40465. name: "Macro",
  40466. height: math.unit(444, "meters"),
  40467. default: true
  40468. },
  40469. ]
  40470. ))
  40471. characterMakers.push(() => makeCharacter(
  40472. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40473. {
  40474. front: {
  40475. height: math.unit(18 + 7/12, "feet"),
  40476. name: "Front",
  40477. image: {
  40478. source: "./media/characters/rex/front.svg",
  40479. extra: 1941/1807,
  40480. bottom: 66/2007
  40481. }
  40482. },
  40483. back: {
  40484. height: math.unit(18 + 7/12, "feet"),
  40485. name: "Back",
  40486. image: {
  40487. source: "./media/characters/rex/back.svg",
  40488. extra: 1937/1822,
  40489. bottom: 42/1979
  40490. }
  40491. },
  40492. boot: {
  40493. height: math.unit(3.45, "feet"),
  40494. name: "Boot",
  40495. image: {
  40496. source: "./media/characters/rex/boot.svg"
  40497. }
  40498. },
  40499. paw: {
  40500. height: math.unit(4.17, "feet"),
  40501. name: "Paw",
  40502. image: {
  40503. source: "./media/characters/rex/paw.svg"
  40504. }
  40505. },
  40506. head: {
  40507. height: math.unit(6.728, "feet"),
  40508. name: "Head",
  40509. image: {
  40510. source: "./media/characters/rex/head.svg"
  40511. }
  40512. },
  40513. },
  40514. [
  40515. {
  40516. name: "Nano",
  40517. height: math.unit(18 + 7/12, "feet")
  40518. },
  40519. {
  40520. name: "Micro",
  40521. height: math.unit(1.5, "megameters")
  40522. },
  40523. {
  40524. name: "Normal",
  40525. height: math.unit(440, "megameters"),
  40526. default: true
  40527. },
  40528. {
  40529. name: "Macro",
  40530. height: math.unit(2.5, "gigameters")
  40531. },
  40532. {
  40533. name: "Gigamacro",
  40534. height: math.unit(2, "galaxies")
  40535. },
  40536. ]
  40537. ))
  40538. characterMakers.push(() => makeCharacter(
  40539. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40540. {
  40541. side: {
  40542. height: math.unit(32, "feet"),
  40543. weight: math.unit(250000, "lb"),
  40544. name: "Side",
  40545. image: {
  40546. source: "./media/characters/silverwing/side.svg",
  40547. extra: 1100/1019,
  40548. bottom: 204/1304
  40549. }
  40550. },
  40551. },
  40552. [
  40553. {
  40554. name: "Normal",
  40555. height: math.unit(32, "feet"),
  40556. default: true
  40557. },
  40558. ]
  40559. ))
  40560. characterMakers.push(() => makeCharacter(
  40561. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40562. {
  40563. front: {
  40564. height: math.unit(6 + 6/12, "feet"),
  40565. weight: math.unit(350, "lb"),
  40566. name: "Front",
  40567. image: {
  40568. source: "./media/characters/tristan-hawthorne/front.svg",
  40569. extra: 1159/1124,
  40570. bottom: 37/1196
  40571. }
  40572. },
  40573. },
  40574. [
  40575. {
  40576. name: "Normal",
  40577. height: math.unit(6 + 6/12, "feet"),
  40578. default: true
  40579. },
  40580. ]
  40581. ))
  40582. characterMakers.push(() => makeCharacter(
  40583. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40584. {
  40585. front: {
  40586. height: math.unit(5 + 11/12, "feet"),
  40587. weight: math.unit(190, "lb"),
  40588. name: "Front",
  40589. image: {
  40590. source: "./media/characters/mizu/front.svg",
  40591. extra: 1988/1788,
  40592. bottom: 14/2002
  40593. }
  40594. },
  40595. },
  40596. [
  40597. {
  40598. name: "Normal",
  40599. height: math.unit(5 + 11/12, "feet"),
  40600. default: true
  40601. },
  40602. ]
  40603. ))
  40604. characterMakers.push(() => makeCharacter(
  40605. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40606. {
  40607. front: {
  40608. height: math.unit(6, "feet"),
  40609. name: "Front",
  40610. image: {
  40611. source: "./media/characters/moonlight-rose-terra/front.svg",
  40612. extra: 1434/1252,
  40613. bottom: 48/1482
  40614. }
  40615. },
  40616. },
  40617. [
  40618. {
  40619. name: "TRAPPIST-1D",
  40620. height: math.unit(4992*2, "km")
  40621. },
  40622. {
  40623. name: "Earth",
  40624. height: math.unit(6367*2, "km"),
  40625. default: true
  40626. },
  40627. {
  40628. name: "Kepler-22b",
  40629. height: math.unit(15282*2, "km")
  40630. },
  40631. ]
  40632. ))
  40633. characterMakers.push(() => makeCharacter(
  40634. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40635. {
  40636. front: {
  40637. height: math.unit(6, "feet"),
  40638. name: "Front",
  40639. image: {
  40640. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40641. extra: 1851/1712,
  40642. bottom: 0/1851
  40643. }
  40644. },
  40645. },
  40646. [
  40647. {
  40648. name: "Enceladus",
  40649. height: math.unit(513*2, "km")
  40650. },
  40651. {
  40652. name: "Europe",
  40653. height: math.unit(1560*2, "km")
  40654. },
  40655. {
  40656. name: "Neptune",
  40657. height: math.unit(24622*2, "km"),
  40658. default: true
  40659. },
  40660. {
  40661. name: "CoRoT-9b",
  40662. height: math.unit(75067*2, "km")
  40663. },
  40664. ]
  40665. ))
  40666. characterMakers.push(() => makeCharacter(
  40667. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  40668. {
  40669. front: {
  40670. height: math.unit(6, "feet"),
  40671. name: "Front",
  40672. image: {
  40673. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  40674. extra: 1367/1286,
  40675. bottom: 55/1422
  40676. }
  40677. },
  40678. },
  40679. [
  40680. {
  40681. name: "Saturn",
  40682. height: math.unit(58232*2, "km")
  40683. },
  40684. {
  40685. name: "Jupiter",
  40686. height: math.unit(69911*2, "km"),
  40687. default: true
  40688. },
  40689. {
  40690. name: "HD 100546 b",
  40691. height: math.unit(482938, "km")
  40692. },
  40693. ]
  40694. ))
  40695. characterMakers.push(() => makeCharacter(
  40696. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  40697. {
  40698. front: {
  40699. height: math.unit(1.7, "feet"),
  40700. weight: math.unit(50, "lb"),
  40701. name: "Front",
  40702. image: {
  40703. source: "./media/characters/dechroma/front.svg",
  40704. extra: 1095/859,
  40705. bottom: 64/1159
  40706. }
  40707. },
  40708. },
  40709. [
  40710. {
  40711. name: "Normal",
  40712. height: math.unit(1.7, "feet"),
  40713. default: true
  40714. },
  40715. ]
  40716. ))
  40717. characterMakers.push(() => makeCharacter(
  40718. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  40719. {
  40720. side: {
  40721. height: math.unit(30, "feet"),
  40722. name: "Side",
  40723. image: {
  40724. source: "./media/characters/veluren-thanazel/side.svg",
  40725. extra: 1611/633,
  40726. bottom: 118/1729
  40727. }
  40728. },
  40729. front: {
  40730. height: math.unit(30, "feet"),
  40731. name: "Front",
  40732. image: {
  40733. source: "./media/characters/veluren-thanazel/front.svg",
  40734. extra: 1486/636,
  40735. bottom: 238/1724
  40736. }
  40737. },
  40738. head: {
  40739. height: math.unit(21.4, "feet"),
  40740. name: "Head",
  40741. image: {
  40742. source: "./media/characters/veluren-thanazel/head.svg"
  40743. }
  40744. },
  40745. genitals: {
  40746. height: math.unit(19.4, "feet"),
  40747. name: "Genitals",
  40748. image: {
  40749. source: "./media/characters/veluren-thanazel/genitals.svg"
  40750. }
  40751. },
  40752. },
  40753. [
  40754. {
  40755. name: "Social",
  40756. height: math.unit(6, "feet")
  40757. },
  40758. {
  40759. name: "Play",
  40760. height: math.unit(12, "feet")
  40761. },
  40762. {
  40763. name: "True",
  40764. height: math.unit(30, "feet"),
  40765. default: true
  40766. },
  40767. ]
  40768. ))
  40769. characterMakers.push(() => makeCharacter(
  40770. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  40771. {
  40772. front: {
  40773. height: math.unit(7 + 6/12, "feet"),
  40774. weight: math.unit(500, "kg"),
  40775. name: "Front",
  40776. image: {
  40777. source: "./media/characters/arcturas/front.svg",
  40778. extra: 1700/1500,
  40779. bottom: 145/1845
  40780. }
  40781. },
  40782. },
  40783. [
  40784. {
  40785. name: "Normal",
  40786. height: math.unit(7 + 6/12, "feet"),
  40787. default: true
  40788. },
  40789. ]
  40790. ))
  40791. characterMakers.push(() => makeCharacter(
  40792. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  40793. {
  40794. side: {
  40795. height: math.unit(6, "feet"),
  40796. weight: math.unit(2, "tons"),
  40797. name: "Side",
  40798. image: {
  40799. source: "./media/characters/vitaen/side.svg",
  40800. extra: 1157/617,
  40801. bottom: 122/1279
  40802. }
  40803. },
  40804. },
  40805. [
  40806. {
  40807. name: "Normal",
  40808. height: math.unit(6, "feet"),
  40809. default: true
  40810. },
  40811. ]
  40812. ))
  40813. characterMakers.push(() => makeCharacter(
  40814. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  40815. {
  40816. front: {
  40817. height: math.unit(19, "feet"),
  40818. name: "Front",
  40819. image: {
  40820. source: "./media/characters/fia-dreamweaver/front.svg",
  40821. extra: 1630/1504,
  40822. bottom: 25/1655
  40823. }
  40824. },
  40825. },
  40826. [
  40827. {
  40828. name: "Normal",
  40829. height: math.unit(19, "feet"),
  40830. default: true
  40831. },
  40832. ]
  40833. ))
  40834. characterMakers.push(() => makeCharacter(
  40835. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  40836. {
  40837. front: {
  40838. height: math.unit(5 + 4/12, "feet"),
  40839. name: "Front",
  40840. image: {
  40841. source: "./media/characters/artan/front.svg",
  40842. extra: 1618/1535,
  40843. bottom: 46/1664
  40844. }
  40845. },
  40846. back: {
  40847. height: math.unit(5 + 4/12, "feet"),
  40848. name: "Back",
  40849. image: {
  40850. source: "./media/characters/artan/back.svg",
  40851. extra: 1618/1543,
  40852. bottom: 31/1649
  40853. }
  40854. },
  40855. },
  40856. [
  40857. {
  40858. name: "Normal",
  40859. height: math.unit(5 + 4/12, "feet"),
  40860. default: true
  40861. },
  40862. ]
  40863. ))
  40864. characterMakers.push(() => makeCharacter(
  40865. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  40866. {
  40867. side: {
  40868. height: math.unit(182, "cm"),
  40869. weight: math.unit(1000, "lb"),
  40870. name: "Side",
  40871. image: {
  40872. source: "./media/characters/silver-dragon/side.svg",
  40873. extra: 710/287,
  40874. bottom: 88/798
  40875. }
  40876. },
  40877. },
  40878. [
  40879. {
  40880. name: "Normal",
  40881. height: math.unit(182, "cm"),
  40882. default: true
  40883. },
  40884. ]
  40885. ))
  40886. characterMakers.push(() => makeCharacter(
  40887. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  40888. {
  40889. side: {
  40890. height: math.unit(6 + 6/12, "feet"),
  40891. weight: math.unit(1.5, "tons"),
  40892. name: "Side",
  40893. image: {
  40894. source: "./media/characters/zephyr/side.svg",
  40895. extra: 1433/586,
  40896. bottom: 109/1542
  40897. }
  40898. },
  40899. },
  40900. [
  40901. {
  40902. name: "Normal",
  40903. height: math.unit(6 + 6/12, "feet"),
  40904. default: true
  40905. },
  40906. ]
  40907. ))
  40908. characterMakers.push(() => makeCharacter(
  40909. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  40910. {
  40911. side: {
  40912. height: math.unit(1, "feet"),
  40913. name: "Side",
  40914. image: {
  40915. source: "./media/characters/vixye/side.svg",
  40916. extra: 632/541,
  40917. bottom: 0/632
  40918. }
  40919. },
  40920. },
  40921. [
  40922. {
  40923. name: "Normal",
  40924. height: math.unit(1, "feet"),
  40925. default: true
  40926. },
  40927. {
  40928. name: "True",
  40929. height: math.unit(1e15, "multiverses")
  40930. },
  40931. ]
  40932. ))
  40933. //characters
  40934. function makeCharacters() {
  40935. const results = [];
  40936. characterMakers.forEach(character => {
  40937. results.push(character());
  40938. });
  40939. return results;
  40940. }