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

36325 строки
912 KiB

  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. });
  45. return createEntityMaker(info, views, defaultSizes);
  46. }
  47. const speciesData = {
  48. animal: {
  49. name: "Animal"
  50. },
  51. dog: {
  52. name: "Dog",
  53. parents: [
  54. "canine"
  55. ]
  56. },
  57. canine: {
  58. name: "Canine",
  59. parents: [
  60. "mammal"
  61. ]
  62. },
  63. crux: {
  64. name: "Crux",
  65. parents: [
  66. "mammal"
  67. ]
  68. },
  69. mammal: {
  70. name: "Mammal",
  71. parents: [
  72. "animal"
  73. ]
  74. },
  75. "rough-collie": {
  76. name: "Rough Collie",
  77. parents: [
  78. "dog"
  79. ]
  80. },
  81. dragon: {
  82. name: "Dragon",
  83. parents: [
  84. "reptile"
  85. ]
  86. },
  87. reptile: {
  88. name: "Reptile",
  89. parents: [
  90. "animal"
  91. ]
  92. },
  93. woodpecker: {
  94. name: "Woodpecker",
  95. parents: [
  96. "avian"
  97. ]
  98. },
  99. avian: {
  100. name: "Avian",
  101. parents: [
  102. "animal"
  103. ]
  104. },
  105. kitsune: {
  106. name: "Kitsune",
  107. parents: [
  108. "fox"
  109. ]
  110. },
  111. fox: {
  112. name: "Fox",
  113. parents: [
  114. "mammal"
  115. ]
  116. },
  117. pokemon: {
  118. name: "Pokemon"
  119. },
  120. tiger: {
  121. name: "Tiger",
  122. parents: [
  123. "cat"
  124. ]
  125. },
  126. cat: {
  127. name: "Cat",
  128. parents: [
  129. "mammal"
  130. ]
  131. },
  132. "blue-jay": {
  133. name: "Blue Jay",
  134. parents: [
  135. "avian"
  136. ]
  137. },
  138. wolf: {
  139. name: "Wolf",
  140. parents: [
  141. "mammal"
  142. ]
  143. },
  144. coyote: {
  145. name: "Coyote",
  146. parents: [
  147. "mammal"
  148. ]
  149. },
  150. raccoon: {
  151. name: "Raccoon",
  152. parents: [
  153. "mammal"
  154. ]
  155. },
  156. weasel: {
  157. name: "Weasel",
  158. parents: [
  159. "mammal"
  160. ]
  161. },
  162. "red-panda": {
  163. name: "Red Panda",
  164. parents: [
  165. "mammal"
  166. ]
  167. },
  168. dolphin: {
  169. name: "Dolphin",
  170. parents: [
  171. "mammal"
  172. ]
  173. },
  174. "african-wild-dog": {
  175. name: "African Wild Dog",
  176. parents: [
  177. "canine"
  178. ]
  179. },
  180. "hyena": {
  181. name: "Hyena",
  182. parents: [
  183. "canine"
  184. ]
  185. },
  186. "carbuncle": {
  187. name: "Carbuncle",
  188. parents: [
  189. "animal"
  190. ]
  191. },
  192. bat: {
  193. name: "Bat",
  194. parents: [
  195. "mammal"
  196. ]
  197. },
  198. "leaf-nosed-bat": {
  199. name: "Leaf-Nosed Bat",
  200. parents: [
  201. "bat"
  202. ]
  203. },
  204. "fish": {
  205. name: "Fish",
  206. parents: [
  207. "animal"
  208. ]
  209. },
  210. "ram": {
  211. name: "Ram",
  212. parents: [
  213. "mammal"
  214. ]
  215. },
  216. "demon": {
  217. name: "Demon"
  218. },
  219. "cougar": {
  220. name: "Cougar",
  221. parents: [
  222. "cat"
  223. ]
  224. },
  225. "goat": {
  226. name: "Goat",
  227. parents: [
  228. "mammal"
  229. ]
  230. },
  231. "lion": {
  232. name: "Lion",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "harpy-eager": {
  238. name: "Harpy Eagle",
  239. parents: [
  240. "avian"
  241. ]
  242. },
  243. "deer": {
  244. name: "Deer",
  245. parents: [
  246. "mammal"
  247. ]
  248. },
  249. "phoenix": {
  250. name: "Phoenix",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "aeromorph": {
  256. name: "Aeromorph",
  257. parents: [
  258. "machine"
  259. ]
  260. },
  261. "machine": {
  262. name: "Machine",
  263. },
  264. "android": {
  265. name: "Android",
  266. parents: [
  267. "machine"
  268. ]
  269. },
  270. "jackal": {
  271. name: "Jackal",
  272. parents: [
  273. "canine"
  274. ]
  275. },
  276. "corvid": {
  277. name: "Corvid",
  278. parents: [
  279. "avian"
  280. ]
  281. },
  282. "pharaoh-hound": {
  283. name: "Pharaoh Hound",
  284. parents: [
  285. "dog"
  286. ]
  287. },
  288. "skunk": {
  289. name: "Skunk",
  290. parents: [
  291. "mammal"
  292. ]
  293. },
  294. "shark": {
  295. name: "Shark",
  296. parents: [
  297. "fish"
  298. ]
  299. },
  300. "black-panther": {
  301. name: "Black Panther",
  302. parents: [
  303. "cat"
  304. ]
  305. },
  306. "umbra": {
  307. name: "Umbra",
  308. parents: [
  309. "animal"
  310. ]
  311. },
  312. "raven": {
  313. name: "Raven",
  314. parents: [
  315. "corvid"
  316. ]
  317. },
  318. "snow-leopard": {
  319. name: "Snow Leopard",
  320. parents: [
  321. "cat"
  322. ]
  323. },
  324. "barbary-lion": {
  325. name: "Barbary Lion",
  326. parents: [
  327. "lion"
  328. ]
  329. },
  330. "dra'gal": {
  331. name: "Dra'Gal",
  332. parents: [
  333. "mammal"
  334. ]
  335. },
  336. "german-shepherd": {
  337. name: "German Shepherd",
  338. parents: [
  339. "dog"
  340. ]
  341. },
  342. "bayleef": {
  343. name: "Bayleef",
  344. parents: [
  345. "pokemon"
  346. ]
  347. },
  348. "mouse": {
  349. name: "Mouse",
  350. parents: [
  351. "rodent"
  352. ]
  353. },
  354. "rat": {
  355. name: "Rat",
  356. parents: [
  357. "mammal"
  358. ]
  359. },
  360. "hoshiko-beast": {
  361. name: "Hoshiko Beast",
  362. parents: ["animal"]
  363. },
  364. "snow-jugani": {
  365. name: "Snow Jugani",
  366. parents: ["cat"]
  367. },
  368. "patamon": {
  369. name: "Patamon",
  370. parents: ["digimon"]
  371. },
  372. "digimon": {
  373. name: "Digimon",
  374. },
  375. "jugani": {
  376. name: "Jugani",
  377. parents: ["cat"]
  378. },
  379. "luxray": {
  380. name: "Luxray",
  381. parents: ["pokemon"]
  382. },
  383. "mech": {
  384. name: "Mech",
  385. parents: ["machine"]
  386. },
  387. "zoid": {
  388. name: "Zoid",
  389. parents: ["mech"]
  390. },
  391. "monster": {
  392. name: "Monster",
  393. parents: ["animal"]
  394. },
  395. "foo-dog": {
  396. name: "Foo Dog",
  397. parents: ["mammal"]
  398. },
  399. "elephant": {
  400. name: "Elephant",
  401. parents: ["mammal"]
  402. },
  403. "eagle": {
  404. name: "Eagle",
  405. parents: ["avian"]
  406. },
  407. "cow": {
  408. name: "Cow",
  409. parents: ["mammal"]
  410. },
  411. "crocodile": {
  412. name: "Crocodile",
  413. parents: ["reptile"]
  414. },
  415. "borzoi": {
  416. name: "Borzoi",
  417. parents: ["dog"]
  418. },
  419. "snake": {
  420. name: "Snake",
  421. parents: ["reptile"]
  422. },
  423. "horned-bush-viper": {
  424. name: "Horned Bush Viper",
  425. parents: ["snake"]
  426. },
  427. "cobra": {
  428. name: "Cobra",
  429. parents: ["snake"]
  430. },
  431. "harpy-eagle": {
  432. name: "Harpy Eagle",
  433. parents: ["eagle"]
  434. },
  435. "raptor": {
  436. name: "Raptor",
  437. parents: ["dinosaur"]
  438. },
  439. "dinosaur": {
  440. name: "Dinosaur",
  441. parents: ["reptile"]
  442. },
  443. "veilhound": {
  444. name: "Veilhound",
  445. parents: ["hellhound", "demon"]
  446. },
  447. "hellhound": {
  448. name: "Hellhound",
  449. parents: ["canine"]
  450. },
  451. "insect": {
  452. name: "Insect",
  453. parents: ["animal"]
  454. },
  455. "beetle": {
  456. name: "Beetle",
  457. parents: ["insect"]
  458. },
  459. "moth": {
  460. name: "Moth",
  461. parents: ["insect"]
  462. },
  463. "eastern-dragon": {
  464. name: "Eastern Dragon",
  465. parents: ["dragon"]
  466. },
  467. "jaguar": {
  468. name: "Jaguar",
  469. parents: ["cat"]
  470. },
  471. "horse": {
  472. name: "Horse",
  473. parents: ["mammal"]
  474. },
  475. "sergal": {
  476. name: "Sergal",
  477. parents: ["mammal"]
  478. },
  479. "gryphon": {
  480. name: "Gryphon",
  481. parents: ["lion", "eagle"]
  482. },
  483. "robot": {
  484. name: "Robot",
  485. parents: ["machine"]
  486. },
  487. "medihound": {
  488. name: "Medihound",
  489. parents: ["robot", "dog"]
  490. },
  491. "sylveon": {
  492. name: "Sylveon",
  493. parents: ["pokemon"]
  494. },
  495. "catgirl": {
  496. name: "Catgirl",
  497. parents: ["mammal"]
  498. },
  499. "cowgirl": {
  500. name: "Cowgirl",
  501. parents: ["mammal"]
  502. },
  503. "pony": {
  504. name: "Pony",
  505. parents: ["horse"]
  506. },
  507. "rabbit": {
  508. name: "Rabbit",
  509. parents: ["mammal"]
  510. },
  511. "fennec-fox": {
  512. name: "Fennec Fox",
  513. parents: ["fox"]
  514. },
  515. "azodian": {
  516. name: "Azodian",
  517. parents: ["mouse"]
  518. },
  519. "shiba-inu": {
  520. name: "Shiba Inu",
  521. parents: ["dog"]
  522. },
  523. "changeling": {
  524. name: "Changeling",
  525. parents: ["insect"]
  526. },
  527. "cheetah": {
  528. name: "Cheetah",
  529. parents: ["cat"]
  530. },
  531. "golden-jackal": {
  532. name: "Golden Jackal",
  533. parents: ["jackal"]
  534. },
  535. "manectric": {
  536. name: "Manectric",
  537. parents: ["pokemon"]
  538. },
  539. "rat": {
  540. name: "Rat",
  541. parents: ["rodent"]
  542. },
  543. "rodent": {
  544. name: "Rodent",
  545. parents: ["mammal"]
  546. },
  547. "octocoon": {
  548. name: "Octocoon",
  549. parents: ["raccoon", "octopus"]
  550. },
  551. "octopus": {
  552. name: "Octopus",
  553. parents: ["fish"]
  554. },
  555. "werewolf": {
  556. name: "Werewolf",
  557. parents: ["wolf"]
  558. },
  559. "meerkat": {
  560. name: "Meerkat",
  561. parents: ["mammal"]
  562. },
  563. "human": {
  564. name: "Human",
  565. parents: ["mammal"]
  566. },
  567. "geth": {
  568. name: "Geth",
  569. parents: ["android"]
  570. },
  571. "husky": {
  572. name: "Husky",
  573. parents: ["dog"]
  574. },
  575. "long-eared-bat": {
  576. name: "Long Eared Bat",
  577. parents: ["bat"]
  578. },
  579. "lizard": {
  580. name: "Lizard",
  581. parents: ["reptile"]
  582. },
  583. "salamander": {
  584. name: "Salamander",
  585. parents: ["lizard"]
  586. },
  587. "chameleon": {
  588. name: "Chameleon",
  589. parents: ["lizard"]
  590. },
  591. "gecko": {
  592. name: "Gecko",
  593. parents: ["lizard"]
  594. },
  595. "kobold": {
  596. name: "Kobold",
  597. parents: ["reptile"]
  598. },
  599. "charizard": {
  600. name: "Charizard",
  601. parents: ["pokemon"]
  602. },
  603. "lugia": {
  604. name: "Lugia",
  605. parents: ["pokemon"]
  606. },
  607. "cerberus": {
  608. name: "Cerberus",
  609. parents: ["dog"]
  610. },
  611. "tyrantrum": {
  612. name: "Tyrantrum",
  613. parents: ["pokemon"]
  614. },
  615. "lemur": {
  616. name: "Lemur",
  617. parents: ["mammal"]
  618. },
  619. "kelpie": {
  620. name: "Kelpie",
  621. parents: ["horse", "monster"]
  622. },
  623. "labrador": {
  624. name: "Labrador",
  625. parents: ["dog"]
  626. },
  627. "sylveon": {
  628. name: "Sylveon",
  629. parents: ["eeveelution"]
  630. },
  631. "eeveelution": {
  632. name: "Eeveelution",
  633. parents: ["pokemon"]
  634. },
  635. "polar-bear": {
  636. name: "Polar Bear",
  637. parents: ["bear"]
  638. },
  639. "bear": {
  640. name: "Bear",
  641. parents: ["mammal"]
  642. },
  643. "absol": {
  644. name: "Absol",
  645. parents: ["pokemon"]
  646. },
  647. "wolver": {
  648. name: "Wolver",
  649. parents: ["mammal"]
  650. },
  651. "rottweiler": {
  652. name: "Rottweiler",
  653. parents: ["dog"]
  654. },
  655. "zebra": {
  656. name: "Zebra",
  657. parents: ["horse"]
  658. },
  659. "yoshi": {
  660. name: "Yoshi",
  661. parents: ["lizard"]
  662. },
  663. "lynx": {
  664. name: "Lynx",
  665. parents: ["cat"]
  666. },
  667. "unknown": {
  668. name: "Unknown",
  669. parents: []
  670. },
  671. "thylacine": {
  672. name: "Thylacine",
  673. parents: ["mammal"]
  674. },
  675. "gabumon": {
  676. name: "Gabumon",
  677. parents: ["digimon"]
  678. },
  679. "border-collie": {
  680. name: "Border Collie",
  681. parents: ["dog"]
  682. },
  683. "imp": {
  684. name: "Imp",
  685. parents: ["demon"]
  686. },
  687. "kangaroo": {
  688. name: "Kangaroo",
  689. parents: ["mammal"]
  690. },
  691. "renamon": {
  692. name: "Renamon",
  693. parents: ["digimon"]
  694. },
  695. "candy-orca-dragon": {
  696. name: "Candy Orca Dragon",
  697. parents: ["fish", "dragon", "candy"]
  698. },
  699. "sabertooth-tiger": {
  700. name: "Sabertooth Tiger",
  701. parents: ["cat"]
  702. },
  703. "espurr": {
  704. name: "Espurr",
  705. parents: ["pokemon"]
  706. },
  707. "otter": {
  708. name: "Otter",
  709. parents: ["mammal"]
  710. },
  711. "elemental": {
  712. name: "Elemental",
  713. parents: ["mammal"]
  714. },
  715. "mew": {
  716. name: "Mew",
  717. parents: ["pokemon"]
  718. },
  719. "goodra": {
  720. name: "Goodra",
  721. parents: ["pokemon"]
  722. },
  723. "fairy": {
  724. name: "Fairy",
  725. parents: ["magical"]
  726. },
  727. "typhlosion": {
  728. name: "Typhlosion",
  729. parents: ["pokemon"]
  730. },
  731. "magical": {
  732. name: "Magical",
  733. parents: []
  734. },
  735. "xenomorph": {
  736. name: "Xenomorph",
  737. parents: ["monster", "alien"]
  738. },
  739. "charr": {
  740. name: "Charr",
  741. parents: ["cat"]
  742. },
  743. "siberian-husky": {
  744. name: "Siberian Husky",
  745. parents: ["husky"]
  746. },
  747. "alligator": {
  748. name: "Alligator",
  749. parents: ["reptile"]
  750. },
  751. "bernese-mountain-dog": {
  752. name: "Bernese Mountain Dog",
  753. parents: ["dog"]
  754. },
  755. "reshiram": {
  756. name: "Reshiram",
  757. parents: ["pokemon"]
  758. },
  759. "grizzly-bear": {
  760. name: "Grizzly Bear",
  761. parents: ["bear"]
  762. },
  763. "water-monitor": {
  764. name: "Water Monitor",
  765. parents: ["lizard"]
  766. },
  767. "banchofossa": {
  768. name: "Banchofossa",
  769. parents: ["mammal"]
  770. },
  771. "kirin": {
  772. name: "Kirin",
  773. parents: ["monster"]
  774. },
  775. "quilava": {
  776. name: "Quilava",
  777. parents: ["pokemon"]
  778. },
  779. "seviper": {
  780. name: "Seviper",
  781. parents: ["pokemon"]
  782. },
  783. "flying-fox": {
  784. name: "Flying Fox",
  785. parents: ["bat"]
  786. },
  787. "keynain": {
  788. name: "Keynain",
  789. parents: ["avian"]
  790. },
  791. "lucario": {
  792. name: "Lucario",
  793. parents: ["pokemon"]
  794. },
  795. "siamese-cat": {
  796. name: "Siamese Cat",
  797. parents: ["cat"]
  798. },
  799. "spider": {
  800. name: "Spider",
  801. parents: ["insect"]
  802. },
  803. "samurott": {
  804. name: "Samurott",
  805. parents: ["pokemon"]
  806. },
  807. "megalodon": {
  808. name: "Megalodon",
  809. parents: ["shark"]
  810. },
  811. "unicorn": {
  812. name: "Unicorn",
  813. parents: ["horse"]
  814. },
  815. "greninja": {
  816. name: "Greninja",
  817. parents: ["pokemon"]
  818. },
  819. "water-dragon": {
  820. name: "Water Dragon",
  821. parents: ["dragon"]
  822. },
  823. "cross-fox": {
  824. name: "Cross Fox",
  825. parents: ["fox"]
  826. },
  827. "synth": {
  828. name: "Synth",
  829. parents: ["machine"]
  830. },
  831. "construct": {
  832. name: "Construct",
  833. parents: []
  834. },
  835. "mexican-wolf": {
  836. name: "Mexican Wolf",
  837. parents: ["wolf"]
  838. },
  839. "leopard": {
  840. name: "Leopard",
  841. parents: ["cat"]
  842. },
  843. "pig": {
  844. name: "Pig",
  845. parents: ["mammal"]
  846. },
  847. "ampharos": {
  848. name: "Ampharos",
  849. parents: ["pokemon"]
  850. },
  851. "orca": {
  852. name: "Orca",
  853. parents: ["fish"]
  854. },
  855. "lycanroc": {
  856. name: "Lycanroc",
  857. parents: ["pokemon"]
  858. },
  859. "surkanu": {
  860. name: "Surkanu",
  861. parents: ["monster"]
  862. },
  863. "seal": {
  864. name: "Seal",
  865. parents: ["mammal"]
  866. },
  867. "keldeo": {
  868. name: "Keldeo",
  869. parents: ["pokemon"]
  870. },
  871. "great-dane": {
  872. name: "Great Dane",
  873. parents: ["dog"]
  874. },
  875. "black-backed-jackal": {
  876. name: "Black Backed Jackal",
  877. parents: ["jackal"]
  878. },
  879. "sheep": {
  880. name: "Sheep",
  881. parents: ["mammal"]
  882. },
  883. "leopard-seal": {
  884. name: "Leopard Seal",
  885. parents: ["seal"]
  886. },
  887. "zoroark": {
  888. name: "Zoroark",
  889. parents: ["pokemon"]
  890. },
  891. "maned-wolf": {
  892. name: "Maned Wolf",
  893. parents: ["canine"]
  894. },
  895. "dracha": {
  896. name: "Dracha",
  897. parents: ["dragon"]
  898. },
  899. "wolxi": {
  900. name: "Wolxi",
  901. parents: ["mammal", "alien"]
  902. },
  903. "dratini": {
  904. name: "Dratini",
  905. parents: ["pokemon", "dragon"]
  906. },
  907. "skaven": {
  908. name: "Skaven",
  909. parents: ["rat"]
  910. },
  911. "mongoose": {
  912. name: "Mongoose",
  913. parents: ["mammal"]
  914. },
  915. "lopunny": {
  916. name: "Lopunny",
  917. parents: ["pokemon", "rabbit"]
  918. },
  919. "feraligatr": {
  920. name: "Feraligatr",
  921. parents: ["pokemon", "alligator"]
  922. },
  923. "houndoom": {
  924. name: "Houndoom",
  925. parents: ["pokemon", "dog"]
  926. },
  927. "protogen": {
  928. name: "Protogen",
  929. parents: ["machine"]
  930. },
  931. "saint-bernard": {
  932. name: "Saint Bernard",
  933. parents: ["dog"]
  934. },
  935. "crow": {
  936. name: "Crow",
  937. parents: ["corvid"]
  938. },
  939. "delphox": {
  940. name: "Delphox",
  941. parents: ["pokemon", "fox"]
  942. },
  943. "moose": {
  944. name: "Moose",
  945. parents: ["mammal"]
  946. },
  947. "joraxian": {
  948. name: "Joraxian",
  949. parents: ["monster", "canine", "demon"]
  950. },
  951. "nimbat": {
  952. name: "Nimbat",
  953. parents: ["mammal"]
  954. },
  955. "aardwolf": {
  956. name: "Aardwolf",
  957. parents: ["canine"]
  958. },
  959. "fluudrani": {
  960. name: "Fluudrani",
  961. parents: ["animal"]
  962. },
  963. "arcanine": {
  964. name: "Arcanine",
  965. parents: ["pokemon", "dog"]
  966. },
  967. "inteleon": {
  968. name: "Inteleon",
  969. parents: ["pokemon", "fish"]
  970. },
  971. "ninetales": {
  972. name: "Ninetales",
  973. parents: ["pokemon", "kitsune"]
  974. },
  975. "tigrex": {
  976. name: "Tigrex",
  977. parents: ["tiger"]
  978. },
  979. "zorua": {
  980. name: "Zorua",
  981. parents: ["pokemon", "fox"]
  982. },
  983. "vulpix": {
  984. name: "Vulpix",
  985. parents: ["pokemon", "fox"]
  986. },
  987. "barghest": {
  988. name: "Barghest",
  989. parents: ["monster"]
  990. },
  991. "gray-wolf": {
  992. name: "Gray Wolf",
  993. parents: ["wolf"]
  994. },
  995. "ruppells-fox": {
  996. name: "Rüppell's Fox",
  997. parents: ["fox"]
  998. },
  999. "bull-terrier": {
  1000. name: "Bull Terrier",
  1001. parents: ["dog"]
  1002. },
  1003. "european-honey-buzzard": {
  1004. name: "European Honey Buzzard",
  1005. parents: ["avian"]
  1006. },
  1007. "t-rex": {
  1008. name: "T Rex",
  1009. parents: ["dinosaur"]
  1010. },
  1011. "mactarian": {
  1012. name: "Mactarian",
  1013. parents: ["shark", "monster"]
  1014. },
  1015. "mewtwo-y": {
  1016. name: "Mewtwo Y",
  1017. parents: ["mewtwo"]
  1018. },
  1019. "mewtwo": {
  1020. name: "Mewtwo",
  1021. parents: ["pokemon"]
  1022. },
  1023. "mew": {
  1024. name: "Mew",
  1025. parents: ["pokemon"]
  1026. },
  1027. "eevee": {
  1028. name: "Eevee",
  1029. parents: ["eeveelution"]
  1030. },
  1031. "mienshao": {
  1032. name: "Mienshao",
  1033. parents: ["pokemon"]
  1034. },
  1035. "sugar-glider": {
  1036. name: "Sugar Glider",
  1037. parents: ["opossum"]
  1038. },
  1039. "spectral-bat": {
  1040. name: "Spectral Bat",
  1041. parents: ["bat"]
  1042. },
  1043. "scolipede": {
  1044. name: "Scolipede",
  1045. parents: ["pokemon", "insect"]
  1046. },
  1047. "jackalope": {
  1048. name: "Jackalope",
  1049. parents: ["rabbit", "antelope"]
  1050. },
  1051. "caracal": {
  1052. name: "Caracal",
  1053. parents: ["cat"]
  1054. },
  1055. "stoat": {
  1056. name: "Stoat",
  1057. parents: ["mammal"]
  1058. },
  1059. "african-golden-cat": {
  1060. name: "African Golden Cat",
  1061. parents: ["cat"]
  1062. },
  1063. "gigantosaurus": {
  1064. name: "Gigantosaurus",
  1065. parents: ["dinosaur"]
  1066. },
  1067. "zorgoia": {
  1068. name: "Zorgoia",
  1069. parents: ["mammal"]
  1070. },
  1071. "monitor-lizard": {
  1072. name: "Monitor Lizard",
  1073. parents: ["lizard"]
  1074. },
  1075. "ziralkia": {
  1076. name: "Ziralkia",
  1077. parents: ["mammal"]
  1078. },
  1079. "kiiasi": {
  1080. name: "Kiiasi",
  1081. parents: ["animal"]
  1082. },
  1083. "synx": {
  1084. name: "Synx",
  1085. parents: ["monster"]
  1086. },
  1087. "panther": {
  1088. name: "Panther",
  1089. parents: ["cat"]
  1090. },
  1091. "azumarill": {
  1092. name: "Azumarill",
  1093. parents: ["pokemon"]
  1094. },
  1095. "river-snaptail": {
  1096. name: "River Snaptail",
  1097. parents: ["otter", "crocodile"]
  1098. },
  1099. "great-blue-heron": {
  1100. name: "Great Blue Heron",
  1101. parents: ["avian"]
  1102. },
  1103. "smeargle": {
  1104. name: "Smeargle",
  1105. parents: ["pokemon"]
  1106. },
  1107. "vendeilen": {
  1108. name: "Vendeilen",
  1109. parents: ["monster"]
  1110. },
  1111. "ventura": {
  1112. name: "Ventura",
  1113. parents: ["canine"]
  1114. },
  1115. "clouded-leopard": {
  1116. name: "Clouded Leopard",
  1117. parents: ["leopard"]
  1118. },
  1119. "argonian": {
  1120. name: "Argonian",
  1121. parents: ["lizard"]
  1122. },
  1123. "salazzle": {
  1124. name: "Salazzle",
  1125. parents: ["pokemon", "lizard"]
  1126. },
  1127. "je-stoff-drachen": {
  1128. name: "Je-Stoff Drachen",
  1129. parents: ["dragon"]
  1130. },
  1131. "finnish-spitz-dog": {
  1132. name: "Finnish Spitz Dog",
  1133. parents: ["dog"]
  1134. },
  1135. "gray-fox": {
  1136. name: "Gray Fox",
  1137. parents: ["fox"]
  1138. },
  1139. "opossum": {
  1140. name: "opossum",
  1141. parents: ["mammal"]
  1142. },
  1143. "antelope": {
  1144. name: "Antelope",
  1145. parents: ["mammal"]
  1146. },
  1147. "weavile": {
  1148. name: "Weavile",
  1149. parents: ["pokemon"]
  1150. },
  1151. "pikachu": {
  1152. name: "Pikachu",
  1153. parents: ["pokemon", "mouse"]
  1154. },
  1155. "grovyle": {
  1156. name: "Grovyle",
  1157. parents: ["pokemon", "plant"]
  1158. },
  1159. "sthara": {
  1160. name: "Sthara",
  1161. parents: ["snow-leopard", "reptile"]
  1162. },
  1163. "star-warrior": {
  1164. name: "Star Warrior",
  1165. parents: ["magical"]
  1166. },
  1167. "dragonoid": {
  1168. name: "Dragonoid",
  1169. parents: ["dragon"]
  1170. },
  1171. "suicune": {
  1172. name: "Suicune",
  1173. parents: ["pokemon"]
  1174. },
  1175. "vole": {
  1176. name: "Vole",
  1177. parents: ["mammal"]
  1178. },
  1179. "blaziken": {
  1180. name: "Blaziken",
  1181. parents: ["pokemon", "avian"]
  1182. },
  1183. "buizel": {
  1184. name: "Buizel",
  1185. parents: ["pokemon", "fish"]
  1186. },
  1187. "floatzel": {
  1188. name: "Floatzel",
  1189. parents: ["pokemon", "fish"]
  1190. },
  1191. "umok": {
  1192. name: "Umok",
  1193. parents: ["avian"]
  1194. },
  1195. "sea-monster": {
  1196. name: "Sea Monster",
  1197. parents: ["monster", "fish"]
  1198. },
  1199. "egyptian-vulture": {
  1200. name: "Egyptian Vulture",
  1201. parents: ["avian"]
  1202. },
  1203. "doberman": {
  1204. name: "Doberman",
  1205. parents: ["dog"]
  1206. },
  1207. "zangoose": {
  1208. name: "Zangoose",
  1209. parents: ["pokemon", "mongoose"]
  1210. },
  1211. "mongoose": {
  1212. name: "Mongoose",
  1213. parents: ["mammal"]
  1214. },
  1215. "wickerbeast": {
  1216. name: "Wickerbeast",
  1217. parents: ["monster"]
  1218. },
  1219. "zenari": {
  1220. name: "Zenari",
  1221. parents: ["lizard"]
  1222. },
  1223. "plant": {
  1224. name: "Plant",
  1225. parents: []
  1226. },
  1227. "raskatox": {
  1228. name: "Raskatox",
  1229. parents: ["raccoon", "skunk", "cat", "fox"]
  1230. },
  1231. "mikromare": {
  1232. name: "mikromare",
  1233. parents: ["alien"]
  1234. },
  1235. "alien": {
  1236. name: "Alien",
  1237. parents: ["animal"]
  1238. },
  1239. "deity": {
  1240. name: "Deity",
  1241. parents: []
  1242. },
  1243. "skarlan": {
  1244. name: "Skarlan",
  1245. parents: ["slug", "dragon"]
  1246. },
  1247. "slug": {
  1248. name: "Slug",
  1249. parents: ["mollusk"]
  1250. },
  1251. "mollusk": {
  1252. name: "Mollusk",
  1253. parents: ["animal"]
  1254. },
  1255. "chimera": {
  1256. name: "Chimera",
  1257. parents: ["monster"]
  1258. },
  1259. "gestalt": {
  1260. name: "Gestalt",
  1261. parents: ["construct"]
  1262. },
  1263. "mimic": {
  1264. name: "Mimic",
  1265. parents: ["monster"]
  1266. },
  1267. "calico-rat": {
  1268. name: "Calico Rat",
  1269. parents: ["rat"]
  1270. },
  1271. "panda": {
  1272. name: "Panda",
  1273. parents: ["mammal"]
  1274. },
  1275. "oni": {
  1276. name: "Oni",
  1277. parents: ["monster"]
  1278. },
  1279. "pegasus": {
  1280. name: "Pegasus",
  1281. parents: ["horse"]
  1282. },
  1283. "vulpera": {
  1284. name: "Vulpera",
  1285. parents: ["fennec-fox"]
  1286. },
  1287. "ceratosaurus": {
  1288. name: "Ceratosaurus",
  1289. parents: ["dinosaur"]
  1290. },
  1291. "nykur": {
  1292. name: "Nykur",
  1293. parents: ["horse", "monster"]
  1294. },
  1295. "giraffe": {
  1296. name: "Giraffe",
  1297. parents: ["mammal"]
  1298. },
  1299. "tauren": {
  1300. name: "Tauren",
  1301. parents: ["cow"]
  1302. },
  1303. "draconi": {
  1304. name: "Draconi",
  1305. parents: ["alien", "cat", "cyborg"]
  1306. },
  1307. "dire-wolf": {
  1308. name: "Dire Wolf",
  1309. parents: ["wolf"]
  1310. },
  1311. "ferromorph": {
  1312. name: "Ferromorph",
  1313. parents: ["construct"]
  1314. },
  1315. "meowth": {
  1316. name: "Meowth",
  1317. parents: ["cat", "pokemon"]
  1318. },
  1319. "pavodragon": {
  1320. name: "Pavodragon",
  1321. parents: ["dragon"]
  1322. },
  1323. "aaltranae": {
  1324. name: "Aaltranae",
  1325. parents: ["dragon"]
  1326. },
  1327. "cyborg": {
  1328. name: "Cyborg",
  1329. parents: ["machine"]
  1330. },
  1331. "draptor": {
  1332. name: "Draptor",
  1333. parents: ["dragon"]
  1334. },
  1335. "candy": {
  1336. name: "Candy",
  1337. parents: []
  1338. },
  1339. "drenath": {
  1340. name: "Drenath",
  1341. parents: ["dragon", "snake", "rabbit"]
  1342. },
  1343. "coyju": {
  1344. name: "Coyju",
  1345. parents: ["coyote", "kaiju"]
  1346. },
  1347. "kaiju": {
  1348. name: "Kaiju",
  1349. parents: ["monster"]
  1350. },
  1351. "nickit": {
  1352. name: "Nickit",
  1353. parents: ["pokemon", "cat"]
  1354. },
  1355. "lopunny": {
  1356. name: "Lopunny",
  1357. parents: ["pokemon", "rabbit"]
  1358. },
  1359. "korean-jindo-dog": {
  1360. name: "Korean Jindo Dog",
  1361. parents: ["dog"]
  1362. },
  1363. "naga": {
  1364. name: "Naga",
  1365. parents: ["snake", "monster"]
  1366. },
  1367. "undead": {
  1368. name: "Undead",
  1369. parents: ["monster"]
  1370. },
  1371. "whale": {
  1372. name: "Whale",
  1373. parents: ["fish"]
  1374. },
  1375. "gelato-bee": {
  1376. name: "Gelato Bee",
  1377. parents: ["bee"]
  1378. },
  1379. "bee": {
  1380. name: "Bee",
  1381. parents: ["insect"]
  1382. },
  1383. "gardevoir": {
  1384. name: "Gardevoir",
  1385. parents: ["pokemon"]
  1386. },
  1387. "ant": {
  1388. name: "Ant",
  1389. parents: ["insect"]
  1390. },
  1391. "frog": {
  1392. name: "Frog",
  1393. parents: ["amphibian"]
  1394. },
  1395. "amphibian": {
  1396. name: "Amphibian",
  1397. parents: ["animal"]
  1398. },
  1399. "pangolin": {
  1400. name: "Pangolin",
  1401. parents: ["mammal"]
  1402. },
  1403. "uragi'viidorn": {
  1404. name: "Uragi'viidorn",
  1405. parents: ["avian", "bear"]
  1406. },
  1407. "gryphdelphais": {
  1408. name: "Gryphdelphais",
  1409. parents: ["dolphin", "gryphon"]
  1410. },
  1411. "plush": {
  1412. name: "Plush",
  1413. parents: ["construct"]
  1414. },
  1415. "draiger": {
  1416. name: "Draiger",
  1417. parents: ["dragon","tiger"]
  1418. },
  1419. "foxsky": {
  1420. name: "Foxsky",
  1421. parents: ["fox", "husky"]
  1422. },
  1423. "umbreon": {
  1424. name: "Umbreon",
  1425. parents: ["eeveelution"]
  1426. },
  1427. "slime-dragon": {
  1428. name: "Slime Dragon",
  1429. parents: ["dragon"]
  1430. },
  1431. "enderman": {
  1432. name: "Enderman",
  1433. parents: ["monster"]
  1434. },
  1435. "gremlin": {
  1436. name: "Gremlin",
  1437. parents: ["monster"]
  1438. },
  1439. "dragonsune": {
  1440. name: "Dragonsune",
  1441. parents: ["dragon", "kitsune"]
  1442. },
  1443. "ghost": {
  1444. name: "Ghost",
  1445. parents: ["monster"]
  1446. },
  1447. "false-vampire-bat": {
  1448. name: "False Vampire Bat",
  1449. parents: ["bat"]
  1450. },
  1451. "succubus": {
  1452. name: "Succubus",
  1453. parents: ["demon"]
  1454. },
  1455. "mia": {
  1456. name: "Mia",
  1457. parents: ["canine"]
  1458. },
  1459. "rainbow": {
  1460. name: "Rainbow",
  1461. parents: ["monster"]
  1462. },
  1463. "solgaleo": {
  1464. name: "Solgaleo",
  1465. parents: ["pokemon"]
  1466. },
  1467. "lucent-nargacuga": {
  1468. name: "Lucent Nargacuga",
  1469. parents: ["monster-hunter"]
  1470. },
  1471. "monster-hunter": {
  1472. name: "Monster Hunter",
  1473. parents: ["monster"]
  1474. },
  1475. "leviathan": {
  1476. "name": "Leviathan",
  1477. "url": "sea-monster"
  1478. },
  1479. "bull": {
  1480. name: "Bull",
  1481. parents: ["mammal"]
  1482. },
  1483. "tanuki": {
  1484. name: "Tanuki",
  1485. parents: ["monster"]
  1486. },
  1487. "chakat": {
  1488. name: "Chakat",
  1489. parents: ["cat"]
  1490. },
  1491. "hydra": {
  1492. name: "Hydra",
  1493. parents: ["monster"]
  1494. },
  1495. "zigzagoon": {
  1496. name: "Zigzagoon",
  1497. parents: ["raccoon", "pokemon"]
  1498. },
  1499. "vulture": {
  1500. name: "Vulture",
  1501. parents: ["avian"]
  1502. },
  1503. "eastern-dragon": {
  1504. name: "Eastern Dragon",
  1505. parents: ["dragon"]
  1506. },
  1507. "gryffon": {
  1508. name: "Gryffon",
  1509. parents: ["phoenix", "red-panda"]
  1510. },
  1511. "amtsvane": {
  1512. name: "Amtsvane",
  1513. parents: ["reptile"]
  1514. },
  1515. "kigavi": {
  1516. name: "Kigavi",
  1517. parents: ["avian"]
  1518. },
  1519. "turian": {
  1520. name: "Turian",
  1521. parents: ["avian"]
  1522. },
  1523. "zeraora": {
  1524. name: "Zeraora",
  1525. parents: ["pokemon"]
  1526. },
  1527. "sandshrew": {
  1528. name: "Sandshrew",
  1529. parents: ["pokemon", "pangolin"]
  1530. },
  1531. "valais-blacknose-sheep": {
  1532. name: "Valais Blacknose Sheep",
  1533. parents: ["sheep"]
  1534. },
  1535. "novaleit": {
  1536. name: "Novaleit",
  1537. parents: ["mammal"]
  1538. },
  1539. "dunnoh": {
  1540. name: "Dunnoh",
  1541. parents: ["mammal"]
  1542. },
  1543. "lunaral-dragon": {
  1544. name: "Lunaral Dragon",
  1545. parents: ["dragon"]
  1546. },
  1547. "arctic-wolf": {
  1548. name: "Arctic Wolf",
  1549. parents: ["wolf"]
  1550. },
  1551. "donkey": {
  1552. name: "Donkey",
  1553. parents: ["horse"]
  1554. },
  1555. "chinchilla": {
  1556. name: "Chinchilla",
  1557. parents: ["rodent"]
  1558. },
  1559. "felkin": {
  1560. name: "Felkin",
  1561. parents: ["dragon"]
  1562. },
  1563. "tykeriel": {
  1564. name: "Tykeriel",
  1565. parents: ["avian"]
  1566. },
  1567. }
  1568. //species
  1569. function getSpeciesInfo(speciesList) {
  1570. let result = new Set();
  1571. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1572. result.add(entry)
  1573. });
  1574. return Array.from(result);
  1575. };
  1576. function getSpeciesInfoHelper(species) {
  1577. if (!speciesData[species]) {
  1578. console.warn(species + " doesn't exist");
  1579. return [];
  1580. }
  1581. if (speciesData[species].parents) {
  1582. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1583. } else {
  1584. return [species];
  1585. }
  1586. }
  1587. characterMakers.push(() => makeCharacter(
  1588. {
  1589. name: "Fen",
  1590. species: ["crux"],
  1591. description: {
  1592. title: "Bio",
  1593. text: "Very furry. Sheds on everything."
  1594. },
  1595. tags: [
  1596. "anthro",
  1597. "goo"
  1598. ]
  1599. },
  1600. {
  1601. back: {
  1602. height: math.unit(2.2428, "meter"),
  1603. weight: math.unit(124.738, "kg"),
  1604. name: "Back",
  1605. image: {
  1606. source: "./media/characters/fen/back.svg",
  1607. extra: 2024 / 1867,
  1608. bottom: 13 / 2037
  1609. },
  1610. info: {
  1611. description: {
  1612. mode: "append",
  1613. text: "\n\nHe is not currently looking at you."
  1614. }
  1615. }
  1616. },
  1617. full: {
  1618. height: math.unit(1.34, "meter"),
  1619. weight: math.unit(225, "kg"),
  1620. name: "Full",
  1621. image: {
  1622. source: "./media/characters/fen/full.svg"
  1623. },
  1624. info: {
  1625. description: {
  1626. mode: "append",
  1627. text: "\n\nMunch."
  1628. }
  1629. }
  1630. },
  1631. kneeling: {
  1632. height: math.unit(5.4, "feet"),
  1633. weight: math.unit(124.738, "kg"),
  1634. name: "Kneeling",
  1635. image: {
  1636. source: "./media/characters/fen/kneeling.svg",
  1637. extra: 563 / 507
  1638. }
  1639. },
  1640. goo: {
  1641. height: math.unit(2.8, "feet"),
  1642. weight: math.unit(125, "kg"),
  1643. capacity: math.unit(1, "people"),
  1644. name: "Goo",
  1645. image: {
  1646. source: "./media/characters/fen/goo.svg",
  1647. bottom: 116 / 613
  1648. }
  1649. },
  1650. lounging: {
  1651. height: math.unit(6.5, "feet"),
  1652. weight: math.unit(125, "kg"),
  1653. name: "Lounging",
  1654. image: {
  1655. source: "./media/characters/fen/lounging.svg"
  1656. }
  1657. },
  1658. },
  1659. [
  1660. {
  1661. name: "Normal",
  1662. height: math.unit(2.2428, "meter")
  1663. },
  1664. {
  1665. name: "Big",
  1666. height: math.unit(12, "feet")
  1667. },
  1668. {
  1669. name: "Minimacro",
  1670. height: math.unit(40, "feet"),
  1671. default: true,
  1672. info: {
  1673. description: {
  1674. mode: "append",
  1675. text: "\n\nTOO DAMN BIG"
  1676. }
  1677. }
  1678. },
  1679. {
  1680. name: "Macro",
  1681. height: math.unit(100, "feet"),
  1682. info: {
  1683. description: {
  1684. mode: "append",
  1685. text: "\n\nTOO DAMN BIG"
  1686. }
  1687. }
  1688. },
  1689. {
  1690. name: "Macro+",
  1691. height: math.unit(300, "feet")
  1692. },
  1693. {
  1694. name: "Megamacro",
  1695. height: math.unit(2, "miles")
  1696. }
  1697. ]
  1698. ))
  1699. characterMakers.push(() => makeCharacter(
  1700. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1701. {
  1702. front: {
  1703. height: math.unit(183, "cm"),
  1704. weight: math.unit(80, "kg"),
  1705. name: "Front",
  1706. image: {
  1707. source: "./media/characters/sofia-fluttertail/front.svg",
  1708. bottom: 0.01,
  1709. extra: 2154 / 2081
  1710. }
  1711. },
  1712. frontAlt: {
  1713. height: math.unit(183, "cm"),
  1714. weight: math.unit(80, "kg"),
  1715. name: "Front (alt)",
  1716. image: {
  1717. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1718. }
  1719. },
  1720. back: {
  1721. height: math.unit(183, "cm"),
  1722. weight: math.unit(80, "kg"),
  1723. name: "Back",
  1724. image: {
  1725. source: "./media/characters/sofia-fluttertail/back.svg"
  1726. }
  1727. },
  1728. kneeling: {
  1729. height: math.unit(125, "cm"),
  1730. weight: math.unit(80, "kg"),
  1731. name: "Kneeling",
  1732. image: {
  1733. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1734. extra: 1033 / 977,
  1735. bottom: 23.7 / 1057
  1736. }
  1737. },
  1738. maw: {
  1739. height: math.unit(183 / 5, "cm"),
  1740. name: "Maw",
  1741. image: {
  1742. source: "./media/characters/sofia-fluttertail/maw.svg"
  1743. }
  1744. },
  1745. mawcloseup: {
  1746. height: math.unit(183 / 5 * 0.41, "cm"),
  1747. name: "Maw (Closeup)",
  1748. image: {
  1749. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1750. }
  1751. },
  1752. paws: {
  1753. height: math.unit(1.17, "feet"),
  1754. name: "Paws",
  1755. image: {
  1756. source: "./media/characters/sofia-fluttertail/paws.svg",
  1757. extra: 851 / 851,
  1758. bottom: 17 / 868
  1759. }
  1760. },
  1761. },
  1762. [
  1763. {
  1764. name: "Normal",
  1765. height: math.unit(1.83, "meter")
  1766. },
  1767. {
  1768. name: "Size Thief",
  1769. height: math.unit(18, "feet")
  1770. },
  1771. {
  1772. name: "50 Foot Collie",
  1773. height: math.unit(50, "feet")
  1774. },
  1775. {
  1776. name: "Macro",
  1777. height: math.unit(96, "feet"),
  1778. default: true
  1779. },
  1780. {
  1781. name: "Megamerger",
  1782. height: math.unit(650, "feet")
  1783. },
  1784. ]
  1785. ))
  1786. characterMakers.push(() => makeCharacter(
  1787. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1788. {
  1789. front: {
  1790. height: math.unit(7, "feet"),
  1791. weight: math.unit(100, "kg"),
  1792. name: "Front",
  1793. image: {
  1794. source: "./media/characters/march/front.svg",
  1795. extra: 1,
  1796. bottom: 0.015
  1797. }
  1798. },
  1799. foot: {
  1800. height: math.unit(0.9, "feet"),
  1801. name: "Foot",
  1802. image: {
  1803. source: "./media/characters/march/foot.svg"
  1804. }
  1805. },
  1806. },
  1807. [
  1808. {
  1809. name: "Normal",
  1810. height: math.unit(7.9, "feet")
  1811. },
  1812. {
  1813. name: "Macro",
  1814. height: math.unit(220, "meters")
  1815. },
  1816. {
  1817. name: "Megamacro",
  1818. height: math.unit(2.98, "km"),
  1819. default: true
  1820. },
  1821. {
  1822. name: "Gigamacro",
  1823. height: math.unit(15963, "km")
  1824. },
  1825. {
  1826. name: "Teramacro",
  1827. height: math.unit(2980000000, "km")
  1828. },
  1829. {
  1830. name: "Examacro",
  1831. height: math.unit(250, "parsecs")
  1832. },
  1833. ]
  1834. ))
  1835. characterMakers.push(() => makeCharacter(
  1836. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1837. {
  1838. front: {
  1839. height: math.unit(6, "feet"),
  1840. weight: math.unit(60, "kg"),
  1841. name: "Front",
  1842. image: {
  1843. source: "./media/characters/noir/front.svg",
  1844. extra: 1,
  1845. bottom: 0.032
  1846. }
  1847. },
  1848. },
  1849. [
  1850. {
  1851. name: "Normal",
  1852. height: math.unit(6.6, "feet")
  1853. },
  1854. {
  1855. name: "Macro",
  1856. height: math.unit(500, "feet")
  1857. },
  1858. {
  1859. name: "Megamacro",
  1860. height: math.unit(2.5, "km"),
  1861. default: true
  1862. },
  1863. {
  1864. name: "Gigamacro",
  1865. height: math.unit(22500, "km")
  1866. },
  1867. {
  1868. name: "Teramacro",
  1869. height: math.unit(2500000000, "km")
  1870. },
  1871. {
  1872. name: "Examacro",
  1873. height: math.unit(200, "parsecs")
  1874. },
  1875. ]
  1876. ))
  1877. characterMakers.push(() => makeCharacter(
  1878. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1879. {
  1880. front: {
  1881. height: math.unit(7, "feet"),
  1882. weight: math.unit(100, "kg"),
  1883. name: "Front",
  1884. image: {
  1885. source: "./media/characters/okuri/front.svg",
  1886. extra: 1,
  1887. bottom: 0.037
  1888. }
  1889. },
  1890. back: {
  1891. height: math.unit(7, "feet"),
  1892. weight: math.unit(100, "kg"),
  1893. name: "Back",
  1894. image: {
  1895. source: "./media/characters/okuri/back.svg",
  1896. extra: 1,
  1897. bottom: 0.007
  1898. }
  1899. },
  1900. },
  1901. [
  1902. {
  1903. name: "Megamacro",
  1904. height: math.unit(100, "miles"),
  1905. default: true
  1906. },
  1907. ]
  1908. ))
  1909. characterMakers.push(() => makeCharacter(
  1910. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1911. {
  1912. front: {
  1913. height: math.unit(7, "feet"),
  1914. weight: math.unit(100, "kg"),
  1915. name: "Front",
  1916. image: {
  1917. source: "./media/characters/manny/front.svg",
  1918. extra: 1,
  1919. bottom: 0.06
  1920. }
  1921. },
  1922. back: {
  1923. height: math.unit(7, "feet"),
  1924. weight: math.unit(100, "kg"),
  1925. name: "Back",
  1926. image: {
  1927. source: "./media/characters/manny/back.svg",
  1928. extra: 1,
  1929. bottom: 0.014
  1930. }
  1931. },
  1932. },
  1933. [
  1934. {
  1935. name: "Normal",
  1936. height: math.unit(7, "feet"),
  1937. },
  1938. {
  1939. name: "Macro",
  1940. height: math.unit(78, "feet"),
  1941. default: true
  1942. },
  1943. {
  1944. name: "Macro+",
  1945. height: math.unit(300, "meters")
  1946. },
  1947. {
  1948. name: "Macro++",
  1949. height: math.unit(2400, "meters")
  1950. },
  1951. {
  1952. name: "Megamacro",
  1953. height: math.unit(5167, "meters")
  1954. },
  1955. {
  1956. name: "Gigamacro",
  1957. height: math.unit(41769, "miles")
  1958. },
  1959. ]
  1960. ))
  1961. characterMakers.push(() => makeCharacter(
  1962. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1963. {
  1964. front: {
  1965. height: math.unit(7, "feet"),
  1966. weight: math.unit(100, "kg"),
  1967. name: "Front",
  1968. image: {
  1969. source: "./media/characters/adake/front-1.svg"
  1970. }
  1971. },
  1972. frontAlt: {
  1973. height: math.unit(7, "feet"),
  1974. weight: math.unit(100, "kg"),
  1975. name: "Front (Alt)",
  1976. image: {
  1977. source: "./media/characters/adake/front-2.svg",
  1978. extra: 1,
  1979. bottom: 0.01
  1980. }
  1981. },
  1982. back: {
  1983. height: math.unit(7, "feet"),
  1984. weight: math.unit(100, "kg"),
  1985. name: "Back",
  1986. image: {
  1987. source: "./media/characters/adake/back.svg",
  1988. }
  1989. },
  1990. kneel: {
  1991. height: math.unit(5.385, "feet"),
  1992. weight: math.unit(100, "kg"),
  1993. name: "Kneeling",
  1994. image: {
  1995. source: "./media/characters/adake/kneel.svg",
  1996. bottom: 0.052
  1997. }
  1998. },
  1999. },
  2000. [
  2001. {
  2002. name: "Normal",
  2003. height: math.unit(7, "feet"),
  2004. },
  2005. {
  2006. name: "Macro",
  2007. height: math.unit(78, "feet"),
  2008. default: true
  2009. },
  2010. {
  2011. name: "Macro+",
  2012. height: math.unit(300, "meters")
  2013. },
  2014. {
  2015. name: "Macro++",
  2016. height: math.unit(2400, "meters")
  2017. },
  2018. {
  2019. name: "Megamacro",
  2020. height: math.unit(5167, "meters")
  2021. },
  2022. {
  2023. name: "Gigamacro",
  2024. height: math.unit(41769, "miles")
  2025. },
  2026. ]
  2027. ))
  2028. characterMakers.push(() => makeCharacter(
  2029. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2030. {
  2031. front: {
  2032. height: math.unit(1.65, "meters"),
  2033. weight: math.unit(50, "kg"),
  2034. name: "Front",
  2035. image: {
  2036. source: "./media/characters/elijah/front.svg",
  2037. extra: 858 / 830,
  2038. bottom: 95.5 / 953.8559
  2039. }
  2040. },
  2041. back: {
  2042. height: math.unit(1.65, "meters"),
  2043. weight: math.unit(50, "kg"),
  2044. name: "Back",
  2045. image: {
  2046. source: "./media/characters/elijah/back.svg",
  2047. extra: 895 / 850,
  2048. bottom: 5.3 / 897.956
  2049. }
  2050. },
  2051. frontNsfw: {
  2052. height: math.unit(1.65, "meters"),
  2053. weight: math.unit(50, "kg"),
  2054. name: "Front (NSFW)",
  2055. image: {
  2056. source: "./media/characters/elijah/front-nsfw.svg",
  2057. extra: 858 / 830,
  2058. bottom: 95.5 / 953.8559
  2059. }
  2060. },
  2061. backNsfw: {
  2062. height: math.unit(1.65, "meters"),
  2063. weight: math.unit(50, "kg"),
  2064. name: "Back (NSFW)",
  2065. image: {
  2066. source: "./media/characters/elijah/back-nsfw.svg",
  2067. extra: 895 / 850,
  2068. bottom: 5.3 / 897.956
  2069. }
  2070. },
  2071. dick: {
  2072. height: math.unit(1, "feet"),
  2073. name: "Dick",
  2074. image: {
  2075. source: "./media/characters/elijah/dick.svg"
  2076. }
  2077. },
  2078. beakOpen: {
  2079. height: math.unit(1.25, "feet"),
  2080. name: "Beak (Open)",
  2081. image: {
  2082. source: "./media/characters/elijah/beak-open.svg"
  2083. }
  2084. },
  2085. beakShut: {
  2086. height: math.unit(1.25, "feet"),
  2087. name: "Beak (Shut)",
  2088. image: {
  2089. source: "./media/characters/elijah/beak-shut.svg"
  2090. }
  2091. },
  2092. footFlexing: {
  2093. height: math.unit(1.61, "feet"),
  2094. name: "Foot (Flexing)",
  2095. image: {
  2096. source: "./media/characters/elijah/foot-flexing.svg"
  2097. }
  2098. },
  2099. footStepping: {
  2100. height: math.unit(1.44, "feet"),
  2101. name: "Foot (Stepping)",
  2102. image: {
  2103. source: "./media/characters/elijah/foot-stepping.svg"
  2104. }
  2105. },
  2106. plantigradeLeg: {
  2107. height: math.unit(2.34, "feet"),
  2108. name: "Plantigrade Leg",
  2109. image: {
  2110. source: "./media/characters/elijah/plantigrade-leg.svg"
  2111. }
  2112. },
  2113. plantigradeFootLeft: {
  2114. height: math.unit(0.9, "feet"),
  2115. name: "Plantigrade Foot (Left)",
  2116. image: {
  2117. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2118. }
  2119. },
  2120. plantigradeFootRight: {
  2121. height: math.unit(0.9, "feet"),
  2122. name: "Plantigrade Foot (Right)",
  2123. image: {
  2124. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2125. }
  2126. },
  2127. },
  2128. [
  2129. {
  2130. name: "Normal",
  2131. height: math.unit(1.65, "meters")
  2132. },
  2133. {
  2134. name: "Macro",
  2135. height: math.unit(55, "meters"),
  2136. default: true
  2137. },
  2138. {
  2139. name: "Macro+",
  2140. height: math.unit(105, "meters")
  2141. },
  2142. ]
  2143. ))
  2144. characterMakers.push(() => makeCharacter(
  2145. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2146. {
  2147. front: {
  2148. height: math.unit(11, "feet"),
  2149. weight: math.unit(80, "kg"),
  2150. name: "Front",
  2151. image: {
  2152. source: "./media/characters/rai/front.svg",
  2153. extra: 1,
  2154. bottom: 0.03
  2155. }
  2156. },
  2157. side: {
  2158. height: math.unit(11, "feet"),
  2159. weight: math.unit(80, "kg"),
  2160. name: "Side",
  2161. image: {
  2162. source: "./media/characters/rai/side.svg"
  2163. }
  2164. },
  2165. back: {
  2166. height: math.unit(11, "feet"),
  2167. weight: math.unit(80, "lb"),
  2168. name: "Back",
  2169. image: {
  2170. source: "./media/characters/rai/back.svg",
  2171. extra: 1,
  2172. bottom: 0.01
  2173. }
  2174. },
  2175. feral: {
  2176. height: math.unit(11, "feet"),
  2177. weight: math.unit(800, "lb"),
  2178. name: "Feral",
  2179. image: {
  2180. source: "./media/characters/rai/feral.svg",
  2181. extra: 1050 / 659,
  2182. bottom: 0.07
  2183. }
  2184. },
  2185. dragon: {
  2186. height: math.unit(23, "feet"),
  2187. weight: math.unit(50000, "lb"),
  2188. name: "Dragon",
  2189. image: {
  2190. source: "./media/characters/rai/dragon.svg",
  2191. extra: 2498 / 2030,
  2192. bottom: 85.2 / 2584
  2193. }
  2194. },
  2195. maw: {
  2196. height: math.unit(6 / 3.81416, "feet"),
  2197. name: "Maw",
  2198. image: {
  2199. source: "./media/characters/rai/maw.svg"
  2200. }
  2201. },
  2202. },
  2203. [
  2204. {
  2205. name: "Normal",
  2206. height: math.unit(11, "feet")
  2207. },
  2208. {
  2209. name: "Macro",
  2210. height: math.unit(302, "feet"),
  2211. default: true
  2212. },
  2213. ]
  2214. ))
  2215. characterMakers.push(() => makeCharacter(
  2216. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2217. {
  2218. frontDressed: {
  2219. height: math.unit(216, "feet"),
  2220. weight: math.unit(7000000, "lb"),
  2221. name: "Front (Dressed)",
  2222. image: {
  2223. source: "./media/characters/jazzy/front-dressed.svg",
  2224. extra: 2738 / 2651,
  2225. bottom: 41.8 / 2786
  2226. }
  2227. },
  2228. backDressed: {
  2229. height: math.unit(216, "feet"),
  2230. weight: math.unit(7000000, "lb"),
  2231. name: "Back (Dressed)",
  2232. image: {
  2233. source: "./media/characters/jazzy/back-dressed.svg",
  2234. extra: 2775 / 2673,
  2235. bottom: 36.8 / 2817
  2236. }
  2237. },
  2238. front: {
  2239. height: math.unit(216, "feet"),
  2240. weight: math.unit(7000000, "lb"),
  2241. name: "Front",
  2242. image: {
  2243. source: "./media/characters/jazzy/front.svg",
  2244. extra: 2738 / 2651,
  2245. bottom: 41.8 / 2786
  2246. }
  2247. },
  2248. back: {
  2249. height: math.unit(216, "feet"),
  2250. weight: math.unit(7000000, "lb"),
  2251. name: "Back",
  2252. image: {
  2253. source: "./media/characters/jazzy/back.svg",
  2254. extra: 2775 / 2673,
  2255. bottom: 36.8 / 2817
  2256. }
  2257. },
  2258. maw: {
  2259. height: math.unit(20, "feet"),
  2260. name: "Maw",
  2261. image: {
  2262. source: "./media/characters/jazzy/maw.svg"
  2263. }
  2264. },
  2265. paws: {
  2266. height: math.unit(27.5, "feet"),
  2267. name: "Paws",
  2268. image: {
  2269. source: "./media/characters/jazzy/paws.svg"
  2270. }
  2271. },
  2272. eye: {
  2273. height: math.unit(4.4, "feet"),
  2274. name: "Eye",
  2275. image: {
  2276. source: "./media/characters/jazzy/eye.svg"
  2277. }
  2278. },
  2279. droneOffense: {
  2280. height: math.unit(9.5, "inches"),
  2281. name: "Drone (Offense)",
  2282. image: {
  2283. source: "./media/characters/jazzy/drone-offense.svg"
  2284. }
  2285. },
  2286. droneRecon: {
  2287. height: math.unit(9.5, "inches"),
  2288. name: "Drone (Recon)",
  2289. image: {
  2290. source: "./media/characters/jazzy/drone-recon.svg"
  2291. }
  2292. },
  2293. droneDefense: {
  2294. height: math.unit(9.5, "inches"),
  2295. name: "Drone (Defense)",
  2296. image: {
  2297. source: "./media/characters/jazzy/drone-defense.svg"
  2298. }
  2299. },
  2300. },
  2301. [
  2302. {
  2303. name: "Macro",
  2304. height: math.unit(216, "feet"),
  2305. default: true
  2306. },
  2307. ]
  2308. ))
  2309. characterMakers.push(() => makeCharacter(
  2310. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2311. {
  2312. front: {
  2313. height: math.unit(7, "feet"),
  2314. weight: math.unit(80, "kg"),
  2315. name: "Front",
  2316. image: {
  2317. source: "./media/characters/flamm/front.svg",
  2318. extra: 1794 / 1677,
  2319. bottom: 31.7 / 1828.5
  2320. }
  2321. },
  2322. },
  2323. [
  2324. {
  2325. name: "Normal",
  2326. height: math.unit(9.5, "feet")
  2327. },
  2328. {
  2329. name: "Macro",
  2330. height: math.unit(200, "feet"),
  2331. default: true
  2332. },
  2333. ]
  2334. ))
  2335. characterMakers.push(() => makeCharacter(
  2336. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2337. {
  2338. front: {
  2339. height: math.unit(5 + 3/12, "feet"),
  2340. weight: math.unit(60, "kg"),
  2341. name: "Front",
  2342. image: {
  2343. source: "./media/characters/zephiro/front.svg",
  2344. extra: 2309 / 2162,
  2345. bottom: 0.069
  2346. }
  2347. },
  2348. side: {
  2349. height: math.unit(5 + 3/12, "feet"),
  2350. weight: math.unit(60, "kg"),
  2351. name: "Side",
  2352. image: {
  2353. source: "./media/characters/zephiro/side.svg",
  2354. extra: 2403 / 2279,
  2355. bottom: 0.015
  2356. }
  2357. },
  2358. back: {
  2359. height: math.unit(5 + 3/12, "feet"),
  2360. weight: math.unit(60, "kg"),
  2361. name: "Back",
  2362. image: {
  2363. source: "./media/characters/zephiro/back.svg",
  2364. extra: 2373 / 2244,
  2365. bottom: 0.013
  2366. }
  2367. },
  2368. hand: {
  2369. height: math.unit(0.68, "feet"),
  2370. name: "Hand",
  2371. image: {
  2372. source: "./media/characters/zephiro/hand.svg"
  2373. }
  2374. },
  2375. paw: {
  2376. height: math.unit(1, "feet"),
  2377. name: "Paw",
  2378. image: {
  2379. source: "./media/characters/zephiro/paw.svg"
  2380. }
  2381. },
  2382. beans: {
  2383. height: math.unit(0.93, "feet"),
  2384. name: "Beans",
  2385. image: {
  2386. source: "./media/characters/zephiro/beans.svg"
  2387. }
  2388. },
  2389. },
  2390. [
  2391. {
  2392. name: "Micro",
  2393. height: math.unit(3, "inches")
  2394. },
  2395. {
  2396. name: "Normal",
  2397. height: math.unit(5 + 3 / 12, "feet"),
  2398. default: true
  2399. },
  2400. {
  2401. name: "Macro",
  2402. height: math.unit(118, "feet")
  2403. },
  2404. ]
  2405. ))
  2406. characterMakers.push(() => makeCharacter(
  2407. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2408. {
  2409. front: {
  2410. height: math.unit(5, "feet"),
  2411. weight: math.unit(90, "kg"),
  2412. name: "Front",
  2413. image: {
  2414. source: "./media/characters/fory/front.svg",
  2415. extra: 2862 / 2674,
  2416. bottom: 180 / 3043.8
  2417. }
  2418. },
  2419. back: {
  2420. height: math.unit(5, "feet"),
  2421. weight: math.unit(90, "kg"),
  2422. name: "Back",
  2423. image: {
  2424. source: "./media/characters/fory/back.svg",
  2425. extra: 2962 / 2791,
  2426. bottom: 106 / 3071.8
  2427. }
  2428. },
  2429. foot: {
  2430. height: math.unit(2.14, "feet"),
  2431. name: "Foot",
  2432. image: {
  2433. source: "./media/characters/fory/foot.svg"
  2434. }
  2435. },
  2436. },
  2437. [
  2438. {
  2439. name: "Normal",
  2440. height: math.unit(5, "feet")
  2441. },
  2442. {
  2443. name: "Macro",
  2444. height: math.unit(50, "feet"),
  2445. default: true
  2446. },
  2447. {
  2448. name: "Megamacro",
  2449. height: math.unit(10, "miles")
  2450. },
  2451. {
  2452. name: "Gigamacro",
  2453. height: math.unit(5, "earths")
  2454. },
  2455. ]
  2456. ))
  2457. characterMakers.push(() => makeCharacter(
  2458. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2459. {
  2460. front: {
  2461. height: math.unit(7, "feet"),
  2462. weight: math.unit(90, "kg"),
  2463. name: "Front",
  2464. image: {
  2465. source: "./media/characters/kurrikage/front.svg",
  2466. extra: 1,
  2467. bottom: 0.035
  2468. }
  2469. },
  2470. back: {
  2471. height: math.unit(7, "feet"),
  2472. weight: math.unit(90, "lb"),
  2473. name: "Back",
  2474. image: {
  2475. source: "./media/characters/kurrikage/back.svg"
  2476. }
  2477. },
  2478. paw: {
  2479. height: math.unit(1.5, "feet"),
  2480. name: "Paw",
  2481. image: {
  2482. source: "./media/characters/kurrikage/paw.svg"
  2483. }
  2484. },
  2485. staff: {
  2486. height: math.unit(6.7, "feet"),
  2487. name: "Staff",
  2488. image: {
  2489. source: "./media/characters/kurrikage/staff.svg"
  2490. }
  2491. },
  2492. peek: {
  2493. height: math.unit(1.05, "feet"),
  2494. name: "Peeking",
  2495. image: {
  2496. source: "./media/characters/kurrikage/peek.svg",
  2497. bottom: 0.08
  2498. }
  2499. },
  2500. },
  2501. [
  2502. {
  2503. name: "Normal",
  2504. height: math.unit(12, "feet"),
  2505. default: true
  2506. },
  2507. {
  2508. name: "Big",
  2509. height: math.unit(20, "feet")
  2510. },
  2511. {
  2512. name: "Macro",
  2513. height: math.unit(500, "feet")
  2514. },
  2515. {
  2516. name: "Megamacro",
  2517. height: math.unit(20, "miles")
  2518. },
  2519. ]
  2520. ))
  2521. characterMakers.push(() => makeCharacter(
  2522. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2523. {
  2524. front: {
  2525. height: math.unit(6, "feet"),
  2526. weight: math.unit(75, "kg"),
  2527. name: "Front",
  2528. image: {
  2529. source: "./media/characters/shingo/front.svg",
  2530. extra: 706/681,
  2531. bottom: 11/717
  2532. }
  2533. },
  2534. frontAlt: {
  2535. height: math.unit(6, "feet"),
  2536. weight: math.unit(75, "kg"),
  2537. name: "Front (Alt)",
  2538. image: {
  2539. source: "./media/characters/shingo/front-alt.svg",
  2540. extra: 3511 / 3338,
  2541. bottom: 0.005
  2542. }
  2543. },
  2544. paw: {
  2545. height: math.unit(1, "feet"),
  2546. name: "Paw",
  2547. image: {
  2548. source: "./media/characters/shingo/paw.svg"
  2549. }
  2550. },
  2551. },
  2552. [
  2553. {
  2554. name: "Micro",
  2555. height: math.unit(4, "inches")
  2556. },
  2557. {
  2558. name: "Normal",
  2559. height: math.unit(6, "feet"),
  2560. default: true
  2561. },
  2562. {
  2563. name: "Macro",
  2564. height: math.unit(108, "feet")
  2565. },
  2566. {
  2567. name: "Macro+",
  2568. height: math.unit(1500, "feet")
  2569. },
  2570. ]
  2571. ))
  2572. characterMakers.push(() => makeCharacter(
  2573. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2574. {
  2575. side: {
  2576. height: math.unit(6, "feet"),
  2577. weight: math.unit(75, "kg"),
  2578. name: "Side",
  2579. image: {
  2580. source: "./media/characters/aigey/side.svg"
  2581. }
  2582. },
  2583. },
  2584. [
  2585. {
  2586. name: "Macro",
  2587. height: math.unit(200, "feet"),
  2588. default: true
  2589. },
  2590. {
  2591. name: "Megamacro",
  2592. height: math.unit(100, "miles")
  2593. },
  2594. ]
  2595. )
  2596. )
  2597. characterMakers.push(() => makeCharacter(
  2598. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2599. {
  2600. front: {
  2601. height: math.unit(5 + 5 / 12, "feet"),
  2602. weight: math.unit(75, "kg"),
  2603. name: "Front",
  2604. image: {
  2605. source: "./media/characters/natasha/front.svg",
  2606. extra: 859 / 824,
  2607. bottom: 23 / 879.6
  2608. }
  2609. },
  2610. frontNsfw: {
  2611. height: math.unit(5 + 5 / 12, "feet"),
  2612. weight: math.unit(75, "kg"),
  2613. name: "Front (NSFW)",
  2614. image: {
  2615. source: "./media/characters/natasha/front-nsfw.svg",
  2616. extra: 859 / 824,
  2617. bottom: 23 / 879.6
  2618. }
  2619. },
  2620. frontErect: {
  2621. height: math.unit(5 + 5 / 12, "feet"),
  2622. weight: math.unit(75, "kg"),
  2623. name: "Front (Erect)",
  2624. image: {
  2625. source: "./media/characters/natasha/front-erect.svg",
  2626. extra: 859 / 824,
  2627. bottom: 23 / 879.6
  2628. }
  2629. },
  2630. back: {
  2631. height: math.unit(5 + 5 / 12, "feet"),
  2632. weight: math.unit(75, "kg"),
  2633. name: "Back",
  2634. image: {
  2635. source: "./media/characters/natasha/back.svg",
  2636. extra: 887.9 / 852.6,
  2637. bottom: 9.7 / 896.4
  2638. }
  2639. },
  2640. backAlt: {
  2641. height: math.unit(5 + 5 / 12, "feet"),
  2642. weight: math.unit(75, "kg"),
  2643. name: "Back (Alt)",
  2644. image: {
  2645. source: "./media/characters/natasha/back-alt.svg",
  2646. extra: 1236.7 / 1192,
  2647. bottom: 22.3 / 1258.2
  2648. }
  2649. },
  2650. dick: {
  2651. height: math.unit(1.772, "feet"),
  2652. name: "Dick",
  2653. image: {
  2654. source: "./media/characters/natasha/dick.svg"
  2655. }
  2656. },
  2657. paw: {
  2658. height: math.unit(0.250, "meters"),
  2659. name: "Paw",
  2660. image: {
  2661. source: "./media/characters/natasha/paw.svg"
  2662. }
  2663. },
  2664. },
  2665. [
  2666. {
  2667. name: "Normal",
  2668. height: math.unit(5 + 5 / 12, "feet")
  2669. },
  2670. {
  2671. name: "Large",
  2672. height: math.unit(12, "feet")
  2673. },
  2674. {
  2675. name: "Macro",
  2676. height: math.unit(100, "feet"),
  2677. default: true
  2678. },
  2679. {
  2680. name: "Macro+",
  2681. height: math.unit(260, "feet")
  2682. },
  2683. {
  2684. name: "Macro++",
  2685. height: math.unit(1, "mile")
  2686. },
  2687. ]
  2688. ))
  2689. characterMakers.push(() => makeCharacter(
  2690. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2691. {
  2692. front: {
  2693. height: math.unit(6, "feet"),
  2694. weight: math.unit(75, "kg"),
  2695. name: "Front",
  2696. image: {
  2697. source: "./media/characters/malik/front.svg"
  2698. }
  2699. },
  2700. side: {
  2701. height: math.unit(6, "feet"),
  2702. weight: math.unit(75, "kg"),
  2703. name: "Side",
  2704. image: {
  2705. source: "./media/characters/malik/side.svg",
  2706. extra: 1.1539
  2707. }
  2708. },
  2709. back: {
  2710. height: math.unit(6, "feet"),
  2711. weight: math.unit(75, "kg"),
  2712. name: "Back",
  2713. image: {
  2714. source: "./media/characters/malik/back.svg"
  2715. }
  2716. },
  2717. },
  2718. [
  2719. {
  2720. name: "Macro",
  2721. height: math.unit(156, "feet"),
  2722. default: true
  2723. },
  2724. {
  2725. name: "Macro+",
  2726. height: math.unit(1188, "feet")
  2727. },
  2728. ]
  2729. ))
  2730. characterMakers.push(() => makeCharacter(
  2731. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2732. {
  2733. front: {
  2734. height: math.unit(6, "feet"),
  2735. weight: math.unit(75, "kg"),
  2736. name: "Front",
  2737. image: {
  2738. source: "./media/characters/sefer/front.svg",
  2739. extra: 848 / 659,
  2740. bottom: 28.3 / 876.442
  2741. }
  2742. },
  2743. back: {
  2744. height: math.unit(6, "feet"),
  2745. weight: math.unit(75, "kg"),
  2746. name: "Back",
  2747. image: {
  2748. source: "./media/characters/sefer/back.svg",
  2749. extra: 864 / 695,
  2750. bottom: 10 / 871
  2751. }
  2752. },
  2753. frontDressed: {
  2754. height: math.unit(6, "feet"),
  2755. weight: math.unit(75, "kg"),
  2756. name: "Front (Dressed)",
  2757. image: {
  2758. source: "./media/characters/sefer/front-dressed.svg",
  2759. extra: 839 / 653,
  2760. bottom: 37.6 / 878
  2761. }
  2762. },
  2763. },
  2764. [
  2765. {
  2766. name: "Normal",
  2767. height: math.unit(6, "feet"),
  2768. default: true
  2769. },
  2770. ]
  2771. ))
  2772. characterMakers.push(() => makeCharacter(
  2773. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2774. {
  2775. body: {
  2776. height: math.unit(2.2428, "meter"),
  2777. weight: math.unit(124.738, "kg"),
  2778. name: "Body",
  2779. image: {
  2780. extra: 1225 / 1050,
  2781. source: "./media/characters/north/front.svg"
  2782. }
  2783. }
  2784. },
  2785. [
  2786. {
  2787. name: "Micro",
  2788. height: math.unit(4, "inches")
  2789. },
  2790. {
  2791. name: "Macro",
  2792. height: math.unit(63, "meters")
  2793. },
  2794. {
  2795. name: "Megamacro",
  2796. height: math.unit(101, "miles"),
  2797. default: true
  2798. }
  2799. ]
  2800. ))
  2801. characterMakers.push(() => makeCharacter(
  2802. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2803. {
  2804. angled: {
  2805. height: math.unit(4, "meter"),
  2806. weight: math.unit(150, "kg"),
  2807. name: "Angled",
  2808. image: {
  2809. source: "./media/characters/talan/angled-sfw.svg",
  2810. bottom: 29 / 3734
  2811. }
  2812. },
  2813. angledNsfw: {
  2814. height: math.unit(4, "meter"),
  2815. weight: math.unit(150, "kg"),
  2816. name: "Angled (NSFW)",
  2817. image: {
  2818. source: "./media/characters/talan/angled-nsfw.svg",
  2819. bottom: 29 / 3734
  2820. }
  2821. },
  2822. frontNsfw: {
  2823. height: math.unit(4, "meter"),
  2824. weight: math.unit(150, "kg"),
  2825. name: "Front (NSFW)",
  2826. image: {
  2827. source: "./media/characters/talan/front-nsfw.svg",
  2828. bottom: 29 / 3734
  2829. }
  2830. },
  2831. sideNsfw: {
  2832. height: math.unit(4, "meter"),
  2833. weight: math.unit(150, "kg"),
  2834. name: "Side (NSFW)",
  2835. image: {
  2836. source: "./media/characters/talan/side-nsfw.svg",
  2837. bottom: 29 / 3734
  2838. }
  2839. },
  2840. back: {
  2841. height: math.unit(4, "meter"),
  2842. weight: math.unit(150, "kg"),
  2843. name: "Back",
  2844. image: {
  2845. source: "./media/characters/talan/back.svg"
  2846. }
  2847. },
  2848. dickBottom: {
  2849. height: math.unit(0.621, "meter"),
  2850. name: "Dick (Bottom)",
  2851. image: {
  2852. source: "./media/characters/talan/dick-bottom.svg"
  2853. }
  2854. },
  2855. dickTop: {
  2856. height: math.unit(0.621, "meter"),
  2857. name: "Dick (Top)",
  2858. image: {
  2859. source: "./media/characters/talan/dick-top.svg"
  2860. }
  2861. },
  2862. dickSide: {
  2863. height: math.unit(0.305, "meter"),
  2864. name: "Dick (Side)",
  2865. image: {
  2866. source: "./media/characters/talan/dick-side.svg"
  2867. }
  2868. },
  2869. dickFront: {
  2870. height: math.unit(0.305, "meter"),
  2871. name: "Dick (Front)",
  2872. image: {
  2873. source: "./media/characters/talan/dick-front.svg"
  2874. }
  2875. },
  2876. },
  2877. [
  2878. {
  2879. name: "Normal",
  2880. height: math.unit(4, "meters")
  2881. },
  2882. {
  2883. name: "Macro",
  2884. height: math.unit(100, "meters")
  2885. },
  2886. {
  2887. name: "Megamacro",
  2888. height: math.unit(2, "miles"),
  2889. default: true
  2890. },
  2891. {
  2892. name: "Gigamacro",
  2893. height: math.unit(5000, "miles")
  2894. },
  2895. {
  2896. name: "Teramacro",
  2897. height: math.unit(100, "parsecs")
  2898. }
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2903. {
  2904. front: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(90, "kg"),
  2907. name: "Front",
  2908. image: {
  2909. source: "./media/characters/gael'rathus/front.svg"
  2910. }
  2911. },
  2912. frontAlt: {
  2913. height: math.unit(2, "meter"),
  2914. weight: math.unit(90, "kg"),
  2915. name: "Front (alt)",
  2916. image: {
  2917. source: "./media/characters/gael'rathus/front-alt.svg"
  2918. }
  2919. },
  2920. frontAlt2: {
  2921. height: math.unit(2, "meter"),
  2922. weight: math.unit(90, "kg"),
  2923. name: "Front (alt 2)",
  2924. image: {
  2925. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2926. }
  2927. }
  2928. },
  2929. [
  2930. {
  2931. name: "Normal",
  2932. height: math.unit(9, "feet"),
  2933. default: true
  2934. },
  2935. {
  2936. name: "Large",
  2937. height: math.unit(25, "feet")
  2938. },
  2939. {
  2940. name: "Macro",
  2941. height: math.unit(0.25, "miles")
  2942. },
  2943. {
  2944. name: "Megamacro",
  2945. height: math.unit(10, "miles")
  2946. }
  2947. ]
  2948. ))
  2949. characterMakers.push(() => makeCharacter(
  2950. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2951. {
  2952. side: {
  2953. height: math.unit(2, "meter"),
  2954. weight: math.unit(140, "kg"),
  2955. name: "Side",
  2956. image: {
  2957. source: "./media/characters/sosha/side.svg",
  2958. bottom: 0.042
  2959. }
  2960. },
  2961. },
  2962. [
  2963. {
  2964. name: "Normal",
  2965. height: math.unit(12, "feet"),
  2966. default: true
  2967. }
  2968. ]
  2969. ))
  2970. characterMakers.push(() => makeCharacter(
  2971. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2972. {
  2973. side: {
  2974. height: math.unit(5 + 5 / 12, "feet"),
  2975. weight: math.unit(170, "kg"),
  2976. name: "Side",
  2977. image: {
  2978. source: "./media/characters/runnola/side.svg",
  2979. extra: 741 / 448,
  2980. bottom: 0.05
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Small",
  2987. height: math.unit(3, "feet")
  2988. },
  2989. {
  2990. name: "Normal",
  2991. height: math.unit(5 + 5 / 12, "feet"),
  2992. default: true
  2993. },
  2994. {
  2995. name: "Big",
  2996. height: math.unit(10, "feet")
  2997. },
  2998. ]
  2999. ))
  3000. characterMakers.push(() => makeCharacter(
  3001. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3002. {
  3003. front: {
  3004. height: math.unit(2, "meter"),
  3005. weight: math.unit(50, "kg"),
  3006. name: "Front",
  3007. image: {
  3008. source: "./media/characters/kurribird/front.svg",
  3009. bottom: 0.015
  3010. }
  3011. },
  3012. frontAlt: {
  3013. height: math.unit(1.5, "meter"),
  3014. weight: math.unit(50, "kg"),
  3015. name: "Front (Alt)",
  3016. image: {
  3017. source: "./media/characters/kurribird/front-alt.svg",
  3018. extra: 1.45
  3019. }
  3020. },
  3021. },
  3022. [
  3023. {
  3024. name: "Normal",
  3025. height: math.unit(7, "feet")
  3026. },
  3027. {
  3028. name: "Big",
  3029. height: math.unit(12, "feet"),
  3030. default: true
  3031. },
  3032. {
  3033. name: "Macro",
  3034. height: math.unit(1500, "feet")
  3035. },
  3036. {
  3037. name: "Megamacro",
  3038. height: math.unit(2, "miles")
  3039. }
  3040. ]
  3041. ))
  3042. characterMakers.push(() => makeCharacter(
  3043. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3044. {
  3045. front: {
  3046. height: math.unit(2, "meter"),
  3047. weight: math.unit(80, "kg"),
  3048. name: "Front",
  3049. image: {
  3050. source: "./media/characters/elbial/front.svg",
  3051. extra: 1643 / 1556,
  3052. bottom: 60.2 / 1696
  3053. }
  3054. },
  3055. side: {
  3056. height: math.unit(2, "meter"),
  3057. weight: math.unit(80, "kg"),
  3058. name: "Side",
  3059. image: {
  3060. source: "./media/characters/elbial/side.svg",
  3061. extra: 1630 / 1565,
  3062. bottom: 71.5 / 1697
  3063. }
  3064. },
  3065. back: {
  3066. height: math.unit(2, "meter"),
  3067. weight: math.unit(80, "kg"),
  3068. name: "Back",
  3069. image: {
  3070. source: "./media/characters/elbial/back.svg",
  3071. extra: 1668 / 1595,
  3072. bottom: 5.6 / 1672
  3073. }
  3074. },
  3075. frontDressed: {
  3076. height: math.unit(2, "meter"),
  3077. weight: math.unit(80, "kg"),
  3078. name: "Front (Dressed)",
  3079. image: {
  3080. source: "./media/characters/elbial/front-dressed.svg",
  3081. extra: 1653 / 1584,
  3082. bottom: 57 / 1708
  3083. }
  3084. },
  3085. genitals: {
  3086. height: math.unit(2 / 3.367, "meter"),
  3087. name: "Genitals",
  3088. image: {
  3089. source: "./media/characters/elbial/genitals.svg"
  3090. }
  3091. },
  3092. },
  3093. [
  3094. {
  3095. name: "Large",
  3096. height: math.unit(100, "feet")
  3097. },
  3098. {
  3099. name: "Macro",
  3100. height: math.unit(500, "feet"),
  3101. default: true
  3102. },
  3103. {
  3104. name: "Megamacro",
  3105. height: math.unit(10, "miles")
  3106. },
  3107. {
  3108. name: "Gigamacro",
  3109. height: math.unit(25000, "miles")
  3110. },
  3111. {
  3112. name: "Full-Size",
  3113. height: math.unit(8000000, "gigaparsecs")
  3114. }
  3115. ]
  3116. ))
  3117. characterMakers.push(() => makeCharacter(
  3118. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3119. {
  3120. front: {
  3121. height: math.unit(2, "meter"),
  3122. weight: math.unit(60, "kg"),
  3123. name: "Front",
  3124. image: {
  3125. source: "./media/characters/noah/front.svg"
  3126. }
  3127. },
  3128. talons: {
  3129. height: math.unit(0.315, "meter"),
  3130. name: "Talons",
  3131. image: {
  3132. source: "./media/characters/noah/talons.svg"
  3133. }
  3134. }
  3135. },
  3136. [
  3137. {
  3138. name: "Large",
  3139. height: math.unit(50, "feet")
  3140. },
  3141. {
  3142. name: "Macro",
  3143. height: math.unit(750, "feet"),
  3144. default: true
  3145. },
  3146. {
  3147. name: "Megamacro",
  3148. height: math.unit(50, "miles")
  3149. },
  3150. {
  3151. name: "Gigamacro",
  3152. height: math.unit(100000, "miles")
  3153. },
  3154. {
  3155. name: "Full-Size",
  3156. height: math.unit(3000000000, "miles")
  3157. }
  3158. ]
  3159. ))
  3160. characterMakers.push(() => makeCharacter(
  3161. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3162. {
  3163. front: {
  3164. height: math.unit(2, "meter"),
  3165. weight: math.unit(80, "kg"),
  3166. name: "Front",
  3167. image: {
  3168. source: "./media/characters/natalya/front.svg"
  3169. }
  3170. },
  3171. back: {
  3172. height: math.unit(2, "meter"),
  3173. weight: math.unit(80, "kg"),
  3174. name: "Back",
  3175. image: {
  3176. source: "./media/characters/natalya/back.svg"
  3177. }
  3178. }
  3179. },
  3180. [
  3181. {
  3182. name: "Normal",
  3183. height: math.unit(150, "feet"),
  3184. default: true
  3185. },
  3186. {
  3187. name: "Megamacro",
  3188. height: math.unit(5, "miles")
  3189. },
  3190. {
  3191. name: "Full-Size",
  3192. height: math.unit(600, "kiloparsecs")
  3193. }
  3194. ]
  3195. ))
  3196. characterMakers.push(() => makeCharacter(
  3197. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3198. {
  3199. front: {
  3200. height: math.unit(2, "meter"),
  3201. weight: math.unit(50, "kg"),
  3202. name: "Front",
  3203. image: {
  3204. source: "./media/characters/erestrebah/front.svg",
  3205. extra: 208 / 193,
  3206. bottom: 0.055
  3207. }
  3208. },
  3209. back: {
  3210. height: math.unit(2, "meter"),
  3211. weight: math.unit(50, "kg"),
  3212. name: "Back",
  3213. image: {
  3214. source: "./media/characters/erestrebah/back.svg",
  3215. extra: 1.3
  3216. }
  3217. }
  3218. },
  3219. [
  3220. {
  3221. name: "Normal",
  3222. height: math.unit(10, "feet")
  3223. },
  3224. {
  3225. name: "Large",
  3226. height: math.unit(50, "feet"),
  3227. default: true
  3228. },
  3229. {
  3230. name: "Macro",
  3231. height: math.unit(300, "feet")
  3232. },
  3233. {
  3234. name: "Macro+",
  3235. height: math.unit(750, "feet")
  3236. },
  3237. {
  3238. name: "Megamacro",
  3239. height: math.unit(3, "miles")
  3240. }
  3241. ]
  3242. ))
  3243. characterMakers.push(() => makeCharacter(
  3244. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3245. {
  3246. front: {
  3247. height: math.unit(2, "meter"),
  3248. weight: math.unit(80, "kg"),
  3249. name: "Front",
  3250. image: {
  3251. source: "./media/characters/jennifer/front.svg",
  3252. bottom: 0.11,
  3253. extra: 1.16
  3254. }
  3255. },
  3256. frontAlt: {
  3257. height: math.unit(2, "meter"),
  3258. weight: math.unit(80, "kg"),
  3259. name: "Front (Alt)",
  3260. image: {
  3261. source: "./media/characters/jennifer/front-alt.svg"
  3262. }
  3263. }
  3264. },
  3265. [
  3266. {
  3267. name: "Canon Height",
  3268. height: math.unit(120, "feet"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Macro+",
  3273. height: math.unit(300, "feet")
  3274. },
  3275. {
  3276. name: "Megamacro",
  3277. height: math.unit(20000, "feet")
  3278. }
  3279. ]
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3283. {
  3284. front: {
  3285. height: math.unit(2, "meter"),
  3286. weight: math.unit(50, "kg"),
  3287. name: "Front",
  3288. image: {
  3289. source: "./media/characters/kalista/front.svg",
  3290. extra: 1947 / 1700,
  3291. bottom: 76.6 / 1412.98
  3292. }
  3293. },
  3294. back: {
  3295. height: math.unit(2, "meter"),
  3296. weight: math.unit(50, "kg"),
  3297. name: "Back",
  3298. image: {
  3299. source: "./media/characters/kalista/back.svg",
  3300. extra: 1366 / 1156,
  3301. bottom: 33.9 / 1362.78
  3302. }
  3303. }
  3304. },
  3305. [
  3306. {
  3307. name: "Uncomfortably Small",
  3308. height: math.unit(10, "feet")
  3309. },
  3310. {
  3311. name: "Small",
  3312. height: math.unit(30, "feet")
  3313. },
  3314. {
  3315. name: "Macro",
  3316. height: math.unit(100, "feet"),
  3317. default: true
  3318. },
  3319. {
  3320. name: "Macro+",
  3321. height: math.unit(2000, "feet")
  3322. },
  3323. {
  3324. name: "True Form",
  3325. height: math.unit(8924, "miles")
  3326. }
  3327. ]
  3328. ))
  3329. characterMakers.push(() => makeCharacter(
  3330. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3331. {
  3332. front: {
  3333. height: math.unit(2, "meter"),
  3334. weight: math.unit(120, "kg"),
  3335. name: "Front",
  3336. image: {
  3337. source: "./media/characters/ggv/front.svg"
  3338. }
  3339. },
  3340. side: {
  3341. height: math.unit(2, "meter"),
  3342. weight: math.unit(120, "kg"),
  3343. name: "Side",
  3344. image: {
  3345. source: "./media/characters/ggv/side.svg"
  3346. }
  3347. }
  3348. },
  3349. [
  3350. {
  3351. name: "Extremely Puny",
  3352. height: math.unit(9 + 5 / 12, "feet")
  3353. },
  3354. {
  3355. name: "Horribly Small",
  3356. height: math.unit(47.7, "miles"),
  3357. default: true
  3358. },
  3359. {
  3360. name: "Reasonably Sized",
  3361. height: math.unit(25000, "parsecs")
  3362. },
  3363. {
  3364. name: "Slightly Uncompressed",
  3365. height: math.unit(7.77e31, "parsecs")
  3366. },
  3367. {
  3368. name: "Omniversal",
  3369. height: math.unit(1e300, "meters")
  3370. },
  3371. ]
  3372. ))
  3373. characterMakers.push(() => makeCharacter(
  3374. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3375. {
  3376. front: {
  3377. height: math.unit(2, "meter"),
  3378. weight: math.unit(75, "lb"),
  3379. name: "Front",
  3380. image: {
  3381. source: "./media/characters/napalm/front.svg"
  3382. }
  3383. },
  3384. back: {
  3385. height: math.unit(2, "meter"),
  3386. weight: math.unit(75, "lb"),
  3387. name: "Back",
  3388. image: {
  3389. source: "./media/characters/napalm/back.svg"
  3390. }
  3391. }
  3392. },
  3393. [
  3394. {
  3395. name: "Standard",
  3396. height: math.unit(55, "feet"),
  3397. default: true
  3398. }
  3399. ]
  3400. ))
  3401. characterMakers.push(() => makeCharacter(
  3402. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3403. {
  3404. front: {
  3405. height: math.unit(7 + 5 / 6, "feet"),
  3406. weight: math.unit(325, "lb"),
  3407. name: "Front",
  3408. image: {
  3409. source: "./media/characters/asana/front.svg",
  3410. extra: 1133 / 1060,
  3411. bottom: 15.2 / 1148.6
  3412. }
  3413. },
  3414. back: {
  3415. height: math.unit(7 + 5 / 6, "feet"),
  3416. weight: math.unit(325, "lb"),
  3417. name: "Back",
  3418. image: {
  3419. source: "./media/characters/asana/back.svg",
  3420. extra: 1114 / 1043,
  3421. bottom: 5 / 1120
  3422. }
  3423. },
  3424. dressedDark: {
  3425. height: math.unit(7 + 5 / 6, "feet"),
  3426. weight: math.unit(325, "lb"),
  3427. name: "Dressed (Dark)",
  3428. image: {
  3429. source: "./media/characters/asana/dressed-dark.svg",
  3430. extra: 1133 / 1060,
  3431. bottom: 15.2 / 1148.6
  3432. }
  3433. },
  3434. dressedLight: {
  3435. height: math.unit(7 + 5 / 6, "feet"),
  3436. weight: math.unit(325, "lb"),
  3437. name: "Dressed (Light)",
  3438. image: {
  3439. source: "./media/characters/asana/dressed-light.svg",
  3440. extra: 1133 / 1060,
  3441. bottom: 15.2 / 1148.6
  3442. }
  3443. },
  3444. },
  3445. [
  3446. {
  3447. name: "Standard",
  3448. height: math.unit(7 + 5 / 6, "feet"),
  3449. default: true
  3450. },
  3451. {
  3452. name: "Large",
  3453. height: math.unit(10, "meters")
  3454. },
  3455. {
  3456. name: "Macro",
  3457. height: math.unit(2500, "meters")
  3458. },
  3459. {
  3460. name: "Megamacro",
  3461. height: math.unit(5e6, "meters")
  3462. },
  3463. {
  3464. name: "Examacro",
  3465. height: math.unit(5e12, "lightyears")
  3466. },
  3467. {
  3468. name: "Max Size",
  3469. height: math.unit(1e31, "lightyears")
  3470. }
  3471. ]
  3472. ))
  3473. characterMakers.push(() => makeCharacter(
  3474. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3475. {
  3476. front: {
  3477. height: math.unit(2, "meter"),
  3478. weight: math.unit(60, "kg"),
  3479. name: "Front",
  3480. image: {
  3481. source: "./media/characters/ebony/front.svg",
  3482. bottom: 0.03,
  3483. extra: 1045 / 810 + 0.03
  3484. }
  3485. },
  3486. side: {
  3487. height: math.unit(2, "meter"),
  3488. weight: math.unit(60, "kg"),
  3489. name: "Side",
  3490. image: {
  3491. source: "./media/characters/ebony/side.svg",
  3492. bottom: 0.03,
  3493. extra: 1045 / 810 + 0.03
  3494. }
  3495. },
  3496. back: {
  3497. height: math.unit(2, "meter"),
  3498. weight: math.unit(60, "kg"),
  3499. name: "Back",
  3500. image: {
  3501. source: "./media/characters/ebony/back.svg",
  3502. bottom: 0.01,
  3503. extra: 1045 / 810 + 0.01
  3504. }
  3505. },
  3506. },
  3507. [
  3508. // TODO check why I did this lol
  3509. {
  3510. name: "Standard",
  3511. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Macro",
  3516. height: math.unit(200, "feet")
  3517. },
  3518. {
  3519. name: "Gigamacro",
  3520. height: math.unit(13000, "km")
  3521. }
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(6, "feet"),
  3529. weight: math.unit(175, "lb"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/mountain/front.svg",
  3533. extra: 972 / 955,
  3534. bottom: 64 / 1036.6
  3535. }
  3536. },
  3537. back: {
  3538. height: math.unit(6, "feet"),
  3539. weight: math.unit(175, "lb"),
  3540. name: "Back",
  3541. image: {
  3542. source: "./media/characters/mountain/back.svg",
  3543. extra: 970 / 950,
  3544. bottom: 28.25 / 999
  3545. }
  3546. },
  3547. },
  3548. [
  3549. {
  3550. name: "Large",
  3551. height: math.unit(20, "meters")
  3552. },
  3553. {
  3554. name: "Macro",
  3555. height: math.unit(300, "meters")
  3556. },
  3557. {
  3558. name: "Gigamacro",
  3559. height: math.unit(10000, "km"),
  3560. default: true
  3561. },
  3562. {
  3563. name: "Examacro",
  3564. height: math.unit(10e9, "lightyears")
  3565. }
  3566. ]
  3567. ))
  3568. characterMakers.push(() => makeCharacter(
  3569. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3570. {
  3571. front: {
  3572. height: math.unit(8, "feet"),
  3573. weight: math.unit(500, "lb"),
  3574. name: "Front",
  3575. image: {
  3576. source: "./media/characters/rick/front.svg"
  3577. }
  3578. }
  3579. },
  3580. [
  3581. {
  3582. name: "Normal",
  3583. height: math.unit(8, "feet"),
  3584. default: true
  3585. },
  3586. {
  3587. name: "Macro",
  3588. height: math.unit(5, "km")
  3589. }
  3590. ]
  3591. ))
  3592. characterMakers.push(() => makeCharacter(
  3593. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3594. {
  3595. front: {
  3596. height: math.unit(8, "feet"),
  3597. weight: math.unit(120, "lb"),
  3598. name: "Front",
  3599. image: {
  3600. source: "./media/characters/ona/front.svg"
  3601. }
  3602. },
  3603. frontAlt: {
  3604. height: math.unit(8, "feet"),
  3605. weight: math.unit(120, "lb"),
  3606. name: "Front (Alt)",
  3607. image: {
  3608. source: "./media/characters/ona/front-alt.svg"
  3609. }
  3610. },
  3611. back: {
  3612. height: math.unit(8, "feet"),
  3613. weight: math.unit(120, "lb"),
  3614. name: "Back",
  3615. image: {
  3616. source: "./media/characters/ona/back.svg"
  3617. }
  3618. },
  3619. foot: {
  3620. height: math.unit(1.1, "feet"),
  3621. name: "Foot",
  3622. image: {
  3623. source: "./media/characters/ona/foot.svg"
  3624. }
  3625. }
  3626. },
  3627. [
  3628. {
  3629. name: "Megamacro",
  3630. height: math.unit(70, "km"),
  3631. default: true
  3632. },
  3633. {
  3634. name: "Gigamacro",
  3635. height: math.unit(681818, "miles")
  3636. },
  3637. {
  3638. name: "Examacro",
  3639. height: math.unit(3800000, "lightyears")
  3640. },
  3641. ]
  3642. ))
  3643. characterMakers.push(() => makeCharacter(
  3644. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3645. {
  3646. front: {
  3647. height: math.unit(12, "feet"),
  3648. weight: math.unit(3000, "lb"),
  3649. name: "Front",
  3650. image: {
  3651. source: "./media/characters/mech/front.svg",
  3652. extra: 2900 / 2770,
  3653. bottom: 110 / 3010
  3654. }
  3655. },
  3656. back: {
  3657. height: math.unit(12, "feet"),
  3658. weight: math.unit(3000, "lb"),
  3659. name: "Back",
  3660. image: {
  3661. source: "./media/characters/mech/back.svg",
  3662. extra: 3011 / 2890,
  3663. bottom: 94 / 3105
  3664. }
  3665. },
  3666. maw: {
  3667. height: math.unit(3.07, "feet"),
  3668. name: "Maw",
  3669. image: {
  3670. source: "./media/characters/mech/maw.svg"
  3671. }
  3672. },
  3673. head: {
  3674. height: math.unit(2.82, "feet"),
  3675. name: "Head",
  3676. image: {
  3677. source: "./media/characters/mech/head.svg"
  3678. }
  3679. },
  3680. dick: {
  3681. height: math.unit(1.43, "feet"),
  3682. name: "Dick",
  3683. image: {
  3684. source: "./media/characters/mech/dick.svg"
  3685. }
  3686. },
  3687. },
  3688. [
  3689. {
  3690. name: "Normal",
  3691. height: math.unit(12, "feet")
  3692. },
  3693. {
  3694. name: "Macro",
  3695. height: math.unit(300, "feet"),
  3696. default: true
  3697. },
  3698. {
  3699. name: "Macro+",
  3700. height: math.unit(1500, "feet")
  3701. },
  3702. ]
  3703. ))
  3704. characterMakers.push(() => makeCharacter(
  3705. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3706. {
  3707. front: {
  3708. height: math.unit(1.3, "meter"),
  3709. weight: math.unit(30, "kg"),
  3710. name: "Front",
  3711. image: {
  3712. source: "./media/characters/gregory/front.svg",
  3713. }
  3714. }
  3715. },
  3716. [
  3717. {
  3718. name: "Normal",
  3719. height: math.unit(1.3, "meter"),
  3720. default: true
  3721. },
  3722. {
  3723. name: "Macro",
  3724. height: math.unit(20, "meter")
  3725. }
  3726. ]
  3727. ))
  3728. characterMakers.push(() => makeCharacter(
  3729. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3730. {
  3731. front: {
  3732. height: math.unit(2.8, "meter"),
  3733. weight: math.unit(200, "kg"),
  3734. name: "Front",
  3735. image: {
  3736. source: "./media/characters/elory/front.svg",
  3737. }
  3738. }
  3739. },
  3740. [
  3741. {
  3742. name: "Normal",
  3743. height: math.unit(2.8, "meter"),
  3744. default: true
  3745. },
  3746. {
  3747. name: "Macro",
  3748. height: math.unit(38, "meter")
  3749. }
  3750. ]
  3751. ))
  3752. characterMakers.push(() => makeCharacter(
  3753. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3754. {
  3755. front: {
  3756. height: math.unit(470, "feet"),
  3757. weight: math.unit(924, "tons"),
  3758. name: "Front",
  3759. image: {
  3760. source: "./media/characters/angelpatamon/front.svg",
  3761. }
  3762. }
  3763. },
  3764. [
  3765. {
  3766. name: "Normal",
  3767. height: math.unit(470, "feet"),
  3768. default: true
  3769. },
  3770. {
  3771. name: "Deity Size I",
  3772. height: math.unit(28651.2, "km")
  3773. },
  3774. {
  3775. name: "Deity Size II",
  3776. height: math.unit(171907.2, "km")
  3777. }
  3778. ]
  3779. ))
  3780. characterMakers.push(() => makeCharacter(
  3781. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3782. {
  3783. side: {
  3784. height: math.unit(7.2, "meter"),
  3785. weight: math.unit(8.2, "tons"),
  3786. name: "Side",
  3787. image: {
  3788. source: "./media/characters/cryae/side.svg",
  3789. extra: 3500 / 1500
  3790. }
  3791. }
  3792. },
  3793. [
  3794. {
  3795. name: "Normal",
  3796. height: math.unit(7.2, "meter"),
  3797. default: true
  3798. }
  3799. ]
  3800. ))
  3801. characterMakers.push(() => makeCharacter(
  3802. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3803. {
  3804. front: {
  3805. height: math.unit(6, "feet"),
  3806. weight: math.unit(175, "lb"),
  3807. name: "Front",
  3808. image: {
  3809. source: "./media/characters/xera/front.svg",
  3810. extra: 2377 / 1972,
  3811. bottom: 75.5 / 2452
  3812. }
  3813. },
  3814. side: {
  3815. height: math.unit(6, "feet"),
  3816. weight: math.unit(175, "lb"),
  3817. name: "Side",
  3818. image: {
  3819. source: "./media/characters/xera/side.svg",
  3820. extra: 2345 / 2019,
  3821. bottom: 39.7 / 2384
  3822. }
  3823. },
  3824. back: {
  3825. height: math.unit(6, "feet"),
  3826. weight: math.unit(175, "lb"),
  3827. name: "Back",
  3828. image: {
  3829. source: "./media/characters/xera/back.svg",
  3830. extra: 2095 / 1984,
  3831. bottom: 67 / 2166
  3832. }
  3833. },
  3834. },
  3835. [
  3836. {
  3837. name: "Small",
  3838. height: math.unit(10, "feet")
  3839. },
  3840. {
  3841. name: "Macro",
  3842. height: math.unit(500, "meters"),
  3843. default: true
  3844. },
  3845. {
  3846. name: "Macro+",
  3847. height: math.unit(10, "km")
  3848. },
  3849. {
  3850. name: "Gigamacro",
  3851. height: math.unit(25000, "km")
  3852. },
  3853. {
  3854. name: "Teramacro",
  3855. height: math.unit(3e6, "km")
  3856. }
  3857. ]
  3858. ))
  3859. characterMakers.push(() => makeCharacter(
  3860. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3861. {
  3862. front: {
  3863. height: math.unit(6, "feet"),
  3864. weight: math.unit(175, "lb"),
  3865. name: "Front",
  3866. image: {
  3867. source: "./media/characters/nebula/front.svg",
  3868. extra: 2566 / 2362,
  3869. bottom: 81 / 2644
  3870. }
  3871. }
  3872. },
  3873. [
  3874. {
  3875. name: "Small",
  3876. height: math.unit(4.5, "meters")
  3877. },
  3878. {
  3879. name: "Macro",
  3880. height: math.unit(1500, "meters"),
  3881. default: true
  3882. },
  3883. {
  3884. name: "Megamacro",
  3885. height: math.unit(150, "km")
  3886. },
  3887. {
  3888. name: "Gigamacro",
  3889. height: math.unit(27000, "km")
  3890. }
  3891. ]
  3892. ))
  3893. characterMakers.push(() => makeCharacter(
  3894. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3895. {
  3896. front: {
  3897. height: math.unit(6, "feet"),
  3898. weight: math.unit(225, "lb"),
  3899. name: "Front",
  3900. image: {
  3901. source: "./media/characters/abysgar/front.svg"
  3902. }
  3903. }
  3904. },
  3905. [
  3906. {
  3907. name: "Small",
  3908. height: math.unit(4.5, "meters")
  3909. },
  3910. {
  3911. name: "Macro",
  3912. height: math.unit(1250, "meters"),
  3913. default: true
  3914. },
  3915. {
  3916. name: "Megamacro",
  3917. height: math.unit(125, "km")
  3918. },
  3919. {
  3920. name: "Gigamacro",
  3921. height: math.unit(26000, "km")
  3922. }
  3923. ]
  3924. ))
  3925. characterMakers.push(() => makeCharacter(
  3926. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3927. {
  3928. front: {
  3929. height: math.unit(6, "feet"),
  3930. weight: math.unit(180, "lb"),
  3931. name: "Front",
  3932. image: {
  3933. source: "./media/characters/yakuz/front.svg"
  3934. }
  3935. }
  3936. },
  3937. [
  3938. {
  3939. name: "Small",
  3940. height: math.unit(5, "meters")
  3941. },
  3942. {
  3943. name: "Macro",
  3944. height: math.unit(1500, "meters"),
  3945. default: true
  3946. },
  3947. {
  3948. name: "Megamacro",
  3949. height: math.unit(200, "km")
  3950. },
  3951. {
  3952. name: "Gigamacro",
  3953. height: math.unit(100000, "km")
  3954. }
  3955. ]
  3956. ))
  3957. characterMakers.push(() => makeCharacter(
  3958. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3959. {
  3960. front: {
  3961. height: math.unit(6, "feet"),
  3962. weight: math.unit(175, "lb"),
  3963. name: "Front",
  3964. image: {
  3965. source: "./media/characters/mirova/front.svg",
  3966. extra: 3334 / 3071,
  3967. bottom: 42 / 3375.6
  3968. }
  3969. }
  3970. },
  3971. [
  3972. {
  3973. name: "Small",
  3974. height: math.unit(5, "meters")
  3975. },
  3976. {
  3977. name: "Macro",
  3978. height: math.unit(900, "meters"),
  3979. default: true
  3980. },
  3981. {
  3982. name: "Megamacro",
  3983. height: math.unit(135, "km")
  3984. },
  3985. {
  3986. name: "Gigamacro",
  3987. height: math.unit(20000, "km")
  3988. }
  3989. ]
  3990. ))
  3991. characterMakers.push(() => makeCharacter(
  3992. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3993. {
  3994. side: {
  3995. height: math.unit(28.35, "feet"),
  3996. weight: math.unit(99.75, "tons"),
  3997. name: "Side",
  3998. image: {
  3999. source: "./media/characters/asana-mech/side.svg",
  4000. extra: 923 / 699,
  4001. bottom: 50 / 975
  4002. }
  4003. },
  4004. chaingun: {
  4005. height: math.unit(7, "feet"),
  4006. weight: math.unit(2400, "lb"),
  4007. name: "Chaingun",
  4008. image: {
  4009. source: "./media/characters/asana-mech/chaingun.svg"
  4010. }
  4011. },
  4012. laser: {
  4013. height: math.unit(7.12, "feet"),
  4014. weight: math.unit(2000, "lb"),
  4015. name: "Laser",
  4016. image: {
  4017. source: "./media/characters/asana-mech/laser.svg"
  4018. }
  4019. },
  4020. },
  4021. [
  4022. {
  4023. name: "Normal",
  4024. height: math.unit(28.35, "feet"),
  4025. default: true
  4026. },
  4027. {
  4028. name: "Macro",
  4029. height: math.unit(2500, "feet")
  4030. },
  4031. {
  4032. name: "Megamacro",
  4033. height: math.unit(25, "miles")
  4034. },
  4035. {
  4036. name: "Examacro",
  4037. height: math.unit(6e8, "lightyears")
  4038. },
  4039. ]
  4040. ))
  4041. characterMakers.push(() => makeCharacter(
  4042. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4043. {
  4044. front: {
  4045. height: math.unit(5, "meters"),
  4046. weight: math.unit(1000, "kg"),
  4047. name: "Front",
  4048. image: {
  4049. source: "./media/characters/asche/front.svg",
  4050. extra: 1258 / 1190,
  4051. bottom: 47 / 1305
  4052. }
  4053. },
  4054. frontUnderwear: {
  4055. height: math.unit(5, "meters"),
  4056. weight: math.unit(1000, "kg"),
  4057. name: "Front (Underwear)",
  4058. image: {
  4059. source: "./media/characters/asche/front-underwear.svg",
  4060. extra: 1258 / 1190,
  4061. bottom: 47 / 1305
  4062. }
  4063. },
  4064. frontDressed: {
  4065. height: math.unit(5, "meters"),
  4066. weight: math.unit(1000, "kg"),
  4067. name: "Front (Dressed)",
  4068. image: {
  4069. source: "./media/characters/asche/front-dressed.svg",
  4070. extra: 1258 / 1190,
  4071. bottom: 47 / 1305
  4072. }
  4073. },
  4074. frontArmor: {
  4075. height: math.unit(5, "meters"),
  4076. weight: math.unit(1000, "kg"),
  4077. name: "Front (Armored)",
  4078. image: {
  4079. source: "./media/characters/asche/front-armored.svg",
  4080. extra: 1374 / 1308,
  4081. bottom: 23 / 1397
  4082. }
  4083. },
  4084. mp724: {
  4085. height: math.unit(0.96, "meters"),
  4086. weight: math.unit(38, "kg"),
  4087. name: "H&K MP724",
  4088. image: {
  4089. source: "./media/characters/asche/h&k-mp724.svg"
  4090. }
  4091. },
  4092. side: {
  4093. height: math.unit(5, "meters"),
  4094. weight: math.unit(1000, "kg"),
  4095. name: "Side",
  4096. image: {
  4097. source: "./media/characters/asche/side.svg",
  4098. extra: 1717 / 1609,
  4099. bottom: 0.005
  4100. }
  4101. },
  4102. back: {
  4103. height: math.unit(5, "meters"),
  4104. weight: math.unit(1000, "kg"),
  4105. name: "Back",
  4106. image: {
  4107. source: "./media/characters/asche/back.svg",
  4108. extra: 1570 / 1501
  4109. }
  4110. },
  4111. },
  4112. [
  4113. {
  4114. name: "DEFCON 5",
  4115. height: math.unit(5, "meters")
  4116. },
  4117. {
  4118. name: "DEFCON 4",
  4119. height: math.unit(500, "meters"),
  4120. default: true
  4121. },
  4122. {
  4123. name: "DEFCON 3",
  4124. height: math.unit(5, "km")
  4125. },
  4126. {
  4127. name: "DEFCON 2",
  4128. height: math.unit(500, "km")
  4129. },
  4130. {
  4131. name: "DEFCON 1",
  4132. height: math.unit(500000, "km")
  4133. },
  4134. {
  4135. name: "DEFCON 0",
  4136. height: math.unit(3, "gigaparsecs")
  4137. },
  4138. ]
  4139. ))
  4140. characterMakers.push(() => makeCharacter(
  4141. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4142. {
  4143. front: {
  4144. height: math.unit(2, "meters"),
  4145. weight: math.unit(76, "kg"),
  4146. name: "Front",
  4147. image: {
  4148. source: "./media/characters/gale/front.svg"
  4149. }
  4150. },
  4151. frontAlt1: {
  4152. height: math.unit(2, "meters"),
  4153. weight: math.unit(76, "kg"),
  4154. name: "Front (Alt 1)",
  4155. image: {
  4156. source: "./media/characters/gale/front-alt-1.svg"
  4157. }
  4158. },
  4159. frontAlt2: {
  4160. height: math.unit(2, "meters"),
  4161. weight: math.unit(76, "kg"),
  4162. name: "Front (Alt 2)",
  4163. image: {
  4164. source: "./media/characters/gale/front-alt-2.svg"
  4165. }
  4166. },
  4167. },
  4168. [
  4169. {
  4170. name: "Normal",
  4171. height: math.unit(7, "feet")
  4172. },
  4173. {
  4174. name: "Macro",
  4175. height: math.unit(150, "feet"),
  4176. default: true
  4177. },
  4178. {
  4179. name: "Macro+",
  4180. height: math.unit(300, "feet")
  4181. },
  4182. ]
  4183. ))
  4184. characterMakers.push(() => makeCharacter(
  4185. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4186. {
  4187. front: {
  4188. height: math.unit(2, "meters"),
  4189. weight: math.unit(76, "kg"),
  4190. name: "Front",
  4191. image: {
  4192. source: "./media/characters/draylen/front.svg"
  4193. }
  4194. }
  4195. },
  4196. [
  4197. {
  4198. name: "Macro",
  4199. height: math.unit(150, "feet"),
  4200. default: true
  4201. }
  4202. ]
  4203. ))
  4204. characterMakers.push(() => makeCharacter(
  4205. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4206. {
  4207. front: {
  4208. height: math.unit(7 + 9 / 12, "feet"),
  4209. weight: math.unit(379, "lbs"),
  4210. name: "Front",
  4211. image: {
  4212. source: "./media/characters/chez/front.svg"
  4213. }
  4214. },
  4215. side: {
  4216. height: math.unit(7 + 9 / 12, "feet"),
  4217. weight: math.unit(379, "lbs"),
  4218. name: "Side",
  4219. image: {
  4220. source: "./media/characters/chez/side.svg"
  4221. }
  4222. }
  4223. },
  4224. [
  4225. {
  4226. name: "Normal",
  4227. height: math.unit(7 + 9 / 12, "feet"),
  4228. default: true
  4229. },
  4230. {
  4231. name: "God King",
  4232. height: math.unit(9750000, "meters")
  4233. }
  4234. ]
  4235. ))
  4236. characterMakers.push(() => makeCharacter(
  4237. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4238. {
  4239. front: {
  4240. height: math.unit(6, "feet"),
  4241. weight: math.unit(275, "lbs"),
  4242. name: "Front",
  4243. image: {
  4244. source: "./media/characters/kaylum/front.svg",
  4245. bottom: 0.01,
  4246. extra: 1166 / 1031
  4247. }
  4248. },
  4249. frontWingless: {
  4250. height: math.unit(6, "feet"),
  4251. weight: math.unit(275, "lbs"),
  4252. name: "Front (Wingless)",
  4253. image: {
  4254. source: "./media/characters/kaylum/front-wingless.svg",
  4255. bottom: 0.01,
  4256. extra: 1117 / 1031
  4257. }
  4258. }
  4259. },
  4260. [
  4261. {
  4262. name: "Normal",
  4263. height: math.unit(3.05, "meters")
  4264. },
  4265. {
  4266. name: "Master",
  4267. height: math.unit(5.5, "meters")
  4268. },
  4269. {
  4270. name: "Rampage",
  4271. height: math.unit(19, "meters")
  4272. },
  4273. {
  4274. name: "Macro Lite",
  4275. height: math.unit(37, "meters")
  4276. },
  4277. {
  4278. name: "Hyper Predator",
  4279. height: math.unit(61, "meters")
  4280. },
  4281. {
  4282. name: "Macro",
  4283. height: math.unit(138, "meters"),
  4284. default: true
  4285. }
  4286. ]
  4287. ))
  4288. characterMakers.push(() => makeCharacter(
  4289. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4290. {
  4291. front: {
  4292. height: math.unit(6, "feet"),
  4293. weight: math.unit(150, "lbs"),
  4294. name: "Front",
  4295. image: {
  4296. source: "./media/characters/geta/front.svg"
  4297. }
  4298. }
  4299. },
  4300. [
  4301. {
  4302. name: "Micro",
  4303. height: math.unit(3, "inches"),
  4304. default: true
  4305. },
  4306. {
  4307. name: "Normal",
  4308. height: math.unit(5 + 5 / 12, "feet")
  4309. }
  4310. ]
  4311. ))
  4312. characterMakers.push(() => makeCharacter(
  4313. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4314. {
  4315. front: {
  4316. height: math.unit(6, "feet"),
  4317. weight: math.unit(300, "lbs"),
  4318. name: "Front",
  4319. image: {
  4320. source: "./media/characters/tyrnn/front.svg"
  4321. }
  4322. }
  4323. },
  4324. [
  4325. {
  4326. name: "Main Height",
  4327. height: math.unit(355, "feet"),
  4328. default: true
  4329. },
  4330. {
  4331. name: "Fave. Height",
  4332. height: math.unit(2400, "feet")
  4333. }
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4338. {
  4339. front: {
  4340. height: math.unit(6, "feet"),
  4341. weight: math.unit(300, "lbs"),
  4342. name: "Front",
  4343. image: {
  4344. source: "./media/characters/appledectomy/front.svg"
  4345. }
  4346. }
  4347. },
  4348. [
  4349. {
  4350. name: "Macro",
  4351. height: math.unit(2500, "feet")
  4352. },
  4353. {
  4354. name: "Megamacro",
  4355. height: math.unit(50, "miles"),
  4356. default: true
  4357. },
  4358. {
  4359. name: "Gigamacro",
  4360. height: math.unit(5000, "miles")
  4361. },
  4362. {
  4363. name: "Teramacro",
  4364. height: math.unit(250000, "miles")
  4365. },
  4366. ]
  4367. ))
  4368. characterMakers.push(() => makeCharacter(
  4369. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4370. {
  4371. front: {
  4372. height: math.unit(6, "feet"),
  4373. weight: math.unit(200, "lbs"),
  4374. name: "Front",
  4375. image: {
  4376. source: "./media/characters/vulpes/front.svg",
  4377. extra: 573 / 543,
  4378. bottom: 0.033
  4379. }
  4380. },
  4381. side: {
  4382. height: math.unit(6, "feet"),
  4383. weight: math.unit(200, "lbs"),
  4384. name: "Side",
  4385. image: {
  4386. source: "./media/characters/vulpes/side.svg",
  4387. extra: 577 / 549,
  4388. bottom: 11 / 588
  4389. }
  4390. },
  4391. back: {
  4392. height: math.unit(6, "feet"),
  4393. weight: math.unit(200, "lbs"),
  4394. name: "Back",
  4395. image: {
  4396. source: "./media/characters/vulpes/back.svg",
  4397. extra: 573 / 549,
  4398. bottom: 20 / 593
  4399. }
  4400. },
  4401. feet: {
  4402. height: math.unit(1.276, "feet"),
  4403. name: "Feet",
  4404. image: {
  4405. source: "./media/characters/vulpes/feet.svg"
  4406. }
  4407. },
  4408. maw: {
  4409. height: math.unit(1.18, "feet"),
  4410. name: "Maw",
  4411. image: {
  4412. source: "./media/characters/vulpes/maw.svg"
  4413. }
  4414. },
  4415. },
  4416. [
  4417. {
  4418. name: "Micro",
  4419. height: math.unit(2, "inches")
  4420. },
  4421. {
  4422. name: "Normal",
  4423. height: math.unit(6.3, "feet")
  4424. },
  4425. {
  4426. name: "Macro",
  4427. height: math.unit(850, "feet")
  4428. },
  4429. {
  4430. name: "Megamacro",
  4431. height: math.unit(7500, "feet"),
  4432. default: true
  4433. },
  4434. {
  4435. name: "Gigamacro",
  4436. height: math.unit(570000, "miles")
  4437. }
  4438. ]
  4439. ))
  4440. characterMakers.push(() => makeCharacter(
  4441. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4442. {
  4443. front: {
  4444. height: math.unit(6, "feet"),
  4445. weight: math.unit(210, "lbs"),
  4446. name: "Front",
  4447. image: {
  4448. source: "./media/characters/rain-fallen/front.svg"
  4449. }
  4450. },
  4451. side: {
  4452. height: math.unit(6, "feet"),
  4453. weight: math.unit(210, "lbs"),
  4454. name: "Side",
  4455. image: {
  4456. source: "./media/characters/rain-fallen/side.svg"
  4457. }
  4458. },
  4459. back: {
  4460. height: math.unit(6, "feet"),
  4461. weight: math.unit(210, "lbs"),
  4462. name: "Back",
  4463. image: {
  4464. source: "./media/characters/rain-fallen/back.svg"
  4465. }
  4466. },
  4467. feral: {
  4468. height: math.unit(9, "feet"),
  4469. weight: math.unit(700, "lbs"),
  4470. name: "Feral",
  4471. image: {
  4472. source: "./media/characters/rain-fallen/feral.svg"
  4473. }
  4474. },
  4475. },
  4476. [
  4477. {
  4478. name: "Meddling with Mortals",
  4479. height: math.unit(8 + 8/12, "feet")
  4480. },
  4481. {
  4482. name: "Normal",
  4483. height: math.unit(5, "meter")
  4484. },
  4485. {
  4486. name: "Macro",
  4487. height: math.unit(150, "meter"),
  4488. default: true
  4489. },
  4490. {
  4491. name: "Megamacro",
  4492. height: math.unit(278e6, "meter")
  4493. },
  4494. {
  4495. name: "Gigamacro",
  4496. height: math.unit(2e9, "meter")
  4497. },
  4498. {
  4499. name: "Teramacro",
  4500. height: math.unit(8e12, "meter")
  4501. },
  4502. {
  4503. name: "Devourer",
  4504. height: math.unit(14, "zettameters")
  4505. },
  4506. {
  4507. name: "Scarlet King",
  4508. height: math.unit(18, "yottameters")
  4509. },
  4510. {
  4511. name: "Void",
  4512. height: math.unit(1e88, "yottameters")
  4513. }
  4514. ]
  4515. ))
  4516. characterMakers.push(() => makeCharacter(
  4517. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4518. {
  4519. standing: {
  4520. height: math.unit(6, "feet"),
  4521. weight: math.unit(180, "lbs"),
  4522. name: "Standing",
  4523. image: {
  4524. source: "./media/characters/zaakira/standing.svg"
  4525. }
  4526. },
  4527. laying: {
  4528. height: math.unit(3, "feet"),
  4529. weight: math.unit(180, "lbs"),
  4530. name: "Laying",
  4531. image: {
  4532. source: "./media/characters/zaakira/laying.svg"
  4533. }
  4534. },
  4535. },
  4536. [
  4537. {
  4538. name: "Normal",
  4539. height: math.unit(12, "feet")
  4540. },
  4541. {
  4542. name: "Macro",
  4543. height: math.unit(279, "feet"),
  4544. default: true
  4545. }
  4546. ]
  4547. ))
  4548. characterMakers.push(() => makeCharacter(
  4549. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4550. {
  4551. femSfw: {
  4552. height: math.unit(8, "feet"),
  4553. weight: math.unit(350, "lb"),
  4554. name: "Fem",
  4555. image: {
  4556. source: "./media/characters/sigvald/fem-sfw.svg",
  4557. extra: 182 / 164,
  4558. bottom: 8.7 / 190.5
  4559. }
  4560. },
  4561. femNsfw: {
  4562. height: math.unit(8, "feet"),
  4563. weight: math.unit(350, "lb"),
  4564. name: "Fem (NSFW)",
  4565. image: {
  4566. source: "./media/characters/sigvald/fem-nsfw.svg",
  4567. extra: 182 / 164,
  4568. bottom: 8.7 / 190.5
  4569. }
  4570. },
  4571. maleNsfw: {
  4572. height: math.unit(8, "feet"),
  4573. weight: math.unit(350, "lb"),
  4574. name: "Male (NSFW)",
  4575. image: {
  4576. source: "./media/characters/sigvald/male-nsfw.svg",
  4577. extra: 182 / 164,
  4578. bottom: 8.7 / 190.5
  4579. }
  4580. },
  4581. hermNsfw: {
  4582. height: math.unit(8, "feet"),
  4583. weight: math.unit(350, "lb"),
  4584. name: "Herm (NSFW)",
  4585. image: {
  4586. source: "./media/characters/sigvald/herm-nsfw.svg",
  4587. extra: 182 / 164,
  4588. bottom: 8.7 / 190.5
  4589. }
  4590. },
  4591. dick: {
  4592. height: math.unit(2.36, "feet"),
  4593. name: "Dick",
  4594. image: {
  4595. source: "./media/characters/sigvald/dick.svg"
  4596. }
  4597. },
  4598. eye: {
  4599. height: math.unit(0.31, "feet"),
  4600. name: "Eye",
  4601. image: {
  4602. source: "./media/characters/sigvald/eye.svg"
  4603. }
  4604. },
  4605. mouth: {
  4606. height: math.unit(0.92, "feet"),
  4607. name: "Mouth",
  4608. image: {
  4609. source: "./media/characters/sigvald/mouth.svg"
  4610. }
  4611. },
  4612. paws: {
  4613. height: math.unit(2.2, "feet"),
  4614. name: "Paws",
  4615. image: {
  4616. source: "./media/characters/sigvald/paws.svg"
  4617. }
  4618. }
  4619. },
  4620. [
  4621. {
  4622. name: "Normal",
  4623. height: math.unit(8, "feet")
  4624. },
  4625. {
  4626. name: "Large",
  4627. height: math.unit(12, "feet")
  4628. },
  4629. {
  4630. name: "Larger",
  4631. height: math.unit(20, "feet")
  4632. },
  4633. {
  4634. name: "Macro",
  4635. height: math.unit(150, "feet")
  4636. },
  4637. {
  4638. name: "Macro+",
  4639. height: math.unit(200, "feet"),
  4640. default: true
  4641. },
  4642. ]
  4643. ))
  4644. characterMakers.push(() => makeCharacter(
  4645. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4646. {
  4647. side: {
  4648. height: math.unit(12, "feet"),
  4649. weight: math.unit(2000, "kg"),
  4650. name: "Side",
  4651. image: {
  4652. source: "./media/characters/scott/side.svg",
  4653. extra: 754 / 724,
  4654. bottom: 0.069
  4655. }
  4656. },
  4657. upright: {
  4658. height: math.unit(12, "feet"),
  4659. weight: math.unit(2000, "kg"),
  4660. name: "Upright",
  4661. image: {
  4662. source: "./media/characters/scott/upright.svg",
  4663. extra: 3881 / 3722,
  4664. bottom: 0.05
  4665. }
  4666. },
  4667. },
  4668. [
  4669. {
  4670. name: "Normal",
  4671. height: math.unit(12, "feet"),
  4672. default: true
  4673. },
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4678. {
  4679. side: {
  4680. height: math.unit(8, "meters"),
  4681. weight: math.unit(84755, "lbs"),
  4682. name: "Side",
  4683. image: {
  4684. source: "./media/characters/tobias/side.svg",
  4685. extra: 1474 / 1096,
  4686. bottom: 38.9 / 1513.1235
  4687. }
  4688. },
  4689. },
  4690. [
  4691. {
  4692. name: "Normal",
  4693. height: math.unit(8, "meters"),
  4694. default: true
  4695. },
  4696. ]
  4697. ))
  4698. characterMakers.push(() => makeCharacter(
  4699. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4700. {
  4701. front: {
  4702. height: math.unit(5.5, "feet"),
  4703. weight: math.unit(400, "lbs"),
  4704. name: "Front",
  4705. image: {
  4706. source: "./media/characters/kieran/front.svg",
  4707. extra: 2694 / 2364,
  4708. bottom: 217 / 2908
  4709. }
  4710. },
  4711. side: {
  4712. height: math.unit(5.5, "feet"),
  4713. weight: math.unit(400, "lbs"),
  4714. name: "Side",
  4715. image: {
  4716. source: "./media/characters/kieran/side.svg",
  4717. extra: 875 / 777,
  4718. bottom: 84.6 / 959
  4719. }
  4720. },
  4721. },
  4722. [
  4723. {
  4724. name: "Normal",
  4725. height: math.unit(5.5, "feet"),
  4726. default: true
  4727. },
  4728. ]
  4729. ))
  4730. characterMakers.push(() => makeCharacter(
  4731. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4732. {
  4733. side: {
  4734. height: math.unit(2, "meters"),
  4735. weight: math.unit(70, "kg"),
  4736. name: "Side",
  4737. image: {
  4738. source: "./media/characters/sanya/side.svg",
  4739. bottom: 0.02,
  4740. extra: 1.02
  4741. }
  4742. },
  4743. },
  4744. [
  4745. {
  4746. name: "Small",
  4747. height: math.unit(2, "meters")
  4748. },
  4749. {
  4750. name: "Normal",
  4751. height: math.unit(3, "meters")
  4752. },
  4753. {
  4754. name: "Macro",
  4755. height: math.unit(16, "meters"),
  4756. default: true
  4757. },
  4758. ]
  4759. ))
  4760. characterMakers.push(() => makeCharacter(
  4761. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4762. {
  4763. front: {
  4764. height: math.unit(2, "meters"),
  4765. weight: math.unit(120, "kg"),
  4766. name: "Front",
  4767. image: {
  4768. source: "./media/characters/miranda/front.svg",
  4769. extra: 195 / 185,
  4770. bottom: 10.9 / 206.5
  4771. }
  4772. },
  4773. back: {
  4774. height: math.unit(2, "meters"),
  4775. weight: math.unit(120, "kg"),
  4776. name: "Back",
  4777. image: {
  4778. source: "./media/characters/miranda/back.svg",
  4779. extra: 201 / 193,
  4780. bottom: 2.3 / 203.7
  4781. }
  4782. },
  4783. },
  4784. [
  4785. {
  4786. name: "Normal",
  4787. height: math.unit(10, "feet"),
  4788. default: true
  4789. }
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "James", species: ["deer"], tags: ["anthro"] },
  4794. {
  4795. side: {
  4796. height: math.unit(2, "meters"),
  4797. weight: math.unit(100, "kg"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/james/front.svg",
  4801. extra: 10 / 8.5
  4802. }
  4803. },
  4804. },
  4805. [
  4806. {
  4807. name: "Normal",
  4808. height: math.unit(8.5, "feet"),
  4809. default: true
  4810. }
  4811. ]
  4812. ))
  4813. characterMakers.push(() => makeCharacter(
  4814. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4815. {
  4816. side: {
  4817. height: math.unit(9.5, "feet"),
  4818. weight: math.unit(2500, "lbs"),
  4819. name: "Side",
  4820. image: {
  4821. source: "./media/characters/heather/side.svg"
  4822. }
  4823. },
  4824. },
  4825. [
  4826. {
  4827. name: "Normal",
  4828. height: math.unit(9.5, "feet"),
  4829. default: true
  4830. }
  4831. ]
  4832. ))
  4833. characterMakers.push(() => makeCharacter(
  4834. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4835. {
  4836. side: {
  4837. height: math.unit(6.5, "feet"),
  4838. weight: math.unit(400, "lbs"),
  4839. name: "Side",
  4840. image: {
  4841. source: "./media/characters/lukas/side.svg",
  4842. extra: 7.25 / 6.5
  4843. }
  4844. },
  4845. },
  4846. [
  4847. {
  4848. name: "Normal",
  4849. height: math.unit(6.5, "feet"),
  4850. default: true
  4851. }
  4852. ]
  4853. ))
  4854. characterMakers.push(() => makeCharacter(
  4855. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4856. {
  4857. side: {
  4858. height: math.unit(5, "feet"),
  4859. weight: math.unit(3000, "lbs"),
  4860. name: "Side",
  4861. image: {
  4862. source: "./media/characters/louise/side.svg"
  4863. }
  4864. },
  4865. },
  4866. [
  4867. {
  4868. name: "Normal",
  4869. height: math.unit(5, "feet"),
  4870. default: true
  4871. }
  4872. ]
  4873. ))
  4874. characterMakers.push(() => makeCharacter(
  4875. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4876. {
  4877. side: {
  4878. height: math.unit(6, "feet"),
  4879. weight: math.unit(150, "lbs"),
  4880. name: "Side",
  4881. image: {
  4882. source: "./media/characters/ramona/side.svg"
  4883. }
  4884. },
  4885. },
  4886. [
  4887. {
  4888. name: "Normal",
  4889. height: math.unit(5.3, "meters"),
  4890. default: true
  4891. },
  4892. {
  4893. name: "Macro",
  4894. height: math.unit(20, "stories")
  4895. },
  4896. {
  4897. name: "Macro+",
  4898. height: math.unit(50, "stories")
  4899. },
  4900. ]
  4901. ))
  4902. characterMakers.push(() => makeCharacter(
  4903. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4904. {
  4905. standing: {
  4906. height: math.unit(5.75, "feet"),
  4907. weight: math.unit(160, "lbs"),
  4908. name: "Standing",
  4909. image: {
  4910. source: "./media/characters/deerpuff/standing.svg",
  4911. extra: 682 / 624
  4912. }
  4913. },
  4914. sitting: {
  4915. height: math.unit(5.75 / 1.79, "feet"),
  4916. weight: math.unit(160, "lbs"),
  4917. name: "Sitting",
  4918. image: {
  4919. source: "./media/characters/deerpuff/sitting.svg",
  4920. bottom: 44 / 400,
  4921. extra: 1
  4922. }
  4923. },
  4924. taurLaying: {
  4925. height: math.unit(6, "feet"),
  4926. weight: math.unit(400, "lbs"),
  4927. name: "Taur (Laying)",
  4928. image: {
  4929. source: "./media/characters/deerpuff/taur-laying.svg"
  4930. }
  4931. },
  4932. },
  4933. [
  4934. {
  4935. name: "Puffball",
  4936. height: math.unit(6, "inches")
  4937. },
  4938. {
  4939. name: "Normalpuff",
  4940. height: math.unit(5.75, "feet")
  4941. },
  4942. {
  4943. name: "Macropuff",
  4944. height: math.unit(1500, "feet"),
  4945. default: true
  4946. },
  4947. {
  4948. name: "Megapuff",
  4949. height: math.unit(500, "miles")
  4950. },
  4951. {
  4952. name: "Gigapuff",
  4953. height: math.unit(250000, "miles")
  4954. },
  4955. {
  4956. name: "Omegapuff",
  4957. height: math.unit(1000, "lightyears")
  4958. },
  4959. ]
  4960. ))
  4961. characterMakers.push(() => makeCharacter(
  4962. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4963. {
  4964. stomping: {
  4965. height: math.unit(6, "feet"),
  4966. weight: math.unit(170, "lbs"),
  4967. name: "Stomping",
  4968. image: {
  4969. source: "./media/characters/vivian/stomping.svg"
  4970. }
  4971. },
  4972. sitting: {
  4973. height: math.unit(6 / 1.75, "feet"),
  4974. weight: math.unit(170, "lbs"),
  4975. name: "Sitting",
  4976. image: {
  4977. source: "./media/characters/vivian/sitting.svg",
  4978. bottom: 1 / 6.4,
  4979. extra: 1,
  4980. }
  4981. },
  4982. },
  4983. [
  4984. {
  4985. name: "Normal",
  4986. height: math.unit(7, "feet"),
  4987. default: true
  4988. },
  4989. {
  4990. name: "Macro",
  4991. height: math.unit(10, "stories")
  4992. },
  4993. {
  4994. name: "Macro+",
  4995. height: math.unit(30, "stories")
  4996. },
  4997. {
  4998. name: "Megamacro",
  4999. height: math.unit(10, "miles")
  5000. },
  5001. {
  5002. name: "Megamacro+",
  5003. height: math.unit(2750000, "meters")
  5004. },
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(6, "feet"),
  5012. weight: math.unit(160, "lbs"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/prince/front.svg",
  5016. extra: 3400 / 3000
  5017. }
  5018. },
  5019. jumping: {
  5020. height: math.unit(6, "feet"),
  5021. weight: math.unit(160, "lbs"),
  5022. name: "Jumping",
  5023. image: {
  5024. source: "./media/characters/prince/jump.svg",
  5025. extra: 2555 / 2134
  5026. }
  5027. },
  5028. },
  5029. [
  5030. {
  5031. name: "Normal",
  5032. height: math.unit(7.75, "feet"),
  5033. default: true
  5034. },
  5035. {
  5036. name: "Not cute",
  5037. height: math.unit(17, "feet")
  5038. },
  5039. {
  5040. name: "I said NOT",
  5041. height: math.unit(91, "feet")
  5042. },
  5043. {
  5044. name: "Please stop",
  5045. height: math.unit(560, "feet")
  5046. },
  5047. {
  5048. name: "What have you done",
  5049. height: math.unit(2200, "feet")
  5050. },
  5051. {
  5052. name: "Deer God",
  5053. height: math.unit(3.6, "miles")
  5054. },
  5055. ]
  5056. ))
  5057. characterMakers.push(() => makeCharacter(
  5058. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5059. {
  5060. standing: {
  5061. height: math.unit(6, "feet"),
  5062. weight: math.unit(300, "lbs"),
  5063. name: "Standing",
  5064. image: {
  5065. source: "./media/characters/psymon/standing.svg",
  5066. extra: 1888 / 1810,
  5067. bottom: 0.05
  5068. }
  5069. },
  5070. slithering: {
  5071. height: math.unit(6, "feet"),
  5072. weight: math.unit(300, "lbs"),
  5073. name: "Slithering",
  5074. image: {
  5075. source: "./media/characters/psymon/slithering.svg",
  5076. extra: 1330 / 1224
  5077. }
  5078. },
  5079. slitheringAlt: {
  5080. height: math.unit(6, "feet"),
  5081. weight: math.unit(300, "lbs"),
  5082. name: "Slithering (Alt)",
  5083. image: {
  5084. source: "./media/characters/psymon/slithering-alt.svg",
  5085. extra: 1330 / 1224
  5086. }
  5087. },
  5088. },
  5089. [
  5090. {
  5091. name: "Normal",
  5092. height: math.unit(11.25, "feet"),
  5093. default: true
  5094. },
  5095. {
  5096. name: "Large",
  5097. height: math.unit(27, "feet")
  5098. },
  5099. {
  5100. name: "Giant",
  5101. height: math.unit(87, "feet")
  5102. },
  5103. {
  5104. name: "Macro",
  5105. height: math.unit(365, "feet")
  5106. },
  5107. {
  5108. name: "Megamacro",
  5109. height: math.unit(3, "miles")
  5110. },
  5111. {
  5112. name: "World Serpent",
  5113. height: math.unit(8000, "miles")
  5114. },
  5115. ]
  5116. ))
  5117. characterMakers.push(() => makeCharacter(
  5118. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5119. {
  5120. front: {
  5121. height: math.unit(6, "feet"),
  5122. weight: math.unit(180, "lbs"),
  5123. name: "Front",
  5124. image: {
  5125. source: "./media/characters/daimos/front.svg",
  5126. extra: 4160 / 3897,
  5127. bottom: 0.021
  5128. }
  5129. }
  5130. },
  5131. [
  5132. {
  5133. name: "Normal",
  5134. height: math.unit(8, "feet"),
  5135. default: true
  5136. },
  5137. {
  5138. name: "Big Dog",
  5139. height: math.unit(22, "feet")
  5140. },
  5141. {
  5142. name: "Macro",
  5143. height: math.unit(127, "feet")
  5144. },
  5145. {
  5146. name: "Megamacro",
  5147. height: math.unit(3600, "feet")
  5148. },
  5149. ]
  5150. ))
  5151. characterMakers.push(() => makeCharacter(
  5152. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5153. {
  5154. side: {
  5155. height: math.unit(6, "feet"),
  5156. weight: math.unit(180, "lbs"),
  5157. name: "Side",
  5158. image: {
  5159. source: "./media/characters/blake/side.svg",
  5160. extra: 1212 / 1120,
  5161. bottom: 0.05
  5162. }
  5163. },
  5164. crouched: {
  5165. height: math.unit(6 * 0.57, "feet"),
  5166. weight: math.unit(180, "lbs"),
  5167. name: "Crouched",
  5168. image: {
  5169. source: "./media/characters/blake/crouched.svg",
  5170. extra: 840 / 587,
  5171. bottom: 0.04
  5172. }
  5173. },
  5174. bent: {
  5175. height: math.unit(6 * 0.75, "feet"),
  5176. weight: math.unit(180, "lbs"),
  5177. name: "Bent",
  5178. image: {
  5179. source: "./media/characters/blake/bent.svg",
  5180. extra: 592 / 544,
  5181. bottom: 0.035
  5182. }
  5183. },
  5184. },
  5185. [
  5186. {
  5187. name: "Normal",
  5188. height: math.unit(8 + 1 / 6, "feet"),
  5189. default: true
  5190. },
  5191. {
  5192. name: "Big Backside",
  5193. height: math.unit(37, "feet")
  5194. },
  5195. {
  5196. name: "Subway Shredder",
  5197. height: math.unit(72, "feet")
  5198. },
  5199. {
  5200. name: "City Carver",
  5201. height: math.unit(1675, "feet")
  5202. },
  5203. {
  5204. name: "Tectonic Tweaker",
  5205. height: math.unit(2300, "miles")
  5206. },
  5207. ]
  5208. ))
  5209. characterMakers.push(() => makeCharacter(
  5210. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5211. {
  5212. front: {
  5213. height: math.unit(6, "feet"),
  5214. weight: math.unit(180, "lbs"),
  5215. name: "Front",
  5216. image: {
  5217. source: "./media/characters/guisetto/front.svg",
  5218. extra: 856 / 817,
  5219. bottom: 0.06
  5220. }
  5221. },
  5222. airborne: {
  5223. height: math.unit(6, "feet"),
  5224. weight: math.unit(180, "lbs"),
  5225. name: "Airborne",
  5226. image: {
  5227. source: "./media/characters/guisetto/airborne.svg",
  5228. extra: 584 / 525
  5229. }
  5230. },
  5231. },
  5232. [
  5233. {
  5234. name: "Normal",
  5235. height: math.unit(10 + 11 / 12, "feet"),
  5236. default: true
  5237. },
  5238. {
  5239. name: "Large",
  5240. height: math.unit(35, "feet")
  5241. },
  5242. {
  5243. name: "Macro",
  5244. height: math.unit(475, "feet")
  5245. },
  5246. ]
  5247. ))
  5248. characterMakers.push(() => makeCharacter(
  5249. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5250. {
  5251. front: {
  5252. height: math.unit(6, "feet"),
  5253. weight: math.unit(180, "lbs"),
  5254. name: "Front",
  5255. image: {
  5256. source: "./media/characters/luxor/front.svg",
  5257. extra: 2940 / 2152
  5258. }
  5259. },
  5260. back: {
  5261. height: math.unit(6, "feet"),
  5262. weight: math.unit(180, "lbs"),
  5263. name: "Back",
  5264. image: {
  5265. source: "./media/characters/luxor/back.svg",
  5266. extra: 1083 / 960
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(5 + 5 / 6, "feet"),
  5274. default: true
  5275. },
  5276. {
  5277. name: "Lamp",
  5278. height: math.unit(50, "feet")
  5279. },
  5280. {
  5281. name: "Lämp",
  5282. height: math.unit(300, "feet")
  5283. },
  5284. {
  5285. name: "The sun is a lamp",
  5286. height: math.unit(250000, "miles")
  5287. },
  5288. ]
  5289. ))
  5290. characterMakers.push(() => makeCharacter(
  5291. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5292. {
  5293. front: {
  5294. height: math.unit(6, "feet"),
  5295. weight: math.unit(50, "lbs"),
  5296. name: "Front",
  5297. image: {
  5298. source: "./media/characters/huoyan/front.svg"
  5299. }
  5300. },
  5301. side: {
  5302. height: math.unit(6, "feet"),
  5303. weight: math.unit(180, "lbs"),
  5304. name: "Side",
  5305. image: {
  5306. source: "./media/characters/huoyan/side.svg"
  5307. }
  5308. },
  5309. },
  5310. [
  5311. {
  5312. name: "Chef",
  5313. height: math.unit(9, "feet")
  5314. },
  5315. {
  5316. name: "Normal",
  5317. height: math.unit(65, "feet"),
  5318. default: true
  5319. },
  5320. {
  5321. name: "Macro",
  5322. height: math.unit(780, "feet")
  5323. },
  5324. {
  5325. name: "Flaming Mountain",
  5326. height: math.unit(4.8, "miles")
  5327. },
  5328. {
  5329. name: "Celestial",
  5330. height: math.unit(765000, "miles")
  5331. },
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5336. {
  5337. front: {
  5338. height: math.unit(5 + 3 / 4, "feet"),
  5339. weight: math.unit(120, "lbs"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/tails/front.svg"
  5343. }
  5344. }
  5345. },
  5346. [
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(5 + 3 / 4, "feet"),
  5350. default: true
  5351. }
  5352. ]
  5353. ))
  5354. characterMakers.push(() => makeCharacter(
  5355. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5356. {
  5357. front: {
  5358. height: math.unit(4, "feet"),
  5359. weight: math.unit(50, "lbs"),
  5360. name: "Front",
  5361. image: {
  5362. source: "./media/characters/rainy/front.svg"
  5363. }
  5364. }
  5365. },
  5366. [
  5367. {
  5368. name: "Macro",
  5369. height: math.unit(800, "feet"),
  5370. default: true
  5371. }
  5372. ]
  5373. ))
  5374. characterMakers.push(() => makeCharacter(
  5375. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5376. {
  5377. front: {
  5378. height: math.unit(6, "feet"),
  5379. weight: math.unit(150, "lbs"),
  5380. name: "Front",
  5381. image: {
  5382. source: "./media/characters/rainier/front.svg"
  5383. }
  5384. }
  5385. },
  5386. [
  5387. {
  5388. name: "Micro",
  5389. height: math.unit(2, "mm"),
  5390. default: true
  5391. }
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5396. {
  5397. front: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(180, "lbs"),
  5400. name: "Front",
  5401. image: {
  5402. source: "./media/characters/andy/front.svg"
  5403. }
  5404. }
  5405. },
  5406. [
  5407. {
  5408. name: "Normal",
  5409. height: math.unit(8, "feet"),
  5410. default: true
  5411. },
  5412. {
  5413. name: "Macro",
  5414. height: math.unit(1000, "feet")
  5415. },
  5416. {
  5417. name: "Megamacro",
  5418. height: math.unit(5, "miles")
  5419. },
  5420. {
  5421. name: "Gigamacro",
  5422. height: math.unit(5000, "miles")
  5423. },
  5424. ]
  5425. ))
  5426. characterMakers.push(() => makeCharacter(
  5427. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5428. {
  5429. front: {
  5430. height: math.unit(6, "feet"),
  5431. weight: math.unit(210, "lbs"),
  5432. name: "Front",
  5433. image: {
  5434. source: "./media/characters/cimmaron/front-sfw.svg",
  5435. extra: 701 / 676,
  5436. bottom: 0.046
  5437. }
  5438. },
  5439. back: {
  5440. height: math.unit(6, "feet"),
  5441. weight: math.unit(210, "lbs"),
  5442. name: "Back",
  5443. image: {
  5444. source: "./media/characters/cimmaron/back-sfw.svg",
  5445. extra: 701 / 676,
  5446. bottom: 0.046
  5447. }
  5448. },
  5449. frontNsfw: {
  5450. height: math.unit(6, "feet"),
  5451. weight: math.unit(210, "lbs"),
  5452. name: "Front (NSFW)",
  5453. image: {
  5454. source: "./media/characters/cimmaron/front-nsfw.svg",
  5455. extra: 701 / 676,
  5456. bottom: 0.046
  5457. }
  5458. },
  5459. backNsfw: {
  5460. height: math.unit(6, "feet"),
  5461. weight: math.unit(210, "lbs"),
  5462. name: "Back (NSFW)",
  5463. image: {
  5464. source: "./media/characters/cimmaron/back-nsfw.svg",
  5465. extra: 701 / 676,
  5466. bottom: 0.046
  5467. }
  5468. },
  5469. dick: {
  5470. height: math.unit(1.714, "feet"),
  5471. name: "Dick",
  5472. image: {
  5473. source: "./media/characters/cimmaron/dick.svg"
  5474. }
  5475. },
  5476. },
  5477. [
  5478. {
  5479. name: "Normal",
  5480. height: math.unit(6, "feet"),
  5481. default: true
  5482. },
  5483. {
  5484. name: "Macro Mayor",
  5485. height: math.unit(350, "meters")
  5486. },
  5487. ]
  5488. ))
  5489. characterMakers.push(() => makeCharacter(
  5490. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5491. {
  5492. front: {
  5493. height: math.unit(6, "feet"),
  5494. weight: math.unit(200, "lbs"),
  5495. name: "Front",
  5496. image: {
  5497. source: "./media/characters/akari/front.svg",
  5498. extra: 962 / 901,
  5499. bottom: 0.04
  5500. }
  5501. }
  5502. },
  5503. [
  5504. {
  5505. name: "Micro",
  5506. height: math.unit(5, "inches"),
  5507. default: true
  5508. },
  5509. {
  5510. name: "Normal",
  5511. height: math.unit(7, "feet")
  5512. },
  5513. ]
  5514. ))
  5515. characterMakers.push(() => makeCharacter(
  5516. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5517. {
  5518. front: {
  5519. height: math.unit(6, "feet"),
  5520. weight: math.unit(140, "lbs"),
  5521. name: "Front",
  5522. image: {
  5523. source: "./media/characters/cynosura/front.svg",
  5524. extra: 896 / 847
  5525. }
  5526. },
  5527. back: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(140, "lbs"),
  5530. name: "Back",
  5531. image: {
  5532. source: "./media/characters/cynosura/back.svg",
  5533. extra: 1365 / 1250
  5534. }
  5535. },
  5536. },
  5537. [
  5538. {
  5539. name: "Micro",
  5540. height: math.unit(4, "inches")
  5541. },
  5542. {
  5543. name: "Normal",
  5544. height: math.unit(5.75, "feet"),
  5545. default: true
  5546. },
  5547. {
  5548. name: "Tall",
  5549. height: math.unit(10, "feet")
  5550. },
  5551. {
  5552. name: "Big",
  5553. height: math.unit(20, "feet")
  5554. },
  5555. {
  5556. name: "Macro",
  5557. height: math.unit(50, "feet")
  5558. },
  5559. ]
  5560. ))
  5561. characterMakers.push(() => makeCharacter(
  5562. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5563. {
  5564. front: {
  5565. height: math.unit(6, "feet"),
  5566. weight: math.unit(170, "lbs"),
  5567. name: "Front",
  5568. image: {
  5569. source: "./media/characters/gin/front.svg",
  5570. extra: 1.053,
  5571. bottom: 0.025
  5572. }
  5573. },
  5574. foot: {
  5575. height: math.unit(6 / 4.25, "feet"),
  5576. name: "Foot",
  5577. image: {
  5578. source: "./media/characters/gin/foot.svg"
  5579. }
  5580. },
  5581. sole: {
  5582. height: math.unit(6 / 4.40, "feet"),
  5583. name: "Sole",
  5584. image: {
  5585. source: "./media/characters/gin/sole.svg"
  5586. }
  5587. },
  5588. },
  5589. [
  5590. {
  5591. name: "Normal",
  5592. height: math.unit(13 + 2 / 12, "feet")
  5593. },
  5594. {
  5595. name: "Macro",
  5596. height: math.unit(1500, "feet")
  5597. },
  5598. {
  5599. name: "Megamacro",
  5600. height: math.unit(200, "miles"),
  5601. default: true
  5602. },
  5603. {
  5604. name: "Gigamacro",
  5605. height: math.unit(500, "megameters")
  5606. },
  5607. {
  5608. name: "Teramacro",
  5609. height: math.unit(15, "lightyears")
  5610. }
  5611. ]
  5612. ))
  5613. characterMakers.push(() => makeCharacter(
  5614. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5615. {
  5616. front: {
  5617. height: math.unit(6 + 1 / 6, "feet"),
  5618. weight: math.unit(178, "lbs"),
  5619. name: "Front",
  5620. image: {
  5621. source: "./media/characters/guy/front.svg"
  5622. }
  5623. }
  5624. },
  5625. [
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(6 + 1 / 6, "feet"),
  5629. default: true
  5630. },
  5631. {
  5632. name: "Large",
  5633. height: math.unit(25 + 7 / 12, "feet")
  5634. },
  5635. {
  5636. name: "Macro",
  5637. height: math.unit(60 + 9 / 12, "feet")
  5638. },
  5639. {
  5640. name: "Macro+",
  5641. height: math.unit(246, "feet")
  5642. },
  5643. {
  5644. name: "Macro++",
  5645. height: math.unit(878, "feet")
  5646. }
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5651. {
  5652. front: {
  5653. height: math.unit(9, "feet"),
  5654. weight: math.unit(800, "lbs"),
  5655. name: "Front",
  5656. image: {
  5657. source: "./media/characters/tiberius/front.svg",
  5658. extra: 2295 / 2071
  5659. }
  5660. },
  5661. back: {
  5662. height: math.unit(9, "feet"),
  5663. weight: math.unit(800, "lbs"),
  5664. name: "Back",
  5665. image: {
  5666. source: "./media/characters/tiberius/back.svg",
  5667. extra: 2373 / 2160
  5668. }
  5669. },
  5670. },
  5671. [
  5672. {
  5673. name: "Normal",
  5674. height: math.unit(9, "feet"),
  5675. default: true
  5676. }
  5677. ]
  5678. ))
  5679. characterMakers.push(() => makeCharacter(
  5680. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5681. {
  5682. front: {
  5683. height: math.unit(6, "feet"),
  5684. weight: math.unit(600, "lbs"),
  5685. name: "Front",
  5686. image: {
  5687. source: "./media/characters/surgo/front.svg",
  5688. extra: 3591 / 2227
  5689. }
  5690. },
  5691. back: {
  5692. height: math.unit(6, "feet"),
  5693. weight: math.unit(600, "lbs"),
  5694. name: "Back",
  5695. image: {
  5696. source: "./media/characters/surgo/back.svg",
  5697. extra: 3557 / 2228
  5698. }
  5699. },
  5700. laying: {
  5701. height: math.unit(6 * 0.85, "feet"),
  5702. weight: math.unit(600, "lbs"),
  5703. name: "Laying",
  5704. image: {
  5705. source: "./media/characters/surgo/laying.svg"
  5706. }
  5707. },
  5708. },
  5709. [
  5710. {
  5711. name: "Normal",
  5712. height: math.unit(6, "feet"),
  5713. default: true
  5714. }
  5715. ]
  5716. ))
  5717. characterMakers.push(() => makeCharacter(
  5718. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5719. {
  5720. side: {
  5721. height: math.unit(6, "feet"),
  5722. weight: math.unit(150, "lbs"),
  5723. name: "Side",
  5724. image: {
  5725. source: "./media/characters/cibus/side.svg",
  5726. extra: 800 / 400
  5727. }
  5728. },
  5729. },
  5730. [
  5731. {
  5732. name: "Normal",
  5733. height: math.unit(6, "feet"),
  5734. default: true
  5735. }
  5736. ]
  5737. ))
  5738. characterMakers.push(() => makeCharacter(
  5739. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5740. {
  5741. front: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(240, "lbs"),
  5744. name: "Front",
  5745. image: {
  5746. source: "./media/characters/nibbles/front.svg"
  5747. }
  5748. },
  5749. side: {
  5750. height: math.unit(6, "feet"),
  5751. weight: math.unit(240, "lbs"),
  5752. name: "Side",
  5753. image: {
  5754. source: "./media/characters/nibbles/side.svg"
  5755. }
  5756. },
  5757. },
  5758. [
  5759. {
  5760. name: "Normal",
  5761. height: math.unit(9, "feet"),
  5762. default: true
  5763. }
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5768. {
  5769. side: {
  5770. height: math.unit(5 + 1 / 6, "feet"),
  5771. weight: math.unit(130, "lbs"),
  5772. name: "Side",
  5773. image: {
  5774. source: "./media/characters/rikky/side.svg",
  5775. extra: 851 / 801
  5776. }
  5777. },
  5778. },
  5779. [
  5780. {
  5781. name: "Normal",
  5782. height: math.unit(5 + 1 / 6, "feet")
  5783. },
  5784. {
  5785. name: "Macro",
  5786. height: math.unit(152, "feet"),
  5787. default: true
  5788. },
  5789. {
  5790. name: "Megamacro",
  5791. height: math.unit(7, "miles")
  5792. }
  5793. ]
  5794. ))
  5795. characterMakers.push(() => makeCharacter(
  5796. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5797. {
  5798. side: {
  5799. height: math.unit(370, "cm"),
  5800. weight: math.unit(350, "lbs"),
  5801. name: "Side",
  5802. image: {
  5803. source: "./media/characters/malfressa/side.svg"
  5804. }
  5805. },
  5806. walking: {
  5807. height: math.unit(370, "cm"),
  5808. weight: math.unit(350, "lbs"),
  5809. name: "Walking",
  5810. image: {
  5811. source: "./media/characters/malfressa/walking.svg"
  5812. }
  5813. },
  5814. feral: {
  5815. height: math.unit(2500, "cm"),
  5816. weight: math.unit(100000, "lbs"),
  5817. name: "Feral",
  5818. image: {
  5819. source: "./media/characters/malfressa/feral.svg",
  5820. extra: 2108 / 837,
  5821. bottom: 0.02
  5822. }
  5823. },
  5824. },
  5825. [
  5826. {
  5827. name: "Normal",
  5828. height: math.unit(370, "cm")
  5829. },
  5830. {
  5831. name: "Macro",
  5832. height: math.unit(300, "meters"),
  5833. default: true
  5834. }
  5835. ]
  5836. ))
  5837. characterMakers.push(() => makeCharacter(
  5838. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5839. {
  5840. front: {
  5841. height: math.unit(6, "feet"),
  5842. weight: math.unit(60, "kg"),
  5843. name: "Front",
  5844. image: {
  5845. source: "./media/characters/jaro/front.svg"
  5846. }
  5847. },
  5848. back: {
  5849. height: math.unit(6, "feet"),
  5850. weight: math.unit(60, "kg"),
  5851. name: "Back",
  5852. image: {
  5853. source: "./media/characters/jaro/back.svg"
  5854. }
  5855. },
  5856. },
  5857. [
  5858. {
  5859. name: "Micro",
  5860. height: math.unit(7, "inches")
  5861. },
  5862. {
  5863. name: "Normal",
  5864. height: math.unit(5.5, "feet"),
  5865. default: true
  5866. },
  5867. {
  5868. name: "Minimacro",
  5869. height: math.unit(20, "feet")
  5870. },
  5871. {
  5872. name: "Macro",
  5873. height: math.unit(200, "meters")
  5874. }
  5875. ]
  5876. ))
  5877. characterMakers.push(() => makeCharacter(
  5878. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5879. {
  5880. front: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(195, "lb"),
  5883. name: "Front",
  5884. image: {
  5885. source: "./media/characters/rogue/front.svg"
  5886. }
  5887. },
  5888. },
  5889. [
  5890. {
  5891. name: "Macro",
  5892. height: math.unit(90, "feet"),
  5893. default: true
  5894. },
  5895. ]
  5896. ))
  5897. characterMakers.push(() => makeCharacter(
  5898. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5899. {
  5900. front: {
  5901. height: math.unit(5 + 8 / 12, "feet"),
  5902. weight: math.unit(140, "lb"),
  5903. name: "Front",
  5904. image: {
  5905. source: "./media/characters/piper/front.svg",
  5906. extra: 3948/3655,
  5907. bottom: 0/3948
  5908. }
  5909. },
  5910. },
  5911. [
  5912. {
  5913. name: "Micro",
  5914. height: math.unit(2, "inches")
  5915. },
  5916. {
  5917. name: "Normal",
  5918. height: math.unit(5 + 8 / 12, "feet")
  5919. },
  5920. {
  5921. name: "Macro",
  5922. height: math.unit(250, "feet"),
  5923. default: true
  5924. },
  5925. {
  5926. name: "Megamacro",
  5927. height: math.unit(7, "miles")
  5928. },
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(6, "feet"),
  5936. weight: math.unit(220, "lb"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/gemini/front.svg"
  5940. }
  5941. },
  5942. back: {
  5943. height: math.unit(6, "feet"),
  5944. weight: math.unit(220, "lb"),
  5945. name: "Back",
  5946. image: {
  5947. source: "./media/characters/gemini/back.svg"
  5948. }
  5949. },
  5950. kneeling: {
  5951. height: math.unit(6 / 1.5, "feet"),
  5952. weight: math.unit(220, "lb"),
  5953. name: "Kneeling",
  5954. image: {
  5955. source: "./media/characters/gemini/kneeling.svg",
  5956. bottom: 0.02
  5957. }
  5958. },
  5959. },
  5960. [
  5961. {
  5962. name: "Macro",
  5963. height: math.unit(300, "meters"),
  5964. default: true
  5965. },
  5966. {
  5967. name: "Megamacro",
  5968. height: math.unit(6900, "meters")
  5969. },
  5970. ]
  5971. ))
  5972. characterMakers.push(() => makeCharacter(
  5973. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5974. {
  5975. anthro: {
  5976. height: math.unit(2.35, "meters"),
  5977. weight: math.unit(73, "kg"),
  5978. name: "Anthro",
  5979. image: {
  5980. source: "./media/characters/alicia/anthro.svg",
  5981. extra: 2571 / 2385,
  5982. bottom: 75 / 2648
  5983. }
  5984. },
  5985. paw: {
  5986. height: math.unit(1.32, "feet"),
  5987. name: "Paw",
  5988. image: {
  5989. source: "./media/characters/alicia/paw.svg"
  5990. }
  5991. },
  5992. feral: {
  5993. height: math.unit(1.69, "meters"),
  5994. weight: math.unit(73, "kg"),
  5995. name: "Feral",
  5996. image: {
  5997. source: "./media/characters/alicia/feral.svg",
  5998. extra: 2123 / 1715,
  5999. bottom: 222 / 2349
  6000. }
  6001. },
  6002. },
  6003. [
  6004. {
  6005. name: "Normal",
  6006. height: math.unit(2.35, "meters")
  6007. },
  6008. {
  6009. name: "Macro",
  6010. height: math.unit(60, "meters"),
  6011. default: true
  6012. },
  6013. {
  6014. name: "Megamacro",
  6015. height: math.unit(10000, "kilometers")
  6016. },
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6021. {
  6022. front: {
  6023. height: math.unit(7, "feet"),
  6024. weight: math.unit(250, "lbs"),
  6025. name: "Front",
  6026. image: {
  6027. source: "./media/characters/archy/front.svg"
  6028. }
  6029. }
  6030. },
  6031. [
  6032. {
  6033. name: "Micro",
  6034. height: math.unit(1, "inch")
  6035. },
  6036. {
  6037. name: "Shorty",
  6038. height: math.unit(5, "feet")
  6039. },
  6040. {
  6041. name: "Normal",
  6042. height: math.unit(7, "feet")
  6043. },
  6044. {
  6045. name: "Macro",
  6046. height: math.unit(600, "meters"),
  6047. default: true
  6048. },
  6049. {
  6050. name: "Megamacro",
  6051. height: math.unit(1, "mile")
  6052. },
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6057. {
  6058. front: {
  6059. height: math.unit(1.65, "meters"),
  6060. weight: math.unit(74, "kg"),
  6061. name: "Front",
  6062. image: {
  6063. source: "./media/characters/berri/front.svg",
  6064. extra: 857 / 837,
  6065. bottom: 18 / 877
  6066. }
  6067. },
  6068. bum: {
  6069. height: math.unit(1.46, "feet"),
  6070. name: "Bum",
  6071. image: {
  6072. source: "./media/characters/berri/bum.svg"
  6073. }
  6074. },
  6075. mouth: {
  6076. height: math.unit(0.44, "feet"),
  6077. name: "Mouth",
  6078. image: {
  6079. source: "./media/characters/berri/mouth.svg"
  6080. }
  6081. },
  6082. paw: {
  6083. height: math.unit(0.826, "feet"),
  6084. name: "Paw",
  6085. image: {
  6086. source: "./media/characters/berri/paw.svg"
  6087. }
  6088. },
  6089. },
  6090. [
  6091. {
  6092. name: "Normal",
  6093. height: math.unit(1.65, "meters")
  6094. },
  6095. {
  6096. name: "Macro",
  6097. height: math.unit(60, "m"),
  6098. default: true
  6099. },
  6100. {
  6101. name: "Megamacro",
  6102. height: math.unit(9.213, "km")
  6103. },
  6104. {
  6105. name: "Planet Eater",
  6106. height: math.unit(489, "megameters")
  6107. },
  6108. {
  6109. name: "Teramacro",
  6110. height: math.unit(2471635000000, "meters")
  6111. },
  6112. {
  6113. name: "Examacro",
  6114. height: math.unit(8.0624e+26, "meters")
  6115. }
  6116. ]
  6117. ))
  6118. characterMakers.push(() => makeCharacter(
  6119. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6120. {
  6121. front: {
  6122. height: math.unit(1.72, "meters"),
  6123. weight: math.unit(68, "kg"),
  6124. name: "Front",
  6125. image: {
  6126. source: "./media/characters/lexi/front.svg"
  6127. }
  6128. }
  6129. },
  6130. [
  6131. {
  6132. name: "Very Smol",
  6133. height: math.unit(10, "mm")
  6134. },
  6135. {
  6136. name: "Micro",
  6137. height: math.unit(6.8, "cm"),
  6138. default: true
  6139. },
  6140. {
  6141. name: "Normal",
  6142. height: math.unit(1.72, "m")
  6143. }
  6144. ]
  6145. ))
  6146. characterMakers.push(() => makeCharacter(
  6147. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6148. {
  6149. front: {
  6150. height: math.unit(1.69, "meters"),
  6151. weight: math.unit(68, "kg"),
  6152. name: "Front",
  6153. image: {
  6154. source: "./media/characters/martin/front.svg",
  6155. extra: 596 / 581
  6156. }
  6157. }
  6158. },
  6159. [
  6160. {
  6161. name: "Micro",
  6162. height: math.unit(6.85, "cm"),
  6163. default: true
  6164. },
  6165. {
  6166. name: "Normal",
  6167. height: math.unit(1.69, "m")
  6168. }
  6169. ]
  6170. ))
  6171. characterMakers.push(() => makeCharacter(
  6172. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6173. {
  6174. front: {
  6175. height: math.unit(1.69, "meters"),
  6176. weight: math.unit(68, "kg"),
  6177. name: "Front",
  6178. image: {
  6179. source: "./media/characters/juno/front.svg"
  6180. }
  6181. }
  6182. },
  6183. [
  6184. {
  6185. name: "Micro",
  6186. height: math.unit(7, "cm")
  6187. },
  6188. {
  6189. name: "Normal",
  6190. height: math.unit(1.89, "m")
  6191. },
  6192. {
  6193. name: "Macro",
  6194. height: math.unit(353, "meters"),
  6195. default: true
  6196. }
  6197. ]
  6198. ))
  6199. characterMakers.push(() => makeCharacter(
  6200. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6201. {
  6202. front: {
  6203. height: math.unit(1.93, "meters"),
  6204. weight: math.unit(83, "kg"),
  6205. name: "Front",
  6206. image: {
  6207. source: "./media/characters/samantha/front.svg"
  6208. }
  6209. },
  6210. frontClothed: {
  6211. height: math.unit(1.93, "meters"),
  6212. weight: math.unit(83, "kg"),
  6213. name: "Front (Clothed)",
  6214. image: {
  6215. source: "./media/characters/samantha/front-clothed.svg"
  6216. }
  6217. },
  6218. back: {
  6219. height: math.unit(1.93, "meters"),
  6220. weight: math.unit(83, "kg"),
  6221. name: "Back",
  6222. image: {
  6223. source: "./media/characters/samantha/back.svg"
  6224. }
  6225. },
  6226. },
  6227. [
  6228. {
  6229. name: "Normal",
  6230. height: math.unit(1.93, "m")
  6231. },
  6232. {
  6233. name: "Macro",
  6234. height: math.unit(74, "meters"),
  6235. default: true
  6236. },
  6237. {
  6238. name: "Macro+",
  6239. height: math.unit(223, "meters"),
  6240. },
  6241. {
  6242. name: "Megamacro",
  6243. height: math.unit(8381, "meters"),
  6244. },
  6245. {
  6246. name: "Megamacro+",
  6247. height: math.unit(12000, "kilometers")
  6248. },
  6249. ]
  6250. ))
  6251. characterMakers.push(() => makeCharacter(
  6252. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6253. {
  6254. front: {
  6255. height: math.unit(1.92, "meters"),
  6256. weight: math.unit(80, "kg"),
  6257. name: "Front",
  6258. image: {
  6259. source: "./media/characters/dr-clay/front.svg"
  6260. }
  6261. },
  6262. frontClothed: {
  6263. height: math.unit(1.92, "meters"),
  6264. weight: math.unit(80, "kg"),
  6265. name: "Front (Clothed)",
  6266. image: {
  6267. source: "./media/characters/dr-clay/front-clothed.svg"
  6268. }
  6269. }
  6270. },
  6271. [
  6272. {
  6273. name: "Normal",
  6274. height: math.unit(1.92, "m")
  6275. },
  6276. {
  6277. name: "Macro",
  6278. height: math.unit(214, "meters"),
  6279. default: true
  6280. },
  6281. {
  6282. name: "Macro+",
  6283. height: math.unit(12.237, "meters"),
  6284. },
  6285. {
  6286. name: "Megamacro",
  6287. height: math.unit(557, "megameters"),
  6288. },
  6289. {
  6290. name: "Unimaginable",
  6291. height: math.unit(120e9, "lightyears")
  6292. },
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6297. {
  6298. front: {
  6299. height: math.unit(2, "meters"),
  6300. weight: math.unit(80, "kg"),
  6301. name: "Front",
  6302. image: {
  6303. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6304. }
  6305. }
  6306. },
  6307. [
  6308. {
  6309. name: "Teramacro",
  6310. height: math.unit(500000, "lightyears"),
  6311. default: true
  6312. },
  6313. ]
  6314. ))
  6315. characterMakers.push(() => makeCharacter(
  6316. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6317. {
  6318. front: {
  6319. height: math.unit(2, "meters"),
  6320. weight: math.unit(150, "kg"),
  6321. name: "Front",
  6322. image: {
  6323. source: "./media/characters/vemus/front.svg",
  6324. extra: 2384 / 2084,
  6325. bottom: 0.0123
  6326. }
  6327. }
  6328. },
  6329. [
  6330. {
  6331. name: "Normal",
  6332. height: math.unit(3.75, "meters"),
  6333. default: true
  6334. },
  6335. {
  6336. name: "Big",
  6337. height: math.unit(8, "meters")
  6338. },
  6339. {
  6340. name: "Macro",
  6341. height: math.unit(100, "meters")
  6342. },
  6343. {
  6344. name: "Macro+",
  6345. height: math.unit(1500, "meters")
  6346. },
  6347. {
  6348. name: "Stellar",
  6349. height: math.unit(14e8, "meters")
  6350. },
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6355. {
  6356. front: {
  6357. height: math.unit(2, "meters"),
  6358. weight: math.unit(70, "kg"),
  6359. name: "Front",
  6360. image: {
  6361. source: "./media/characters/beherit/front.svg",
  6362. extra: 1408 / 1242
  6363. }
  6364. }
  6365. },
  6366. [
  6367. {
  6368. name: "Normal",
  6369. height: math.unit(6, "feet")
  6370. },
  6371. {
  6372. name: "Lorg",
  6373. height: math.unit(25, "feet"),
  6374. default: true
  6375. },
  6376. {
  6377. name: "Lorger",
  6378. height: math.unit(75, "feet")
  6379. },
  6380. {
  6381. name: "Macro",
  6382. height: math.unit(200, "meters")
  6383. },
  6384. ]
  6385. ))
  6386. characterMakers.push(() => makeCharacter(
  6387. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6388. {
  6389. front: {
  6390. height: math.unit(2, "meters"),
  6391. weight: math.unit(150, "kg"),
  6392. name: "Front",
  6393. image: {
  6394. source: "./media/characters/everett/front.svg",
  6395. extra: 2038 / 1737,
  6396. bottom: 0.03
  6397. }
  6398. },
  6399. paw: {
  6400. height: math.unit(2 / 3.6, "meters"),
  6401. name: "Paw",
  6402. image: {
  6403. source: "./media/characters/everett/paw.svg"
  6404. }
  6405. },
  6406. },
  6407. [
  6408. {
  6409. name: "Normal",
  6410. height: math.unit(15, "feet"),
  6411. default: true
  6412. },
  6413. {
  6414. name: "Lorg",
  6415. height: math.unit(70, "feet"),
  6416. default: true
  6417. },
  6418. {
  6419. name: "Lorger",
  6420. height: math.unit(250, "feet")
  6421. },
  6422. {
  6423. name: "Macro",
  6424. height: math.unit(500, "meters")
  6425. },
  6426. ]
  6427. ))
  6428. characterMakers.push(() => makeCharacter(
  6429. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6430. {
  6431. front: {
  6432. height: math.unit(2, "meters"),
  6433. weight: math.unit(86, "kg"),
  6434. name: "Front",
  6435. image: {
  6436. source: "./media/characters/rose/front.svg",
  6437. extra: 350/335,
  6438. bottom: 10/360
  6439. }
  6440. },
  6441. frontAlt: {
  6442. height: math.unit(1.6, "meters"),
  6443. weight: math.unit(86, "kg"),
  6444. name: "Front (Alt)",
  6445. image: {
  6446. source: "./media/characters/rose/front-alt.svg",
  6447. extra: 299/283,
  6448. bottom: 3/302
  6449. }
  6450. },
  6451. plush: {
  6452. height: math.unit(2, "meters"),
  6453. weight: math.unit(86/3, "kg"),
  6454. name: "Plush",
  6455. image: {
  6456. source: "./media/characters/rose/plush.svg",
  6457. extra: 361/337,
  6458. bottom: 11/372
  6459. }
  6460. },
  6461. },
  6462. [
  6463. {
  6464. name: "Mini-Micro",
  6465. height: math.unit(1, "cm")
  6466. },
  6467. {
  6468. name: "Micro",
  6469. height: math.unit(3.5, "inches"),
  6470. default: true
  6471. },
  6472. {
  6473. name: "Normal",
  6474. height: math.unit(6 + 1 / 6, "feet")
  6475. },
  6476. {
  6477. name: "Mini-Macro",
  6478. height: math.unit(9 + 10 / 12, "feet")
  6479. },
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(2, "meters"),
  6487. weight: math.unit(350, "lbs"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/regal/front.svg"
  6491. }
  6492. },
  6493. back: {
  6494. height: math.unit(2, "meters"),
  6495. weight: math.unit(350, "lbs"),
  6496. name: "Back",
  6497. image: {
  6498. source: "./media/characters/regal/back.svg"
  6499. }
  6500. },
  6501. },
  6502. [
  6503. {
  6504. name: "Macro",
  6505. height: math.unit(350, "feet"),
  6506. default: true
  6507. }
  6508. ]
  6509. ))
  6510. characterMakers.push(() => makeCharacter(
  6511. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6512. {
  6513. front: {
  6514. height: math.unit(4 + 11 / 12, "feet"),
  6515. weight: math.unit(100, "lbs"),
  6516. name: "Front",
  6517. image: {
  6518. source: "./media/characters/opal/front.svg"
  6519. }
  6520. },
  6521. frontAlt: {
  6522. height: math.unit(4 + 11 / 12, "feet"),
  6523. weight: math.unit(100, "lbs"),
  6524. name: "Front (Alt)",
  6525. image: {
  6526. source: "./media/characters/opal/front-alt.svg"
  6527. }
  6528. },
  6529. },
  6530. [
  6531. {
  6532. name: "Small",
  6533. height: math.unit(4 + 11 / 12, "feet")
  6534. },
  6535. {
  6536. name: "Normal",
  6537. height: math.unit(20, "feet"),
  6538. default: true
  6539. },
  6540. {
  6541. name: "Macro",
  6542. height: math.unit(120, "feet")
  6543. },
  6544. {
  6545. name: "Megamacro",
  6546. height: math.unit(80, "miles")
  6547. },
  6548. {
  6549. name: "True Size",
  6550. height: math.unit(100000, "lightyears")
  6551. },
  6552. ]
  6553. ))
  6554. characterMakers.push(() => makeCharacter(
  6555. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6556. {
  6557. front: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(200, "lbs"),
  6560. name: "Front",
  6561. image: {
  6562. source: "./media/characters/vector-wuff/front.svg"
  6563. }
  6564. }
  6565. },
  6566. [
  6567. {
  6568. name: "Normal",
  6569. height: math.unit(2.8, "meters")
  6570. },
  6571. {
  6572. name: "Macro",
  6573. height: math.unit(450, "meters"),
  6574. default: true
  6575. },
  6576. {
  6577. name: "Megamacro",
  6578. height: math.unit(15, "kilometers")
  6579. }
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(6, "feet"),
  6587. weight: math.unit(256, "lbs"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/dannik/front.svg"
  6591. }
  6592. }
  6593. },
  6594. [
  6595. {
  6596. name: "Macro",
  6597. height: math.unit(69.57, "meters"),
  6598. default: true
  6599. },
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(6, "feet"),
  6607. weight: math.unit(120, "lbs"),
  6608. name: "Front",
  6609. image: {
  6610. source: "./media/characters/azura-saharah/front.svg"
  6611. }
  6612. },
  6613. back: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(120, "lbs"),
  6616. name: "Back",
  6617. image: {
  6618. source: "./media/characters/azura-saharah/back.svg"
  6619. }
  6620. },
  6621. },
  6622. [
  6623. {
  6624. name: "Macro",
  6625. height: math.unit(100, "feet"),
  6626. default: true
  6627. },
  6628. ]
  6629. ))
  6630. characterMakers.push(() => makeCharacter(
  6631. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6632. {
  6633. side: {
  6634. height: math.unit(5 + 4 / 12, "feet"),
  6635. weight: math.unit(163, "lbs"),
  6636. name: "Side",
  6637. image: {
  6638. source: "./media/characters/kennedy/side.svg"
  6639. }
  6640. }
  6641. },
  6642. [
  6643. {
  6644. name: "Standard Doggo",
  6645. height: math.unit(5 + 4 / 12, "feet")
  6646. },
  6647. {
  6648. name: "Big Doggo",
  6649. height: math.unit(25 + 3 / 12, "feet"),
  6650. default: true
  6651. },
  6652. ]
  6653. ))
  6654. characterMakers.push(() => makeCharacter(
  6655. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6656. {
  6657. front: {
  6658. height: math.unit(6, "feet"),
  6659. weight: math.unit(90, "lbs"),
  6660. name: "Front",
  6661. image: {
  6662. source: "./media/characters/odi-lunar/front.svg"
  6663. }
  6664. }
  6665. },
  6666. [
  6667. {
  6668. name: "Micro",
  6669. height: math.unit(3, "inches"),
  6670. default: true
  6671. },
  6672. {
  6673. name: "Normal",
  6674. height: math.unit(5.5, "feet")
  6675. }
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6680. {
  6681. back: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(220, "lbs"),
  6684. name: "Back",
  6685. image: {
  6686. source: "./media/characters/mandake/back.svg"
  6687. }
  6688. }
  6689. },
  6690. [
  6691. {
  6692. name: "Normal",
  6693. height: math.unit(7, "feet"),
  6694. default: true
  6695. },
  6696. {
  6697. name: "Macro",
  6698. height: math.unit(78, "feet")
  6699. },
  6700. {
  6701. name: "Macro+",
  6702. height: math.unit(300, "meters")
  6703. },
  6704. {
  6705. name: "Macro++",
  6706. height: math.unit(2400, "feet")
  6707. },
  6708. {
  6709. name: "Megamacro",
  6710. height: math.unit(5167, "meters")
  6711. },
  6712. {
  6713. name: "Gigamacro",
  6714. height: math.unit(41769, "miles")
  6715. },
  6716. ]
  6717. ))
  6718. characterMakers.push(() => makeCharacter(
  6719. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6720. {
  6721. front: {
  6722. height: math.unit(6, "feet"),
  6723. weight: math.unit(120, "lbs"),
  6724. name: "Front",
  6725. image: {
  6726. source: "./media/characters/yozey/front.svg"
  6727. }
  6728. },
  6729. frontAlt: {
  6730. height: math.unit(6, "feet"),
  6731. weight: math.unit(120, "lbs"),
  6732. name: "Front (Alt)",
  6733. image: {
  6734. source: "./media/characters/yozey/front-alt.svg"
  6735. }
  6736. },
  6737. side: {
  6738. height: math.unit(6, "feet"),
  6739. weight: math.unit(120, "lbs"),
  6740. name: "Side",
  6741. image: {
  6742. source: "./media/characters/yozey/side.svg"
  6743. }
  6744. },
  6745. },
  6746. [
  6747. {
  6748. name: "Micro",
  6749. height: math.unit(3, "inches"),
  6750. default: true
  6751. },
  6752. {
  6753. name: "Normal",
  6754. height: math.unit(6, "feet")
  6755. }
  6756. ]
  6757. ))
  6758. characterMakers.push(() => makeCharacter(
  6759. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6760. {
  6761. front: {
  6762. height: math.unit(6, "feet"),
  6763. weight: math.unit(103, "lbs"),
  6764. name: "Front",
  6765. image: {
  6766. source: "./media/characters/valeska-voss/front.svg"
  6767. }
  6768. }
  6769. },
  6770. [
  6771. {
  6772. name: "Mini-Sized Sub",
  6773. height: math.unit(3.1, "inches")
  6774. },
  6775. {
  6776. name: "Mid-Sized Sub",
  6777. height: math.unit(6.2, "inches")
  6778. },
  6779. {
  6780. name: "Full-Sized Sub",
  6781. height: math.unit(9.3, "inches")
  6782. },
  6783. {
  6784. name: "Normal",
  6785. height: math.unit(5 + 2 / 12, "foot"),
  6786. default: true
  6787. },
  6788. ]
  6789. ))
  6790. characterMakers.push(() => makeCharacter(
  6791. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6792. {
  6793. front: {
  6794. height: math.unit(6, "feet"),
  6795. weight: math.unit(160, "lbs"),
  6796. name: "Front",
  6797. image: {
  6798. source: "./media/characters/gene-zeta/front.svg",
  6799. extra: 3006 / 2826,
  6800. bottom: 182 / 3188
  6801. }
  6802. }
  6803. },
  6804. [
  6805. {
  6806. name: "Micro",
  6807. height: math.unit(6, "inches")
  6808. },
  6809. {
  6810. name: "Normal",
  6811. height: math.unit(5 + 11 / 12, "foot"),
  6812. default: true
  6813. },
  6814. {
  6815. name: "Macro",
  6816. height: math.unit(140, "feet")
  6817. },
  6818. {
  6819. name: "Supercharged",
  6820. height: math.unit(2500, "feet")
  6821. },
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(6, "feet"),
  6829. weight: math.unit(350, "lbs"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/razinox/front.svg",
  6833. extra: 1686 / 1548,
  6834. bottom: 28.2 / 1868
  6835. }
  6836. },
  6837. back: {
  6838. height: math.unit(6, "feet"),
  6839. weight: math.unit(350, "lbs"),
  6840. name: "Back",
  6841. image: {
  6842. source: "./media/characters/razinox/back.svg",
  6843. extra: 1660 / 1590,
  6844. bottom: 15 / 1665
  6845. }
  6846. },
  6847. },
  6848. [
  6849. {
  6850. name: "Normal",
  6851. height: math.unit(10 + 8 / 12, "foot")
  6852. },
  6853. {
  6854. name: "Minimacro",
  6855. height: math.unit(15, "foot")
  6856. },
  6857. {
  6858. name: "Macro",
  6859. height: math.unit(60, "foot"),
  6860. default: true
  6861. },
  6862. {
  6863. name: "Megamacro",
  6864. height: math.unit(5, "miles")
  6865. },
  6866. {
  6867. name: "Gigamacro",
  6868. height: math.unit(6000, "miles")
  6869. },
  6870. ]
  6871. ))
  6872. characterMakers.push(() => makeCharacter(
  6873. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6874. {
  6875. front: {
  6876. height: math.unit(6, "feet"),
  6877. weight: math.unit(150, "lbs"),
  6878. name: "Front",
  6879. image: {
  6880. source: "./media/characters/cobalt/front.svg"
  6881. }
  6882. }
  6883. },
  6884. [
  6885. {
  6886. name: "Normal",
  6887. height: math.unit(8 + 1 / 12, "foot")
  6888. },
  6889. {
  6890. name: "Macro",
  6891. height: math.unit(111, "foot"),
  6892. default: true
  6893. },
  6894. {
  6895. name: "Supracosmic",
  6896. height: math.unit(1e42, "feet")
  6897. },
  6898. ]
  6899. ))
  6900. characterMakers.push(() => makeCharacter(
  6901. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6902. {
  6903. front: {
  6904. height: math.unit(6, "feet"),
  6905. weight: math.unit(140, "lbs"),
  6906. name: "Front",
  6907. image: {
  6908. source: "./media/characters/amanda/front.svg"
  6909. }
  6910. }
  6911. },
  6912. [
  6913. {
  6914. name: "Micro",
  6915. height: math.unit(5, "inches"),
  6916. default: true
  6917. },
  6918. ]
  6919. ))
  6920. characterMakers.push(() => makeCharacter(
  6921. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6922. {
  6923. front: {
  6924. height: math.unit(2.75, "meters"),
  6925. weight: math.unit(1200, "lb"),
  6926. name: "Front",
  6927. image: {
  6928. source: "./media/characters/teal/front.svg",
  6929. extra: 2463 / 2320,
  6930. bottom: 166 / 2629
  6931. }
  6932. },
  6933. back: {
  6934. height: math.unit(2.75, "meters"),
  6935. weight: math.unit(1200, "lb"),
  6936. name: "Back",
  6937. image: {
  6938. source: "./media/characters/teal/back.svg",
  6939. extra: 2580 / 2489,
  6940. bottom: 151 / 2731
  6941. }
  6942. },
  6943. sitting: {
  6944. height: math.unit(1.9, "meters"),
  6945. weight: math.unit(1200, "lb"),
  6946. name: "Sitting",
  6947. image: {
  6948. source: "./media/characters/teal/sitting.svg",
  6949. extra: 623 / 590,
  6950. bottom: 121 / 744
  6951. }
  6952. },
  6953. standing: {
  6954. height: math.unit(2.75, "meters"),
  6955. weight: math.unit(1200, "lb"),
  6956. name: "Standing",
  6957. image: {
  6958. source: "./media/characters/teal/standing.svg",
  6959. extra: 923 / 893,
  6960. bottom: 60 / 983
  6961. }
  6962. },
  6963. stretching: {
  6964. height: math.unit(3.65, "meters"),
  6965. weight: math.unit(1200, "lb"),
  6966. name: "Stretching",
  6967. image: {
  6968. source: "./media/characters/teal/stretching.svg",
  6969. extra: 1276 / 1244,
  6970. bottom: 0 / 1276
  6971. }
  6972. },
  6973. legged: {
  6974. height: math.unit(1.3, "meters"),
  6975. weight: math.unit(100, "lb"),
  6976. name: "Legged",
  6977. image: {
  6978. source: "./media/characters/teal/legged.svg",
  6979. extra: 462 / 437,
  6980. bottom: 24 / 486
  6981. }
  6982. },
  6983. naga: {
  6984. height: math.unit(5.4, "meters"),
  6985. weight: math.unit(4000, "lb"),
  6986. name: "Naga",
  6987. image: {
  6988. source: "./media/characters/teal/naga.svg",
  6989. extra: 1902 / 1858,
  6990. bottom: 0 / 1902
  6991. }
  6992. },
  6993. hand: {
  6994. height: math.unit(0.52, "meters"),
  6995. name: "Hand",
  6996. image: {
  6997. source: "./media/characters/teal/hand.svg"
  6998. }
  6999. },
  7000. maw: {
  7001. height: math.unit(0.43, "meters"),
  7002. name: "Maw",
  7003. image: {
  7004. source: "./media/characters/teal/maw.svg"
  7005. }
  7006. },
  7007. slit: {
  7008. height: math.unit(0.25, "meters"),
  7009. name: "Slit",
  7010. image: {
  7011. source: "./media/characters/teal/slit.svg"
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(2.75, "meters"),
  7019. default: true
  7020. },
  7021. {
  7022. name: "Macro",
  7023. height: math.unit(300, "feet")
  7024. },
  7025. {
  7026. name: "Macro+",
  7027. height: math.unit(2000, "feet")
  7028. },
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7033. {
  7034. frontCat: {
  7035. height: math.unit(6, "feet"),
  7036. weight: math.unit(180, "lbs"),
  7037. name: "Front (Cat)",
  7038. image: {
  7039. source: "./media/characters/ravin-amulet/front-cat.svg"
  7040. }
  7041. },
  7042. frontCatAlt: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(180, "lbs"),
  7045. name: "Front (Alt, Cat)",
  7046. image: {
  7047. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7048. }
  7049. },
  7050. frontWerewolf: {
  7051. height: math.unit(6 * 1.2, "feet"),
  7052. weight: math.unit(225, "lbs"),
  7053. name: "Front (Werewolf)",
  7054. image: {
  7055. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7056. }
  7057. },
  7058. backWerewolf: {
  7059. height: math.unit(6 * 1.2, "feet"),
  7060. weight: math.unit(225, "lbs"),
  7061. name: "Back (Werewolf)",
  7062. image: {
  7063. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7064. }
  7065. },
  7066. },
  7067. [
  7068. {
  7069. name: "Nano",
  7070. height: math.unit(1, "micrometer")
  7071. },
  7072. {
  7073. name: "Micro",
  7074. height: math.unit(1, "inch")
  7075. },
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(6, "feet"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(60, "feet")
  7084. }
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(165, "lbs"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/fluoresce/front.svg"
  7096. }
  7097. }
  7098. },
  7099. [
  7100. {
  7101. name: "Micro",
  7102. height: math.unit(6, "cm")
  7103. },
  7104. {
  7105. name: "Normal",
  7106. height: math.unit(5 + 7 / 12, "feet"),
  7107. default: true
  7108. },
  7109. {
  7110. name: "Macro",
  7111. height: math.unit(56, "feet")
  7112. },
  7113. {
  7114. name: "Megamacro",
  7115. height: math.unit(1.9, "miles")
  7116. },
  7117. ]
  7118. ))
  7119. characterMakers.push(() => makeCharacter(
  7120. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7121. {
  7122. front: {
  7123. height: math.unit(9 + 6 / 12, "feet"),
  7124. weight: math.unit(523, "lbs"),
  7125. name: "Side",
  7126. image: {
  7127. source: "./media/characters/aurora/side.svg"
  7128. }
  7129. }
  7130. },
  7131. [
  7132. {
  7133. name: "Normal",
  7134. height: math.unit(9 + 6 / 12, "feet")
  7135. },
  7136. {
  7137. name: "Macro",
  7138. height: math.unit(96, "feet"),
  7139. default: true
  7140. },
  7141. {
  7142. name: "Macro+",
  7143. height: math.unit(243, "feet")
  7144. },
  7145. ]
  7146. ))
  7147. characterMakers.push(() => makeCharacter(
  7148. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7149. {
  7150. front: {
  7151. height: math.unit(194, "cm"),
  7152. weight: math.unit(90, "kg"),
  7153. name: "Front",
  7154. image: {
  7155. source: "./media/characters/ranek/front.svg"
  7156. }
  7157. },
  7158. side: {
  7159. height: math.unit(194, "cm"),
  7160. weight: math.unit(90, "kg"),
  7161. name: "Side",
  7162. image: {
  7163. source: "./media/characters/ranek/side.svg"
  7164. }
  7165. },
  7166. back: {
  7167. height: math.unit(194, "cm"),
  7168. weight: math.unit(90, "kg"),
  7169. name: "Back",
  7170. image: {
  7171. source: "./media/characters/ranek/back.svg"
  7172. }
  7173. },
  7174. feral: {
  7175. height: math.unit(30, "cm"),
  7176. weight: math.unit(1.6, "lbs"),
  7177. name: "Feral",
  7178. image: {
  7179. source: "./media/characters/ranek/feral.svg"
  7180. }
  7181. },
  7182. },
  7183. [
  7184. {
  7185. name: "Normal",
  7186. height: math.unit(194, "cm"),
  7187. default: true
  7188. },
  7189. {
  7190. name: "Macro",
  7191. height: math.unit(100, "meters")
  7192. },
  7193. ]
  7194. ))
  7195. characterMakers.push(() => makeCharacter(
  7196. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7197. {
  7198. front: {
  7199. height: math.unit(5 + 6 / 12, "feet"),
  7200. weight: math.unit(153, "lbs"),
  7201. name: "Front",
  7202. image: {
  7203. source: "./media/characters/andrew-cooper/front.svg"
  7204. }
  7205. },
  7206. },
  7207. [
  7208. {
  7209. name: "Nano",
  7210. height: math.unit(1, "mm")
  7211. },
  7212. {
  7213. name: "Micro",
  7214. height: math.unit(2, "inches")
  7215. },
  7216. {
  7217. name: "Normal",
  7218. height: math.unit(5 + 6 / 12, "feet"),
  7219. default: true
  7220. }
  7221. ]
  7222. ))
  7223. characterMakers.push(() => makeCharacter(
  7224. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7225. {
  7226. front: {
  7227. height: math.unit(6, "feet"),
  7228. weight: math.unit(180, "lbs"),
  7229. name: "Front",
  7230. image: {
  7231. source: "./media/characters/akane-sato/front.svg",
  7232. extra: 1219 / 1140
  7233. }
  7234. },
  7235. back: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(180, "lbs"),
  7238. name: "Back",
  7239. image: {
  7240. source: "./media/characters/akane-sato/back.svg",
  7241. extra: 1219 / 1170
  7242. }
  7243. },
  7244. },
  7245. [
  7246. {
  7247. name: "Normal",
  7248. height: math.unit(2.5, "meters")
  7249. },
  7250. {
  7251. name: "Macro",
  7252. height: math.unit(250, "meters"),
  7253. default: true
  7254. },
  7255. {
  7256. name: "Megamacro",
  7257. height: math.unit(25, "km")
  7258. },
  7259. ]
  7260. ))
  7261. characterMakers.push(() => makeCharacter(
  7262. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7263. {
  7264. front: {
  7265. height: math.unit(6, "feet"),
  7266. weight: math.unit(65, "kg"),
  7267. name: "Front",
  7268. image: {
  7269. source: "./media/characters/rook/front.svg",
  7270. extra: 960 / 950
  7271. }
  7272. }
  7273. },
  7274. [
  7275. {
  7276. name: "Normal",
  7277. height: math.unit(8.8, "feet")
  7278. },
  7279. {
  7280. name: "Macro",
  7281. height: math.unit(88, "feet"),
  7282. default: true
  7283. },
  7284. {
  7285. name: "Megamacro",
  7286. height: math.unit(8, "miles")
  7287. },
  7288. ]
  7289. ))
  7290. characterMakers.push(() => makeCharacter(
  7291. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7292. {
  7293. front: {
  7294. height: math.unit(12 + 2 / 12, "feet"),
  7295. weight: math.unit(808, "lbs"),
  7296. name: "Front",
  7297. image: {
  7298. source: "./media/characters/prodigy/front.svg"
  7299. }
  7300. }
  7301. },
  7302. [
  7303. {
  7304. name: "Normal",
  7305. height: math.unit(12 + 2 / 12, "feet"),
  7306. default: true
  7307. },
  7308. {
  7309. name: "Macro",
  7310. height: math.unit(143, "feet")
  7311. },
  7312. {
  7313. name: "Macro+",
  7314. height: math.unit(400, "feet")
  7315. },
  7316. ]
  7317. ))
  7318. characterMakers.push(() => makeCharacter(
  7319. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7320. {
  7321. front: {
  7322. height: math.unit(6, "feet"),
  7323. weight: math.unit(225, "lbs"),
  7324. name: "Front",
  7325. image: {
  7326. source: "./media/characters/daniel/front.svg"
  7327. }
  7328. },
  7329. leaning: {
  7330. height: math.unit(6, "feet"),
  7331. weight: math.unit(225, "lbs"),
  7332. name: "Leaning",
  7333. image: {
  7334. source: "./media/characters/daniel/leaning.svg"
  7335. }
  7336. },
  7337. },
  7338. [
  7339. {
  7340. name: "Macro",
  7341. height: math.unit(1000, "feet"),
  7342. default: true
  7343. },
  7344. ]
  7345. ))
  7346. characterMakers.push(() => makeCharacter(
  7347. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7348. {
  7349. front: {
  7350. height: math.unit(6, "feet"),
  7351. weight: math.unit(88, "lbs"),
  7352. name: "Front",
  7353. image: {
  7354. source: "./media/characters/chiros/front.svg",
  7355. extra: 306 / 226
  7356. }
  7357. },
  7358. side: {
  7359. height: math.unit(6, "feet"),
  7360. weight: math.unit(88, "lbs"),
  7361. name: "Side",
  7362. image: {
  7363. source: "./media/characters/chiros/side.svg",
  7364. extra: 306 / 226
  7365. }
  7366. },
  7367. },
  7368. [
  7369. {
  7370. name: "Normal",
  7371. height: math.unit(6, "cm"),
  7372. default: true
  7373. },
  7374. ]
  7375. ))
  7376. characterMakers.push(() => makeCharacter(
  7377. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7378. {
  7379. front: {
  7380. height: math.unit(6, "feet"),
  7381. weight: math.unit(100, "lbs"),
  7382. name: "Front",
  7383. image: {
  7384. source: "./media/characters/selka/front.svg",
  7385. extra: 947 / 887
  7386. }
  7387. }
  7388. },
  7389. [
  7390. {
  7391. name: "Normal",
  7392. height: math.unit(5, "cm"),
  7393. default: true
  7394. },
  7395. ]
  7396. ))
  7397. characterMakers.push(() => makeCharacter(
  7398. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7399. {
  7400. front: {
  7401. height: math.unit(8 + 3 / 12, "feet"),
  7402. weight: math.unit(424, "lbs"),
  7403. name: "Front",
  7404. image: {
  7405. source: "./media/characters/verin/front.svg",
  7406. extra: 1845 / 1550
  7407. }
  7408. },
  7409. frontArmored: {
  7410. height: math.unit(8 + 3 / 12, "feet"),
  7411. weight: math.unit(424, "lbs"),
  7412. name: "Front (Armored)",
  7413. image: {
  7414. source: "./media/characters/verin/front-armor.svg",
  7415. extra: 1845 / 1550,
  7416. bottom: 0.01
  7417. }
  7418. },
  7419. back: {
  7420. height: math.unit(8 + 3 / 12, "feet"),
  7421. weight: math.unit(424, "lbs"),
  7422. name: "Back",
  7423. image: {
  7424. source: "./media/characters/verin/back.svg",
  7425. bottom: 0.1,
  7426. extra: 1
  7427. }
  7428. },
  7429. foot: {
  7430. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7431. name: "Foot",
  7432. image: {
  7433. source: "./media/characters/verin/foot.svg"
  7434. }
  7435. },
  7436. },
  7437. [
  7438. {
  7439. name: "Normal",
  7440. height: math.unit(8 + 3 / 12, "feet")
  7441. },
  7442. {
  7443. name: "Minimacro",
  7444. height: math.unit(21, "feet"),
  7445. default: true
  7446. },
  7447. {
  7448. name: "Macro",
  7449. height: math.unit(626, "feet")
  7450. },
  7451. ]
  7452. ))
  7453. characterMakers.push(() => makeCharacter(
  7454. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7455. {
  7456. front: {
  7457. height: math.unit(2.718, "meters"),
  7458. weight: math.unit(150, "lbs"),
  7459. name: "Front",
  7460. image: {
  7461. source: "./media/characters/sovrim-terraquian/front.svg"
  7462. }
  7463. },
  7464. back: {
  7465. height: math.unit(2.718, "meters"),
  7466. weight: math.unit(150, "lbs"),
  7467. name: "Back",
  7468. image: {
  7469. source: "./media/characters/sovrim-terraquian/back.svg"
  7470. }
  7471. }
  7472. },
  7473. [
  7474. {
  7475. name: "Micro",
  7476. height: math.unit(2, "inches")
  7477. },
  7478. {
  7479. name: "Small",
  7480. height: math.unit(1, "meter")
  7481. },
  7482. {
  7483. name: "Normal",
  7484. height: math.unit(Math.E, "meters"),
  7485. default: true
  7486. },
  7487. {
  7488. name: "Macro",
  7489. height: math.unit(20, "meters")
  7490. },
  7491. {
  7492. name: "Macro+",
  7493. height: math.unit(400, "meters")
  7494. },
  7495. ]
  7496. ))
  7497. characterMakers.push(() => makeCharacter(
  7498. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7499. {
  7500. front: {
  7501. height: math.unit(7, "feet"),
  7502. weight: math.unit(489, "lbs"),
  7503. name: "Front",
  7504. image: {
  7505. source: "./media/characters/reece-silvermane/front.svg",
  7506. bottom: 0.02,
  7507. extra: 1
  7508. }
  7509. },
  7510. },
  7511. [
  7512. {
  7513. name: "Macro",
  7514. height: math.unit(1.5, "miles"),
  7515. default: true
  7516. },
  7517. ]
  7518. ))
  7519. characterMakers.push(() => makeCharacter(
  7520. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7521. {
  7522. front: {
  7523. height: math.unit(6, "feet"),
  7524. weight: math.unit(78, "kg"),
  7525. name: "Front",
  7526. image: {
  7527. source: "./media/characters/kane/front.svg",
  7528. extra: 978 / 899
  7529. }
  7530. },
  7531. },
  7532. [
  7533. {
  7534. name: "Normal",
  7535. height: math.unit(2.1, "m"),
  7536. },
  7537. {
  7538. name: "Macro",
  7539. height: math.unit(1, "km"),
  7540. default: true
  7541. },
  7542. ]
  7543. ))
  7544. characterMakers.push(() => makeCharacter(
  7545. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7546. {
  7547. front: {
  7548. height: math.unit(6, "feet"),
  7549. weight: math.unit(200, "kg"),
  7550. name: "Front",
  7551. image: {
  7552. source: "./media/characters/tegon/front.svg",
  7553. bottom: 0.01,
  7554. extra: 1
  7555. }
  7556. },
  7557. },
  7558. [
  7559. {
  7560. name: "Micro",
  7561. height: math.unit(1, "inch")
  7562. },
  7563. {
  7564. name: "Normal",
  7565. height: math.unit(6 + 3 / 12, "feet"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Macro",
  7570. height: math.unit(300, "feet")
  7571. },
  7572. {
  7573. name: "Megamacro",
  7574. height: math.unit(69, "miles")
  7575. },
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7580. {
  7581. side: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(2304, "lbs"),
  7584. name: "Side",
  7585. image: {
  7586. source: "./media/characters/arcturax/side.svg",
  7587. extra: 790 / 376,
  7588. bottom: 0.01
  7589. }
  7590. },
  7591. },
  7592. [
  7593. {
  7594. name: "Micro",
  7595. height: math.unit(2, "inch")
  7596. },
  7597. {
  7598. name: "Normal",
  7599. height: math.unit(6, "feet")
  7600. },
  7601. {
  7602. name: "Macro",
  7603. height: math.unit(39, "feet"),
  7604. default: true
  7605. },
  7606. {
  7607. name: "Megamacro",
  7608. height: math.unit(7, "miles")
  7609. },
  7610. ]
  7611. ))
  7612. characterMakers.push(() => makeCharacter(
  7613. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7614. {
  7615. front: {
  7616. height: math.unit(6, "feet"),
  7617. weight: math.unit(50, "lbs"),
  7618. name: "Front",
  7619. image: {
  7620. source: "./media/characters/sentri/front.svg",
  7621. extra: 1750 / 1570,
  7622. bottom: 0.025
  7623. }
  7624. },
  7625. frontAlt: {
  7626. height: math.unit(6, "feet"),
  7627. weight: math.unit(50, "lbs"),
  7628. name: "Front (Alt)",
  7629. image: {
  7630. source: "./media/characters/sentri/front-alt.svg",
  7631. extra: 1750 / 1570,
  7632. bottom: 0.025
  7633. }
  7634. },
  7635. },
  7636. [
  7637. {
  7638. name: "Normal",
  7639. height: math.unit(15, "feet"),
  7640. default: true
  7641. },
  7642. {
  7643. name: "Macro",
  7644. height: math.unit(2500, "feet")
  7645. }
  7646. ]
  7647. ))
  7648. characterMakers.push(() => makeCharacter(
  7649. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7650. {
  7651. front: {
  7652. height: math.unit(5 + 8 / 12, "feet"),
  7653. weight: math.unit(130, "lbs"),
  7654. name: "Front",
  7655. image: {
  7656. source: "./media/characters/corvin/front.svg",
  7657. extra: 1803 / 1629
  7658. }
  7659. },
  7660. frontShirt: {
  7661. height: math.unit(5 + 8 / 12, "feet"),
  7662. weight: math.unit(130, "lbs"),
  7663. name: "Front (Shirt)",
  7664. image: {
  7665. source: "./media/characters/corvin/front-shirt.svg",
  7666. extra: 1803 / 1629
  7667. }
  7668. },
  7669. frontPoncho: {
  7670. height: math.unit(5 + 8 / 12, "feet"),
  7671. weight: math.unit(130, "lbs"),
  7672. name: "Front (Poncho)",
  7673. image: {
  7674. source: "./media/characters/corvin/front-poncho.svg",
  7675. extra: 1803 / 1629
  7676. }
  7677. },
  7678. side: {
  7679. height: math.unit(5 + 8 / 12, "feet"),
  7680. weight: math.unit(130, "lbs"),
  7681. name: "Side",
  7682. image: {
  7683. source: "./media/characters/corvin/side.svg",
  7684. extra: 1012 / 945
  7685. }
  7686. },
  7687. back: {
  7688. height: math.unit(5 + 8 / 12, "feet"),
  7689. weight: math.unit(130, "lbs"),
  7690. name: "Back",
  7691. image: {
  7692. source: "./media/characters/corvin/back.svg",
  7693. extra: 1803 / 1629
  7694. }
  7695. },
  7696. },
  7697. [
  7698. {
  7699. name: "Micro",
  7700. height: math.unit(3, "inches")
  7701. },
  7702. {
  7703. name: "Normal",
  7704. height: math.unit(5 + 8 / 12, "feet")
  7705. },
  7706. {
  7707. name: "Macro",
  7708. height: math.unit(300, "feet"),
  7709. default: true
  7710. },
  7711. {
  7712. name: "Megamacro",
  7713. height: math.unit(500, "miles")
  7714. }
  7715. ]
  7716. ))
  7717. characterMakers.push(() => makeCharacter(
  7718. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7719. {
  7720. front: {
  7721. height: math.unit(6, "feet"),
  7722. weight: math.unit(135, "lbs"),
  7723. name: "Front",
  7724. image: {
  7725. source: "./media/characters/q/front.svg",
  7726. extra: 854 / 752,
  7727. bottom: 0.005
  7728. }
  7729. },
  7730. back: {
  7731. height: math.unit(6, "feet"),
  7732. weight: math.unit(130, "lbs"),
  7733. name: "Back",
  7734. image: {
  7735. source: "./media/characters/q/back.svg",
  7736. extra: 854 / 752
  7737. }
  7738. },
  7739. },
  7740. [
  7741. {
  7742. name: "Macro",
  7743. height: math.unit(90, "feet"),
  7744. default: true
  7745. },
  7746. {
  7747. name: "Extra Macro",
  7748. height: math.unit(300, "feet"),
  7749. },
  7750. {
  7751. name: "BIG WALF",
  7752. height: math.unit(750, "feet"),
  7753. },
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(6, "feet"),
  7761. weight: math.unit(150, "lbs"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/carley/front.svg",
  7765. extra: 3927 / 3540,
  7766. bottom: 29.2 / 735
  7767. }
  7768. }
  7769. },
  7770. [
  7771. {
  7772. name: "Normal",
  7773. height: math.unit(6 + 3 / 12, "feet")
  7774. },
  7775. {
  7776. name: "Macro",
  7777. height: math.unit(185, "feet"),
  7778. default: true
  7779. },
  7780. {
  7781. name: "Megamacro",
  7782. height: math.unit(8, "miles"),
  7783. },
  7784. ]
  7785. ))
  7786. characterMakers.push(() => makeCharacter(
  7787. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7788. {
  7789. front: {
  7790. height: math.unit(3, "feet"),
  7791. weight: math.unit(28, "lbs"),
  7792. name: "Front",
  7793. image: {
  7794. source: "./media/characters/citrine/front.svg"
  7795. }
  7796. }
  7797. },
  7798. [
  7799. {
  7800. name: "Normal",
  7801. height: math.unit(3, "feet"),
  7802. default: true
  7803. }
  7804. ]
  7805. ))
  7806. characterMakers.push(() => makeCharacter(
  7807. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7808. {
  7809. front: {
  7810. height: math.unit(14, "feet"),
  7811. weight: math.unit(1450, "kg"),
  7812. capacity: math.unit(15, "people"),
  7813. name: "Front",
  7814. image: {
  7815. source: "./media/characters/aura-starwind/front.svg",
  7816. extra: 1455 / 1335
  7817. }
  7818. },
  7819. side: {
  7820. height: math.unit(14, "feet"),
  7821. weight: math.unit(1450, "kg"),
  7822. capacity: math.unit(15, "people"),
  7823. name: "Side",
  7824. image: {
  7825. source: "./media/characters/aura-starwind/side.svg",
  7826. extra: 1654 / 1497
  7827. }
  7828. },
  7829. taur: {
  7830. height: math.unit(18, "feet"),
  7831. weight: math.unit(5500, "kg"),
  7832. capacity: math.unit(50, "people"),
  7833. name: "Taur",
  7834. image: {
  7835. source: "./media/characters/aura-starwind/taur.svg",
  7836. extra: 1760 / 1650
  7837. }
  7838. },
  7839. feral: {
  7840. height: math.unit(46, "feet"),
  7841. weight: math.unit(25000, "kg"),
  7842. capacity: math.unit(120, "people"),
  7843. name: "Feral",
  7844. image: {
  7845. source: "./media/characters/aura-starwind/feral.svg"
  7846. }
  7847. },
  7848. },
  7849. [
  7850. {
  7851. name: "Normal",
  7852. height: math.unit(14, "feet"),
  7853. default: true
  7854. },
  7855. {
  7856. name: "Macro",
  7857. height: math.unit(50, "meters")
  7858. },
  7859. {
  7860. name: "Megamacro",
  7861. height: math.unit(5000, "meters")
  7862. },
  7863. {
  7864. name: "Gigamacro",
  7865. height: math.unit(100000, "kilometers")
  7866. },
  7867. ]
  7868. ))
  7869. characterMakers.push(() => makeCharacter(
  7870. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7871. {
  7872. front: {
  7873. height: math.unit(2 + 7 / 12, "feet"),
  7874. weight: math.unit(32, "lbs"),
  7875. name: "Front",
  7876. image: {
  7877. source: "./media/characters/rivet/front.svg",
  7878. extra: 1716 / 1658,
  7879. bottom: 0.03
  7880. }
  7881. },
  7882. foot: {
  7883. height: math.unit(0.551, "feet"),
  7884. name: "Rivet's Foot",
  7885. image: {
  7886. source: "./media/characters/rivet/foot.svg"
  7887. },
  7888. rename: true
  7889. }
  7890. },
  7891. [
  7892. {
  7893. name: "Micro",
  7894. height: math.unit(1.5, "inches"),
  7895. },
  7896. {
  7897. name: "Normal",
  7898. height: math.unit(2 + 7 / 12, "feet"),
  7899. default: true
  7900. },
  7901. {
  7902. name: "Macro",
  7903. height: math.unit(85, "feet")
  7904. },
  7905. {
  7906. name: "Megamacro",
  7907. height: math.unit(2.2, "km")
  7908. }
  7909. ]
  7910. ))
  7911. characterMakers.push(() => makeCharacter(
  7912. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7913. {
  7914. front: {
  7915. height: math.unit(5 + 9 / 12, "feet"),
  7916. weight: math.unit(150, "lbs"),
  7917. name: "Front",
  7918. image: {
  7919. source: "./media/characters/coffee/front.svg",
  7920. extra: 3666 / 3032,
  7921. bottom: 0.04
  7922. }
  7923. },
  7924. foot: {
  7925. height: math.unit(1.29, "feet"),
  7926. name: "Foot",
  7927. image: {
  7928. source: "./media/characters/coffee/foot.svg"
  7929. }
  7930. },
  7931. },
  7932. [
  7933. {
  7934. name: "Micro",
  7935. height: math.unit(2, "inches"),
  7936. },
  7937. {
  7938. name: "Normal",
  7939. height: math.unit(5 + 9 / 12, "feet"),
  7940. default: true
  7941. },
  7942. {
  7943. name: "Macro",
  7944. height: math.unit(800, "feet")
  7945. },
  7946. {
  7947. name: "Megamacro",
  7948. height: math.unit(25, "miles")
  7949. }
  7950. ]
  7951. ))
  7952. characterMakers.push(() => makeCharacter(
  7953. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7954. {
  7955. front: {
  7956. height: math.unit(6, "feet"),
  7957. weight: math.unit(200, "lbs"),
  7958. name: "Front",
  7959. image: {
  7960. source: "./media/characters/chari-gal/front.svg",
  7961. extra: 1568 / 1385,
  7962. bottom: 0.047
  7963. }
  7964. },
  7965. gigantamax: {
  7966. height: math.unit(6 * 16, "feet"),
  7967. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7968. name: "Gigantamax",
  7969. image: {
  7970. source: "./media/characters/chari-gal/gigantamax.svg",
  7971. extra: 1124 / 888,
  7972. bottom: 0.03
  7973. }
  7974. },
  7975. },
  7976. [
  7977. {
  7978. name: "Normal",
  7979. height: math.unit(5 + 7 / 12, "feet")
  7980. },
  7981. {
  7982. name: "Macro",
  7983. height: math.unit(200, "feet"),
  7984. default: true
  7985. }
  7986. ]
  7987. ))
  7988. characterMakers.push(() => makeCharacter(
  7989. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7990. {
  7991. front: {
  7992. height: math.unit(6, "feet"),
  7993. weight: math.unit(150, "lbs"),
  7994. name: "Front",
  7995. image: {
  7996. source: "./media/characters/nova/front.svg",
  7997. extra: 5000 / 4722,
  7998. bottom: 0.02
  7999. }
  8000. }
  8001. },
  8002. [
  8003. {
  8004. name: "Micro-",
  8005. height: math.unit(0.8, "inches")
  8006. },
  8007. {
  8008. name: "Micro",
  8009. height: math.unit(2, "inches"),
  8010. default: true
  8011. },
  8012. ]
  8013. ))
  8014. characterMakers.push(() => makeCharacter(
  8015. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8016. {
  8017. front: {
  8018. height: math.unit(3 + 1 / 12, "feet"),
  8019. weight: math.unit(21.7, "lbs"),
  8020. name: "Front",
  8021. image: {
  8022. source: "./media/characters/argent/front.svg",
  8023. extra: 1471 / 1331,
  8024. bottom: 100.8 / 1575.5
  8025. }
  8026. }
  8027. },
  8028. [
  8029. {
  8030. name: "Micro",
  8031. height: math.unit(2, "inches")
  8032. },
  8033. {
  8034. name: "Normal",
  8035. height: math.unit(3 + 1 / 12, "feet"),
  8036. default: true
  8037. },
  8038. {
  8039. name: "Macro",
  8040. height: math.unit(120, "feet")
  8041. },
  8042. ]
  8043. ))
  8044. characterMakers.push(() => makeCharacter(
  8045. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8046. {
  8047. lamp: {
  8048. height: math.unit(7 * 1559 / 989, "feet"),
  8049. name: "Magic Lamp",
  8050. image: {
  8051. source: "./media/characters/mira-al-cul/lamp.svg",
  8052. extra: 1617 / 1559
  8053. }
  8054. },
  8055. front: {
  8056. height: math.unit(7, "feet"),
  8057. name: "Front",
  8058. image: {
  8059. source: "./media/characters/mira-al-cul/front.svg",
  8060. extra: 1044 / 990
  8061. }
  8062. },
  8063. },
  8064. [
  8065. {
  8066. name: "Heavily Restricted",
  8067. height: math.unit(7 * 1559 / 989, "feet")
  8068. },
  8069. {
  8070. name: "Freshly Freed",
  8071. height: math.unit(50 * 1559 / 989, "feet")
  8072. },
  8073. {
  8074. name: "World Encompassing",
  8075. height: math.unit(10000 * 1559 / 989, "miles")
  8076. },
  8077. {
  8078. name: "Galactic",
  8079. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8080. },
  8081. {
  8082. name: "Palmed Universe",
  8083. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8084. default: true
  8085. },
  8086. {
  8087. name: "Multiversal Matriarch",
  8088. height: math.unit(8.87e10, "yottameters")
  8089. },
  8090. {
  8091. name: "Void Mother",
  8092. height: math.unit(3.14e110, "yottaparsecs")
  8093. },
  8094. {
  8095. name: "Toying with Transcendence",
  8096. height: math.unit(1e307, "meters")
  8097. },
  8098. ]
  8099. ))
  8100. characterMakers.push(() => makeCharacter(
  8101. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8102. {
  8103. front: {
  8104. height: math.unit(17 + 1 / 12, "feet"),
  8105. weight: math.unit(476.2 * 5, "lbs"),
  8106. name: "Front",
  8107. image: {
  8108. source: "./media/characters/kuro-shi-uchū/front.svg",
  8109. extra: 2329 / 1835,
  8110. bottom: 0.02
  8111. }
  8112. },
  8113. },
  8114. [
  8115. {
  8116. name: "Micro",
  8117. height: math.unit(2, "inches")
  8118. },
  8119. {
  8120. name: "Normal",
  8121. height: math.unit(12, "meters")
  8122. },
  8123. {
  8124. name: "Planetary",
  8125. height: math.unit(0.00929, "AU"),
  8126. default: true
  8127. },
  8128. {
  8129. name: "Universal",
  8130. height: math.unit(20, "gigaparsecs")
  8131. },
  8132. ]
  8133. ))
  8134. characterMakers.push(() => makeCharacter(
  8135. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8136. {
  8137. front: {
  8138. height: math.unit(5 + 2 / 12, "feet"),
  8139. weight: math.unit(120, "lbs"),
  8140. name: "Front",
  8141. image: {
  8142. source: "./media/characters/katherine/front.svg",
  8143. extra: 2075 / 1969
  8144. }
  8145. },
  8146. dress: {
  8147. height: math.unit(5 + 2 / 12, "feet"),
  8148. weight: math.unit(120, "lbs"),
  8149. name: "Dress",
  8150. image: {
  8151. source: "./media/characters/katherine/dress.svg",
  8152. extra: 2258 / 2064
  8153. }
  8154. },
  8155. },
  8156. [
  8157. {
  8158. name: "Micro",
  8159. height: math.unit(1, "inches"),
  8160. default: true
  8161. },
  8162. {
  8163. name: "Normal",
  8164. height: math.unit(5 + 2 / 12, "feet")
  8165. },
  8166. {
  8167. name: "Macro",
  8168. height: math.unit(100, "meters")
  8169. },
  8170. {
  8171. name: "Megamacro",
  8172. height: math.unit(80, "miles")
  8173. },
  8174. ]
  8175. ))
  8176. characterMakers.push(() => makeCharacter(
  8177. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8178. {
  8179. front: {
  8180. height: math.unit(7 + 8 / 12, "feet"),
  8181. weight: math.unit(250, "lbs"),
  8182. name: "Front",
  8183. image: {
  8184. source: "./media/characters/yevis/front.svg",
  8185. extra: 1938 / 1755
  8186. }
  8187. }
  8188. },
  8189. [
  8190. {
  8191. name: "Mortal",
  8192. height: math.unit(7 + 8 / 12, "feet")
  8193. },
  8194. {
  8195. name: "Battle",
  8196. height: math.unit(25 + 11 / 12, "feet")
  8197. },
  8198. {
  8199. name: "Wrath",
  8200. height: math.unit(1654 + 11 / 12, "feet")
  8201. },
  8202. {
  8203. name: "Planet Destroyer",
  8204. height: math.unit(12000, "miles")
  8205. },
  8206. {
  8207. name: "Galaxy Conqueror",
  8208. height: math.unit(1.45, "zettameters"),
  8209. default: true
  8210. },
  8211. {
  8212. name: "Universal War",
  8213. height: math.unit(184, "gigaparsecs")
  8214. },
  8215. {
  8216. name: "Eternity War",
  8217. height: math.unit(1.98e55, "yottaparsecs")
  8218. },
  8219. ]
  8220. ))
  8221. characterMakers.push(() => makeCharacter(
  8222. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8223. {
  8224. front: {
  8225. height: math.unit(5 + 8 / 12, "feet"),
  8226. weight: math.unit(63, "kg"),
  8227. name: "Front",
  8228. image: {
  8229. source: "./media/characters/xavier/front.svg",
  8230. extra: 944 / 883
  8231. }
  8232. },
  8233. frontStretch: {
  8234. height: math.unit(5 + 8 / 12, "feet"),
  8235. weight: math.unit(63, "kg"),
  8236. name: "Stretching",
  8237. image: {
  8238. source: "./media/characters/xavier/front-stretch.svg",
  8239. extra: 962 / 820
  8240. }
  8241. },
  8242. },
  8243. [
  8244. {
  8245. name: "Normal",
  8246. height: math.unit(5 + 8 / 12, "feet")
  8247. },
  8248. {
  8249. name: "Macro",
  8250. height: math.unit(100, "meters"),
  8251. default: true
  8252. },
  8253. {
  8254. name: "McLargeHuge",
  8255. height: math.unit(10, "miles")
  8256. },
  8257. ]
  8258. ))
  8259. characterMakers.push(() => makeCharacter(
  8260. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8261. {
  8262. front: {
  8263. height: math.unit(5 + 5 / 12, "feet"),
  8264. weight: math.unit(150, "lb"),
  8265. name: "Front",
  8266. image: {
  8267. source: "./media/characters/joshii/front.svg",
  8268. extra: 765 / 653,
  8269. bottom: 51 / 816
  8270. }
  8271. },
  8272. foot: {
  8273. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8274. name: "Foot",
  8275. image: {
  8276. source: "./media/characters/joshii/foot.svg"
  8277. }
  8278. },
  8279. },
  8280. [
  8281. {
  8282. name: "Micro",
  8283. height: math.unit(2, "inches"),
  8284. default: true
  8285. },
  8286. {
  8287. name: "Normal",
  8288. height: math.unit(5 + 5 / 12, "feet")
  8289. },
  8290. {
  8291. name: "Macro",
  8292. height: math.unit(785, "feet")
  8293. },
  8294. {
  8295. name: "Megamacro",
  8296. height: math.unit(24.5, "miles")
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8302. {
  8303. front: {
  8304. height: math.unit(6, "feet"),
  8305. weight: math.unit(150, "lb"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/goddess-elizabeth/front.svg",
  8309. extra: 1800 / 1525,
  8310. bottom: 0.005
  8311. }
  8312. },
  8313. foot: {
  8314. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8315. name: "Foot",
  8316. image: {
  8317. source: "./media/characters/goddess-elizabeth/foot.svg"
  8318. }
  8319. },
  8320. mouth: {
  8321. height: math.unit(6, "feet"),
  8322. name: "Mouth",
  8323. image: {
  8324. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8325. }
  8326. },
  8327. },
  8328. [
  8329. {
  8330. name: "Micro",
  8331. height: math.unit(12, "feet")
  8332. },
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(80, "miles"),
  8336. default: true
  8337. },
  8338. {
  8339. name: "Macro",
  8340. height: math.unit(15000, "parsecs")
  8341. },
  8342. ]
  8343. ))
  8344. characterMakers.push(() => makeCharacter(
  8345. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8346. {
  8347. front: {
  8348. height: math.unit(5 + 9 / 12, "feet"),
  8349. weight: math.unit(144, "lb"),
  8350. name: "Front",
  8351. image: {
  8352. source: "./media/characters/kara/front.svg"
  8353. }
  8354. },
  8355. feet: {
  8356. height: math.unit(6 / 6.765, "feet"),
  8357. name: "Kara's Feet",
  8358. rename: true,
  8359. image: {
  8360. source: "./media/characters/kara/feet.svg"
  8361. }
  8362. },
  8363. },
  8364. [
  8365. {
  8366. name: "Normal",
  8367. height: math.unit(5 + 9 / 12, "feet")
  8368. },
  8369. {
  8370. name: "Macro",
  8371. height: math.unit(174, "feet"),
  8372. default: true
  8373. },
  8374. ]
  8375. ))
  8376. characterMakers.push(() => makeCharacter(
  8377. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8378. {
  8379. front: {
  8380. height: math.unit(18, "feet"),
  8381. weight: math.unit(4050, "lb"),
  8382. name: "Front",
  8383. image: {
  8384. source: "./media/characters/tyrone/front.svg",
  8385. extra: 2405 / 2270,
  8386. bottom: 182 / 2587
  8387. }
  8388. },
  8389. },
  8390. [
  8391. {
  8392. name: "Normal",
  8393. height: math.unit(18, "feet"),
  8394. default: true
  8395. },
  8396. {
  8397. name: "Macro",
  8398. height: math.unit(300, "feet")
  8399. },
  8400. {
  8401. name: "Megamacro",
  8402. height: math.unit(15, "km")
  8403. },
  8404. {
  8405. name: "Gigamacro",
  8406. height: math.unit(500, "km")
  8407. },
  8408. {
  8409. name: "Teramacro",
  8410. height: math.unit(0.5, "gigameters")
  8411. },
  8412. {
  8413. name: "Omnimacro",
  8414. height: math.unit(1e252, "yottauniverse")
  8415. },
  8416. ]
  8417. ))
  8418. characterMakers.push(() => makeCharacter(
  8419. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8420. {
  8421. front: {
  8422. height: math.unit(7 + 8 / 12, "feet"),
  8423. weight: math.unit(120, "lb"),
  8424. name: "Front",
  8425. image: {
  8426. source: "./media/characters/danny/front.svg",
  8427. extra: 1490 / 1350
  8428. }
  8429. },
  8430. back: {
  8431. height: math.unit(7 + 8 / 12, "feet"),
  8432. weight: math.unit(120, "lb"),
  8433. name: "Back",
  8434. image: {
  8435. source: "./media/characters/danny/back.svg",
  8436. extra: 1490 / 1350
  8437. }
  8438. },
  8439. },
  8440. [
  8441. {
  8442. name: "Normal",
  8443. height: math.unit(7 + 8 / 12, "feet"),
  8444. default: true
  8445. },
  8446. ]
  8447. ))
  8448. characterMakers.push(() => makeCharacter(
  8449. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8450. {
  8451. front: {
  8452. height: math.unit(3.5, "inches"),
  8453. weight: math.unit(19, "grams"),
  8454. name: "Front",
  8455. image: {
  8456. source: "./media/characters/mallow/front.svg",
  8457. extra: 471 / 431
  8458. }
  8459. },
  8460. back: {
  8461. height: math.unit(3.5, "inches"),
  8462. weight: math.unit(19, "grams"),
  8463. name: "Back",
  8464. image: {
  8465. source: "./media/characters/mallow/back.svg",
  8466. extra: 471 / 431
  8467. }
  8468. },
  8469. },
  8470. [
  8471. {
  8472. name: "Normal",
  8473. height: math.unit(3.5, "inches"),
  8474. default: true
  8475. },
  8476. ]
  8477. ))
  8478. characterMakers.push(() => makeCharacter(
  8479. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8480. {
  8481. front: {
  8482. height: math.unit(9, "feet"),
  8483. weight: math.unit(230, "kg"),
  8484. name: "Front",
  8485. image: {
  8486. source: "./media/characters/starry-aqua/front.svg"
  8487. }
  8488. },
  8489. back: {
  8490. height: math.unit(9, "feet"),
  8491. weight: math.unit(230, "kg"),
  8492. name: "Back",
  8493. image: {
  8494. source: "./media/characters/starry-aqua/back.svg"
  8495. }
  8496. },
  8497. hand: {
  8498. height: math.unit(9 * 0.1168, "feet"),
  8499. name: "Hand",
  8500. image: {
  8501. source: "./media/characters/starry-aqua/hand.svg"
  8502. }
  8503. },
  8504. foot: {
  8505. height: math.unit(9 * 0.18, "feet"),
  8506. name: "Foot",
  8507. image: {
  8508. source: "./media/characters/starry-aqua/foot.svg"
  8509. }
  8510. }
  8511. },
  8512. [
  8513. {
  8514. name: "Micro",
  8515. height: math.unit(3, "inches")
  8516. },
  8517. {
  8518. name: "Normal",
  8519. height: math.unit(9, "feet")
  8520. },
  8521. {
  8522. name: "Macro",
  8523. height: math.unit(300, "feet"),
  8524. default: true
  8525. },
  8526. {
  8527. name: "Megamacro",
  8528. height: math.unit(3200, "feet")
  8529. }
  8530. ]
  8531. ))
  8532. characterMakers.push(() => makeCharacter(
  8533. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8534. {
  8535. front: {
  8536. height: math.unit(6, "feet"),
  8537. weight: math.unit(230, "lb"),
  8538. name: "Front",
  8539. image: {
  8540. source: "./media/characters/luka/front.svg",
  8541. extra: 1,
  8542. bottom: 0.025
  8543. }
  8544. },
  8545. },
  8546. [
  8547. {
  8548. name: "Normal",
  8549. height: math.unit(12 + 8 / 12, "feet"),
  8550. default: true
  8551. },
  8552. {
  8553. name: "Minimacro",
  8554. height: math.unit(20, "feet")
  8555. },
  8556. {
  8557. name: "Macro",
  8558. height: math.unit(250, "feet")
  8559. },
  8560. {
  8561. name: "Megamacro",
  8562. height: math.unit(5, "miles")
  8563. },
  8564. {
  8565. name: "Gigamacro",
  8566. height: math.unit(8000, "miles")
  8567. },
  8568. ]
  8569. ))
  8570. characterMakers.push(() => makeCharacter(
  8571. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8572. {
  8573. front: {
  8574. height: math.unit(6, "feet"),
  8575. weight: math.unit(150, "lb"),
  8576. name: "Front",
  8577. image: {
  8578. source: "./media/characters/natalie-nightring/front.svg",
  8579. extra: 1,
  8580. bottom: 0.06
  8581. }
  8582. },
  8583. },
  8584. [
  8585. {
  8586. name: "Uh Oh",
  8587. height: math.unit(0.1, "mm")
  8588. },
  8589. {
  8590. name: "Small",
  8591. height: math.unit(3, "inches")
  8592. },
  8593. {
  8594. name: "Human Scale",
  8595. height: math.unit(6, "feet")
  8596. },
  8597. {
  8598. name: "Librarian",
  8599. height: math.unit(50, "feet"),
  8600. default: true
  8601. },
  8602. {
  8603. name: "Immense",
  8604. height: math.unit(200, "miles")
  8605. },
  8606. ]
  8607. ))
  8608. characterMakers.push(() => makeCharacter(
  8609. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8610. {
  8611. front: {
  8612. height: math.unit(6, "feet"),
  8613. weight: math.unit(180, "lbs"),
  8614. name: "Front",
  8615. image: {
  8616. source: "./media/characters/danni-rosie/front.svg",
  8617. extra: 1260 / 1128,
  8618. bottom: 0.022
  8619. }
  8620. },
  8621. },
  8622. [
  8623. {
  8624. name: "Micro",
  8625. height: math.unit(2, "inches"),
  8626. default: true
  8627. },
  8628. ]
  8629. ))
  8630. characterMakers.push(() => makeCharacter(
  8631. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8632. {
  8633. front: {
  8634. height: math.unit(5 + 9 / 12, "feet"),
  8635. weight: math.unit(220, "lb"),
  8636. name: "Front",
  8637. image: {
  8638. source: "./media/characters/samantha-kruse/front.svg",
  8639. extra: (985 / 935),
  8640. bottom: 0.03
  8641. }
  8642. },
  8643. frontUndressed: {
  8644. height: math.unit(5 + 9 / 12, "feet"),
  8645. weight: math.unit(220, "lb"),
  8646. name: "Front (Undressed)",
  8647. image: {
  8648. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8649. extra: (973 / 923),
  8650. bottom: 0.025
  8651. }
  8652. },
  8653. fat: {
  8654. height: math.unit(5 + 9 / 12, "feet"),
  8655. weight: math.unit(900, "lb"),
  8656. name: "Front (Fat)",
  8657. image: {
  8658. source: "./media/characters/samantha-kruse/fat.svg",
  8659. extra: 2688 / 2561
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Normal",
  8666. height: math.unit(5 + 9 / 12, "feet"),
  8667. default: true
  8668. }
  8669. ]
  8670. ))
  8671. characterMakers.push(() => makeCharacter(
  8672. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8673. {
  8674. back: {
  8675. height: math.unit(5 + 4 / 12, "feet"),
  8676. weight: math.unit(4963, "lb"),
  8677. name: "Back",
  8678. image: {
  8679. source: "./media/characters/amelia-rosie/back.svg",
  8680. extra: 1113 / 963,
  8681. bottom: 0.01
  8682. }
  8683. },
  8684. },
  8685. [
  8686. {
  8687. name: "Level 0",
  8688. height: math.unit(5 + 4 / 12, "feet")
  8689. },
  8690. {
  8691. name: "Level 1",
  8692. height: math.unit(164597, "feet"),
  8693. default: true
  8694. },
  8695. {
  8696. name: "Level 2",
  8697. height: math.unit(956243, "miles")
  8698. },
  8699. {
  8700. name: "Level 3",
  8701. height: math.unit(29421709423, "miles")
  8702. },
  8703. {
  8704. name: "Level 4",
  8705. height: math.unit(154, "lightyears")
  8706. },
  8707. {
  8708. name: "Level 5",
  8709. height: math.unit(4738272, "lightyears")
  8710. },
  8711. {
  8712. name: "Level 6",
  8713. height: math.unit(145787152896, "lightyears")
  8714. },
  8715. ]
  8716. ))
  8717. characterMakers.push(() => makeCharacter(
  8718. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8719. {
  8720. front: {
  8721. height: math.unit(5 + 11 / 12, "feet"),
  8722. weight: math.unit(65, "kg"),
  8723. name: "Front",
  8724. image: {
  8725. source: "./media/characters/rook-kitara/front.svg",
  8726. extra: 1347 / 1274,
  8727. bottom: 0.005
  8728. }
  8729. },
  8730. },
  8731. [
  8732. {
  8733. name: "Totally Unfair",
  8734. height: math.unit(1.8, "mm")
  8735. },
  8736. {
  8737. name: "Lap Rookie",
  8738. height: math.unit(1.4, "feet")
  8739. },
  8740. {
  8741. name: "Normal",
  8742. height: math.unit(5 + 11 / 12, "feet"),
  8743. default: true
  8744. },
  8745. {
  8746. name: "How Did This Happen",
  8747. height: math.unit(80, "miles")
  8748. }
  8749. ]
  8750. ))
  8751. characterMakers.push(() => makeCharacter(
  8752. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8753. {
  8754. front: {
  8755. height: math.unit(7, "feet"),
  8756. weight: math.unit(300, "lb"),
  8757. name: "Front",
  8758. image: {
  8759. source: "./media/characters/pisces/front.svg",
  8760. extra: 2255 / 2115,
  8761. bottom: 0.03
  8762. }
  8763. },
  8764. back: {
  8765. height: math.unit(7, "feet"),
  8766. weight: math.unit(300, "lb"),
  8767. name: "Back",
  8768. image: {
  8769. source: "./media/characters/pisces/back.svg",
  8770. extra: 2146 / 2055,
  8771. bottom: 0.04
  8772. }
  8773. },
  8774. },
  8775. [
  8776. {
  8777. name: "Normal",
  8778. height: math.unit(7, "feet"),
  8779. default: true
  8780. },
  8781. {
  8782. name: "Swimming Pool",
  8783. height: math.unit(12.2, "meters")
  8784. },
  8785. {
  8786. name: "Olympic Swimming Pool",
  8787. height: math.unit(56.3, "meters")
  8788. },
  8789. {
  8790. name: "Lake Superior",
  8791. height: math.unit(93900, "meters")
  8792. },
  8793. {
  8794. name: "Mediterranean Sea",
  8795. height: math.unit(644457, "meters")
  8796. },
  8797. {
  8798. name: "World's Oceans",
  8799. height: math.unit(4567491, "meters")
  8800. },
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8805. {
  8806. front: {
  8807. height: math.unit(2.3, "meters"),
  8808. weight: math.unit(120, "kg"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/zelas/front.svg"
  8812. }
  8813. },
  8814. side: {
  8815. height: math.unit(2.3, "meters"),
  8816. weight: math.unit(120, "kg"),
  8817. name: "Side",
  8818. image: {
  8819. source: "./media/characters/zelas/side.svg"
  8820. }
  8821. },
  8822. back: {
  8823. height: math.unit(2.3, "meters"),
  8824. weight: math.unit(120, "kg"),
  8825. name: "Back",
  8826. image: {
  8827. source: "./media/characters/zelas/back.svg"
  8828. }
  8829. },
  8830. foot: {
  8831. height: math.unit(1.116, "feet"),
  8832. name: "Foot",
  8833. image: {
  8834. source: "./media/characters/zelas/foot.svg"
  8835. }
  8836. },
  8837. },
  8838. [
  8839. {
  8840. name: "Normal",
  8841. height: math.unit(2.3, "meters")
  8842. },
  8843. {
  8844. name: "Macro",
  8845. height: math.unit(30, "meters"),
  8846. default: true
  8847. },
  8848. ]
  8849. ))
  8850. characterMakers.push(() => makeCharacter(
  8851. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8852. {
  8853. front: {
  8854. height: math.unit(1, "inch"),
  8855. weight: math.unit(0.21, "grams"),
  8856. name: "Front",
  8857. image: {
  8858. source: "./media/characters/talbot/front.svg",
  8859. extra: 594 / 544
  8860. }
  8861. },
  8862. },
  8863. [
  8864. {
  8865. name: "Micro",
  8866. height: math.unit(1, "inch"),
  8867. default: true
  8868. },
  8869. ]
  8870. ))
  8871. characterMakers.push(() => makeCharacter(
  8872. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8873. {
  8874. front: {
  8875. height: math.unit(3 + 3 / 12, "feet"),
  8876. weight: math.unit(51.8, "lb"),
  8877. name: "Front",
  8878. image: {
  8879. source: "./media/characters/fliss/front.svg",
  8880. extra: 840 / 640
  8881. }
  8882. },
  8883. },
  8884. [
  8885. {
  8886. name: "Teeny Tiny",
  8887. height: math.unit(1, "mm")
  8888. },
  8889. {
  8890. name: "Small",
  8891. height: math.unit(1, "inch"),
  8892. default: true
  8893. },
  8894. {
  8895. name: "Standard Sylveon",
  8896. height: math.unit(3 + 3 / 12, "feet")
  8897. },
  8898. {
  8899. name: "Large Nuisance",
  8900. height: math.unit(33, "feet")
  8901. },
  8902. {
  8903. name: "City Filler",
  8904. height: math.unit(3000, "feet")
  8905. },
  8906. {
  8907. name: "New Horizon",
  8908. height: math.unit(6000, "miles")
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8914. {
  8915. front: {
  8916. height: math.unit(5, "cm"),
  8917. weight: math.unit(1.94, "g"),
  8918. name: "Front",
  8919. image: {
  8920. source: "./media/characters/fleta/front.svg",
  8921. extra: 835 / 803
  8922. }
  8923. },
  8924. back: {
  8925. height: math.unit(5, "cm"),
  8926. weight: math.unit(1.94, "g"),
  8927. name: "Back",
  8928. image: {
  8929. source: "./media/characters/fleta/back.svg",
  8930. extra: 835 / 803
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Micro",
  8937. height: math.unit(5, "cm"),
  8938. default: true
  8939. },
  8940. ]
  8941. ))
  8942. characterMakers.push(() => makeCharacter(
  8943. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8944. {
  8945. front: {
  8946. height: math.unit(6, "feet"),
  8947. weight: math.unit(225, "lb"),
  8948. name: "Front",
  8949. image: {
  8950. source: "./media/characters/dominic/front.svg",
  8951. extra: 1770 / 1620,
  8952. bottom: 0.025
  8953. }
  8954. },
  8955. back: {
  8956. height: math.unit(6, "feet"),
  8957. weight: math.unit(225, "lb"),
  8958. name: "Back",
  8959. image: {
  8960. source: "./media/characters/dominic/back.svg",
  8961. extra: 1745 / 1620,
  8962. bottom: 0.065
  8963. }
  8964. },
  8965. },
  8966. [
  8967. {
  8968. name: "Nano",
  8969. height: math.unit(0.1, "mm")
  8970. },
  8971. {
  8972. name: "Micro-",
  8973. height: math.unit(1, "mm")
  8974. },
  8975. {
  8976. name: "Micro",
  8977. height: math.unit(4, "inches")
  8978. },
  8979. {
  8980. name: "Normal",
  8981. height: math.unit(6 + 4 / 12, "feet"),
  8982. default: true
  8983. },
  8984. {
  8985. name: "Macro",
  8986. height: math.unit(115, "feet")
  8987. },
  8988. {
  8989. name: "Macro+",
  8990. height: math.unit(955, "feet")
  8991. },
  8992. {
  8993. name: "Megamacro",
  8994. height: math.unit(8990, "feet")
  8995. },
  8996. {
  8997. name: "Gigmacro",
  8998. height: math.unit(9310, "miles")
  8999. },
  9000. {
  9001. name: "Teramacro",
  9002. height: math.unit(1567005010, "miles")
  9003. },
  9004. {
  9005. name: "Examacro",
  9006. height: math.unit(1425, "parsecs")
  9007. },
  9008. ]
  9009. ))
  9010. characterMakers.push(() => makeCharacter(
  9011. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9012. {
  9013. front: {
  9014. height: math.unit(400, "feet"),
  9015. weight: math.unit(44444444, "lb"),
  9016. name: "Front",
  9017. image: {
  9018. source: "./media/characters/major-colonel/front.svg"
  9019. }
  9020. },
  9021. back: {
  9022. height: math.unit(400, "feet"),
  9023. weight: math.unit(44444444, "lb"),
  9024. name: "Back",
  9025. image: {
  9026. source: "./media/characters/major-colonel/back.svg"
  9027. }
  9028. },
  9029. },
  9030. [
  9031. {
  9032. name: "Macro",
  9033. height: math.unit(400, "feet"),
  9034. default: true
  9035. },
  9036. ]
  9037. ))
  9038. characterMakers.push(() => makeCharacter(
  9039. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9040. {
  9041. catFront: {
  9042. height: math.unit(6, "feet"),
  9043. weight: math.unit(120, "lb"),
  9044. name: "Front (Cat Side)",
  9045. image: {
  9046. source: "./media/characters/axel-lycan/cat-front.svg",
  9047. extra: 430 / 402,
  9048. bottom: 43 / 472.35
  9049. }
  9050. },
  9051. catBack: {
  9052. height: math.unit(6, "feet"),
  9053. weight: math.unit(120, "lb"),
  9054. name: "Back (Cat Side)",
  9055. image: {
  9056. source: "./media/characters/axel-lycan/cat-back.svg",
  9057. extra: 447 / 419,
  9058. bottom: 23.3 / 469
  9059. }
  9060. },
  9061. wolfFront: {
  9062. height: math.unit(6, "feet"),
  9063. weight: math.unit(120, "lb"),
  9064. name: "Front (Wolf Side)",
  9065. image: {
  9066. source: "./media/characters/axel-lycan/wolf-front.svg",
  9067. extra: 485 / 456,
  9068. bottom: 19 / 504
  9069. }
  9070. },
  9071. wolfBack: {
  9072. height: math.unit(6, "feet"),
  9073. weight: math.unit(120, "lb"),
  9074. name: "Back (Wolf Side)",
  9075. image: {
  9076. source: "./media/characters/axel-lycan/wolf-back.svg",
  9077. extra: 475 / 438,
  9078. bottom: 39.2 / 514
  9079. }
  9080. },
  9081. },
  9082. [
  9083. {
  9084. name: "Macro",
  9085. height: math.unit(1, "km"),
  9086. default: true
  9087. },
  9088. ]
  9089. ))
  9090. characterMakers.push(() => makeCharacter(
  9091. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9092. {
  9093. front: {
  9094. height: math.unit(5 + 9 / 12, "feet"),
  9095. weight: math.unit(175, "lb"),
  9096. name: "Front",
  9097. image: {
  9098. source: "./media/characters/vanrel-hyena/front.svg",
  9099. extra: 1086 / 1010,
  9100. bottom: 0.04
  9101. }
  9102. },
  9103. },
  9104. [
  9105. {
  9106. name: "Normal",
  9107. height: math.unit(5 + 9 / 12, "feet"),
  9108. default: true
  9109. },
  9110. ]
  9111. ))
  9112. characterMakers.push(() => makeCharacter(
  9113. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9114. {
  9115. front: {
  9116. height: math.unit(6, "feet"),
  9117. weight: math.unit(103, "lb"),
  9118. name: "Front",
  9119. image: {
  9120. source: "./media/characters/abbott-absol/front.svg",
  9121. extra: 2010 / 1842
  9122. }
  9123. },
  9124. },
  9125. [
  9126. {
  9127. name: "Megamicro",
  9128. height: math.unit(0.1, "mm")
  9129. },
  9130. {
  9131. name: "Micro",
  9132. height: math.unit(1, "inch")
  9133. },
  9134. {
  9135. name: "Normal",
  9136. height: math.unit(6, "feet"),
  9137. default: true
  9138. },
  9139. ]
  9140. ))
  9141. characterMakers.push(() => makeCharacter(
  9142. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9143. {
  9144. front: {
  9145. height: math.unit(6, "feet"),
  9146. weight: math.unit(264, "lb"),
  9147. name: "Front",
  9148. image: {
  9149. source: "./media/characters/hector/front.svg",
  9150. extra: 2280 / 2130,
  9151. bottom: 0.07
  9152. }
  9153. },
  9154. },
  9155. [
  9156. {
  9157. name: "Normal",
  9158. height: math.unit(12.25, "foot"),
  9159. default: true
  9160. },
  9161. {
  9162. name: "Macro",
  9163. height: math.unit(160, "feet")
  9164. },
  9165. ]
  9166. ))
  9167. characterMakers.push(() => makeCharacter(
  9168. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9169. {
  9170. front: {
  9171. height: math.unit(6, "feet"),
  9172. weight: math.unit(150, "lb"),
  9173. name: "Front",
  9174. image: {
  9175. source: "./media/characters/sal/front.svg",
  9176. extra: 1846 / 1699,
  9177. bottom: 0.04
  9178. }
  9179. },
  9180. },
  9181. [
  9182. {
  9183. name: "Megamacro",
  9184. height: math.unit(10, "miles"),
  9185. default: true
  9186. },
  9187. ]
  9188. ))
  9189. characterMakers.push(() => makeCharacter(
  9190. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9191. {
  9192. front: {
  9193. height: math.unit(3, "meters"),
  9194. weight: math.unit(450, "kg"),
  9195. name: "front",
  9196. image: {
  9197. source: "./media/characters/ranger/front.svg",
  9198. extra: 2401 / 2243,
  9199. bottom: 0.05
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Normal",
  9206. height: math.unit(3, "meters"),
  9207. default: true
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9213. {
  9214. front: {
  9215. height: math.unit(14, "feet"),
  9216. weight: math.unit(800, "kg"),
  9217. name: "Front",
  9218. image: {
  9219. source: "./media/characters/theresa/front.svg",
  9220. extra: 3575 / 3346,
  9221. bottom: 0.03
  9222. }
  9223. },
  9224. },
  9225. [
  9226. {
  9227. name: "Normal",
  9228. height: math.unit(14, "feet"),
  9229. default: true
  9230. },
  9231. ]
  9232. ))
  9233. characterMakers.push(() => makeCharacter(
  9234. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9235. {
  9236. front: {
  9237. height: math.unit(6, "feet"),
  9238. weight: math.unit(3, "kg"),
  9239. name: "Front",
  9240. image: {
  9241. source: "./media/characters/ine/front.svg",
  9242. extra: 678 / 539,
  9243. bottom: 0.023
  9244. }
  9245. },
  9246. },
  9247. [
  9248. {
  9249. name: "Normal",
  9250. height: math.unit(2.265, "feet"),
  9251. default: true
  9252. },
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9257. {
  9258. front: {
  9259. height: math.unit(5, "feet"),
  9260. weight: math.unit(30, "kg"),
  9261. name: "Front",
  9262. image: {
  9263. source: "./media/characters/vial/front.svg",
  9264. extra: 1365 / 1277,
  9265. bottom: 0.04
  9266. }
  9267. },
  9268. },
  9269. [
  9270. {
  9271. name: "Normal",
  9272. height: math.unit(5, "feet"),
  9273. default: true
  9274. },
  9275. ]
  9276. ))
  9277. characterMakers.push(() => makeCharacter(
  9278. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9279. {
  9280. side: {
  9281. height: math.unit(3.4, "meters"),
  9282. weight: math.unit(1000, "lb"),
  9283. name: "Side",
  9284. image: {
  9285. source: "./media/characters/rovoska/side.svg",
  9286. extra: 4403 / 1515
  9287. }
  9288. },
  9289. },
  9290. [
  9291. {
  9292. name: "Normal",
  9293. height: math.unit(3.4, "meters"),
  9294. default: true
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9300. {
  9301. front: {
  9302. height: math.unit(8, "feet"),
  9303. weight: math.unit(315, "lb"),
  9304. name: "Front",
  9305. image: {
  9306. source: "./media/characters/gunner-rotthbauer/front.svg"
  9307. }
  9308. },
  9309. back: {
  9310. height: math.unit(8, "feet"),
  9311. weight: math.unit(315, "lb"),
  9312. name: "Back",
  9313. image: {
  9314. source: "./media/characters/gunner-rotthbauer/back.svg"
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Micro",
  9321. height: math.unit(3.5, "inches")
  9322. },
  9323. {
  9324. name: "Normal",
  9325. height: math.unit(8, "feet"),
  9326. default: true
  9327. },
  9328. {
  9329. name: "Macro",
  9330. height: math.unit(250, "feet")
  9331. },
  9332. {
  9333. name: "Megamacro",
  9334. height: math.unit(1, "AU")
  9335. },
  9336. ]
  9337. ))
  9338. characterMakers.push(() => makeCharacter(
  9339. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9340. {
  9341. front: {
  9342. height: math.unit(5 + 5 / 12, "feet"),
  9343. weight: math.unit(140, "lb"),
  9344. name: "Front",
  9345. image: {
  9346. source: "./media/characters/allatia/front.svg",
  9347. extra: 1227 / 1180,
  9348. bottom: 0.027
  9349. }
  9350. },
  9351. },
  9352. [
  9353. {
  9354. name: "Normal",
  9355. height: math.unit(5 + 5 / 12, "feet")
  9356. },
  9357. {
  9358. name: "Macro",
  9359. height: math.unit(250, "feet"),
  9360. default: true
  9361. },
  9362. {
  9363. name: "Megamacro",
  9364. height: math.unit(8, "miles")
  9365. }
  9366. ]
  9367. ))
  9368. characterMakers.push(() => makeCharacter(
  9369. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9370. {
  9371. front: {
  9372. height: math.unit(6, "feet"),
  9373. weight: math.unit(120, "lb"),
  9374. name: "Front",
  9375. image: {
  9376. source: "./media/characters/tene/front.svg",
  9377. extra: 1728 / 1578,
  9378. bottom: 0.022
  9379. }
  9380. },
  9381. stomping: {
  9382. height: math.unit(2.025, "meters"),
  9383. weight: math.unit(120, "lb"),
  9384. name: "Stomping",
  9385. image: {
  9386. source: "./media/characters/tene/stomping.svg",
  9387. extra: 938 / 873,
  9388. bottom: 0.01
  9389. }
  9390. },
  9391. sitting: {
  9392. height: math.unit(1, "meter"),
  9393. weight: math.unit(120, "lb"),
  9394. name: "Sitting",
  9395. image: {
  9396. source: "./media/characters/tene/sitting.svg",
  9397. extra: 437 / 415,
  9398. bottom: 0.1
  9399. }
  9400. },
  9401. feral: {
  9402. height: math.unit(3.9, "feet"),
  9403. weight: math.unit(250, "lb"),
  9404. name: "Feral",
  9405. image: {
  9406. source: "./media/characters/tene/feral.svg",
  9407. extra: 717 / 458,
  9408. bottom: 0.179
  9409. }
  9410. },
  9411. },
  9412. [
  9413. {
  9414. name: "Normal",
  9415. height: math.unit(6, "feet")
  9416. },
  9417. {
  9418. name: "Macro",
  9419. height: math.unit(300, "feet"),
  9420. default: true
  9421. },
  9422. {
  9423. name: "Megamacro",
  9424. height: math.unit(5, "miles")
  9425. },
  9426. ]
  9427. ))
  9428. characterMakers.push(() => makeCharacter(
  9429. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9430. {
  9431. side: {
  9432. height: math.unit(6, "feet"),
  9433. name: "Side",
  9434. image: {
  9435. source: "./media/characters/evander/side.svg",
  9436. extra: 877 / 477
  9437. }
  9438. },
  9439. },
  9440. [
  9441. {
  9442. name: "Normal",
  9443. height: math.unit(0.83, "meters"),
  9444. default: true
  9445. },
  9446. ]
  9447. ))
  9448. characterMakers.push(() => makeCharacter(
  9449. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9450. {
  9451. front: {
  9452. height: math.unit(12, "feet"),
  9453. weight: math.unit(1000, "lb"),
  9454. name: "Front",
  9455. image: {
  9456. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9457. extra: 1762 / 1611
  9458. }
  9459. },
  9460. back: {
  9461. height: math.unit(12, "feet"),
  9462. weight: math.unit(1000, "lb"),
  9463. name: "Back",
  9464. image: {
  9465. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9466. extra: 1762 / 1611
  9467. }
  9468. },
  9469. },
  9470. [
  9471. {
  9472. name: "Normal",
  9473. height: math.unit(12, "feet"),
  9474. default: true
  9475. },
  9476. {
  9477. name: "Kaiju",
  9478. height: math.unit(150, "feet")
  9479. },
  9480. ]
  9481. ))
  9482. characterMakers.push(() => makeCharacter(
  9483. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9484. {
  9485. front: {
  9486. height: math.unit(6, "feet"),
  9487. weight: math.unit(150, "lb"),
  9488. name: "Front",
  9489. image: {
  9490. source: "./media/characters/zero-alurus/front.svg"
  9491. }
  9492. },
  9493. back: {
  9494. height: math.unit(6, "feet"),
  9495. weight: math.unit(150, "lb"),
  9496. name: "Back",
  9497. image: {
  9498. source: "./media/characters/zero-alurus/back.svg"
  9499. }
  9500. },
  9501. },
  9502. [
  9503. {
  9504. name: "Normal",
  9505. height: math.unit(5 + 10 / 12, "feet")
  9506. },
  9507. {
  9508. name: "Macro",
  9509. height: math.unit(60, "feet"),
  9510. default: true
  9511. },
  9512. {
  9513. name: "Macro+",
  9514. height: math.unit(450, "feet")
  9515. },
  9516. ]
  9517. ))
  9518. characterMakers.push(() => makeCharacter(
  9519. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9520. {
  9521. front: {
  9522. height: math.unit(6, "feet"),
  9523. weight: math.unit(200, "lb"),
  9524. name: "Front",
  9525. image: {
  9526. source: "./media/characters/mega-shi/front.svg",
  9527. extra: 1279 / 1250,
  9528. bottom: 0.02
  9529. }
  9530. },
  9531. back: {
  9532. height: math.unit(6, "feet"),
  9533. weight: math.unit(200, "lb"),
  9534. name: "Back",
  9535. image: {
  9536. source: "./media/characters/mega-shi/back.svg",
  9537. extra: 1279 / 1250,
  9538. bottom: 0.02
  9539. }
  9540. },
  9541. },
  9542. [
  9543. {
  9544. name: "Micro",
  9545. height: math.unit(16 + 6 / 12, "feet")
  9546. },
  9547. {
  9548. name: "Third Dimension",
  9549. height: math.unit(40, "meters")
  9550. },
  9551. {
  9552. name: "Normal",
  9553. height: math.unit(660, "feet"),
  9554. default: true
  9555. },
  9556. {
  9557. name: "Megamacro",
  9558. height: math.unit(10, "miles")
  9559. },
  9560. {
  9561. name: "Planetary Launch",
  9562. height: math.unit(500, "miles")
  9563. },
  9564. {
  9565. name: "Interstellar",
  9566. height: math.unit(1e9, "miles")
  9567. },
  9568. {
  9569. name: "Leaving the Universe",
  9570. height: math.unit(1, "gigaparsec")
  9571. },
  9572. {
  9573. name: "Travelling Universes",
  9574. height: math.unit(30e15, "parsecs")
  9575. },
  9576. ]
  9577. ))
  9578. characterMakers.push(() => makeCharacter(
  9579. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9580. {
  9581. front: {
  9582. height: math.unit(6, "feet"),
  9583. weight: math.unit(150, "lb"),
  9584. name: "Front",
  9585. image: {
  9586. source: "./media/characters/odyssey/front.svg",
  9587. extra: 1782 / 1582,
  9588. bottom: 0.01
  9589. }
  9590. },
  9591. side: {
  9592. height: math.unit(5.7, "feet"),
  9593. weight: math.unit(140, "lb"),
  9594. name: "Side",
  9595. image: {
  9596. source: "./media/characters/odyssey/side.svg",
  9597. extra: 6462 / 5700
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Normal",
  9604. height: math.unit(5 + 4 / 12, "feet")
  9605. },
  9606. {
  9607. name: "Macro",
  9608. height: math.unit(1, "km")
  9609. },
  9610. {
  9611. name: "Megamacro",
  9612. height: math.unit(3000, "km")
  9613. },
  9614. {
  9615. name: "Gigamacro",
  9616. height: math.unit(1, "AU"),
  9617. default: true
  9618. },
  9619. {
  9620. name: "Omniversal",
  9621. height: math.unit(100e14, "lightyears")
  9622. },
  9623. ]
  9624. ))
  9625. characterMakers.push(() => makeCharacter(
  9626. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9627. {
  9628. front: {
  9629. height: math.unit(6, "feet"),
  9630. weight: math.unit(300, "lb"),
  9631. name: "Front",
  9632. image: {
  9633. source: "./media/characters/mekuto/front.svg",
  9634. extra: 921 / 832,
  9635. bottom: 0.03
  9636. }
  9637. },
  9638. hand: {
  9639. height: math.unit(6 / 10.24, "feet"),
  9640. name: "Hand",
  9641. image: {
  9642. source: "./media/characters/mekuto/hand.svg"
  9643. }
  9644. },
  9645. foot: {
  9646. height: math.unit(6 / 5.05, "feet"),
  9647. name: "Foot",
  9648. image: {
  9649. source: "./media/characters/mekuto/foot.svg"
  9650. }
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Minimicro",
  9656. height: math.unit(0.2, "inches")
  9657. },
  9658. {
  9659. name: "Micro",
  9660. height: math.unit(1.5, "inches")
  9661. },
  9662. {
  9663. name: "Normal",
  9664. height: math.unit(5 + 11 / 12, "feet"),
  9665. default: true
  9666. },
  9667. {
  9668. name: "Minimacro",
  9669. height: math.unit(17 + 9 / 12, "feet")
  9670. },
  9671. {
  9672. name: "Macro",
  9673. height: math.unit(177.5, "feet")
  9674. },
  9675. {
  9676. name: "Megamacro",
  9677. height: math.unit(152, "miles")
  9678. },
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9683. {
  9684. front: {
  9685. height: math.unit(6.5, "inches"),
  9686. weight: math.unit(13, "oz"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/dafydd-tomos/front.svg",
  9690. extra: 2990 / 2603,
  9691. bottom: 0.03
  9692. }
  9693. },
  9694. },
  9695. [
  9696. {
  9697. name: "Micro",
  9698. height: math.unit(6.5, "inches"),
  9699. default: true
  9700. },
  9701. ]
  9702. ))
  9703. characterMakers.push(() => makeCharacter(
  9704. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9705. {
  9706. front: {
  9707. height: math.unit(6, "feet"),
  9708. weight: math.unit(150, "lb"),
  9709. name: "Front",
  9710. image: {
  9711. source: "./media/characters/splinter/front.svg",
  9712. extra: 2990 / 2882,
  9713. bottom: 0.04
  9714. }
  9715. },
  9716. back: {
  9717. height: math.unit(6, "feet"),
  9718. weight: math.unit(150, "lb"),
  9719. name: "Back",
  9720. image: {
  9721. source: "./media/characters/splinter/back.svg",
  9722. extra: 2990 / 2882,
  9723. bottom: 0.04
  9724. }
  9725. },
  9726. },
  9727. [
  9728. {
  9729. name: "Normal",
  9730. height: math.unit(6, "feet")
  9731. },
  9732. {
  9733. name: "Macro",
  9734. height: math.unit(230, "meters"),
  9735. default: true
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9741. {
  9742. front: {
  9743. height: math.unit(4 + 10 / 12, "feet"),
  9744. weight: math.unit(480, "lb"),
  9745. name: "Front",
  9746. image: {
  9747. source: "./media/characters/snow-gabumon/front.svg",
  9748. extra: 1140 / 963,
  9749. bottom: 0.058
  9750. }
  9751. },
  9752. back: {
  9753. height: math.unit(4 + 10 / 12, "feet"),
  9754. weight: math.unit(480, "lb"),
  9755. name: "Back",
  9756. image: {
  9757. source: "./media/characters/snow-gabumon/back.svg",
  9758. extra: 1115 / 962,
  9759. bottom: 0.041
  9760. }
  9761. },
  9762. frontUndresed: {
  9763. height: math.unit(4 + 10 / 12, "feet"),
  9764. weight: math.unit(480, "lb"),
  9765. name: "Front (Undressed)",
  9766. image: {
  9767. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9768. extra: 1061 / 960,
  9769. bottom: 0.045
  9770. }
  9771. },
  9772. },
  9773. [
  9774. {
  9775. name: "Micro",
  9776. height: math.unit(1, "inch")
  9777. },
  9778. {
  9779. name: "Normal",
  9780. height: math.unit(4 + 10 / 12, "feet"),
  9781. default: true
  9782. },
  9783. {
  9784. name: "Macro",
  9785. height: math.unit(200, "feet")
  9786. },
  9787. {
  9788. name: "Megamacro",
  9789. height: math.unit(120, "miles")
  9790. },
  9791. {
  9792. name: "Gigamacro",
  9793. height: math.unit(9800, "miles")
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9799. {
  9800. front: {
  9801. height: math.unit(1.7, "meters"),
  9802. weight: math.unit(140, "lb"),
  9803. name: "Front",
  9804. image: {
  9805. source: "./media/characters/moody/front.svg",
  9806. extra: 3226 / 3007,
  9807. bottom: 0.087
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Micro",
  9814. height: math.unit(1, "mm")
  9815. },
  9816. {
  9817. name: "Normal",
  9818. height: math.unit(1.7, "meters"),
  9819. default: true
  9820. },
  9821. {
  9822. name: "Macro",
  9823. height: math.unit(80, "meters")
  9824. },
  9825. {
  9826. name: "Macro+",
  9827. height: math.unit(500, "meters")
  9828. },
  9829. ]
  9830. ))
  9831. characterMakers.push(() => makeCharacter(
  9832. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9833. {
  9834. front: {
  9835. height: math.unit(6, "feet"),
  9836. weight: math.unit(150, "lb"),
  9837. name: "Front",
  9838. image: {
  9839. source: "./media/characters/zyas/front.svg",
  9840. extra: 1180 / 1120,
  9841. bottom: 0.045
  9842. }
  9843. },
  9844. },
  9845. [
  9846. {
  9847. name: "Normal",
  9848. height: math.unit(10, "feet"),
  9849. default: true
  9850. },
  9851. {
  9852. name: "Macro",
  9853. height: math.unit(500, "feet")
  9854. },
  9855. {
  9856. name: "Megamacro",
  9857. height: math.unit(5, "miles")
  9858. },
  9859. {
  9860. name: "Teramacro",
  9861. height: math.unit(150000, "miles")
  9862. },
  9863. ]
  9864. ))
  9865. characterMakers.push(() => makeCharacter(
  9866. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9867. {
  9868. front: {
  9869. height: math.unit(6, "feet"),
  9870. weight: math.unit(150, "lb"),
  9871. name: "Front",
  9872. image: {
  9873. source: "./media/characters/cuon/front.svg",
  9874. extra: 1390 / 1320,
  9875. bottom: 0.008
  9876. }
  9877. },
  9878. },
  9879. [
  9880. {
  9881. name: "Micro",
  9882. height: math.unit(3, "inches")
  9883. },
  9884. {
  9885. name: "Normal",
  9886. height: math.unit(18 + 9 / 12, "feet"),
  9887. default: true
  9888. },
  9889. {
  9890. name: "Macro",
  9891. height: math.unit(360, "feet")
  9892. },
  9893. {
  9894. name: "Megamacro",
  9895. height: math.unit(360, "miles")
  9896. },
  9897. ]
  9898. ))
  9899. characterMakers.push(() => makeCharacter(
  9900. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9901. {
  9902. front: {
  9903. height: math.unit(2.4, "meters"),
  9904. weight: math.unit(70, "kg"),
  9905. name: "Front",
  9906. image: {
  9907. source: "./media/characters/nyanuxk/front.svg",
  9908. extra: 1172 / 1084,
  9909. bottom: 0.065
  9910. }
  9911. },
  9912. side: {
  9913. height: math.unit(2.4, "meters"),
  9914. weight: math.unit(70, "kg"),
  9915. name: "Side",
  9916. image: {
  9917. source: "./media/characters/nyanuxk/side.svg",
  9918. extra: 1190 / 1132,
  9919. bottom: 0.007
  9920. }
  9921. },
  9922. back: {
  9923. height: math.unit(2.4, "meters"),
  9924. weight: math.unit(70, "kg"),
  9925. name: "Back",
  9926. image: {
  9927. source: "./media/characters/nyanuxk/back.svg",
  9928. extra: 1200 / 1141,
  9929. bottom: 0.015
  9930. }
  9931. },
  9932. foot: {
  9933. height: math.unit(0.52, "meters"),
  9934. name: "Foot",
  9935. image: {
  9936. source: "./media/characters/nyanuxk/foot.svg"
  9937. }
  9938. },
  9939. },
  9940. [
  9941. {
  9942. name: "Micro",
  9943. height: math.unit(2, "cm")
  9944. },
  9945. {
  9946. name: "Normal",
  9947. height: math.unit(2.4, "meters"),
  9948. default: true
  9949. },
  9950. {
  9951. name: "Smaller Macro",
  9952. height: math.unit(120, "meters")
  9953. },
  9954. {
  9955. name: "Bigger Macro",
  9956. height: math.unit(1.2, "km")
  9957. },
  9958. {
  9959. name: "Megamacro",
  9960. height: math.unit(15, "kilometers")
  9961. },
  9962. {
  9963. name: "Gigamacro",
  9964. height: math.unit(2000, "km")
  9965. },
  9966. {
  9967. name: "Teramacro",
  9968. height: math.unit(500000, "km")
  9969. },
  9970. ]
  9971. ))
  9972. characterMakers.push(() => makeCharacter(
  9973. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9974. {
  9975. side: {
  9976. height: math.unit(6, "feet"),
  9977. name: "Side",
  9978. image: {
  9979. source: "./media/characters/ailbhe/side.svg",
  9980. extra: 757 / 464,
  9981. bottom: 0.041
  9982. }
  9983. },
  9984. },
  9985. [
  9986. {
  9987. name: "Normal",
  9988. height: math.unit(1.07, "meters"),
  9989. default: true
  9990. },
  9991. ]
  9992. ))
  9993. characterMakers.push(() => makeCharacter(
  9994. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9995. {
  9996. front: {
  9997. height: math.unit(6, "feet"),
  9998. weight: math.unit(120, "kg"),
  9999. name: "Front",
  10000. image: {
  10001. source: "./media/characters/zevulfius/front.svg",
  10002. extra: 965 / 903
  10003. }
  10004. },
  10005. side: {
  10006. height: math.unit(6, "feet"),
  10007. weight: math.unit(120, "kg"),
  10008. name: "Side",
  10009. image: {
  10010. source: "./media/characters/zevulfius/side.svg",
  10011. extra: 939 / 900
  10012. }
  10013. },
  10014. back: {
  10015. height: math.unit(6, "feet"),
  10016. weight: math.unit(120, "kg"),
  10017. name: "Back",
  10018. image: {
  10019. source: "./media/characters/zevulfius/back.svg",
  10020. extra: 918 / 854,
  10021. bottom: 0.005
  10022. }
  10023. },
  10024. foot: {
  10025. height: math.unit(6 / 3.72, "feet"),
  10026. name: "Foot",
  10027. image: {
  10028. source: "./media/characters/zevulfius/foot.svg"
  10029. }
  10030. },
  10031. },
  10032. [
  10033. {
  10034. name: "Macro",
  10035. height: math.unit(750, "meters")
  10036. },
  10037. {
  10038. name: "Megamacro",
  10039. height: math.unit(20, "km"),
  10040. default: true
  10041. },
  10042. {
  10043. name: "Gigamacro",
  10044. height: math.unit(2000, "km")
  10045. },
  10046. {
  10047. name: "Teramacro",
  10048. height: math.unit(250000, "km")
  10049. },
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10054. {
  10055. front: {
  10056. height: math.unit(100, "feet"),
  10057. weight: math.unit(350, "kg"),
  10058. name: "Front",
  10059. image: {
  10060. source: "./media/characters/rikes/front.svg",
  10061. extra: 1565 / 1483,
  10062. bottom: 0.017
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Macro",
  10069. height: math.unit(100, "feet"),
  10070. default: true
  10071. },
  10072. ]
  10073. ))
  10074. characterMakers.push(() => makeCharacter(
  10075. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10076. {
  10077. anthro: {
  10078. height: math.unit(8, "feet"),
  10079. weight: math.unit(120, "kg"),
  10080. name: "Anthro",
  10081. image: {
  10082. source: "./media/characters/adam-silver-mane/anthro.svg",
  10083. extra: 5743 / 5339,
  10084. bottom: 0.07
  10085. }
  10086. },
  10087. taur: {
  10088. height: math.unit(16, "feet"),
  10089. weight: math.unit(1500, "kg"),
  10090. name: "Taur",
  10091. image: {
  10092. source: "./media/characters/adam-silver-mane/taur.svg",
  10093. extra: 1713 / 1571,
  10094. bottom: 0.01
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Normal",
  10101. height: math.unit(8, "feet")
  10102. },
  10103. {
  10104. name: "Minimacro",
  10105. height: math.unit(80, "feet")
  10106. },
  10107. {
  10108. name: "Macro",
  10109. height: math.unit(800, "feet"),
  10110. default: true
  10111. },
  10112. {
  10113. name: "Megamacro",
  10114. height: math.unit(8000, "feet")
  10115. },
  10116. {
  10117. name: "Gigamacro",
  10118. height: math.unit(800, "miles")
  10119. },
  10120. {
  10121. name: "Teramacro",
  10122. height: math.unit(80000, "miles")
  10123. },
  10124. {
  10125. name: "Celestial",
  10126. height: math.unit(8e6, "miles")
  10127. },
  10128. {
  10129. name: "Star Dragon",
  10130. height: math.unit(800000, "parsecs")
  10131. },
  10132. {
  10133. name: "Godly",
  10134. height: math.unit(800, "teraparsecs")
  10135. },
  10136. ]
  10137. ))
  10138. characterMakers.push(() => makeCharacter(
  10139. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10140. {
  10141. front: {
  10142. height: math.unit(6, "feet"),
  10143. weight: math.unit(150, "lb"),
  10144. name: "Front",
  10145. image: {
  10146. source: "./media/characters/ky'owin/front.svg",
  10147. extra: 3888 / 3068,
  10148. bottom: 0.015
  10149. }
  10150. },
  10151. },
  10152. [
  10153. {
  10154. name: "Normal",
  10155. height: math.unit(6 + 8 / 12, "feet")
  10156. },
  10157. {
  10158. name: "Large",
  10159. height: math.unit(68, "feet")
  10160. },
  10161. {
  10162. name: "Macro",
  10163. height: math.unit(132, "feet")
  10164. },
  10165. {
  10166. name: "Macro+",
  10167. height: math.unit(340, "feet")
  10168. },
  10169. {
  10170. name: "Macro++",
  10171. height: math.unit(680, "feet"),
  10172. default: true
  10173. },
  10174. {
  10175. name: "Megamacro",
  10176. height: math.unit(1, "mile")
  10177. },
  10178. {
  10179. name: "Megamacro+",
  10180. height: math.unit(10, "miles")
  10181. },
  10182. ]
  10183. ))
  10184. characterMakers.push(() => makeCharacter(
  10185. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10186. {
  10187. front: {
  10188. height: math.unit(4, "feet"),
  10189. weight: math.unit(50, "lb"),
  10190. name: "Front",
  10191. image: {
  10192. source: "./media/characters/mal/front.svg",
  10193. extra: 785 / 724,
  10194. bottom: 0.07
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Micro",
  10201. height: math.unit(4, "inches")
  10202. },
  10203. {
  10204. name: "Normal",
  10205. height: math.unit(4, "feet"),
  10206. default: true
  10207. },
  10208. {
  10209. name: "Macro",
  10210. height: math.unit(200, "feet")
  10211. },
  10212. ]
  10213. ))
  10214. characterMakers.push(() => makeCharacter(
  10215. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10216. {
  10217. front: {
  10218. height: math.unit(6, "feet"),
  10219. weight: math.unit(150, "lb"),
  10220. name: "Front",
  10221. image: {
  10222. source: "./media/characters/jordan-deware/front.svg",
  10223. extra: 1191 / 1012
  10224. }
  10225. },
  10226. },
  10227. [
  10228. {
  10229. name: "Nano",
  10230. height: math.unit(0.01, "mm")
  10231. },
  10232. {
  10233. name: "Minimicro",
  10234. height: math.unit(1, "mm")
  10235. },
  10236. {
  10237. name: "Micro",
  10238. height: math.unit(0.5, "inches")
  10239. },
  10240. {
  10241. name: "Normal",
  10242. height: math.unit(4, "feet"),
  10243. default: true
  10244. },
  10245. {
  10246. name: "Minimacro",
  10247. height: math.unit(40, "meters")
  10248. },
  10249. {
  10250. name: "Small Macro",
  10251. height: math.unit(400, "meters")
  10252. },
  10253. {
  10254. name: "Macro",
  10255. height: math.unit(4, "miles")
  10256. },
  10257. {
  10258. name: "Megamacro",
  10259. height: math.unit(40, "miles")
  10260. },
  10261. {
  10262. name: "Megamacro+",
  10263. height: math.unit(400, "miles")
  10264. },
  10265. {
  10266. name: "Gigamacro",
  10267. height: math.unit(400000, "miles")
  10268. },
  10269. ]
  10270. ))
  10271. characterMakers.push(() => makeCharacter(
  10272. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10273. {
  10274. side: {
  10275. height: math.unit(6, "feet"),
  10276. weight: math.unit(150, "lb"),
  10277. name: "Side",
  10278. image: {
  10279. source: "./media/characters/kimiko/side.svg",
  10280. extra: 600 / 358
  10281. }
  10282. },
  10283. },
  10284. [
  10285. {
  10286. name: "Normal",
  10287. height: math.unit(15, "feet"),
  10288. default: true
  10289. },
  10290. {
  10291. name: "Macro",
  10292. height: math.unit(220, "feet")
  10293. },
  10294. {
  10295. name: "Macro+",
  10296. height: math.unit(1450, "feet")
  10297. },
  10298. {
  10299. name: "Megamacro",
  10300. height: math.unit(11500, "feet")
  10301. },
  10302. {
  10303. name: "Gigamacro",
  10304. height: math.unit(9500, "miles")
  10305. },
  10306. {
  10307. name: "Teramacro",
  10308. height: math.unit(2208005005, "miles")
  10309. },
  10310. {
  10311. name: "Examacro",
  10312. height: math.unit(2750, "parsecs")
  10313. },
  10314. {
  10315. name: "Zettamacro",
  10316. height: math.unit(101500, "parsecs")
  10317. },
  10318. ]
  10319. ))
  10320. characterMakers.push(() => makeCharacter(
  10321. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10322. {
  10323. front: {
  10324. height: math.unit(6, "feet"),
  10325. weight: math.unit(70, "kg"),
  10326. name: "Front",
  10327. image: {
  10328. source: "./media/characters/andrew-sleepy/front.svg"
  10329. }
  10330. },
  10331. side: {
  10332. height: math.unit(6, "feet"),
  10333. weight: math.unit(70, "kg"),
  10334. name: "Side",
  10335. image: {
  10336. source: "./media/characters/andrew-sleepy/side.svg"
  10337. }
  10338. },
  10339. },
  10340. [
  10341. {
  10342. name: "Micro",
  10343. height: math.unit(1, "mm"),
  10344. default: true
  10345. },
  10346. ]
  10347. ))
  10348. characterMakers.push(() => makeCharacter(
  10349. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10350. {
  10351. front: {
  10352. height: math.unit(6, "feet"),
  10353. weight: math.unit(150, "lb"),
  10354. name: "Front",
  10355. image: {
  10356. source: "./media/characters/judio/front.svg",
  10357. extra: 1258 / 1110
  10358. }
  10359. },
  10360. },
  10361. [
  10362. {
  10363. name: "Normal",
  10364. height: math.unit(5 + 6 / 12, "feet")
  10365. },
  10366. {
  10367. name: "Macro",
  10368. height: math.unit(1000, "feet"),
  10369. default: true
  10370. },
  10371. {
  10372. name: "Megamacro",
  10373. height: math.unit(10, "miles")
  10374. },
  10375. ]
  10376. ))
  10377. characterMakers.push(() => makeCharacter(
  10378. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10379. {
  10380. front: {
  10381. height: math.unit(6, "feet"),
  10382. weight: math.unit(68, "kg"),
  10383. name: "Front",
  10384. image: {
  10385. source: "./media/characters/nomaxice/front.svg",
  10386. extra: 1498 / 1073,
  10387. bottom: 0.075
  10388. }
  10389. },
  10390. foot: {
  10391. height: math.unit(1.1, "feet"),
  10392. name: "Foot",
  10393. image: {
  10394. source: "./media/characters/nomaxice/foot.svg"
  10395. }
  10396. },
  10397. },
  10398. [
  10399. {
  10400. name: "Micro",
  10401. height: math.unit(8, "cm")
  10402. },
  10403. {
  10404. name: "Norm",
  10405. height: math.unit(1.82, "m")
  10406. },
  10407. {
  10408. name: "Norm+",
  10409. height: math.unit(8.8, "feet")
  10410. },
  10411. {
  10412. name: "Big",
  10413. height: math.unit(8, "meters"),
  10414. default: true
  10415. },
  10416. {
  10417. name: "Macro",
  10418. height: math.unit(18, "meters")
  10419. },
  10420. {
  10421. name: "Macro+",
  10422. height: math.unit(88, "meters")
  10423. },
  10424. ]
  10425. ))
  10426. characterMakers.push(() => makeCharacter(
  10427. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10428. {
  10429. front: {
  10430. height: math.unit(12, "feet"),
  10431. weight: math.unit(1.5, "tons"),
  10432. name: "Front",
  10433. image: {
  10434. source: "./media/characters/dydros/front.svg",
  10435. extra: 863 / 800,
  10436. bottom: 0.015
  10437. }
  10438. },
  10439. back: {
  10440. height: math.unit(12, "feet"),
  10441. weight: math.unit(1.5, "tons"),
  10442. name: "Back",
  10443. image: {
  10444. source: "./media/characters/dydros/back.svg",
  10445. extra: 900 / 843,
  10446. bottom: 0.005
  10447. }
  10448. },
  10449. },
  10450. [
  10451. {
  10452. name: "Normal",
  10453. height: math.unit(12, "feet"),
  10454. default: true
  10455. },
  10456. ]
  10457. ))
  10458. characterMakers.push(() => makeCharacter(
  10459. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10460. {
  10461. front: {
  10462. height: math.unit(6, "feet"),
  10463. weight: math.unit(100, "kg"),
  10464. name: "Front",
  10465. image: {
  10466. source: "./media/characters/riggi/front.svg",
  10467. extra: 5787 / 5303
  10468. }
  10469. },
  10470. hyper: {
  10471. height: math.unit(6 * 5 / 3, "feet"),
  10472. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10473. name: "Hyper",
  10474. image: {
  10475. source: "./media/characters/riggi/hyper.svg",
  10476. extra: 3595 / 3485
  10477. }
  10478. },
  10479. },
  10480. [
  10481. {
  10482. name: "Small Macro",
  10483. height: math.unit(50, "feet")
  10484. },
  10485. {
  10486. name: "Default",
  10487. height: math.unit(200, "feet"),
  10488. default: true
  10489. },
  10490. {
  10491. name: "Loom",
  10492. height: math.unit(10000, "feet")
  10493. },
  10494. {
  10495. name: "Cruising Altitude",
  10496. height: math.unit(30000, "feet")
  10497. },
  10498. {
  10499. name: "Megamacro",
  10500. height: math.unit(100, "miles")
  10501. },
  10502. {
  10503. name: "Continent Sized",
  10504. height: math.unit(2800, "miles")
  10505. },
  10506. {
  10507. name: "Earth Sized",
  10508. height: math.unit(8000, "miles")
  10509. },
  10510. ]
  10511. ))
  10512. characterMakers.push(() => makeCharacter(
  10513. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10514. {
  10515. front: {
  10516. height: math.unit(6, "feet"),
  10517. weight: math.unit(250, "lb"),
  10518. name: "Front",
  10519. image: {
  10520. source: "./media/characters/alexi/front.svg",
  10521. extra: 3483 / 3291,
  10522. bottom: 0.04
  10523. }
  10524. },
  10525. back: {
  10526. height: math.unit(6, "feet"),
  10527. weight: math.unit(250, "lb"),
  10528. name: "Back",
  10529. image: {
  10530. source: "./media/characters/alexi/back.svg",
  10531. extra: 3533 / 3356,
  10532. bottom: 0.021
  10533. }
  10534. },
  10535. frontTransforming: {
  10536. height: math.unit(8.58, "feet"),
  10537. weight: math.unit(1300, "lb"),
  10538. name: "Transforming",
  10539. image: {
  10540. source: "./media/characters/alexi/front-transforming.svg",
  10541. extra: 437 / 409,
  10542. bottom: 19 / 458.66
  10543. }
  10544. },
  10545. frontTransformed: {
  10546. height: math.unit(12.5, "feet"),
  10547. weight: math.unit(4000, "lb"),
  10548. name: "Transformed",
  10549. image: {
  10550. source: "./media/characters/alexi/front-transformed.svg",
  10551. extra: 639 / 614,
  10552. bottom: 30.55 / 671
  10553. }
  10554. },
  10555. },
  10556. [
  10557. {
  10558. name: "Normal",
  10559. height: math.unit(14, "feet"),
  10560. default: true
  10561. },
  10562. {
  10563. name: "Minimacro",
  10564. height: math.unit(30, "meters")
  10565. },
  10566. {
  10567. name: "Macro",
  10568. height: math.unit(500, "meters")
  10569. },
  10570. {
  10571. name: "Megamacro",
  10572. height: math.unit(9000, "km")
  10573. },
  10574. {
  10575. name: "Teramacro",
  10576. height: math.unit(384000, "km")
  10577. },
  10578. ]
  10579. ))
  10580. characterMakers.push(() => makeCharacter(
  10581. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10582. {
  10583. front: {
  10584. height: math.unit(6, "feet"),
  10585. weight: math.unit(150, "lb"),
  10586. name: "Front",
  10587. image: {
  10588. source: "./media/characters/kayroo/front.svg",
  10589. extra: 1153 / 1038,
  10590. bottom: 0.06
  10591. }
  10592. },
  10593. foot: {
  10594. height: math.unit(6, "feet"),
  10595. weight: math.unit(150, "lb"),
  10596. name: "Foot",
  10597. image: {
  10598. source: "./media/characters/kayroo/foot.svg"
  10599. }
  10600. },
  10601. },
  10602. [
  10603. {
  10604. name: "Normal",
  10605. height: math.unit(8, "feet"),
  10606. default: true
  10607. },
  10608. {
  10609. name: "Minimacro",
  10610. height: math.unit(250, "feet")
  10611. },
  10612. {
  10613. name: "Macro",
  10614. height: math.unit(2800, "feet")
  10615. },
  10616. {
  10617. name: "Megamacro",
  10618. height: math.unit(5200, "feet")
  10619. },
  10620. {
  10621. name: "Gigamacro",
  10622. height: math.unit(27000, "feet")
  10623. },
  10624. {
  10625. name: "Omega",
  10626. height: math.unit(45000, "feet")
  10627. },
  10628. ]
  10629. ))
  10630. characterMakers.push(() => makeCharacter(
  10631. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10632. {
  10633. front: {
  10634. height: math.unit(18, "feet"),
  10635. weight: math.unit(5800, "lb"),
  10636. name: "Front",
  10637. image: {
  10638. source: "./media/characters/rhys/front.svg",
  10639. extra: 3386 / 3090,
  10640. bottom: 0.07
  10641. }
  10642. },
  10643. },
  10644. [
  10645. {
  10646. name: "Normal",
  10647. height: math.unit(18, "feet"),
  10648. default: true
  10649. },
  10650. {
  10651. name: "Working Size",
  10652. height: math.unit(200, "feet")
  10653. },
  10654. {
  10655. name: "Demolition Size",
  10656. height: math.unit(2000, "feet")
  10657. },
  10658. {
  10659. name: "Maximum Licensed Size",
  10660. height: math.unit(5, "miles")
  10661. },
  10662. {
  10663. name: "Maximum Observed Size",
  10664. height: math.unit(10, "yottameters")
  10665. },
  10666. ]
  10667. ))
  10668. characterMakers.push(() => makeCharacter(
  10669. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10670. {
  10671. front: {
  10672. height: math.unit(6, "feet"),
  10673. weight: math.unit(250, "lb"),
  10674. name: "Front",
  10675. image: {
  10676. source: "./media/characters/toto/front.svg",
  10677. extra: 527 / 479,
  10678. bottom: 0.05
  10679. }
  10680. },
  10681. },
  10682. [
  10683. {
  10684. name: "Micro",
  10685. height: math.unit(3, "feet")
  10686. },
  10687. {
  10688. name: "Normal",
  10689. height: math.unit(10, "feet")
  10690. },
  10691. {
  10692. name: "Macro",
  10693. height: math.unit(150, "feet"),
  10694. default: true
  10695. },
  10696. {
  10697. name: "Megamacro",
  10698. height: math.unit(1200, "feet")
  10699. },
  10700. ]
  10701. ))
  10702. characterMakers.push(() => makeCharacter(
  10703. { name: "King", species: ["lion"], tags: ["anthro"] },
  10704. {
  10705. back: {
  10706. height: math.unit(6, "feet"),
  10707. weight: math.unit(150, "lb"),
  10708. name: "Back",
  10709. image: {
  10710. source: "./media/characters/king/back.svg"
  10711. }
  10712. },
  10713. },
  10714. [
  10715. {
  10716. name: "Micro",
  10717. height: math.unit(2, "inches")
  10718. },
  10719. {
  10720. name: "Normal",
  10721. height: math.unit(8, "feet")
  10722. },
  10723. {
  10724. name: "Macro",
  10725. height: math.unit(200, "feet"),
  10726. default: true
  10727. },
  10728. {
  10729. name: "Megamacro",
  10730. height: math.unit(50, "miles")
  10731. },
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10736. {
  10737. anthro: {
  10738. height: math.unit(6 + 5 / 12, "feet"),
  10739. weight: math.unit(280, "lb"),
  10740. name: "Anthro",
  10741. image: {
  10742. source: "./media/characters/cordite/anthro.svg",
  10743. extra: 1986 / 1905,
  10744. bottom: 0.025
  10745. }
  10746. },
  10747. feral: {
  10748. height: math.unit(2, "feet"),
  10749. weight: math.unit(90, "lb"),
  10750. name: "Feral",
  10751. image: {
  10752. source: "./media/characters/cordite/feral.svg",
  10753. extra: 1260 / 755,
  10754. bottom: 0.05
  10755. }
  10756. },
  10757. },
  10758. [
  10759. {
  10760. name: "Normal",
  10761. height: math.unit(6 + 5 / 12, "feet"),
  10762. default: true
  10763. },
  10764. ]
  10765. ))
  10766. characterMakers.push(() => makeCharacter(
  10767. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10768. {
  10769. front: {
  10770. height: math.unit(6, "feet"),
  10771. weight: math.unit(150, "lb"),
  10772. name: "Front",
  10773. image: {
  10774. source: "./media/characters/pianostrong/front.svg",
  10775. extra: 6577 / 6254,
  10776. bottom: 0.02
  10777. }
  10778. },
  10779. side: {
  10780. height: math.unit(6, "feet"),
  10781. weight: math.unit(150, "lb"),
  10782. name: "Side",
  10783. image: {
  10784. source: "./media/characters/pianostrong/side.svg",
  10785. extra: 6106 / 5730
  10786. }
  10787. },
  10788. back: {
  10789. height: math.unit(6, "feet"),
  10790. weight: math.unit(150, "lb"),
  10791. name: "Back",
  10792. image: {
  10793. source: "./media/characters/pianostrong/back.svg",
  10794. extra: 6085 / 5733,
  10795. bottom: 0.01
  10796. }
  10797. },
  10798. },
  10799. [
  10800. {
  10801. name: "Macro",
  10802. height: math.unit(100, "feet")
  10803. },
  10804. {
  10805. name: "Macro+",
  10806. height: math.unit(300, "feet"),
  10807. default: true
  10808. },
  10809. {
  10810. name: "Macro++",
  10811. height: math.unit(1000, "feet")
  10812. },
  10813. ]
  10814. ))
  10815. characterMakers.push(() => makeCharacter(
  10816. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10817. {
  10818. front: {
  10819. height: math.unit(6, "feet"),
  10820. weight: math.unit(150, "lb"),
  10821. name: "Front",
  10822. image: {
  10823. source: "./media/characters/kona/front.svg",
  10824. extra: 2960 / 2629,
  10825. bottom: 0.005
  10826. }
  10827. },
  10828. },
  10829. [
  10830. {
  10831. name: "Normal",
  10832. height: math.unit(11 + 8 / 12, "feet")
  10833. },
  10834. {
  10835. name: "Macro",
  10836. height: math.unit(850, "feet"),
  10837. default: true
  10838. },
  10839. {
  10840. name: "Macro+",
  10841. height: math.unit(1.5, "km"),
  10842. default: true
  10843. },
  10844. {
  10845. name: "Megamacro",
  10846. height: math.unit(80, "miles")
  10847. },
  10848. {
  10849. name: "Gigamacro",
  10850. height: math.unit(3500, "miles")
  10851. },
  10852. ]
  10853. ))
  10854. characterMakers.push(() => makeCharacter(
  10855. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10856. {
  10857. side: {
  10858. height: math.unit(1.9, "meters"),
  10859. weight: math.unit(326, "kg"),
  10860. name: "Side",
  10861. image: {
  10862. source: "./media/characters/levi/side.svg",
  10863. extra: 1704 / 1334,
  10864. bottom: 0.02
  10865. }
  10866. },
  10867. },
  10868. [
  10869. {
  10870. name: "Normal",
  10871. height: math.unit(1.9, "meters"),
  10872. default: true
  10873. },
  10874. {
  10875. name: "Macro",
  10876. height: math.unit(20, "meters")
  10877. },
  10878. {
  10879. name: "Macro+",
  10880. height: math.unit(200, "meters")
  10881. },
  10882. {
  10883. name: "Megamacro",
  10884. height: math.unit(2, "km")
  10885. },
  10886. {
  10887. name: "Megamacro+",
  10888. height: math.unit(20, "km")
  10889. },
  10890. {
  10891. name: "Gigamacro",
  10892. height: math.unit(2500, "km")
  10893. },
  10894. {
  10895. name: "Gigamacro+",
  10896. height: math.unit(120000, "km")
  10897. },
  10898. {
  10899. name: "Teramacro",
  10900. height: math.unit(7.77e6, "km")
  10901. },
  10902. ]
  10903. ))
  10904. characterMakers.push(() => makeCharacter(
  10905. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10906. {
  10907. front: {
  10908. height: math.unit(6 + 4 / 12, "feet"),
  10909. weight: math.unit(188, "lb"),
  10910. name: "Front",
  10911. image: {
  10912. source: "./media/characters/bmc/front.svg",
  10913. extra: 1067 / 1022,
  10914. bottom: 0.047
  10915. }
  10916. },
  10917. },
  10918. [
  10919. {
  10920. name: "Human-sized",
  10921. height: math.unit(6 + 4 / 12, "feet")
  10922. },
  10923. {
  10924. name: "Small",
  10925. height: math.unit(250, "feet")
  10926. },
  10927. {
  10928. name: "Normal",
  10929. height: math.unit(1250, "feet"),
  10930. default: true
  10931. },
  10932. {
  10933. name: "Good Day",
  10934. height: math.unit(88, "miles")
  10935. },
  10936. {
  10937. name: "Largest Measured Size",
  10938. height: math.unit(11.2e6, "lightyears")
  10939. },
  10940. ]
  10941. ))
  10942. characterMakers.push(() => makeCharacter(
  10943. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10944. {
  10945. front: {
  10946. height: math.unit(20, "feet"),
  10947. weight: math.unit(2016, "kg"),
  10948. name: "Front",
  10949. image: {
  10950. source: "./media/characters/sven-the-kaiju/front.svg",
  10951. extra: 1479 / 1449,
  10952. bottom: 0.05
  10953. }
  10954. },
  10955. },
  10956. [
  10957. {
  10958. name: "Fairy",
  10959. height: math.unit(6, "inches")
  10960. },
  10961. {
  10962. name: "Normal",
  10963. height: math.unit(20, "feet"),
  10964. default: true
  10965. },
  10966. {
  10967. name: "Rampage",
  10968. height: math.unit(200, "feet")
  10969. },
  10970. {
  10971. name: "Archfey Forest Guardian",
  10972. height: math.unit(1, "mile")
  10973. },
  10974. ]
  10975. ))
  10976. characterMakers.push(() => makeCharacter(
  10977. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10978. {
  10979. front: {
  10980. height: math.unit(4, "meters"),
  10981. weight: math.unit(2, "tons"),
  10982. name: "Front",
  10983. image: {
  10984. source: "./media/characters/marik/front.svg",
  10985. extra: 1057 / 1003,
  10986. bottom: 0.08
  10987. }
  10988. },
  10989. },
  10990. [
  10991. {
  10992. name: "Normal",
  10993. height: math.unit(4, "meters"),
  10994. default: true
  10995. },
  10996. {
  10997. name: "Macro",
  10998. height: math.unit(20, "meters")
  10999. },
  11000. {
  11001. name: "Megamacro",
  11002. height: math.unit(50, "km")
  11003. },
  11004. {
  11005. name: "Gigamacro",
  11006. height: math.unit(100, "km")
  11007. },
  11008. {
  11009. name: "Alpha Macro",
  11010. height: math.unit(7.88e7, "yottameters")
  11011. },
  11012. ]
  11013. ))
  11014. characterMakers.push(() => makeCharacter(
  11015. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11016. {
  11017. front: {
  11018. height: math.unit(6, "feet"),
  11019. weight: math.unit(110, "lb"),
  11020. name: "Front",
  11021. image: {
  11022. source: "./media/characters/mel/front.svg",
  11023. extra: 736 / 617,
  11024. bottom: 0.017
  11025. }
  11026. },
  11027. },
  11028. [
  11029. {
  11030. name: "Pico",
  11031. height: math.unit(3, "pm")
  11032. },
  11033. {
  11034. name: "Nano",
  11035. height: math.unit(3, "nm")
  11036. },
  11037. {
  11038. name: "Micro",
  11039. height: math.unit(0.3, "mm"),
  11040. default: true
  11041. },
  11042. {
  11043. name: "Micro+",
  11044. height: math.unit(3, "mm")
  11045. },
  11046. {
  11047. name: "Normal",
  11048. height: math.unit(5 + 10.5 / 12, "feet")
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11054. {
  11055. kaiju: {
  11056. height: math.unit(1.75, "meters"),
  11057. weight: math.unit(55, "kg"),
  11058. name: "Kaiju",
  11059. image: {
  11060. source: "./media/characters/lykonous/kaiju.svg",
  11061. extra: 1055 / 946,
  11062. bottom: 0.135
  11063. }
  11064. },
  11065. },
  11066. [
  11067. {
  11068. name: "Normal",
  11069. height: math.unit(2.5, "meters"),
  11070. default: true
  11071. },
  11072. {
  11073. name: "Kaiju Dragon",
  11074. height: math.unit(60, "meters")
  11075. },
  11076. {
  11077. name: "Mega Kaiju",
  11078. height: math.unit(120, "km")
  11079. },
  11080. {
  11081. name: "Giga Kaiju",
  11082. height: math.unit(200, "megameters")
  11083. },
  11084. {
  11085. name: "Terra Kaiju",
  11086. height: math.unit(400, "gigameters")
  11087. },
  11088. {
  11089. name: "Kaiju Dragon God",
  11090. height: math.unit(13000, "exaparsecs")
  11091. },
  11092. ]
  11093. ))
  11094. characterMakers.push(() => makeCharacter(
  11095. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11096. {
  11097. front: {
  11098. height: math.unit(6, "feet"),
  11099. weight: math.unit(150, "lb"),
  11100. name: "Front",
  11101. image: {
  11102. source: "./media/characters/blü/front.svg",
  11103. extra: 1883 / 1564,
  11104. bottom: 0.031
  11105. }
  11106. },
  11107. },
  11108. [
  11109. {
  11110. name: "Normal",
  11111. height: math.unit(13, "feet"),
  11112. default: true
  11113. },
  11114. {
  11115. name: "Big Boi",
  11116. height: math.unit(150, "meters")
  11117. },
  11118. {
  11119. name: "Mini Stomper",
  11120. height: math.unit(300, "meters")
  11121. },
  11122. {
  11123. name: "Macro",
  11124. height: math.unit(1000, "meters")
  11125. },
  11126. {
  11127. name: "Megamacro",
  11128. height: math.unit(11000, "meters")
  11129. },
  11130. {
  11131. name: "Gigamacro",
  11132. height: math.unit(11000, "km")
  11133. },
  11134. {
  11135. name: "Teramacro",
  11136. height: math.unit(420000, "km")
  11137. },
  11138. {
  11139. name: "Examacro",
  11140. height: math.unit(120, "parsecs")
  11141. },
  11142. {
  11143. name: "God Tho",
  11144. height: math.unit(98000000000, "parsecs")
  11145. },
  11146. ]
  11147. ))
  11148. characterMakers.push(() => makeCharacter(
  11149. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11150. {
  11151. taurFront: {
  11152. height: math.unit(6, "feet"),
  11153. weight: math.unit(200, "lb"),
  11154. name: "Taur (Front)",
  11155. image: {
  11156. source: "./media/characters/scales/taur-front.svg",
  11157. extra: 1,
  11158. bottom: 0.05
  11159. }
  11160. },
  11161. taurBack: {
  11162. height: math.unit(6, "feet"),
  11163. weight: math.unit(200, "lb"),
  11164. name: "Taur (Back)",
  11165. image: {
  11166. source: "./media/characters/scales/taur-back.svg",
  11167. extra: 1,
  11168. bottom: 0.08
  11169. }
  11170. },
  11171. anthro: {
  11172. height: math.unit(6 * 7 / 12, "feet"),
  11173. weight: math.unit(100, "lb"),
  11174. name: "Anthro",
  11175. image: {
  11176. source: "./media/characters/scales/anthro.svg",
  11177. extra: 1,
  11178. bottom: 0.06
  11179. }
  11180. },
  11181. },
  11182. [
  11183. {
  11184. name: "Normal",
  11185. height: math.unit(12, "feet"),
  11186. default: true
  11187. },
  11188. ]
  11189. ))
  11190. characterMakers.push(() => makeCharacter(
  11191. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11192. {
  11193. front: {
  11194. height: math.unit(6, "feet"),
  11195. weight: math.unit(150, "lb"),
  11196. name: "Front",
  11197. image: {
  11198. source: "./media/characters/koragos/front.svg",
  11199. extra: 841 / 794,
  11200. bottom: 0.035
  11201. }
  11202. },
  11203. back: {
  11204. height: math.unit(6, "feet"),
  11205. weight: math.unit(150, "lb"),
  11206. name: "Back",
  11207. image: {
  11208. source: "./media/characters/koragos/back.svg",
  11209. extra: 841 / 810,
  11210. bottom: 0.022
  11211. }
  11212. },
  11213. },
  11214. [
  11215. {
  11216. name: "Normal",
  11217. height: math.unit(6 + 11 / 12, "feet"),
  11218. default: true
  11219. },
  11220. {
  11221. name: "Macro",
  11222. height: math.unit(490, "feet")
  11223. },
  11224. {
  11225. name: "Megamacro",
  11226. height: math.unit(10, "miles")
  11227. },
  11228. {
  11229. name: "Gigamacro",
  11230. height: math.unit(50, "miles")
  11231. },
  11232. ]
  11233. ))
  11234. characterMakers.push(() => makeCharacter(
  11235. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11236. {
  11237. front: {
  11238. height: math.unit(6, "feet"),
  11239. weight: math.unit(250, "lb"),
  11240. name: "Front",
  11241. image: {
  11242. source: "./media/characters/xylrem/front.svg",
  11243. extra: 3323 / 3050,
  11244. bottom: 0.065
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Micro",
  11251. height: math.unit(4, "feet")
  11252. },
  11253. {
  11254. name: "Normal",
  11255. height: math.unit(16, "feet"),
  11256. default: true
  11257. },
  11258. {
  11259. name: "Macro",
  11260. height: math.unit(2720, "feet")
  11261. },
  11262. {
  11263. name: "Megamacro",
  11264. height: math.unit(25000, "miles")
  11265. },
  11266. ]
  11267. ))
  11268. characterMakers.push(() => makeCharacter(
  11269. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11270. {
  11271. front: {
  11272. height: math.unit(8, "feet"),
  11273. weight: math.unit(250, "kg"),
  11274. name: "Front",
  11275. image: {
  11276. source: "./media/characters/ikideru/front.svg",
  11277. extra: 930 / 870,
  11278. bottom: 0.087
  11279. }
  11280. },
  11281. back: {
  11282. height: math.unit(8, "feet"),
  11283. weight: math.unit(250, "kg"),
  11284. name: "Back",
  11285. image: {
  11286. source: "./media/characters/ikideru/back.svg",
  11287. extra: 919 / 852,
  11288. bottom: 0.055
  11289. }
  11290. },
  11291. },
  11292. [
  11293. {
  11294. name: "Rare",
  11295. height: math.unit(8, "feet"),
  11296. default: true
  11297. },
  11298. {
  11299. name: "Playful Loom",
  11300. height: math.unit(80, "feet")
  11301. },
  11302. {
  11303. name: "City Leaner",
  11304. height: math.unit(230, "feet")
  11305. },
  11306. {
  11307. name: "Megamacro",
  11308. height: math.unit(2500, "feet")
  11309. },
  11310. {
  11311. name: "Gigamacro",
  11312. height: math.unit(26400, "feet")
  11313. },
  11314. {
  11315. name: "Tectonic Shifter",
  11316. height: math.unit(1.7, "megameters")
  11317. },
  11318. {
  11319. name: "Planet Carer",
  11320. height: math.unit(21, "megameters")
  11321. },
  11322. {
  11323. name: "God",
  11324. height: math.unit(11157.22, "parsecs")
  11325. },
  11326. ]
  11327. ))
  11328. characterMakers.push(() => makeCharacter(
  11329. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11330. {
  11331. front: {
  11332. height: math.unit(6, "feet"),
  11333. weight: math.unit(120, "lb"),
  11334. name: "Front",
  11335. image: {
  11336. source: "./media/characters/neo/front.svg"
  11337. }
  11338. },
  11339. },
  11340. [
  11341. {
  11342. name: "Micro",
  11343. height: math.unit(2, "inches"),
  11344. default: true
  11345. },
  11346. {
  11347. name: "Human Size",
  11348. height: math.unit(5 + 8 / 12, "feet")
  11349. },
  11350. ]
  11351. ))
  11352. characterMakers.push(() => makeCharacter(
  11353. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11354. {
  11355. front: {
  11356. height: math.unit(13 + 10 / 12, "feet"),
  11357. weight: math.unit(5320, "lb"),
  11358. name: "Front",
  11359. image: {
  11360. source: "./media/characters/chauncey-chantz/front.svg",
  11361. extra: 1587 / 1435,
  11362. bottom: 0.02
  11363. }
  11364. },
  11365. },
  11366. [
  11367. {
  11368. name: "Normal",
  11369. height: math.unit(13 + 10 / 12, "feet"),
  11370. default: true
  11371. },
  11372. {
  11373. name: "Macro",
  11374. height: math.unit(45, "feet")
  11375. },
  11376. {
  11377. name: "Megamacro",
  11378. height: math.unit(250, "miles")
  11379. },
  11380. {
  11381. name: "Planetary",
  11382. height: math.unit(10000, "miles")
  11383. },
  11384. {
  11385. name: "Galactic",
  11386. height: math.unit(40000, "parsecs")
  11387. },
  11388. {
  11389. name: "Universal",
  11390. height: math.unit(1, "yottameter")
  11391. },
  11392. ]
  11393. ))
  11394. characterMakers.push(() => makeCharacter(
  11395. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11396. {
  11397. front: {
  11398. height: math.unit(6, "feet"),
  11399. weight: math.unit(150, "lb"),
  11400. name: "Front",
  11401. image: {
  11402. source: "./media/characters/epifox/front.svg",
  11403. extra: 1,
  11404. bottom: 0.075
  11405. }
  11406. },
  11407. },
  11408. [
  11409. {
  11410. name: "Micro",
  11411. height: math.unit(6, "inches")
  11412. },
  11413. {
  11414. name: "Normal",
  11415. height: math.unit(12, "feet"),
  11416. default: true
  11417. },
  11418. {
  11419. name: "Macro",
  11420. height: math.unit(3810, "feet")
  11421. },
  11422. {
  11423. name: "Megamacro",
  11424. height: math.unit(500, "miles")
  11425. },
  11426. ]
  11427. ))
  11428. characterMakers.push(() => makeCharacter(
  11429. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11430. {
  11431. front: {
  11432. height: math.unit(1.8796, "m"),
  11433. weight: math.unit(230, "lb"),
  11434. name: "Front",
  11435. image: {
  11436. source: "./media/characters/colin-t/front.svg",
  11437. extra: 1272 / 1193,
  11438. bottom: 0.07
  11439. }
  11440. },
  11441. },
  11442. [
  11443. {
  11444. name: "Micro",
  11445. height: math.unit(0.571, "meters")
  11446. },
  11447. {
  11448. name: "Normal",
  11449. height: math.unit(1.8796, "meters"),
  11450. default: true
  11451. },
  11452. {
  11453. name: "Tall",
  11454. height: math.unit(4, "meters")
  11455. },
  11456. {
  11457. name: "Macro",
  11458. height: math.unit(67.241, "meters")
  11459. },
  11460. {
  11461. name: "Megamacro",
  11462. height: math.unit(371.856, "meters")
  11463. },
  11464. {
  11465. name: "Planetary",
  11466. height: math.unit(12631.5689, "km")
  11467. },
  11468. ]
  11469. ))
  11470. characterMakers.push(() => makeCharacter(
  11471. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11472. {
  11473. front: {
  11474. height: math.unit(1.85, "meters"),
  11475. weight: math.unit(80, "kg"),
  11476. name: "Front",
  11477. image: {
  11478. source: "./media/characters/matvei/front.svg",
  11479. extra: 614 / 594,
  11480. bottom: 0.01
  11481. }
  11482. },
  11483. },
  11484. [
  11485. {
  11486. name: "Normal",
  11487. height: math.unit(1.85, "meters"),
  11488. default: true
  11489. },
  11490. ]
  11491. ))
  11492. characterMakers.push(() => makeCharacter(
  11493. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11494. {
  11495. front: {
  11496. height: math.unit(5 + 9 / 12, "feet"),
  11497. weight: math.unit(70, "lb"),
  11498. name: "Front",
  11499. image: {
  11500. source: "./media/characters/quincy/front.svg",
  11501. extra: 3041 / 2751
  11502. }
  11503. },
  11504. back: {
  11505. height: math.unit(5 + 9 / 12, "feet"),
  11506. weight: math.unit(70, "lb"),
  11507. name: "Back",
  11508. image: {
  11509. source: "./media/characters/quincy/back.svg",
  11510. extra: 3041 / 2751
  11511. }
  11512. },
  11513. flying: {
  11514. height: math.unit(5 + 4 / 12, "feet"),
  11515. weight: math.unit(70, "lb"),
  11516. name: "Flying",
  11517. image: {
  11518. source: "./media/characters/quincy/flying.svg",
  11519. extra: 1044 / 930
  11520. }
  11521. },
  11522. },
  11523. [
  11524. {
  11525. name: "Micro",
  11526. height: math.unit(3, "cm")
  11527. },
  11528. {
  11529. name: "Normal",
  11530. height: math.unit(5 + 9 / 12, "feet")
  11531. },
  11532. {
  11533. name: "Macro",
  11534. height: math.unit(200, "meters"),
  11535. default: true
  11536. },
  11537. {
  11538. name: "Megamacro",
  11539. height: math.unit(1000, "meters")
  11540. },
  11541. ]
  11542. ))
  11543. characterMakers.push(() => makeCharacter(
  11544. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11545. {
  11546. front: {
  11547. height: math.unit(4 + 7 / 12, "feet"),
  11548. weight: math.unit(50, "lb"),
  11549. name: "Front",
  11550. image: {
  11551. source: "./media/characters/vanrel/front.svg",
  11552. extra: 1,
  11553. bottom: 0.02
  11554. }
  11555. },
  11556. frontAlt: {
  11557. height: math.unit(4 + 7 / 12, "feet"),
  11558. weight: math.unit(50, "lb"),
  11559. name: "Front-alt",
  11560. image: {
  11561. source: "./media/characters/vanrel/front-alt.svg",
  11562. extra: 1,
  11563. bottom: 15 / 1511
  11564. }
  11565. },
  11566. elemental: {
  11567. height: math.unit(3, "feet"),
  11568. weight: math.unit(50, "lb"),
  11569. name: "Elemental",
  11570. image: {
  11571. source: "./media/characters/vanrel/elemental.svg",
  11572. extra: 192.3 / 162.8,
  11573. bottom: 1.79 / 194.17
  11574. }
  11575. },
  11576. side: {
  11577. height: math.unit(4 + 7 / 12, "feet"),
  11578. weight: math.unit(50, "lb"),
  11579. name: "Side",
  11580. image: {
  11581. source: "./media/characters/vanrel/side.svg",
  11582. extra: 1,
  11583. bottom: 0.025
  11584. }
  11585. },
  11586. tome: {
  11587. height: math.unit(1.35, "feet"),
  11588. weight: math.unit(10, "lb"),
  11589. name: "Vanrel's Tome",
  11590. rename: true,
  11591. image: {
  11592. source: "./media/characters/vanrel/tome.svg"
  11593. }
  11594. },
  11595. beans: {
  11596. height: math.unit(0.89, "feet"),
  11597. name: "Beans",
  11598. image: {
  11599. source: "./media/characters/vanrel/beans.svg"
  11600. }
  11601. },
  11602. },
  11603. [
  11604. {
  11605. name: "Normal",
  11606. height: math.unit(4 + 7 / 12, "feet"),
  11607. default: true
  11608. },
  11609. ]
  11610. ))
  11611. characterMakers.push(() => makeCharacter(
  11612. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11613. {
  11614. front: {
  11615. height: math.unit(7 + 5 / 12, "feet"),
  11616. weight: math.unit(150, "lb"),
  11617. name: "Front",
  11618. image: {
  11619. source: "./media/characters/kuiper-vanrel/front.svg",
  11620. extra: 1118 / 1068,
  11621. bottom: 0.09
  11622. }
  11623. },
  11624. foot: {
  11625. height: math.unit(0.55, "meters"),
  11626. name: "Foot",
  11627. image: {
  11628. source: "./media/characters/kuiper-vanrel/foot.svg",
  11629. }
  11630. },
  11631. battle: {
  11632. height: math.unit(6.824, "feet"),
  11633. weight: math.unit(150, "lb"),
  11634. name: "Battle",
  11635. image: {
  11636. source: "./media/characters/kuiper-vanrel/battle.svg",
  11637. extra: 1466 / 1327,
  11638. bottom: 29 / 1492.5
  11639. }
  11640. },
  11641. battleAlt: {
  11642. height: math.unit(6.824, "feet"),
  11643. weight: math.unit(150, "lb"),
  11644. name: "Battle (Alt)",
  11645. image: {
  11646. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11647. extra: 2081 / 1965,
  11648. bottom: 40 / 2121
  11649. }
  11650. },
  11651. },
  11652. [
  11653. {
  11654. name: "Normal",
  11655. height: math.unit(7 + 5 / 12, "feet"),
  11656. default: true
  11657. },
  11658. ]
  11659. ))
  11660. characterMakers.push(() => makeCharacter(
  11661. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11662. {
  11663. front: {
  11664. height: math.unit(8 + 5 / 12, "feet"),
  11665. weight: math.unit(150, "lb"),
  11666. name: "Front",
  11667. image: {
  11668. source: "./media/characters/keset-vanrel/front.svg",
  11669. extra: 1150 / 1084,
  11670. bottom: 0.05
  11671. }
  11672. },
  11673. hand: {
  11674. height: math.unit(0.6, "meters"),
  11675. name: "Hand",
  11676. image: {
  11677. source: "./media/characters/keset-vanrel/hand.svg"
  11678. }
  11679. },
  11680. foot: {
  11681. height: math.unit(0.94978, "meters"),
  11682. name: "Foot",
  11683. image: {
  11684. source: "./media/characters/keset-vanrel/foot.svg"
  11685. }
  11686. },
  11687. battle: {
  11688. height: math.unit(7.408, "feet"),
  11689. weight: math.unit(150, "lb"),
  11690. name: "Battle",
  11691. image: {
  11692. source: "./media/characters/keset-vanrel/battle.svg",
  11693. extra: 1890 / 1386,
  11694. bottom: 73.28 / 1970
  11695. }
  11696. },
  11697. },
  11698. [
  11699. {
  11700. name: "Normal",
  11701. height: math.unit(8 + 5 / 12, "feet"),
  11702. default: true
  11703. },
  11704. ]
  11705. ))
  11706. characterMakers.push(() => makeCharacter(
  11707. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11708. {
  11709. front: {
  11710. height: math.unit(6, "feet"),
  11711. weight: math.unit(150, "lb"),
  11712. name: "Front",
  11713. image: {
  11714. source: "./media/characters/neos/front.svg",
  11715. extra: 1696 / 992,
  11716. bottom: 0.14
  11717. }
  11718. },
  11719. },
  11720. [
  11721. {
  11722. name: "Normal",
  11723. height: math.unit(54, "cm"),
  11724. default: true
  11725. },
  11726. {
  11727. name: "Macro",
  11728. height: math.unit(100, "m")
  11729. },
  11730. {
  11731. name: "Megamacro",
  11732. height: math.unit(10, "km")
  11733. },
  11734. {
  11735. name: "Megamacro+",
  11736. height: math.unit(100, "km")
  11737. },
  11738. {
  11739. name: "Gigamacro",
  11740. height: math.unit(100, "Mm")
  11741. },
  11742. {
  11743. name: "Teramacro",
  11744. height: math.unit(100, "Gm")
  11745. },
  11746. {
  11747. name: "Examacro",
  11748. height: math.unit(100, "Em")
  11749. },
  11750. {
  11751. name: "Godly",
  11752. height: math.unit(10000, "Ym")
  11753. },
  11754. {
  11755. name: "Beyond Godly",
  11756. height: math.unit(25, "multiverses")
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11762. {
  11763. feminine: {
  11764. height: math.unit(5, "feet"),
  11765. weight: math.unit(100, "lb"),
  11766. name: "Feminine",
  11767. image: {
  11768. source: "./media/characters/sammy-mouse/feminine.svg",
  11769. extra: 2526 / 2425,
  11770. bottom: 0.123
  11771. }
  11772. },
  11773. masculine: {
  11774. height: math.unit(5, "feet"),
  11775. weight: math.unit(100, "lb"),
  11776. name: "Masculine",
  11777. image: {
  11778. source: "./media/characters/sammy-mouse/masculine.svg",
  11779. extra: 2526 / 2425,
  11780. bottom: 0.123
  11781. }
  11782. },
  11783. },
  11784. [
  11785. {
  11786. name: "Micro",
  11787. height: math.unit(5, "inches")
  11788. },
  11789. {
  11790. name: "Normal",
  11791. height: math.unit(5, "feet"),
  11792. default: true
  11793. },
  11794. {
  11795. name: "Macro",
  11796. height: math.unit(60, "feet")
  11797. },
  11798. ]
  11799. ))
  11800. characterMakers.push(() => makeCharacter(
  11801. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11802. {
  11803. front: {
  11804. height: math.unit(4, "feet"),
  11805. weight: math.unit(50, "lb"),
  11806. name: "Front",
  11807. image: {
  11808. source: "./media/characters/kole/front.svg",
  11809. extra: 1423 / 1303,
  11810. bottom: 0.025
  11811. }
  11812. },
  11813. back: {
  11814. height: math.unit(4, "feet"),
  11815. weight: math.unit(50, "lb"),
  11816. name: "Back",
  11817. image: {
  11818. source: "./media/characters/kole/back.svg",
  11819. extra: 1426 / 1280,
  11820. bottom: 0.02
  11821. }
  11822. },
  11823. },
  11824. [
  11825. {
  11826. name: "Normal",
  11827. height: math.unit(4, "feet"),
  11828. default: true
  11829. },
  11830. ]
  11831. ))
  11832. characterMakers.push(() => makeCharacter(
  11833. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11834. {
  11835. front: {
  11836. height: math.unit(2 + 6 / 12, "feet"),
  11837. weight: math.unit(20, "lb"),
  11838. name: "Front",
  11839. image: {
  11840. source: "./media/characters/rufran/front.svg",
  11841. extra: 2041 / 1839,
  11842. bottom: 0.055
  11843. }
  11844. },
  11845. back: {
  11846. height: math.unit(2 + 6 / 12, "feet"),
  11847. weight: math.unit(20, "lb"),
  11848. name: "Back",
  11849. image: {
  11850. source: "./media/characters/rufran/back.svg",
  11851. extra: 2054 / 1839,
  11852. bottom: 0.01
  11853. }
  11854. },
  11855. hand: {
  11856. height: math.unit(0.2166, "meters"),
  11857. name: "Hand",
  11858. image: {
  11859. source: "./media/characters/rufran/hand.svg"
  11860. }
  11861. },
  11862. foot: {
  11863. height: math.unit(0.185, "meters"),
  11864. name: "Foot",
  11865. image: {
  11866. source: "./media/characters/rufran/foot.svg"
  11867. }
  11868. },
  11869. },
  11870. [
  11871. {
  11872. name: "Micro",
  11873. height: math.unit(1, "inch")
  11874. },
  11875. {
  11876. name: "Normal",
  11877. height: math.unit(2 + 6 / 12, "feet"),
  11878. default: true
  11879. },
  11880. {
  11881. name: "Big",
  11882. height: math.unit(60, "feet")
  11883. },
  11884. {
  11885. name: "Macro",
  11886. height: math.unit(325, "feet")
  11887. },
  11888. ]
  11889. ))
  11890. characterMakers.push(() => makeCharacter(
  11891. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11892. {
  11893. front: {
  11894. height: math.unit(0.3, "meters"),
  11895. weight: math.unit(3.5, "kg"),
  11896. name: "Front",
  11897. image: {
  11898. source: "./media/characters/chip/front.svg",
  11899. extra: 748 / 674
  11900. }
  11901. },
  11902. },
  11903. [
  11904. {
  11905. name: "Micro",
  11906. height: math.unit(1, "inch"),
  11907. default: true
  11908. },
  11909. ]
  11910. ))
  11911. characterMakers.push(() => makeCharacter(
  11912. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11913. {
  11914. side: {
  11915. height: math.unit(2.3, "meters"),
  11916. weight: math.unit(3500, "lb"),
  11917. name: "Side",
  11918. image: {
  11919. source: "./media/characters/torvid/side.svg",
  11920. extra: 1972 / 722,
  11921. bottom: 0.035
  11922. }
  11923. },
  11924. },
  11925. [
  11926. {
  11927. name: "Normal",
  11928. height: math.unit(2.3, "meters"),
  11929. default: true
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11935. {
  11936. front: {
  11937. height: math.unit(2, "meters"),
  11938. weight: math.unit(150.5, "kg"),
  11939. name: "Front",
  11940. image: {
  11941. source: "./media/characters/susan/front.svg",
  11942. extra: 693 / 635,
  11943. bottom: 0.05
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Megamacro",
  11950. height: math.unit(505, "miles"),
  11951. default: true
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(6, "feet"),
  11960. weight: math.unit(150, "lb"),
  11961. name: "Front",
  11962. image: {
  11963. source: "./media/characters/raindrops/front.svg",
  11964. extra: 2655 / 2461,
  11965. bottom: 49 / 2705
  11966. }
  11967. },
  11968. back: {
  11969. height: math.unit(6, "feet"),
  11970. weight: math.unit(150, "lb"),
  11971. name: "Back",
  11972. image: {
  11973. source: "./media/characters/raindrops/back.svg",
  11974. extra: 2574 / 2400,
  11975. bottom: 65 / 2634
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Micro",
  11982. height: math.unit(6, "inches")
  11983. },
  11984. {
  11985. name: "Normal",
  11986. height: math.unit(6 + 2 / 12, "feet")
  11987. },
  11988. {
  11989. name: "Macro",
  11990. height: math.unit(131, "feet"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Megamacro",
  11995. height: math.unit(15, "miles")
  11996. },
  11997. {
  11998. name: "Gigamacro",
  11999. height: math.unit(4000, "miles")
  12000. },
  12001. {
  12002. name: "Teramacro",
  12003. height: math.unit(315000, "miles")
  12004. },
  12005. ]
  12006. ))
  12007. characterMakers.push(() => makeCharacter(
  12008. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12009. {
  12010. front: {
  12011. height: math.unit(2.794, "meters"),
  12012. weight: math.unit(325, "kg"),
  12013. name: "Front",
  12014. image: {
  12015. source: "./media/characters/tezwa/front.svg",
  12016. extra: 2083 / 1906,
  12017. bottom: 0.031
  12018. }
  12019. },
  12020. foot: {
  12021. height: math.unit(0.687, "meters"),
  12022. name: "Foot",
  12023. image: {
  12024. source: "./media/characters/tezwa/foot.svg"
  12025. }
  12026. },
  12027. },
  12028. [
  12029. {
  12030. name: "Normal",
  12031. height: math.unit(9 + 2 / 12, "feet"),
  12032. default: true
  12033. },
  12034. ]
  12035. ))
  12036. characterMakers.push(() => makeCharacter(
  12037. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12038. {
  12039. front: {
  12040. height: math.unit(58, "feet"),
  12041. weight: math.unit(89000, "lb"),
  12042. name: "Front",
  12043. image: {
  12044. source: "./media/characters/typhus/front.svg",
  12045. extra: 816 / 800,
  12046. bottom: 0.065
  12047. }
  12048. },
  12049. },
  12050. [
  12051. {
  12052. name: "Macro",
  12053. height: math.unit(58, "feet"),
  12054. default: true
  12055. },
  12056. ]
  12057. ))
  12058. characterMakers.push(() => makeCharacter(
  12059. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12060. {
  12061. front: {
  12062. height: math.unit(12, "feet"),
  12063. weight: math.unit(6, "tonnes"),
  12064. name: "Front",
  12065. image: {
  12066. source: "./media/characters/lyra-von-wulf/front.svg",
  12067. extra: 1,
  12068. bottom: 0.10
  12069. }
  12070. },
  12071. frontMecha: {
  12072. height: math.unit(12, "feet"),
  12073. weight: math.unit(12, "tonnes"),
  12074. name: "Front (Mecha)",
  12075. image: {
  12076. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12077. extra: 1,
  12078. bottom: 0.042
  12079. }
  12080. },
  12081. maw: {
  12082. height: math.unit(2.2, "feet"),
  12083. name: "Maw",
  12084. image: {
  12085. source: "./media/characters/lyra-von-wulf/maw.svg"
  12086. }
  12087. },
  12088. },
  12089. [
  12090. {
  12091. name: "Normal",
  12092. height: math.unit(12, "feet"),
  12093. default: true
  12094. },
  12095. {
  12096. name: "Classic",
  12097. height: math.unit(50, "feet")
  12098. },
  12099. {
  12100. name: "Macro",
  12101. height: math.unit(500, "feet")
  12102. },
  12103. {
  12104. name: "Megamacro",
  12105. height: math.unit(1, "mile")
  12106. },
  12107. {
  12108. name: "Gigamacro",
  12109. height: math.unit(400, "miles")
  12110. },
  12111. {
  12112. name: "Teramacro",
  12113. height: math.unit(22000, "miles")
  12114. },
  12115. {
  12116. name: "Solarmacro",
  12117. height: math.unit(8600000, "miles")
  12118. },
  12119. {
  12120. name: "Galactic",
  12121. height: math.unit(1057000, "lightyears")
  12122. },
  12123. ]
  12124. ))
  12125. characterMakers.push(() => makeCharacter(
  12126. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12127. {
  12128. front: {
  12129. height: math.unit(6 + 10 / 12, "feet"),
  12130. weight: math.unit(150, "lb"),
  12131. name: "Front",
  12132. image: {
  12133. source: "./media/characters/dixon/front.svg",
  12134. extra: 3361 / 3209,
  12135. bottom: 0.01
  12136. }
  12137. },
  12138. },
  12139. [
  12140. {
  12141. name: "Normal",
  12142. height: math.unit(6 + 10 / 12, "feet"),
  12143. default: true
  12144. },
  12145. {
  12146. name: "Big",
  12147. height: math.unit(12, "meters")
  12148. },
  12149. {
  12150. name: "Macro",
  12151. height: math.unit(500, "meters")
  12152. },
  12153. {
  12154. name: "Megamacro",
  12155. height: math.unit(2, "km")
  12156. },
  12157. ]
  12158. ))
  12159. characterMakers.push(() => makeCharacter(
  12160. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12161. {
  12162. front: {
  12163. height: math.unit(185, "cm"),
  12164. weight: math.unit(68, "kg"),
  12165. name: "Front",
  12166. image: {
  12167. source: "./media/characters/kauko/front.svg",
  12168. extra: 1455 / 1421,
  12169. bottom: 0.03
  12170. }
  12171. },
  12172. back: {
  12173. height: math.unit(185, "cm"),
  12174. weight: math.unit(68, "kg"),
  12175. name: "Back",
  12176. image: {
  12177. source: "./media/characters/kauko/back.svg",
  12178. extra: 1455 / 1421,
  12179. bottom: 0.004
  12180. }
  12181. },
  12182. },
  12183. [
  12184. {
  12185. name: "Normal",
  12186. height: math.unit(185, "cm"),
  12187. default: true
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12193. {
  12194. front: {
  12195. height: math.unit(6, "feet"),
  12196. weight: math.unit(150, "kg"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/varg/front.svg",
  12200. extra: 1108 / 1018,
  12201. bottom: 0.0375
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Normal",
  12208. height: math.unit(5, "meters")
  12209. },
  12210. {
  12211. name: "Macro",
  12212. height: math.unit(200, "meters")
  12213. },
  12214. {
  12215. name: "Megamacro",
  12216. height: math.unit(20, "kilometers")
  12217. },
  12218. {
  12219. name: "True Size",
  12220. height: math.unit(211, "km"),
  12221. default: true
  12222. },
  12223. {
  12224. name: "Gigamacro",
  12225. height: math.unit(1000, "km")
  12226. },
  12227. {
  12228. name: "Gigamacro+",
  12229. height: math.unit(8000, "km")
  12230. },
  12231. {
  12232. name: "Teramacro",
  12233. height: math.unit(1000000, "km")
  12234. },
  12235. ]
  12236. ))
  12237. characterMakers.push(() => makeCharacter(
  12238. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12239. {
  12240. front: {
  12241. height: math.unit(7 + 7 / 12, "feet"),
  12242. weight: math.unit(267, "lb"),
  12243. name: "Front",
  12244. image: {
  12245. source: "./media/characters/dayza/front.svg",
  12246. extra: 1262 / 1200,
  12247. bottom: 0.035
  12248. }
  12249. },
  12250. side: {
  12251. height: math.unit(7 + 7 / 12, "feet"),
  12252. weight: math.unit(267, "lb"),
  12253. name: "Side",
  12254. image: {
  12255. source: "./media/characters/dayza/side.svg",
  12256. extra: 1295 / 1245,
  12257. bottom: 0.05
  12258. }
  12259. },
  12260. back: {
  12261. height: math.unit(7 + 7 / 12, "feet"),
  12262. weight: math.unit(267, "lb"),
  12263. name: "Back",
  12264. image: {
  12265. source: "./media/characters/dayza/back.svg",
  12266. extra: 1241 / 1170
  12267. }
  12268. },
  12269. },
  12270. [
  12271. {
  12272. name: "Normal",
  12273. height: math.unit(7 + 7 / 12, "feet"),
  12274. default: true
  12275. },
  12276. {
  12277. name: "Macro",
  12278. height: math.unit(155, "feet")
  12279. },
  12280. ]
  12281. ))
  12282. characterMakers.push(() => makeCharacter(
  12283. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12284. {
  12285. front: {
  12286. height: math.unit(6 + 5 / 12, "feet"),
  12287. weight: math.unit(160, "lb"),
  12288. name: "Front",
  12289. image: {
  12290. source: "./media/characters/xanthos/front.svg",
  12291. extra: 1,
  12292. bottom: 0.04
  12293. }
  12294. },
  12295. back: {
  12296. height: math.unit(6 + 5 / 12, "feet"),
  12297. weight: math.unit(160, "lb"),
  12298. name: "Back",
  12299. image: {
  12300. source: "./media/characters/xanthos/back.svg",
  12301. extra: 1,
  12302. bottom: 0.03
  12303. }
  12304. },
  12305. hand: {
  12306. height: math.unit(0.928, "feet"),
  12307. name: "Hand",
  12308. image: {
  12309. source: "./media/characters/xanthos/hand.svg"
  12310. }
  12311. },
  12312. foot: {
  12313. height: math.unit(1.286, "feet"),
  12314. name: "Foot",
  12315. image: {
  12316. source: "./media/characters/xanthos/foot.svg"
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Normal",
  12323. height: math.unit(6 + 5 / 12, "feet"),
  12324. default: true
  12325. },
  12326. {
  12327. name: "Normal+",
  12328. height: math.unit(6, "meters")
  12329. },
  12330. {
  12331. name: "Macro",
  12332. height: math.unit(40, "feet")
  12333. },
  12334. {
  12335. name: "Macro+",
  12336. height: math.unit(200, "meters")
  12337. },
  12338. {
  12339. name: "Megamacro",
  12340. height: math.unit(20, "km")
  12341. },
  12342. {
  12343. name: "Megamacro+",
  12344. height: math.unit(100, "km")
  12345. },
  12346. ]
  12347. ))
  12348. characterMakers.push(() => makeCharacter(
  12349. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12350. {
  12351. front: {
  12352. height: math.unit(6 + 3 / 12, "feet"),
  12353. weight: math.unit(215, "lb"),
  12354. name: "Front",
  12355. image: {
  12356. source: "./media/characters/grynn/front.svg",
  12357. extra: 4627 / 4209,
  12358. bottom: 0.047
  12359. }
  12360. },
  12361. },
  12362. [
  12363. {
  12364. name: "Micro",
  12365. height: math.unit(6, "inches")
  12366. },
  12367. {
  12368. name: "Normal",
  12369. height: math.unit(6 + 3 / 12, "feet"),
  12370. default: true
  12371. },
  12372. {
  12373. name: "Big",
  12374. height: math.unit(104, "feet")
  12375. },
  12376. {
  12377. name: "Macro",
  12378. height: math.unit(944, "feet")
  12379. },
  12380. {
  12381. name: "Macro+",
  12382. height: math.unit(9480, "feet")
  12383. },
  12384. {
  12385. name: "Megamacro",
  12386. height: math.unit(78752, "feet")
  12387. },
  12388. {
  12389. name: "Megamacro+",
  12390. height: math.unit(630128, "feet")
  12391. },
  12392. {
  12393. name: "Megamacro++",
  12394. height: math.unit(3150695, "feet")
  12395. },
  12396. ]
  12397. ))
  12398. characterMakers.push(() => makeCharacter(
  12399. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12400. {
  12401. front: {
  12402. height: math.unit(7 + 5 / 12, "feet"),
  12403. weight: math.unit(450, "lb"),
  12404. name: "Front",
  12405. image: {
  12406. source: "./media/characters/mocha-aura/front.svg",
  12407. extra: 1907 / 1817,
  12408. bottom: 0.04
  12409. }
  12410. },
  12411. back: {
  12412. height: math.unit(7 + 5 / 12, "feet"),
  12413. weight: math.unit(450, "lb"),
  12414. name: "Back",
  12415. image: {
  12416. source: "./media/characters/mocha-aura/back.svg",
  12417. extra: 1900 / 1825,
  12418. bottom: 0.045
  12419. }
  12420. },
  12421. },
  12422. [
  12423. {
  12424. name: "Nano",
  12425. height: math.unit(1, "nm")
  12426. },
  12427. {
  12428. name: "Megamicro",
  12429. height: math.unit(1, "mm")
  12430. },
  12431. {
  12432. name: "Micro",
  12433. height: math.unit(3, "inches")
  12434. },
  12435. {
  12436. name: "Normal",
  12437. height: math.unit(7 + 5 / 12, "feet"),
  12438. default: true
  12439. },
  12440. {
  12441. name: "Macro",
  12442. height: math.unit(30, "feet")
  12443. },
  12444. {
  12445. name: "Megamacro",
  12446. height: math.unit(3500, "feet")
  12447. },
  12448. {
  12449. name: "Teramacro",
  12450. height: math.unit(500000, "miles")
  12451. },
  12452. {
  12453. name: "Petamacro",
  12454. height: math.unit(50000000000000000, "parsecs")
  12455. },
  12456. ]
  12457. ))
  12458. characterMakers.push(() => makeCharacter(
  12459. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12460. {
  12461. front: {
  12462. height: math.unit(6, "feet"),
  12463. weight: math.unit(150, "lb"),
  12464. name: "Front",
  12465. image: {
  12466. source: "./media/characters/ilisha-devya/front.svg",
  12467. extra: 1,
  12468. bottom: 0.175
  12469. }
  12470. },
  12471. back: {
  12472. height: math.unit(6, "feet"),
  12473. weight: math.unit(150, "lb"),
  12474. name: "Back",
  12475. image: {
  12476. source: "./media/characters/ilisha-devya/back.svg",
  12477. extra: 1,
  12478. bottom: 0.015
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Macro",
  12485. height: math.unit(500, "feet"),
  12486. default: true
  12487. },
  12488. {
  12489. name: "Megamacro",
  12490. height: math.unit(10, "miles")
  12491. },
  12492. {
  12493. name: "Gigamacro",
  12494. height: math.unit(100000, "miles")
  12495. },
  12496. {
  12497. name: "Examacro",
  12498. height: math.unit(1e9, "lightyears")
  12499. },
  12500. {
  12501. name: "Omniversal",
  12502. height: math.unit(1e33, "lightyears")
  12503. },
  12504. {
  12505. name: "Beyond Infinite",
  12506. height: math.unit(1e100, "lightyears")
  12507. },
  12508. ]
  12509. ))
  12510. characterMakers.push(() => makeCharacter(
  12511. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12512. {
  12513. Side: {
  12514. height: math.unit(6, "feet"),
  12515. weight: math.unit(150, "lb"),
  12516. name: "Side",
  12517. image: {
  12518. source: "./media/characters/mira/side.svg",
  12519. extra: 900 / 799,
  12520. bottom: 0.02
  12521. }
  12522. },
  12523. },
  12524. [
  12525. {
  12526. name: "Human Size",
  12527. height: math.unit(6, "feet")
  12528. },
  12529. {
  12530. name: "Macro",
  12531. height: math.unit(100, "feet"),
  12532. default: true
  12533. },
  12534. {
  12535. name: "Megamacro",
  12536. height: math.unit(10, "miles")
  12537. },
  12538. {
  12539. name: "Gigamacro",
  12540. height: math.unit(25000, "miles")
  12541. },
  12542. {
  12543. name: "Teramacro",
  12544. height: math.unit(300, "AU")
  12545. },
  12546. {
  12547. name: "Full Size",
  12548. height: math.unit(4.5e10, "lightyears")
  12549. },
  12550. ]
  12551. ))
  12552. characterMakers.push(() => makeCharacter(
  12553. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12554. {
  12555. front: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(150, "lb"),
  12558. name: "Front",
  12559. image: {
  12560. source: "./media/characters/holly/front.svg",
  12561. extra: 639 / 606
  12562. }
  12563. },
  12564. back: {
  12565. height: math.unit(6, "feet"),
  12566. weight: math.unit(150, "lb"),
  12567. name: "Back",
  12568. image: {
  12569. source: "./media/characters/holly/back.svg",
  12570. extra: 623 / 598
  12571. }
  12572. },
  12573. frontWorking: {
  12574. height: math.unit(6, "feet"),
  12575. weight: math.unit(150, "lb"),
  12576. name: "Front (Working)",
  12577. image: {
  12578. source: "./media/characters/holly/front-working.svg",
  12579. extra: 607 / 577,
  12580. bottom: 0.048
  12581. }
  12582. },
  12583. },
  12584. [
  12585. {
  12586. name: "Normal",
  12587. height: math.unit(12 + 3 / 12, "feet"),
  12588. default: true
  12589. },
  12590. ]
  12591. ))
  12592. characterMakers.push(() => makeCharacter(
  12593. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12594. {
  12595. front: {
  12596. height: math.unit(6, "feet"),
  12597. weight: math.unit(150, "lb"),
  12598. name: "Front",
  12599. image: {
  12600. source: "./media/characters/porter/front.svg",
  12601. extra: 1,
  12602. bottom: 0.01
  12603. }
  12604. },
  12605. frontRobes: {
  12606. height: math.unit(6, "feet"),
  12607. weight: math.unit(150, "lb"),
  12608. name: "Front (Robes)",
  12609. image: {
  12610. source: "./media/characters/porter/front-robes.svg",
  12611. extra: 1.01,
  12612. bottom: 0.01
  12613. }
  12614. },
  12615. },
  12616. [
  12617. {
  12618. name: "Normal",
  12619. height: math.unit(11 + 9 / 12, "feet"),
  12620. default: true
  12621. },
  12622. ]
  12623. ))
  12624. characterMakers.push(() => makeCharacter(
  12625. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12626. {
  12627. legendary: {
  12628. height: math.unit(6, "feet"),
  12629. weight: math.unit(150, "lb"),
  12630. name: "Legendary",
  12631. image: {
  12632. source: "./media/characters/lucy/legendary.svg",
  12633. extra: 1355 / 1100,
  12634. bottom: 0.045
  12635. }
  12636. },
  12637. },
  12638. [
  12639. {
  12640. name: "Legendary",
  12641. height: math.unit(86882 * 2, "miles"),
  12642. default: true
  12643. },
  12644. ]
  12645. ))
  12646. characterMakers.push(() => makeCharacter(
  12647. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12648. {
  12649. front: {
  12650. height: math.unit(6, "feet"),
  12651. weight: math.unit(150, "lb"),
  12652. name: "Front",
  12653. image: {
  12654. source: "./media/characters/drusilla/front.svg",
  12655. extra: 678 / 635,
  12656. bottom: 0.03
  12657. }
  12658. },
  12659. back: {
  12660. height: math.unit(6, "feet"),
  12661. weight: math.unit(150, "lb"),
  12662. name: "Back",
  12663. image: {
  12664. source: "./media/characters/drusilla/back.svg",
  12665. extra: 678 / 635,
  12666. bottom: 0.005
  12667. }
  12668. },
  12669. },
  12670. [
  12671. {
  12672. name: "Macro",
  12673. height: math.unit(100, "feet")
  12674. },
  12675. {
  12676. name: "Canon Height",
  12677. height: math.unit(2000, "feet"),
  12678. default: true
  12679. },
  12680. ]
  12681. ))
  12682. characterMakers.push(() => makeCharacter(
  12683. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12684. {
  12685. front: {
  12686. height: math.unit(6, "feet"),
  12687. weight: math.unit(180, "lb"),
  12688. name: "Front",
  12689. image: {
  12690. source: "./media/characters/renard-thatch/front.svg",
  12691. extra: 2411 / 2275,
  12692. bottom: 0.01
  12693. }
  12694. },
  12695. frontPosing: {
  12696. height: math.unit(6, "feet"),
  12697. weight: math.unit(180, "lb"),
  12698. name: "Front (Posing)",
  12699. image: {
  12700. source: "./media/characters/renard-thatch/front-posing.svg",
  12701. extra: 2381 / 2261,
  12702. bottom: 0.01
  12703. }
  12704. },
  12705. back: {
  12706. height: math.unit(6, "feet"),
  12707. weight: math.unit(180, "lb"),
  12708. name: "Back",
  12709. image: {
  12710. source: "./media/characters/renard-thatch/back.svg",
  12711. extra: 2428 / 2288
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Micro",
  12718. height: math.unit(3, "inches")
  12719. },
  12720. {
  12721. name: "Default",
  12722. height: math.unit(6, "feet"),
  12723. default: true
  12724. },
  12725. {
  12726. name: "Macro",
  12727. height: math.unit(75, "feet")
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12733. {
  12734. front: {
  12735. height: math.unit(1450, "feet"),
  12736. weight: math.unit(1.21e6, "tons"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/sekvra/front.svg",
  12740. extra: 1,
  12741. bottom: 0.03
  12742. }
  12743. },
  12744. frontClothed: {
  12745. height: math.unit(1450, "feet"),
  12746. weight: math.unit(1.21e6, "tons"),
  12747. name: "Front (Clothed)",
  12748. image: {
  12749. source: "./media/characters/sekvra/front-clothed.svg",
  12750. extra: 1,
  12751. bottom: 0.03
  12752. }
  12753. },
  12754. side: {
  12755. height: math.unit(1450, "feet"),
  12756. weight: math.unit(1.21e6, "tons"),
  12757. name: "Side",
  12758. image: {
  12759. source: "./media/characters/sekvra/side.svg",
  12760. extra: 1,
  12761. bottom: 0.025
  12762. }
  12763. },
  12764. back: {
  12765. height: math.unit(1450, "feet"),
  12766. weight: math.unit(1.21e6, "tons"),
  12767. name: "Back",
  12768. image: {
  12769. source: "./media/characters/sekvra/back.svg",
  12770. extra: 1,
  12771. bottom: 0.005
  12772. }
  12773. },
  12774. },
  12775. [
  12776. {
  12777. name: "Macro",
  12778. height: math.unit(1450, "feet"),
  12779. default: true
  12780. },
  12781. {
  12782. name: "Megamacro",
  12783. height: math.unit(15000, "feet")
  12784. },
  12785. ]
  12786. ))
  12787. characterMakers.push(() => makeCharacter(
  12788. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12789. {
  12790. front: {
  12791. height: math.unit(6, "feet"),
  12792. weight: math.unit(150, "lb"),
  12793. name: "Front",
  12794. image: {
  12795. source: "./media/characters/carmine/front.svg",
  12796. extra: 1,
  12797. bottom: 0.035
  12798. }
  12799. },
  12800. frontArmor: {
  12801. height: math.unit(6, "feet"),
  12802. weight: math.unit(150, "lb"),
  12803. name: "Front (Armor)",
  12804. image: {
  12805. source: "./media/characters/carmine/front-armor.svg",
  12806. extra: 1,
  12807. bottom: 0.035
  12808. }
  12809. },
  12810. },
  12811. [
  12812. {
  12813. name: "Large",
  12814. height: math.unit(1, "mile")
  12815. },
  12816. {
  12817. name: "Huge",
  12818. height: math.unit(40, "miles"),
  12819. default: true
  12820. },
  12821. {
  12822. name: "Colossal",
  12823. height: math.unit(2500, "miles")
  12824. },
  12825. ]
  12826. ))
  12827. characterMakers.push(() => makeCharacter(
  12828. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12829. {
  12830. front: {
  12831. height: math.unit(6, "feet"),
  12832. weight: math.unit(150, "lb"),
  12833. name: "Front",
  12834. image: {
  12835. source: "./media/characters/elyssia/front.svg",
  12836. extra: 2201 / 2035,
  12837. bottom: 0.05
  12838. }
  12839. },
  12840. frontClothed: {
  12841. height: math.unit(6, "feet"),
  12842. weight: math.unit(150, "lb"),
  12843. name: "Front (Clothed)",
  12844. image: {
  12845. source: "./media/characters/elyssia/front-clothed.svg",
  12846. extra: 2201 / 2035,
  12847. bottom: 0.05
  12848. }
  12849. },
  12850. back: {
  12851. height: math.unit(6, "feet"),
  12852. weight: math.unit(150, "lb"),
  12853. name: "Back",
  12854. image: {
  12855. source: "./media/characters/elyssia/back.svg",
  12856. extra: 2201 / 2035,
  12857. bottom: 0.013
  12858. }
  12859. },
  12860. },
  12861. [
  12862. {
  12863. name: "Smaller",
  12864. height: math.unit(150, "feet")
  12865. },
  12866. {
  12867. name: "Standard",
  12868. height: math.unit(1400, "feet"),
  12869. default: true
  12870. },
  12871. {
  12872. name: "Distracted",
  12873. height: math.unit(15000, "feet")
  12874. },
  12875. ]
  12876. ))
  12877. characterMakers.push(() => makeCharacter(
  12878. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12879. {
  12880. front: {
  12881. height: math.unit(7 + 4 / 12, "feet"),
  12882. weight: math.unit(500, "lb"),
  12883. name: "Front",
  12884. image: {
  12885. source: "./media/characters/geno-maxwell/front.svg",
  12886. extra: 2207 / 2040,
  12887. bottom: 0.015
  12888. }
  12889. },
  12890. },
  12891. [
  12892. {
  12893. name: "Micro",
  12894. height: math.unit(3, "inches")
  12895. },
  12896. {
  12897. name: "Normal",
  12898. height: math.unit(7 + 4 / 12, "feet"),
  12899. default: true
  12900. },
  12901. {
  12902. name: "Macro",
  12903. height: math.unit(220, "feet")
  12904. },
  12905. {
  12906. name: "Megamacro",
  12907. height: math.unit(11, "miles")
  12908. },
  12909. ]
  12910. ))
  12911. characterMakers.push(() => makeCharacter(
  12912. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12913. {
  12914. front: {
  12915. height: math.unit(7 + 4 / 12, "feet"),
  12916. weight: math.unit(500, "lb"),
  12917. name: "Front",
  12918. image: {
  12919. source: "./media/characters/regena-maxwell/front.svg",
  12920. extra: 3115 / 2770,
  12921. bottom: 0.02
  12922. }
  12923. },
  12924. },
  12925. [
  12926. {
  12927. name: "Normal",
  12928. height: math.unit(7 + 4 / 12, "feet"),
  12929. default: true
  12930. },
  12931. {
  12932. name: "Macro",
  12933. height: math.unit(220, "feet")
  12934. },
  12935. {
  12936. name: "Megamacro",
  12937. height: math.unit(11, "miles")
  12938. },
  12939. ]
  12940. ))
  12941. characterMakers.push(() => makeCharacter(
  12942. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12943. {
  12944. front: {
  12945. height: math.unit(6, "feet"),
  12946. weight: math.unit(150, "lb"),
  12947. name: "Front",
  12948. image: {
  12949. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12950. extra: 860 / 690,
  12951. bottom: 0.03
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Normal",
  12958. height: math.unit(1.7, "meters"),
  12959. default: true
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12965. {
  12966. front: {
  12967. height: math.unit(6, "feet"),
  12968. weight: math.unit(150, "lb"),
  12969. name: "Front",
  12970. image: {
  12971. source: "./media/characters/quilly/front.svg",
  12972. extra: 890 / 776
  12973. }
  12974. },
  12975. },
  12976. [
  12977. {
  12978. name: "Gigamacro",
  12979. height: math.unit(404090, "miles"),
  12980. default: true
  12981. },
  12982. ]
  12983. ))
  12984. characterMakers.push(() => makeCharacter(
  12985. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12986. {
  12987. front: {
  12988. height: math.unit(7 + 8 / 12, "feet"),
  12989. weight: math.unit(350, "lb"),
  12990. name: "Front",
  12991. image: {
  12992. source: "./media/characters/tempest/front.svg",
  12993. extra: 1175 / 1086,
  12994. bottom: 0.02
  12995. }
  12996. },
  12997. },
  12998. [
  12999. {
  13000. name: "Normal",
  13001. height: math.unit(7 + 8 / 12, "feet"),
  13002. default: true
  13003. },
  13004. ]
  13005. ))
  13006. characterMakers.push(() => makeCharacter(
  13007. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13008. {
  13009. side: {
  13010. height: math.unit(4 + 5 / 12, "feet"),
  13011. weight: math.unit(80, "lb"),
  13012. name: "Side",
  13013. image: {
  13014. source: "./media/characters/rodger/side.svg",
  13015. extra: 1235 / 1118
  13016. }
  13017. },
  13018. },
  13019. [
  13020. {
  13021. name: "Micro",
  13022. height: math.unit(1, "inch")
  13023. },
  13024. {
  13025. name: "Normal",
  13026. height: math.unit(4 + 5 / 12, "feet"),
  13027. default: true
  13028. },
  13029. {
  13030. name: "Macro",
  13031. height: math.unit(120, "feet")
  13032. },
  13033. ]
  13034. ))
  13035. characterMakers.push(() => makeCharacter(
  13036. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13037. {
  13038. front: {
  13039. height: math.unit(6, "feet"),
  13040. weight: math.unit(150, "lb"),
  13041. name: "Front",
  13042. image: {
  13043. source: "./media/characters/danyel/front.svg",
  13044. extra: 1185 / 1123,
  13045. bottom: 0.05
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Shrunken",
  13052. height: math.unit(0.5, "mm")
  13053. },
  13054. {
  13055. name: "Micro",
  13056. height: math.unit(1, "mm"),
  13057. default: true
  13058. },
  13059. {
  13060. name: "Upsized",
  13061. height: math.unit(5 + 5 / 12, "feet")
  13062. },
  13063. ]
  13064. ))
  13065. characterMakers.push(() => makeCharacter(
  13066. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13067. {
  13068. front: {
  13069. height: math.unit(5 + 6 / 12, "feet"),
  13070. weight: math.unit(200, "lb"),
  13071. name: "Front",
  13072. image: {
  13073. source: "./media/characters/vivian-bijoux/front.svg",
  13074. extra: 1,
  13075. bottom: 0.072
  13076. }
  13077. },
  13078. },
  13079. [
  13080. {
  13081. name: "Normal",
  13082. height: math.unit(5 + 6 / 12, "feet"),
  13083. default: true
  13084. },
  13085. {
  13086. name: "Bad Dream",
  13087. height: math.unit(500, "feet")
  13088. },
  13089. {
  13090. name: "Nightmare",
  13091. height: math.unit(500, "miles")
  13092. },
  13093. ]
  13094. ))
  13095. characterMakers.push(() => makeCharacter(
  13096. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13097. {
  13098. front: {
  13099. height: math.unit(6 + 1 / 12, "feet"),
  13100. weight: math.unit(260, "lb"),
  13101. name: "Front",
  13102. image: {
  13103. source: "./media/characters/zeta/front.svg",
  13104. extra: 1968 / 1889,
  13105. bottom: 0.06
  13106. }
  13107. },
  13108. back: {
  13109. height: math.unit(6 + 1 / 12, "feet"),
  13110. weight: math.unit(260, "lb"),
  13111. name: "Back",
  13112. image: {
  13113. source: "./media/characters/zeta/back.svg",
  13114. extra: 1944 / 1858,
  13115. bottom: 0.03
  13116. }
  13117. },
  13118. hand: {
  13119. height: math.unit(1.112, "feet"),
  13120. name: "Hand",
  13121. image: {
  13122. source: "./media/characters/zeta/hand.svg"
  13123. }
  13124. },
  13125. foot: {
  13126. height: math.unit(1.48, "feet"),
  13127. name: "Foot",
  13128. image: {
  13129. source: "./media/characters/zeta/foot.svg"
  13130. }
  13131. },
  13132. },
  13133. [
  13134. {
  13135. name: "Micro",
  13136. height: math.unit(6, "inches")
  13137. },
  13138. {
  13139. name: "Normal",
  13140. height: math.unit(6 + 1 / 12, "feet"),
  13141. default: true
  13142. },
  13143. {
  13144. name: "Macro",
  13145. height: math.unit(20, "feet")
  13146. },
  13147. ]
  13148. ))
  13149. characterMakers.push(() => makeCharacter(
  13150. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13151. {
  13152. front: {
  13153. height: math.unit(6, "feet"),
  13154. weight: math.unit(150, "lb"),
  13155. name: "Front",
  13156. image: {
  13157. source: "./media/characters/jamie-larsen/front.svg",
  13158. extra: 962 / 933,
  13159. bottom: 0.02
  13160. }
  13161. },
  13162. back: {
  13163. height: math.unit(6, "feet"),
  13164. weight: math.unit(150, "lb"),
  13165. name: "Back",
  13166. image: {
  13167. source: "./media/characters/jamie-larsen/back.svg",
  13168. extra: 997 / 946
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Macro",
  13175. height: math.unit(28 + 7 / 12, "feet"),
  13176. default: true
  13177. },
  13178. {
  13179. name: "Macro+",
  13180. height: math.unit(180, "feet")
  13181. },
  13182. {
  13183. name: "Megamacro",
  13184. height: math.unit(10, "miles")
  13185. },
  13186. {
  13187. name: "Gigamacro",
  13188. height: math.unit(200000, "miles")
  13189. },
  13190. ]
  13191. ))
  13192. characterMakers.push(() => makeCharacter(
  13193. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13194. {
  13195. front: {
  13196. height: math.unit(6, "feet"),
  13197. weight: math.unit(120, "lb"),
  13198. name: "Front",
  13199. image: {
  13200. source: "./media/characters/vance/front.svg",
  13201. extra: 1980 / 1890,
  13202. bottom: 0.09
  13203. }
  13204. },
  13205. back: {
  13206. height: math.unit(6, "feet"),
  13207. weight: math.unit(120, "lb"),
  13208. name: "Back",
  13209. image: {
  13210. source: "./media/characters/vance/back.svg",
  13211. extra: 2081 / 1994,
  13212. bottom: 0.014
  13213. }
  13214. },
  13215. hand: {
  13216. height: math.unit(0.88, "feet"),
  13217. name: "Hand",
  13218. image: {
  13219. source: "./media/characters/vance/hand.svg"
  13220. }
  13221. },
  13222. foot: {
  13223. height: math.unit(0.64, "feet"),
  13224. name: "Foot",
  13225. image: {
  13226. source: "./media/characters/vance/foot.svg"
  13227. }
  13228. },
  13229. },
  13230. [
  13231. {
  13232. name: "Small",
  13233. height: math.unit(90, "feet"),
  13234. default: true
  13235. },
  13236. {
  13237. name: "Macro",
  13238. height: math.unit(100, "meters")
  13239. },
  13240. {
  13241. name: "Megamacro",
  13242. height: math.unit(15, "miles")
  13243. },
  13244. ]
  13245. ))
  13246. characterMakers.push(() => makeCharacter(
  13247. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13248. {
  13249. front: {
  13250. height: math.unit(6, "feet"),
  13251. weight: math.unit(180, "lb"),
  13252. name: "Front",
  13253. image: {
  13254. source: "./media/characters/xochitl/front.svg",
  13255. extra: 2297 / 2261,
  13256. bottom: 0.065
  13257. }
  13258. },
  13259. back: {
  13260. height: math.unit(6, "feet"),
  13261. weight: math.unit(180, "lb"),
  13262. name: "Back",
  13263. image: {
  13264. source: "./media/characters/xochitl/back.svg",
  13265. extra: 2386 / 2354,
  13266. bottom: 0.01
  13267. }
  13268. },
  13269. foot: {
  13270. height: math.unit(6 / 5 * 1.15, "feet"),
  13271. weight: math.unit(150, "lb"),
  13272. name: "Foot",
  13273. image: {
  13274. source: "./media/characters/xochitl/foot.svg"
  13275. }
  13276. },
  13277. },
  13278. [
  13279. {
  13280. name: "Macro",
  13281. height: math.unit(80, "feet")
  13282. },
  13283. {
  13284. name: "Macro+",
  13285. height: math.unit(400, "feet"),
  13286. default: true
  13287. },
  13288. {
  13289. name: "Gigamacro",
  13290. height: math.unit(80000, "miles")
  13291. },
  13292. {
  13293. name: "Gigamacro+",
  13294. height: math.unit(400000, "miles")
  13295. },
  13296. {
  13297. name: "Teramacro",
  13298. height: math.unit(300, "AU")
  13299. },
  13300. ]
  13301. ))
  13302. characterMakers.push(() => makeCharacter(
  13303. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13304. {
  13305. front: {
  13306. height: math.unit(6, "feet"),
  13307. weight: math.unit(150, "lb"),
  13308. name: "Front",
  13309. image: {
  13310. source: "./media/characters/vincent/front.svg",
  13311. extra: 1130 / 1080,
  13312. bottom: 0.055
  13313. }
  13314. },
  13315. beak: {
  13316. height: math.unit(6 * 0.1, "feet"),
  13317. name: "Beak",
  13318. image: {
  13319. source: "./media/characters/vincent/beak.svg"
  13320. }
  13321. },
  13322. hand: {
  13323. height: math.unit(6 * 0.85, "feet"),
  13324. weight: math.unit(150, "lb"),
  13325. name: "Hand",
  13326. image: {
  13327. source: "./media/characters/vincent/hand.svg"
  13328. }
  13329. },
  13330. foot: {
  13331. height: math.unit(6 * 0.19, "feet"),
  13332. weight: math.unit(150, "lb"),
  13333. name: "Foot",
  13334. image: {
  13335. source: "./media/characters/vincent/foot.svg"
  13336. }
  13337. },
  13338. },
  13339. [
  13340. {
  13341. name: "Base",
  13342. height: math.unit(6 + 5 / 12, "feet"),
  13343. default: true
  13344. },
  13345. {
  13346. name: "Macro",
  13347. height: math.unit(300, "feet")
  13348. },
  13349. {
  13350. name: "Megamacro",
  13351. height: math.unit(2, "miles")
  13352. },
  13353. {
  13354. name: "Gigamacro",
  13355. height: math.unit(1000, "miles")
  13356. },
  13357. ]
  13358. ))
  13359. characterMakers.push(() => makeCharacter(
  13360. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13361. {
  13362. front: {
  13363. height: math.unit(6 + 2 / 12, "feet"),
  13364. weight: math.unit(265, "lb"),
  13365. name: "Front",
  13366. image: {
  13367. source: "./media/characters/jay/front.svg",
  13368. extra: 1510 / 1430,
  13369. bottom: 0.042
  13370. }
  13371. },
  13372. back: {
  13373. height: math.unit(6 + 2 / 12, "feet"),
  13374. weight: math.unit(265, "lb"),
  13375. name: "Back",
  13376. image: {
  13377. source: "./media/characters/jay/back.svg",
  13378. extra: 1510 / 1430,
  13379. bottom: 0.025
  13380. }
  13381. },
  13382. clothed: {
  13383. height: math.unit(6 + 2 / 12, "feet"),
  13384. weight: math.unit(265, "lb"),
  13385. name: "Front (Clothed)",
  13386. image: {
  13387. source: "./media/characters/jay/clothed.svg",
  13388. extra: 744 / 699,
  13389. bottom: 0.043
  13390. }
  13391. },
  13392. head: {
  13393. height: math.unit(1.772, "feet"),
  13394. name: "Head",
  13395. image: {
  13396. source: "./media/characters/jay/head.svg"
  13397. }
  13398. },
  13399. sizeRay: {
  13400. height: math.unit(1.331, "feet"),
  13401. name: "Size Ray",
  13402. image: {
  13403. source: "./media/characters/jay/size-ray.svg"
  13404. }
  13405. },
  13406. },
  13407. [
  13408. {
  13409. name: "Micro",
  13410. height: math.unit(1, "inch")
  13411. },
  13412. {
  13413. name: "Normal",
  13414. height: math.unit(6 + 2 / 12, "feet"),
  13415. default: true
  13416. },
  13417. {
  13418. name: "Macro",
  13419. height: math.unit(1, "mile")
  13420. },
  13421. {
  13422. name: "Megamacro",
  13423. height: math.unit(100, "miles")
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13429. {
  13430. front: {
  13431. height: math.unit(2, "meters"),
  13432. weight: math.unit(500, "kg"),
  13433. name: "Front",
  13434. image: {
  13435. source: "./media/characters/coatl/front.svg",
  13436. extra: 3948 / 3500,
  13437. bottom: 0.082
  13438. }
  13439. },
  13440. },
  13441. [
  13442. {
  13443. name: "Normal",
  13444. height: math.unit(4, "meters")
  13445. },
  13446. {
  13447. name: "Macro",
  13448. height: math.unit(100, "meters"),
  13449. default: true
  13450. },
  13451. {
  13452. name: "Macro+",
  13453. height: math.unit(300, "meters")
  13454. },
  13455. {
  13456. name: "Megamacro",
  13457. height: math.unit(3, "gigameters")
  13458. },
  13459. {
  13460. name: "Megamacro+",
  13461. height: math.unit(300, "terameters")
  13462. },
  13463. {
  13464. name: "Megamacro++",
  13465. height: math.unit(3, "lightyears")
  13466. },
  13467. ]
  13468. ))
  13469. characterMakers.push(() => makeCharacter(
  13470. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13471. {
  13472. front: {
  13473. height: math.unit(6, "feet"),
  13474. weight: math.unit(50, "kg"),
  13475. name: "front",
  13476. image: {
  13477. source: "./media/characters/shiroryu/front.svg",
  13478. extra: 1990 / 1935
  13479. }
  13480. },
  13481. },
  13482. [
  13483. {
  13484. name: "Mortal Mingling",
  13485. height: math.unit(3, "meters")
  13486. },
  13487. {
  13488. name: "Kaiju-ish",
  13489. height: math.unit(250, "meters")
  13490. },
  13491. {
  13492. name: "Somewhat Godly",
  13493. height: math.unit(400, "km"),
  13494. default: true
  13495. },
  13496. {
  13497. name: "Planetary",
  13498. height: math.unit(300, "megameters")
  13499. },
  13500. {
  13501. name: "Galaxy-dwarfing",
  13502. height: math.unit(450, "kiloparsecs")
  13503. },
  13504. {
  13505. name: "Universe Eater",
  13506. height: math.unit(150, "gigaparsecs")
  13507. },
  13508. {
  13509. name: "Almost Immeasurable",
  13510. height: math.unit(1.3e266, "yottaparsecs")
  13511. },
  13512. ]
  13513. ))
  13514. characterMakers.push(() => makeCharacter(
  13515. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13516. {
  13517. front: {
  13518. height: math.unit(6, "feet"),
  13519. weight: math.unit(150, "lb"),
  13520. name: "Front",
  13521. image: {
  13522. source: "./media/characters/umeko/front.svg",
  13523. extra: 1,
  13524. bottom: 0.019
  13525. }
  13526. },
  13527. frontArmored: {
  13528. height: math.unit(6, "feet"),
  13529. weight: math.unit(150, "lb"),
  13530. name: "Front (Armored)",
  13531. image: {
  13532. source: "./media/characters/umeko/front-armored.svg",
  13533. extra: 1,
  13534. bottom: 0.021
  13535. }
  13536. },
  13537. },
  13538. [
  13539. {
  13540. name: "Macro",
  13541. height: math.unit(220, "feet"),
  13542. default: true
  13543. },
  13544. {
  13545. name: "Guardian Dragon",
  13546. height: math.unit(50, "miles")
  13547. },
  13548. {
  13549. name: "Cosmic",
  13550. height: math.unit(800000, "miles")
  13551. },
  13552. ]
  13553. ))
  13554. characterMakers.push(() => makeCharacter(
  13555. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13556. {
  13557. front: {
  13558. height: math.unit(6, "feet"),
  13559. weight: math.unit(150, "lb"),
  13560. name: "Front",
  13561. image: {
  13562. source: "./media/characters/cassidy/front.svg",
  13563. extra: 1,
  13564. bottom: 0.043
  13565. }
  13566. },
  13567. },
  13568. [
  13569. {
  13570. name: "Canon Height",
  13571. height: math.unit(120, "feet"),
  13572. default: true
  13573. },
  13574. {
  13575. name: "Macro+",
  13576. height: math.unit(400, "feet")
  13577. },
  13578. {
  13579. name: "Macro++",
  13580. height: math.unit(4000, "feet")
  13581. },
  13582. {
  13583. name: "Megamacro",
  13584. height: math.unit(3, "miles")
  13585. },
  13586. ]
  13587. ))
  13588. characterMakers.push(() => makeCharacter(
  13589. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13590. {
  13591. front: {
  13592. height: math.unit(6, "feet"),
  13593. weight: math.unit(150, "lb"),
  13594. name: "Front",
  13595. image: {
  13596. source: "./media/characters/isaac/front.svg",
  13597. extra: 896 / 815,
  13598. bottom: 0.11
  13599. }
  13600. },
  13601. },
  13602. [
  13603. {
  13604. name: "Human Size",
  13605. height: math.unit(8, "feet"),
  13606. default: true
  13607. },
  13608. {
  13609. name: "Macro",
  13610. height: math.unit(400, "feet")
  13611. },
  13612. {
  13613. name: "Megamacro",
  13614. height: math.unit(50, "miles")
  13615. },
  13616. {
  13617. name: "Canon Height",
  13618. height: math.unit(200, "AU")
  13619. },
  13620. ]
  13621. ))
  13622. characterMakers.push(() => makeCharacter(
  13623. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13624. {
  13625. front: {
  13626. height: math.unit(6, "feet"),
  13627. weight: math.unit(72, "kg"),
  13628. name: "Front",
  13629. image: {
  13630. source: "./media/characters/sleekit/front.svg",
  13631. extra: 4693 / 4487,
  13632. bottom: 0.012
  13633. }
  13634. },
  13635. },
  13636. [
  13637. {
  13638. name: "Minimum Height",
  13639. height: math.unit(10, "meters")
  13640. },
  13641. {
  13642. name: "Smaller",
  13643. height: math.unit(25, "meters")
  13644. },
  13645. {
  13646. name: "Larger",
  13647. height: math.unit(38, "meters"),
  13648. default: true
  13649. },
  13650. {
  13651. name: "Maximum height",
  13652. height: math.unit(100, "meters")
  13653. },
  13654. ]
  13655. ))
  13656. characterMakers.push(() => makeCharacter(
  13657. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13658. {
  13659. front: {
  13660. height: math.unit(6, "feet"),
  13661. weight: math.unit(150, "lb"),
  13662. name: "Front",
  13663. image: {
  13664. source: "./media/characters/nillia/front.svg",
  13665. extra: 2195 / 2037,
  13666. bottom: 0.005
  13667. }
  13668. },
  13669. back: {
  13670. height: math.unit(6, "feet"),
  13671. weight: math.unit(150, "lb"),
  13672. name: "Back",
  13673. image: {
  13674. source: "./media/characters/nillia/back.svg",
  13675. extra: 2195 / 2037,
  13676. bottom: 0.005
  13677. }
  13678. },
  13679. },
  13680. [
  13681. {
  13682. name: "Canon Height",
  13683. height: math.unit(489, "feet"),
  13684. default: true
  13685. }
  13686. ]
  13687. ))
  13688. characterMakers.push(() => makeCharacter(
  13689. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13690. {
  13691. front: {
  13692. height: math.unit(6, "feet"),
  13693. weight: math.unit(150, "lb"),
  13694. name: "Front",
  13695. image: {
  13696. source: "./media/characters/mesmyriza/front.svg",
  13697. extra: 2067 / 1784,
  13698. bottom: 0.035
  13699. }
  13700. },
  13701. foot: {
  13702. height: math.unit(6 / (250 / 35), "feet"),
  13703. name: "Foot",
  13704. image: {
  13705. source: "./media/characters/mesmyriza/foot.svg"
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Macro",
  13712. height: math.unit(457, "meters"),
  13713. default: true
  13714. },
  13715. {
  13716. name: "Megamacro",
  13717. height: math.unit(8, "megameters")
  13718. },
  13719. ]
  13720. ))
  13721. characterMakers.push(() => makeCharacter(
  13722. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13723. {
  13724. front: {
  13725. height: math.unit(6, "feet"),
  13726. weight: math.unit(250, "lb"),
  13727. name: "Front",
  13728. image: {
  13729. source: "./media/characters/saudade/front.svg",
  13730. extra: 1172 / 1139,
  13731. bottom: 0.035
  13732. }
  13733. },
  13734. },
  13735. [
  13736. {
  13737. name: "Micro",
  13738. height: math.unit(3, "inches")
  13739. },
  13740. {
  13741. name: "Normal",
  13742. height: math.unit(6, "feet"),
  13743. default: true
  13744. },
  13745. {
  13746. name: "Macro",
  13747. height: math.unit(50, "feet")
  13748. },
  13749. {
  13750. name: "Megamacro",
  13751. height: math.unit(2800, "feet")
  13752. },
  13753. ]
  13754. ))
  13755. characterMakers.push(() => makeCharacter(
  13756. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13757. {
  13758. front: {
  13759. height: math.unit(5 + 4 / 12, "feet"),
  13760. weight: math.unit(100, "lb"),
  13761. name: "Front",
  13762. image: {
  13763. source: "./media/characters/keireer/front.svg",
  13764. extra: 716 / 666,
  13765. bottom: 0.05
  13766. }
  13767. },
  13768. },
  13769. [
  13770. {
  13771. name: "Normal",
  13772. height: math.unit(5 + 4 / 12, "feet"),
  13773. default: true
  13774. },
  13775. ]
  13776. ))
  13777. characterMakers.push(() => makeCharacter(
  13778. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13779. {
  13780. front: {
  13781. height: math.unit(6, "feet"),
  13782. weight: math.unit(90, "kg"),
  13783. name: "Front",
  13784. image: {
  13785. source: "./media/characters/mirja/front.svg",
  13786. extra: 1789 / 1683,
  13787. bottom: 0.05
  13788. }
  13789. },
  13790. frontDressed: {
  13791. height: math.unit(6, "feet"),
  13792. weight: math.unit(90, "lb"),
  13793. name: "Front (Dressed)",
  13794. image: {
  13795. source: "./media/characters/mirja/front-dressed.svg",
  13796. extra: 1789 / 1683,
  13797. bottom: 0.05
  13798. }
  13799. },
  13800. back: {
  13801. height: math.unit(6, "feet"),
  13802. weight: math.unit(90, "lb"),
  13803. name: "Back",
  13804. image: {
  13805. source: "./media/characters/mirja/back.svg",
  13806. extra: 953 / 917,
  13807. bottom: 0.017
  13808. }
  13809. },
  13810. },
  13811. [
  13812. {
  13813. name: "\"Incognito\"",
  13814. height: math.unit(3, "meters")
  13815. },
  13816. {
  13817. name: "Strolling Size",
  13818. height: math.unit(15, "km")
  13819. },
  13820. {
  13821. name: "Larger Strolling Size",
  13822. height: math.unit(400, "km")
  13823. },
  13824. {
  13825. name: "Preferred Size",
  13826. height: math.unit(5000, "km")
  13827. },
  13828. {
  13829. name: "True Size",
  13830. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13831. default: true
  13832. },
  13833. ]
  13834. ))
  13835. characterMakers.push(() => makeCharacter(
  13836. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13837. {
  13838. front: {
  13839. height: math.unit(15, "feet"),
  13840. weight: math.unit(880, "kg"),
  13841. name: "Front",
  13842. image: {
  13843. source: "./media/characters/nightraver/front.svg",
  13844. extra: 2444 / 2160,
  13845. bottom: 0.027
  13846. }
  13847. },
  13848. back: {
  13849. height: math.unit(15, "feet"),
  13850. weight: math.unit(880, "kg"),
  13851. name: "Back",
  13852. image: {
  13853. source: "./media/characters/nightraver/back.svg",
  13854. extra: 2309 / 2180,
  13855. bottom: 0.005
  13856. }
  13857. },
  13858. sole: {
  13859. height: math.unit(2.878, "feet"),
  13860. name: "Sole",
  13861. image: {
  13862. source: "./media/characters/nightraver/sole.svg"
  13863. }
  13864. },
  13865. foot: {
  13866. height: math.unit(2.285, "feet"),
  13867. name: "Foot",
  13868. image: {
  13869. source: "./media/characters/nightraver/foot.svg"
  13870. }
  13871. },
  13872. maw: {
  13873. height: math.unit(2.67, "feet"),
  13874. name: "Maw",
  13875. image: {
  13876. source: "./media/characters/nightraver/maw.svg"
  13877. }
  13878. },
  13879. },
  13880. [
  13881. {
  13882. name: "Micro",
  13883. height: math.unit(1, "cm")
  13884. },
  13885. {
  13886. name: "Normal",
  13887. height: math.unit(15, "feet"),
  13888. default: true
  13889. },
  13890. {
  13891. name: "Macro",
  13892. height: math.unit(300, "feet")
  13893. },
  13894. {
  13895. name: "Megamacro",
  13896. height: math.unit(300, "miles")
  13897. },
  13898. {
  13899. name: "Gigamacro",
  13900. height: math.unit(10000, "miles")
  13901. },
  13902. ]
  13903. ))
  13904. characterMakers.push(() => makeCharacter(
  13905. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13906. {
  13907. side: {
  13908. height: math.unit(2, "inches"),
  13909. weight: math.unit(5, "grams"),
  13910. name: "Side",
  13911. image: {
  13912. source: "./media/characters/arc/side.svg"
  13913. }
  13914. },
  13915. },
  13916. [
  13917. {
  13918. name: "Micro",
  13919. height: math.unit(2, "inches"),
  13920. default: true
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(1.1938, "meters"),
  13929. weight: math.unit(54, "kg"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/nebula-shahar/front.svg",
  13933. extra: 1642 / 1436,
  13934. bottom: 0.06
  13935. }
  13936. },
  13937. },
  13938. [
  13939. {
  13940. name: "Megamicro",
  13941. height: math.unit(0.3, "mm")
  13942. },
  13943. {
  13944. name: "Micro",
  13945. height: math.unit(3, "cm")
  13946. },
  13947. {
  13948. name: "Normal",
  13949. height: math.unit(138, "cm"),
  13950. default: true
  13951. },
  13952. {
  13953. name: "Macro",
  13954. height: math.unit(30, "m")
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13960. {
  13961. front: {
  13962. height: math.unit(5.24, "feet"),
  13963. weight: math.unit(150, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/shayla/front.svg",
  13967. extra: 1512 / 1414,
  13968. bottom: 0.01
  13969. }
  13970. },
  13971. back: {
  13972. height: math.unit(5.24, "feet"),
  13973. weight: math.unit(150, "lb"),
  13974. name: "Back",
  13975. image: {
  13976. source: "./media/characters/shayla/back.svg",
  13977. extra: 1512 / 1414
  13978. }
  13979. },
  13980. hand: {
  13981. height: math.unit(0.7781496062992126, "feet"),
  13982. name: "Hand",
  13983. image: {
  13984. source: "./media/characters/shayla/hand.svg"
  13985. }
  13986. },
  13987. foot: {
  13988. height: math.unit(1.4206036745406823, "feet"),
  13989. name: "Foot",
  13990. image: {
  13991. source: "./media/characters/shayla/foot.svg"
  13992. }
  13993. },
  13994. },
  13995. [
  13996. {
  13997. name: "Micro",
  13998. height: math.unit(0.32, "feet")
  13999. },
  14000. {
  14001. name: "Normal",
  14002. height: math.unit(5.24, "feet"),
  14003. default: true
  14004. },
  14005. {
  14006. name: "Macro",
  14007. height: math.unit(492.12, "feet")
  14008. },
  14009. {
  14010. name: "Megamacro",
  14011. height: math.unit(186.41, "miles")
  14012. },
  14013. ]
  14014. ))
  14015. characterMakers.push(() => makeCharacter(
  14016. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14017. {
  14018. front: {
  14019. height: math.unit(2.2, "m"),
  14020. weight: math.unit(120, "kg"),
  14021. name: "Front",
  14022. image: {
  14023. source: "./media/characters/pia-jr/front.svg",
  14024. extra: 1000 / 970,
  14025. bottom: 0.035
  14026. }
  14027. },
  14028. hand: {
  14029. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14030. name: "Hand",
  14031. image: {
  14032. source: "./media/characters/pia-jr/hand.svg"
  14033. }
  14034. },
  14035. paw: {
  14036. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14037. name: "Paw",
  14038. image: {
  14039. source: "./media/characters/pia-jr/paw.svg"
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Micro",
  14046. height: math.unit(1.2, "cm")
  14047. },
  14048. {
  14049. name: "Normal",
  14050. height: math.unit(2.2, "m"),
  14051. default: true
  14052. },
  14053. {
  14054. name: "Macro",
  14055. height: math.unit(180, "m")
  14056. },
  14057. {
  14058. name: "Megamacro",
  14059. height: math.unit(420, "km")
  14060. },
  14061. ]
  14062. ))
  14063. characterMakers.push(() => makeCharacter(
  14064. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14065. {
  14066. front: {
  14067. height: math.unit(2, "m"),
  14068. weight: math.unit(115, "kg"),
  14069. name: "Front",
  14070. image: {
  14071. source: "./media/characters/pia-sr/front.svg",
  14072. extra: 760 / 730,
  14073. bottom: 0.015
  14074. }
  14075. },
  14076. back: {
  14077. height: math.unit(2, "m"),
  14078. weight: math.unit(115, "kg"),
  14079. name: "Back",
  14080. image: {
  14081. source: "./media/characters/pia-sr/back.svg",
  14082. extra: 760 / 730,
  14083. bottom: 0.01
  14084. }
  14085. },
  14086. hand: {
  14087. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14088. name: "Hand",
  14089. image: {
  14090. source: "./media/characters/pia-sr/hand.svg"
  14091. }
  14092. },
  14093. foot: {
  14094. height: math.unit(1.83, "feet"),
  14095. name: "Foot",
  14096. image: {
  14097. source: "./media/characters/pia-sr/foot.svg"
  14098. }
  14099. },
  14100. },
  14101. [
  14102. {
  14103. name: "Micro",
  14104. height: math.unit(88, "mm")
  14105. },
  14106. {
  14107. name: "Normal",
  14108. height: math.unit(2, "m"),
  14109. default: true
  14110. },
  14111. {
  14112. name: "Macro",
  14113. height: math.unit(200, "m")
  14114. },
  14115. {
  14116. name: "Megamacro",
  14117. height: math.unit(420, "km")
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(8 + 2 / 12, "feet"),
  14126. weight: math.unit(300, "lb"),
  14127. name: "Front",
  14128. image: {
  14129. source: "./media/characters/kibibyte/front.svg",
  14130. extra: 2221 / 2098,
  14131. bottom: 0.04
  14132. }
  14133. },
  14134. },
  14135. [
  14136. {
  14137. name: "Normal",
  14138. height: math.unit(8 + 2 / 12, "feet"),
  14139. default: true
  14140. },
  14141. {
  14142. name: "Socialable Macro",
  14143. height: math.unit(50, "feet")
  14144. },
  14145. {
  14146. name: "Macro",
  14147. height: math.unit(300, "feet")
  14148. },
  14149. {
  14150. name: "Megamacro",
  14151. height: math.unit(500, "miles")
  14152. },
  14153. ]
  14154. ))
  14155. characterMakers.push(() => makeCharacter(
  14156. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14157. {
  14158. front: {
  14159. height: math.unit(6, "feet"),
  14160. weight: math.unit(150, "lb"),
  14161. name: "Front",
  14162. image: {
  14163. source: "./media/characters/felix/front.svg",
  14164. extra: 762 / 722,
  14165. bottom: 0.02
  14166. }
  14167. },
  14168. frontClothed: {
  14169. height: math.unit(6, "feet"),
  14170. weight: math.unit(150, "lb"),
  14171. name: "Front (Clothed)",
  14172. image: {
  14173. source: "./media/characters/felix/front-clothed.svg",
  14174. extra: 762 / 722,
  14175. bottom: 0.02
  14176. }
  14177. },
  14178. },
  14179. [
  14180. {
  14181. name: "Normal",
  14182. height: math.unit(6 + 8 / 12, "feet"),
  14183. default: true
  14184. },
  14185. {
  14186. name: "Macro",
  14187. height: math.unit(2600, "feet")
  14188. },
  14189. {
  14190. name: "Megamacro",
  14191. height: math.unit(450, "miles")
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14197. {
  14198. front: {
  14199. height: math.unit(6 + 1 / 12, "feet"),
  14200. weight: math.unit(250, "lb"),
  14201. name: "Front",
  14202. image: {
  14203. source: "./media/characters/tobo/front.svg",
  14204. extra: 608 / 586,
  14205. bottom: 0.023
  14206. }
  14207. },
  14208. back: {
  14209. height: math.unit(6 + 1 / 12, "feet"),
  14210. weight: math.unit(250, "lb"),
  14211. name: "Back",
  14212. image: {
  14213. source: "./media/characters/tobo/back.svg",
  14214. extra: 608 / 586
  14215. }
  14216. },
  14217. },
  14218. [
  14219. {
  14220. name: "Nano",
  14221. height: math.unit(2, "nm")
  14222. },
  14223. {
  14224. name: "Megamicro",
  14225. height: math.unit(0.1, "mm")
  14226. },
  14227. {
  14228. name: "Micro",
  14229. height: math.unit(1, "inch"),
  14230. default: true
  14231. },
  14232. {
  14233. name: "Human-sized",
  14234. height: math.unit(6 + 1 / 12, "feet")
  14235. },
  14236. {
  14237. name: "Macro",
  14238. height: math.unit(250, "feet")
  14239. },
  14240. {
  14241. name: "Megamacro",
  14242. height: math.unit(75, "miles")
  14243. },
  14244. {
  14245. name: "Texas-sized",
  14246. height: math.unit(750, "miles")
  14247. },
  14248. {
  14249. name: "Teramacro",
  14250. height: math.unit(50000, "miles")
  14251. },
  14252. ]
  14253. ))
  14254. characterMakers.push(() => makeCharacter(
  14255. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14256. {
  14257. front: {
  14258. height: math.unit(6, "feet"),
  14259. weight: math.unit(269, "lb"),
  14260. name: "Front",
  14261. image: {
  14262. source: "./media/characters/danny-kapowsky/front.svg",
  14263. extra: 766 / 736,
  14264. bottom: 0.044
  14265. }
  14266. },
  14267. back: {
  14268. height: math.unit(6, "feet"),
  14269. weight: math.unit(269, "lb"),
  14270. name: "Back",
  14271. image: {
  14272. source: "./media/characters/danny-kapowsky/back.svg",
  14273. extra: 797 / 760,
  14274. bottom: 0.025
  14275. }
  14276. },
  14277. },
  14278. [
  14279. {
  14280. name: "Macro",
  14281. height: math.unit(150, "feet"),
  14282. default: true
  14283. },
  14284. {
  14285. name: "Macro+",
  14286. height: math.unit(200, "feet")
  14287. },
  14288. {
  14289. name: "Macro++",
  14290. height: math.unit(300, "feet")
  14291. },
  14292. {
  14293. name: "Macro+++",
  14294. height: math.unit(400, "feet")
  14295. },
  14296. ]
  14297. ))
  14298. characterMakers.push(() => makeCharacter(
  14299. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14300. {
  14301. side: {
  14302. height: math.unit(6, "feet"),
  14303. weight: math.unit(170, "lb"),
  14304. name: "Side",
  14305. image: {
  14306. source: "./media/characters/finn/side.svg",
  14307. extra: 1953 / 1807,
  14308. bottom: 0.057
  14309. }
  14310. },
  14311. },
  14312. [
  14313. {
  14314. name: "Megamacro",
  14315. height: math.unit(14445, "feet"),
  14316. default: true
  14317. },
  14318. ]
  14319. ))
  14320. characterMakers.push(() => makeCharacter(
  14321. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14322. {
  14323. front: {
  14324. height: math.unit(5 + 6 / 12, "feet"),
  14325. weight: math.unit(125, "lb"),
  14326. name: "Front",
  14327. image: {
  14328. source: "./media/characters/roy/front.svg",
  14329. extra: 1,
  14330. bottom: 0.11
  14331. }
  14332. },
  14333. },
  14334. [
  14335. {
  14336. name: "Micro",
  14337. height: math.unit(3, "inches"),
  14338. default: true
  14339. },
  14340. {
  14341. name: "Normal",
  14342. height: math.unit(5 + 6 / 12, "feet")
  14343. },
  14344. {
  14345. name: "Lesser Macro",
  14346. height: math.unit(60, "feet")
  14347. },
  14348. {
  14349. name: "Greater Macro",
  14350. height: math.unit(120, "feet")
  14351. },
  14352. ]
  14353. ))
  14354. characterMakers.push(() => makeCharacter(
  14355. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14356. {
  14357. front: {
  14358. height: math.unit(6, "feet"),
  14359. weight: math.unit(100, "lb"),
  14360. name: "Front",
  14361. image: {
  14362. source: "./media/characters/aevsivs/front.svg",
  14363. extra: 1,
  14364. bottom: 0.03
  14365. }
  14366. },
  14367. back: {
  14368. height: math.unit(6, "feet"),
  14369. weight: math.unit(100, "lb"),
  14370. name: "Back",
  14371. image: {
  14372. source: "./media/characters/aevsivs/back.svg"
  14373. }
  14374. },
  14375. },
  14376. [
  14377. {
  14378. name: "Micro",
  14379. height: math.unit(2, "inches"),
  14380. default: true
  14381. },
  14382. {
  14383. name: "Normal",
  14384. height: math.unit(5, "feet")
  14385. },
  14386. ]
  14387. ))
  14388. characterMakers.push(() => makeCharacter(
  14389. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14390. {
  14391. front: {
  14392. height: math.unit(5 + 7 / 12, "feet"),
  14393. weight: math.unit(159, "lb"),
  14394. name: "Front",
  14395. image: {
  14396. source: "./media/characters/hildegard/front.svg",
  14397. extra: 289 / 269,
  14398. bottom: 7.63 / 297.8
  14399. }
  14400. },
  14401. back: {
  14402. height: math.unit(5 + 7 / 12, "feet"),
  14403. weight: math.unit(159, "lb"),
  14404. name: "Back",
  14405. image: {
  14406. source: "./media/characters/hildegard/back.svg",
  14407. extra: 280 / 260,
  14408. bottom: 2.3 / 282
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Normal",
  14415. height: math.unit(5 + 7 / 12, "feet"),
  14416. default: true
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14422. {
  14423. bernard: {
  14424. height: math.unit(2 + 7 / 12, "feet"),
  14425. weight: math.unit(66, "lb"),
  14426. name: "Bernard",
  14427. rename: true,
  14428. image: {
  14429. source: "./media/characters/bernard-wilder/bernard.svg",
  14430. extra: 192 / 128,
  14431. bottom: 0.05
  14432. }
  14433. },
  14434. wilder: {
  14435. height: math.unit(5 + 8 / 12, "feet"),
  14436. weight: math.unit(143, "lb"),
  14437. name: "Wilder",
  14438. rename: true,
  14439. image: {
  14440. source: "./media/characters/bernard-wilder/wilder.svg",
  14441. extra: 361 / 312,
  14442. bottom: 0.02
  14443. }
  14444. },
  14445. },
  14446. [
  14447. {
  14448. name: "Normal",
  14449. height: math.unit(2 + 7 / 12, "feet"),
  14450. default: true
  14451. },
  14452. ]
  14453. ))
  14454. characterMakers.push(() => makeCharacter(
  14455. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14456. {
  14457. anthro: {
  14458. height: math.unit(6 + 1 / 12, "feet"),
  14459. weight: math.unit(155, "lb"),
  14460. name: "Anthro",
  14461. image: {
  14462. source: "./media/characters/hearth/anthro.svg",
  14463. extra: 260 / 250,
  14464. bottom: 0.02
  14465. }
  14466. },
  14467. feral: {
  14468. height: math.unit(3.78, "feet"),
  14469. weight: math.unit(35, "kg"),
  14470. name: "Feral",
  14471. image: {
  14472. source: "./media/characters/hearth/feral.svg",
  14473. extra: 153 / 135,
  14474. bottom: 0.03
  14475. }
  14476. },
  14477. },
  14478. [
  14479. {
  14480. name: "Normal",
  14481. height: math.unit(6 + 1 / 12, "feet"),
  14482. default: true
  14483. },
  14484. ]
  14485. ))
  14486. characterMakers.push(() => makeCharacter(
  14487. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14488. {
  14489. front: {
  14490. height: math.unit(6, "feet"),
  14491. weight: math.unit(182, "lb"),
  14492. name: "Front",
  14493. image: {
  14494. source: "./media/characters/ingrid/front.svg",
  14495. extra: 294 / 268,
  14496. bottom: 0.027
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Normal",
  14503. height: math.unit(6, "feet"),
  14504. default: true
  14505. },
  14506. ]
  14507. ))
  14508. characterMakers.push(() => makeCharacter(
  14509. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14510. {
  14511. eevee: {
  14512. height: math.unit(2 + 10 / 12, "feet"),
  14513. weight: math.unit(86, "lb"),
  14514. name: "Malgam",
  14515. image: {
  14516. source: "./media/characters/malgam/eevee.svg",
  14517. extra: 218 / 180,
  14518. bottom: 0.2
  14519. }
  14520. },
  14521. sylveon: {
  14522. height: math.unit(4, "feet"),
  14523. weight: math.unit(101, "lb"),
  14524. name: "Future Malgam",
  14525. rename: true,
  14526. image: {
  14527. source: "./media/characters/malgam/sylveon.svg",
  14528. extra: 371 / 325,
  14529. bottom: 0.015
  14530. }
  14531. },
  14532. gigantamax: {
  14533. height: math.unit(50, "feet"),
  14534. name: "Gigantamax Malgam",
  14535. rename: true,
  14536. image: {
  14537. source: "./media/characters/malgam/gigantamax.svg"
  14538. }
  14539. },
  14540. },
  14541. [
  14542. {
  14543. name: "Normal",
  14544. height: math.unit(2 + 10 / 12, "feet"),
  14545. default: true
  14546. },
  14547. ]
  14548. ))
  14549. characterMakers.push(() => makeCharacter(
  14550. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14551. {
  14552. front: {
  14553. height: math.unit(5 + 11 / 12, "feet"),
  14554. weight: math.unit(188, "lb"),
  14555. name: "Front",
  14556. image: {
  14557. source: "./media/characters/fleur/front.svg",
  14558. extra: 309 / 283,
  14559. bottom: 0.007
  14560. }
  14561. },
  14562. },
  14563. [
  14564. {
  14565. name: "Normal",
  14566. height: math.unit(5 + 11 / 12, "feet"),
  14567. default: true
  14568. },
  14569. ]
  14570. ))
  14571. characterMakers.push(() => makeCharacter(
  14572. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14573. {
  14574. front: {
  14575. height: math.unit(5 + 4 / 12, "feet"),
  14576. weight: math.unit(122, "lb"),
  14577. name: "Front",
  14578. image: {
  14579. source: "./media/characters/jude/front.svg",
  14580. extra: 288 / 273,
  14581. bottom: 0.03
  14582. }
  14583. },
  14584. },
  14585. [
  14586. {
  14587. name: "Normal",
  14588. height: math.unit(5 + 4 / 12, "feet"),
  14589. default: true
  14590. },
  14591. ]
  14592. ))
  14593. characterMakers.push(() => makeCharacter(
  14594. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14595. {
  14596. front: {
  14597. height: math.unit(5 + 11 / 12, "feet"),
  14598. weight: math.unit(190, "lb"),
  14599. name: "Front",
  14600. image: {
  14601. source: "./media/characters/seara/front.svg",
  14602. extra: 1,
  14603. bottom: 0.05
  14604. }
  14605. },
  14606. },
  14607. [
  14608. {
  14609. name: "Normal",
  14610. height: math.unit(5 + 11 / 12, "feet"),
  14611. default: true
  14612. },
  14613. ]
  14614. ))
  14615. characterMakers.push(() => makeCharacter(
  14616. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14617. {
  14618. front: {
  14619. height: math.unit(16 + 5 / 12, "feet"),
  14620. weight: math.unit(524, "lb"),
  14621. name: "Front",
  14622. image: {
  14623. source: "./media/characters/caspian/front.svg",
  14624. extra: 1,
  14625. bottom: 0.04
  14626. }
  14627. },
  14628. },
  14629. [
  14630. {
  14631. name: "Normal",
  14632. height: math.unit(16 + 5 / 12, "feet"),
  14633. default: true
  14634. },
  14635. ]
  14636. ))
  14637. characterMakers.push(() => makeCharacter(
  14638. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14639. {
  14640. front: {
  14641. height: math.unit(5 + 7 / 12, "feet"),
  14642. weight: math.unit(170, "lb"),
  14643. name: "Front",
  14644. image: {
  14645. source: "./media/characters/mika/front.svg",
  14646. extra: 1,
  14647. bottom: 0.016
  14648. }
  14649. },
  14650. },
  14651. [
  14652. {
  14653. name: "Normal",
  14654. height: math.unit(5 + 7 / 12, "feet"),
  14655. default: true
  14656. },
  14657. ]
  14658. ))
  14659. characterMakers.push(() => makeCharacter(
  14660. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14661. {
  14662. front: {
  14663. height: math.unit(6 + 2 / 12, "feet"),
  14664. weight: math.unit(268, "lb"),
  14665. name: "Front",
  14666. image: {
  14667. source: "./media/characters/sol/front.svg",
  14668. extra: 247 / 231,
  14669. bottom: 0.05
  14670. }
  14671. },
  14672. },
  14673. [
  14674. {
  14675. name: "Normal",
  14676. height: math.unit(6 + 2 / 12, "feet"),
  14677. default: true
  14678. },
  14679. ]
  14680. ))
  14681. characterMakers.push(() => makeCharacter(
  14682. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14683. {
  14684. buizel: {
  14685. height: math.unit(2 + 5 / 12, "feet"),
  14686. weight: math.unit(87, "lb"),
  14687. name: "Buizel",
  14688. image: {
  14689. source: "./media/characters/umiko/buizel.svg",
  14690. extra: 172 / 157,
  14691. bottom: 0.01
  14692. }
  14693. },
  14694. floatzel: {
  14695. height: math.unit(5 + 9 / 12, "feet"),
  14696. weight: math.unit(250, "lb"),
  14697. name: "Floatzel",
  14698. image: {
  14699. source: "./media/characters/umiko/floatzel.svg",
  14700. extra: 262 / 248
  14701. }
  14702. },
  14703. },
  14704. [
  14705. {
  14706. name: "Normal",
  14707. height: math.unit(2 + 5 / 12, "feet"),
  14708. default: true
  14709. },
  14710. ]
  14711. ))
  14712. characterMakers.push(() => makeCharacter(
  14713. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14714. {
  14715. front: {
  14716. height: math.unit(6 + 2 / 12, "feet"),
  14717. weight: math.unit(146, "lb"),
  14718. name: "Front",
  14719. image: {
  14720. source: "./media/characters/iliac/front.svg",
  14721. extra: 389 / 365,
  14722. bottom: 0.035
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Normal",
  14729. height: math.unit(6 + 2 / 12, "feet"),
  14730. default: true
  14731. },
  14732. ]
  14733. ))
  14734. characterMakers.push(() => makeCharacter(
  14735. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14736. {
  14737. front: {
  14738. height: math.unit(6, "feet"),
  14739. weight: math.unit(170, "lb"),
  14740. name: "Front",
  14741. image: {
  14742. source: "./media/characters/topaz/front.svg",
  14743. extra: 317 / 303,
  14744. bottom: 0.055
  14745. }
  14746. },
  14747. },
  14748. [
  14749. {
  14750. name: "Normal",
  14751. height: math.unit(6, "feet"),
  14752. default: true
  14753. },
  14754. ]
  14755. ))
  14756. characterMakers.push(() => makeCharacter(
  14757. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14758. {
  14759. front: {
  14760. height: math.unit(5 + 11 / 12, "feet"),
  14761. weight: math.unit(144, "lb"),
  14762. name: "Front",
  14763. image: {
  14764. source: "./media/characters/gabriel/front.svg",
  14765. extra: 285 / 262,
  14766. bottom: 0.004
  14767. }
  14768. },
  14769. },
  14770. [
  14771. {
  14772. name: "Normal",
  14773. height: math.unit(5 + 11 / 12, "feet"),
  14774. default: true
  14775. },
  14776. ]
  14777. ))
  14778. characterMakers.push(() => makeCharacter(
  14779. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14780. {
  14781. side: {
  14782. height: math.unit(6 + 5 / 12, "feet"),
  14783. weight: math.unit(300, "lb"),
  14784. name: "Side",
  14785. image: {
  14786. source: "./media/characters/tempest-suicune/side.svg",
  14787. extra: 195 / 154,
  14788. bottom: 0.04
  14789. }
  14790. },
  14791. },
  14792. [
  14793. {
  14794. name: "Normal",
  14795. height: math.unit(6 + 5 / 12, "feet"),
  14796. default: true
  14797. },
  14798. ]
  14799. ))
  14800. characterMakers.push(() => makeCharacter(
  14801. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14802. {
  14803. front: {
  14804. height: math.unit(7 + 2 / 12, "feet"),
  14805. weight: math.unit(322, "lb"),
  14806. name: "Front",
  14807. image: {
  14808. source: "./media/characters/vulcan/front.svg",
  14809. extra: 154 / 147,
  14810. bottom: 0.04
  14811. }
  14812. },
  14813. },
  14814. [
  14815. {
  14816. name: "Normal",
  14817. height: math.unit(7 + 2 / 12, "feet"),
  14818. default: true
  14819. },
  14820. ]
  14821. ))
  14822. characterMakers.push(() => makeCharacter(
  14823. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14824. {
  14825. front: {
  14826. height: math.unit(5 + 10 / 12, "feet"),
  14827. weight: math.unit(264, "lb"),
  14828. name: "Front",
  14829. image: {
  14830. source: "./media/characters/gault/front.svg",
  14831. extra: 161 / 140,
  14832. bottom: 0.028
  14833. }
  14834. },
  14835. },
  14836. [
  14837. {
  14838. name: "Normal",
  14839. height: math.unit(5 + 10 / 12, "feet"),
  14840. default: true
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(6, "feet"),
  14849. weight: math.unit(150, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/shard/front.svg",
  14853. extra: 273 / 238,
  14854. bottom: 0.02
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Normal",
  14861. height: math.unit(3 + 6 / 12, "feet"),
  14862. default: true
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(5 + 11 / 12, "feet"),
  14871. weight: math.unit(146, "lb"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/ashe/front.svg",
  14875. extra: 400 / 373,
  14876. bottom: 0.01
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Normal",
  14883. height: math.unit(5 + 11 / 12, "feet"),
  14884. default: true
  14885. },
  14886. ]
  14887. ))
  14888. characterMakers.push(() => makeCharacter(
  14889. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14890. {
  14891. front: {
  14892. height: math.unit(5 + 5 / 12, "feet"),
  14893. weight: math.unit(135, "lb"),
  14894. name: "Front",
  14895. image: {
  14896. source: "./media/characters/beatrix/front.svg",
  14897. extra: 392 / 379,
  14898. bottom: 0.01
  14899. }
  14900. },
  14901. },
  14902. [
  14903. {
  14904. name: "Normal",
  14905. height: math.unit(6, "feet"),
  14906. default: true
  14907. },
  14908. ]
  14909. ))
  14910. characterMakers.push(() => makeCharacter(
  14911. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14912. {
  14913. front: {
  14914. height: math.unit(6, "feet"),
  14915. weight: math.unit(150, "lb"),
  14916. name: "Front",
  14917. image: {
  14918. source: "./media/characters/ignatius/front.svg",
  14919. extra: 245 / 222,
  14920. bottom: 0.01
  14921. }
  14922. },
  14923. },
  14924. [
  14925. {
  14926. name: "Normal",
  14927. height: math.unit(5 + 5 / 12, "feet"),
  14928. default: true
  14929. },
  14930. ]
  14931. ))
  14932. characterMakers.push(() => makeCharacter(
  14933. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14934. {
  14935. front: {
  14936. height: math.unit(6 + 2 / 12, "feet"),
  14937. weight: math.unit(138, "lb"),
  14938. name: "Front",
  14939. image: {
  14940. source: "./media/characters/mei-li/front.svg",
  14941. extra: 237 / 229,
  14942. bottom: 0.03
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Normal",
  14949. height: math.unit(6 + 2 / 12, "feet"),
  14950. default: true
  14951. },
  14952. ]
  14953. ))
  14954. characterMakers.push(() => makeCharacter(
  14955. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14956. {
  14957. front: {
  14958. height: math.unit(2 + 4 / 12, "feet"),
  14959. weight: math.unit(62, "lb"),
  14960. name: "Front",
  14961. image: {
  14962. source: "./media/characters/puru/front.svg",
  14963. extra: 206 / 149,
  14964. bottom: 0.06
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Normal",
  14971. height: math.unit(2 + 4 / 12, "feet"),
  14972. default: true
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  14978. {
  14979. anthro: {
  14980. height: math.unit(5 + 8/12, "feet"),
  14981. weight: math.unit(200, "lb"),
  14982. name: "Anthro",
  14983. image: {
  14984. source: "./media/characters/kee/anthro.svg",
  14985. extra: 3251/3184,
  14986. bottom: 250/3501
  14987. }
  14988. },
  14989. taur: {
  14990. height: math.unit(11, "feet"),
  14991. weight: math.unit(500, "lb"),
  14992. name: "Taur",
  14993. image: {
  14994. source: "./media/characters/kee/taur.svg",
  14995. extra: 1362/1320,
  14996. bottom: 83/1445
  14997. }
  14998. },
  14999. },
  15000. [
  15001. {
  15002. name: "Normal",
  15003. height: math.unit(5 + 8/12, "feet"),
  15004. default: true
  15005. },
  15006. {
  15007. name: "Macro",
  15008. height: math.unit(35, "feet")
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15014. {
  15015. anthro: {
  15016. height: math.unit(7, "feet"),
  15017. weight: math.unit(190, "lb"),
  15018. name: "Anthro",
  15019. image: {
  15020. source: "./media/characters/cobalt-dracha/anthro.svg",
  15021. extra: 231 / 225,
  15022. bottom: 0.04
  15023. }
  15024. },
  15025. feral: {
  15026. height: math.unit(9 + 7 / 12, "feet"),
  15027. weight: math.unit(294, "lb"),
  15028. name: "Feral",
  15029. image: {
  15030. source: "./media/characters/cobalt-dracha/feral.svg",
  15031. extra: 692 / 633,
  15032. bottom: 0.05
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Normal",
  15039. height: math.unit(7, "feet"),
  15040. default: true
  15041. },
  15042. ]
  15043. ))
  15044. characterMakers.push(() => makeCharacter(
  15045. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15046. {
  15047. fallen: {
  15048. height: math.unit(11 + 8 / 12, "feet"),
  15049. weight: math.unit(485, "lb"),
  15050. name: "Java (Fallen)",
  15051. rename: true,
  15052. image: {
  15053. source: "./media/characters/java/fallen.svg",
  15054. extra: 226 / 208,
  15055. bottom: 0.005
  15056. }
  15057. },
  15058. godkin: {
  15059. height: math.unit(10 + 6 / 12, "feet"),
  15060. weight: math.unit(328, "lb"),
  15061. name: "Java (Godkin)",
  15062. rename: true,
  15063. image: {
  15064. source: "./media/characters/java/godkin.svg",
  15065. extra: 270 / 262,
  15066. bottom: 0.02
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(11 + 8 / 12, "feet"),
  15074. default: true
  15075. },
  15076. ]
  15077. ))
  15078. characterMakers.push(() => makeCharacter(
  15079. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15080. {
  15081. front: {
  15082. height: math.unit(7 + 8 / 12, "feet"),
  15083. weight: math.unit(320, "lb"),
  15084. name: "Front",
  15085. image: {
  15086. source: "./media/characters/skoll/front.svg",
  15087. extra: 232 / 220,
  15088. bottom: 0.02
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(7 + 8 / 12, "feet"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15102. {
  15103. front: {
  15104. height: math.unit(5 + 9 / 12, "feet"),
  15105. weight: math.unit(170, "lb"),
  15106. name: "Front",
  15107. image: {
  15108. source: "./media/characters/purna/front.svg",
  15109. extra: 239 / 229,
  15110. bottom: 0.01
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(5 + 9 / 12, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15124. {
  15125. front: {
  15126. height: math.unit(5 + 9 / 12, "feet"),
  15127. weight: math.unit(142, "lb"),
  15128. name: "Front",
  15129. image: {
  15130. source: "./media/characters/kuva/front.svg",
  15131. extra: 281 / 271,
  15132. bottom: 0.006
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(5 + 9 / 12, "feet"),
  15140. default: true
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15146. {
  15147. anthro: {
  15148. height: math.unit(9 + 2 / 12, "feet"),
  15149. weight: math.unit(270, "lb"),
  15150. name: "Anthro",
  15151. image: {
  15152. source: "./media/characters/embra/anthro.svg",
  15153. extra: 200 / 187,
  15154. bottom: 0.02
  15155. }
  15156. },
  15157. feral: {
  15158. height: math.unit(18 + 8 / 12, "feet"),
  15159. weight: math.unit(576, "lb"),
  15160. name: "Feral",
  15161. image: {
  15162. source: "./media/characters/embra/feral.svg",
  15163. extra: 152 / 137,
  15164. bottom: 0.037
  15165. }
  15166. },
  15167. },
  15168. [
  15169. {
  15170. name: "Normal",
  15171. height: math.unit(9 + 2 / 12, "feet"),
  15172. default: true
  15173. },
  15174. ]
  15175. ))
  15176. characterMakers.push(() => makeCharacter(
  15177. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15178. {
  15179. anthro: {
  15180. height: math.unit(10 + 9 / 12, "feet"),
  15181. weight: math.unit(224, "lb"),
  15182. name: "Anthro",
  15183. image: {
  15184. source: "./media/characters/grottos/anthro.svg",
  15185. extra: 350 / 332,
  15186. bottom: 0.045
  15187. }
  15188. },
  15189. feral: {
  15190. height: math.unit(20 + 7 / 12, "feet"),
  15191. weight: math.unit(629, "lb"),
  15192. name: "Feral",
  15193. image: {
  15194. source: "./media/characters/grottos/feral.svg",
  15195. extra: 207 / 190,
  15196. bottom: 0.05
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Normal",
  15203. height: math.unit(10 + 9 / 12, "feet"),
  15204. default: true
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15210. {
  15211. anthro: {
  15212. height: math.unit(9 + 6 / 12, "feet"),
  15213. weight: math.unit(298, "lb"),
  15214. name: "Anthro",
  15215. image: {
  15216. source: "./media/characters/frifna/anthro.svg",
  15217. extra: 282 / 269,
  15218. bottom: 0.015
  15219. }
  15220. },
  15221. feral: {
  15222. height: math.unit(16 + 2 / 12, "feet"),
  15223. weight: math.unit(624, "lb"),
  15224. name: "Feral",
  15225. image: {
  15226. source: "./media/characters/frifna/feral.svg"
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Normal",
  15233. height: math.unit(9 + 6 / 12, "feet"),
  15234. default: true
  15235. },
  15236. ]
  15237. ))
  15238. characterMakers.push(() => makeCharacter(
  15239. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15240. {
  15241. front: {
  15242. height: math.unit(6 + 2 / 12, "feet"),
  15243. weight: math.unit(168, "lb"),
  15244. name: "Front",
  15245. image: {
  15246. source: "./media/characters/elise/front.svg",
  15247. extra: 276 / 271
  15248. }
  15249. },
  15250. },
  15251. [
  15252. {
  15253. name: "Normal",
  15254. height: math.unit(6 + 2 / 12, "feet"),
  15255. default: true
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(5 + 10 / 12, "feet"),
  15264. weight: math.unit(210, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/glade/front.svg",
  15268. extra: 258 / 247,
  15269. bottom: 0.008
  15270. }
  15271. },
  15272. },
  15273. [
  15274. {
  15275. name: "Normal",
  15276. height: math.unit(5 + 10 / 12, "feet"),
  15277. default: true
  15278. },
  15279. ]
  15280. ))
  15281. characterMakers.push(() => makeCharacter(
  15282. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15283. {
  15284. front: {
  15285. height: math.unit(5 + 10 / 12, "feet"),
  15286. weight: math.unit(129, "lb"),
  15287. name: "Front",
  15288. image: {
  15289. source: "./media/characters/rina/front.svg",
  15290. extra: 266 / 255,
  15291. bottom: 0.005
  15292. }
  15293. },
  15294. },
  15295. [
  15296. {
  15297. name: "Normal",
  15298. height: math.unit(5 + 10 / 12, "feet"),
  15299. default: true
  15300. },
  15301. ]
  15302. ))
  15303. characterMakers.push(() => makeCharacter(
  15304. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15305. {
  15306. front: {
  15307. height: math.unit(6 + 1 / 12, "feet"),
  15308. weight: math.unit(192, "lb"),
  15309. name: "Front",
  15310. image: {
  15311. source: "./media/characters/veronica/front.svg",
  15312. extra: 319 / 309,
  15313. bottom: 0.005
  15314. }
  15315. },
  15316. },
  15317. [
  15318. {
  15319. name: "Normal",
  15320. height: math.unit(6 + 1 / 12, "feet"),
  15321. default: true
  15322. },
  15323. ]
  15324. ))
  15325. characterMakers.push(() => makeCharacter(
  15326. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15327. {
  15328. front: {
  15329. height: math.unit(9 + 3 / 12, "feet"),
  15330. weight: math.unit(1100, "lb"),
  15331. name: "Front",
  15332. image: {
  15333. source: "./media/characters/braxton/front.svg",
  15334. extra: 1057 / 984,
  15335. bottom: 0.05
  15336. }
  15337. },
  15338. },
  15339. [
  15340. {
  15341. name: "Normal",
  15342. height: math.unit(9 + 3 / 12, "feet")
  15343. },
  15344. {
  15345. name: "Giant",
  15346. height: math.unit(300, "feet"),
  15347. default: true
  15348. },
  15349. {
  15350. name: "Macro",
  15351. height: math.unit(700, "feet")
  15352. },
  15353. {
  15354. name: "Megamacro",
  15355. height: math.unit(6000, "feet")
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15361. {
  15362. front: {
  15363. height: math.unit(6 + 7 / 12, "feet"),
  15364. weight: math.unit(150, "lb"),
  15365. name: "Front",
  15366. image: {
  15367. source: "./media/characters/blue-feyonics/front.svg",
  15368. extra: 1403 / 1306,
  15369. bottom: 0.047
  15370. }
  15371. },
  15372. },
  15373. [
  15374. {
  15375. name: "Normal",
  15376. height: math.unit(6 + 7 / 12, "feet"),
  15377. default: true
  15378. },
  15379. ]
  15380. ))
  15381. characterMakers.push(() => makeCharacter(
  15382. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15383. {
  15384. front: {
  15385. height: math.unit(1.8, "meters"),
  15386. weight: math.unit(60, "kg"),
  15387. name: "Front",
  15388. image: {
  15389. source: "./media/characters/maxwell/front.svg",
  15390. extra: 2060 / 1873
  15391. }
  15392. },
  15393. },
  15394. [
  15395. {
  15396. name: "Micro",
  15397. height: math.unit(1, "mm")
  15398. },
  15399. {
  15400. name: "Normal",
  15401. height: math.unit(1.8, "meter"),
  15402. default: true
  15403. },
  15404. {
  15405. name: "Macro",
  15406. height: math.unit(30, "meters")
  15407. },
  15408. {
  15409. name: "Megamacro",
  15410. height: math.unit(10, "km")
  15411. },
  15412. ]
  15413. ))
  15414. characterMakers.push(() => makeCharacter(
  15415. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15416. {
  15417. front: {
  15418. height: math.unit(6, "feet"),
  15419. weight: math.unit(150, "lb"),
  15420. name: "Front",
  15421. image: {
  15422. source: "./media/characters/jack/front.svg",
  15423. extra: 1754 / 1640,
  15424. bottom: 0.01
  15425. }
  15426. },
  15427. },
  15428. [
  15429. {
  15430. name: "Normal",
  15431. height: math.unit(80000, "feet"),
  15432. default: true
  15433. },
  15434. {
  15435. name: "Max size",
  15436. height: math.unit(10, "lightyears")
  15437. },
  15438. ]
  15439. ))
  15440. characterMakers.push(() => makeCharacter(
  15441. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15442. {
  15443. upright: {
  15444. height: math.unit(7, "feet"),
  15445. weight: math.unit(170, "lb"),
  15446. name: "Upright",
  15447. image: {
  15448. source: "./media/characters/cafat/upright.svg",
  15449. bottom: 0.01
  15450. }
  15451. },
  15452. uprightFull: {
  15453. height: math.unit(7, "feet"),
  15454. weight: math.unit(170, "lb"),
  15455. name: "Upright (Full)",
  15456. image: {
  15457. source: "./media/characters/cafat/upright-full.svg",
  15458. bottom: 0.01
  15459. }
  15460. },
  15461. side: {
  15462. height: math.unit(5, "feet"),
  15463. weight: math.unit(150, "lb"),
  15464. name: "Side",
  15465. image: {
  15466. source: "./media/characters/cafat/side.svg"
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Small",
  15473. height: math.unit(7, "feet"),
  15474. default: true
  15475. },
  15476. {
  15477. name: "Large",
  15478. height: math.unit(15.5, "feet")
  15479. },
  15480. ]
  15481. ))
  15482. characterMakers.push(() => makeCharacter(
  15483. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15484. {
  15485. front: {
  15486. height: math.unit(6, "feet"),
  15487. weight: math.unit(150, "lb"),
  15488. name: "Front",
  15489. image: {
  15490. source: "./media/characters/verin-raharra/front.svg",
  15491. extra: 5019 / 4835,
  15492. bottom: 0.023
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Normal",
  15499. height: math.unit(7 + 5 / 12, "feet"),
  15500. default: true
  15501. },
  15502. {
  15503. name: "Upsized",
  15504. height: math.unit(20, "feet")
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(7, "feet"),
  15513. weight: math.unit(230, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/nakata/front.svg",
  15517. extra: 1.005,
  15518. bottom: 0.01
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Normal",
  15525. height: math.unit(7, "feet"),
  15526. default: true
  15527. },
  15528. {
  15529. name: "Big",
  15530. height: math.unit(14, "feet")
  15531. },
  15532. {
  15533. name: "Macro",
  15534. height: math.unit(400, "feet")
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15540. {
  15541. front: {
  15542. height: math.unit(4.91, "feet"),
  15543. weight: math.unit(100, "lb"),
  15544. name: "Front",
  15545. image: {
  15546. source: "./media/characters/lily/front.svg",
  15547. extra: 1585 / 1415,
  15548. bottom: 0.02
  15549. }
  15550. },
  15551. },
  15552. [
  15553. {
  15554. name: "Normal",
  15555. height: math.unit(4.91, "feet"),
  15556. default: true
  15557. },
  15558. ]
  15559. ))
  15560. characterMakers.push(() => makeCharacter(
  15561. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15562. {
  15563. laying: {
  15564. height: math.unit(4 + 4 / 12, "feet"),
  15565. weight: math.unit(600, "lb"),
  15566. name: "Laying",
  15567. image: {
  15568. source: "./media/characters/sheila/laying.svg",
  15569. extra: 1333 / 1265,
  15570. bottom: 0.16
  15571. }
  15572. },
  15573. },
  15574. [
  15575. {
  15576. name: "Normal",
  15577. height: math.unit(4 + 4 / 12, "feet"),
  15578. default: true
  15579. },
  15580. ]
  15581. ))
  15582. characterMakers.push(() => makeCharacter(
  15583. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15584. {
  15585. front: {
  15586. height: math.unit(6, "feet"),
  15587. weight: math.unit(190, "lb"),
  15588. name: "Front",
  15589. image: {
  15590. source: "./media/characters/sax/front.svg",
  15591. extra: 1187 / 973,
  15592. bottom: 0.042
  15593. }
  15594. },
  15595. },
  15596. [
  15597. {
  15598. name: "Micro",
  15599. height: math.unit(4, "inches"),
  15600. default: true
  15601. },
  15602. ]
  15603. ))
  15604. characterMakers.push(() => makeCharacter(
  15605. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15606. {
  15607. front: {
  15608. height: math.unit(6, "feet"),
  15609. weight: math.unit(150, "lb"),
  15610. name: "Front",
  15611. image: {
  15612. source: "./media/characters/pandora/front.svg",
  15613. extra: 2720 / 2556,
  15614. bottom: 0.015
  15615. }
  15616. },
  15617. back: {
  15618. height: math.unit(6, "feet"),
  15619. weight: math.unit(150, "lb"),
  15620. name: "Back",
  15621. image: {
  15622. source: "./media/characters/pandora/back.svg",
  15623. extra: 2720 / 2556,
  15624. bottom: 0.01
  15625. }
  15626. },
  15627. beans: {
  15628. height: math.unit(6 / 8, "feet"),
  15629. name: "Beans",
  15630. image: {
  15631. source: "./media/characters/pandora/beans.svg"
  15632. }
  15633. },
  15634. skirt: {
  15635. height: math.unit(6, "feet"),
  15636. weight: math.unit(150, "lb"),
  15637. name: "Skirt",
  15638. image: {
  15639. source: "./media/characters/pandora/skirt.svg",
  15640. extra: 1622 / 1525,
  15641. bottom: 0.015
  15642. }
  15643. },
  15644. hoodie: {
  15645. height: math.unit(6, "feet"),
  15646. weight: math.unit(150, "lb"),
  15647. name: "Hoodie",
  15648. image: {
  15649. source: "./media/characters/pandora/hoodie.svg",
  15650. extra: 1622 / 1525,
  15651. bottom: 0.015
  15652. }
  15653. },
  15654. casual: {
  15655. height: math.unit(6, "feet"),
  15656. weight: math.unit(150, "lb"),
  15657. name: "Casual",
  15658. image: {
  15659. source: "./media/characters/pandora/casual.svg",
  15660. extra: 1622 / 1525,
  15661. bottom: 0.015
  15662. }
  15663. },
  15664. },
  15665. [
  15666. {
  15667. name: "Normal",
  15668. height: math.unit(6, "feet")
  15669. },
  15670. {
  15671. name: "Big Steppy",
  15672. height: math.unit(1, "km"),
  15673. default: true
  15674. },
  15675. ]
  15676. ))
  15677. characterMakers.push(() => makeCharacter(
  15678. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15679. {
  15680. side: {
  15681. height: math.unit(10, "feet"),
  15682. weight: math.unit(800, "kg"),
  15683. name: "Side",
  15684. image: {
  15685. source: "./media/characters/venio-darcony/side.svg",
  15686. extra: 1373 / 1003,
  15687. bottom: 0.037
  15688. }
  15689. },
  15690. front: {
  15691. height: math.unit(19, "feet"),
  15692. weight: math.unit(800, "kg"),
  15693. name: "Front",
  15694. image: {
  15695. source: "./media/characters/venio-darcony/front.svg"
  15696. }
  15697. },
  15698. back: {
  15699. height: math.unit(19, "feet"),
  15700. weight: math.unit(800, "kg"),
  15701. name: "Back",
  15702. image: {
  15703. source: "./media/characters/venio-darcony/back.svg"
  15704. }
  15705. },
  15706. sideNsfw: {
  15707. height: math.unit(10, "feet"),
  15708. weight: math.unit(800, "kg"),
  15709. name: "Side (NSFW)",
  15710. image: {
  15711. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15712. extra: 1373 / 1003,
  15713. bottom: 0.037
  15714. }
  15715. },
  15716. frontNsfw: {
  15717. height: math.unit(19, "feet"),
  15718. weight: math.unit(800, "kg"),
  15719. name: "Front (NSFW)",
  15720. image: {
  15721. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15722. }
  15723. },
  15724. backNsfw: {
  15725. height: math.unit(19, "feet"),
  15726. weight: math.unit(800, "kg"),
  15727. name: "Back (NSFW)",
  15728. image: {
  15729. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15730. }
  15731. },
  15732. sideArmored: {
  15733. height: math.unit(10, "feet"),
  15734. weight: math.unit(800, "kg"),
  15735. name: "Side (Armored)",
  15736. image: {
  15737. source: "./media/characters/venio-darcony/side-armored.svg",
  15738. extra: 1373 / 1003,
  15739. bottom: 0.037
  15740. }
  15741. },
  15742. frontArmored: {
  15743. height: math.unit(19, "feet"),
  15744. weight: math.unit(900, "kg"),
  15745. name: "Front (Armored)",
  15746. image: {
  15747. source: "./media/characters/venio-darcony/front-armored.svg"
  15748. }
  15749. },
  15750. backArmored: {
  15751. height: math.unit(19, "feet"),
  15752. weight: math.unit(900, "kg"),
  15753. name: "Back (Armored)",
  15754. image: {
  15755. source: "./media/characters/venio-darcony/back-armored.svg"
  15756. }
  15757. },
  15758. sword: {
  15759. height: math.unit(10, "feet"),
  15760. weight: math.unit(50, "lb"),
  15761. name: "Sword",
  15762. image: {
  15763. source: "./media/characters/venio-darcony/sword.svg"
  15764. }
  15765. },
  15766. },
  15767. [
  15768. {
  15769. name: "Normal",
  15770. height: math.unit(10, "feet")
  15771. },
  15772. {
  15773. name: "Macro",
  15774. height: math.unit(130, "feet"),
  15775. default: true
  15776. },
  15777. {
  15778. name: "Macro+",
  15779. height: math.unit(240, "feet")
  15780. },
  15781. ]
  15782. ))
  15783. characterMakers.push(() => makeCharacter(
  15784. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15785. {
  15786. front: {
  15787. height: math.unit(6, "feet"),
  15788. weight: math.unit(150, "lb"),
  15789. name: "Front",
  15790. image: {
  15791. source: "./media/characters/veski/front.svg",
  15792. extra: 1299 / 1225,
  15793. bottom: 0.04
  15794. }
  15795. },
  15796. back: {
  15797. height: math.unit(6, "feet"),
  15798. weight: math.unit(150, "lb"),
  15799. name: "Back",
  15800. image: {
  15801. source: "./media/characters/veski/back.svg",
  15802. extra: 1299 / 1225,
  15803. bottom: 0.008
  15804. }
  15805. },
  15806. maw: {
  15807. height: math.unit(1.5 * 1.21, "feet"),
  15808. name: "Maw",
  15809. image: {
  15810. source: "./media/characters/veski/maw.svg"
  15811. }
  15812. },
  15813. },
  15814. [
  15815. {
  15816. name: "Macro",
  15817. height: math.unit(2, "km"),
  15818. default: true
  15819. },
  15820. ]
  15821. ))
  15822. characterMakers.push(() => makeCharacter(
  15823. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15824. {
  15825. front: {
  15826. height: math.unit(5 + 7 / 12, "feet"),
  15827. name: "Front",
  15828. image: {
  15829. source: "./media/characters/isabelle/front.svg",
  15830. extra: 2130 / 1976,
  15831. bottom: 0.05
  15832. }
  15833. },
  15834. },
  15835. [
  15836. {
  15837. name: "Supermicro",
  15838. height: math.unit(10, "micrometers")
  15839. },
  15840. {
  15841. name: "Micro",
  15842. height: math.unit(1, "inch")
  15843. },
  15844. {
  15845. name: "Tiny",
  15846. height: math.unit(5, "inches")
  15847. },
  15848. {
  15849. name: "Standard",
  15850. height: math.unit(5 + 7 / 12, "inches")
  15851. },
  15852. {
  15853. name: "Macro",
  15854. height: math.unit(80, "meters"),
  15855. default: true
  15856. },
  15857. {
  15858. name: "Megamacro",
  15859. height: math.unit(250, "meters")
  15860. },
  15861. {
  15862. name: "Gigamacro",
  15863. height: math.unit(5, "km")
  15864. },
  15865. {
  15866. name: "Cosmic",
  15867. height: math.unit(2.5e6, "miles")
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15873. {
  15874. front: {
  15875. height: math.unit(6, "feet"),
  15876. weight: math.unit(150, "lb"),
  15877. name: "Front",
  15878. image: {
  15879. source: "./media/characters/hanzo/front.svg",
  15880. extra: 374 / 344,
  15881. bottom: 0.02
  15882. }
  15883. },
  15884. },
  15885. [
  15886. {
  15887. name: "Normal",
  15888. height: math.unit(8, "feet"),
  15889. default: true
  15890. },
  15891. ]
  15892. ))
  15893. characterMakers.push(() => makeCharacter(
  15894. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15895. {
  15896. front: {
  15897. height: math.unit(7, "feet"),
  15898. weight: math.unit(130, "lb"),
  15899. name: "Front",
  15900. image: {
  15901. source: "./media/characters/anna/front.svg",
  15902. extra: 169 / 145,
  15903. bottom: 0.06
  15904. }
  15905. },
  15906. full: {
  15907. height: math.unit(4.96, "feet"),
  15908. weight: math.unit(220, "lb"),
  15909. name: "Full",
  15910. image: {
  15911. source: "./media/characters/anna/full.svg",
  15912. extra: 138 / 114,
  15913. bottom: 0.15
  15914. }
  15915. },
  15916. tongue: {
  15917. height: math.unit(2.53, "feet"),
  15918. name: "Tongue",
  15919. image: {
  15920. source: "./media/characters/anna/tongue.svg"
  15921. }
  15922. },
  15923. },
  15924. [
  15925. {
  15926. name: "Normal",
  15927. height: math.unit(7, "feet"),
  15928. default: true
  15929. },
  15930. ]
  15931. ))
  15932. characterMakers.push(() => makeCharacter(
  15933. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15934. {
  15935. front: {
  15936. height: math.unit(7, "feet"),
  15937. weight: math.unit(150, "lb"),
  15938. name: "Front",
  15939. image: {
  15940. source: "./media/characters/ian-corvid/front.svg",
  15941. extra: 150 / 142,
  15942. bottom: 0.02
  15943. }
  15944. },
  15945. back: {
  15946. height: math.unit(7, "feet"),
  15947. weight: math.unit(150, "lb"),
  15948. name: "Back",
  15949. image: {
  15950. source: "./media/characters/ian-corvid/back.svg",
  15951. extra: 150 / 143,
  15952. bottom: 0.01
  15953. }
  15954. },
  15955. stomping: {
  15956. height: math.unit(7, "feet"),
  15957. weight: math.unit(150, "lb"),
  15958. name: "Stomping",
  15959. image: {
  15960. source: "./media/characters/ian-corvid/stomping.svg",
  15961. extra: 76 / 72
  15962. }
  15963. },
  15964. sitting: {
  15965. height: math.unit(7 / 1.8, "feet"),
  15966. weight: math.unit(150, "lb"),
  15967. name: "Sitting",
  15968. image: {
  15969. source: "./media/characters/ian-corvid/sitting.svg",
  15970. extra: 1400 / 1269,
  15971. bottom: 0.15
  15972. }
  15973. },
  15974. },
  15975. [
  15976. {
  15977. name: "Tiny Microw",
  15978. height: math.unit(1, "inch")
  15979. },
  15980. {
  15981. name: "Microw",
  15982. height: math.unit(6, "inches")
  15983. },
  15984. {
  15985. name: "Crow",
  15986. height: math.unit(7 + 1 / 12, "feet"),
  15987. default: true
  15988. },
  15989. {
  15990. name: "Macrow",
  15991. height: math.unit(176, "feet")
  15992. },
  15993. ]
  15994. ))
  15995. characterMakers.push(() => makeCharacter(
  15996. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15997. {
  15998. front: {
  15999. height: math.unit(5 + 7 / 12, "feet"),
  16000. weight: math.unit(147, "lb"),
  16001. name: "Front",
  16002. image: {
  16003. source: "./media/characters/natalie-kellon/front.svg",
  16004. extra: 1214 / 1141,
  16005. bottom: 0.02
  16006. }
  16007. },
  16008. },
  16009. [
  16010. {
  16011. name: "Micro",
  16012. height: math.unit(1 / 16, "inch")
  16013. },
  16014. {
  16015. name: "Tiny",
  16016. height: math.unit(4, "inches")
  16017. },
  16018. {
  16019. name: "Normal",
  16020. height: math.unit(5 + 7 / 12, "feet"),
  16021. default: true
  16022. },
  16023. {
  16024. name: "Amazon",
  16025. height: math.unit(12, "feet")
  16026. },
  16027. {
  16028. name: "Giantess",
  16029. height: math.unit(160, "meters")
  16030. },
  16031. {
  16032. name: "Titaness",
  16033. height: math.unit(800, "meters")
  16034. },
  16035. ]
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16039. {
  16040. front: {
  16041. height: math.unit(6, "feet"),
  16042. weight: math.unit(150, "lb"),
  16043. name: "Front",
  16044. image: {
  16045. source: "./media/characters/alluria/front.svg",
  16046. extra: 806 / 738,
  16047. bottom: 0.01
  16048. }
  16049. },
  16050. side: {
  16051. height: math.unit(6, "feet"),
  16052. weight: math.unit(150, "lb"),
  16053. name: "Side",
  16054. image: {
  16055. source: "./media/characters/alluria/side.svg",
  16056. extra: 800 / 750,
  16057. }
  16058. },
  16059. back: {
  16060. height: math.unit(6, "feet"),
  16061. weight: math.unit(150, "lb"),
  16062. name: "Back",
  16063. image: {
  16064. source: "./media/characters/alluria/back.svg",
  16065. extra: 806 / 738,
  16066. }
  16067. },
  16068. frontMaid: {
  16069. height: math.unit(6, "feet"),
  16070. weight: math.unit(150, "lb"),
  16071. name: "Front (Maid)",
  16072. image: {
  16073. source: "./media/characters/alluria/front-maid.svg",
  16074. extra: 806 / 738,
  16075. bottom: 0.01
  16076. }
  16077. },
  16078. sideMaid: {
  16079. height: math.unit(6, "feet"),
  16080. weight: math.unit(150, "lb"),
  16081. name: "Side (Maid)",
  16082. image: {
  16083. source: "./media/characters/alluria/side-maid.svg",
  16084. extra: 800 / 750,
  16085. bottom: 0.005
  16086. }
  16087. },
  16088. backMaid: {
  16089. height: math.unit(6, "feet"),
  16090. weight: math.unit(150, "lb"),
  16091. name: "Back (Maid)",
  16092. image: {
  16093. source: "./media/characters/alluria/back-maid.svg",
  16094. extra: 806 / 738,
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Micro",
  16101. height: math.unit(6, "inches"),
  16102. default: true
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(6, "feet"),
  16111. weight: math.unit(150, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/kyle/front.svg",
  16115. extra: 1069 / 962,
  16116. bottom: 77.228 / 1727.45
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Macro",
  16123. height: math.unit(150, "feet"),
  16124. default: true
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(6, "feet"),
  16133. weight: math.unit(300, "lb"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/duncan/front.svg",
  16137. extra: 1650 / 1482,
  16138. bottom: 0.05
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Macro",
  16145. height: math.unit(100, "feet"),
  16146. default: true
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(5 + 4 / 12, "feet"),
  16155. weight: math.unit(220, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/memory/front.svg",
  16159. extra: 3641 / 3545,
  16160. bottom: 0.03
  16161. }
  16162. },
  16163. back: {
  16164. height: math.unit(5 + 4 / 12, "feet"),
  16165. weight: math.unit(220, "lb"),
  16166. name: "Back",
  16167. image: {
  16168. source: "./media/characters/memory/back.svg",
  16169. extra: 3641 / 3545,
  16170. bottom: 0.025
  16171. }
  16172. },
  16173. frontSkirt: {
  16174. height: math.unit(5 + 4 / 12, "feet"),
  16175. weight: math.unit(220, "lb"),
  16176. name: "Front (Skirt)",
  16177. image: {
  16178. source: "./media/characters/memory/front-skirt.svg",
  16179. extra: 3641 / 3545,
  16180. bottom: 0.03
  16181. }
  16182. },
  16183. frontDress: {
  16184. height: math.unit(5 + 4 / 12, "feet"),
  16185. weight: math.unit(220, "lb"),
  16186. name: "Front (Dress)",
  16187. image: {
  16188. source: "./media/characters/memory/front-dress.svg",
  16189. extra: 3641 / 3545,
  16190. bottom: 0.03
  16191. }
  16192. },
  16193. },
  16194. [
  16195. {
  16196. name: "Micro",
  16197. height: math.unit(6, "inches"),
  16198. default: true
  16199. },
  16200. {
  16201. name: "Normal",
  16202. height: math.unit(5 + 4 / 12, "feet")
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(4 + 11 / 12, "feet"),
  16211. weight: math.unit(100, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/luno/front.svg",
  16215. extra: 1535 / 1487,
  16216. bottom: 0.03
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Micro",
  16223. height: math.unit(3, "inches")
  16224. },
  16225. {
  16226. name: "Normal",
  16227. height: math.unit(4 + 11 / 12, "feet"),
  16228. default: true
  16229. },
  16230. {
  16231. name: "Macro",
  16232. height: math.unit(300, "feet")
  16233. },
  16234. {
  16235. name: "Megamacro",
  16236. height: math.unit(700, "miles")
  16237. },
  16238. ]
  16239. ))
  16240. characterMakers.push(() => makeCharacter(
  16241. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16242. {
  16243. front: {
  16244. height: math.unit(6 + 2 / 12, "feet"),
  16245. weight: math.unit(170, "lb"),
  16246. name: "Front",
  16247. image: {
  16248. source: "./media/characters/jamesy/front.svg",
  16249. extra: 440 / 382,
  16250. bottom: 0.005
  16251. }
  16252. },
  16253. },
  16254. [
  16255. {
  16256. name: "Micro",
  16257. height: math.unit(3, "inches")
  16258. },
  16259. {
  16260. name: "Normal",
  16261. height: math.unit(6 + 2 / 12, "feet"),
  16262. default: true
  16263. },
  16264. {
  16265. name: "Macro",
  16266. height: math.unit(300, "feet")
  16267. },
  16268. {
  16269. name: "Megamacro",
  16270. height: math.unit(700, "miles")
  16271. },
  16272. ]
  16273. ))
  16274. characterMakers.push(() => makeCharacter(
  16275. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16276. {
  16277. front: {
  16278. height: math.unit(6, "feet"),
  16279. weight: math.unit(160, "lb"),
  16280. name: "Front",
  16281. image: {
  16282. source: "./media/characters/mark/front.svg",
  16283. extra: 3300 / 3100,
  16284. bottom: 136.42 / 3440.47
  16285. }
  16286. },
  16287. },
  16288. [
  16289. {
  16290. name: "Macro",
  16291. height: math.unit(120, "meters")
  16292. },
  16293. {
  16294. name: "Bigger Macro",
  16295. height: math.unit(350, "meters")
  16296. },
  16297. {
  16298. name: "Megamacro",
  16299. height: math.unit(8, "km"),
  16300. default: true
  16301. },
  16302. {
  16303. name: "Continental",
  16304. height: math.unit(4550, "km")
  16305. },
  16306. {
  16307. name: "Planetary",
  16308. height: math.unit(65000, "km")
  16309. },
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16314. {
  16315. front: {
  16316. height: math.unit(6, "feet"),
  16317. weight: math.unit(400, "lb"),
  16318. name: "Front",
  16319. image: {
  16320. source: "./media/characters/mac/front.svg",
  16321. extra: 1048 / 987.7,
  16322. bottom: 60 / 1107.6,
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Macro",
  16329. height: math.unit(500, "feet"),
  16330. default: true
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16336. {
  16337. front: {
  16338. height: math.unit(5 + 2 / 12, "feet"),
  16339. weight: math.unit(190, "lb"),
  16340. name: "Front",
  16341. image: {
  16342. source: "./media/characters/bari/front.svg",
  16343. extra: 3156 / 2880,
  16344. bottom: 0.03
  16345. }
  16346. },
  16347. back: {
  16348. height: math.unit(5 + 2 / 12, "feet"),
  16349. weight: math.unit(190, "lb"),
  16350. name: "Back",
  16351. image: {
  16352. source: "./media/characters/bari/back.svg",
  16353. extra: 3260 / 2834,
  16354. bottom: 0.025
  16355. }
  16356. },
  16357. frontPlush: {
  16358. height: math.unit(5 + 2 / 12, "feet"),
  16359. weight: math.unit(190, "lb"),
  16360. name: "Front (Plush)",
  16361. image: {
  16362. source: "./media/characters/bari/front-plush.svg",
  16363. extra: 1112 / 1061,
  16364. bottom: 0.002
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Micro",
  16371. height: math.unit(3, "inches")
  16372. },
  16373. {
  16374. name: "Normal",
  16375. height: math.unit(5 + 2 / 12, "feet"),
  16376. default: true
  16377. },
  16378. {
  16379. name: "Macro",
  16380. height: math.unit(20, "feet")
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16386. {
  16387. front: {
  16388. height: math.unit(6 + 1 / 12, "feet"),
  16389. weight: math.unit(275, "lb"),
  16390. name: "Front",
  16391. image: {
  16392. source: "./media/characters/hunter-misha-raven/front.svg"
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Mortal",
  16399. height: math.unit(6 + 1 / 12, "feet")
  16400. },
  16401. {
  16402. name: "Divine",
  16403. height: math.unit(1.12134e34, "parsecs"),
  16404. default: true
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16410. {
  16411. front: {
  16412. height: math.unit(6 + 3 / 12, "feet"),
  16413. weight: math.unit(220, "lb"),
  16414. name: "Front",
  16415. image: {
  16416. source: "./media/characters/max-calore/front.svg",
  16417. extra: 1700 / 1648,
  16418. bottom: 0.01
  16419. }
  16420. },
  16421. back: {
  16422. height: math.unit(6 + 3 / 12, "feet"),
  16423. weight: math.unit(220, "lb"),
  16424. name: "Back",
  16425. image: {
  16426. source: "./media/characters/max-calore/back.svg",
  16427. extra: 1700 / 1648,
  16428. bottom: 0.01
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(6 + 3 / 12, "feet"),
  16436. default: true
  16437. },
  16438. ]
  16439. ))
  16440. characterMakers.push(() => makeCharacter(
  16441. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16442. {
  16443. side: {
  16444. height: math.unit(2 + 8 / 12, "feet"),
  16445. weight: math.unit(99, "lb"),
  16446. name: "Side",
  16447. image: {
  16448. source: "./media/characters/aspen/side.svg",
  16449. extra: 152 / 138,
  16450. bottom: 0.032
  16451. }
  16452. },
  16453. },
  16454. [
  16455. {
  16456. name: "Normal",
  16457. height: math.unit(2 + 8 / 12, "feet"),
  16458. default: true
  16459. },
  16460. ]
  16461. ))
  16462. characterMakers.push(() => makeCharacter(
  16463. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16464. {
  16465. side: {
  16466. height: math.unit(3 + 2 / 12, "feet"),
  16467. weight: math.unit(224, "lb"),
  16468. name: "Side",
  16469. image: {
  16470. source: "./media/characters/sheila-feral-wolf/side.svg",
  16471. extra: 179 / 166,
  16472. bottom: 0.03
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(3 + 2 / 12, "feet"),
  16480. default: true
  16481. },
  16482. ]
  16483. ))
  16484. characterMakers.push(() => makeCharacter(
  16485. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16486. {
  16487. side: {
  16488. height: math.unit(1 + 9 / 12, "feet"),
  16489. weight: math.unit(38, "lb"),
  16490. name: "Side",
  16491. image: {
  16492. source: "./media/characters/michelle/side.svg",
  16493. extra: 147 / 136.7,
  16494. bottom: 0.03
  16495. }
  16496. },
  16497. },
  16498. [
  16499. {
  16500. name: "Normal",
  16501. height: math.unit(1 + 9 / 12, "feet"),
  16502. default: true
  16503. },
  16504. ]
  16505. ))
  16506. characterMakers.push(() => makeCharacter(
  16507. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16508. {
  16509. front: {
  16510. height: math.unit(1 + 1 / 12, "feet"),
  16511. weight: math.unit(18, "lb"),
  16512. name: "Front",
  16513. image: {
  16514. source: "./media/characters/nino/front.svg"
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(1 + 1 / 12, "feet"),
  16522. default: true
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16528. {
  16529. front: {
  16530. height: math.unit(1, "feet"),
  16531. weight: math.unit(16, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/viola/front.svg"
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(1, "feet"),
  16542. default: true
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16548. {
  16549. front: {
  16550. height: math.unit(6 + 5 / 12, "feet"),
  16551. weight: math.unit(580, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/atlas/front.svg",
  16555. extra: 298.5 / 290,
  16556. bottom: 0.015
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(6 + 5 / 12, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16570. {
  16571. side: {
  16572. height: math.unit(1 + 10 / 12, "feet"),
  16573. weight: math.unit(25, "lb"),
  16574. name: "Side",
  16575. image: {
  16576. source: "./media/characters/davy/side.svg",
  16577. extra: 200 / 170,
  16578. bottom: 0.01
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(1 + 10 / 12, "feet"),
  16586. default: true
  16587. },
  16588. ]
  16589. ))
  16590. characterMakers.push(() => makeCharacter(
  16591. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16592. {
  16593. side: {
  16594. height: math.unit(4 + 8 / 12, "feet"),
  16595. weight: math.unit(166, "lb"),
  16596. name: "Side",
  16597. image: {
  16598. source: "./media/characters/fiona/side.svg",
  16599. extra: 232 / 220,
  16600. bottom: 0.03
  16601. }
  16602. },
  16603. },
  16604. [
  16605. {
  16606. name: "Normal",
  16607. height: math.unit(4 + 8 / 12, "feet"),
  16608. default: true
  16609. },
  16610. ]
  16611. ))
  16612. characterMakers.push(() => makeCharacter(
  16613. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16614. {
  16615. front: {
  16616. height: math.unit(2, "feet"),
  16617. weight: math.unit(62, "lb"),
  16618. name: "Front",
  16619. image: {
  16620. source: "./media/characters/lyla/front.svg",
  16621. bottom: 0.1
  16622. }
  16623. },
  16624. },
  16625. [
  16626. {
  16627. name: "Normal",
  16628. height: math.unit(2, "feet"),
  16629. default: true
  16630. },
  16631. ]
  16632. ))
  16633. characterMakers.push(() => makeCharacter(
  16634. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16635. {
  16636. side: {
  16637. height: math.unit(1.8, "feet"),
  16638. weight: math.unit(44, "lb"),
  16639. name: "Side",
  16640. image: {
  16641. source: "./media/characters/perseus/side.svg",
  16642. bottom: 0.21
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(1.8, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16656. {
  16657. side: {
  16658. height: math.unit(4 + 2 / 12, "feet"),
  16659. weight: math.unit(20, "lb"),
  16660. name: "Side",
  16661. image: {
  16662. source: "./media/characters/remus/side.svg"
  16663. }
  16664. },
  16665. },
  16666. [
  16667. {
  16668. name: "Normal",
  16669. height: math.unit(4 + 2 / 12, "feet"),
  16670. default: true
  16671. },
  16672. ]
  16673. ))
  16674. characterMakers.push(() => makeCharacter(
  16675. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16676. {
  16677. front: {
  16678. height: math.unit(4 + 11 / 12, "feet"),
  16679. weight: math.unit(114, "lb"),
  16680. name: "Front",
  16681. image: {
  16682. source: "./media/characters/raf/front.svg",
  16683. bottom: 20.5 / 1863
  16684. }
  16685. },
  16686. side: {
  16687. height: math.unit(4 + 11 / 12, "feet"),
  16688. weight: math.unit(114, "lb"),
  16689. name: "Side",
  16690. image: {
  16691. source: "./media/characters/raf/side.svg",
  16692. bottom: 22 / 1822
  16693. }
  16694. },
  16695. },
  16696. [
  16697. {
  16698. name: "Micro",
  16699. height: math.unit(2, "inches")
  16700. },
  16701. {
  16702. name: "Normal",
  16703. height: math.unit(4 + 11 / 12, "feet"),
  16704. default: true
  16705. },
  16706. {
  16707. name: "Macro",
  16708. height: math.unit(70, "feet")
  16709. },
  16710. ]
  16711. ))
  16712. characterMakers.push(() => makeCharacter(
  16713. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16714. {
  16715. front: {
  16716. height: math.unit(1.5, "meters"),
  16717. weight: math.unit(68, "kg"),
  16718. name: "Front",
  16719. image: {
  16720. source: "./media/characters/liam-einarr/front.svg",
  16721. extra: 2822 / 2666
  16722. }
  16723. },
  16724. back: {
  16725. height: math.unit(1.5, "meters"),
  16726. weight: math.unit(68, "kg"),
  16727. name: "Back",
  16728. image: {
  16729. source: "./media/characters/liam-einarr/back.svg",
  16730. extra: 2822 / 2666,
  16731. bottom: 0.015
  16732. }
  16733. },
  16734. },
  16735. [
  16736. {
  16737. name: "Normal",
  16738. height: math.unit(1.5, "meters"),
  16739. default: true
  16740. },
  16741. {
  16742. name: "Macro",
  16743. height: math.unit(150, "meters")
  16744. },
  16745. {
  16746. name: "Megamacro",
  16747. height: math.unit(35, "km")
  16748. },
  16749. ]
  16750. ))
  16751. characterMakers.push(() => makeCharacter(
  16752. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16753. {
  16754. front: {
  16755. height: math.unit(6, "feet"),
  16756. weight: math.unit(75, "kg"),
  16757. name: "Front",
  16758. image: {
  16759. source: "./media/characters/linda/front.svg",
  16760. extra: 930 / 874,
  16761. bottom: 0.004
  16762. }
  16763. },
  16764. },
  16765. [
  16766. {
  16767. name: "Normal",
  16768. height: math.unit(6, "feet"),
  16769. default: true
  16770. },
  16771. ]
  16772. ))
  16773. characterMakers.push(() => makeCharacter(
  16774. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16775. {
  16776. front: {
  16777. height: math.unit(6 + 8 / 12, "feet"),
  16778. weight: math.unit(220, "lb"),
  16779. name: "Front",
  16780. image: {
  16781. source: "./media/characters/caylex/front.svg",
  16782. extra: 821 / 772,
  16783. bottom: 0.07
  16784. }
  16785. },
  16786. back: {
  16787. height: math.unit(6 + 8 / 12, "feet"),
  16788. weight: math.unit(220, "lb"),
  16789. name: "Back",
  16790. image: {
  16791. source: "./media/characters/caylex/back.svg",
  16792. extra: 821 / 772,
  16793. bottom: 0.022
  16794. }
  16795. },
  16796. hand: {
  16797. height: math.unit(1.25, "feet"),
  16798. name: "Hand",
  16799. image: {
  16800. source: "./media/characters/caylex/hand.svg"
  16801. }
  16802. },
  16803. foot: {
  16804. height: math.unit(1.6, "feet"),
  16805. name: "Foot",
  16806. image: {
  16807. source: "./media/characters/caylex/foot.svg"
  16808. }
  16809. },
  16810. armored: {
  16811. height: math.unit(6 + 8 / 12, "feet"),
  16812. weight: math.unit(250, "lb"),
  16813. name: "Armored",
  16814. image: {
  16815. source: "./media/characters/caylex/armored.svg",
  16816. extra: 1420 / 1310,
  16817. bottom: 0.045
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(6 + 8 / 12, "feet"),
  16825. default: true
  16826. },
  16827. {
  16828. name: "Normal+",
  16829. height: math.unit(12, "feet")
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16835. {
  16836. front: {
  16837. height: math.unit(7 + 6 / 12, "feet"),
  16838. weight: math.unit(288, "lb"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/alana/front.svg",
  16842. extra: 679 / 653,
  16843. bottom: 22.5 / 701
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Normal",
  16850. height: math.unit(7 + 6 / 12, "feet")
  16851. },
  16852. {
  16853. name: "Large",
  16854. height: math.unit(50, "feet")
  16855. },
  16856. {
  16857. name: "Macro",
  16858. height: math.unit(100, "feet"),
  16859. default: true
  16860. },
  16861. {
  16862. name: "Macro+",
  16863. height: math.unit(200, "feet")
  16864. },
  16865. ]
  16866. ))
  16867. characterMakers.push(() => makeCharacter(
  16868. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16869. {
  16870. front: {
  16871. height: math.unit(6 + 1 / 12, "feet"),
  16872. weight: math.unit(210, "lb"),
  16873. name: "Front",
  16874. image: {
  16875. source: "./media/characters/hasani/front.svg",
  16876. extra: 244 / 232,
  16877. bottom: 0.01
  16878. }
  16879. },
  16880. back: {
  16881. height: math.unit(6 + 1 / 12, "feet"),
  16882. weight: math.unit(210, "lb"),
  16883. name: "Back",
  16884. image: {
  16885. source: "./media/characters/hasani/back.svg",
  16886. extra: 244 / 232,
  16887. bottom: 0.01
  16888. }
  16889. },
  16890. },
  16891. [
  16892. {
  16893. name: "Normal",
  16894. height: math.unit(6 + 1 / 12, "feet")
  16895. },
  16896. {
  16897. name: "Macro",
  16898. height: math.unit(175, "feet"),
  16899. default: true
  16900. },
  16901. ]
  16902. ))
  16903. characterMakers.push(() => makeCharacter(
  16904. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16905. {
  16906. front: {
  16907. height: math.unit(1.82, "meters"),
  16908. weight: math.unit(140, "lb"),
  16909. name: "Front",
  16910. image: {
  16911. source: "./media/characters/nita/front.svg",
  16912. extra: 2473 / 2363,
  16913. bottom: 0.01
  16914. }
  16915. },
  16916. },
  16917. [
  16918. {
  16919. name: "Normal",
  16920. height: math.unit(1.82, "m")
  16921. },
  16922. {
  16923. name: "Macro",
  16924. height: math.unit(300, "m")
  16925. },
  16926. {
  16927. name: "Mistake Canon",
  16928. height: math.unit(0.5, "miles"),
  16929. default: true
  16930. },
  16931. {
  16932. name: "Big Mistake",
  16933. height: math.unit(13, "miles")
  16934. },
  16935. {
  16936. name: "Playing God",
  16937. height: math.unit(2450, "miles")
  16938. },
  16939. ]
  16940. ))
  16941. characterMakers.push(() => makeCharacter(
  16942. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16943. {
  16944. front: {
  16945. height: math.unit(4, "feet"),
  16946. weight: math.unit(120, "lb"),
  16947. name: "Front",
  16948. image: {
  16949. source: "./media/characters/shiriko/front.svg",
  16950. extra: 195 / 188
  16951. }
  16952. },
  16953. },
  16954. [
  16955. {
  16956. name: "Normal",
  16957. height: math.unit(4, "feet"),
  16958. default: true
  16959. },
  16960. ]
  16961. ))
  16962. characterMakers.push(() => makeCharacter(
  16963. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16964. {
  16965. front: {
  16966. height: math.unit(6, "feet"),
  16967. name: "front",
  16968. image: {
  16969. source: "./media/characters/deja/front.svg",
  16970. extra: 926 / 840,
  16971. bottom: 0.07
  16972. }
  16973. },
  16974. },
  16975. [
  16976. {
  16977. name: "Planck Length",
  16978. height: math.unit(1.6e-35, "meters")
  16979. },
  16980. {
  16981. name: "Normal",
  16982. height: math.unit(30.48, "meters"),
  16983. default: true
  16984. },
  16985. {
  16986. name: "Universal",
  16987. height: math.unit(8.8e26, "meters")
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16993. {
  16994. side: {
  16995. height: math.unit(8, "feet"),
  16996. weight: math.unit(6300, "lb"),
  16997. name: "Side",
  16998. image: {
  16999. source: "./media/characters/anima/side.svg",
  17000. bottom: 0.035
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Normal",
  17007. height: math.unit(8, "feet"),
  17008. default: true
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17014. {
  17015. front: {
  17016. height: math.unit(8, "feet"),
  17017. weight: math.unit(350, "lb"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/bianca/front.svg",
  17021. extra: 234 / 225,
  17022. bottom: 0.03
  17023. }
  17024. },
  17025. },
  17026. [
  17027. {
  17028. name: "Normal",
  17029. height: math.unit(8, "feet"),
  17030. default: true
  17031. },
  17032. ]
  17033. ))
  17034. characterMakers.push(() => makeCharacter(
  17035. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17036. {
  17037. front: {
  17038. height: math.unit(6, "feet"),
  17039. weight: math.unit(150, "lb"),
  17040. name: "Front",
  17041. image: {
  17042. source: "./media/characters/adinia/front.svg",
  17043. extra: 1845 / 1672,
  17044. bottom: 0.02
  17045. }
  17046. },
  17047. back: {
  17048. height: math.unit(6, "feet"),
  17049. weight: math.unit(150, "lb"),
  17050. name: "Back",
  17051. image: {
  17052. source: "./media/characters/adinia/back.svg",
  17053. extra: 1845 / 1672,
  17054. bottom: 0.002
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(11 + 5 / 12, "feet"),
  17062. default: true
  17063. },
  17064. ]
  17065. ))
  17066. characterMakers.push(() => makeCharacter(
  17067. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17068. {
  17069. front: {
  17070. height: math.unit(3, "meters"),
  17071. weight: math.unit(200, "kg"),
  17072. name: "Front",
  17073. image: {
  17074. source: "./media/characters/lykasa/front.svg",
  17075. extra: 1076 / 976,
  17076. bottom: 0.06
  17077. }
  17078. },
  17079. },
  17080. [
  17081. {
  17082. name: "Normal",
  17083. height: math.unit(3, "meters")
  17084. },
  17085. {
  17086. name: "Kaiju",
  17087. height: math.unit(120, "meters"),
  17088. default: true
  17089. },
  17090. {
  17091. name: "Mega Kaiju",
  17092. height: math.unit(240, "km")
  17093. },
  17094. {
  17095. name: "Giga Kaiju",
  17096. height: math.unit(400, "megameters")
  17097. },
  17098. {
  17099. name: "Tera Kaiju",
  17100. height: math.unit(800, "gigameters")
  17101. },
  17102. {
  17103. name: "Kaiju Dragon Goddess",
  17104. height: math.unit(26, "zettaparsecs")
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17110. {
  17111. side: {
  17112. height: math.unit(283 / 124 * 6, "feet"),
  17113. weight: math.unit(35000, "lb"),
  17114. name: "Side",
  17115. image: {
  17116. source: "./media/characters/malfaren/side.svg",
  17117. extra: 2500 / 1010,
  17118. bottom: 0.01
  17119. }
  17120. },
  17121. front: {
  17122. height: math.unit(22.36, "feet"),
  17123. weight: math.unit(35000, "lb"),
  17124. name: "Front",
  17125. image: {
  17126. source: "./media/characters/malfaren/front.svg",
  17127. extra: 1631 / 1476,
  17128. bottom: 0.01
  17129. }
  17130. },
  17131. maw: {
  17132. height: math.unit(6.9, "feet"),
  17133. name: "Maw",
  17134. image: {
  17135. source: "./media/characters/malfaren/maw.svg"
  17136. }
  17137. },
  17138. },
  17139. [
  17140. {
  17141. name: "Big",
  17142. height: math.unit(283 / 162 * 6, "feet"),
  17143. },
  17144. {
  17145. name: "Bigger",
  17146. height: math.unit(283 / 124 * 6, "feet")
  17147. },
  17148. {
  17149. name: "Massive",
  17150. height: math.unit(283 / 92 * 6, "feet"),
  17151. default: true
  17152. },
  17153. {
  17154. name: "👀💦",
  17155. height: math.unit(283 / 73 * 6, "feet"),
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17161. {
  17162. front: {
  17163. height: math.unit(1.7, "m"),
  17164. weight: math.unit(70, "kg"),
  17165. name: "Front",
  17166. image: {
  17167. source: "./media/characters/kernel/front.svg",
  17168. extra: 222 / 210,
  17169. bottom: 0.007
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Nano",
  17176. height: math.unit(17, "micrometers")
  17177. },
  17178. {
  17179. name: "Micro",
  17180. height: math.unit(1.7, "mm")
  17181. },
  17182. {
  17183. name: "Small",
  17184. height: math.unit(1.7, "cm")
  17185. },
  17186. {
  17187. name: "Normal",
  17188. height: math.unit(1.7, "m"),
  17189. default: true
  17190. },
  17191. ]
  17192. ))
  17193. characterMakers.push(() => makeCharacter(
  17194. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17195. {
  17196. front: {
  17197. height: math.unit(1.75, "meters"),
  17198. weight: math.unit(65, "kg"),
  17199. name: "Front",
  17200. image: {
  17201. source: "./media/characters/jayne-folest/front.svg",
  17202. extra: 2115 / 2007,
  17203. bottom: 0.02
  17204. }
  17205. },
  17206. back: {
  17207. height: math.unit(1.75, "meters"),
  17208. weight: math.unit(65, "kg"),
  17209. name: "Back",
  17210. image: {
  17211. source: "./media/characters/jayne-folest/back.svg",
  17212. extra: 2115 / 2007,
  17213. bottom: 0.005
  17214. }
  17215. },
  17216. frontClothed: {
  17217. height: math.unit(1.75, "meters"),
  17218. weight: math.unit(65, "kg"),
  17219. name: "Front (Clothed)",
  17220. image: {
  17221. source: "./media/characters/jayne-folest/front-clothed.svg",
  17222. extra: 2115 / 2007,
  17223. bottom: 0.035
  17224. }
  17225. },
  17226. hand: {
  17227. height: math.unit(1 / 1.260, "feet"),
  17228. name: "Hand",
  17229. image: {
  17230. source: "./media/characters/jayne-folest/hand.svg"
  17231. }
  17232. },
  17233. foot: {
  17234. height: math.unit(1 / 0.918, "feet"),
  17235. name: "Foot",
  17236. image: {
  17237. source: "./media/characters/jayne-folest/foot.svg"
  17238. }
  17239. },
  17240. },
  17241. [
  17242. {
  17243. name: "Micro",
  17244. height: math.unit(4, "cm")
  17245. },
  17246. {
  17247. name: "Normal",
  17248. height: math.unit(1.75, "meters")
  17249. },
  17250. {
  17251. name: "Macro",
  17252. height: math.unit(47.5, "meters"),
  17253. default: true
  17254. },
  17255. ]
  17256. ))
  17257. characterMakers.push(() => makeCharacter(
  17258. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17259. {
  17260. front: {
  17261. height: math.unit(180, "cm"),
  17262. weight: math.unit(70, "kg"),
  17263. name: "Front",
  17264. image: {
  17265. source: "./media/characters/algier/front.svg",
  17266. extra: 596 / 572,
  17267. bottom: 0.04
  17268. }
  17269. },
  17270. back: {
  17271. height: math.unit(180, "cm"),
  17272. weight: math.unit(70, "kg"),
  17273. name: "Back",
  17274. image: {
  17275. source: "./media/characters/algier/back.svg",
  17276. extra: 596 / 572,
  17277. bottom: 0.025
  17278. }
  17279. },
  17280. frontdressed: {
  17281. height: math.unit(180, "cm"),
  17282. weight: math.unit(150, "kg"),
  17283. name: "Front-dressed",
  17284. image: {
  17285. source: "./media/characters/algier/front-dressed.svg",
  17286. extra: 596 / 572,
  17287. bottom: 0.038
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Micro",
  17294. height: math.unit(5, "cm")
  17295. },
  17296. {
  17297. name: "Normal",
  17298. height: math.unit(180, "cm"),
  17299. default: true
  17300. },
  17301. {
  17302. name: "Macro",
  17303. height: math.unit(64, "m")
  17304. },
  17305. ]
  17306. ))
  17307. characterMakers.push(() => makeCharacter(
  17308. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17309. {
  17310. upright: {
  17311. height: math.unit(7, "feet"),
  17312. weight: math.unit(300, "lb"),
  17313. name: "Upright",
  17314. image: {
  17315. source: "./media/characters/pretzel/upright.svg",
  17316. extra: 534 / 522,
  17317. bottom: 0.065
  17318. }
  17319. },
  17320. sprawling: {
  17321. height: math.unit(3.75, "feet"),
  17322. weight: math.unit(300, "lb"),
  17323. name: "Sprawling",
  17324. image: {
  17325. source: "./media/characters/pretzel/sprawling.svg",
  17326. extra: 314 / 281,
  17327. bottom: 0.1
  17328. }
  17329. },
  17330. tongue: {
  17331. height: math.unit(2, "feet"),
  17332. name: "Tongue",
  17333. image: {
  17334. source: "./media/characters/pretzel/tongue.svg"
  17335. }
  17336. },
  17337. },
  17338. [
  17339. {
  17340. name: "Normal",
  17341. height: math.unit(7, "feet"),
  17342. default: true
  17343. },
  17344. {
  17345. name: "Oversized",
  17346. height: math.unit(15, "feet")
  17347. },
  17348. {
  17349. name: "Huge",
  17350. height: math.unit(30, "feet")
  17351. },
  17352. {
  17353. name: "Macro",
  17354. height: math.unit(250, "feet")
  17355. },
  17356. ]
  17357. ))
  17358. characterMakers.push(() => makeCharacter(
  17359. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17360. {
  17361. sideFront: {
  17362. height: math.unit(5 + 2 / 12, "feet"),
  17363. weight: math.unit(120, "lb"),
  17364. name: "Front Side",
  17365. image: {
  17366. source: "./media/characters/roxi/side-front.svg",
  17367. extra: 2924 / 2717,
  17368. bottom: 0.08
  17369. }
  17370. },
  17371. sideBack: {
  17372. height: math.unit(5 + 2 / 12, "feet"),
  17373. weight: math.unit(120, "lb"),
  17374. name: "Back Side",
  17375. image: {
  17376. source: "./media/characters/roxi/side-back.svg",
  17377. extra: 2904 / 2693,
  17378. bottom: 0.06
  17379. }
  17380. },
  17381. front: {
  17382. height: math.unit(5 + 2 / 12, "feet"),
  17383. weight: math.unit(120, "lb"),
  17384. name: "Front",
  17385. image: {
  17386. source: "./media/characters/roxi/front.svg",
  17387. extra: 2028 / 1907,
  17388. bottom: 0.01
  17389. }
  17390. },
  17391. frontAlt: {
  17392. height: math.unit(5 + 2 / 12, "feet"),
  17393. weight: math.unit(120, "lb"),
  17394. name: "Front (Alt)",
  17395. image: {
  17396. source: "./media/characters/roxi/front-alt.svg",
  17397. extra: 1828 / 1798,
  17398. bottom: 0.01
  17399. }
  17400. },
  17401. sitting: {
  17402. height: math.unit(2.8, "feet"),
  17403. weight: math.unit(120, "lb"),
  17404. name: "Sitting",
  17405. image: {
  17406. source: "./media/characters/roxi/sitting.svg",
  17407. extra: 2660 / 2462,
  17408. bottom: 0.1
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Normal",
  17415. height: math.unit(5 + 2 / 12, "feet"),
  17416. default: true
  17417. },
  17418. ]
  17419. ))
  17420. characterMakers.push(() => makeCharacter(
  17421. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17422. {
  17423. side: {
  17424. height: math.unit(55, "feet"),
  17425. weight: math.unit(153, "tons"),
  17426. name: "Side",
  17427. image: {
  17428. source: "./media/characters/shadow/side.svg",
  17429. extra: 701 / 628,
  17430. bottom: 0.02
  17431. }
  17432. },
  17433. flying: {
  17434. height: math.unit(145, "feet"),
  17435. weight: math.unit(153, "tons"),
  17436. name: "Flying",
  17437. image: {
  17438. source: "./media/characters/shadow/flying.svg"
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(55, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(6, "feet"),
  17455. weight: math.unit(200, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/marcie/front.svg",
  17459. extra: 960 / 876,
  17460. bottom: 58 / 1017.87
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Macro",
  17467. height: math.unit(1, "mile"),
  17468. default: true
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17474. {
  17475. front: {
  17476. height: math.unit(7, "feet"),
  17477. weight: math.unit(200, "lb"),
  17478. name: "Front",
  17479. image: {
  17480. source: "./media/characters/kachina/front.svg",
  17481. extra: 1290.68 / 1119,
  17482. bottom: 36.5 / 1327.18
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Normal",
  17489. height: math.unit(7, "feet"),
  17490. default: true
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17496. {
  17497. looking: {
  17498. height: math.unit(2, "meters"),
  17499. weight: math.unit(300, "kg"),
  17500. name: "Looking",
  17501. image: {
  17502. source: "./media/characters/kash/looking.svg",
  17503. extra: 474 / 344,
  17504. bottom: 0.03
  17505. }
  17506. },
  17507. side: {
  17508. height: math.unit(2, "meters"),
  17509. weight: math.unit(300, "kg"),
  17510. name: "Side",
  17511. image: {
  17512. source: "./media/characters/kash/side.svg",
  17513. extra: 302 / 251,
  17514. bottom: 0.03
  17515. }
  17516. },
  17517. front: {
  17518. height: math.unit(2, "meters"),
  17519. weight: math.unit(300, "kg"),
  17520. name: "Front",
  17521. image: {
  17522. source: "./media/characters/kash/front.svg",
  17523. extra: 495 / 360,
  17524. bottom: 0.015
  17525. }
  17526. },
  17527. },
  17528. [
  17529. {
  17530. name: "Normal",
  17531. height: math.unit(2, "meters"),
  17532. default: true
  17533. },
  17534. {
  17535. name: "Big",
  17536. height: math.unit(3, "meters")
  17537. },
  17538. {
  17539. name: "Large",
  17540. height: math.unit(5, "meters")
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17546. {
  17547. feeding: {
  17548. height: math.unit(6.7, "feet"),
  17549. weight: math.unit(350, "lb"),
  17550. name: "Feeding",
  17551. image: {
  17552. source: "./media/characters/lalim/feeding.svg",
  17553. }
  17554. },
  17555. },
  17556. [
  17557. {
  17558. name: "Normal",
  17559. height: math.unit(6.7, "feet"),
  17560. default: true
  17561. },
  17562. ]
  17563. ))
  17564. characterMakers.push(() => makeCharacter(
  17565. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17566. {
  17567. front: {
  17568. height: math.unit(9.5, "feet"),
  17569. weight: math.unit(600, "lb"),
  17570. name: "Front",
  17571. image: {
  17572. source: "./media/characters/de'vout/front.svg",
  17573. extra: 1443 / 1328,
  17574. bottom: 0.025
  17575. }
  17576. },
  17577. back: {
  17578. height: math.unit(9.5, "feet"),
  17579. weight: math.unit(600, "lb"),
  17580. name: "Back",
  17581. image: {
  17582. source: "./media/characters/de'vout/back.svg",
  17583. extra: 1443 / 1328
  17584. }
  17585. },
  17586. frontDressed: {
  17587. height: math.unit(9.5, "feet"),
  17588. weight: math.unit(600, "lb"),
  17589. name: "Front (Dressed",
  17590. image: {
  17591. source: "./media/characters/de'vout/front-dressed.svg",
  17592. extra: 1443 / 1328,
  17593. bottom: 0.025
  17594. }
  17595. },
  17596. backDressed: {
  17597. height: math.unit(9.5, "feet"),
  17598. weight: math.unit(600, "lb"),
  17599. name: "Back (Dressed",
  17600. image: {
  17601. source: "./media/characters/de'vout/back-dressed.svg",
  17602. extra: 1443 / 1328
  17603. }
  17604. },
  17605. },
  17606. [
  17607. {
  17608. name: "Normal",
  17609. height: math.unit(9.5, "feet"),
  17610. default: true
  17611. },
  17612. ]
  17613. ))
  17614. characterMakers.push(() => makeCharacter(
  17615. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17616. {
  17617. front: {
  17618. height: math.unit(8, "feet"),
  17619. weight: math.unit(225, "lb"),
  17620. name: "Front",
  17621. image: {
  17622. source: "./media/characters/talana/front.svg",
  17623. extra: 1410 / 1300,
  17624. bottom: 0.015
  17625. }
  17626. },
  17627. frontDressed: {
  17628. height: math.unit(8, "feet"),
  17629. weight: math.unit(225, "lb"),
  17630. name: "Front (Dressed",
  17631. image: {
  17632. source: "./media/characters/talana/front-dressed.svg",
  17633. extra: 1410 / 1300,
  17634. bottom: 0.015
  17635. }
  17636. },
  17637. },
  17638. [
  17639. {
  17640. name: "Normal",
  17641. height: math.unit(8, "feet"),
  17642. default: true
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17648. {
  17649. side: {
  17650. height: math.unit(7.2, "feet"),
  17651. weight: math.unit(150, "lb"),
  17652. name: "Side",
  17653. image: {
  17654. source: "./media/characters/xeauvok/side.svg",
  17655. extra: 1975 / 1523,
  17656. bottom: 0.07
  17657. }
  17658. },
  17659. },
  17660. [
  17661. {
  17662. name: "Normal",
  17663. height: math.unit(7.2, "feet"),
  17664. default: true
  17665. },
  17666. ]
  17667. ))
  17668. characterMakers.push(() => makeCharacter(
  17669. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17670. {
  17671. side: {
  17672. height: math.unit(10, "feet"),
  17673. weight: math.unit(900, "kg"),
  17674. name: "Side",
  17675. image: {
  17676. source: "./media/characters/zara/side.svg",
  17677. extra: 504 / 498
  17678. }
  17679. },
  17680. },
  17681. [
  17682. {
  17683. name: "Normal",
  17684. height: math.unit(10, "feet"),
  17685. default: true
  17686. },
  17687. ]
  17688. ))
  17689. characterMakers.push(() => makeCharacter(
  17690. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17691. {
  17692. side: {
  17693. height: math.unit(6, "feet"),
  17694. weight: math.unit(150, "lb"),
  17695. name: "Side",
  17696. image: {
  17697. source: "./media/characters/richard-dragon/side.svg",
  17698. extra: 845 / 340,
  17699. bottom: 0.017
  17700. }
  17701. },
  17702. maw: {
  17703. height: math.unit(2.97, "feet"),
  17704. name: "Maw",
  17705. image: {
  17706. source: "./media/characters/richard-dragon/maw.svg"
  17707. }
  17708. },
  17709. },
  17710. [
  17711. ]
  17712. ))
  17713. characterMakers.push(() => makeCharacter(
  17714. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17715. {
  17716. front: {
  17717. height: math.unit(4, "feet"),
  17718. weight: math.unit(100, "lb"),
  17719. name: "Front",
  17720. image: {
  17721. source: "./media/characters/richard-smeargle/front.svg",
  17722. extra: 2952 / 2820,
  17723. bottom: 0.028
  17724. }
  17725. },
  17726. },
  17727. [
  17728. {
  17729. name: "Normal",
  17730. height: math.unit(4, "feet"),
  17731. default: true
  17732. },
  17733. {
  17734. name: "Dynamax",
  17735. height: math.unit(20, "meters")
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17741. {
  17742. front: {
  17743. height: math.unit(6, "feet"),
  17744. weight: math.unit(110, "lb"),
  17745. name: "Front",
  17746. image: {
  17747. source: "./media/characters/klay/front.svg",
  17748. extra: 962 / 883,
  17749. bottom: 0.04
  17750. }
  17751. },
  17752. back: {
  17753. height: math.unit(6, "feet"),
  17754. weight: math.unit(110, "lb"),
  17755. name: "Back",
  17756. image: {
  17757. source: "./media/characters/klay/back.svg",
  17758. extra: 962 / 883
  17759. }
  17760. },
  17761. beans: {
  17762. height: math.unit(1.15, "feet"),
  17763. name: "Beans",
  17764. image: {
  17765. source: "./media/characters/klay/beans.svg"
  17766. }
  17767. },
  17768. },
  17769. [
  17770. {
  17771. name: "Micro",
  17772. height: math.unit(6, "inches")
  17773. },
  17774. {
  17775. name: "Mini",
  17776. height: math.unit(3, "feet")
  17777. },
  17778. {
  17779. name: "Normal",
  17780. height: math.unit(6, "feet"),
  17781. default: true
  17782. },
  17783. {
  17784. name: "Big",
  17785. height: math.unit(25, "feet")
  17786. },
  17787. {
  17788. name: "Macro",
  17789. height: math.unit(100, "feet")
  17790. },
  17791. {
  17792. name: "Megamacro",
  17793. height: math.unit(400, "feet")
  17794. },
  17795. ]
  17796. ))
  17797. characterMakers.push(() => makeCharacter(
  17798. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17799. {
  17800. front: {
  17801. height: math.unit(6, "feet"),
  17802. weight: math.unit(160, "lb"),
  17803. name: "Front",
  17804. image: {
  17805. source: "./media/characters/marcus/front.svg",
  17806. extra: 734 / 676,
  17807. bottom: 0.03
  17808. }
  17809. },
  17810. },
  17811. [
  17812. {
  17813. name: "Little",
  17814. height: math.unit(6, "feet")
  17815. },
  17816. {
  17817. name: "Normal",
  17818. height: math.unit(110, "feet"),
  17819. default: true
  17820. },
  17821. {
  17822. name: "Macro",
  17823. height: math.unit(250, "feet")
  17824. },
  17825. {
  17826. name: "Megamacro",
  17827. height: math.unit(1000, "feet")
  17828. },
  17829. ]
  17830. ))
  17831. characterMakers.push(() => makeCharacter(
  17832. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17833. {
  17834. front: {
  17835. height: math.unit(7, "feet"),
  17836. weight: math.unit(275, "lb"),
  17837. name: "Front",
  17838. image: {
  17839. source: "./media/characters/claude-delroute/front.svg",
  17840. extra: 230 / 214,
  17841. bottom: 0.007
  17842. }
  17843. },
  17844. side: {
  17845. height: math.unit(7, "feet"),
  17846. weight: math.unit(275, "lb"),
  17847. name: "Side",
  17848. image: {
  17849. source: "./media/characters/claude-delroute/side.svg",
  17850. extra: 222 / 214,
  17851. bottom: 0.01
  17852. }
  17853. },
  17854. back: {
  17855. height: math.unit(7, "feet"),
  17856. weight: math.unit(275, "lb"),
  17857. name: "Back",
  17858. image: {
  17859. source: "./media/characters/claude-delroute/back.svg",
  17860. extra: 230 / 214,
  17861. bottom: 0.015
  17862. }
  17863. },
  17864. maw: {
  17865. height: math.unit(0.6407, "meters"),
  17866. name: "Maw",
  17867. image: {
  17868. source: "./media/characters/claude-delroute/maw.svg"
  17869. }
  17870. },
  17871. },
  17872. [
  17873. {
  17874. name: "Normal",
  17875. height: math.unit(7, "feet"),
  17876. default: true
  17877. },
  17878. {
  17879. name: "Lorge",
  17880. height: math.unit(20, "feet")
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(8 + 4 / 12, "feet"),
  17889. weight: math.unit(600, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/dragonien/front.svg",
  17893. extra: 100 / 94,
  17894. bottom: 3.3 / 103.3445
  17895. }
  17896. },
  17897. back: {
  17898. height: math.unit(8 + 4 / 12, "feet"),
  17899. weight: math.unit(600, "lb"),
  17900. name: "Back",
  17901. image: {
  17902. source: "./media/characters/dragonien/back.svg",
  17903. extra: 776 / 746,
  17904. bottom: 6.4 / 782.0616
  17905. }
  17906. },
  17907. foot: {
  17908. height: math.unit(1.54, "feet"),
  17909. name: "Foot",
  17910. image: {
  17911. source: "./media/characters/dragonien/foot.svg",
  17912. }
  17913. },
  17914. },
  17915. [
  17916. {
  17917. name: "Normal",
  17918. height: math.unit(8 + 4 / 12, "feet"),
  17919. default: true
  17920. },
  17921. {
  17922. name: "Macro",
  17923. height: math.unit(200, "feet")
  17924. },
  17925. {
  17926. name: "Megamacro",
  17927. height: math.unit(1, "mile")
  17928. },
  17929. {
  17930. name: "Gigamacro",
  17931. height: math.unit(1000, "miles")
  17932. },
  17933. ]
  17934. ))
  17935. characterMakers.push(() => makeCharacter(
  17936. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17937. {
  17938. front: {
  17939. height: math.unit(5 + 2 / 12, "feet"),
  17940. weight: math.unit(110, "lb"),
  17941. name: "Front",
  17942. image: {
  17943. source: "./media/characters/desta/front.svg",
  17944. extra: 767 / 726,
  17945. bottom: 11.7 / 779
  17946. }
  17947. },
  17948. back: {
  17949. height: math.unit(5 + 2 / 12, "feet"),
  17950. weight: math.unit(110, "lb"),
  17951. name: "Back",
  17952. image: {
  17953. source: "./media/characters/desta/back.svg",
  17954. extra: 777 / 728,
  17955. bottom: 6 / 784
  17956. }
  17957. },
  17958. frontAlt: {
  17959. height: math.unit(5 + 2 / 12, "feet"),
  17960. weight: math.unit(110, "lb"),
  17961. name: "Front",
  17962. image: {
  17963. source: "./media/characters/desta/front-alt.svg",
  17964. extra: 1482 / 1417
  17965. }
  17966. },
  17967. side: {
  17968. height: math.unit(5 + 2 / 12, "feet"),
  17969. weight: math.unit(110, "lb"),
  17970. name: "Side",
  17971. image: {
  17972. source: "./media/characters/desta/side.svg",
  17973. extra: 2579 / 2491,
  17974. bottom: 0.053
  17975. }
  17976. },
  17977. },
  17978. [
  17979. {
  17980. name: "Micro",
  17981. height: math.unit(6, "inches")
  17982. },
  17983. {
  17984. name: "Normal",
  17985. height: math.unit(5 + 2 / 12, "feet"),
  17986. default: true
  17987. },
  17988. {
  17989. name: "Macro",
  17990. height: math.unit(62, "feet")
  17991. },
  17992. {
  17993. name: "Megamacro",
  17994. height: math.unit(1800, "feet")
  17995. },
  17996. ]
  17997. ))
  17998. characterMakers.push(() => makeCharacter(
  17999. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18000. {
  18001. front: {
  18002. height: math.unit(10, "feet"),
  18003. weight: math.unit(700, "lb"),
  18004. name: "Front",
  18005. image: {
  18006. source: "./media/characters/storm-alystar/front.svg",
  18007. extra: 2112 / 1898,
  18008. bottom: 0.034
  18009. }
  18010. },
  18011. },
  18012. [
  18013. {
  18014. name: "Micro",
  18015. height: math.unit(3.5, "inches")
  18016. },
  18017. {
  18018. name: "Normal",
  18019. height: math.unit(10, "feet"),
  18020. default: true
  18021. },
  18022. {
  18023. name: "Macro",
  18024. height: math.unit(400, "feet")
  18025. },
  18026. {
  18027. name: "Deific",
  18028. height: math.unit(60, "miles")
  18029. },
  18030. ]
  18031. ))
  18032. characterMakers.push(() => makeCharacter(
  18033. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18034. {
  18035. front: {
  18036. height: math.unit(2.35, "meters"),
  18037. weight: math.unit(119, "kg"),
  18038. name: "Front",
  18039. image: {
  18040. source: "./media/characters/ilia/front.svg",
  18041. extra: 1285 / 1255,
  18042. bottom: 0.06
  18043. }
  18044. },
  18045. },
  18046. [
  18047. {
  18048. name: "Normal",
  18049. height: math.unit(2.35, "meters")
  18050. },
  18051. {
  18052. name: "Macro",
  18053. height: math.unit(140, "meters"),
  18054. default: true
  18055. },
  18056. {
  18057. name: "Megamacro",
  18058. height: math.unit(100, "miles")
  18059. },
  18060. ]
  18061. ))
  18062. characterMakers.push(() => makeCharacter(
  18063. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18064. {
  18065. front: {
  18066. height: math.unit(6 + 5 / 12, "feet"),
  18067. weight: math.unit(190, "lb"),
  18068. name: "Front",
  18069. image: {
  18070. source: "./media/characters/kingdead/front.svg",
  18071. extra: 1228 / 1177
  18072. }
  18073. },
  18074. },
  18075. [
  18076. {
  18077. name: "Micro",
  18078. height: math.unit(7, "inches")
  18079. },
  18080. {
  18081. name: "Normal",
  18082. height: math.unit(6 + 5 / 12, "feet")
  18083. },
  18084. {
  18085. name: "Macro",
  18086. height: math.unit(150, "feet"),
  18087. default: true
  18088. },
  18089. {
  18090. name: "Megamacro",
  18091. height: math.unit(200, "miles")
  18092. },
  18093. ]
  18094. ))
  18095. characterMakers.push(() => makeCharacter(
  18096. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18097. {
  18098. front: {
  18099. height: math.unit(8, "feet"),
  18100. weight: math.unit(600, "lb"),
  18101. name: "Front",
  18102. image: {
  18103. source: "./media/characters/kyrehx/front.svg",
  18104. extra: 1195 / 1095,
  18105. bottom: 0.034
  18106. }
  18107. },
  18108. },
  18109. [
  18110. {
  18111. name: "Micro",
  18112. height: math.unit(2, "inches")
  18113. },
  18114. {
  18115. name: "Normal",
  18116. height: math.unit(8, "feet"),
  18117. default: true
  18118. },
  18119. {
  18120. name: "Macro",
  18121. height: math.unit(255, "feet")
  18122. },
  18123. ]
  18124. ))
  18125. characterMakers.push(() => makeCharacter(
  18126. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18127. {
  18128. front: {
  18129. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18130. weight: math.unit(184, "lb"),
  18131. name: "Front",
  18132. image: {
  18133. source: "./media/characters/xang/front.svg",
  18134. extra: 845 / 755
  18135. }
  18136. },
  18137. },
  18138. [
  18139. {
  18140. name: "Normal",
  18141. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18142. default: true
  18143. },
  18144. {
  18145. name: "Macro",
  18146. height: math.unit(0.935 * 146, "feet")
  18147. },
  18148. {
  18149. name: "Megamacro",
  18150. height: math.unit(0.935 * 3, "miles")
  18151. },
  18152. ]
  18153. ))
  18154. characterMakers.push(() => makeCharacter(
  18155. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18156. {
  18157. frontDressed: {
  18158. height: math.unit(5 + 7 / 12, "feet"),
  18159. weight: math.unit(140, "lb"),
  18160. name: "Front (Dressed)",
  18161. image: {
  18162. source: "./media/characters/doc-weardno/front-dressed.svg",
  18163. extra: 263 / 234
  18164. }
  18165. },
  18166. backDressed: {
  18167. height: math.unit(5 + 7 / 12, "feet"),
  18168. weight: math.unit(140, "lb"),
  18169. name: "Back (Dressed)",
  18170. image: {
  18171. source: "./media/characters/doc-weardno/back-dressed.svg",
  18172. extra: 266 / 238
  18173. }
  18174. },
  18175. front: {
  18176. height: math.unit(5 + 7 / 12, "feet"),
  18177. weight: math.unit(140, "lb"),
  18178. name: "Front",
  18179. image: {
  18180. source: "./media/characters/doc-weardno/front.svg",
  18181. extra: 254 / 233
  18182. }
  18183. },
  18184. },
  18185. [
  18186. {
  18187. name: "Micro",
  18188. height: math.unit(3, "inches")
  18189. },
  18190. {
  18191. name: "Normal",
  18192. height: math.unit(5 + 7 / 12, "feet"),
  18193. default: true
  18194. },
  18195. {
  18196. name: "Macro",
  18197. height: math.unit(25, "feet")
  18198. },
  18199. {
  18200. name: "Megamacro",
  18201. height: math.unit(2, "miles")
  18202. },
  18203. ]
  18204. ))
  18205. characterMakers.push(() => makeCharacter(
  18206. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18207. {
  18208. front: {
  18209. height: math.unit(6 + 2 / 12, "feet"),
  18210. weight: math.unit(153, "lb"),
  18211. name: "Front",
  18212. image: {
  18213. source: "./media/characters/seth-whilst/front.svg",
  18214. bottom: 0.07
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Micro",
  18221. height: math.unit(5, "inches")
  18222. },
  18223. {
  18224. name: "Normal",
  18225. height: math.unit(6 + 2 / 12, "feet"),
  18226. default: true
  18227. },
  18228. ]
  18229. ))
  18230. characterMakers.push(() => makeCharacter(
  18231. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18232. {
  18233. front: {
  18234. height: math.unit(3, "inches"),
  18235. weight: math.unit(8, "grams"),
  18236. name: "Front",
  18237. image: {
  18238. source: "./media/characters/pocket-jabari/front.svg",
  18239. extra: 1024 / 974,
  18240. bottom: 0.039
  18241. }
  18242. },
  18243. },
  18244. [
  18245. {
  18246. name: "Minimicro",
  18247. height: math.unit(8, "mm")
  18248. },
  18249. {
  18250. name: "Micro",
  18251. height: math.unit(3, "inches"),
  18252. default: true
  18253. },
  18254. {
  18255. name: "Normal",
  18256. height: math.unit(3, "feet")
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18262. {
  18263. front: {
  18264. height: math.unit(15, "feet"),
  18265. weight: math.unit(3280, "lb"),
  18266. name: "Front",
  18267. image: {
  18268. source: "./media/characters/sapphy/front.svg",
  18269. extra: 671 / 577,
  18270. bottom: 0.085
  18271. }
  18272. },
  18273. back: {
  18274. height: math.unit(15, "feet"),
  18275. weight: math.unit(3280, "lb"),
  18276. name: "Back",
  18277. image: {
  18278. source: "./media/characters/sapphy/back.svg",
  18279. extra: 631 / 607,
  18280. bottom: 0.045
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Normal",
  18287. height: math.unit(15, "feet")
  18288. },
  18289. {
  18290. name: "Casual Macro",
  18291. height: math.unit(120, "feet")
  18292. },
  18293. {
  18294. name: "Macro",
  18295. height: math.unit(2150, "feet"),
  18296. default: true
  18297. },
  18298. {
  18299. name: "Megamacro",
  18300. height: math.unit(8, "miles")
  18301. },
  18302. {
  18303. name: "Galaxy Mom",
  18304. height: math.unit(6, "megalightyears")
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18310. {
  18311. front: {
  18312. height: math.unit(6, "feet"),
  18313. weight: math.unit(170, "lb"),
  18314. name: "Front",
  18315. image: {
  18316. source: "./media/characters/kiro/front.svg",
  18317. extra: 1064 / 1012,
  18318. bottom: 0.052
  18319. }
  18320. },
  18321. },
  18322. [
  18323. {
  18324. name: "Micro",
  18325. height: math.unit(6, "inches")
  18326. },
  18327. {
  18328. name: "Normal",
  18329. height: math.unit(6, "feet"),
  18330. default: true
  18331. },
  18332. {
  18333. name: "Macro",
  18334. height: math.unit(72, "feet")
  18335. },
  18336. ]
  18337. ))
  18338. characterMakers.push(() => makeCharacter(
  18339. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18340. {
  18341. front: {
  18342. height: math.unit(5 + 9 / 12, "feet"),
  18343. weight: math.unit(175, "lb"),
  18344. name: "Front",
  18345. image: {
  18346. source: "./media/characters/irishfox/front.svg",
  18347. extra: 1912 / 1680,
  18348. bottom: 0.02
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Nano",
  18355. height: math.unit(1, "mm")
  18356. },
  18357. {
  18358. name: "Micro",
  18359. height: math.unit(2, "inches")
  18360. },
  18361. {
  18362. name: "Normal",
  18363. height: math.unit(5 + 9 / 12, "feet"),
  18364. default: true
  18365. },
  18366. {
  18367. name: "Macro",
  18368. height: math.unit(45, "feet")
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18374. {
  18375. front: {
  18376. height: math.unit(6 + 1 / 12, "feet"),
  18377. weight: math.unit(75, "lb"),
  18378. name: "Front",
  18379. image: {
  18380. source: "./media/characters/aronai-sieyes/front.svg",
  18381. extra: 1556 / 1480,
  18382. bottom: 0.015
  18383. }
  18384. },
  18385. side: {
  18386. height: math.unit(6 + 1 / 12, "feet"),
  18387. weight: math.unit(75, "lb"),
  18388. name: "Side",
  18389. image: {
  18390. source: "./media/characters/aronai-sieyes/side.svg",
  18391. extra: 1433 / 1390,
  18392. bottom: 0.0393
  18393. }
  18394. },
  18395. back: {
  18396. height: math.unit(6 + 1 / 12, "feet"),
  18397. weight: math.unit(75, "lb"),
  18398. name: "Back",
  18399. image: {
  18400. source: "./media/characters/aronai-sieyes/back.svg",
  18401. extra: 1544 / 1494,
  18402. bottom: 0.02
  18403. }
  18404. },
  18405. frontClothed: {
  18406. height: math.unit(6 + 1 / 12, "feet"),
  18407. weight: math.unit(75, "lb"),
  18408. name: "Front (Clothed)",
  18409. image: {
  18410. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18411. extra: 1582 / 1527
  18412. }
  18413. },
  18414. feral: {
  18415. height: math.unit(18, "feet"),
  18416. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18417. name: "Feral",
  18418. image: {
  18419. source: "./media/characters/aronai-sieyes/feral.svg",
  18420. extra: 1530 / 1240,
  18421. bottom: 0.035
  18422. }
  18423. },
  18424. },
  18425. [
  18426. {
  18427. name: "Micro",
  18428. height: math.unit(2, "inches")
  18429. },
  18430. {
  18431. name: "Normal",
  18432. height: math.unit(6 + 1 / 12, "feet"),
  18433. default: true
  18434. }
  18435. ]
  18436. ))
  18437. characterMakers.push(() => makeCharacter(
  18438. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18439. {
  18440. front: {
  18441. height: math.unit(12, "feet"),
  18442. weight: math.unit(410, "kg"),
  18443. name: "Front",
  18444. image: {
  18445. source: "./media/characters/xuna/front.svg",
  18446. extra: 2184 / 1980
  18447. }
  18448. },
  18449. side: {
  18450. height: math.unit(12, "feet"),
  18451. weight: math.unit(410, "kg"),
  18452. name: "Side",
  18453. image: {
  18454. source: "./media/characters/xuna/side.svg",
  18455. extra: 2184 / 1980
  18456. }
  18457. },
  18458. back: {
  18459. height: math.unit(12, "feet"),
  18460. weight: math.unit(410, "kg"),
  18461. name: "Back",
  18462. image: {
  18463. source: "./media/characters/xuna/back.svg",
  18464. extra: 2184 / 1980
  18465. }
  18466. },
  18467. },
  18468. [
  18469. {
  18470. name: "Nano glow",
  18471. height: math.unit(10, "nm")
  18472. },
  18473. {
  18474. name: "Micro floof",
  18475. height: math.unit(0.3, "m")
  18476. },
  18477. {
  18478. name: "Huggable softy boi",
  18479. height: math.unit(3.6576, "m"),
  18480. default: true
  18481. },
  18482. {
  18483. name: "Admirable floof",
  18484. height: math.unit(80, "meters")
  18485. },
  18486. {
  18487. name: "Gentle macro",
  18488. height: math.unit(300, "meters")
  18489. },
  18490. {
  18491. name: "Very careful floof",
  18492. height: math.unit(3200, "meters")
  18493. },
  18494. {
  18495. name: "The mega floof",
  18496. height: math.unit(36000, "meters")
  18497. },
  18498. {
  18499. name: "Giga-fur-Wicker",
  18500. height: math.unit(4800000, "meters")
  18501. },
  18502. {
  18503. name: "Licky world",
  18504. height: math.unit(20000000, "meters")
  18505. },
  18506. {
  18507. name: "Floofy cyan sun",
  18508. height: math.unit(1500000000, "meters")
  18509. },
  18510. {
  18511. name: "Milky Wicker",
  18512. height: math.unit(1000000000000000000000, "meters")
  18513. },
  18514. {
  18515. name: "The observing Wicker",
  18516. height: math.unit(999999999999999999999999999, "meters")
  18517. },
  18518. ]
  18519. ))
  18520. characterMakers.push(() => makeCharacter(
  18521. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18522. {
  18523. front: {
  18524. height: math.unit(5 + 9 / 12, "feet"),
  18525. weight: math.unit(150, "lb"),
  18526. name: "Front",
  18527. image: {
  18528. source: "./media/characters/arokha-sieyes/front.svg",
  18529. extra: 1425 / 1284,
  18530. bottom: 0.05
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(5 + 9 / 12, "feet")
  18538. },
  18539. {
  18540. name: "Macro",
  18541. height: math.unit(30, "meters"),
  18542. default: true
  18543. },
  18544. ]
  18545. ))
  18546. characterMakers.push(() => makeCharacter(
  18547. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18548. {
  18549. front: {
  18550. height: math.unit(6, "feet"),
  18551. weight: math.unit(180, "lb"),
  18552. name: "Front",
  18553. image: {
  18554. source: "./media/characters/arokh-sieyes/front.svg",
  18555. extra: 1830 / 1769,
  18556. bottom: 0.01
  18557. }
  18558. },
  18559. },
  18560. [
  18561. {
  18562. name: "Normal",
  18563. height: math.unit(6, "feet")
  18564. },
  18565. {
  18566. name: "Macro",
  18567. height: math.unit(30, "meters"),
  18568. default: true
  18569. },
  18570. ]
  18571. ))
  18572. characterMakers.push(() => makeCharacter(
  18573. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18574. {
  18575. side: {
  18576. height: math.unit(13 + 1 / 12, "feet"),
  18577. weight: math.unit(8.5, "tonnes"),
  18578. name: "Side",
  18579. image: {
  18580. source: "./media/characters/goldeneye/side.svg",
  18581. extra: 1182 / 778,
  18582. bottom: 0.067
  18583. }
  18584. },
  18585. paw: {
  18586. height: math.unit(3.4, "feet"),
  18587. name: "Paw",
  18588. image: {
  18589. source: "./media/characters/goldeneye/paw.svg"
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Normal",
  18596. height: math.unit(13 + 1 / 12, "feet"),
  18597. default: true
  18598. },
  18599. ]
  18600. ))
  18601. characterMakers.push(() => makeCharacter(
  18602. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18603. {
  18604. front: {
  18605. height: math.unit(6 + 1 / 12, "feet"),
  18606. weight: math.unit(210, "lb"),
  18607. name: "Front",
  18608. image: {
  18609. source: "./media/characters/leonardo-lycheborne/front.svg",
  18610. extra: 390 / 365,
  18611. bottom: 0.032
  18612. }
  18613. },
  18614. side: {
  18615. height: math.unit(6 + 1 / 12, "feet"),
  18616. weight: math.unit(210, "lb"),
  18617. name: "Side",
  18618. image: {
  18619. source: "./media/characters/leonardo-lycheborne/side.svg",
  18620. extra: 390 / 365,
  18621. bottom: 0.005
  18622. }
  18623. },
  18624. back: {
  18625. height: math.unit(6 + 1 / 12, "feet"),
  18626. weight: math.unit(210, "lb"),
  18627. name: "Back",
  18628. image: {
  18629. source: "./media/characters/leonardo-lycheborne/back.svg",
  18630. extra: 392 / 366,
  18631. bottom: 0.01
  18632. }
  18633. },
  18634. hand: {
  18635. height: math.unit(1.08, "feet"),
  18636. name: "Hand",
  18637. image: {
  18638. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18639. }
  18640. },
  18641. foot: {
  18642. height: math.unit(1.32, "feet"),
  18643. name: "Foot",
  18644. image: {
  18645. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18646. }
  18647. },
  18648. were: {
  18649. height: math.unit(20, "feet"),
  18650. weight: math.unit(7800, "lb"),
  18651. name: "Were",
  18652. image: {
  18653. source: "./media/characters/leonardo-lycheborne/were.svg",
  18654. extra: 308 / 294,
  18655. bottom: 0.048
  18656. }
  18657. },
  18658. feral: {
  18659. height: math.unit(7.5, "feet"),
  18660. weight: math.unit(600, "lb"),
  18661. name: "Feral",
  18662. image: {
  18663. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18664. extra: 210 / 186,
  18665. bottom: 0.108
  18666. }
  18667. },
  18668. taur: {
  18669. height: math.unit(11, "feet"),
  18670. weight: math.unit(3300, "lb"),
  18671. name: "Taur",
  18672. image: {
  18673. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18674. extra: 320 / 303,
  18675. bottom: 0.025
  18676. }
  18677. },
  18678. barghest: {
  18679. height: math.unit(11, "feet"),
  18680. weight: math.unit(1300, "lb"),
  18681. name: "Barghest",
  18682. image: {
  18683. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18684. extra: 323 / 302,
  18685. bottom: 0.027
  18686. }
  18687. },
  18688. dick: {
  18689. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18690. name: "Dick",
  18691. image: {
  18692. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18693. }
  18694. },
  18695. dickWere: {
  18696. height: math.unit((20) / 3.8, "feet"),
  18697. name: "Dick (Were)",
  18698. image: {
  18699. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18700. }
  18701. },
  18702. },
  18703. [
  18704. {
  18705. name: "Normal",
  18706. height: math.unit(6 + 1 / 12, "feet"),
  18707. default: true
  18708. },
  18709. ]
  18710. ))
  18711. characterMakers.push(() => makeCharacter(
  18712. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18713. {
  18714. front: {
  18715. height: math.unit(10, "feet"),
  18716. weight: math.unit(350, "lb"),
  18717. name: "Front",
  18718. image: {
  18719. source: "./media/characters/jet/front.svg",
  18720. extra: 2050 / 1980,
  18721. bottom: 0.013
  18722. }
  18723. },
  18724. back: {
  18725. height: math.unit(10, "feet"),
  18726. weight: math.unit(350, "lb"),
  18727. name: "Back",
  18728. image: {
  18729. source: "./media/characters/jet/back.svg",
  18730. extra: 2050 / 1980,
  18731. bottom: 0.013
  18732. }
  18733. },
  18734. },
  18735. [
  18736. {
  18737. name: "Micro",
  18738. height: math.unit(6, "inches")
  18739. },
  18740. {
  18741. name: "Normal",
  18742. height: math.unit(10, "feet"),
  18743. default: true
  18744. },
  18745. {
  18746. name: "Macro",
  18747. height: math.unit(100, "feet")
  18748. },
  18749. ]
  18750. ))
  18751. characterMakers.push(() => makeCharacter(
  18752. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18753. {
  18754. front: {
  18755. height: math.unit(15, "feet"),
  18756. weight: math.unit(2800, "lb"),
  18757. name: "Front",
  18758. image: {
  18759. source: "./media/characters/tanarath/front.svg",
  18760. extra: 2392 / 2220,
  18761. bottom: 0.03
  18762. }
  18763. },
  18764. back: {
  18765. height: math.unit(15, "feet"),
  18766. weight: math.unit(2800, "lb"),
  18767. name: "Back",
  18768. image: {
  18769. source: "./media/characters/tanarath/back.svg",
  18770. extra: 2392 / 2220,
  18771. bottom: 0.03
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Normal",
  18778. height: math.unit(15, "feet"),
  18779. default: true
  18780. },
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18785. {
  18786. front: {
  18787. height: math.unit(7 + 1 / 12, "feet"),
  18788. weight: math.unit(175, "lb"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/patty-cattybatty/front.svg",
  18792. extra: 908 / 874,
  18793. bottom: 0.025
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Micro",
  18800. height: math.unit(1, "inch")
  18801. },
  18802. {
  18803. name: "Normal",
  18804. height: math.unit(7 + 1 / 12, "feet")
  18805. },
  18806. {
  18807. name: "Mini Macro",
  18808. height: math.unit(155, "feet")
  18809. },
  18810. {
  18811. name: "Macro",
  18812. height: math.unit(1077, "feet")
  18813. },
  18814. {
  18815. name: "Mega Macro",
  18816. height: math.unit(47650, "feet"),
  18817. default: true
  18818. },
  18819. {
  18820. name: "Giga Macro",
  18821. height: math.unit(440, "miles")
  18822. },
  18823. {
  18824. name: "Tera Macro",
  18825. height: math.unit(8700, "miles")
  18826. },
  18827. {
  18828. name: "Planetary Macro",
  18829. height: math.unit(32700, "miles")
  18830. },
  18831. {
  18832. name: "Solar Macro",
  18833. height: math.unit(550000, "miles")
  18834. },
  18835. {
  18836. name: "Celestial Macro",
  18837. height: math.unit(2.5, "AU")
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18843. {
  18844. front: {
  18845. height: math.unit(4 + 5 / 12, "feet"),
  18846. weight: math.unit(90, "lb"),
  18847. name: "Front",
  18848. image: {
  18849. source: "./media/characters/cappu/front.svg",
  18850. extra: 1247 / 1152,
  18851. bottom: 0.012
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Normal",
  18858. height: math.unit(4 + 5 / 12, "feet"),
  18859. default: true
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18865. {
  18866. frontDressed: {
  18867. height: math.unit(70, "cm"),
  18868. weight: math.unit(6, "kg"),
  18869. name: "Front (Dressed)",
  18870. image: {
  18871. source: "./media/characters/sebi/front-dressed.svg",
  18872. extra: 713.5 / 686.5,
  18873. bottom: 0.003
  18874. }
  18875. },
  18876. front: {
  18877. height: math.unit(70, "cm"),
  18878. weight: math.unit(5, "kg"),
  18879. name: "Front",
  18880. image: {
  18881. source: "./media/characters/sebi/front.svg",
  18882. extra: 713.5 / 686.5,
  18883. bottom: 0.003
  18884. }
  18885. }
  18886. },
  18887. [
  18888. {
  18889. name: "Normal",
  18890. height: math.unit(70, "cm"),
  18891. default: true
  18892. },
  18893. {
  18894. name: "Macro",
  18895. height: math.unit(8, "meters")
  18896. },
  18897. ]
  18898. ))
  18899. characterMakers.push(() => makeCharacter(
  18900. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18901. {
  18902. front: {
  18903. height: math.unit(6, "feet"),
  18904. weight: math.unit(150, "lb"),
  18905. name: "Front",
  18906. image: {
  18907. source: "./media/characters/typhek/front.svg",
  18908. extra: 1948 / 1929,
  18909. bottom: 0.025
  18910. }
  18911. },
  18912. side: {
  18913. height: math.unit(6, "feet"),
  18914. weight: math.unit(150, "lb"),
  18915. name: "Side",
  18916. image: {
  18917. source: "./media/characters/typhek/side.svg",
  18918. extra: 2034 / 2010,
  18919. bottom: 0.003
  18920. }
  18921. },
  18922. back: {
  18923. height: math.unit(6, "feet"),
  18924. weight: math.unit(150, "lb"),
  18925. name: "Back",
  18926. image: {
  18927. source: "./media/characters/typhek/back.svg",
  18928. extra: 2005 / 1978,
  18929. bottom: 0.004
  18930. }
  18931. },
  18932. palm: {
  18933. height: math.unit(1.2, "feet"),
  18934. name: "Palm",
  18935. image: {
  18936. source: "./media/characters/typhek/palm.svg"
  18937. }
  18938. },
  18939. fist: {
  18940. height: math.unit(1.1, "feet"),
  18941. name: "Fist",
  18942. image: {
  18943. source: "./media/characters/typhek/fist.svg"
  18944. }
  18945. },
  18946. foot: {
  18947. height: math.unit(1.57, "feet"),
  18948. name: "Foot",
  18949. image: {
  18950. source: "./media/characters/typhek/foot.svg"
  18951. }
  18952. },
  18953. sole: {
  18954. height: math.unit(2.05, "feet"),
  18955. name: "Sole",
  18956. image: {
  18957. source: "./media/characters/typhek/sole.svg"
  18958. }
  18959. },
  18960. },
  18961. [
  18962. {
  18963. name: "Macro",
  18964. height: math.unit(40, "stories"),
  18965. default: true
  18966. },
  18967. {
  18968. name: "Megamacro",
  18969. height: math.unit(1, "mile")
  18970. },
  18971. {
  18972. name: "Gigamacro",
  18973. height: math.unit(4000, "solarradii")
  18974. },
  18975. {
  18976. name: "Universal",
  18977. height: math.unit(1.1, "universes")
  18978. }
  18979. ]
  18980. ))
  18981. characterMakers.push(() => makeCharacter(
  18982. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18983. {
  18984. side: {
  18985. height: math.unit(5 + 7 / 12, "feet"),
  18986. weight: math.unit(150, "lb"),
  18987. name: "Side",
  18988. image: {
  18989. source: "./media/characters/kassy/side.svg",
  18990. extra: 1280 / 1225,
  18991. bottom: 0.002
  18992. }
  18993. },
  18994. front: {
  18995. height: math.unit(5 + 7 / 12, "feet"),
  18996. weight: math.unit(150, "lb"),
  18997. name: "Front",
  18998. image: {
  18999. source: "./media/characters/kassy/front.svg",
  19000. extra: 1280 / 1225,
  19001. bottom: 0.025
  19002. }
  19003. },
  19004. back: {
  19005. height: math.unit(5 + 7 / 12, "feet"),
  19006. weight: math.unit(150, "lb"),
  19007. name: "Back",
  19008. image: {
  19009. source: "./media/characters/kassy/back.svg",
  19010. extra: 1280 / 1225,
  19011. bottom: 0.002
  19012. }
  19013. },
  19014. foot: {
  19015. height: math.unit(1.266, "feet"),
  19016. name: "Foot",
  19017. image: {
  19018. source: "./media/characters/kassy/foot.svg"
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(5 + 7 / 12, "feet")
  19026. },
  19027. {
  19028. name: "Macro",
  19029. height: math.unit(137, "feet"),
  19030. default: true
  19031. },
  19032. {
  19033. name: "Megamacro",
  19034. height: math.unit(1, "mile")
  19035. },
  19036. ]
  19037. ))
  19038. characterMakers.push(() => makeCharacter(
  19039. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19040. {
  19041. front: {
  19042. height: math.unit(6 + 1 / 12, "feet"),
  19043. weight: math.unit(200, "lb"),
  19044. name: "Front",
  19045. image: {
  19046. source: "./media/characters/neil/front.svg",
  19047. extra: 1326 / 1250,
  19048. bottom: 0.023
  19049. }
  19050. },
  19051. },
  19052. [
  19053. {
  19054. name: "Normal",
  19055. height: math.unit(6 + 1 / 12, "feet"),
  19056. default: true
  19057. },
  19058. {
  19059. name: "Macro",
  19060. height: math.unit(200, "feet")
  19061. },
  19062. ]
  19063. ))
  19064. characterMakers.push(() => makeCharacter(
  19065. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19066. {
  19067. front: {
  19068. height: math.unit(5 + 9 / 12, "feet"),
  19069. weight: math.unit(190, "lb"),
  19070. name: "Front",
  19071. image: {
  19072. source: "./media/characters/atticus/front.svg",
  19073. extra: 2934 / 2785,
  19074. bottom: 0.025
  19075. }
  19076. },
  19077. },
  19078. [
  19079. {
  19080. name: "Normal",
  19081. height: math.unit(5 + 9 / 12, "feet"),
  19082. default: true
  19083. },
  19084. {
  19085. name: "Macro",
  19086. height: math.unit(180, "feet")
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19092. {
  19093. side: {
  19094. height: math.unit(9, "feet"),
  19095. weight: math.unit(650, "lb"),
  19096. name: "Side",
  19097. image: {
  19098. source: "./media/characters/milo/side.svg",
  19099. extra: 2644 / 2310,
  19100. bottom: 0.032
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(9, "feet"),
  19108. default: true
  19109. },
  19110. {
  19111. name: "Macro",
  19112. height: math.unit(300, "feet")
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19118. {
  19119. side: {
  19120. height: math.unit(8, "meters"),
  19121. weight: math.unit(90000, "kg"),
  19122. name: "Side",
  19123. image: {
  19124. source: "./media/characters/ijzer/side.svg",
  19125. extra: 2756 / 1600,
  19126. bottom: 0.01
  19127. }
  19128. },
  19129. },
  19130. [
  19131. {
  19132. name: "Small",
  19133. height: math.unit(3, "meters")
  19134. },
  19135. {
  19136. name: "Normal",
  19137. height: math.unit(8, "meters"),
  19138. default: true
  19139. },
  19140. {
  19141. name: "Normal+",
  19142. height: math.unit(10, "meters")
  19143. },
  19144. {
  19145. name: "Bigger",
  19146. height: math.unit(24, "meters")
  19147. },
  19148. {
  19149. name: "Huge",
  19150. height: math.unit(80, "meters")
  19151. },
  19152. ]
  19153. ))
  19154. characterMakers.push(() => makeCharacter(
  19155. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19156. {
  19157. front: {
  19158. height: math.unit(6 + 2 / 12, "feet"),
  19159. weight: math.unit(153, "lb"),
  19160. name: "Front",
  19161. image: {
  19162. source: "./media/characters/luca-cervicum/front.svg",
  19163. extra: 370 / 327,
  19164. bottom: 0.015
  19165. }
  19166. },
  19167. back: {
  19168. height: math.unit(6 + 2 / 12, "feet"),
  19169. weight: math.unit(153, "lb"),
  19170. name: "Back",
  19171. image: {
  19172. source: "./media/characters/luca-cervicum/back.svg",
  19173. extra: 367 / 333,
  19174. bottom: 0.005
  19175. }
  19176. },
  19177. frontGear: {
  19178. height: math.unit(6 + 2 / 12, "feet"),
  19179. weight: math.unit(173, "lb"),
  19180. name: "Front (Gear)",
  19181. image: {
  19182. source: "./media/characters/luca-cervicum/front-gear.svg",
  19183. extra: 377 / 333,
  19184. bottom: 0.006
  19185. }
  19186. },
  19187. },
  19188. [
  19189. {
  19190. name: "Normal",
  19191. height: math.unit(6 + 2 / 12, "feet"),
  19192. default: true
  19193. },
  19194. ]
  19195. ))
  19196. characterMakers.push(() => makeCharacter(
  19197. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19198. {
  19199. front: {
  19200. height: math.unit(6 + 1 / 12, "feet"),
  19201. weight: math.unit(304, "lb"),
  19202. name: "Front",
  19203. image: {
  19204. source: "./media/characters/oliver/front.svg",
  19205. extra: 157 / 143,
  19206. bottom: 0.08
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(6 + 1 / 12, "feet"),
  19214. default: true
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19220. {
  19221. front: {
  19222. height: math.unit(5 + 7 / 12, "feet"),
  19223. weight: math.unit(140, "lb"),
  19224. name: "Front",
  19225. image: {
  19226. source: "./media/characters/shane/front.svg",
  19227. extra: 304 / 289,
  19228. bottom: 0.005
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Normal",
  19235. height: math.unit(5 + 7 / 12, "feet"),
  19236. default: true
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19242. {
  19243. front: {
  19244. height: math.unit(5 + 9 / 12, "feet"),
  19245. weight: math.unit(178, "lb"),
  19246. name: "Front",
  19247. image: {
  19248. source: "./media/characters/shin/front.svg",
  19249. extra: 159 / 151,
  19250. bottom: 0.015
  19251. }
  19252. },
  19253. },
  19254. [
  19255. {
  19256. name: "Normal",
  19257. height: math.unit(5 + 9 / 12, "feet"),
  19258. default: true
  19259. },
  19260. ]
  19261. ))
  19262. characterMakers.push(() => makeCharacter(
  19263. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19264. {
  19265. front: {
  19266. height: math.unit(5 + 10 / 12, "feet"),
  19267. weight: math.unit(168, "lb"),
  19268. name: "Front",
  19269. image: {
  19270. source: "./media/characters/xerxes/front.svg",
  19271. extra: 282 / 260,
  19272. bottom: 0.045
  19273. }
  19274. },
  19275. },
  19276. [
  19277. {
  19278. name: "Normal",
  19279. height: math.unit(5 + 10 / 12, "feet"),
  19280. default: true
  19281. },
  19282. ]
  19283. ))
  19284. characterMakers.push(() => makeCharacter(
  19285. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19286. {
  19287. front: {
  19288. height: math.unit(6 + 7 / 12, "feet"),
  19289. weight: math.unit(208, "lb"),
  19290. name: "Front",
  19291. image: {
  19292. source: "./media/characters/chaska/front.svg",
  19293. extra: 332 / 319,
  19294. bottom: 0.015
  19295. }
  19296. },
  19297. },
  19298. [
  19299. {
  19300. name: "Normal",
  19301. height: math.unit(6 + 7 / 12, "feet"),
  19302. default: true
  19303. },
  19304. ]
  19305. ))
  19306. characterMakers.push(() => makeCharacter(
  19307. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19308. {
  19309. front: {
  19310. height: math.unit(5 + 8 / 12, "feet"),
  19311. weight: math.unit(208, "lb"),
  19312. name: "Front",
  19313. image: {
  19314. source: "./media/characters/enuk/front.svg",
  19315. extra: 437 / 406,
  19316. bottom: 0.02
  19317. }
  19318. },
  19319. },
  19320. [
  19321. {
  19322. name: "Normal",
  19323. height: math.unit(5 + 8 / 12, "feet"),
  19324. default: true
  19325. },
  19326. ]
  19327. ))
  19328. characterMakers.push(() => makeCharacter(
  19329. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19330. {
  19331. front: {
  19332. height: math.unit(5 + 10 / 12, "feet"),
  19333. weight: math.unit(252, "lb"),
  19334. name: "Front",
  19335. image: {
  19336. source: "./media/characters/bruun/front.svg",
  19337. extra: 197 / 187,
  19338. bottom: 0.012
  19339. }
  19340. },
  19341. },
  19342. [
  19343. {
  19344. name: "Normal",
  19345. height: math.unit(5 + 10 / 12, "feet"),
  19346. default: true
  19347. },
  19348. ]
  19349. ))
  19350. characterMakers.push(() => makeCharacter(
  19351. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19352. {
  19353. front: {
  19354. height: math.unit(6 + 10 / 12, "feet"),
  19355. weight: math.unit(255, "lb"),
  19356. name: "Front",
  19357. image: {
  19358. source: "./media/characters/alexeev/front.svg",
  19359. extra: 213 / 200,
  19360. bottom: 0.05
  19361. }
  19362. },
  19363. },
  19364. [
  19365. {
  19366. name: "Normal",
  19367. height: math.unit(6 + 10 / 12, "feet"),
  19368. default: true
  19369. },
  19370. ]
  19371. ))
  19372. characterMakers.push(() => makeCharacter(
  19373. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19374. {
  19375. front: {
  19376. height: math.unit(2 + 8 / 12, "feet"),
  19377. weight: math.unit(22, "lb"),
  19378. name: "Front",
  19379. image: {
  19380. source: "./media/characters/evelyn/front.svg",
  19381. extra: 208 / 180
  19382. }
  19383. },
  19384. },
  19385. [
  19386. {
  19387. name: "Normal",
  19388. height: math.unit(2 + 8 / 12, "feet"),
  19389. default: true
  19390. },
  19391. ]
  19392. ))
  19393. characterMakers.push(() => makeCharacter(
  19394. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19395. {
  19396. front: {
  19397. height: math.unit(5 + 9 / 12, "feet"),
  19398. weight: math.unit(139, "lb"),
  19399. name: "Front",
  19400. image: {
  19401. source: "./media/characters/inca/front.svg",
  19402. extra: 294 / 291,
  19403. bottom: 0.03
  19404. }
  19405. },
  19406. },
  19407. [
  19408. {
  19409. name: "Normal",
  19410. height: math.unit(5 + 9 / 12, "feet"),
  19411. default: true
  19412. },
  19413. ]
  19414. ))
  19415. characterMakers.push(() => makeCharacter(
  19416. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19417. {
  19418. front: {
  19419. height: math.unit(5 + 1 / 12, "feet"),
  19420. weight: math.unit(84, "lb"),
  19421. name: "Front",
  19422. image: {
  19423. source: "./media/characters/magdalene/front.svg",
  19424. extra: 293 / 273
  19425. }
  19426. },
  19427. },
  19428. [
  19429. {
  19430. name: "Normal",
  19431. height: math.unit(5 + 1 / 12, "feet"),
  19432. default: true
  19433. },
  19434. ]
  19435. ))
  19436. characterMakers.push(() => makeCharacter(
  19437. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19438. {
  19439. front: {
  19440. height: math.unit(6 + 3 / 12, "feet"),
  19441. weight: math.unit(185, "lb"),
  19442. name: "Front",
  19443. image: {
  19444. source: "./media/characters/mera/front.svg",
  19445. extra: 291 / 277,
  19446. bottom: 0.03
  19447. }
  19448. },
  19449. },
  19450. [
  19451. {
  19452. name: "Normal",
  19453. height: math.unit(6 + 3 / 12, "feet"),
  19454. default: true
  19455. },
  19456. ]
  19457. ))
  19458. characterMakers.push(() => makeCharacter(
  19459. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19460. {
  19461. front: {
  19462. height: math.unit(6 + 7 / 12, "feet"),
  19463. weight: math.unit(160, "lb"),
  19464. name: "Front",
  19465. image: {
  19466. source: "./media/characters/ceres/front.svg",
  19467. extra: 1023 / 950,
  19468. bottom: 0.027
  19469. }
  19470. },
  19471. back: {
  19472. height: math.unit(6 + 7 / 12, "feet"),
  19473. weight: math.unit(160, "lb"),
  19474. name: "Back",
  19475. image: {
  19476. source: "./media/characters/ceres/back.svg",
  19477. extra: 1023 / 950
  19478. }
  19479. },
  19480. },
  19481. [
  19482. {
  19483. name: "Normal",
  19484. height: math.unit(6 + 7 / 12, "feet"),
  19485. default: true
  19486. },
  19487. ]
  19488. ))
  19489. characterMakers.push(() => makeCharacter(
  19490. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19491. {
  19492. front: {
  19493. height: math.unit(5 + 10 / 12, "feet"),
  19494. weight: math.unit(150, "lb"),
  19495. name: "Front",
  19496. image: {
  19497. source: "./media/characters/kris/front.svg",
  19498. extra: 885 / 803,
  19499. bottom: 0.03
  19500. }
  19501. },
  19502. },
  19503. [
  19504. {
  19505. name: "Normal",
  19506. height: math.unit(5 + 10 / 12, "feet"),
  19507. default: true
  19508. },
  19509. ]
  19510. ))
  19511. characterMakers.push(() => makeCharacter(
  19512. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19513. {
  19514. front: {
  19515. height: math.unit(7, "feet"),
  19516. weight: math.unit(120, "kg"),
  19517. name: "Front",
  19518. image: {
  19519. source: "./media/characters/taluthus/front.svg",
  19520. extra: 903 / 833,
  19521. bottom: 0.015
  19522. }
  19523. },
  19524. },
  19525. [
  19526. {
  19527. name: "Normal",
  19528. height: math.unit(7, "feet"),
  19529. default: true
  19530. },
  19531. {
  19532. name: "Macro",
  19533. height: math.unit(300, "feet")
  19534. },
  19535. ]
  19536. ))
  19537. characterMakers.push(() => makeCharacter(
  19538. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19539. {
  19540. front: {
  19541. height: math.unit(5 + 9 / 12, "feet"),
  19542. weight: math.unit(145, "lb"),
  19543. name: "Front",
  19544. image: {
  19545. source: "./media/characters/dawn/front.svg",
  19546. extra: 2094 / 2016,
  19547. bottom: 0.025
  19548. }
  19549. },
  19550. back: {
  19551. height: math.unit(5 + 9 / 12, "feet"),
  19552. weight: math.unit(160, "lb"),
  19553. name: "Back",
  19554. image: {
  19555. source: "./media/characters/dawn/back.svg",
  19556. extra: 2112 / 2080,
  19557. bottom: 0.005
  19558. }
  19559. },
  19560. },
  19561. [
  19562. {
  19563. name: "Normal",
  19564. height: math.unit(6 + 7 / 12, "feet"),
  19565. default: true
  19566. },
  19567. ]
  19568. ))
  19569. characterMakers.push(() => makeCharacter(
  19570. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19571. {
  19572. anthro: {
  19573. height: math.unit(8 + 3 / 12, "feet"),
  19574. weight: math.unit(450, "lb"),
  19575. name: "Anthro",
  19576. image: {
  19577. source: "./media/characters/arador/anthro.svg",
  19578. extra: 1835 / 1718,
  19579. bottom: 0.025
  19580. }
  19581. },
  19582. feral: {
  19583. height: math.unit(4, "feet"),
  19584. weight: math.unit(200, "lb"),
  19585. name: "Feral",
  19586. image: {
  19587. source: "./media/characters/arador/feral.svg",
  19588. extra: 1683 / 1514,
  19589. bottom: 0.07
  19590. }
  19591. },
  19592. },
  19593. [
  19594. {
  19595. name: "Normal",
  19596. height: math.unit(8 + 3 / 12, "feet")
  19597. },
  19598. {
  19599. name: "Macro",
  19600. height: math.unit(82.5, "feet"),
  19601. default: true
  19602. },
  19603. ]
  19604. ))
  19605. characterMakers.push(() => makeCharacter(
  19606. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19607. {
  19608. front: {
  19609. height: math.unit(5 + 10 / 12, "feet"),
  19610. weight: math.unit(125, "lb"),
  19611. name: "Front",
  19612. image: {
  19613. source: "./media/characters/dharsi/front.svg",
  19614. extra: 716 / 630,
  19615. bottom: 0.035
  19616. }
  19617. },
  19618. },
  19619. [
  19620. {
  19621. name: "Nano",
  19622. height: math.unit(100, "nm")
  19623. },
  19624. {
  19625. name: "Micro",
  19626. height: math.unit(2, "inches")
  19627. },
  19628. {
  19629. name: "Normal",
  19630. height: math.unit(5 + 10 / 12, "feet"),
  19631. default: true
  19632. },
  19633. {
  19634. name: "Macro",
  19635. height: math.unit(1000, "feet")
  19636. },
  19637. {
  19638. name: "Megamacro",
  19639. height: math.unit(10, "miles")
  19640. },
  19641. {
  19642. name: "Gigamacro",
  19643. height: math.unit(3000, "miles")
  19644. },
  19645. {
  19646. name: "Teramacro",
  19647. height: math.unit(500000, "miles")
  19648. },
  19649. {
  19650. name: "Teramacro+",
  19651. height: math.unit(30, "galaxies")
  19652. },
  19653. ]
  19654. ))
  19655. characterMakers.push(() => makeCharacter(
  19656. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19657. {
  19658. front: {
  19659. height: math.unit(6, "feet"),
  19660. weight: math.unit(150, "lb"),
  19661. name: "Front",
  19662. image: {
  19663. source: "./media/characters/deathy/front.svg",
  19664. extra: 1552 / 1463,
  19665. bottom: 0.025
  19666. }
  19667. },
  19668. side: {
  19669. height: math.unit(6, "feet"),
  19670. weight: math.unit(150, "lb"),
  19671. name: "Side",
  19672. image: {
  19673. source: "./media/characters/deathy/side.svg",
  19674. extra: 1604 / 1455,
  19675. bottom: 0.025
  19676. }
  19677. },
  19678. back: {
  19679. height: math.unit(6, "feet"),
  19680. weight: math.unit(150, "lb"),
  19681. name: "Back",
  19682. image: {
  19683. source: "./media/characters/deathy/back.svg",
  19684. extra: 1580 / 1463,
  19685. bottom: 0.005
  19686. }
  19687. },
  19688. },
  19689. [
  19690. {
  19691. name: "Micro",
  19692. height: math.unit(5, "millimeters")
  19693. },
  19694. {
  19695. name: "Normal",
  19696. height: math.unit(6 + 5 / 12, "feet"),
  19697. default: true
  19698. },
  19699. ]
  19700. ))
  19701. characterMakers.push(() => makeCharacter(
  19702. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19703. {
  19704. front: {
  19705. height: math.unit(16, "feet"),
  19706. weight: math.unit(4000, "lb"),
  19707. name: "Front",
  19708. image: {
  19709. source: "./media/characters/juniper/front.svg",
  19710. bottom: 0.04
  19711. }
  19712. },
  19713. },
  19714. [
  19715. {
  19716. name: "Normal",
  19717. height: math.unit(16, "feet"),
  19718. default: true
  19719. },
  19720. ]
  19721. ))
  19722. characterMakers.push(() => makeCharacter(
  19723. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19724. {
  19725. front: {
  19726. height: math.unit(6, "feet"),
  19727. weight: math.unit(150, "lb"),
  19728. name: "Front",
  19729. image: {
  19730. source: "./media/characters/hipster/front.svg",
  19731. extra: 1312 / 1209,
  19732. bottom: 0.025
  19733. }
  19734. },
  19735. back: {
  19736. height: math.unit(6, "feet"),
  19737. weight: math.unit(150, "lb"),
  19738. name: "Back",
  19739. image: {
  19740. source: "./media/characters/hipster/back.svg",
  19741. extra: 1281 / 1196,
  19742. bottom: 0.01
  19743. }
  19744. },
  19745. },
  19746. [
  19747. {
  19748. name: "Micro",
  19749. height: math.unit(1, "mm")
  19750. },
  19751. {
  19752. name: "Normal",
  19753. height: math.unit(4, "inches"),
  19754. default: true
  19755. },
  19756. {
  19757. name: "Macro",
  19758. height: math.unit(500, "feet")
  19759. },
  19760. {
  19761. name: "Megamacro",
  19762. height: math.unit(1000, "miles")
  19763. },
  19764. ]
  19765. ))
  19766. characterMakers.push(() => makeCharacter(
  19767. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19768. {
  19769. front: {
  19770. height: math.unit(6, "feet"),
  19771. weight: math.unit(150, "lb"),
  19772. name: "Front",
  19773. image: {
  19774. source: "./media/characters/tendirmuldr/front.svg",
  19775. extra: 1878 / 1772,
  19776. bottom: 0.015
  19777. }
  19778. },
  19779. },
  19780. [
  19781. {
  19782. name: "Megamacro",
  19783. height: math.unit(1500, "miles"),
  19784. default: true
  19785. },
  19786. ]
  19787. ))
  19788. characterMakers.push(() => makeCharacter(
  19789. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19790. {
  19791. front: {
  19792. height: math.unit(14, "feet"),
  19793. weight: math.unit(12000, "lb"),
  19794. name: "Front",
  19795. image: {
  19796. source: "./media/characters/mort/front.svg",
  19797. extra: 365 / 318,
  19798. bottom: 0.01
  19799. }
  19800. },
  19801. side: {
  19802. height: math.unit(14, "feet"),
  19803. weight: math.unit(12000, "lb"),
  19804. name: "Side",
  19805. image: {
  19806. source: "./media/characters/mort/side.svg",
  19807. extra: 365 / 318,
  19808. bottom: 0.052
  19809. },
  19810. default: true
  19811. },
  19812. back: {
  19813. height: math.unit(14, "feet"),
  19814. weight: math.unit(12000, "lb"),
  19815. name: "Back",
  19816. image: {
  19817. source: "./media/characters/mort/back.svg",
  19818. extra: 371 / 332,
  19819. bottom: 0.18
  19820. }
  19821. },
  19822. },
  19823. [
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(14, "feet"),
  19827. default: true
  19828. },
  19829. ]
  19830. ))
  19831. characterMakers.push(() => makeCharacter(
  19832. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19833. {
  19834. front: {
  19835. height: math.unit(8, "feet"),
  19836. weight: math.unit(1, "ton"),
  19837. name: "Front",
  19838. image: {
  19839. source: "./media/characters/lycoa/front.svg",
  19840. extra: 1875 / 1789,
  19841. bottom: 0.022
  19842. }
  19843. },
  19844. back: {
  19845. height: math.unit(8, "feet"),
  19846. weight: math.unit(1, "ton"),
  19847. name: "Back",
  19848. image: {
  19849. source: "./media/characters/lycoa/back.svg",
  19850. extra: 1835 / 1781,
  19851. bottom: 0.03
  19852. }
  19853. },
  19854. head: {
  19855. height: math.unit(2.1, "feet"),
  19856. name: "Head",
  19857. image: {
  19858. source: "./media/characters/lycoa/head.svg"
  19859. }
  19860. },
  19861. tailmaw: {
  19862. height: math.unit(1.9, "feet"),
  19863. name: "Tailmaw",
  19864. image: {
  19865. source: "./media/characters/lycoa/tailmaw.svg"
  19866. }
  19867. },
  19868. tentacles: {
  19869. height: math.unit(2.1, "feet"),
  19870. name: "Tentacles",
  19871. image: {
  19872. source: "./media/characters/lycoa/tentacles.svg"
  19873. }
  19874. },
  19875. dick: {
  19876. height: math.unit(1.73, "feet"),
  19877. name: "Dick",
  19878. image: {
  19879. source: "./media/characters/lycoa/dick.svg"
  19880. }
  19881. },
  19882. },
  19883. [
  19884. {
  19885. name: "Normal",
  19886. height: math.unit(8, "feet"),
  19887. default: true
  19888. },
  19889. {
  19890. name: "Macro",
  19891. height: math.unit(30, "feet")
  19892. },
  19893. ]
  19894. ))
  19895. characterMakers.push(() => makeCharacter(
  19896. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19897. {
  19898. front: {
  19899. height: math.unit(4 + 2 / 12, "feet"),
  19900. weight: math.unit(70, "lb"),
  19901. name: "Front",
  19902. image: {
  19903. source: "./media/characters/naldara/front.svg",
  19904. extra: 841 / 720,
  19905. bottom: 0.04
  19906. }
  19907. },
  19908. naga: {
  19909. height: math.unit(23, "feet"),
  19910. weight: math.unit(15000, "kg"),
  19911. name: "Naga",
  19912. image: {
  19913. source: "./media/characters/naldara/naga.svg",
  19914. extra: 3290 / 2959,
  19915. bottom: 124 / 3432
  19916. }
  19917. },
  19918. },
  19919. [
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(4 + 2 / 12, "feet"),
  19923. default: true
  19924. },
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19929. {
  19930. front: {
  19931. height: math.unit(13 + 7 / 12, "feet"),
  19932. weight: math.unit(1500, "lb"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/briar/front.svg",
  19936. extra: 626 / 596,
  19937. bottom: 0.08
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Normal",
  19944. height: math.unit(13 + 7 / 12, "feet"),
  19945. default: true
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19951. {
  19952. side: {
  19953. height: math.unit(10, "feet"),
  19954. weight: math.unit(500, "lb"),
  19955. name: "Side",
  19956. image: {
  19957. source: "./media/characters/vanguard/side.svg",
  19958. extra: 502 / 425,
  19959. bottom: 0.087
  19960. }
  19961. },
  19962. },
  19963. [
  19964. {
  19965. name: "Normal",
  19966. height: math.unit(10, "feet"),
  19967. default: true
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19973. {
  19974. front: {
  19975. height: math.unit(7.5, "feet"),
  19976. weight: math.unit(2, "lb"),
  19977. name: "Front",
  19978. image: {
  19979. source: "./media/characters/artemis/front.svg",
  19980. extra: 1192 / 1075,
  19981. bottom: 0.07
  19982. }
  19983. },
  19984. frontNsfw: {
  19985. height: math.unit(7.5, "feet"),
  19986. weight: math.unit(2, "lb"),
  19987. name: "Front (NSFW)",
  19988. image: {
  19989. source: "./media/characters/artemis/front-nsfw.svg",
  19990. extra: 1192 / 1075,
  19991. bottom: 0.07
  19992. }
  19993. },
  19994. frontNsfwer: {
  19995. height: math.unit(7.5, "feet"),
  19996. weight: math.unit(2, "lb"),
  19997. name: "Front (NSFW-er)",
  19998. image: {
  19999. source: "./media/characters/artemis/front-nsfwer.svg",
  20000. extra: 1192 / 1075,
  20001. bottom: 0.07
  20002. }
  20003. },
  20004. side: {
  20005. height: math.unit(7.5, "feet"),
  20006. weight: math.unit(2, "lb"),
  20007. name: "Side",
  20008. image: {
  20009. source: "./media/characters/artemis/side.svg",
  20010. extra: 1192 / 1075,
  20011. bottom: 0.07
  20012. }
  20013. },
  20014. sideNsfw: {
  20015. height: math.unit(7.5, "feet"),
  20016. weight: math.unit(2, "lb"),
  20017. name: "Side (NSFW)",
  20018. image: {
  20019. source: "./media/characters/artemis/side-nsfw.svg",
  20020. extra: 1192 / 1075,
  20021. bottom: 0.07
  20022. }
  20023. },
  20024. sideNsfwer: {
  20025. height: math.unit(7.5, "feet"),
  20026. weight: math.unit(2, "lb"),
  20027. name: "Side (NSFW-er)",
  20028. image: {
  20029. source: "./media/characters/artemis/side-nsfwer.svg",
  20030. extra: 1192 / 1075,
  20031. bottom: 0.07
  20032. }
  20033. },
  20034. maw: {
  20035. height: math.unit(1.1, "feet"),
  20036. name: "Maw",
  20037. image: {
  20038. source: "./media/characters/artemis/maw.svg"
  20039. }
  20040. },
  20041. stomach: {
  20042. height: math.unit(0.95, "feet"),
  20043. name: "Stomach",
  20044. image: {
  20045. source: "./media/characters/artemis/stomach.svg"
  20046. }
  20047. },
  20048. dickCanine: {
  20049. height: math.unit(1, "feet"),
  20050. name: "Dick (Canine)",
  20051. image: {
  20052. source: "./media/characters/artemis/dick-canine.svg"
  20053. }
  20054. },
  20055. dickEquine: {
  20056. height: math.unit(0.85, "feet"),
  20057. name: "Dick (Equine)",
  20058. image: {
  20059. source: "./media/characters/artemis/dick-equine.svg"
  20060. }
  20061. },
  20062. dickExotic: {
  20063. height: math.unit(0.85, "feet"),
  20064. name: "Dick (Exotic)",
  20065. image: {
  20066. source: "./media/characters/artemis/dick-exotic.svg"
  20067. }
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Normal",
  20073. height: math.unit(7.5, "feet"),
  20074. default: true
  20075. },
  20076. {
  20077. name: "Enlarged",
  20078. height: math.unit(12, "feet")
  20079. },
  20080. ]
  20081. ))
  20082. characterMakers.push(() => makeCharacter(
  20083. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20084. {
  20085. front: {
  20086. height: math.unit(5 + 3 / 12, "feet"),
  20087. weight: math.unit(160, "lb"),
  20088. name: "Front",
  20089. image: {
  20090. source: "./media/characters/kira/front.svg",
  20091. extra: 906 / 786,
  20092. bottom: 0.01
  20093. }
  20094. },
  20095. back: {
  20096. height: math.unit(5 + 3 / 12, "feet"),
  20097. weight: math.unit(160, "lb"),
  20098. name: "Back",
  20099. image: {
  20100. source: "./media/characters/kira/back.svg",
  20101. extra: 882 / 757,
  20102. bottom: 0.005
  20103. }
  20104. },
  20105. frontDressed: {
  20106. height: math.unit(5 + 3 / 12, "feet"),
  20107. weight: math.unit(160, "lb"),
  20108. name: "Front (Dressed)",
  20109. image: {
  20110. source: "./media/characters/kira/front-dressed.svg",
  20111. extra: 906 / 786,
  20112. bottom: 0.01
  20113. }
  20114. },
  20115. beans: {
  20116. height: math.unit(0.92, "feet"),
  20117. name: "Beans",
  20118. image: {
  20119. source: "./media/characters/kira/beans.svg"
  20120. }
  20121. },
  20122. },
  20123. [
  20124. {
  20125. name: "Normal",
  20126. height: math.unit(5 + 3 / 12, "feet"),
  20127. default: true
  20128. },
  20129. ]
  20130. ))
  20131. characterMakers.push(() => makeCharacter(
  20132. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20133. {
  20134. front: {
  20135. height: math.unit(5 + 4 / 12, "feet"),
  20136. weight: math.unit(145, "lb"),
  20137. name: "Front",
  20138. image: {
  20139. source: "./media/characters/scramble/front.svg",
  20140. extra: 763 / 727,
  20141. bottom: 0.05
  20142. }
  20143. },
  20144. back: {
  20145. height: math.unit(5 + 4 / 12, "feet"),
  20146. weight: math.unit(145, "lb"),
  20147. name: "Back",
  20148. image: {
  20149. source: "./media/characters/scramble/back.svg",
  20150. extra: 826 / 737,
  20151. bottom: 0.002
  20152. }
  20153. },
  20154. },
  20155. [
  20156. {
  20157. name: "Normal",
  20158. height: math.unit(5 + 4 / 12, "feet"),
  20159. default: true
  20160. },
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20165. {
  20166. side: {
  20167. height: math.unit(6 + 2 / 12, "feet"),
  20168. weight: math.unit(190, "lb"),
  20169. name: "Side",
  20170. image: {
  20171. source: "./media/characters/biscuit/side.svg",
  20172. extra: 858 / 791,
  20173. bottom: 0.044
  20174. }
  20175. },
  20176. },
  20177. [
  20178. {
  20179. name: "Normal",
  20180. height: math.unit(6 + 2 / 12, "feet"),
  20181. default: true
  20182. },
  20183. ]
  20184. ))
  20185. characterMakers.push(() => makeCharacter(
  20186. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20187. {
  20188. front: {
  20189. height: math.unit(5 + 2 / 12, "feet"),
  20190. weight: math.unit(120, "lb"),
  20191. name: "Front",
  20192. image: {
  20193. source: "./media/characters/poffin/front.svg",
  20194. extra: 786 / 680,
  20195. bottom: 0.005
  20196. }
  20197. },
  20198. },
  20199. [
  20200. {
  20201. name: "Normal",
  20202. height: math.unit(5 + 2 / 12, "feet"),
  20203. default: true
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20209. {
  20210. front: {
  20211. height: math.unit(6 + 3 / 12, "feet"),
  20212. weight: math.unit(519, "lb"),
  20213. name: "Front",
  20214. image: {
  20215. source: "./media/characters/dhari/front.svg",
  20216. extra: 1048 / 946,
  20217. bottom: 0.015
  20218. }
  20219. },
  20220. back: {
  20221. height: math.unit(6 + 3 / 12, "feet"),
  20222. weight: math.unit(519, "lb"),
  20223. name: "Back",
  20224. image: {
  20225. source: "./media/characters/dhari/back.svg",
  20226. extra: 1048 / 931,
  20227. bottom: 0.005
  20228. }
  20229. },
  20230. frontDressed: {
  20231. height: math.unit(6 + 3 / 12, "feet"),
  20232. weight: math.unit(519, "lb"),
  20233. name: "Front (Dressed)",
  20234. image: {
  20235. source: "./media/characters/dhari/front-dressed.svg",
  20236. extra: 1713 / 1546,
  20237. bottom: 0.02
  20238. }
  20239. },
  20240. backDressed: {
  20241. height: math.unit(6 + 3 / 12, "feet"),
  20242. weight: math.unit(519, "lb"),
  20243. name: "Back (Dressed)",
  20244. image: {
  20245. source: "./media/characters/dhari/back-dressed.svg",
  20246. extra: 1699 / 1537,
  20247. bottom: 0.01
  20248. }
  20249. },
  20250. maw: {
  20251. height: math.unit(0.95, "feet"),
  20252. name: "Maw",
  20253. image: {
  20254. source: "./media/characters/dhari/maw.svg"
  20255. }
  20256. },
  20257. wereFront: {
  20258. height: math.unit(12 + 8 / 12, "feet"),
  20259. weight: math.unit(4000, "lb"),
  20260. name: "Front (Were)",
  20261. image: {
  20262. source: "./media/characters/dhari/were-front.svg",
  20263. extra: 1065 / 969,
  20264. bottom: 0.015
  20265. }
  20266. },
  20267. wereBack: {
  20268. height: math.unit(12 + 8 / 12, "feet"),
  20269. weight: math.unit(4000, "lb"),
  20270. name: "Back (Were)",
  20271. image: {
  20272. source: "./media/characters/dhari/were-back.svg",
  20273. extra: 1065 / 969,
  20274. bottom: 0.012
  20275. }
  20276. },
  20277. wereMaw: {
  20278. height: math.unit(0.625, "meters"),
  20279. name: "Maw (Were)",
  20280. image: {
  20281. source: "./media/characters/dhari/were-maw.svg"
  20282. }
  20283. },
  20284. },
  20285. [
  20286. {
  20287. name: "Normal",
  20288. height: math.unit(6 + 3 / 12, "feet"),
  20289. default: true
  20290. },
  20291. ]
  20292. ))
  20293. characterMakers.push(() => makeCharacter(
  20294. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20295. {
  20296. anthro: {
  20297. height: math.unit(5 + 7 / 12, "feet"),
  20298. weight: math.unit(175, "lb"),
  20299. name: "Anthro",
  20300. image: {
  20301. source: "./media/characters/rena-dyne/anthro.svg",
  20302. extra: 1849 / 1785,
  20303. bottom: 0.005
  20304. }
  20305. },
  20306. taur: {
  20307. height: math.unit(15 + 6 / 12, "feet"),
  20308. weight: math.unit(8000, "lb"),
  20309. name: "Taur",
  20310. image: {
  20311. source: "./media/characters/rena-dyne/taur.svg",
  20312. extra: 2315 / 2234,
  20313. bottom: 0.033
  20314. }
  20315. },
  20316. },
  20317. [
  20318. {
  20319. name: "Normal",
  20320. height: math.unit(5 + 7 / 12, "feet"),
  20321. default: true
  20322. },
  20323. ]
  20324. ))
  20325. characterMakers.push(() => makeCharacter(
  20326. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20327. {
  20328. front: {
  20329. height: math.unit(8, "feet"),
  20330. weight: math.unit(600, "lb"),
  20331. name: "Front",
  20332. image: {
  20333. source: "./media/characters/weremeep/front.svg",
  20334. extra: 967 / 862,
  20335. bottom: 0.01
  20336. }
  20337. },
  20338. },
  20339. [
  20340. {
  20341. name: "Normal",
  20342. height: math.unit(8, "feet"),
  20343. default: true
  20344. },
  20345. {
  20346. name: "Lorg",
  20347. height: math.unit(12, "feet")
  20348. },
  20349. {
  20350. name: "Oh Lawd She Comin'",
  20351. height: math.unit(20, "feet")
  20352. },
  20353. ]
  20354. ))
  20355. characterMakers.push(() => makeCharacter(
  20356. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20357. {
  20358. front: {
  20359. height: math.unit(4, "feet"),
  20360. weight: math.unit(90, "lb"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/reza/front.svg",
  20364. extra: 1183 / 1111,
  20365. bottom: 0.017
  20366. }
  20367. },
  20368. back: {
  20369. height: math.unit(4, "feet"),
  20370. weight: math.unit(90, "lb"),
  20371. name: "Back",
  20372. image: {
  20373. source: "./media/characters/reza/back.svg",
  20374. extra: 1183 / 1111,
  20375. bottom: 0.01
  20376. }
  20377. },
  20378. drake: {
  20379. height: math.unit(30, "feet"),
  20380. weight: math.unit(246960, "lb"),
  20381. name: "Drake",
  20382. image: {
  20383. source: "./media/characters/reza/drake.svg",
  20384. extra: 2350 / 2024,
  20385. bottom: 60.7 / 2403
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(4, "feet"),
  20393. default: true
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20399. {
  20400. side: {
  20401. height: math.unit(15, "feet"),
  20402. weight: math.unit(14, "tons"),
  20403. name: "Side",
  20404. image: {
  20405. source: "./media/characters/athea/side.svg",
  20406. extra: 960 / 540,
  20407. bottom: 0.003
  20408. }
  20409. },
  20410. sitting: {
  20411. height: math.unit(6 * 2.85, "feet"),
  20412. weight: math.unit(14, "tons"),
  20413. name: "Sitting",
  20414. image: {
  20415. source: "./media/characters/athea/sitting.svg",
  20416. extra: 621 / 581,
  20417. bottom: 0.075
  20418. }
  20419. },
  20420. maw: {
  20421. height: math.unit(7.59498031496063, "feet"),
  20422. name: "Maw",
  20423. image: {
  20424. source: "./media/characters/athea/maw.svg"
  20425. }
  20426. },
  20427. },
  20428. [
  20429. {
  20430. name: "Lap Cat",
  20431. height: math.unit(2.5, "feet")
  20432. },
  20433. {
  20434. name: "Minimacro",
  20435. height: math.unit(15, "feet"),
  20436. default: true
  20437. },
  20438. {
  20439. name: "Macro",
  20440. height: math.unit(120, "feet")
  20441. },
  20442. {
  20443. name: "Macro+",
  20444. height: math.unit(640, "feet")
  20445. },
  20446. {
  20447. name: "Colossus",
  20448. height: math.unit(2.2, "miles")
  20449. },
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20454. {
  20455. front: {
  20456. height: math.unit(8 + 8 / 12, "feet"),
  20457. weight: math.unit(130, "kg"),
  20458. name: "Front",
  20459. image: {
  20460. source: "./media/characters/seroko/front.svg",
  20461. extra: 1385 / 1280,
  20462. bottom: 0.025
  20463. }
  20464. },
  20465. back: {
  20466. height: math.unit(8 + 8 / 12, "feet"),
  20467. weight: math.unit(130, "kg"),
  20468. name: "Back",
  20469. image: {
  20470. source: "./media/characters/seroko/back.svg",
  20471. extra: 1369 / 1238,
  20472. bottom: 0.018
  20473. }
  20474. },
  20475. frontDressed: {
  20476. height: math.unit(8 + 8 / 12, "feet"),
  20477. weight: math.unit(130, "kg"),
  20478. name: "Front (Dressed)",
  20479. image: {
  20480. source: "./media/characters/seroko/front-dressed.svg",
  20481. extra: 1366 / 1275,
  20482. bottom: 0.03
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(8 + 8 / 12, "feet"),
  20490. default: true
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20496. {
  20497. front: {
  20498. height: math.unit(5.5, "feet"),
  20499. weight: math.unit(160, "lb"),
  20500. name: "Front",
  20501. image: {
  20502. source: "./media/characters/quatzi/front.svg",
  20503. extra: 2346 / 2242,
  20504. bottom: 0.015
  20505. }
  20506. },
  20507. },
  20508. [
  20509. {
  20510. name: "Normal",
  20511. height: math.unit(5.5, "feet"),
  20512. default: true
  20513. },
  20514. {
  20515. name: "Big",
  20516. height: math.unit(7.7, "feet")
  20517. },
  20518. ]
  20519. ))
  20520. characterMakers.push(() => makeCharacter(
  20521. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20522. {
  20523. front: {
  20524. height: math.unit(5 + 11 / 12, "feet"),
  20525. weight: math.unit(180, "lb"),
  20526. name: "Front",
  20527. image: {
  20528. source: "./media/characters/sen/front.svg",
  20529. extra: 1321 / 1254,
  20530. bottom: 0.015
  20531. }
  20532. },
  20533. side: {
  20534. height: math.unit(5 + 11 / 12, "feet"),
  20535. weight: math.unit(180, "lb"),
  20536. name: "Side",
  20537. image: {
  20538. source: "./media/characters/sen/side.svg",
  20539. extra: 1321 / 1254,
  20540. bottom: 0.007
  20541. }
  20542. },
  20543. back: {
  20544. height: math.unit(5 + 11 / 12, "feet"),
  20545. weight: math.unit(180, "lb"),
  20546. name: "Back",
  20547. image: {
  20548. source: "./media/characters/sen/back.svg",
  20549. extra: 1321 / 1254
  20550. }
  20551. },
  20552. },
  20553. [
  20554. {
  20555. name: "Normal",
  20556. height: math.unit(5 + 11 / 12, "feet"),
  20557. default: true
  20558. },
  20559. ]
  20560. ))
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20563. {
  20564. front: {
  20565. height: math.unit(166.6, "cm"),
  20566. weight: math.unit(66.6, "kg"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/fruity/front.svg",
  20570. extra: 1510 / 1386,
  20571. bottom: 0.04
  20572. }
  20573. },
  20574. back: {
  20575. height: math.unit(166.6, "cm"),
  20576. weight: math.unit(66.6, "lb"),
  20577. name: "Back",
  20578. image: {
  20579. source: "./media/characters/fruity/back.svg",
  20580. extra: 1563 / 1435,
  20581. bottom: 0.005
  20582. }
  20583. },
  20584. },
  20585. [
  20586. {
  20587. name: "Normal",
  20588. height: math.unit(166.6, "cm"),
  20589. default: true
  20590. },
  20591. {
  20592. name: "Demonic",
  20593. height: math.unit(166.6, "feet")
  20594. },
  20595. ]
  20596. ))
  20597. characterMakers.push(() => makeCharacter(
  20598. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20599. {
  20600. side: {
  20601. height: math.unit(10, "feet"),
  20602. weight: math.unit(500, "lb"),
  20603. name: "Side",
  20604. image: {
  20605. source: "./media/characters/zost/side.svg",
  20606. extra: 966 / 880,
  20607. bottom: 0.075
  20608. }
  20609. },
  20610. mawFront: {
  20611. height: math.unit(1.08, "meters"),
  20612. name: "Maw (Front)",
  20613. image: {
  20614. source: "./media/characters/zost/maw-front.svg"
  20615. }
  20616. },
  20617. mawSide: {
  20618. height: math.unit(2.66, "feet"),
  20619. name: "Maw (Side)",
  20620. image: {
  20621. source: "./media/characters/zost/maw-side.svg"
  20622. }
  20623. },
  20624. },
  20625. [
  20626. {
  20627. name: "Normal",
  20628. height: math.unit(10, "feet"),
  20629. default: true
  20630. },
  20631. ]
  20632. ))
  20633. characterMakers.push(() => makeCharacter(
  20634. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20635. {
  20636. front: {
  20637. height: math.unit(5 + 4 / 12, "feet"),
  20638. weight: math.unit(120, "lb"),
  20639. name: "Front",
  20640. image: {
  20641. source: "./media/characters/luci/front.svg",
  20642. extra: 1985 / 1884,
  20643. bottom: 0.04
  20644. }
  20645. },
  20646. back: {
  20647. height: math.unit(5 + 4 / 12, "feet"),
  20648. weight: math.unit(120, "lb"),
  20649. name: "Back",
  20650. image: {
  20651. source: "./media/characters/luci/back.svg",
  20652. extra: 1892 / 1791,
  20653. bottom: 0.002
  20654. }
  20655. },
  20656. },
  20657. [
  20658. {
  20659. name: "Normal",
  20660. height: math.unit(5 + 4 / 12, "feet"),
  20661. default: true
  20662. },
  20663. ]
  20664. ))
  20665. characterMakers.push(() => makeCharacter(
  20666. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20667. {
  20668. front: {
  20669. height: math.unit(1500, "feet"),
  20670. weight: math.unit(3.8e6, "tons"),
  20671. name: "Front",
  20672. image: {
  20673. source: "./media/characters/2th/front.svg",
  20674. extra: 3489 / 3350,
  20675. bottom: 0.1
  20676. }
  20677. },
  20678. foot: {
  20679. height: math.unit(461, "feet"),
  20680. name: "Foot",
  20681. image: {
  20682. source: "./media/characters/2th/foot.svg"
  20683. }
  20684. },
  20685. },
  20686. [
  20687. {
  20688. name: "\"Micro\"",
  20689. height: math.unit(15 + 7 / 12, "feet")
  20690. },
  20691. {
  20692. name: "Normal",
  20693. height: math.unit(1500, "feet"),
  20694. default: true
  20695. },
  20696. {
  20697. name: "Macro",
  20698. height: math.unit(5000, "feet")
  20699. },
  20700. {
  20701. name: "Megamacro",
  20702. height: math.unit(15, "miles")
  20703. },
  20704. {
  20705. name: "Gigamacro",
  20706. height: math.unit(4000, "miles")
  20707. },
  20708. {
  20709. name: "Galactic",
  20710. height: math.unit(50, "AU")
  20711. },
  20712. ]
  20713. ))
  20714. characterMakers.push(() => makeCharacter(
  20715. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20716. {
  20717. front: {
  20718. height: math.unit(5 + 6 / 12, "feet"),
  20719. weight: math.unit(220, "lb"),
  20720. name: "Front",
  20721. image: {
  20722. source: "./media/characters/amethyst/front.svg",
  20723. extra: 2078 / 2040,
  20724. bottom: 0.045
  20725. }
  20726. },
  20727. back: {
  20728. height: math.unit(5 + 6 / 12, "feet"),
  20729. weight: math.unit(220, "lb"),
  20730. name: "Back",
  20731. image: {
  20732. source: "./media/characters/amethyst/back.svg",
  20733. extra: 2021 / 1989,
  20734. bottom: 0.02
  20735. }
  20736. },
  20737. },
  20738. [
  20739. {
  20740. name: "Normal",
  20741. height: math.unit(5 + 6 / 12, "feet"),
  20742. default: true
  20743. },
  20744. ]
  20745. ))
  20746. characterMakers.push(() => makeCharacter(
  20747. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20748. {
  20749. front: {
  20750. height: math.unit(4 + 11 / 12, "feet"),
  20751. weight: math.unit(120, "lb"),
  20752. name: "Front",
  20753. image: {
  20754. source: "./media/characters/yumi-akiyama/front.svg",
  20755. extra: 1327 / 1235,
  20756. bottom: 0.02
  20757. }
  20758. },
  20759. back: {
  20760. height: math.unit(4 + 11 / 12, "feet"),
  20761. weight: math.unit(120, "lb"),
  20762. name: "Back",
  20763. image: {
  20764. source: "./media/characters/yumi-akiyama/back.svg",
  20765. extra: 1287 / 1245,
  20766. bottom: 0.002
  20767. }
  20768. },
  20769. },
  20770. [
  20771. {
  20772. name: "Galactic",
  20773. height: math.unit(50, "galaxies"),
  20774. default: true
  20775. },
  20776. {
  20777. name: "Universal",
  20778. height: math.unit(100, "universes")
  20779. },
  20780. ]
  20781. ))
  20782. characterMakers.push(() => makeCharacter(
  20783. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20784. {
  20785. front: {
  20786. height: math.unit(8, "feet"),
  20787. weight: math.unit(500, "lb"),
  20788. name: "Front",
  20789. image: {
  20790. source: "./media/characters/rifter-yrmori/front.svg",
  20791. extra: 1180 / 1125,
  20792. bottom: 0.02
  20793. }
  20794. },
  20795. back: {
  20796. height: math.unit(8, "feet"),
  20797. weight: math.unit(500, "lb"),
  20798. name: "Back",
  20799. image: {
  20800. source: "./media/characters/rifter-yrmori/back.svg",
  20801. extra: 1190 / 1145,
  20802. bottom: 0.001
  20803. }
  20804. },
  20805. wings: {
  20806. height: math.unit(7.75, "feet"),
  20807. weight: math.unit(500, "lb"),
  20808. name: "Wings",
  20809. image: {
  20810. source: "./media/characters/rifter-yrmori/wings.svg",
  20811. extra: 1357 / 1285
  20812. }
  20813. },
  20814. maw: {
  20815. height: math.unit(0.8, "feet"),
  20816. name: "Maw",
  20817. image: {
  20818. source: "./media/characters/rifter-yrmori/maw.svg"
  20819. }
  20820. },
  20821. mawfront: {
  20822. height: math.unit(1.45, "feet"),
  20823. name: "Maw (Front)",
  20824. image: {
  20825. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Normal",
  20832. height: math.unit(8, "feet"),
  20833. default: true
  20834. },
  20835. {
  20836. name: "Macro",
  20837. height: math.unit(42, "meters")
  20838. },
  20839. ]
  20840. ))
  20841. characterMakers.push(() => makeCharacter(
  20842. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20843. {
  20844. were: {
  20845. height: math.unit(25 + 6 / 12, "feet"),
  20846. weight: math.unit(10000, "lb"),
  20847. name: "Were",
  20848. image: {
  20849. source: "./media/characters/tahajin/were.svg",
  20850. extra: 801 / 770,
  20851. bottom: 0.042
  20852. }
  20853. },
  20854. aquatic: {
  20855. height: math.unit(6 + 4 / 12, "feet"),
  20856. weight: math.unit(160, "lb"),
  20857. name: "Aquatic",
  20858. image: {
  20859. source: "./media/characters/tahajin/aquatic.svg",
  20860. extra: 572 / 542,
  20861. bottom: 0.04
  20862. }
  20863. },
  20864. chow: {
  20865. height: math.unit(8 + 11 / 12, "feet"),
  20866. weight: math.unit(450, "lb"),
  20867. name: "Chow",
  20868. image: {
  20869. source: "./media/characters/tahajin/chow.svg",
  20870. extra: 660 / 640,
  20871. bottom: 0.015
  20872. }
  20873. },
  20874. demiNaga: {
  20875. height: math.unit(6 + 8 / 12, "feet"),
  20876. weight: math.unit(300, "lb"),
  20877. name: "Demi Naga",
  20878. image: {
  20879. source: "./media/characters/tahajin/demi-naga.svg",
  20880. extra: 643 / 615,
  20881. bottom: 0.1
  20882. }
  20883. },
  20884. data: {
  20885. height: math.unit(5, "inches"),
  20886. weight: math.unit(0.1, "lb"),
  20887. name: "Data",
  20888. image: {
  20889. source: "./media/characters/tahajin/data.svg"
  20890. }
  20891. },
  20892. fluu: {
  20893. height: math.unit(5 + 7 / 12, "feet"),
  20894. weight: math.unit(140, "lb"),
  20895. name: "Fluu",
  20896. image: {
  20897. source: "./media/characters/tahajin/fluu.svg",
  20898. extra: 628 / 592,
  20899. bottom: 0.02
  20900. }
  20901. },
  20902. starWarrior: {
  20903. height: math.unit(4 + 5 / 12, "feet"),
  20904. weight: math.unit(50, "lb"),
  20905. name: "Star Warrior",
  20906. image: {
  20907. source: "./media/characters/tahajin/star-warrior.svg"
  20908. }
  20909. },
  20910. },
  20911. [
  20912. {
  20913. name: "Normal",
  20914. height: math.unit(25 + 6 / 12, "feet"),
  20915. default: true
  20916. },
  20917. ]
  20918. ))
  20919. characterMakers.push(() => makeCharacter(
  20920. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20921. {
  20922. front: {
  20923. height: math.unit(8, "feet"),
  20924. weight: math.unit(350, "lb"),
  20925. name: "Front",
  20926. image: {
  20927. source: "./media/characters/gabira/front.svg",
  20928. extra: 608 / 580,
  20929. bottom: 0.03
  20930. }
  20931. },
  20932. back: {
  20933. height: math.unit(8, "feet"),
  20934. weight: math.unit(350, "lb"),
  20935. name: "Back",
  20936. image: {
  20937. source: "./media/characters/gabira/back.svg",
  20938. extra: 608 / 580,
  20939. bottom: 0.03
  20940. }
  20941. },
  20942. },
  20943. [
  20944. {
  20945. name: "Normal",
  20946. height: math.unit(8, "feet"),
  20947. default: true
  20948. },
  20949. ]
  20950. ))
  20951. characterMakers.push(() => makeCharacter(
  20952. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20953. {
  20954. front: {
  20955. height: math.unit(5 + 3 / 12, "feet"),
  20956. weight: math.unit(137, "lb"),
  20957. name: "Front",
  20958. image: {
  20959. source: "./media/characters/sasha-katraine/front.svg",
  20960. bottom: 0.045
  20961. }
  20962. },
  20963. },
  20964. [
  20965. {
  20966. name: "Micro",
  20967. height: math.unit(5, "inches")
  20968. },
  20969. {
  20970. name: "Normal",
  20971. height: math.unit(5 + 3 / 12, "feet"),
  20972. default: true
  20973. },
  20974. ]
  20975. ))
  20976. characterMakers.push(() => makeCharacter(
  20977. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20978. {
  20979. side: {
  20980. height: math.unit(4, "inches"),
  20981. weight: math.unit(200, "grams"),
  20982. name: "Side",
  20983. image: {
  20984. source: "./media/characters/der/side.svg",
  20985. extra: 719 / 400,
  20986. bottom: 30.6 / 749.9187
  20987. }
  20988. },
  20989. },
  20990. [
  20991. {
  20992. name: "Micro",
  20993. height: math.unit(4, "inches"),
  20994. default: true
  20995. },
  20996. ]
  20997. ))
  20998. characterMakers.push(() => makeCharacter(
  20999. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21000. {
  21001. side: {
  21002. height: math.unit(30, "meters"),
  21003. weight: math.unit(700, "tonnes"),
  21004. name: "Side",
  21005. image: {
  21006. source: "./media/characters/fixerdragon/side.svg",
  21007. extra: (1293.0514 - 116.03) / 1106.86,
  21008. bottom: 116.03 / 1293.0514
  21009. }
  21010. },
  21011. },
  21012. [
  21013. {
  21014. name: "Planck",
  21015. height: math.unit(1.6e-35, "meters")
  21016. },
  21017. {
  21018. name: "Micro",
  21019. height: math.unit(0.4, "meters")
  21020. },
  21021. {
  21022. name: "Normal",
  21023. height: math.unit(30, "meters"),
  21024. default: true
  21025. },
  21026. {
  21027. name: "Megamacro",
  21028. height: math.unit(1.2, "megameters")
  21029. },
  21030. {
  21031. name: "Teramacro",
  21032. height: math.unit(130, "terameters")
  21033. },
  21034. {
  21035. name: "Yottamacro",
  21036. height: math.unit(6200, "yottameters")
  21037. },
  21038. ]
  21039. ));
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21042. {
  21043. front: {
  21044. height: math.unit(8, "feet"),
  21045. weight: math.unit(250, "lb"),
  21046. name: "Front",
  21047. image: {
  21048. source: "./media/characters/kite/front.svg",
  21049. extra: 2796 / 2659,
  21050. bottom: 0.002
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(8, "feet"),
  21058. default: true
  21059. },
  21060. {
  21061. name: "Macro",
  21062. height: math.unit(360, "feet")
  21063. },
  21064. {
  21065. name: "Megamacro",
  21066. height: math.unit(1500, "feet")
  21067. },
  21068. ]
  21069. ))
  21070. characterMakers.push(() => makeCharacter(
  21071. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21072. {
  21073. front: {
  21074. height: math.unit(5 + 10 / 12, "feet"),
  21075. weight: math.unit(150, "lb"),
  21076. name: "Front",
  21077. image: {
  21078. source: "./media/characters/poojawa-vynar/front.svg",
  21079. extra: (1506.1547 - 55) / 1356.6,
  21080. bottom: 55 / 1506.1547
  21081. }
  21082. },
  21083. frontTailless: {
  21084. height: math.unit(5 + 10 / 12, "feet"),
  21085. weight: math.unit(150, "lb"),
  21086. name: "Front (Tailless)",
  21087. image: {
  21088. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21089. extra: (1506.1547 - 55) / 1356.6,
  21090. bottom: 55 / 1506.1547
  21091. }
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Normal",
  21097. height: math.unit(5 + 10 / 12, "feet"),
  21098. default: true
  21099. },
  21100. ]
  21101. ))
  21102. characterMakers.push(() => makeCharacter(
  21103. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21104. {
  21105. front: {
  21106. height: math.unit(293, "meters"),
  21107. weight: math.unit(70400, "tons"),
  21108. name: "Front",
  21109. image: {
  21110. source: "./media/characters/violette/front.svg",
  21111. extra: 1227 / 1180,
  21112. bottom: 0.005
  21113. }
  21114. },
  21115. back: {
  21116. height: math.unit(293, "meters"),
  21117. weight: math.unit(70400, "tons"),
  21118. name: "Back",
  21119. image: {
  21120. source: "./media/characters/violette/back.svg",
  21121. extra: 1227 / 1180,
  21122. bottom: 0.005
  21123. }
  21124. },
  21125. },
  21126. [
  21127. {
  21128. name: "Macro",
  21129. height: math.unit(293, "meters"),
  21130. default: true
  21131. },
  21132. ]
  21133. ))
  21134. characterMakers.push(() => makeCharacter(
  21135. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21136. {
  21137. front: {
  21138. height: math.unit(1050, "feet"),
  21139. weight: math.unit(200000, "tons"),
  21140. name: "Front",
  21141. image: {
  21142. source: "./media/characters/alessandra/front.svg",
  21143. extra: 960 / 912,
  21144. bottom: 0.06
  21145. }
  21146. },
  21147. },
  21148. [
  21149. {
  21150. name: "Macro",
  21151. height: math.unit(1050, "feet")
  21152. },
  21153. {
  21154. name: "Macro+",
  21155. height: math.unit(900, "meters"),
  21156. default: true
  21157. },
  21158. ]
  21159. ))
  21160. characterMakers.push(() => makeCharacter(
  21161. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21162. {
  21163. front: {
  21164. height: math.unit(5, "feet"),
  21165. weight: math.unit(187, "lb"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/person/front.svg",
  21169. extra: 3087 / 2945,
  21170. bottom: 91 / 3181
  21171. }
  21172. },
  21173. },
  21174. [
  21175. {
  21176. name: "Micro",
  21177. height: math.unit(3, "inches")
  21178. },
  21179. {
  21180. name: "Normal",
  21181. height: math.unit(5, "feet"),
  21182. default: true
  21183. },
  21184. {
  21185. name: "Macro",
  21186. height: math.unit(90, "feet")
  21187. },
  21188. {
  21189. name: "Max Size",
  21190. height: math.unit(280, "feet")
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21196. {
  21197. front: {
  21198. height: math.unit(4.5, "meters"),
  21199. weight: math.unit(3200, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/ty/front.svg",
  21203. extra: 1038 / 960,
  21204. bottom: 31.156 / 1068
  21205. }
  21206. },
  21207. back: {
  21208. height: math.unit(4.5, "meters"),
  21209. weight: math.unit(3200, "lb"),
  21210. name: "Back",
  21211. image: {
  21212. source: "./media/characters/ty/back.svg",
  21213. extra: 1044 / 966,
  21214. bottom: 7.48 / 1049
  21215. }
  21216. },
  21217. },
  21218. [
  21219. {
  21220. name: "Normal",
  21221. height: math.unit(4.5, "meters"),
  21222. default: true
  21223. },
  21224. ]
  21225. ))
  21226. characterMakers.push(() => makeCharacter(
  21227. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21228. {
  21229. front: {
  21230. height: math.unit(5 + 4 / 12, "feet"),
  21231. weight: math.unit(115, "lb"),
  21232. name: "Front",
  21233. image: {
  21234. source: "./media/characters/rocky/front.svg",
  21235. extra: 1012 / 975,
  21236. bottom: 54 / 1066
  21237. }
  21238. },
  21239. },
  21240. [
  21241. {
  21242. name: "Normal",
  21243. height: math.unit(5 + 4 / 12, "feet"),
  21244. default: true
  21245. },
  21246. ]
  21247. ))
  21248. characterMakers.push(() => makeCharacter(
  21249. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21250. {
  21251. upright: {
  21252. height: math.unit(6, "meters"),
  21253. weight: math.unit(4000, "kg"),
  21254. name: "Upright",
  21255. image: {
  21256. source: "./media/characters/ruin/upright.svg",
  21257. extra: 668 / 661,
  21258. bottom: 42 / 799.8396
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Normal",
  21265. height: math.unit(6, "meters"),
  21266. default: true
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21272. {
  21273. front: {
  21274. height: math.unit(5, "feet"),
  21275. weight: math.unit(106, "lb"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/robin/front.svg",
  21279. extra: 862 / 799,
  21280. bottom: 42.4 / 914.8856
  21281. }
  21282. },
  21283. },
  21284. [
  21285. {
  21286. name: "Normal",
  21287. height: math.unit(5, "feet"),
  21288. default: true
  21289. },
  21290. ]
  21291. ))
  21292. characterMakers.push(() => makeCharacter(
  21293. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21294. {
  21295. side: {
  21296. height: math.unit(3, "feet"),
  21297. weight: math.unit(225, "lb"),
  21298. name: "Side",
  21299. image: {
  21300. source: "./media/characters/saian/side.svg",
  21301. extra: 566 / 356,
  21302. bottom: 79.7 / 643
  21303. }
  21304. },
  21305. maw: {
  21306. height: math.unit(2.85, "feet"),
  21307. name: "Maw",
  21308. image: {
  21309. source: "./media/characters/saian/maw.svg"
  21310. }
  21311. },
  21312. },
  21313. [
  21314. {
  21315. name: "Normal",
  21316. height: math.unit(3, "feet"),
  21317. default: true
  21318. },
  21319. ]
  21320. ))
  21321. characterMakers.push(() => makeCharacter(
  21322. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21323. {
  21324. side: {
  21325. height: math.unit(8, "feet"),
  21326. weight: math.unit(300, "lb"),
  21327. name: "Side",
  21328. image: {
  21329. source: "./media/characters/equus-silvermane/side.svg",
  21330. extra: 2176 / 2050,
  21331. bottom: 65.7 / 2245
  21332. }
  21333. },
  21334. front: {
  21335. height: math.unit(8, "feet"),
  21336. weight: math.unit(300, "lb"),
  21337. name: "Front",
  21338. image: {
  21339. source: "./media/characters/equus-silvermane/front.svg",
  21340. extra: 4633 / 4400,
  21341. bottom: 71.3 / 4706.915
  21342. }
  21343. },
  21344. sideStepping: {
  21345. height: math.unit(8, "feet"),
  21346. weight: math.unit(300, "lb"),
  21347. name: "Side (Stepping)",
  21348. image: {
  21349. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21350. extra: 1968 / 1860,
  21351. bottom: 16.4 / 1989
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(8, "feet")
  21359. },
  21360. {
  21361. name: "Minimacro",
  21362. height: math.unit(75, "feet"),
  21363. default: true
  21364. },
  21365. {
  21366. name: "Macro",
  21367. height: math.unit(150, "feet")
  21368. },
  21369. {
  21370. name: "Macro+",
  21371. height: math.unit(1000, "feet")
  21372. },
  21373. {
  21374. name: "Megamacro",
  21375. height: math.unit(1, "mile")
  21376. },
  21377. ]
  21378. ))
  21379. characterMakers.push(() => makeCharacter(
  21380. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21381. {
  21382. side: {
  21383. height: math.unit(20, "feet"),
  21384. weight: math.unit(30000, "kg"),
  21385. name: "Side",
  21386. image: {
  21387. source: "./media/characters/windar/side.svg",
  21388. extra: 1491 / 1248,
  21389. bottom: 82.56 / 1568
  21390. }
  21391. },
  21392. },
  21393. [
  21394. {
  21395. name: "Normal",
  21396. height: math.unit(20, "feet"),
  21397. default: true
  21398. },
  21399. ]
  21400. ))
  21401. characterMakers.push(() => makeCharacter(
  21402. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21403. {
  21404. side: {
  21405. height: math.unit(15.66, "feet"),
  21406. weight: math.unit(150, "lb"),
  21407. name: "Side",
  21408. image: {
  21409. source: "./media/characters/melody/side.svg",
  21410. extra: 1097 / 944,
  21411. bottom: 11.8 / 1109
  21412. }
  21413. },
  21414. sideOutfit: {
  21415. height: math.unit(15.66, "feet"),
  21416. weight: math.unit(150, "lb"),
  21417. name: "Side (Outfit)",
  21418. image: {
  21419. source: "./media/characters/melody/side-outfit.svg",
  21420. extra: 1097 / 944,
  21421. bottom: 11.8 / 1109
  21422. }
  21423. },
  21424. },
  21425. [
  21426. {
  21427. name: "Normal",
  21428. height: math.unit(15.66, "feet"),
  21429. default: true
  21430. },
  21431. ]
  21432. ))
  21433. characterMakers.push(() => makeCharacter(
  21434. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21435. {
  21436. front: {
  21437. height: math.unit(8, "feet"),
  21438. weight: math.unit(325, "lb"),
  21439. name: "Front",
  21440. image: {
  21441. source: "./media/characters/windera/front.svg",
  21442. extra: 3180 / 2845,
  21443. bottom: 178 / 3365
  21444. }
  21445. },
  21446. },
  21447. [
  21448. {
  21449. name: "Normal",
  21450. height: math.unit(8, "feet"),
  21451. default: true
  21452. },
  21453. ]
  21454. ))
  21455. characterMakers.push(() => makeCharacter(
  21456. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21457. {
  21458. front: {
  21459. height: math.unit(28.75, "feet"),
  21460. weight: math.unit(2000, "kg"),
  21461. name: "Front",
  21462. image: {
  21463. source: "./media/characters/sonear/front.svg",
  21464. extra: 1041.1 / 964.9,
  21465. bottom: 53.7 / 1096.6
  21466. }
  21467. },
  21468. },
  21469. [
  21470. {
  21471. name: "Normal",
  21472. height: math.unit(28.75, "feet"),
  21473. default: true
  21474. },
  21475. ]
  21476. ))
  21477. characterMakers.push(() => makeCharacter(
  21478. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21479. {
  21480. side: {
  21481. height: math.unit(25.5, "feet"),
  21482. weight: math.unit(23000, "kg"),
  21483. name: "Side",
  21484. image: {
  21485. source: "./media/characters/kanara/side.svg"
  21486. }
  21487. },
  21488. },
  21489. [
  21490. {
  21491. name: "Normal",
  21492. height: math.unit(25.5, "feet"),
  21493. default: true
  21494. },
  21495. ]
  21496. ))
  21497. characterMakers.push(() => makeCharacter(
  21498. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21499. {
  21500. side: {
  21501. height: math.unit(10, "feet"),
  21502. weight: math.unit(1000, "kg"),
  21503. name: "Side",
  21504. image: {
  21505. source: "./media/characters/ereus/side.svg",
  21506. extra: 1157 / 959,
  21507. bottom: 153 / 1312.5
  21508. }
  21509. },
  21510. },
  21511. [
  21512. {
  21513. name: "Normal",
  21514. height: math.unit(10, "feet"),
  21515. default: true
  21516. },
  21517. ]
  21518. ))
  21519. characterMakers.push(() => makeCharacter(
  21520. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21521. {
  21522. side: {
  21523. height: math.unit(4.5, "feet"),
  21524. weight: math.unit(500, "lb"),
  21525. name: "Side",
  21526. image: {
  21527. source: "./media/characters/e-ter/side.svg",
  21528. extra: 1550 / 1248,
  21529. bottom: 146 / 1694
  21530. }
  21531. },
  21532. },
  21533. [
  21534. {
  21535. name: "Normal",
  21536. height: math.unit(4.5, "feet"),
  21537. default: true
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21543. {
  21544. side: {
  21545. height: math.unit(9.7, "feet"),
  21546. weight: math.unit(4000, "kg"),
  21547. name: "Side",
  21548. image: {
  21549. source: "./media/characters/yamie/side.svg"
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(9.7, "feet"),
  21557. default: true
  21558. },
  21559. ]
  21560. ))
  21561. characterMakers.push(() => makeCharacter(
  21562. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21563. {
  21564. front: {
  21565. height: math.unit(50, "feet"),
  21566. weight: math.unit(50000, "kg"),
  21567. name: "Front",
  21568. image: {
  21569. source: "./media/characters/anders/front.svg",
  21570. extra: 570 / 539,
  21571. bottom: 14.7 / 586.7
  21572. }
  21573. },
  21574. },
  21575. [
  21576. {
  21577. name: "Large",
  21578. height: math.unit(50, "feet")
  21579. },
  21580. {
  21581. name: "Macro",
  21582. height: math.unit(2000, "feet"),
  21583. default: true
  21584. },
  21585. {
  21586. name: "Megamacro",
  21587. height: math.unit(12, "miles")
  21588. },
  21589. ]
  21590. ))
  21591. characterMakers.push(() => makeCharacter(
  21592. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21593. {
  21594. front: {
  21595. height: math.unit(7 + 2 / 12, "feet"),
  21596. weight: math.unit(300, "lb"),
  21597. name: "Front",
  21598. image: {
  21599. source: "./media/characters/reban/front.svg",
  21600. extra: 516 / 487,
  21601. bottom: 42.82 / 558.356
  21602. }
  21603. },
  21604. dick: {
  21605. height: math.unit(7 / 5, "feet"),
  21606. name: "Dick",
  21607. image: {
  21608. source: "./media/characters/reban/dick.svg"
  21609. }
  21610. },
  21611. },
  21612. [
  21613. {
  21614. name: "Natural Height",
  21615. height: math.unit(7 + 2 / 12, "feet")
  21616. },
  21617. {
  21618. name: "Macro",
  21619. height: math.unit(500, "feet"),
  21620. default: true
  21621. },
  21622. {
  21623. name: "Canon Height",
  21624. height: math.unit(50, "AU")
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21630. {
  21631. front: {
  21632. height: math.unit(6, "feet"),
  21633. weight: math.unit(150, "lb"),
  21634. name: "Front",
  21635. image: {
  21636. source: "./media/characters/terrance-keayes/front.svg",
  21637. extra: 1.005,
  21638. bottom: 151 / 1615
  21639. }
  21640. },
  21641. side: {
  21642. height: math.unit(6, "feet"),
  21643. weight: math.unit(150, "lb"),
  21644. name: "Side",
  21645. image: {
  21646. source: "./media/characters/terrance-keayes/side.svg",
  21647. extra: 1.005,
  21648. bottom: 129.4 / 1544
  21649. }
  21650. },
  21651. back: {
  21652. height: math.unit(6, "feet"),
  21653. weight: math.unit(150, "lb"),
  21654. name: "Back",
  21655. image: {
  21656. source: "./media/characters/terrance-keayes/back.svg",
  21657. extra: 1.005,
  21658. bottom: 58.4 / 1557.3
  21659. }
  21660. },
  21661. dick: {
  21662. height: math.unit(6 * 0.208, "feet"),
  21663. name: "Dick",
  21664. image: {
  21665. source: "./media/characters/terrance-keayes/dick.svg"
  21666. }
  21667. },
  21668. },
  21669. [
  21670. {
  21671. name: "Canon Height",
  21672. height: math.unit(35, "miles"),
  21673. default: true
  21674. },
  21675. ]
  21676. ))
  21677. characterMakers.push(() => makeCharacter(
  21678. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21679. {
  21680. front: {
  21681. height: math.unit(6, "feet"),
  21682. weight: math.unit(150, "lb"),
  21683. name: "Front",
  21684. image: {
  21685. source: "./media/characters/ofelia/front.svg",
  21686. extra: 546 / 541,
  21687. bottom: 39 / 583
  21688. }
  21689. },
  21690. back: {
  21691. height: math.unit(6, "feet"),
  21692. weight: math.unit(150, "lb"),
  21693. name: "Back",
  21694. image: {
  21695. source: "./media/characters/ofelia/back.svg",
  21696. extra: 564 / 559.5,
  21697. bottom: 8.69 / 573.02
  21698. }
  21699. },
  21700. maw: {
  21701. height: math.unit(1, "feet"),
  21702. name: "Maw",
  21703. image: {
  21704. source: "./media/characters/ofelia/maw.svg"
  21705. }
  21706. },
  21707. foot: {
  21708. height: math.unit(1.949, "feet"),
  21709. name: "Foot",
  21710. image: {
  21711. source: "./media/characters/ofelia/foot.svg"
  21712. }
  21713. },
  21714. },
  21715. [
  21716. {
  21717. name: "Canon Height",
  21718. height: math.unit(2000, "miles"),
  21719. default: true
  21720. },
  21721. ]
  21722. ))
  21723. characterMakers.push(() => makeCharacter(
  21724. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21725. {
  21726. front: {
  21727. height: math.unit(6, "feet"),
  21728. weight: math.unit(150, "lb"),
  21729. name: "Front",
  21730. image: {
  21731. source: "./media/characters/samuel/front.svg",
  21732. extra: 265 / 258,
  21733. bottom: 2 / 266.1566
  21734. }
  21735. },
  21736. },
  21737. [
  21738. {
  21739. name: "Macro",
  21740. height: math.unit(100, "feet"),
  21741. default: true
  21742. },
  21743. {
  21744. name: "Full Size",
  21745. height: math.unit(1000, "miles")
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21751. {
  21752. front: {
  21753. height: math.unit(6, "feet"),
  21754. weight: math.unit(300, "lb"),
  21755. name: "Front",
  21756. image: {
  21757. source: "./media/characters/beishir-kiel/front.svg",
  21758. extra: 569 / 547,
  21759. bottom: 41.9 / 609
  21760. }
  21761. },
  21762. maw: {
  21763. height: math.unit(6 * 0.202, "feet"),
  21764. name: "Maw",
  21765. image: {
  21766. source: "./media/characters/beishir-kiel/maw.svg"
  21767. }
  21768. },
  21769. },
  21770. [
  21771. {
  21772. name: "Macro",
  21773. height: math.unit(300, "feet"),
  21774. default: true
  21775. },
  21776. ]
  21777. ))
  21778. characterMakers.push(() => makeCharacter(
  21779. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21780. {
  21781. front: {
  21782. height: math.unit(5 + 8 / 12, "feet"),
  21783. weight: math.unit(120, "lb"),
  21784. name: "Front",
  21785. image: {
  21786. source: "./media/characters/logan-grey/front.svg",
  21787. extra: 2539 / 2393,
  21788. bottom: 97.6 / 2636.37
  21789. }
  21790. },
  21791. frontAlt: {
  21792. height: math.unit(5 + 8 / 12, "feet"),
  21793. weight: math.unit(120, "lb"),
  21794. name: "Front (Alt)",
  21795. image: {
  21796. source: "./media/characters/logan-grey/front-alt.svg",
  21797. extra: 958 / 893,
  21798. bottom: 15 / 970.768
  21799. }
  21800. },
  21801. back: {
  21802. height: math.unit(5 + 8 / 12, "feet"),
  21803. weight: math.unit(120, "lb"),
  21804. name: "Back",
  21805. image: {
  21806. source: "./media/characters/logan-grey/back.svg",
  21807. extra: 958 / 893,
  21808. bottom: 2.1881 / 970.9788
  21809. }
  21810. },
  21811. dick: {
  21812. height: math.unit(1.437, "feet"),
  21813. name: "Dick",
  21814. image: {
  21815. source: "./media/characters/logan-grey/dick.svg"
  21816. }
  21817. },
  21818. },
  21819. [
  21820. {
  21821. name: "Normal",
  21822. height: math.unit(5 + 8 / 12, "feet")
  21823. },
  21824. {
  21825. name: "The 500 Foot Femboy",
  21826. height: math.unit(500, "feet"),
  21827. default: true
  21828. },
  21829. {
  21830. name: "Megmacro",
  21831. height: math.unit(20, "miles")
  21832. },
  21833. ]
  21834. ))
  21835. characterMakers.push(() => makeCharacter(
  21836. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21837. {
  21838. front: {
  21839. height: math.unit(8 + 2 / 12, "feet"),
  21840. weight: math.unit(275, "lb"),
  21841. name: "Front",
  21842. image: {
  21843. source: "./media/characters/draganta/front.svg",
  21844. extra: 1177 / 1135,
  21845. bottom: 33.46 / 1212.1
  21846. }
  21847. },
  21848. },
  21849. [
  21850. {
  21851. name: "Normal",
  21852. height: math.unit(8 + 6 / 12, "feet"),
  21853. default: true
  21854. },
  21855. {
  21856. name: "Macro",
  21857. height: math.unit(150, "feet")
  21858. },
  21859. {
  21860. name: "Megamacro",
  21861. height: math.unit(1000, "miles")
  21862. },
  21863. ]
  21864. ))
  21865. characterMakers.push(() => makeCharacter(
  21866. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21867. {
  21868. front: {
  21869. height: math.unit(1.72, "m"),
  21870. weight: math.unit(80, "lb"),
  21871. name: "Front",
  21872. image: {
  21873. source: "./media/characters/voski/front.svg",
  21874. extra: 2076.22 / 2022.4,
  21875. bottom: 102.7 / 2177.3866
  21876. }
  21877. },
  21878. frontNsfw: {
  21879. height: math.unit(1.72, "m"),
  21880. weight: math.unit(80, "lb"),
  21881. name: "Front (NSFW)",
  21882. image: {
  21883. source: "./media/characters/voski/front-nsfw.svg",
  21884. extra: 2076.22 / 2022.4,
  21885. bottom: 102.7 / 2177.3866
  21886. }
  21887. },
  21888. back: {
  21889. height: math.unit(1.72, "m"),
  21890. weight: math.unit(80, "lb"),
  21891. name: "Back",
  21892. image: {
  21893. source: "./media/characters/voski/back.svg",
  21894. extra: 2104 / 2051,
  21895. bottom: 10.45 / 2113.63
  21896. }
  21897. },
  21898. },
  21899. [
  21900. {
  21901. name: "Normal",
  21902. height: math.unit(1.72, "m")
  21903. },
  21904. {
  21905. name: "Macro",
  21906. height: math.unit(55, "m"),
  21907. default: true
  21908. },
  21909. {
  21910. name: "Macro+",
  21911. height: math.unit(300, "m")
  21912. },
  21913. {
  21914. name: "Macro++",
  21915. height: math.unit(700, "m")
  21916. },
  21917. {
  21918. name: "Macro+++",
  21919. height: math.unit(4500, "m")
  21920. },
  21921. {
  21922. name: "Macro++++",
  21923. height: math.unit(45, "km")
  21924. },
  21925. {
  21926. name: "Macro+++++",
  21927. height: math.unit(1220, "km")
  21928. },
  21929. ]
  21930. ))
  21931. characterMakers.push(() => makeCharacter(
  21932. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21933. {
  21934. front: {
  21935. height: math.unit(2.3, "m"),
  21936. weight: math.unit(304, "kg"),
  21937. name: "Front",
  21938. image: {
  21939. source: "./media/characters/icowom-lee/front.svg",
  21940. extra: 985 / 955,
  21941. bottom: 25.4 / 1012
  21942. }
  21943. },
  21944. fronttentacles: {
  21945. height: math.unit(2.3, "m"),
  21946. weight: math.unit(304, "kg"),
  21947. name: "Front-tentacles",
  21948. image: {
  21949. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21950. extra: 985 / 955,
  21951. bottom: 25.4 / 1012
  21952. }
  21953. },
  21954. back: {
  21955. height: math.unit(2.3, "m"),
  21956. weight: math.unit(304, "kg"),
  21957. name: "Back",
  21958. image: {
  21959. source: "./media/characters/icowom-lee/back.svg",
  21960. extra: 975 / 954,
  21961. bottom: 9.5 / 985
  21962. }
  21963. },
  21964. backtentacles: {
  21965. height: math.unit(2.3, "m"),
  21966. weight: math.unit(304, "kg"),
  21967. name: "Back-tentacles",
  21968. image: {
  21969. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21970. extra: 975 / 954,
  21971. bottom: 9.5 / 985
  21972. }
  21973. },
  21974. frontDressed: {
  21975. height: math.unit(2.3, "m"),
  21976. weight: math.unit(304, "kg"),
  21977. name: "Front (Dressed)",
  21978. image: {
  21979. source: "./media/characters/icowom-lee/front-dressed.svg",
  21980. extra: 3076 / 2933,
  21981. bottom: 51.4 / 3125.1889
  21982. }
  21983. },
  21984. rump: {
  21985. height: math.unit(0.776, "meters"),
  21986. name: "Rump",
  21987. image: {
  21988. source: "./media/characters/icowom-lee/rump.svg"
  21989. }
  21990. },
  21991. genitals: {
  21992. height: math.unit(0.78, "meters"),
  21993. name: "Genitals",
  21994. image: {
  21995. source: "./media/characters/icowom-lee/genitals.svg"
  21996. }
  21997. },
  21998. },
  21999. [
  22000. {
  22001. name: "Normal",
  22002. height: math.unit(2.3, "meters"),
  22003. default: true
  22004. },
  22005. {
  22006. name: "Macro",
  22007. height: math.unit(94, "meters"),
  22008. default: true
  22009. },
  22010. ]
  22011. ))
  22012. characterMakers.push(() => makeCharacter(
  22013. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22014. {
  22015. front: {
  22016. height: math.unit(22, "meters"),
  22017. weight: math.unit(21000, "kg"),
  22018. name: "Front",
  22019. image: {
  22020. source: "./media/characters/shock-diamond/front.svg",
  22021. extra: 2204 / 2053,
  22022. bottom: 65 / 2239.47
  22023. }
  22024. },
  22025. frontNude: {
  22026. height: math.unit(22, "meters"),
  22027. weight: math.unit(21000, "kg"),
  22028. name: "Front (Nude)",
  22029. image: {
  22030. source: "./media/characters/shock-diamond/front-nude.svg",
  22031. extra: 2514 / 2285,
  22032. bottom: 13 / 2527.56
  22033. }
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Normal",
  22039. height: math.unit(3, "meters")
  22040. },
  22041. {
  22042. name: "Macro",
  22043. height: math.unit(22, "meters"),
  22044. default: true
  22045. },
  22046. ]
  22047. ))
  22048. characterMakers.push(() => makeCharacter(
  22049. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22050. {
  22051. front: {
  22052. height: math.unit(5 + 4 / 12, "feet"),
  22053. weight: math.unit(120, "lb"),
  22054. name: "Front",
  22055. image: {
  22056. source: "./media/characters/rory/front.svg",
  22057. extra: 589 / 556,
  22058. bottom: 45.7 / 635.76
  22059. }
  22060. },
  22061. frontNude: {
  22062. height: math.unit(5 + 4 / 12, "feet"),
  22063. weight: math.unit(120, "lb"),
  22064. name: "Front (Nude)",
  22065. image: {
  22066. source: "./media/characters/rory/front-nude.svg",
  22067. extra: 589 / 556,
  22068. bottom: 45.7 / 635.76
  22069. }
  22070. },
  22071. side: {
  22072. height: math.unit(5 + 4 / 12, "feet"),
  22073. weight: math.unit(120, "lb"),
  22074. name: "Side",
  22075. image: {
  22076. source: "./media/characters/rory/side.svg",
  22077. extra: 597 / 564,
  22078. bottom: 55 / 653
  22079. }
  22080. },
  22081. back: {
  22082. height: math.unit(5 + 4 / 12, "feet"),
  22083. weight: math.unit(120, "lb"),
  22084. name: "Back",
  22085. image: {
  22086. source: "./media/characters/rory/back.svg",
  22087. extra: 620 / 585,
  22088. bottom: 8.86 / 630.43
  22089. }
  22090. },
  22091. dick: {
  22092. height: math.unit(0.86, "feet"),
  22093. name: "Dick",
  22094. image: {
  22095. source: "./media/characters/rory/dick.svg"
  22096. }
  22097. },
  22098. },
  22099. [
  22100. {
  22101. name: "Normal",
  22102. height: math.unit(5 + 4 / 12, "feet"),
  22103. default: true
  22104. },
  22105. {
  22106. name: "Macro",
  22107. height: math.unit(100, "feet")
  22108. },
  22109. {
  22110. name: "Macro+",
  22111. height: math.unit(140, "feet")
  22112. },
  22113. {
  22114. name: "Macro++",
  22115. height: math.unit(300, "feet")
  22116. },
  22117. ]
  22118. ))
  22119. characterMakers.push(() => makeCharacter(
  22120. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22121. {
  22122. front: {
  22123. height: math.unit(5 + 9 / 12, "feet"),
  22124. weight: math.unit(190, "lb"),
  22125. name: "Front",
  22126. image: {
  22127. source: "./media/characters/sprisk/front.svg",
  22128. extra: 1225 / 1180,
  22129. bottom: 42.7 / 1266.4
  22130. }
  22131. },
  22132. frontNsfw: {
  22133. height: math.unit(5 + 9 / 12, "feet"),
  22134. weight: math.unit(190, "lb"),
  22135. name: "Front (NSFW)",
  22136. image: {
  22137. source: "./media/characters/sprisk/front-nsfw.svg",
  22138. extra: 1225 / 1180,
  22139. bottom: 42.7 / 1266.4
  22140. }
  22141. },
  22142. back: {
  22143. height: math.unit(5 + 9 / 12, "feet"),
  22144. weight: math.unit(190, "lb"),
  22145. name: "Back",
  22146. image: {
  22147. source: "./media/characters/sprisk/back.svg",
  22148. extra: 1247 / 1200,
  22149. bottom: 5.6 / 1253.04
  22150. }
  22151. },
  22152. },
  22153. [
  22154. {
  22155. name: "Tiny",
  22156. height: math.unit(2, "inches")
  22157. },
  22158. {
  22159. name: "Normal",
  22160. height: math.unit(5 + 9 / 12, "feet"),
  22161. default: true
  22162. },
  22163. {
  22164. name: "Mini Macro",
  22165. height: math.unit(18, "feet")
  22166. },
  22167. {
  22168. name: "Macro",
  22169. height: math.unit(100, "feet")
  22170. },
  22171. {
  22172. name: "MACRO",
  22173. height: math.unit(50, "miles")
  22174. },
  22175. {
  22176. name: "M A C R O",
  22177. height: math.unit(300, "miles")
  22178. },
  22179. ]
  22180. ))
  22181. characterMakers.push(() => makeCharacter(
  22182. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22183. {
  22184. side: {
  22185. height: math.unit(15.6, "meters"),
  22186. weight: math.unit(700000, "kg"),
  22187. name: "Side",
  22188. image: {
  22189. source: "./media/characters/bunsen/side.svg",
  22190. extra: 1644 / 358
  22191. }
  22192. },
  22193. foot: {
  22194. height: math.unit(1.611 * 1644 / 358, "meter"),
  22195. name: "Foot",
  22196. image: {
  22197. source: "./media/characters/bunsen/foot.svg"
  22198. }
  22199. },
  22200. },
  22201. [
  22202. {
  22203. name: "Small",
  22204. height: math.unit(10, "feet")
  22205. },
  22206. {
  22207. name: "Normal",
  22208. height: math.unit(15.6, "meters"),
  22209. default: true
  22210. },
  22211. ]
  22212. ))
  22213. characterMakers.push(() => makeCharacter(
  22214. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22215. {
  22216. front: {
  22217. height: math.unit(4 + 11 / 12, "feet"),
  22218. weight: math.unit(140, "lb"),
  22219. name: "Front",
  22220. image: {
  22221. source: "./media/characters/sesh/front.svg",
  22222. extra: 3420 / 3231,
  22223. bottom: 72 / 3949.5
  22224. }
  22225. },
  22226. },
  22227. [
  22228. {
  22229. name: "Normal",
  22230. height: math.unit(4 + 11 / 12, "feet")
  22231. },
  22232. {
  22233. name: "Grown",
  22234. height: math.unit(15, "feet"),
  22235. default: true
  22236. },
  22237. {
  22238. name: "Macro",
  22239. height: math.unit(1500, "feet")
  22240. },
  22241. {
  22242. name: "Megamacro",
  22243. height: math.unit(30, "miles")
  22244. },
  22245. {
  22246. name: "Continental",
  22247. height: math.unit(3000, "miles")
  22248. },
  22249. {
  22250. name: "Gravity Mass",
  22251. height: math.unit(300000, "miles")
  22252. },
  22253. {
  22254. name: "Planet Buster",
  22255. height: math.unit(30000000, "miles")
  22256. },
  22257. {
  22258. name: "Big",
  22259. height: math.unit(3000000000, "miles")
  22260. },
  22261. ]
  22262. ))
  22263. characterMakers.push(() => makeCharacter(
  22264. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22265. {
  22266. front: {
  22267. height: math.unit(9, "feet"),
  22268. weight: math.unit(350, "lb"),
  22269. name: "Front",
  22270. image: {
  22271. source: "./media/characters/pepper/front.svg",
  22272. extra: 1448 / 1312,
  22273. bottom: 9.4 / 1457.88
  22274. }
  22275. },
  22276. back: {
  22277. height: math.unit(9, "feet"),
  22278. weight: math.unit(350, "lb"),
  22279. name: "Back",
  22280. image: {
  22281. source: "./media/characters/pepper/back.svg",
  22282. extra: 1423 / 1300,
  22283. bottom: 4.6 / 1429
  22284. }
  22285. },
  22286. maw: {
  22287. height: math.unit(0.932, "feet"),
  22288. name: "Maw",
  22289. image: {
  22290. source: "./media/characters/pepper/maw.svg"
  22291. }
  22292. },
  22293. },
  22294. [
  22295. {
  22296. name: "Normal",
  22297. height: math.unit(9, "feet"),
  22298. default: true
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22304. {
  22305. front: {
  22306. height: math.unit(6, "feet"),
  22307. weight: math.unit(150, "lb"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/maelstrom/front.svg",
  22311. extra: 2100 / 1883,
  22312. bottom: 94 / 2196.7
  22313. }
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Less Kaiju",
  22319. height: math.unit(200, "feet")
  22320. },
  22321. {
  22322. name: "Kaiju",
  22323. height: math.unit(400, "feet"),
  22324. default: true
  22325. },
  22326. {
  22327. name: "Kaiju-er",
  22328. height: math.unit(600, "feet")
  22329. },
  22330. ]
  22331. ))
  22332. characterMakers.push(() => makeCharacter(
  22333. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22334. {
  22335. front: {
  22336. height: math.unit(6 + 5 / 12, "feet"),
  22337. weight: math.unit(180, "lb"),
  22338. name: "Front",
  22339. image: {
  22340. source: "./media/characters/lexir/front.svg",
  22341. extra: 180 / 172,
  22342. bottom: 12 / 192
  22343. }
  22344. },
  22345. back: {
  22346. height: math.unit(6 + 5 / 12, "feet"),
  22347. weight: math.unit(180, "lb"),
  22348. name: "Back",
  22349. image: {
  22350. source: "./media/characters/lexir/back.svg",
  22351. extra: 183.84 / 175.5,
  22352. bottom: 3.1 / 187
  22353. }
  22354. },
  22355. },
  22356. [
  22357. {
  22358. name: "Very Smal",
  22359. height: math.unit(1, "nm")
  22360. },
  22361. {
  22362. name: "Normal",
  22363. height: math.unit(6 + 5 / 12, "feet"),
  22364. default: true
  22365. },
  22366. {
  22367. name: "Macro",
  22368. height: math.unit(1, "mile")
  22369. },
  22370. {
  22371. name: "Megamacro",
  22372. height: math.unit(50, "miles")
  22373. },
  22374. ]
  22375. ))
  22376. characterMakers.push(() => makeCharacter(
  22377. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22378. {
  22379. front: {
  22380. height: math.unit(1.5, "meters"),
  22381. weight: math.unit(100, "lb"),
  22382. name: "Front",
  22383. image: {
  22384. source: "./media/characters/maksio/front.svg",
  22385. extra: 1549 / 1531,
  22386. bottom: 123.7 / 1674.5429
  22387. }
  22388. },
  22389. back: {
  22390. height: math.unit(1.5, "meters"),
  22391. weight: math.unit(100, "lb"),
  22392. name: "Back",
  22393. image: {
  22394. source: "./media/characters/maksio/back.svg",
  22395. extra: 1541 / 1509,
  22396. bottom: 97 / 1639
  22397. }
  22398. },
  22399. hand: {
  22400. height: math.unit(0.621, "feet"),
  22401. name: "Hand",
  22402. image: {
  22403. source: "./media/characters/maksio/hand.svg"
  22404. }
  22405. },
  22406. foot: {
  22407. height: math.unit(1.611, "feet"),
  22408. name: "Foot",
  22409. image: {
  22410. source: "./media/characters/maksio/foot.svg"
  22411. }
  22412. },
  22413. },
  22414. [
  22415. {
  22416. name: "Shrunken",
  22417. height: math.unit(10, "cm")
  22418. },
  22419. {
  22420. name: "Normal",
  22421. height: math.unit(150, "cm"),
  22422. default: true
  22423. },
  22424. ]
  22425. ))
  22426. characterMakers.push(() => makeCharacter(
  22427. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22428. {
  22429. front: {
  22430. height: math.unit(100, "feet"),
  22431. name: "Front",
  22432. image: {
  22433. source: "./media/characters/erza-bear/front.svg",
  22434. extra: 2449 / 2390,
  22435. bottom: 46 / 2494
  22436. }
  22437. },
  22438. back: {
  22439. height: math.unit(100, "feet"),
  22440. name: "Back",
  22441. image: {
  22442. source: "./media/characters/erza-bear/back.svg",
  22443. extra: 2489 / 2430,
  22444. bottom: 85.4 / 2480
  22445. }
  22446. },
  22447. tail: {
  22448. height: math.unit(42, "feet"),
  22449. name: "Tail",
  22450. image: {
  22451. source: "./media/characters/erza-bear/tail.svg"
  22452. }
  22453. },
  22454. tongue: {
  22455. height: math.unit(8, "feet"),
  22456. name: "Tongue",
  22457. image: {
  22458. source: "./media/characters/erza-bear/tongue.svg"
  22459. }
  22460. },
  22461. dick: {
  22462. height: math.unit(10.5, "feet"),
  22463. name: "Dick",
  22464. image: {
  22465. source: "./media/characters/erza-bear/dick.svg"
  22466. }
  22467. },
  22468. dickVertical: {
  22469. height: math.unit(16.9, "feet"),
  22470. name: "Dick (Vertical)",
  22471. image: {
  22472. source: "./media/characters/erza-bear/dick-vertical.svg"
  22473. }
  22474. },
  22475. },
  22476. [
  22477. {
  22478. name: "Macro",
  22479. height: math.unit(100, "feet"),
  22480. default: true
  22481. },
  22482. ]
  22483. ))
  22484. characterMakers.push(() => makeCharacter(
  22485. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22486. {
  22487. front: {
  22488. height: math.unit(172, "cm"),
  22489. weight: math.unit(73, "kg"),
  22490. name: "Front",
  22491. image: {
  22492. source: "./media/characters/violet-flor/front.svg",
  22493. extra: 1530 / 1442,
  22494. bottom: 61.9 / 1588.8
  22495. }
  22496. },
  22497. back: {
  22498. height: math.unit(180, "cm"),
  22499. weight: math.unit(73, "kg"),
  22500. name: "Back",
  22501. image: {
  22502. source: "./media/characters/violet-flor/back.svg",
  22503. extra: 1692 / 1630,
  22504. bottom: 20 / 1712
  22505. }
  22506. },
  22507. },
  22508. [
  22509. {
  22510. name: "Normal",
  22511. height: math.unit(172, "cm"),
  22512. default: true
  22513. },
  22514. ]
  22515. ))
  22516. characterMakers.push(() => makeCharacter(
  22517. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22518. {
  22519. front: {
  22520. height: math.unit(6, "feet"),
  22521. weight: math.unit(220, "lb"),
  22522. name: "Front",
  22523. image: {
  22524. source: "./media/characters/lynn-rhea/front.svg",
  22525. extra: 310 / 273
  22526. }
  22527. },
  22528. back: {
  22529. height: math.unit(6, "feet"),
  22530. weight: math.unit(220, "lb"),
  22531. name: "Back",
  22532. image: {
  22533. source: "./media/characters/lynn-rhea/back.svg",
  22534. extra: 310 / 273
  22535. }
  22536. },
  22537. dicks: {
  22538. height: math.unit(0.9, "feet"),
  22539. name: "Dicks",
  22540. image: {
  22541. source: "./media/characters/lynn-rhea/dicks.svg"
  22542. }
  22543. },
  22544. slit: {
  22545. height: math.unit(0.4, "feet"),
  22546. name: "Slit",
  22547. image: {
  22548. source: "./media/characters/lynn-rhea/slit.svg"
  22549. }
  22550. },
  22551. },
  22552. [
  22553. {
  22554. name: "Micro",
  22555. height: math.unit(1, "inch")
  22556. },
  22557. {
  22558. name: "Macro",
  22559. height: math.unit(60, "feet"),
  22560. default: true
  22561. },
  22562. {
  22563. name: "Megamacro",
  22564. height: math.unit(2, "miles")
  22565. },
  22566. {
  22567. name: "Gigamacro",
  22568. height: math.unit(3, "earths")
  22569. },
  22570. {
  22571. name: "Galactic",
  22572. height: math.unit(0.8, "galaxies")
  22573. },
  22574. ]
  22575. ))
  22576. characterMakers.push(() => makeCharacter(
  22577. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22578. {
  22579. front: {
  22580. height: math.unit(1600, "feet"),
  22581. weight: math.unit(85758785169, "kg"),
  22582. name: "Front",
  22583. image: {
  22584. source: "./media/characters/valathos/front.svg",
  22585. extra: 1451 / 1339
  22586. }
  22587. },
  22588. },
  22589. [
  22590. {
  22591. name: "Macro",
  22592. height: math.unit(1600, "feet"),
  22593. default: true
  22594. },
  22595. ]
  22596. ))
  22597. characterMakers.push(() => makeCharacter(
  22598. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22599. {
  22600. front: {
  22601. height: math.unit(7 + 5 / 12, "feet"),
  22602. weight: math.unit(300, "lb"),
  22603. name: "Front",
  22604. image: {
  22605. source: "./media/characters/azula/front.svg",
  22606. extra: 3208 / 2880,
  22607. bottom: 80.2 / 3277
  22608. }
  22609. },
  22610. back: {
  22611. height: math.unit(7 + 5 / 12, "feet"),
  22612. weight: math.unit(300, "lb"),
  22613. name: "Back",
  22614. image: {
  22615. source: "./media/characters/azula/back.svg",
  22616. extra: 3169 / 2822,
  22617. bottom: 150.6 / 3321
  22618. }
  22619. },
  22620. },
  22621. [
  22622. {
  22623. name: "Normal",
  22624. height: math.unit(7 + 5 / 12, "feet"),
  22625. default: true
  22626. },
  22627. {
  22628. name: "Big",
  22629. height: math.unit(20, "feet")
  22630. },
  22631. ]
  22632. ))
  22633. characterMakers.push(() => makeCharacter(
  22634. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22635. {
  22636. front: {
  22637. height: math.unit(5 + 1 / 12, "feet"),
  22638. weight: math.unit(110, "lb"),
  22639. name: "Front",
  22640. image: {
  22641. source: "./media/characters/rupert/front.svg",
  22642. extra: 1549 / 1495,
  22643. bottom: 54.2 / 1604.4
  22644. }
  22645. },
  22646. },
  22647. [
  22648. {
  22649. name: "Normal",
  22650. height: math.unit(5 + 1 / 12, "feet"),
  22651. default: true
  22652. },
  22653. ]
  22654. ))
  22655. characterMakers.push(() => makeCharacter(
  22656. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22657. {
  22658. front: {
  22659. height: math.unit(8 + 4 / 12, "feet"),
  22660. weight: math.unit(350, "lb"),
  22661. name: "Front",
  22662. image: {
  22663. source: "./media/characters/sheera-castellar/front.svg",
  22664. extra: 1957 / 1894,
  22665. bottom: 26.97 / 1975.017
  22666. }
  22667. },
  22668. side: {
  22669. height: math.unit(8 + 4 / 12, "feet"),
  22670. weight: math.unit(350, "lb"),
  22671. name: "Side",
  22672. image: {
  22673. source: "./media/characters/sheera-castellar/side.svg",
  22674. extra: 1957 / 1894
  22675. }
  22676. },
  22677. back: {
  22678. height: math.unit(8 + 4 / 12, "feet"),
  22679. weight: math.unit(350, "lb"),
  22680. name: "Back",
  22681. image: {
  22682. source: "./media/characters/sheera-castellar/back.svg",
  22683. extra: 1957 / 1894
  22684. }
  22685. },
  22686. angled: {
  22687. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22688. weight: math.unit(350, "lb"),
  22689. name: "Angled",
  22690. image: {
  22691. source: "./media/characters/sheera-castellar/angled.svg",
  22692. extra: 1807 / 1707,
  22693. bottom: 68 / 1875
  22694. }
  22695. },
  22696. genitals: {
  22697. height: math.unit(2.2, "feet"),
  22698. name: "Genitals",
  22699. image: {
  22700. source: "./media/characters/sheera-castellar/genitals.svg"
  22701. }
  22702. },
  22703. taur: {
  22704. height: math.unit(10 + 6/12, "feet"),
  22705. name: "Taur",
  22706. image: {
  22707. source: "./media/characters/sheera-castellar/taur.svg",
  22708. extra: 2017/1909,
  22709. bottom: 185/2202
  22710. }
  22711. },
  22712. },
  22713. [
  22714. {
  22715. name: "Normal",
  22716. height: math.unit(8 + 4 / 12, "feet")
  22717. },
  22718. {
  22719. name: "Macro",
  22720. height: math.unit(150, "feet"),
  22721. default: true
  22722. },
  22723. {
  22724. name: "Macro+",
  22725. height: math.unit(800, "feet")
  22726. },
  22727. ]
  22728. ))
  22729. characterMakers.push(() => makeCharacter(
  22730. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22731. {
  22732. front: {
  22733. height: math.unit(6, "feet"),
  22734. weight: math.unit(150, "lb"),
  22735. name: "Front",
  22736. image: {
  22737. source: "./media/characters/jaipur/front.svg",
  22738. extra: 3860 / 3731,
  22739. bottom: 287 / 4140
  22740. }
  22741. },
  22742. back: {
  22743. height: math.unit(6, "feet"),
  22744. weight: math.unit(150, "lb"),
  22745. name: "Back",
  22746. image: {
  22747. source: "./media/characters/jaipur/back.svg",
  22748. extra: 4060 / 3930,
  22749. bottom: 151 / 4200
  22750. }
  22751. },
  22752. },
  22753. [
  22754. {
  22755. name: "Normal",
  22756. height: math.unit(1.85, "meters"),
  22757. default: true
  22758. },
  22759. {
  22760. name: "Macro",
  22761. height: math.unit(150, "meters")
  22762. },
  22763. {
  22764. name: "Macro+",
  22765. height: math.unit(0.5, "miles")
  22766. },
  22767. {
  22768. name: "Macro++",
  22769. height: math.unit(2.5, "miles")
  22770. },
  22771. {
  22772. name: "Macro+++",
  22773. height: math.unit(12, "miles")
  22774. },
  22775. {
  22776. name: "Macro++++",
  22777. height: math.unit(120, "miles")
  22778. },
  22779. {
  22780. name: "Macro+++++",
  22781. height: math.unit(1200, "miles")
  22782. },
  22783. ]
  22784. ))
  22785. characterMakers.push(() => makeCharacter(
  22786. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22787. {
  22788. front: {
  22789. height: math.unit(6, "feet"),
  22790. weight: math.unit(150, "lb"),
  22791. name: "Front",
  22792. image: {
  22793. source: "./media/characters/sheila-wolf/front.svg",
  22794. extra: 1931 / 1808,
  22795. bottom: 29.5 / 1960
  22796. }
  22797. },
  22798. dick: {
  22799. height: math.unit(1.464, "feet"),
  22800. name: "Dick",
  22801. image: {
  22802. source: "./media/characters/sheila-wolf/dick.svg"
  22803. }
  22804. },
  22805. muzzle: {
  22806. height: math.unit(0.513, "feet"),
  22807. name: "Muzzle",
  22808. image: {
  22809. source: "./media/characters/sheila-wolf/muzzle.svg"
  22810. }
  22811. },
  22812. },
  22813. [
  22814. {
  22815. name: "Macro",
  22816. height: math.unit(70, "feet"),
  22817. default: true
  22818. },
  22819. ]
  22820. ))
  22821. characterMakers.push(() => makeCharacter(
  22822. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22823. {
  22824. front: {
  22825. height: math.unit(32, "meters"),
  22826. weight: math.unit(300000, "kg"),
  22827. name: "Front",
  22828. image: {
  22829. source: "./media/characters/almor/front.svg",
  22830. extra: 1408 / 1322,
  22831. bottom: 94.6 / 1506.5
  22832. }
  22833. },
  22834. },
  22835. [
  22836. {
  22837. name: "Macro",
  22838. height: math.unit(32, "meters"),
  22839. default: true
  22840. },
  22841. ]
  22842. ))
  22843. characterMakers.push(() => makeCharacter(
  22844. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22845. {
  22846. front: {
  22847. height: math.unit(7, "feet"),
  22848. weight: math.unit(200, "lb"),
  22849. name: "Front",
  22850. image: {
  22851. source: "./media/characters/silver/front.svg",
  22852. extra: 472.1 / 450.5,
  22853. bottom: 26.5 / 499.424
  22854. }
  22855. },
  22856. },
  22857. [
  22858. {
  22859. name: "Normal",
  22860. height: math.unit(7, "feet"),
  22861. default: true
  22862. },
  22863. {
  22864. name: "Macro",
  22865. height: math.unit(800, "feet")
  22866. },
  22867. {
  22868. name: "Megamacro",
  22869. height: math.unit(250, "miles")
  22870. },
  22871. ]
  22872. ))
  22873. characterMakers.push(() => makeCharacter(
  22874. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22875. {
  22876. front: {
  22877. height: math.unit(6, "feet"),
  22878. weight: math.unit(150, "lb"),
  22879. name: "Front",
  22880. image: {
  22881. source: "./media/characters/pliskin/front.svg",
  22882. extra: 1469 / 1359,
  22883. bottom: 70 / 1540
  22884. }
  22885. },
  22886. },
  22887. [
  22888. {
  22889. name: "Micro",
  22890. height: math.unit(3, "inches")
  22891. },
  22892. {
  22893. name: "Normal",
  22894. height: math.unit(5 + 11 / 12, "feet"),
  22895. default: true
  22896. },
  22897. {
  22898. name: "Macro",
  22899. height: math.unit(120, "feet")
  22900. },
  22901. ]
  22902. ))
  22903. characterMakers.push(() => makeCharacter(
  22904. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22905. {
  22906. front: {
  22907. height: math.unit(6, "feet"),
  22908. weight: math.unit(150, "lb"),
  22909. name: "Front",
  22910. image: {
  22911. source: "./media/characters/sammy/front.svg",
  22912. extra: 1193 / 1089,
  22913. bottom: 30.5 / 1226
  22914. }
  22915. },
  22916. },
  22917. [
  22918. {
  22919. name: "Macro",
  22920. height: math.unit(1700, "feet"),
  22921. default: true
  22922. },
  22923. {
  22924. name: "Examacro",
  22925. height: math.unit(2.5e9, "lightyears")
  22926. },
  22927. ]
  22928. ))
  22929. characterMakers.push(() => makeCharacter(
  22930. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22931. {
  22932. front: {
  22933. height: math.unit(21, "meters"),
  22934. weight: math.unit(12, "tonnes"),
  22935. name: "Front",
  22936. image: {
  22937. source: "./media/characters/kuru/front.svg",
  22938. extra: 4301 / 3785,
  22939. bottom: 371.3 / 4691
  22940. }
  22941. },
  22942. },
  22943. [
  22944. {
  22945. name: "Macro",
  22946. height: math.unit(21, "meters"),
  22947. default: true
  22948. },
  22949. ]
  22950. ))
  22951. characterMakers.push(() => makeCharacter(
  22952. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22953. {
  22954. front: {
  22955. height: math.unit(23, "meters"),
  22956. weight: math.unit(12.2, "tonnes"),
  22957. name: "Front",
  22958. image: {
  22959. source: "./media/characters/rakka/front.svg",
  22960. extra: 4670 / 4169,
  22961. bottom: 301 / 4968.7
  22962. }
  22963. },
  22964. },
  22965. [
  22966. {
  22967. name: "Macro",
  22968. height: math.unit(23, "meters"),
  22969. default: true
  22970. },
  22971. ]
  22972. ))
  22973. characterMakers.push(() => makeCharacter(
  22974. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22975. {
  22976. front: {
  22977. height: math.unit(6, "feet"),
  22978. weight: math.unit(150, "lb"),
  22979. name: "Front",
  22980. image: {
  22981. source: "./media/characters/rhys-feline/front.svg",
  22982. extra: 2488 / 2308,
  22983. bottom: 35.67 / 2519.19
  22984. }
  22985. },
  22986. },
  22987. [
  22988. {
  22989. name: "Really Small",
  22990. height: math.unit(1, "nm")
  22991. },
  22992. {
  22993. name: "Micro",
  22994. height: math.unit(4, "inches")
  22995. },
  22996. {
  22997. name: "Normal",
  22998. height: math.unit(4 + 10 / 12, "feet"),
  22999. default: true
  23000. },
  23001. {
  23002. name: "Macro",
  23003. height: math.unit(100, "feet")
  23004. },
  23005. {
  23006. name: "Megamacto",
  23007. height: math.unit(50, "miles")
  23008. },
  23009. ]
  23010. ))
  23011. characterMakers.push(() => makeCharacter(
  23012. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23013. {
  23014. side: {
  23015. height: math.unit(30, "feet"),
  23016. weight: math.unit(35000, "kg"),
  23017. name: "Side",
  23018. image: {
  23019. source: "./media/characters/alydar/side.svg",
  23020. extra: 234 / 222,
  23021. bottom: 6.5 / 241
  23022. }
  23023. },
  23024. front: {
  23025. height: math.unit(30, "feet"),
  23026. weight: math.unit(35000, "kg"),
  23027. name: "Front",
  23028. image: {
  23029. source: "./media/characters/alydar/front.svg",
  23030. extra: 223.37 / 210.2,
  23031. bottom: 22.3 / 246.76
  23032. }
  23033. },
  23034. top: {
  23035. height: math.unit(64.54, "feet"),
  23036. weight: math.unit(35000, "kg"),
  23037. name: "Top",
  23038. image: {
  23039. source: "./media/characters/alydar/top.svg"
  23040. }
  23041. },
  23042. anthro: {
  23043. height: math.unit(30, "feet"),
  23044. weight: math.unit(9000, "kg"),
  23045. name: "Anthro",
  23046. image: {
  23047. source: "./media/characters/alydar/anthro.svg",
  23048. extra: 432 / 421,
  23049. bottom: 7.18 / 440
  23050. }
  23051. },
  23052. maw: {
  23053. height: math.unit(11.693, "feet"),
  23054. name: "Maw",
  23055. image: {
  23056. source: "./media/characters/alydar/maw.svg"
  23057. }
  23058. },
  23059. head: {
  23060. height: math.unit(11.693, "feet"),
  23061. name: "Head",
  23062. image: {
  23063. source: "./media/characters/alydar/head.svg"
  23064. }
  23065. },
  23066. headAlt: {
  23067. height: math.unit(12.861, "feet"),
  23068. name: "Head (Alt)",
  23069. image: {
  23070. source: "./media/characters/alydar/head-alt.svg"
  23071. }
  23072. },
  23073. wing: {
  23074. height: math.unit(20.712, "feet"),
  23075. name: "Wing",
  23076. image: {
  23077. source: "./media/characters/alydar/wing.svg"
  23078. }
  23079. },
  23080. wingFeather: {
  23081. height: math.unit(9.662, "feet"),
  23082. name: "Wing Feather",
  23083. image: {
  23084. source: "./media/characters/alydar/wing-feather.svg"
  23085. }
  23086. },
  23087. countourFeather: {
  23088. height: math.unit(4.154, "feet"),
  23089. name: "Contour Feather",
  23090. image: {
  23091. source: "./media/characters/alydar/contour-feather.svg"
  23092. }
  23093. },
  23094. },
  23095. [
  23096. {
  23097. name: "Diplomatic",
  23098. height: math.unit(13, "feet"),
  23099. default: true
  23100. },
  23101. {
  23102. name: "Small",
  23103. height: math.unit(30, "feet")
  23104. },
  23105. {
  23106. name: "Normal",
  23107. height: math.unit(95, "feet"),
  23108. default: true
  23109. },
  23110. {
  23111. name: "Large",
  23112. height: math.unit(285, "feet")
  23113. },
  23114. {
  23115. name: "Incomprehensible",
  23116. height: math.unit(450, "megameters")
  23117. },
  23118. ]
  23119. ))
  23120. characterMakers.push(() => makeCharacter(
  23121. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23122. {
  23123. side: {
  23124. height: math.unit(11, "feet"),
  23125. weight: math.unit(1750, "kg"),
  23126. name: "Side",
  23127. image: {
  23128. source: "./media/characters/selicia/side.svg",
  23129. extra: 440 / 396,
  23130. bottom: 24.8 / 465.979
  23131. }
  23132. },
  23133. maw: {
  23134. height: math.unit(4.665, "feet"),
  23135. name: "Maw",
  23136. image: {
  23137. source: "./media/characters/selicia/maw.svg"
  23138. }
  23139. },
  23140. },
  23141. [
  23142. {
  23143. name: "Normal",
  23144. height: math.unit(11, "feet"),
  23145. default: true
  23146. },
  23147. ]
  23148. ))
  23149. characterMakers.push(() => makeCharacter(
  23150. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23151. {
  23152. side: {
  23153. height: math.unit(2 + 6 / 12, "feet"),
  23154. weight: math.unit(30, "lb"),
  23155. name: "Side",
  23156. image: {
  23157. source: "./media/characters/layla/side.svg",
  23158. extra: 244 / 188,
  23159. bottom: 18.2 / 262.1
  23160. }
  23161. },
  23162. back: {
  23163. height: math.unit(2 + 6 / 12, "feet"),
  23164. weight: math.unit(30, "lb"),
  23165. name: "Back",
  23166. image: {
  23167. source: "./media/characters/layla/back.svg",
  23168. extra: 308 / 241.5,
  23169. bottom: 8.9 / 316.8
  23170. }
  23171. },
  23172. cumming: {
  23173. height: math.unit(2 + 6 / 12, "feet"),
  23174. weight: math.unit(30, "lb"),
  23175. name: "Cumming",
  23176. image: {
  23177. source: "./media/characters/layla/cumming.svg",
  23178. extra: 342 / 279,
  23179. bottom: 595 / 938
  23180. }
  23181. },
  23182. dickFlaccid: {
  23183. height: math.unit(2.595, "feet"),
  23184. name: "Flaccid Genitals",
  23185. image: {
  23186. source: "./media/characters/layla/dick-flaccid.svg"
  23187. }
  23188. },
  23189. dickErect: {
  23190. height: math.unit(2.359, "feet"),
  23191. name: "Erect Genitals",
  23192. image: {
  23193. source: "./media/characters/layla/dick-erect.svg"
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Micro",
  23200. height: math.unit(1, "inch")
  23201. },
  23202. {
  23203. name: "Small",
  23204. height: math.unit(1, "foot")
  23205. },
  23206. {
  23207. name: "Normal",
  23208. height: math.unit(2 + 6 / 12, "feet"),
  23209. default: true
  23210. },
  23211. {
  23212. name: "Macro",
  23213. height: math.unit(200, "feet")
  23214. },
  23215. {
  23216. name: "Megamacro",
  23217. height: math.unit(1000, "miles")
  23218. },
  23219. {
  23220. name: "Planetary",
  23221. height: math.unit(8000, "miles")
  23222. },
  23223. {
  23224. name: "True Layla",
  23225. height: math.unit(200000 * 7, "multiverses")
  23226. },
  23227. ]
  23228. ))
  23229. characterMakers.push(() => makeCharacter(
  23230. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23231. {
  23232. back: {
  23233. height: math.unit(10.5, "feet"),
  23234. weight: math.unit(800, "lb"),
  23235. name: "Back",
  23236. image: {
  23237. source: "./media/characters/knox/back.svg",
  23238. extra: 1486 / 1089,
  23239. bottom: 107 / 1601.4
  23240. }
  23241. },
  23242. side: {
  23243. height: math.unit(10.5, "feet"),
  23244. weight: math.unit(800, "lb"),
  23245. name: "Side",
  23246. image: {
  23247. source: "./media/characters/knox/side.svg",
  23248. extra: 244 / 218,
  23249. bottom: 14 / 260
  23250. }
  23251. },
  23252. },
  23253. [
  23254. {
  23255. name: "Compact",
  23256. height: math.unit(10.5, "feet"),
  23257. default: true
  23258. },
  23259. {
  23260. name: "Dynamax",
  23261. height: math.unit(210, "feet")
  23262. },
  23263. {
  23264. name: "Full Macro",
  23265. height: math.unit(850, "feet")
  23266. },
  23267. ]
  23268. ))
  23269. characterMakers.push(() => makeCharacter(
  23270. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23271. {
  23272. front: {
  23273. height: math.unit(6, "feet"),
  23274. weight: math.unit(152, "lb"),
  23275. name: "Front",
  23276. image: {
  23277. source: "./media/characters/shin-pikachu/front.svg",
  23278. extra: 1574 / 1480,
  23279. bottom: 53.3 / 1626
  23280. }
  23281. },
  23282. hand: {
  23283. height: math.unit(1.055, "feet"),
  23284. name: "Hand",
  23285. image: {
  23286. source: "./media/characters/shin-pikachu/hand.svg"
  23287. }
  23288. },
  23289. foot: {
  23290. height: math.unit(1.1, "feet"),
  23291. name: "Foot",
  23292. image: {
  23293. source: "./media/characters/shin-pikachu/foot.svg"
  23294. }
  23295. },
  23296. collar: {
  23297. height: math.unit(0.386, "feet"),
  23298. name: "Collar",
  23299. image: {
  23300. source: "./media/characters/shin-pikachu/collar.svg"
  23301. }
  23302. },
  23303. },
  23304. [
  23305. {
  23306. name: "Smallest",
  23307. height: math.unit(0.5, "inches")
  23308. },
  23309. {
  23310. name: "Micro",
  23311. height: math.unit(6, "inches")
  23312. },
  23313. {
  23314. name: "Normal",
  23315. height: math.unit(6, "feet"),
  23316. default: true
  23317. },
  23318. {
  23319. name: "Macro",
  23320. height: math.unit(150, "feet")
  23321. },
  23322. ]
  23323. ))
  23324. characterMakers.push(() => makeCharacter(
  23325. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23326. {
  23327. front: {
  23328. height: math.unit(28, "feet"),
  23329. weight: math.unit(10500, "lb"),
  23330. name: "Front",
  23331. image: {
  23332. source: "./media/characters/kayda/front.svg",
  23333. extra: 1536 / 1428,
  23334. bottom: 68.7 / 1603
  23335. }
  23336. },
  23337. back: {
  23338. height: math.unit(28, "feet"),
  23339. weight: math.unit(10500, "lb"),
  23340. name: "Back",
  23341. image: {
  23342. source: "./media/characters/kayda/back.svg",
  23343. extra: 1557 / 1464,
  23344. bottom: 39.5 / 1597.49
  23345. }
  23346. },
  23347. dick: {
  23348. height: math.unit(3.858, "feet"),
  23349. name: "Dick",
  23350. image: {
  23351. source: "./media/characters/kayda/dick.svg"
  23352. }
  23353. },
  23354. },
  23355. [
  23356. {
  23357. name: "Macro",
  23358. height: math.unit(28, "feet"),
  23359. default: true
  23360. },
  23361. ]
  23362. ))
  23363. characterMakers.push(() => makeCharacter(
  23364. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23365. {
  23366. front: {
  23367. height: math.unit(10 + 11 / 12, "feet"),
  23368. weight: math.unit(1400, "lb"),
  23369. name: "Front",
  23370. image: {
  23371. source: "./media/characters/brian/front.svg",
  23372. extra: 737 / 692,
  23373. bottom: 55.4 / 785
  23374. }
  23375. },
  23376. },
  23377. [
  23378. {
  23379. name: "Normal",
  23380. height: math.unit(10 + 11 / 12, "feet"),
  23381. default: true
  23382. },
  23383. ]
  23384. ))
  23385. characterMakers.push(() => makeCharacter(
  23386. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23387. {
  23388. front: {
  23389. height: math.unit(5 + 8 / 12, "feet"),
  23390. weight: math.unit(140, "lb"),
  23391. name: "Front",
  23392. image: {
  23393. source: "./media/characters/khemri/front.svg",
  23394. extra: 4780 / 4059,
  23395. bottom: 80.1 / 4859.25
  23396. }
  23397. },
  23398. },
  23399. [
  23400. {
  23401. name: "Micro",
  23402. height: math.unit(6, "inches")
  23403. },
  23404. {
  23405. name: "Normal",
  23406. height: math.unit(5 + 8 / 12, "feet"),
  23407. default: true
  23408. },
  23409. ]
  23410. ))
  23411. characterMakers.push(() => makeCharacter(
  23412. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23413. {
  23414. front: {
  23415. height: math.unit(13, "feet"),
  23416. weight: math.unit(1700, "lb"),
  23417. name: "Front",
  23418. image: {
  23419. source: "./media/characters/felix-braveheart/front.svg",
  23420. extra: 1222 / 1157,
  23421. bottom: 53.2 / 1280
  23422. }
  23423. },
  23424. back: {
  23425. height: math.unit(13, "feet"),
  23426. weight: math.unit(1700, "lb"),
  23427. name: "Back",
  23428. image: {
  23429. source: "./media/characters/felix-braveheart/back.svg",
  23430. extra: 1277 / 1203,
  23431. bottom: 50.2 / 1327
  23432. }
  23433. },
  23434. feral: {
  23435. height: math.unit(6, "feet"),
  23436. weight: math.unit(400, "lb"),
  23437. name: "Feral",
  23438. image: {
  23439. source: "./media/characters/felix-braveheart/feral.svg",
  23440. extra: 682 / 625,
  23441. bottom: 6.9 / 688
  23442. }
  23443. },
  23444. },
  23445. [
  23446. {
  23447. name: "Normal",
  23448. height: math.unit(13, "feet"),
  23449. default: true
  23450. },
  23451. ]
  23452. ))
  23453. characterMakers.push(() => makeCharacter(
  23454. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23455. {
  23456. side: {
  23457. height: math.unit(5 + 11 / 12, "feet"),
  23458. weight: math.unit(1400, "lb"),
  23459. name: "Side",
  23460. image: {
  23461. source: "./media/characters/shadow-blade/side.svg",
  23462. extra: 1726 / 1267,
  23463. bottom: 58.4 / 1785
  23464. }
  23465. },
  23466. },
  23467. [
  23468. {
  23469. name: "Normal",
  23470. height: math.unit(5 + 11 / 12, "feet"),
  23471. default: true
  23472. },
  23473. ]
  23474. ))
  23475. characterMakers.push(() => makeCharacter(
  23476. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23477. {
  23478. front: {
  23479. height: math.unit(1 + 6 / 12, "feet"),
  23480. weight: math.unit(25, "lb"),
  23481. name: "Front",
  23482. image: {
  23483. source: "./media/characters/karla-halldor/front.svg",
  23484. extra: 1459 / 1383,
  23485. bottom: 12 / 1472
  23486. }
  23487. },
  23488. },
  23489. [
  23490. {
  23491. name: "Normal",
  23492. height: math.unit(1 + 6 / 12, "feet"),
  23493. default: true
  23494. },
  23495. ]
  23496. ))
  23497. characterMakers.push(() => makeCharacter(
  23498. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23499. {
  23500. front: {
  23501. height: math.unit(6 + 2 / 12, "feet"),
  23502. weight: math.unit(160, "lb"),
  23503. name: "Front",
  23504. image: {
  23505. source: "./media/characters/ariam/front.svg",
  23506. extra: 714 / 617,
  23507. bottom: 23.4 / 737,
  23508. }
  23509. },
  23510. squatting: {
  23511. height: math.unit(4.1, "feet"),
  23512. weight: math.unit(160, "lb"),
  23513. name: "Squatting",
  23514. image: {
  23515. source: "./media/characters/ariam/squatting.svg",
  23516. extra: 2617 / 2112,
  23517. bottom: 61.2 / 2681,
  23518. }
  23519. },
  23520. },
  23521. [
  23522. {
  23523. name: "Normal",
  23524. height: math.unit(6 + 2 / 12, "feet"),
  23525. default: true
  23526. },
  23527. {
  23528. name: "Normal+",
  23529. height: math.unit(4, "meters")
  23530. },
  23531. {
  23532. name: "Macro",
  23533. height: math.unit(50, "meters")
  23534. },
  23535. {
  23536. name: "Macro+",
  23537. height: math.unit(100, "meters")
  23538. },
  23539. {
  23540. name: "Megamacro",
  23541. height: math.unit(20, "km")
  23542. },
  23543. ]
  23544. ))
  23545. characterMakers.push(() => makeCharacter(
  23546. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23547. {
  23548. front: {
  23549. height: math.unit(1.67, "meters"),
  23550. weight: math.unit(140, "lb"),
  23551. name: "Front",
  23552. image: {
  23553. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23554. extra: 438 / 410,
  23555. bottom: 0.75 / 439
  23556. }
  23557. },
  23558. },
  23559. [
  23560. {
  23561. name: "Shrunken",
  23562. height: math.unit(7.6, "cm")
  23563. },
  23564. {
  23565. name: "Human Scale",
  23566. height: math.unit(1.67, "meters")
  23567. },
  23568. {
  23569. name: "Wolxi Scale",
  23570. height: math.unit(36.7, "meters"),
  23571. default: true
  23572. },
  23573. ]
  23574. ))
  23575. characterMakers.push(() => makeCharacter(
  23576. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23577. {
  23578. front: {
  23579. height: math.unit(1.73, "meters"),
  23580. weight: math.unit(240, "lb"),
  23581. name: "Front",
  23582. image: {
  23583. source: "./media/characters/izue-two-mothers/front.svg",
  23584. extra: 469 / 437,
  23585. bottom: 1.24 / 470.6
  23586. }
  23587. },
  23588. },
  23589. [
  23590. {
  23591. name: "Shrunken",
  23592. height: math.unit(7.86, "cm")
  23593. },
  23594. {
  23595. name: "Human Scale",
  23596. height: math.unit(1.73, "meters")
  23597. },
  23598. {
  23599. name: "Wolxi Scale",
  23600. height: math.unit(38, "meters"),
  23601. default: true
  23602. },
  23603. ]
  23604. ))
  23605. characterMakers.push(() => makeCharacter(
  23606. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23607. {
  23608. front: {
  23609. height: math.unit(1.55, "meters"),
  23610. weight: math.unit(120, "lb"),
  23611. name: "Front",
  23612. image: {
  23613. source: "./media/characters/teeku-love-shack/front.svg",
  23614. extra: 387 / 362,
  23615. bottom: 1.51 / 388
  23616. }
  23617. },
  23618. },
  23619. [
  23620. {
  23621. name: "Shrunken",
  23622. height: math.unit(7, "cm")
  23623. },
  23624. {
  23625. name: "Human Scale",
  23626. height: math.unit(1.55, "meters")
  23627. },
  23628. {
  23629. name: "Wolxi Scale",
  23630. height: math.unit(34.1, "meters"),
  23631. default: true
  23632. },
  23633. ]
  23634. ))
  23635. characterMakers.push(() => makeCharacter(
  23636. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23637. {
  23638. front: {
  23639. height: math.unit(1.83, "meters"),
  23640. weight: math.unit(135, "lb"),
  23641. name: "Front",
  23642. image: {
  23643. source: "./media/characters/dejma-the-red/front.svg",
  23644. extra: 480 / 458,
  23645. bottom: 1.8 / 482
  23646. }
  23647. },
  23648. },
  23649. [
  23650. {
  23651. name: "Shrunken",
  23652. height: math.unit(8.3, "cm")
  23653. },
  23654. {
  23655. name: "Human Scale",
  23656. height: math.unit(1.83, "meters")
  23657. },
  23658. {
  23659. name: "Wolxi Scale",
  23660. height: math.unit(40, "meters"),
  23661. default: true
  23662. },
  23663. ]
  23664. ))
  23665. characterMakers.push(() => makeCharacter(
  23666. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23667. {
  23668. front: {
  23669. height: math.unit(1.78, "meters"),
  23670. weight: math.unit(65, "kg"),
  23671. name: "Front",
  23672. image: {
  23673. source: "./media/characters/aki/front.svg",
  23674. extra: 452 / 415
  23675. }
  23676. },
  23677. frontNsfw: {
  23678. height: math.unit(1.78, "meters"),
  23679. weight: math.unit(65, "kg"),
  23680. name: "Front (NSFW)",
  23681. image: {
  23682. source: "./media/characters/aki/front-nsfw.svg",
  23683. extra: 452 / 415
  23684. }
  23685. },
  23686. back: {
  23687. height: math.unit(1.78, "meters"),
  23688. weight: math.unit(65, "kg"),
  23689. name: "Back",
  23690. image: {
  23691. source: "./media/characters/aki/back.svg",
  23692. extra: 452 / 415
  23693. }
  23694. },
  23695. rump: {
  23696. height: math.unit(2.05, "feet"),
  23697. name: "Rump",
  23698. image: {
  23699. source: "./media/characters/aki/rump.svg"
  23700. }
  23701. },
  23702. dick: {
  23703. height: math.unit(0.95, "feet"),
  23704. name: "Dick",
  23705. image: {
  23706. source: "./media/characters/aki/dick.svg"
  23707. }
  23708. },
  23709. },
  23710. [
  23711. {
  23712. name: "Micro",
  23713. height: math.unit(15, "cm")
  23714. },
  23715. {
  23716. name: "Normal",
  23717. height: math.unit(178, "cm"),
  23718. default: true
  23719. },
  23720. {
  23721. name: "Macro",
  23722. height: math.unit(214, "m")
  23723. },
  23724. {
  23725. name: "Macro+",
  23726. height: math.unit(534, "m")
  23727. },
  23728. ]
  23729. ))
  23730. characterMakers.push(() => makeCharacter(
  23731. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23732. {
  23733. front: {
  23734. height: math.unit(5 + 5 / 12, "feet"),
  23735. weight: math.unit(120, "lb"),
  23736. name: "Front",
  23737. image: {
  23738. source: "./media/characters/ari/front.svg",
  23739. extra: 714.5 / 682,
  23740. bottom: 8 / 722.5
  23741. }
  23742. },
  23743. },
  23744. [
  23745. {
  23746. name: "Normal",
  23747. height: math.unit(5 + 5 / 12, "feet")
  23748. },
  23749. {
  23750. name: "Macro",
  23751. height: math.unit(100, "feet"),
  23752. default: true
  23753. },
  23754. {
  23755. name: "Megamacro",
  23756. height: math.unit(100, "miles")
  23757. },
  23758. {
  23759. name: "Gigamacro",
  23760. height: math.unit(80000, "miles")
  23761. },
  23762. ]
  23763. ))
  23764. characterMakers.push(() => makeCharacter(
  23765. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23766. {
  23767. side: {
  23768. height: math.unit(9, "feet"),
  23769. weight: math.unit(400, "kg"),
  23770. name: "Side",
  23771. image: {
  23772. source: "./media/characters/bolt/side.svg",
  23773. extra: 1126 / 896,
  23774. bottom: 60 / 1187.3,
  23775. }
  23776. },
  23777. },
  23778. [
  23779. {
  23780. name: "Micro",
  23781. height: math.unit(5, "inches")
  23782. },
  23783. {
  23784. name: "Normal",
  23785. height: math.unit(9, "feet"),
  23786. default: true
  23787. },
  23788. {
  23789. name: "Macro",
  23790. height: math.unit(700, "feet")
  23791. },
  23792. {
  23793. name: "Max Size",
  23794. height: math.unit(1.52e22, "yottameters")
  23795. },
  23796. ]
  23797. ))
  23798. characterMakers.push(() => makeCharacter(
  23799. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23800. {
  23801. front: {
  23802. height: math.unit(4.53, "meters"),
  23803. weight: math.unit(3, "tons"),
  23804. name: "Front",
  23805. image: {
  23806. source: "./media/characters/draekon-sylviar/front.svg",
  23807. extra: 1228 / 1068,
  23808. bottom: 41 / 1270
  23809. }
  23810. },
  23811. tail: {
  23812. height: math.unit(1.772, "meter"),
  23813. name: "Tail",
  23814. image: {
  23815. source: "./media/characters/draekon-sylviar/tail.svg"
  23816. }
  23817. },
  23818. head: {
  23819. height: math.unit(1.331, "meter"),
  23820. name: "Head",
  23821. image: {
  23822. source: "./media/characters/draekon-sylviar/head.svg"
  23823. }
  23824. },
  23825. hand: {
  23826. height: math.unit(0.564, "meter"),
  23827. name: "Hand",
  23828. image: {
  23829. source: "./media/characters/draekon-sylviar/hand.svg"
  23830. }
  23831. },
  23832. foot: {
  23833. height: math.unit(0.621, "meter"),
  23834. name: "Foot",
  23835. image: {
  23836. source: "./media/characters/draekon-sylviar/foot.svg",
  23837. bottom: 32 / 324
  23838. }
  23839. },
  23840. dick: {
  23841. height: math.unit(61, "cm"),
  23842. name: "Dick",
  23843. image: {
  23844. source: "./media/characters/draekon-sylviar/dick.svg"
  23845. }
  23846. },
  23847. dickseparated: {
  23848. height: math.unit(61, "cm"),
  23849. name: "Dick-separated",
  23850. image: {
  23851. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23852. }
  23853. },
  23854. },
  23855. [
  23856. {
  23857. name: "Small",
  23858. height: math.unit(4.53 / 2, "meters"),
  23859. default: true
  23860. },
  23861. {
  23862. name: "Normal",
  23863. height: math.unit(4.53, "meters"),
  23864. default: true
  23865. },
  23866. {
  23867. name: "Large",
  23868. height: math.unit(4.53 * 2, "meters"),
  23869. },
  23870. ]
  23871. ))
  23872. characterMakers.push(() => makeCharacter(
  23873. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23874. {
  23875. front: {
  23876. height: math.unit(6 + 2 / 12, "feet"),
  23877. weight: math.unit(180, "lb"),
  23878. name: "Front",
  23879. image: {
  23880. source: "./media/characters/brawler/front.svg",
  23881. extra: 3301 / 3027,
  23882. bottom: 138 / 3439
  23883. }
  23884. },
  23885. },
  23886. [
  23887. {
  23888. name: "Normal",
  23889. height: math.unit(6 + 2 / 12, "feet"),
  23890. default: true
  23891. },
  23892. ]
  23893. ))
  23894. characterMakers.push(() => makeCharacter(
  23895. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23896. {
  23897. front: {
  23898. height: math.unit(11, "feet"),
  23899. weight: math.unit(1000, "lb"),
  23900. name: "Front",
  23901. image: {
  23902. source: "./media/characters/alex/front.svg",
  23903. bottom: 44.5 / 620
  23904. }
  23905. },
  23906. },
  23907. [
  23908. {
  23909. name: "Micro",
  23910. height: math.unit(5, "inches")
  23911. },
  23912. {
  23913. name: "Normal",
  23914. height: math.unit(11, "feet"),
  23915. default: true
  23916. },
  23917. {
  23918. name: "Macro",
  23919. height: math.unit(9.5e9, "feet")
  23920. },
  23921. {
  23922. name: "Max Size",
  23923. height: math.unit(1.4e283, "yottameters")
  23924. },
  23925. ]
  23926. ))
  23927. characterMakers.push(() => makeCharacter(
  23928. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23929. {
  23930. female: {
  23931. height: math.unit(29.9, "m"),
  23932. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23933. name: "Female",
  23934. image: {
  23935. source: "./media/characters/zenari/female.svg",
  23936. extra: 3281.6 / 3217,
  23937. bottom: 72.2 / 3353
  23938. }
  23939. },
  23940. male: {
  23941. height: math.unit(27.7, "m"),
  23942. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23943. name: "Male",
  23944. image: {
  23945. source: "./media/characters/zenari/male.svg",
  23946. extra: 3008 / 2991,
  23947. bottom: 54.6 / 3069
  23948. }
  23949. },
  23950. },
  23951. [
  23952. {
  23953. name: "Macro",
  23954. height: math.unit(29.7, "meters"),
  23955. default: true
  23956. },
  23957. ]
  23958. ))
  23959. characterMakers.push(() => makeCharacter(
  23960. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23961. {
  23962. female: {
  23963. height: math.unit(23.8, "m"),
  23964. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23965. name: "Female",
  23966. image: {
  23967. source: "./media/characters/mactarian/female.svg",
  23968. extra: 2662 / 2569,
  23969. bottom: 73 / 2736
  23970. }
  23971. },
  23972. male: {
  23973. height: math.unit(23.8, "m"),
  23974. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23975. name: "Male",
  23976. image: {
  23977. source: "./media/characters/mactarian/male.svg",
  23978. extra: 2673 / 2600,
  23979. bottom: 76 / 2750
  23980. }
  23981. },
  23982. },
  23983. [
  23984. {
  23985. name: "Macro",
  23986. height: math.unit(23.8, "meters"),
  23987. default: true
  23988. },
  23989. ]
  23990. ))
  23991. characterMakers.push(() => makeCharacter(
  23992. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23993. {
  23994. female: {
  23995. height: math.unit(19.3, "m"),
  23996. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23997. name: "Female",
  23998. image: {
  23999. source: "./media/characters/umok/female.svg",
  24000. extra: 2186 / 2078,
  24001. bottom: 87 / 2277
  24002. }
  24003. },
  24004. male: {
  24005. height: math.unit(19.5, "m"),
  24006. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24007. name: "Male",
  24008. image: {
  24009. source: "./media/characters/umok/male.svg",
  24010. extra: 2233 / 2140,
  24011. bottom: 24.4 / 2258
  24012. }
  24013. },
  24014. },
  24015. [
  24016. {
  24017. name: "Macro",
  24018. height: math.unit(19.3, "meters"),
  24019. default: true
  24020. },
  24021. ]
  24022. ))
  24023. characterMakers.push(() => makeCharacter(
  24024. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24025. {
  24026. female: {
  24027. height: math.unit(26.15, "m"),
  24028. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24029. name: "Female",
  24030. image: {
  24031. source: "./media/characters/joraxian/female.svg",
  24032. extra: 2912 / 2824,
  24033. bottom: 36 / 2956
  24034. }
  24035. },
  24036. male: {
  24037. height: math.unit(25.4, "m"),
  24038. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24039. name: "Male",
  24040. image: {
  24041. source: "./media/characters/joraxian/male.svg",
  24042. extra: 2877 / 2721,
  24043. bottom: 82 / 2967
  24044. }
  24045. },
  24046. },
  24047. [
  24048. {
  24049. name: "Macro",
  24050. height: math.unit(26.15, "meters"),
  24051. default: true
  24052. },
  24053. ]
  24054. ))
  24055. characterMakers.push(() => makeCharacter(
  24056. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24057. {
  24058. female: {
  24059. height: math.unit(21.6, "m"),
  24060. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24061. name: "Female",
  24062. image: {
  24063. source: "./media/characters/sthara/female.svg",
  24064. extra: 2516 / 2347,
  24065. bottom: 21.5 / 2537
  24066. }
  24067. },
  24068. male: {
  24069. height: math.unit(24, "m"),
  24070. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24071. name: "Male",
  24072. image: {
  24073. source: "./media/characters/sthara/male.svg",
  24074. extra: 2732 / 2607,
  24075. bottom: 23 / 2732
  24076. }
  24077. },
  24078. },
  24079. [
  24080. {
  24081. name: "Macro",
  24082. height: math.unit(21.6, "meters"),
  24083. default: true
  24084. },
  24085. ]
  24086. ))
  24087. characterMakers.push(() => makeCharacter(
  24088. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24089. {
  24090. front: {
  24091. height: math.unit(6 + 4 / 12, "feet"),
  24092. weight: math.unit(175, "lb"),
  24093. name: "Front",
  24094. image: {
  24095. source: "./media/characters/luka-bryzant/front.svg",
  24096. extra: 311 / 289,
  24097. bottom: 4 / 315
  24098. }
  24099. },
  24100. back: {
  24101. height: math.unit(6 + 4 / 12, "feet"),
  24102. weight: math.unit(175, "lb"),
  24103. name: "Back",
  24104. image: {
  24105. source: "./media/characters/luka-bryzant/back.svg",
  24106. extra: 311 / 289,
  24107. bottom: 3.8 / 313.7
  24108. }
  24109. },
  24110. },
  24111. [
  24112. {
  24113. name: "Micro",
  24114. height: math.unit(10, "inches")
  24115. },
  24116. {
  24117. name: "Normal",
  24118. height: math.unit(6 + 4 / 12, "feet"),
  24119. default: true
  24120. },
  24121. {
  24122. name: "Large",
  24123. height: math.unit(12, "feet")
  24124. },
  24125. ]
  24126. ))
  24127. characterMakers.push(() => makeCharacter(
  24128. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24129. {
  24130. front: {
  24131. height: math.unit(5 + 7 / 12, "feet"),
  24132. weight: math.unit(185, "lb"),
  24133. name: "Front",
  24134. image: {
  24135. source: "./media/characters/aman-aquila/front.svg",
  24136. extra: 1013 / 976,
  24137. bottom: 45.6 / 1057
  24138. }
  24139. },
  24140. side: {
  24141. height: math.unit(5 + 7 / 12, "feet"),
  24142. weight: math.unit(185, "lb"),
  24143. name: "Side",
  24144. image: {
  24145. source: "./media/characters/aman-aquila/side.svg",
  24146. extra: 1054 / 1011,
  24147. bottom: 15 / 1070
  24148. }
  24149. },
  24150. back: {
  24151. height: math.unit(5 + 7 / 12, "feet"),
  24152. weight: math.unit(185, "lb"),
  24153. name: "Back",
  24154. image: {
  24155. source: "./media/characters/aman-aquila/back.svg",
  24156. extra: 1026 / 970,
  24157. bottom: 12 / 1039
  24158. }
  24159. },
  24160. head: {
  24161. height: math.unit(1.211, "feet"),
  24162. name: "Head",
  24163. image: {
  24164. source: "./media/characters/aman-aquila/head.svg",
  24165. }
  24166. },
  24167. },
  24168. [
  24169. {
  24170. name: "Minimicro",
  24171. height: math.unit(0.057, "inches")
  24172. },
  24173. {
  24174. name: "Micro",
  24175. height: math.unit(7, "inches")
  24176. },
  24177. {
  24178. name: "Mini",
  24179. height: math.unit(3 + 7 / 12, "feet")
  24180. },
  24181. {
  24182. name: "Normal",
  24183. height: math.unit(5 + 7 / 12, "feet"),
  24184. default: true
  24185. },
  24186. {
  24187. name: "Macro",
  24188. height: math.unit(157 + 7 / 12, "feet")
  24189. },
  24190. {
  24191. name: "Megamacro",
  24192. height: math.unit(1557 + 7 / 12, "feet")
  24193. },
  24194. {
  24195. name: "Gigamacro",
  24196. height: math.unit(15557 + 7 / 12, "feet")
  24197. },
  24198. ]
  24199. ))
  24200. characterMakers.push(() => makeCharacter(
  24201. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24202. {
  24203. front: {
  24204. height: math.unit(3 + 2 / 12, "inches"),
  24205. weight: math.unit(0.3, "ounces"),
  24206. name: "Front",
  24207. image: {
  24208. source: "./media/characters/hiphae/front.svg",
  24209. extra: 1931 / 1683,
  24210. bottom: 24 / 1955
  24211. }
  24212. },
  24213. },
  24214. [
  24215. {
  24216. name: "Normal",
  24217. height: math.unit(3 + 1 / 2, "inches"),
  24218. default: true
  24219. },
  24220. ]
  24221. ))
  24222. characterMakers.push(() => makeCharacter(
  24223. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24224. {
  24225. front: {
  24226. height: math.unit(5 + 10 / 12, "feet"),
  24227. weight: math.unit(165, "lb"),
  24228. name: "Front",
  24229. image: {
  24230. source: "./media/characters/nicky/front.svg",
  24231. extra: 3144 / 2886,
  24232. bottom: 45.6 / 3192
  24233. }
  24234. },
  24235. back: {
  24236. height: math.unit(5 + 10 / 12, "feet"),
  24237. weight: math.unit(165, "lb"),
  24238. name: "Back",
  24239. image: {
  24240. source: "./media/characters/nicky/back.svg",
  24241. extra: 3055 / 2804,
  24242. bottom: 28.4 / 3087
  24243. }
  24244. },
  24245. frontclothed: {
  24246. height: math.unit(5 + 10 / 12, "feet"),
  24247. weight: math.unit(165, "lb"),
  24248. name: "Front-clothed",
  24249. image: {
  24250. source: "./media/characters/nicky/front-clothed.svg",
  24251. extra: 3184.9 / 2926.9,
  24252. bottom: 86.5 / 3239.9
  24253. }
  24254. },
  24255. foot: {
  24256. height: math.unit(1.16, "feet"),
  24257. name: "Foot",
  24258. image: {
  24259. source: "./media/characters/nicky/foot.svg"
  24260. }
  24261. },
  24262. feet: {
  24263. height: math.unit(1.34, "feet"),
  24264. name: "Feet",
  24265. image: {
  24266. source: "./media/characters/nicky/feet.svg"
  24267. }
  24268. },
  24269. maw: {
  24270. height: math.unit(0.9, "feet"),
  24271. name: "Maw",
  24272. image: {
  24273. source: "./media/characters/nicky/maw.svg"
  24274. }
  24275. },
  24276. },
  24277. [
  24278. {
  24279. name: "Normal",
  24280. height: math.unit(5 + 10 / 12, "feet"),
  24281. default: true
  24282. },
  24283. {
  24284. name: "Macro",
  24285. height: math.unit(60, "feet")
  24286. },
  24287. {
  24288. name: "Megamacro",
  24289. height: math.unit(1, "mile")
  24290. },
  24291. ]
  24292. ))
  24293. characterMakers.push(() => makeCharacter(
  24294. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24295. {
  24296. side: {
  24297. height: math.unit(10, "feet"),
  24298. weight: math.unit(600, "lb"),
  24299. name: "Side",
  24300. image: {
  24301. source: "./media/characters/blair/side.svg",
  24302. bottom: 16.6 / 475,
  24303. extra: 458 / 431
  24304. }
  24305. },
  24306. },
  24307. [
  24308. {
  24309. name: "Micro",
  24310. height: math.unit(8, "inches")
  24311. },
  24312. {
  24313. name: "Normal",
  24314. height: math.unit(10, "feet"),
  24315. default: true
  24316. },
  24317. {
  24318. name: "Macro",
  24319. height: math.unit(180, "feet")
  24320. },
  24321. ]
  24322. ))
  24323. characterMakers.push(() => makeCharacter(
  24324. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24325. {
  24326. front: {
  24327. height: math.unit(5 + 4 / 12, "feet"),
  24328. weight: math.unit(125, "lb"),
  24329. name: "Front",
  24330. image: {
  24331. source: "./media/characters/fisher/front.svg",
  24332. extra: 444 / 390,
  24333. bottom: 2 / 444.8
  24334. }
  24335. },
  24336. },
  24337. [
  24338. {
  24339. name: "Micro",
  24340. height: math.unit(4, "inches")
  24341. },
  24342. {
  24343. name: "Normal",
  24344. height: math.unit(5 + 4 / 12, "feet"),
  24345. default: true
  24346. },
  24347. {
  24348. name: "Macro",
  24349. height: math.unit(100, "feet")
  24350. },
  24351. ]
  24352. ))
  24353. characterMakers.push(() => makeCharacter(
  24354. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24355. {
  24356. front: {
  24357. height: math.unit(6.71, "feet"),
  24358. weight: math.unit(200, "lb"),
  24359. capacity: math.unit(1000000, "people"),
  24360. name: "Front",
  24361. image: {
  24362. source: "./media/characters/gliss/front.svg",
  24363. extra: 2347 / 2231,
  24364. bottom: 113 / 2462
  24365. }
  24366. },
  24367. hammerspaceSize: {
  24368. height: math.unit(6.71 * 717, "feet"),
  24369. weight: math.unit(200, "lb"),
  24370. capacity: math.unit(1000000, "people"),
  24371. name: "Hammerspace Size",
  24372. image: {
  24373. source: "./media/characters/gliss/front.svg",
  24374. extra: 2347 / 2231,
  24375. bottom: 113 / 2462
  24376. }
  24377. },
  24378. },
  24379. [
  24380. {
  24381. name: "Normal",
  24382. height: math.unit(6.71, "feet"),
  24383. default: true
  24384. },
  24385. ]
  24386. ))
  24387. characterMakers.push(() => makeCharacter(
  24388. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24389. {
  24390. side: {
  24391. height: math.unit(1.44, "m"),
  24392. weight: math.unit(80, "kg"),
  24393. name: "Side",
  24394. image: {
  24395. source: "./media/characters/dune-anderson/side.svg",
  24396. bottom: 49 / 1426
  24397. }
  24398. },
  24399. },
  24400. [
  24401. {
  24402. name: "Wolf-sized",
  24403. height: math.unit(1.44, "meters")
  24404. },
  24405. {
  24406. name: "Normal",
  24407. height: math.unit(5.05, "meters"),
  24408. default: true
  24409. },
  24410. {
  24411. name: "Big",
  24412. height: math.unit(14.4, "meters")
  24413. },
  24414. {
  24415. name: "Huge",
  24416. height: math.unit(144, "meters")
  24417. },
  24418. ]
  24419. ))
  24420. characterMakers.push(() => makeCharacter(
  24421. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24422. {
  24423. front: {
  24424. height: math.unit(7, "feet"),
  24425. weight: math.unit(425, "lb"),
  24426. name: "Front",
  24427. image: {
  24428. source: "./media/characters/hind/front.svg",
  24429. extra: 2091 / 1860,
  24430. bottom: 129 / 2220
  24431. }
  24432. },
  24433. back: {
  24434. height: math.unit(7, "feet"),
  24435. weight: math.unit(425, "lb"),
  24436. name: "Back",
  24437. image: {
  24438. source: "./media/characters/hind/back.svg",
  24439. extra: 2091 / 1860,
  24440. bottom: 24.6 / 2309
  24441. }
  24442. },
  24443. tail: {
  24444. height: math.unit(2.8, "feet"),
  24445. name: "Tail",
  24446. image: {
  24447. source: "./media/characters/hind/tail.svg"
  24448. }
  24449. },
  24450. head: {
  24451. height: math.unit(2.55, "feet"),
  24452. name: "Head",
  24453. image: {
  24454. source: "./media/characters/hind/head.svg"
  24455. }
  24456. },
  24457. },
  24458. [
  24459. {
  24460. name: "XS",
  24461. height: math.unit(0.7, "feet")
  24462. },
  24463. {
  24464. name: "Normal",
  24465. height: math.unit(7, "feet"),
  24466. default: true
  24467. },
  24468. {
  24469. name: "XL",
  24470. height: math.unit(70, "feet")
  24471. },
  24472. ]
  24473. ))
  24474. characterMakers.push(() => makeCharacter(
  24475. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24476. {
  24477. front: {
  24478. height: math.unit(6, "feet"),
  24479. weight: math.unit(150, "lb"),
  24480. name: "Front",
  24481. image: {
  24482. source: "./media/characters/dylan-skaven/front.svg",
  24483. extra: 2318 / 2063,
  24484. bottom: 93.4 / 2410
  24485. }
  24486. },
  24487. },
  24488. [
  24489. {
  24490. name: "Nano",
  24491. height: math.unit(1, "mm")
  24492. },
  24493. {
  24494. name: "Micro",
  24495. height: math.unit(1, "cm")
  24496. },
  24497. {
  24498. name: "Normal",
  24499. height: math.unit(2.1, "meters"),
  24500. default: true
  24501. },
  24502. ]
  24503. ))
  24504. characterMakers.push(() => makeCharacter(
  24505. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24506. {
  24507. front: {
  24508. height: math.unit(7 + 5 / 12, "feet"),
  24509. weight: math.unit(357, "lb"),
  24510. name: "Front",
  24511. image: {
  24512. source: "./media/characters/solex-draconov/front.svg",
  24513. extra: 1993 / 1865,
  24514. bottom: 117 / 2111
  24515. }
  24516. },
  24517. },
  24518. [
  24519. {
  24520. name: "Natural Height",
  24521. height: math.unit(7 + 5 / 12, "feet"),
  24522. default: true
  24523. },
  24524. {
  24525. name: "Macro",
  24526. height: math.unit(350, "feet")
  24527. },
  24528. {
  24529. name: "Macro+",
  24530. height: math.unit(1000, "feet")
  24531. },
  24532. {
  24533. name: "Megamacro",
  24534. height: math.unit(20, "km")
  24535. },
  24536. {
  24537. name: "Megamacro+",
  24538. height: math.unit(1000, "km")
  24539. },
  24540. {
  24541. name: "Gigamacro",
  24542. height: math.unit(2.5, "Gm")
  24543. },
  24544. {
  24545. name: "Teramacro",
  24546. height: math.unit(15, "Tm")
  24547. },
  24548. {
  24549. name: "Galactic",
  24550. height: math.unit(30, "Zm")
  24551. },
  24552. {
  24553. name: "Universal",
  24554. height: math.unit(21000, "Ym")
  24555. },
  24556. {
  24557. name: "Omniversal",
  24558. height: math.unit(9.861e50, "Ym")
  24559. },
  24560. {
  24561. name: "Existential",
  24562. height: math.unit(1e300, "meters")
  24563. },
  24564. ]
  24565. ))
  24566. characterMakers.push(() => makeCharacter(
  24567. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24568. {
  24569. side: {
  24570. height: math.unit(25, "feet"),
  24571. weight: math.unit(90000, "lb"),
  24572. name: "Side",
  24573. image: {
  24574. source: "./media/characters/mandarax/side.svg",
  24575. extra: 614 / 332,
  24576. bottom: 55 / 630
  24577. }
  24578. },
  24579. head: {
  24580. height: math.unit(11.4, "feet"),
  24581. name: "Head",
  24582. image: {
  24583. source: "./media/characters/mandarax/head.svg"
  24584. }
  24585. },
  24586. belly: {
  24587. height: math.unit(33, "feet"),
  24588. name: "Belly",
  24589. capacity: math.unit(500, "people"),
  24590. image: {
  24591. source: "./media/characters/mandarax/belly.svg"
  24592. }
  24593. },
  24594. dick: {
  24595. height: math.unit(8.46, "feet"),
  24596. name: "Dick",
  24597. image: {
  24598. source: "./media/characters/mandarax/dick.svg"
  24599. }
  24600. },
  24601. top: {
  24602. height: math.unit(28, "meters"),
  24603. name: "Top",
  24604. image: {
  24605. source: "./media/characters/mandarax/top.svg"
  24606. }
  24607. },
  24608. },
  24609. [
  24610. {
  24611. name: "Normal",
  24612. height: math.unit(25, "feet"),
  24613. default: true
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24619. {
  24620. front: {
  24621. height: math.unit(5, "feet"),
  24622. weight: math.unit(90, "lb"),
  24623. name: "Front",
  24624. image: {
  24625. source: "./media/characters/pixil/front.svg",
  24626. extra: 2000 / 1618,
  24627. bottom: 12.3 / 2011
  24628. }
  24629. },
  24630. },
  24631. [
  24632. {
  24633. name: "Normal",
  24634. height: math.unit(5, "feet"),
  24635. default: true
  24636. },
  24637. {
  24638. name: "Megamacro",
  24639. height: math.unit(10, "miles"),
  24640. },
  24641. ]
  24642. ))
  24643. characterMakers.push(() => makeCharacter(
  24644. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24645. {
  24646. front: {
  24647. height: math.unit(7 + 2 / 12, "feet"),
  24648. weight: math.unit(200, "lb"),
  24649. name: "Front",
  24650. image: {
  24651. source: "./media/characters/angel/front.svg",
  24652. extra: 1830 / 1737,
  24653. bottom: 22.6 / 1854,
  24654. }
  24655. },
  24656. },
  24657. [
  24658. {
  24659. name: "Normal",
  24660. height: math.unit(7 + 2 / 12, "feet"),
  24661. default: true
  24662. },
  24663. {
  24664. name: "Macro",
  24665. height: math.unit(1000, "feet")
  24666. },
  24667. {
  24668. name: "Megamacro",
  24669. height: math.unit(2, "miles")
  24670. },
  24671. {
  24672. name: "Gigamacro",
  24673. height: math.unit(20, "earths")
  24674. },
  24675. ]
  24676. ))
  24677. characterMakers.push(() => makeCharacter(
  24678. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24679. {
  24680. front: {
  24681. height: math.unit(5, "feet"),
  24682. weight: math.unit(180, "lb"),
  24683. name: "Front",
  24684. image: {
  24685. source: "./media/characters/mekana/front.svg",
  24686. extra: 1671 / 1605,
  24687. bottom: 3.5 / 1691
  24688. }
  24689. },
  24690. side: {
  24691. height: math.unit(5, "feet"),
  24692. weight: math.unit(180, "lb"),
  24693. name: "Side",
  24694. image: {
  24695. source: "./media/characters/mekana/side.svg",
  24696. extra: 1671 / 1605,
  24697. bottom: 3.5 / 1691
  24698. }
  24699. },
  24700. back: {
  24701. height: math.unit(5, "feet"),
  24702. weight: math.unit(180, "lb"),
  24703. name: "Back",
  24704. image: {
  24705. source: "./media/characters/mekana/back.svg",
  24706. extra: 1671 / 1605,
  24707. bottom: 3.5 / 1691
  24708. }
  24709. },
  24710. },
  24711. [
  24712. {
  24713. name: "Normal",
  24714. height: math.unit(5, "feet"),
  24715. default: true
  24716. },
  24717. ]
  24718. ))
  24719. characterMakers.push(() => makeCharacter(
  24720. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24721. {
  24722. front: {
  24723. height: math.unit(4 + 6 / 12, "feet"),
  24724. weight: math.unit(80, "lb"),
  24725. name: "Front",
  24726. image: {
  24727. source: "./media/characters/pixie/front.svg",
  24728. extra: 1924 / 1825,
  24729. bottom: 22.4 / 1946
  24730. }
  24731. },
  24732. },
  24733. [
  24734. {
  24735. name: "Normal",
  24736. height: math.unit(4 + 6 / 12, "feet"),
  24737. default: true
  24738. },
  24739. {
  24740. name: "Macro",
  24741. height: math.unit(40, "feet")
  24742. },
  24743. ]
  24744. ))
  24745. characterMakers.push(() => makeCharacter(
  24746. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24747. {
  24748. front: {
  24749. height: math.unit(2.1, "meters"),
  24750. weight: math.unit(200, "lb"),
  24751. name: "Front",
  24752. image: {
  24753. source: "./media/characters/the-lascivious/front.svg",
  24754. extra: 1 / 0.893,
  24755. bottom: 3.5 / 573.7
  24756. }
  24757. },
  24758. },
  24759. [
  24760. {
  24761. name: "Human Scale",
  24762. height: math.unit(2.1, "meters")
  24763. },
  24764. {
  24765. name: "Wolxi Scale",
  24766. height: math.unit(46.2, "m"),
  24767. default: true
  24768. },
  24769. {
  24770. name: "Boinker of Buildings",
  24771. height: math.unit(10, "km")
  24772. },
  24773. {
  24774. name: "Shagger of Skyscrapers",
  24775. height: math.unit(40, "km")
  24776. },
  24777. {
  24778. name: "Banger of Boroughs",
  24779. height: math.unit(4000, "km")
  24780. },
  24781. {
  24782. name: "Screwer of States",
  24783. height: math.unit(100000, "km")
  24784. },
  24785. {
  24786. name: "Pounder of Planets",
  24787. height: math.unit(2000000, "km")
  24788. },
  24789. ]
  24790. ))
  24791. characterMakers.push(() => makeCharacter(
  24792. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24793. {
  24794. front: {
  24795. height: math.unit(6, "feet"),
  24796. weight: math.unit(150, "lb"),
  24797. name: "Front",
  24798. image: {
  24799. source: "./media/characters/aj/front.svg",
  24800. extra: 2039 / 1562,
  24801. bottom: 40 / 2079
  24802. }
  24803. },
  24804. },
  24805. [
  24806. {
  24807. name: "Normal",
  24808. height: math.unit(11 + 6 / 12, "feet"),
  24809. default: true
  24810. },
  24811. {
  24812. name: "Megamacro",
  24813. height: math.unit(60, "megameters")
  24814. },
  24815. ]
  24816. ))
  24817. characterMakers.push(() => makeCharacter(
  24818. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24819. {
  24820. side: {
  24821. height: math.unit(31 + 8 / 12, "feet"),
  24822. weight: math.unit(75000, "kg"),
  24823. name: "Side",
  24824. image: {
  24825. source: "./media/characters/koros/side.svg",
  24826. extra: 1442 / 1297,
  24827. bottom: 122.7 / 1562
  24828. }
  24829. },
  24830. dicksKingsCrown: {
  24831. height: math.unit(6, "feet"),
  24832. name: "Dicks (King's Crown)",
  24833. image: {
  24834. source: "./media/characters/koros/dicks-kings-crown.svg"
  24835. }
  24836. },
  24837. dicksTailSet: {
  24838. height: math.unit(3, "feet"),
  24839. name: "Dicks (Tail Set)",
  24840. image: {
  24841. source: "./media/characters/koros/dicks-tail-set.svg"
  24842. }
  24843. },
  24844. dickCumming: {
  24845. height: math.unit(7.98, "feet"),
  24846. name: "Dick (Cumming)",
  24847. image: {
  24848. source: "./media/characters/koros/dick-cumming.svg"
  24849. }
  24850. },
  24851. dicksBack: {
  24852. height: math.unit(5.9, "feet"),
  24853. name: "Dicks (Back)",
  24854. image: {
  24855. source: "./media/characters/koros/dicks-back.svg"
  24856. }
  24857. },
  24858. dicksFront: {
  24859. height: math.unit(3.72, "feet"),
  24860. name: "Dicks (Front)",
  24861. image: {
  24862. source: "./media/characters/koros/dicks-front.svg"
  24863. }
  24864. },
  24865. dicksPeeking: {
  24866. height: math.unit(3.0, "feet"),
  24867. name: "Dicks (Peeking)",
  24868. image: {
  24869. source: "./media/characters/koros/dicks-peeking.svg"
  24870. }
  24871. },
  24872. eye: {
  24873. height: math.unit(1.7, "feet"),
  24874. name: "Eye",
  24875. image: {
  24876. source: "./media/characters/koros/eye.svg"
  24877. }
  24878. },
  24879. headFront: {
  24880. height: math.unit(11.69, "feet"),
  24881. name: "Head (Front)",
  24882. image: {
  24883. source: "./media/characters/koros/head-front.svg"
  24884. }
  24885. },
  24886. headSide: {
  24887. height: math.unit(14, "feet"),
  24888. name: "Head (Side)",
  24889. image: {
  24890. source: "./media/characters/koros/head-side.svg"
  24891. }
  24892. },
  24893. leg: {
  24894. height: math.unit(17, "feet"),
  24895. name: "Leg",
  24896. image: {
  24897. source: "./media/characters/koros/leg.svg"
  24898. }
  24899. },
  24900. mawSide: {
  24901. height: math.unit(12.8, "feet"),
  24902. name: "Maw (Side)",
  24903. image: {
  24904. source: "./media/characters/koros/maw-side.svg"
  24905. }
  24906. },
  24907. mawSpitting: {
  24908. height: math.unit(17, "feet"),
  24909. name: "Maw (Spitting)",
  24910. image: {
  24911. source: "./media/characters/koros/maw-spitting.svg"
  24912. }
  24913. },
  24914. slit: {
  24915. height: math.unit(2.8, "feet"),
  24916. name: "Slit",
  24917. image: {
  24918. source: "./media/characters/koros/slit.svg"
  24919. }
  24920. },
  24921. stomach: {
  24922. height: math.unit(6.8, "feet"),
  24923. capacity: math.unit(20, "people"),
  24924. name: "Stomach",
  24925. image: {
  24926. source: "./media/characters/koros/stomach.svg"
  24927. }
  24928. },
  24929. wingspanBottom: {
  24930. height: math.unit(114, "feet"),
  24931. name: "Wingspan (Bottom)",
  24932. image: {
  24933. source: "./media/characters/koros/wingspan-bottom.svg"
  24934. }
  24935. },
  24936. wingspanTop: {
  24937. height: math.unit(104, "feet"),
  24938. name: "Wingspan (Top)",
  24939. image: {
  24940. source: "./media/characters/koros/wingspan-top.svg"
  24941. }
  24942. },
  24943. },
  24944. [
  24945. {
  24946. name: "Normal",
  24947. height: math.unit(31 + 8 / 12, "feet"),
  24948. default: true
  24949. },
  24950. ]
  24951. ))
  24952. characterMakers.push(() => makeCharacter(
  24953. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24954. {
  24955. front: {
  24956. height: math.unit(18 + 5 / 12, "feet"),
  24957. weight: math.unit(3750, "kg"),
  24958. name: "Front",
  24959. image: {
  24960. source: "./media/characters/vexx/front.svg",
  24961. extra: 426 / 396,
  24962. bottom: 31.5 / 458
  24963. }
  24964. },
  24965. maw: {
  24966. height: math.unit(6, "feet"),
  24967. name: "Maw",
  24968. image: {
  24969. source: "./media/characters/vexx/maw.svg"
  24970. }
  24971. },
  24972. },
  24973. [
  24974. {
  24975. name: "Normal",
  24976. height: math.unit(18 + 5 / 12, "feet"),
  24977. default: true
  24978. },
  24979. ]
  24980. ))
  24981. characterMakers.push(() => makeCharacter(
  24982. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24983. {
  24984. front: {
  24985. height: math.unit(17 + 6 / 12, "feet"),
  24986. weight: math.unit(150, "lb"),
  24987. name: "Front",
  24988. image: {
  24989. source: "./media/characters/baadra/front.svg",
  24990. extra: 3137 / 2890,
  24991. bottom: 168.4 / 3305
  24992. }
  24993. },
  24994. back: {
  24995. height: math.unit(17 + 6 / 12, "feet"),
  24996. weight: math.unit(150, "lb"),
  24997. name: "Back",
  24998. image: {
  24999. source: "./media/characters/baadra/back.svg",
  25000. extra: 3142 / 2890,
  25001. bottom: 220 / 3371
  25002. }
  25003. },
  25004. head: {
  25005. height: math.unit(5.45, "feet"),
  25006. name: "Head",
  25007. image: {
  25008. source: "./media/characters/baadra/head.svg"
  25009. }
  25010. },
  25011. headAngry: {
  25012. height: math.unit(4.95, "feet"),
  25013. name: "Head (Angry)",
  25014. image: {
  25015. source: "./media/characters/baadra/head-angry.svg"
  25016. }
  25017. },
  25018. headOpen: {
  25019. height: math.unit(6, "feet"),
  25020. name: "Head (Open)",
  25021. image: {
  25022. source: "./media/characters/baadra/head-open.svg"
  25023. }
  25024. },
  25025. },
  25026. [
  25027. {
  25028. name: "Normal",
  25029. height: math.unit(17 + 6 / 12, "feet"),
  25030. default: true
  25031. },
  25032. ]
  25033. ))
  25034. characterMakers.push(() => makeCharacter(
  25035. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25036. {
  25037. front: {
  25038. height: math.unit(7 + 3 / 12, "feet"),
  25039. weight: math.unit(180, "lb"),
  25040. name: "Front",
  25041. image: {
  25042. source: "./media/characters/juri/front.svg",
  25043. extra: 1401 / 1237,
  25044. bottom: 18.5 / 1418
  25045. }
  25046. },
  25047. side: {
  25048. height: math.unit(7 + 3 / 12, "feet"),
  25049. weight: math.unit(180, "lb"),
  25050. name: "Side",
  25051. image: {
  25052. source: "./media/characters/juri/side.svg",
  25053. extra: 1424 / 1242,
  25054. bottom: 18.5 / 1447
  25055. }
  25056. },
  25057. sitting: {
  25058. height: math.unit(6, "feet"),
  25059. weight: math.unit(180, "lb"),
  25060. name: "Sitting",
  25061. image: {
  25062. source: "./media/characters/juri/sitting.svg",
  25063. extra: 1270 / 1143,
  25064. bottom: 100 / 1343
  25065. }
  25066. },
  25067. back: {
  25068. height: math.unit(7 + 3 / 12, "feet"),
  25069. weight: math.unit(180, "lb"),
  25070. name: "Back",
  25071. image: {
  25072. source: "./media/characters/juri/back.svg",
  25073. extra: 1377 / 1240,
  25074. bottom: 23.7 / 1405
  25075. }
  25076. },
  25077. maw: {
  25078. height: math.unit(2.8, "feet"),
  25079. name: "Maw",
  25080. image: {
  25081. source: "./media/characters/juri/maw.svg"
  25082. }
  25083. },
  25084. stomach: {
  25085. height: math.unit(0.89, "feet"),
  25086. capacity: math.unit(4, "liters"),
  25087. name: "Stomach",
  25088. image: {
  25089. source: "./media/characters/juri/stomach.svg"
  25090. }
  25091. },
  25092. },
  25093. [
  25094. {
  25095. name: "Normal",
  25096. height: math.unit(7 + 3 / 12, "feet"),
  25097. default: true
  25098. },
  25099. ]
  25100. ))
  25101. characterMakers.push(() => makeCharacter(
  25102. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25103. {
  25104. fox: {
  25105. height: math.unit(5 + 6 / 12, "feet"),
  25106. weight: math.unit(140, "lb"),
  25107. name: "Fox",
  25108. image: {
  25109. source: "./media/characters/maxene-sita/fox.svg",
  25110. extra: 146 / 138,
  25111. bottom: 2.1 / 148.19
  25112. }
  25113. },
  25114. foxLaying: {
  25115. height: math.unit(1.70, "feet"),
  25116. weight: math.unit(140, "lb"),
  25117. name: "Fox (Laying)",
  25118. image: {
  25119. source: "./media/characters/maxene-sita/fox-laying.svg",
  25120. extra: 910 / 572,
  25121. bottom: 71 / 981
  25122. }
  25123. },
  25124. kitsune: {
  25125. height: math.unit(10, "feet"),
  25126. weight: math.unit(800, "lb"),
  25127. name: "Kitsune",
  25128. image: {
  25129. source: "./media/characters/maxene-sita/kitsune.svg",
  25130. extra: 185 / 176,
  25131. bottom: 4.7 / 189.9
  25132. }
  25133. },
  25134. hellhound: {
  25135. height: math.unit(10, "feet"),
  25136. weight: math.unit(700, "lb"),
  25137. name: "Hellhound",
  25138. image: {
  25139. source: "./media/characters/maxene-sita/hellhound.svg",
  25140. extra: 1600 / 1545,
  25141. bottom: 81 / 1681
  25142. }
  25143. },
  25144. },
  25145. [
  25146. {
  25147. name: "Normal",
  25148. height: math.unit(5 + 6 / 12, "feet"),
  25149. default: true
  25150. },
  25151. ]
  25152. ))
  25153. characterMakers.push(() => makeCharacter(
  25154. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25155. {
  25156. front: {
  25157. height: math.unit(3 + 4 / 12, "feet"),
  25158. weight: math.unit(70, "lb"),
  25159. name: "Front",
  25160. image: {
  25161. source: "./media/characters/maia/front.svg",
  25162. extra: 227 / 219.5,
  25163. bottom: 40 / 267
  25164. }
  25165. },
  25166. back: {
  25167. height: math.unit(3 + 4 / 12, "feet"),
  25168. weight: math.unit(70, "lb"),
  25169. name: "Back",
  25170. image: {
  25171. source: "./media/characters/maia/back.svg",
  25172. extra: 237 / 225
  25173. }
  25174. },
  25175. },
  25176. [
  25177. {
  25178. name: "Normal",
  25179. height: math.unit(3 + 4 / 12, "feet"),
  25180. default: true
  25181. },
  25182. ]
  25183. ))
  25184. characterMakers.push(() => makeCharacter(
  25185. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25186. {
  25187. front: {
  25188. height: math.unit(5 + 10 / 12, "feet"),
  25189. weight: math.unit(197, "lb"),
  25190. name: "Front",
  25191. image: {
  25192. source: "./media/characters/jabaro/front.svg",
  25193. extra: 225 / 216,
  25194. bottom: 5.06 / 230
  25195. }
  25196. },
  25197. back: {
  25198. height: math.unit(5 + 10 / 12, "feet"),
  25199. weight: math.unit(197, "lb"),
  25200. name: "Back",
  25201. image: {
  25202. source: "./media/characters/jabaro/back.svg",
  25203. extra: 225 / 219,
  25204. bottom: 1.9 / 227
  25205. }
  25206. },
  25207. },
  25208. [
  25209. {
  25210. name: "Normal",
  25211. height: math.unit(5 + 10 / 12, "feet"),
  25212. default: true
  25213. },
  25214. ]
  25215. ))
  25216. characterMakers.push(() => makeCharacter(
  25217. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25218. {
  25219. front: {
  25220. height: math.unit(5 + 8 / 12, "feet"),
  25221. weight: math.unit(139, "lb"),
  25222. name: "Front",
  25223. image: {
  25224. source: "./media/characters/risa/front.svg",
  25225. extra: 270 / 260,
  25226. bottom: 11.2 / 282
  25227. }
  25228. },
  25229. back: {
  25230. height: math.unit(5 + 8 / 12, "feet"),
  25231. weight: math.unit(139, "lb"),
  25232. name: "Back",
  25233. image: {
  25234. source: "./media/characters/risa/back.svg",
  25235. extra: 264 / 255,
  25236. bottom: 4 / 268
  25237. }
  25238. },
  25239. },
  25240. [
  25241. {
  25242. name: "Normal",
  25243. height: math.unit(5 + 8 / 12, "feet"),
  25244. default: true
  25245. },
  25246. ]
  25247. ))
  25248. characterMakers.push(() => makeCharacter(
  25249. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25250. {
  25251. front: {
  25252. height: math.unit(2 + 11 / 12, "feet"),
  25253. weight: math.unit(30, "lb"),
  25254. name: "Front",
  25255. image: {
  25256. source: "./media/characters/weatley/front.svg",
  25257. bottom: 10.7 / 414,
  25258. extra: 403.5 / 362
  25259. }
  25260. },
  25261. back: {
  25262. height: math.unit(2 + 11 / 12, "feet"),
  25263. weight: math.unit(30, "lb"),
  25264. name: "Back",
  25265. image: {
  25266. source: "./media/characters/weatley/back.svg",
  25267. bottom: 10.7 / 414,
  25268. extra: 403.5 / 362
  25269. }
  25270. },
  25271. },
  25272. [
  25273. {
  25274. name: "Normal",
  25275. height: math.unit(2 + 11 / 12, "feet"),
  25276. default: true
  25277. },
  25278. ]
  25279. ))
  25280. characterMakers.push(() => makeCharacter(
  25281. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25282. {
  25283. front: {
  25284. height: math.unit(5 + 2 / 12, "feet"),
  25285. weight: math.unit(50, "kg"),
  25286. name: "Front",
  25287. image: {
  25288. source: "./media/characters/mercury-crescent/front.svg",
  25289. extra: 1088 / 1033,
  25290. bottom: 18.9 / 1109
  25291. }
  25292. },
  25293. },
  25294. [
  25295. {
  25296. name: "Normal",
  25297. height: math.unit(5 + 2 / 12, "feet"),
  25298. default: true
  25299. },
  25300. ]
  25301. ))
  25302. characterMakers.push(() => makeCharacter(
  25303. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25304. {
  25305. front: {
  25306. height: math.unit(2, "feet"),
  25307. weight: math.unit(15, "kg"),
  25308. name: "Front",
  25309. image: {
  25310. source: "./media/characters/diamond-jones/front.svg",
  25311. bottom: 16 / 568
  25312. }
  25313. },
  25314. },
  25315. [
  25316. {
  25317. name: "Normal",
  25318. height: math.unit(2, "feet"),
  25319. default: true
  25320. },
  25321. ]
  25322. ))
  25323. characterMakers.push(() => makeCharacter(
  25324. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25325. {
  25326. front: {
  25327. height: math.unit(3, "feet"),
  25328. weight: math.unit(30, "kg"),
  25329. name: "Front",
  25330. image: {
  25331. source: "./media/characters/sweet-bit/front.svg",
  25332. extra: 675 / 567,
  25333. bottom: 27.7 / 703
  25334. }
  25335. },
  25336. },
  25337. [
  25338. {
  25339. name: "Normal",
  25340. height: math.unit(3, "feet"),
  25341. default: true
  25342. },
  25343. ]
  25344. ))
  25345. characterMakers.push(() => makeCharacter(
  25346. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25347. {
  25348. side: {
  25349. height: math.unit(9.178, "feet"),
  25350. weight: math.unit(500, "lb"),
  25351. name: "Side",
  25352. image: {
  25353. source: "./media/characters/umbrazen/side.svg",
  25354. extra: 1730 / 1473,
  25355. bottom: 34.6 / 1765
  25356. }
  25357. },
  25358. },
  25359. [
  25360. {
  25361. name: "Normal",
  25362. height: math.unit(9.178, "feet"),
  25363. default: true
  25364. },
  25365. ]
  25366. ))
  25367. characterMakers.push(() => makeCharacter(
  25368. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25369. {
  25370. front: {
  25371. height: math.unit(10, "feet"),
  25372. weight: math.unit(750, "lb"),
  25373. name: "Front",
  25374. image: {
  25375. source: "./media/characters/arlist/front.svg",
  25376. extra: 961 / 778,
  25377. bottom: 6.2 / 986
  25378. }
  25379. },
  25380. },
  25381. [
  25382. {
  25383. name: "Normal",
  25384. height: math.unit(10, "feet"),
  25385. default: true
  25386. },
  25387. ]
  25388. ))
  25389. characterMakers.push(() => makeCharacter(
  25390. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25391. {
  25392. front: {
  25393. height: math.unit(5 + 1 / 12, "feet"),
  25394. weight: math.unit(110, "lb"),
  25395. name: "Front",
  25396. image: {
  25397. source: "./media/characters/aradel/front.svg",
  25398. extra: 324 / 303,
  25399. bottom: 3.6 / 329.4
  25400. }
  25401. },
  25402. },
  25403. [
  25404. {
  25405. name: "Normal",
  25406. height: math.unit(5 + 1 / 12, "feet"),
  25407. default: true
  25408. },
  25409. ]
  25410. ))
  25411. characterMakers.push(() => makeCharacter(
  25412. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25413. {
  25414. front: {
  25415. height: math.unit(3 + 8 / 12, "feet"),
  25416. weight: math.unit(50, "lb"),
  25417. name: "Front",
  25418. image: {
  25419. source: "./media/characters/serryn/front.svg",
  25420. extra: 1792 / 1656,
  25421. bottom: 43.5 / 1840
  25422. }
  25423. },
  25424. },
  25425. [
  25426. {
  25427. name: "Normal",
  25428. height: math.unit(3 + 8 / 12, "feet"),
  25429. default: true
  25430. },
  25431. ]
  25432. ))
  25433. characterMakers.push(() => makeCharacter(
  25434. { name: "Xavier Thyme" },
  25435. {
  25436. front: {
  25437. height: math.unit(7 + 10 / 12, "feet"),
  25438. weight: math.unit(255, "lb"),
  25439. name: "Front",
  25440. image: {
  25441. source: "./media/characters/xavier-thyme/front.svg",
  25442. extra: 3733 / 3642,
  25443. bottom: 131 / 3869
  25444. }
  25445. },
  25446. frontRaven: {
  25447. height: math.unit(7 + 10 / 12, "feet"),
  25448. weight: math.unit(255, "lb"),
  25449. name: "Front (Raven)",
  25450. image: {
  25451. source: "./media/characters/xavier-thyme/front-raven.svg",
  25452. extra: 4385 / 3642,
  25453. bottom: 131 / 4517
  25454. }
  25455. },
  25456. },
  25457. [
  25458. {
  25459. name: "Normal",
  25460. height: math.unit(7 + 10 / 12, "feet"),
  25461. default: true
  25462. },
  25463. ]
  25464. ))
  25465. characterMakers.push(() => makeCharacter(
  25466. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25467. {
  25468. front: {
  25469. height: math.unit(1.6, "m"),
  25470. weight: math.unit(50, "kg"),
  25471. name: "Front",
  25472. image: {
  25473. source: "./media/characters/kiki/front.svg",
  25474. extra: 4682 / 3610,
  25475. bottom: 115 / 4777
  25476. }
  25477. },
  25478. },
  25479. [
  25480. {
  25481. name: "Normal",
  25482. height: math.unit(1.6, "meters"),
  25483. default: true
  25484. },
  25485. ]
  25486. ))
  25487. characterMakers.push(() => makeCharacter(
  25488. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25489. {
  25490. front: {
  25491. height: math.unit(50, "m"),
  25492. weight: math.unit(500, "tonnes"),
  25493. name: "Front",
  25494. image: {
  25495. source: "./media/characters/ryoko/front.svg",
  25496. extra: 4632 / 3926,
  25497. bottom: 193 / 4823
  25498. }
  25499. },
  25500. },
  25501. [
  25502. {
  25503. name: "Normal",
  25504. height: math.unit(50, "meters"),
  25505. default: true
  25506. },
  25507. ]
  25508. ))
  25509. characterMakers.push(() => makeCharacter(
  25510. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25511. {
  25512. front: {
  25513. height: math.unit(30, "m"),
  25514. weight: math.unit(22, "tonnes"),
  25515. name: "Front",
  25516. image: {
  25517. source: "./media/characters/elio/front.svg",
  25518. extra: 4582 / 3720,
  25519. bottom: 236 / 4828
  25520. }
  25521. },
  25522. },
  25523. [
  25524. {
  25525. name: "Normal",
  25526. height: math.unit(30, "meters"),
  25527. default: true
  25528. },
  25529. ]
  25530. ))
  25531. characterMakers.push(() => makeCharacter(
  25532. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25533. {
  25534. front: {
  25535. height: math.unit(6 + 3 / 12, "feet"),
  25536. weight: math.unit(120, "lb"),
  25537. name: "Front",
  25538. image: {
  25539. source: "./media/characters/azura/front.svg",
  25540. extra: 1149 / 1135,
  25541. bottom: 45 / 1194
  25542. }
  25543. },
  25544. frontClothed: {
  25545. height: math.unit(6 + 3 / 12, "feet"),
  25546. weight: math.unit(120, "lb"),
  25547. name: "Front (Clothed)",
  25548. image: {
  25549. source: "./media/characters/azura/front-clothed.svg",
  25550. extra: 1149 / 1135,
  25551. bottom: 45 / 1194
  25552. }
  25553. },
  25554. },
  25555. [
  25556. {
  25557. name: "Normal",
  25558. height: math.unit(6 + 3 / 12, "feet"),
  25559. default: true
  25560. },
  25561. {
  25562. name: "Macro",
  25563. height: math.unit(20 + 6 / 12, "feet")
  25564. },
  25565. {
  25566. name: "Megamacro",
  25567. height: math.unit(12, "miles")
  25568. },
  25569. {
  25570. name: "Gigamacro",
  25571. height: math.unit(10000, "miles")
  25572. },
  25573. {
  25574. name: "Teramacro",
  25575. height: math.unit(900000, "miles")
  25576. },
  25577. ]
  25578. ))
  25579. characterMakers.push(() => makeCharacter(
  25580. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25581. {
  25582. front: {
  25583. height: math.unit(12, "feet"),
  25584. weight: math.unit(1, "ton"),
  25585. capacity: math.unit(660000, "gallons"),
  25586. name: "Front",
  25587. image: {
  25588. source: "./media/characters/zeus/front.svg",
  25589. extra: 5005 / 4717,
  25590. bottom: 363 / 5388
  25591. }
  25592. },
  25593. },
  25594. [
  25595. {
  25596. name: "Normal",
  25597. height: math.unit(12, "feet")
  25598. },
  25599. {
  25600. name: "Preferred Size",
  25601. height: math.unit(0.5, "miles"),
  25602. default: true
  25603. },
  25604. {
  25605. name: "Giga Horse",
  25606. height: math.unit(300, "miles")
  25607. },
  25608. {
  25609. name: "Riding Planets",
  25610. height: math.unit(30, "megameters")
  25611. },
  25612. {
  25613. name: "Cosmic Giant",
  25614. height: math.unit(3, "zettameters")
  25615. },
  25616. {
  25617. name: "Breeding God",
  25618. height: math.unit(9.92e22, "yottameters")
  25619. },
  25620. ]
  25621. ))
  25622. characterMakers.push(() => makeCharacter(
  25623. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25624. {
  25625. side: {
  25626. height: math.unit(9, "feet"),
  25627. weight: math.unit(1500, "kg"),
  25628. name: "Side",
  25629. image: {
  25630. source: "./media/characters/fang/side.svg",
  25631. extra: 924 / 866,
  25632. bottom: 47.5 / 972.3
  25633. }
  25634. },
  25635. },
  25636. [
  25637. {
  25638. name: "Normal",
  25639. height: math.unit(9, "feet"),
  25640. default: true
  25641. },
  25642. {
  25643. name: "Macro",
  25644. height: math.unit(75 + 6 / 12, "feet")
  25645. },
  25646. {
  25647. name: "Teramacro",
  25648. height: math.unit(50000, "miles")
  25649. },
  25650. ]
  25651. ))
  25652. characterMakers.push(() => makeCharacter(
  25653. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25654. {
  25655. front: {
  25656. height: math.unit(10, "feet"),
  25657. weight: math.unit(2, "tons"),
  25658. name: "Front",
  25659. image: {
  25660. source: "./media/characters/rekhit/front.svg",
  25661. extra: 2796 / 2590,
  25662. bottom: 225 / 3022
  25663. }
  25664. },
  25665. },
  25666. [
  25667. {
  25668. name: "Normal",
  25669. height: math.unit(10, "feet"),
  25670. default: true
  25671. },
  25672. {
  25673. name: "Macro",
  25674. height: math.unit(500, "feet")
  25675. },
  25676. ]
  25677. ))
  25678. characterMakers.push(() => makeCharacter(
  25679. { name: "Dahlia Verrick" },
  25680. {
  25681. front: {
  25682. height: math.unit(7 + 6.451 / 12, "feet"),
  25683. weight: math.unit(310, "lb"),
  25684. name: "Front",
  25685. image: {
  25686. source: "./media/characters/dahlia-verrick/front.svg",
  25687. extra: 1488 / 1365,
  25688. bottom: 6.2 / 1495
  25689. }
  25690. },
  25691. back: {
  25692. height: math.unit(7 + 6.451 / 12, "feet"),
  25693. weight: math.unit(310, "lb"),
  25694. name: "Back",
  25695. image: {
  25696. source: "./media/characters/dahlia-verrick/back.svg",
  25697. extra: 1472 / 1351,
  25698. bottom: 5.28 / 1477
  25699. }
  25700. },
  25701. frontBusiness: {
  25702. height: math.unit(7 + 6.451 / 12, "feet"),
  25703. weight: math.unit(200, "lb"),
  25704. name: "Front (Business)",
  25705. image: {
  25706. source: "./media/characters/dahlia-verrick/front-business.svg",
  25707. extra: 1478 / 1381,
  25708. bottom: 5.5 / 1484
  25709. }
  25710. },
  25711. frontCasual: {
  25712. height: math.unit(7 + 6.451 / 12, "feet"),
  25713. weight: math.unit(200, "lb"),
  25714. name: "Front (Casual)",
  25715. image: {
  25716. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25717. extra: 1478 / 1381,
  25718. bottom: 5.5 / 1484
  25719. }
  25720. },
  25721. },
  25722. [
  25723. {
  25724. name: "Travel-Sized",
  25725. height: math.unit(7.45, "inches")
  25726. },
  25727. {
  25728. name: "Normal",
  25729. height: math.unit(7 + 6.451 / 12, "feet"),
  25730. default: true
  25731. },
  25732. {
  25733. name: "Hitting the Town",
  25734. height: math.unit(37 + 8 / 12, "feet")
  25735. },
  25736. {
  25737. name: "Stomp in the Suburbs",
  25738. height: math.unit(964 + 9.728 / 12, "feet")
  25739. },
  25740. {
  25741. name: "Sit on the City",
  25742. height: math.unit(61747 + 10.592 / 12, "feet")
  25743. },
  25744. {
  25745. name: "Glomp the Globe",
  25746. height: math.unit(252919327 + 4.832 / 12, "feet")
  25747. },
  25748. ]
  25749. ))
  25750. characterMakers.push(() => makeCharacter(
  25751. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25752. {
  25753. front: {
  25754. height: math.unit(6 + 4 / 12, "feet"),
  25755. weight: math.unit(320, "lb"),
  25756. name: "Front",
  25757. image: {
  25758. source: "./media/characters/balina-mahigan/front.svg",
  25759. extra: 447 / 428,
  25760. bottom: 18 / 466
  25761. }
  25762. },
  25763. back: {
  25764. height: math.unit(6 + 4 / 12, "feet"),
  25765. weight: math.unit(320, "lb"),
  25766. name: "Back",
  25767. image: {
  25768. source: "./media/characters/balina-mahigan/back.svg",
  25769. extra: 445 / 428,
  25770. bottom: 4.07 / 448
  25771. }
  25772. },
  25773. arm: {
  25774. height: math.unit(1.88, "feet"),
  25775. name: "Arm",
  25776. image: {
  25777. source: "./media/characters/balina-mahigan/arm.svg"
  25778. }
  25779. },
  25780. backPort: {
  25781. height: math.unit(0.685, "feet"),
  25782. name: "Back Port",
  25783. image: {
  25784. source: "./media/characters/balina-mahigan/back-port.svg"
  25785. }
  25786. },
  25787. hoofpaw: {
  25788. height: math.unit(1.41, "feet"),
  25789. name: "Hoofpaw",
  25790. image: {
  25791. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25792. }
  25793. },
  25794. leftHandBack: {
  25795. height: math.unit(0.938, "feet"),
  25796. name: "Left Hand (Back)",
  25797. image: {
  25798. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25799. }
  25800. },
  25801. leftHandFront: {
  25802. height: math.unit(0.938, "feet"),
  25803. name: "Left Hand (Front)",
  25804. image: {
  25805. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25806. }
  25807. },
  25808. rightHandBack: {
  25809. height: math.unit(0.95, "feet"),
  25810. name: "Right Hand (Back)",
  25811. image: {
  25812. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25813. }
  25814. },
  25815. rightHandFront: {
  25816. height: math.unit(0.95, "feet"),
  25817. name: "Right Hand (Front)",
  25818. image: {
  25819. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25820. }
  25821. },
  25822. },
  25823. [
  25824. {
  25825. name: "Normal",
  25826. height: math.unit(6 + 4 / 12, "feet"),
  25827. default: true
  25828. },
  25829. ]
  25830. ))
  25831. characterMakers.push(() => makeCharacter(
  25832. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25833. {
  25834. front: {
  25835. height: math.unit(6, "feet"),
  25836. weight: math.unit(320, "lb"),
  25837. name: "Front",
  25838. image: {
  25839. source: "./media/characters/balina-mejeri/front.svg",
  25840. extra: 517 / 488,
  25841. bottom: 44.2 / 561
  25842. }
  25843. },
  25844. },
  25845. [
  25846. {
  25847. name: "Normal",
  25848. height: math.unit(6 + 4 / 12, "feet")
  25849. },
  25850. {
  25851. name: "Business",
  25852. height: math.unit(155, "feet"),
  25853. default: true
  25854. },
  25855. ]
  25856. ))
  25857. characterMakers.push(() => makeCharacter(
  25858. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25859. {
  25860. kneeling: {
  25861. height: math.unit(6 + 4 / 12, "feet"),
  25862. weight: math.unit(300 * 20, "lb"),
  25863. name: "Kneeling",
  25864. image: {
  25865. source: "./media/characters/balbarian/kneeling.svg",
  25866. extra: 922 / 862,
  25867. bottom: 42.4 / 965
  25868. }
  25869. },
  25870. },
  25871. [
  25872. {
  25873. name: "Normal",
  25874. height: math.unit(6 + 4 / 12, "feet")
  25875. },
  25876. {
  25877. name: "Treasured",
  25878. height: math.unit(18 + 9 / 12, "feet"),
  25879. default: true
  25880. },
  25881. {
  25882. name: "Macro",
  25883. height: math.unit(900, "feet")
  25884. },
  25885. ]
  25886. ))
  25887. characterMakers.push(() => makeCharacter(
  25888. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25889. {
  25890. front: {
  25891. height: math.unit(6 + 4 / 12, "feet"),
  25892. weight: math.unit(325, "lb"),
  25893. name: "Front",
  25894. image: {
  25895. source: "./media/characters/balina-amarini/front.svg",
  25896. extra: 415 / 403,
  25897. bottom: 19 / 433.4
  25898. }
  25899. },
  25900. back: {
  25901. height: math.unit(6 + 4 / 12, "feet"),
  25902. weight: math.unit(325, "lb"),
  25903. name: "Back",
  25904. image: {
  25905. source: "./media/characters/balina-amarini/back.svg",
  25906. extra: 415 / 403,
  25907. bottom: 13.5 / 432
  25908. }
  25909. },
  25910. overdrive: {
  25911. height: math.unit(6 + 4 / 12, "feet"),
  25912. weight: math.unit(400, "lb"),
  25913. name: "Overdrive",
  25914. image: {
  25915. source: "./media/characters/balina-amarini/overdrive.svg",
  25916. extra: 269 / 259,
  25917. bottom: 12 / 282
  25918. }
  25919. },
  25920. },
  25921. [
  25922. {
  25923. name: "Boom",
  25924. height: math.unit(9 + 10 / 12, "feet"),
  25925. default: true
  25926. },
  25927. {
  25928. name: "Macro",
  25929. height: math.unit(280, "feet")
  25930. },
  25931. ]
  25932. ))
  25933. characterMakers.push(() => makeCharacter(
  25934. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25935. {
  25936. goddess: {
  25937. height: math.unit(600, "feet"),
  25938. weight: math.unit(2000000, "tons"),
  25939. name: "Goddess",
  25940. image: {
  25941. source: "./media/characters/lady-kubwa/goddess.svg",
  25942. extra: 1240.5 / 1223,
  25943. bottom: 22 / 1263
  25944. }
  25945. },
  25946. goddesser: {
  25947. height: math.unit(900, "feet"),
  25948. weight: math.unit(20000000, "lb"),
  25949. name: "Goddess-er",
  25950. image: {
  25951. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25952. extra: 899 / 888,
  25953. bottom: 12.6 / 912
  25954. }
  25955. },
  25956. },
  25957. [
  25958. {
  25959. name: "Macro",
  25960. height: math.unit(600, "feet"),
  25961. default: true
  25962. },
  25963. {
  25964. name: "Megamacro",
  25965. height: math.unit(250, "miles")
  25966. },
  25967. ]
  25968. ))
  25969. characterMakers.push(() => makeCharacter(
  25970. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25971. {
  25972. front: {
  25973. height: math.unit(7 + 7 / 12, "feet"),
  25974. weight: math.unit(250, "lb"),
  25975. name: "Front",
  25976. image: {
  25977. source: "./media/characters/tala-grovehorn/front.svg",
  25978. extra: 2636 / 2525,
  25979. bottom: 147 / 2781
  25980. }
  25981. },
  25982. back: {
  25983. height: math.unit(7 + 7 / 12, "feet"),
  25984. weight: math.unit(250, "lb"),
  25985. name: "Back",
  25986. image: {
  25987. source: "./media/characters/tala-grovehorn/back.svg",
  25988. extra: 2635 / 2539,
  25989. bottom: 100 / 2732.8
  25990. }
  25991. },
  25992. mouth: {
  25993. height: math.unit(1.15, "feet"),
  25994. name: "Mouth",
  25995. image: {
  25996. source: "./media/characters/tala-grovehorn/mouth.svg"
  25997. }
  25998. },
  25999. dick: {
  26000. height: math.unit(2.36, "feet"),
  26001. name: "Dick",
  26002. image: {
  26003. source: "./media/characters/tala-grovehorn/dick.svg"
  26004. }
  26005. },
  26006. slit: {
  26007. height: math.unit(0.61, "feet"),
  26008. name: "Slit",
  26009. image: {
  26010. source: "./media/characters/tala-grovehorn/slit.svg"
  26011. }
  26012. },
  26013. },
  26014. [
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26019. {
  26020. front: {
  26021. height: math.unit(7 + 7 / 12, "feet"),
  26022. weight: math.unit(225, "lb"),
  26023. name: "Front",
  26024. image: {
  26025. source: "./media/characters/epona/front.svg",
  26026. extra: 2445 / 2290,
  26027. bottom: 251 / 2696
  26028. }
  26029. },
  26030. back: {
  26031. height: math.unit(7 + 7 / 12, "feet"),
  26032. weight: math.unit(225, "lb"),
  26033. name: "Back",
  26034. image: {
  26035. source: "./media/characters/epona/back.svg",
  26036. extra: 2546 / 2408,
  26037. bottom: 44 / 2589
  26038. }
  26039. },
  26040. genitals: {
  26041. height: math.unit(1.5, "feet"),
  26042. name: "Genitals",
  26043. image: {
  26044. source: "./media/characters/epona/genitals.svg"
  26045. }
  26046. },
  26047. },
  26048. [
  26049. {
  26050. name: "Normal",
  26051. height: math.unit(7 + 7 / 12, "feet"),
  26052. default: true
  26053. },
  26054. ]
  26055. ))
  26056. characterMakers.push(() => makeCharacter(
  26057. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26058. {
  26059. front: {
  26060. height: math.unit(7, "feet"),
  26061. weight: math.unit(518, "lb"),
  26062. name: "Front",
  26063. image: {
  26064. source: "./media/characters/avia-bloodbourn/front.svg",
  26065. extra: 1466 / 1350,
  26066. bottom: 65 / 1527
  26067. }
  26068. },
  26069. },
  26070. [
  26071. ]
  26072. ))
  26073. characterMakers.push(() => makeCharacter(
  26074. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26075. {
  26076. front: {
  26077. height: math.unit(9.35, "feet"),
  26078. weight: math.unit(600, "lb"),
  26079. name: "Front",
  26080. image: {
  26081. source: "./media/characters/amera/front.svg",
  26082. extra: 891 / 818,
  26083. bottom: 30 / 922.7
  26084. }
  26085. },
  26086. back: {
  26087. height: math.unit(9.35, "feet"),
  26088. weight: math.unit(600, "lb"),
  26089. name: "Back",
  26090. image: {
  26091. source: "./media/characters/amera/back.svg",
  26092. extra: 876 / 824,
  26093. bottom: 6.8 / 884
  26094. }
  26095. },
  26096. dick: {
  26097. height: math.unit(2.14, "feet"),
  26098. name: "Dick",
  26099. image: {
  26100. source: "./media/characters/amera/dick.svg"
  26101. }
  26102. },
  26103. },
  26104. [
  26105. {
  26106. name: "Normal",
  26107. height: math.unit(9.35, "feet"),
  26108. default: true
  26109. },
  26110. ]
  26111. ))
  26112. characterMakers.push(() => makeCharacter(
  26113. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26114. {
  26115. kneeling: {
  26116. height: math.unit(3 + 4 / 12, "feet"),
  26117. weight: math.unit(90, "lb"),
  26118. name: "Kneeling",
  26119. image: {
  26120. source: "./media/characters/rosewen/kneeling.svg",
  26121. extra: 1835 / 1571,
  26122. bottom: 27.7 / 1862
  26123. }
  26124. },
  26125. },
  26126. [
  26127. {
  26128. name: "Normal",
  26129. height: math.unit(3 + 4 / 12, "feet"),
  26130. default: true
  26131. },
  26132. ]
  26133. ))
  26134. characterMakers.push(() => makeCharacter(
  26135. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26136. {
  26137. front: {
  26138. height: math.unit(5 + 10 / 12, "feet"),
  26139. weight: math.unit(200, "lb"),
  26140. name: "Front",
  26141. image: {
  26142. source: "./media/characters/sabah/front.svg",
  26143. extra: 849 / 763,
  26144. bottom: 33.9 / 881
  26145. }
  26146. },
  26147. },
  26148. [
  26149. {
  26150. name: "Normal",
  26151. height: math.unit(5 + 10 / 12, "feet"),
  26152. default: true
  26153. },
  26154. ]
  26155. ))
  26156. characterMakers.push(() => makeCharacter(
  26157. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26158. {
  26159. front: {
  26160. height: math.unit(3 + 5 / 12, "feet"),
  26161. weight: math.unit(40, "kg"),
  26162. name: "Front",
  26163. image: {
  26164. source: "./media/characters/purple-flame/front.svg",
  26165. extra: 1577 / 1412,
  26166. bottom: 97 / 1694
  26167. }
  26168. },
  26169. frontDressed: {
  26170. height: math.unit(3 + 5 / 12, "feet"),
  26171. weight: math.unit(40, "kg"),
  26172. name: "Front (Dressed)",
  26173. image: {
  26174. source: "./media/characters/purple-flame/front-dressed.svg",
  26175. extra: 1577 / 1412,
  26176. bottom: 97 / 1694
  26177. }
  26178. },
  26179. headphones: {
  26180. height: math.unit(0.85, "feet"),
  26181. name: "Headphones",
  26182. image: {
  26183. source: "./media/characters/purple-flame/headphones.svg"
  26184. }
  26185. },
  26186. },
  26187. [
  26188. {
  26189. name: "Really Small",
  26190. height: math.unit(5, "cm")
  26191. },
  26192. {
  26193. name: "Micro",
  26194. height: math.unit(1 + 5 / 12, "feet")
  26195. },
  26196. {
  26197. name: "Normal",
  26198. height: math.unit(3 + 5 / 12, "feet"),
  26199. default: true
  26200. },
  26201. {
  26202. name: "Minimacro",
  26203. height: math.unit(125, "feet")
  26204. },
  26205. {
  26206. name: "Macro",
  26207. height: math.unit(0.5, "miles")
  26208. },
  26209. {
  26210. name: "Megamacro",
  26211. height: math.unit(50, "miles")
  26212. },
  26213. {
  26214. name: "Gigantic",
  26215. height: math.unit(750, "miles")
  26216. },
  26217. {
  26218. name: "Planetary",
  26219. height: math.unit(15000, "miles")
  26220. },
  26221. ]
  26222. ))
  26223. characterMakers.push(() => makeCharacter(
  26224. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26225. {
  26226. front: {
  26227. height: math.unit(14, "feet"),
  26228. weight: math.unit(959, "lb"),
  26229. name: "Front",
  26230. image: {
  26231. source: "./media/characters/arsenal/front.svg",
  26232. extra: 2357 / 2157,
  26233. bottom: 93 / 2458
  26234. }
  26235. },
  26236. },
  26237. [
  26238. {
  26239. name: "Normal",
  26240. height: math.unit(14, "feet"),
  26241. default: true
  26242. },
  26243. ]
  26244. ))
  26245. characterMakers.push(() => makeCharacter(
  26246. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26247. {
  26248. front: {
  26249. height: math.unit(6, "feet"),
  26250. weight: math.unit(150, "lb"),
  26251. name: "Front",
  26252. image: {
  26253. source: "./media/characters/adira/front.svg",
  26254. extra: 1078 / 1029,
  26255. bottom: 87 / 1166
  26256. }
  26257. },
  26258. },
  26259. [
  26260. {
  26261. name: "Micro",
  26262. height: math.unit(4, "inches"),
  26263. default: true
  26264. },
  26265. {
  26266. name: "Macro",
  26267. height: math.unit(50, "feet")
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26273. {
  26274. front: {
  26275. height: math.unit(16, "feet"),
  26276. weight: math.unit(1000, "lb"),
  26277. name: "Front",
  26278. image: {
  26279. source: "./media/characters/grim/front.svg",
  26280. extra: 622 / 614,
  26281. bottom: 18.1 / 642
  26282. }
  26283. },
  26284. back: {
  26285. height: math.unit(16, "feet"),
  26286. weight: math.unit(1000, "lb"),
  26287. name: "Back",
  26288. image: {
  26289. source: "./media/characters/grim/back.svg",
  26290. extra: 610.6 / 602,
  26291. bottom: 40.8 / 652
  26292. }
  26293. },
  26294. hunched: {
  26295. height: math.unit(9.75, "feet"),
  26296. weight: math.unit(1000, "lb"),
  26297. name: "Hunched",
  26298. image: {
  26299. source: "./media/characters/grim/hunched.svg",
  26300. extra: 304 / 297,
  26301. bottom: 35.4 / 394
  26302. }
  26303. },
  26304. },
  26305. [
  26306. {
  26307. name: "Normal",
  26308. height: math.unit(16, "feet"),
  26309. default: true
  26310. },
  26311. ]
  26312. ))
  26313. characterMakers.push(() => makeCharacter(
  26314. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26315. {
  26316. front: {
  26317. height: math.unit(2.3, "meters"),
  26318. weight: math.unit(300, "lb"),
  26319. name: "Front",
  26320. image: {
  26321. source: "./media/characters/sinja/front-sfw.svg",
  26322. extra: 1393 / 1294,
  26323. bottom: 70 / 1463
  26324. }
  26325. },
  26326. frontNsfw: {
  26327. height: math.unit(2.3, "meters"),
  26328. weight: math.unit(300, "lb"),
  26329. name: "Front (NSFW)",
  26330. image: {
  26331. source: "./media/characters/sinja/front-nsfw.svg",
  26332. extra: 1393 / 1294,
  26333. bottom: 70 / 1463
  26334. }
  26335. },
  26336. back: {
  26337. height: math.unit(2.3, "meters"),
  26338. weight: math.unit(300, "lb"),
  26339. name: "Back",
  26340. image: {
  26341. source: "./media/characters/sinja/back.svg",
  26342. extra: 1393 / 1294,
  26343. bottom: 70 / 1463
  26344. }
  26345. },
  26346. head: {
  26347. height: math.unit(1.771, "feet"),
  26348. name: "Head",
  26349. image: {
  26350. source: "./media/characters/sinja/head.svg"
  26351. }
  26352. },
  26353. slit: {
  26354. height: math.unit(0.8, "feet"),
  26355. name: "Slit",
  26356. image: {
  26357. source: "./media/characters/sinja/slit.svg"
  26358. }
  26359. },
  26360. },
  26361. [
  26362. {
  26363. name: "Normal",
  26364. height: math.unit(2.3, "meters")
  26365. },
  26366. {
  26367. name: "Macro",
  26368. height: math.unit(91, "meters"),
  26369. default: true
  26370. },
  26371. {
  26372. name: "Megamacro",
  26373. height: math.unit(91440, "meters")
  26374. },
  26375. {
  26376. name: "Gigamacro",
  26377. height: math.unit(60960000, "meters")
  26378. },
  26379. {
  26380. name: "Teramacro",
  26381. height: math.unit(9144000000, "meters")
  26382. },
  26383. ]
  26384. ))
  26385. characterMakers.push(() => makeCharacter(
  26386. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26387. {
  26388. front: {
  26389. height: math.unit(1.7, "meters"),
  26390. weight: math.unit(130, "lb"),
  26391. name: "Front",
  26392. image: {
  26393. source: "./media/characters/kyu/front.svg",
  26394. extra: 415 / 395,
  26395. bottom: 5 / 420
  26396. }
  26397. },
  26398. head: {
  26399. height: math.unit(1.75, "feet"),
  26400. name: "Head",
  26401. image: {
  26402. source: "./media/characters/kyu/head.svg"
  26403. }
  26404. },
  26405. foot: {
  26406. height: math.unit(0.81, "feet"),
  26407. name: "Foot",
  26408. image: {
  26409. source: "./media/characters/kyu/foot.svg"
  26410. }
  26411. },
  26412. },
  26413. [
  26414. {
  26415. name: "Normal",
  26416. height: math.unit(1.7, "meters")
  26417. },
  26418. {
  26419. name: "Macro",
  26420. height: math.unit(131, "feet"),
  26421. default: true
  26422. },
  26423. {
  26424. name: "Megamacro",
  26425. height: math.unit(91440, "meters")
  26426. },
  26427. {
  26428. name: "Gigamacro",
  26429. height: math.unit(60960000, "meters")
  26430. },
  26431. {
  26432. name: "Teramacro",
  26433. height: math.unit(9144000000, "meters")
  26434. },
  26435. ]
  26436. ))
  26437. characterMakers.push(() => makeCharacter(
  26438. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26439. {
  26440. front: {
  26441. height: math.unit(7 + 1 / 12, "feet"),
  26442. weight: math.unit(250, "lb"),
  26443. name: "Front",
  26444. image: {
  26445. source: "./media/characters/joey/front.svg",
  26446. extra: 1791 / 1537,
  26447. bottom: 28 / 1816
  26448. }
  26449. },
  26450. },
  26451. [
  26452. {
  26453. name: "Micro",
  26454. height: math.unit(3, "inches")
  26455. },
  26456. {
  26457. name: "Normal",
  26458. height: math.unit(7 + 1 / 12, "feet"),
  26459. default: true
  26460. },
  26461. ]
  26462. ))
  26463. characterMakers.push(() => makeCharacter(
  26464. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26465. {
  26466. front: {
  26467. height: math.unit(165, "cm"),
  26468. weight: math.unit(140, "lb"),
  26469. name: "Front",
  26470. image: {
  26471. source: "./media/characters/sam-evans/front.svg",
  26472. extra: 3417 / 3230,
  26473. bottom: 41.3 / 3417
  26474. }
  26475. },
  26476. frontSixTails: {
  26477. height: math.unit(165, "cm"),
  26478. weight: math.unit(140, "lb"),
  26479. name: "Front-six-tails",
  26480. image: {
  26481. source: "./media/characters/sam-evans/front-six-tails.svg",
  26482. extra: 3417 / 3230,
  26483. bottom: 41.3 / 3417
  26484. }
  26485. },
  26486. back: {
  26487. height: math.unit(165, "cm"),
  26488. weight: math.unit(140, "lb"),
  26489. name: "Back",
  26490. image: {
  26491. source: "./media/characters/sam-evans/back.svg",
  26492. extra: 3227 / 3032,
  26493. bottom: 6.8 / 3234
  26494. }
  26495. },
  26496. face: {
  26497. height: math.unit(0.68, "feet"),
  26498. name: "Face",
  26499. image: {
  26500. source: "./media/characters/sam-evans/face.svg"
  26501. }
  26502. },
  26503. },
  26504. [
  26505. {
  26506. name: "Normal",
  26507. height: math.unit(165, "cm"),
  26508. default: true
  26509. },
  26510. {
  26511. name: "Macro",
  26512. height: math.unit(100, "meters")
  26513. },
  26514. {
  26515. name: "Macro+",
  26516. height: math.unit(800, "meters")
  26517. },
  26518. {
  26519. name: "Macro++",
  26520. height: math.unit(3, "km")
  26521. },
  26522. {
  26523. name: "Macro+++",
  26524. height: math.unit(30, "km")
  26525. },
  26526. ]
  26527. ))
  26528. characterMakers.push(() => makeCharacter(
  26529. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26530. {
  26531. front: {
  26532. height: math.unit(10, "feet"),
  26533. weight: math.unit(750, "lb"),
  26534. name: "Front",
  26535. image: {
  26536. source: "./media/characters/juliet-a/front.svg",
  26537. extra: 1766 / 1720,
  26538. bottom: 43 / 1809
  26539. }
  26540. },
  26541. back: {
  26542. height: math.unit(10, "feet"),
  26543. weight: math.unit(750, "lb"),
  26544. name: "Back",
  26545. image: {
  26546. source: "./media/characters/juliet-a/back.svg",
  26547. extra: 1781 / 1734,
  26548. bottom: 35 / 1810,
  26549. }
  26550. },
  26551. },
  26552. [
  26553. {
  26554. name: "Normal",
  26555. height: math.unit(10, "feet"),
  26556. default: true
  26557. },
  26558. {
  26559. name: "Dragon Form",
  26560. height: math.unit(250, "feet")
  26561. },
  26562. {
  26563. name: "Macro",
  26564. height: math.unit(1000, "feet")
  26565. },
  26566. {
  26567. name: "Megamacro",
  26568. height: math.unit(10000, "feet")
  26569. }
  26570. ]
  26571. ))
  26572. characterMakers.push(() => makeCharacter(
  26573. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26574. {
  26575. regular: {
  26576. height: math.unit(7 + 3 / 12, "feet"),
  26577. weight: math.unit(260, "lb"),
  26578. name: "Regular",
  26579. image: {
  26580. source: "./media/characters/wild/regular.svg",
  26581. extra: 97.45 / 92,
  26582. bottom: 6.8 / 104.3
  26583. }
  26584. },
  26585. biggums: {
  26586. height: math.unit(8 + 6 / 12, "feet"),
  26587. weight: math.unit(425, "lb"),
  26588. name: "Biggums",
  26589. image: {
  26590. source: "./media/characters/wild/biggums.svg",
  26591. extra: 97.45 / 92,
  26592. bottom: 7.5 / 132.34
  26593. }
  26594. },
  26595. mawRegular: {
  26596. height: math.unit(1.24, "feet"),
  26597. name: "Maw (Regular)",
  26598. image: {
  26599. source: "./media/characters/wild/maw.svg"
  26600. }
  26601. },
  26602. mawBiggums: {
  26603. height: math.unit(1.47, "feet"),
  26604. name: "Maw (Biggums)",
  26605. image: {
  26606. source: "./media/characters/wild/maw.svg"
  26607. }
  26608. },
  26609. },
  26610. [
  26611. {
  26612. name: "Normal",
  26613. height: math.unit(7 + 3 / 12, "feet"),
  26614. default: true
  26615. },
  26616. ]
  26617. ))
  26618. characterMakers.push(() => makeCharacter(
  26619. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26620. {
  26621. front: {
  26622. height: math.unit(2.5, "meters"),
  26623. weight: math.unit(200, "kg"),
  26624. name: "Front",
  26625. image: {
  26626. source: "./media/characters/vidar/front.svg",
  26627. extra: 2994 / 2795,
  26628. bottom: 56 / 3061
  26629. }
  26630. },
  26631. back: {
  26632. height: math.unit(2.5, "meters"),
  26633. weight: math.unit(200, "kg"),
  26634. name: "Back",
  26635. image: {
  26636. source: "./media/characters/vidar/back.svg",
  26637. extra: 3131 / 2928,
  26638. bottom: 13.5 / 3141.5
  26639. }
  26640. },
  26641. feral: {
  26642. height: math.unit(2.5, "meters"),
  26643. weight: math.unit(2000, "kg"),
  26644. name: "Feral",
  26645. image: {
  26646. source: "./media/characters/vidar/feral.svg",
  26647. extra: 2790 / 1765,
  26648. bottom: 6 / 2796
  26649. }
  26650. },
  26651. },
  26652. [
  26653. {
  26654. name: "Normal",
  26655. height: math.unit(2.5, "meters"),
  26656. default: true
  26657. },
  26658. {
  26659. name: "Macro",
  26660. height: math.unit(100, "meters")
  26661. },
  26662. ]
  26663. ))
  26664. characterMakers.push(() => makeCharacter(
  26665. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26666. {
  26667. front: {
  26668. height: math.unit(5 + 9 / 12, "feet"),
  26669. weight: math.unit(120, "lb"),
  26670. name: "Front",
  26671. image: {
  26672. source: "./media/characters/ash/front.svg",
  26673. extra: 2189 / 1961,
  26674. bottom: 5.2 / 2194
  26675. }
  26676. },
  26677. },
  26678. [
  26679. {
  26680. name: "Normal",
  26681. height: math.unit(5 + 9 / 12, "feet"),
  26682. default: true
  26683. },
  26684. ]
  26685. ))
  26686. characterMakers.push(() => makeCharacter(
  26687. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26688. {
  26689. front: {
  26690. height: math.unit(9, "feet"),
  26691. weight: math.unit(10000, "lb"),
  26692. name: "Front",
  26693. image: {
  26694. source: "./media/characters/gygabite/front.svg",
  26695. bottom: 31.7 / 537.8,
  26696. extra: 505 / 370
  26697. }
  26698. },
  26699. },
  26700. [
  26701. {
  26702. name: "Normal",
  26703. height: math.unit(9, "feet"),
  26704. default: true
  26705. },
  26706. ]
  26707. ))
  26708. characterMakers.push(() => makeCharacter(
  26709. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26710. {
  26711. front: {
  26712. height: math.unit(12, "feet"),
  26713. weight: math.unit(35000, "lb"),
  26714. name: "Front",
  26715. image: {
  26716. source: "./media/characters/p0tat0/front.svg",
  26717. extra: 1065 / 921,
  26718. bottom: 55.7 / 1121.25
  26719. }
  26720. },
  26721. },
  26722. [
  26723. {
  26724. name: "Normal",
  26725. height: math.unit(12, "feet"),
  26726. default: true
  26727. },
  26728. ]
  26729. ))
  26730. characterMakers.push(() => makeCharacter(
  26731. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26732. {
  26733. side: {
  26734. height: math.unit(6.5, "feet"),
  26735. weight: math.unit(800, "lb"),
  26736. name: "Side",
  26737. image: {
  26738. source: "./media/characters/dusk/side.svg",
  26739. extra: 615 / 373,
  26740. bottom: 53 / 664
  26741. }
  26742. },
  26743. sitting: {
  26744. height: math.unit(7, "feet"),
  26745. weight: math.unit(800, "lb"),
  26746. name: "Sitting",
  26747. image: {
  26748. source: "./media/characters/dusk/sitting.svg",
  26749. extra: 753 / 425,
  26750. bottom: 33 / 774
  26751. }
  26752. },
  26753. head: {
  26754. height: math.unit(6.1, "feet"),
  26755. name: "Head",
  26756. image: {
  26757. source: "./media/characters/dusk/head.svg"
  26758. }
  26759. },
  26760. },
  26761. [
  26762. {
  26763. name: "Normal",
  26764. height: math.unit(7, "feet"),
  26765. default: true
  26766. },
  26767. ]
  26768. ))
  26769. characterMakers.push(() => makeCharacter(
  26770. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26771. {
  26772. front: {
  26773. height: math.unit(15, "feet"),
  26774. weight: math.unit(7000, "lb"),
  26775. name: "Front",
  26776. image: {
  26777. source: "./media/characters/jay-direwolf/front.svg",
  26778. extra: 1810 / 1732,
  26779. bottom: 66 / 1892
  26780. }
  26781. },
  26782. },
  26783. [
  26784. {
  26785. name: "Normal",
  26786. height: math.unit(15, "feet"),
  26787. default: true
  26788. },
  26789. ]
  26790. ))
  26791. characterMakers.push(() => makeCharacter(
  26792. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26793. {
  26794. front: {
  26795. height: math.unit(4 + 9 / 12, "feet"),
  26796. weight: math.unit(130, "lb"),
  26797. name: "Front",
  26798. image: {
  26799. source: "./media/characters/anchovie/front.svg",
  26800. extra: 382 / 350,
  26801. bottom: 25 / 409
  26802. }
  26803. },
  26804. back: {
  26805. height: math.unit(4 + 9 / 12, "feet"),
  26806. weight: math.unit(130, "lb"),
  26807. name: "Back",
  26808. image: {
  26809. source: "./media/characters/anchovie/back.svg",
  26810. extra: 385 / 352,
  26811. bottom: 16.6 / 402
  26812. }
  26813. },
  26814. frontDressed: {
  26815. height: math.unit(4 + 9 / 12, "feet"),
  26816. weight: math.unit(130, "lb"),
  26817. name: "Front (Dressed)",
  26818. image: {
  26819. source: "./media/characters/anchovie/front-dressed.svg",
  26820. extra: 382 / 350,
  26821. bottom: 25 / 409
  26822. }
  26823. },
  26824. backDressed: {
  26825. height: math.unit(4 + 9 / 12, "feet"),
  26826. weight: math.unit(130, "lb"),
  26827. name: "Back (Dressed)",
  26828. image: {
  26829. source: "./media/characters/anchovie/back-dressed.svg",
  26830. extra: 385 / 352,
  26831. bottom: 16.6 / 402
  26832. }
  26833. },
  26834. },
  26835. [
  26836. {
  26837. name: "Micro",
  26838. height: math.unit(6.4, "inches")
  26839. },
  26840. {
  26841. name: "Normal",
  26842. height: math.unit(4 + 9 / 12, "feet"),
  26843. default: true
  26844. },
  26845. ]
  26846. ))
  26847. characterMakers.push(() => makeCharacter(
  26848. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26849. {
  26850. front: {
  26851. height: math.unit(2, "meters"),
  26852. weight: math.unit(180, "lb"),
  26853. name: "Front",
  26854. image: {
  26855. source: "./media/characters/acidrenamon/front.svg",
  26856. extra: 987 / 890,
  26857. bottom: 22.8 / 1009
  26858. }
  26859. },
  26860. back: {
  26861. height: math.unit(2, "meters"),
  26862. weight: math.unit(180, "lb"),
  26863. name: "Back",
  26864. image: {
  26865. source: "./media/characters/acidrenamon/back.svg",
  26866. extra: 983 / 891,
  26867. bottom: 8.4 / 992
  26868. }
  26869. },
  26870. head: {
  26871. height: math.unit(1.92, "feet"),
  26872. name: "Head",
  26873. image: {
  26874. source: "./media/characters/acidrenamon/head.svg"
  26875. }
  26876. },
  26877. rump: {
  26878. height: math.unit(1.72, "feet"),
  26879. name: "Rump",
  26880. image: {
  26881. source: "./media/characters/acidrenamon/rump.svg"
  26882. }
  26883. },
  26884. tail: {
  26885. height: math.unit(4.2, "feet"),
  26886. name: "Tail",
  26887. image: {
  26888. source: "./media/characters/acidrenamon/tail.svg"
  26889. }
  26890. },
  26891. },
  26892. [
  26893. {
  26894. name: "Normal",
  26895. height: math.unit(2, "meters"),
  26896. default: true
  26897. },
  26898. {
  26899. name: "Minimacro",
  26900. height: math.unit(7, "meters")
  26901. },
  26902. {
  26903. name: "Macro",
  26904. height: math.unit(200, "meters")
  26905. },
  26906. {
  26907. name: "Gigamacro",
  26908. height: math.unit(0.2, "earths")
  26909. },
  26910. ]
  26911. ))
  26912. characterMakers.push(() => makeCharacter(
  26913. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26914. {
  26915. front: {
  26916. height: math.unit(6, "feet"),
  26917. weight: math.unit(150, "lb"),
  26918. name: "Front",
  26919. image: {
  26920. source: "./media/characters/kenzie-lee/front.svg",
  26921. extra: 1525 / 1465,
  26922. bottom: 45 / 1570
  26923. }
  26924. },
  26925. side: {
  26926. height: math.unit(6, "feet"),
  26927. weight: math.unit(150, "lb"),
  26928. name: "Side",
  26929. image: {
  26930. source: "./media/characters/kenzie-lee/side.svg",
  26931. extra: 5505 / 5383,
  26932. bottom: 60 / 5573
  26933. }
  26934. },
  26935. paw: {
  26936. height: math.unit(0.57, "feet"),
  26937. name: "Paw",
  26938. image: {
  26939. source: "./media/characters/kenzie-lee/paw.svg"
  26940. }
  26941. },
  26942. },
  26943. [
  26944. {
  26945. name: "Normal",
  26946. height: math.unit(152, "feet"),
  26947. default: true
  26948. },
  26949. {
  26950. name: "Megamacro",
  26951. height: math.unit(7, "miles")
  26952. },
  26953. {
  26954. name: "Gigamacro",
  26955. height: math.unit(8000, "miles")
  26956. },
  26957. ]
  26958. ))
  26959. characterMakers.push(() => makeCharacter(
  26960. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26961. {
  26962. side: {
  26963. height: math.unit(6, "feet"),
  26964. weight: math.unit(150, "lb"),
  26965. name: "Side",
  26966. image: {
  26967. source: "./media/characters/withers/side.svg",
  26968. extra: 1830 / 1728,
  26969. bottom: 96 / 1927
  26970. }
  26971. },
  26972. front: {
  26973. height: math.unit(6, "feet"),
  26974. weight: math.unit(150, "lb"),
  26975. name: "Front",
  26976. image: {
  26977. source: "./media/characters/withers/front.svg",
  26978. extra: 1514 / 1438,
  26979. bottom: 118 / 1632
  26980. }
  26981. },
  26982. },
  26983. [
  26984. {
  26985. name: "Macro",
  26986. height: math.unit(168, "feet"),
  26987. default: true
  26988. },
  26989. {
  26990. name: "Megamacro",
  26991. height: math.unit(15, "miles")
  26992. }
  26993. ]
  26994. ))
  26995. characterMakers.push(() => makeCharacter(
  26996. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26997. {
  26998. front: {
  26999. height: math.unit(6 + 7 / 12, "feet"),
  27000. weight: math.unit(250, "lb"),
  27001. name: "Front",
  27002. image: {
  27003. source: "./media/characters/nemoskii/front.svg",
  27004. extra: 2270 / 1734,
  27005. bottom: 86 / 2354
  27006. }
  27007. },
  27008. back: {
  27009. height: math.unit(6 + 7 / 12, "feet"),
  27010. weight: math.unit(250, "lb"),
  27011. name: "Back",
  27012. image: {
  27013. source: "./media/characters/nemoskii/back.svg",
  27014. extra: 1845 / 1788,
  27015. bottom: 10.5 / 1852
  27016. }
  27017. },
  27018. head: {
  27019. height: math.unit(1.31, "feet"),
  27020. name: "Head",
  27021. image: {
  27022. source: "./media/characters/nemoskii/head.svg"
  27023. }
  27024. },
  27025. },
  27026. [
  27027. {
  27028. name: "Micro",
  27029. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27030. },
  27031. {
  27032. name: "Normal",
  27033. height: math.unit(6 + 7 / 12, "feet"),
  27034. default: true
  27035. },
  27036. {
  27037. name: "Macro",
  27038. height: math.unit((6 + 7 / 12) * 150, "feet")
  27039. },
  27040. {
  27041. name: "Macro+",
  27042. height: math.unit((6 + 7 / 12) * 500, "feet")
  27043. },
  27044. {
  27045. name: "Megamacro",
  27046. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27047. },
  27048. ]
  27049. ))
  27050. characterMakers.push(() => makeCharacter(
  27051. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27052. {
  27053. front: {
  27054. height: math.unit(1, "mile"),
  27055. weight: math.unit(265261.9, "lb"),
  27056. name: "Front",
  27057. image: {
  27058. source: "./media/characters/shui/front.svg",
  27059. extra: 1633 / 1564,
  27060. bottom: 91.5 / 1726
  27061. }
  27062. },
  27063. },
  27064. [
  27065. {
  27066. name: "Macro",
  27067. height: math.unit(1, "mile"),
  27068. default: true
  27069. },
  27070. ]
  27071. ))
  27072. characterMakers.push(() => makeCharacter(
  27073. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27074. {
  27075. front: {
  27076. height: math.unit(12 + 6 / 12, "feet"),
  27077. weight: math.unit(1342, "lb"),
  27078. name: "Front",
  27079. image: {
  27080. source: "./media/characters/arokh-takakura/front.svg",
  27081. extra: 1089 / 1043,
  27082. bottom: 77.4 / 1176.7
  27083. }
  27084. },
  27085. back: {
  27086. height: math.unit(12 + 6 / 12, "feet"),
  27087. weight: math.unit(1342, "lb"),
  27088. name: "Back",
  27089. image: {
  27090. source: "./media/characters/arokh-takakura/back.svg",
  27091. extra: 1046 / 1019,
  27092. bottom: 102 / 1150
  27093. }
  27094. },
  27095. },
  27096. [
  27097. {
  27098. name: "Big",
  27099. height: math.unit(12 + 6 / 12, "feet"),
  27100. default: true
  27101. },
  27102. ]
  27103. ))
  27104. characterMakers.push(() => makeCharacter(
  27105. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27106. {
  27107. front: {
  27108. height: math.unit(5 + 6 / 12, "feet"),
  27109. weight: math.unit(150, "lb"),
  27110. name: "Front",
  27111. image: {
  27112. source: "./media/characters/theo/front.svg",
  27113. extra: 1184 / 1131,
  27114. bottom: 7.4 / 1191
  27115. }
  27116. },
  27117. },
  27118. [
  27119. {
  27120. name: "Micro",
  27121. height: math.unit(5, "inches")
  27122. },
  27123. {
  27124. name: "Normal",
  27125. height: math.unit(5 + 6 / 12, "feet"),
  27126. default: true
  27127. },
  27128. ]
  27129. ))
  27130. characterMakers.push(() => makeCharacter(
  27131. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27132. {
  27133. front: {
  27134. height: math.unit(5 + 9 / 12, "feet"),
  27135. weight: math.unit(130, "lb"),
  27136. name: "Front",
  27137. image: {
  27138. source: "./media/characters/cecelia-swift/front.svg",
  27139. extra: 502 / 484,
  27140. bottom: 23 / 523
  27141. }
  27142. },
  27143. back: {
  27144. height: math.unit(5 + 9 / 12, "feet"),
  27145. weight: math.unit(130, "lb"),
  27146. name: "Back",
  27147. image: {
  27148. source: "./media/characters/cecelia-swift/back.svg",
  27149. extra: 499 / 485,
  27150. bottom: 12 / 511
  27151. }
  27152. },
  27153. head: {
  27154. height: math.unit(0.90, "feet"),
  27155. name: "Head",
  27156. image: {
  27157. source: "./media/characters/cecelia-swift/head.svg"
  27158. }
  27159. },
  27160. rump: {
  27161. height: math.unit(1.75, "feet"),
  27162. name: "Rump",
  27163. image: {
  27164. source: "./media/characters/cecelia-swift/rump.svg"
  27165. }
  27166. },
  27167. },
  27168. [
  27169. {
  27170. name: "Normal",
  27171. height: math.unit(5 + 9 / 12, "feet"),
  27172. default: true
  27173. },
  27174. {
  27175. name: "Big",
  27176. height: math.unit(50, "feet")
  27177. },
  27178. {
  27179. name: "Macro",
  27180. height: math.unit(100, "feet")
  27181. },
  27182. {
  27183. name: "Macro+",
  27184. height: math.unit(500, "feet")
  27185. },
  27186. {
  27187. name: "Macro++",
  27188. height: math.unit(1000, "feet")
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27194. {
  27195. front: {
  27196. height: math.unit(6, "feet"),
  27197. weight: math.unit(150, "lb"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/kaunan/front.svg",
  27201. extra: 2890 / 2523,
  27202. bottom: 49 / 2939
  27203. }
  27204. },
  27205. },
  27206. [
  27207. {
  27208. name: "Macro",
  27209. height: math.unit(150, "feet"),
  27210. default: true
  27211. },
  27212. ]
  27213. ))
  27214. characterMakers.push(() => makeCharacter(
  27215. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27216. {
  27217. front: {
  27218. height: math.unit(175, "cm"),
  27219. weight: math.unit(60, "kg"),
  27220. name: "Front",
  27221. image: {
  27222. source: "./media/characters/fei/front.svg",
  27223. extra: 2581 / 2400,
  27224. bottom: 82.2 / 2663
  27225. }
  27226. },
  27227. },
  27228. [
  27229. {
  27230. name: "Mortal",
  27231. height: math.unit(175, "cm")
  27232. },
  27233. {
  27234. name: "Normal",
  27235. height: math.unit(3500, "m"),
  27236. default: true
  27237. },
  27238. {
  27239. name: "Stroll",
  27240. height: math.unit(17.5, "km")
  27241. },
  27242. {
  27243. name: "Showoff",
  27244. height: math.unit(175, "km")
  27245. },
  27246. ]
  27247. ))
  27248. characterMakers.push(() => makeCharacter(
  27249. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27250. {
  27251. front: {
  27252. height: math.unit(7, "feet"),
  27253. weight: math.unit(1000, "kg"),
  27254. name: "Front",
  27255. image: {
  27256. source: "./media/characters/edrax/front.svg",
  27257. extra: 2838 / 2550,
  27258. bottom: 130 / 2968
  27259. }
  27260. },
  27261. },
  27262. [
  27263. {
  27264. name: "Small",
  27265. height: math.unit(7, "feet")
  27266. },
  27267. {
  27268. name: "Normal",
  27269. height: math.unit(1500, "meters")
  27270. },
  27271. {
  27272. name: "Mega",
  27273. height: math.unit(12000000, "km"),
  27274. default: true
  27275. },
  27276. {
  27277. name: "Megamacro",
  27278. height: math.unit(10600000, "lightyears")
  27279. },
  27280. {
  27281. name: "Hypermacro",
  27282. height: math.unit(256, "yottameters")
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27288. {
  27289. front: {
  27290. height: math.unit(10, "feet"),
  27291. weight: math.unit(750, "lb"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/clove/front.svg",
  27295. extra: 2031 / 1860,
  27296. bottom: 47.8 / 2080
  27297. }
  27298. },
  27299. back: {
  27300. height: math.unit(10, "feet"),
  27301. weight: math.unit(750, "lb"),
  27302. name: "Back",
  27303. image: {
  27304. source: "./media/characters/clove/back.svg",
  27305. extra: 2025 / 1859,
  27306. bottom: 46 / 2071
  27307. }
  27308. },
  27309. },
  27310. [
  27311. {
  27312. name: "Normal",
  27313. height: math.unit(10, "feet"),
  27314. default: true
  27315. },
  27316. ]
  27317. ))
  27318. characterMakers.push(() => makeCharacter(
  27319. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27320. {
  27321. front: {
  27322. height: math.unit(4, "feet"),
  27323. weight: math.unit(50, "lb"),
  27324. name: "Front",
  27325. image: {
  27326. source: "./media/characters/alex-rabbit/front.svg",
  27327. extra: 507 / 458,
  27328. bottom: 18.5 / 527
  27329. }
  27330. },
  27331. back: {
  27332. height: math.unit(4, "feet"),
  27333. weight: math.unit(50, "lb"),
  27334. name: "Back",
  27335. image: {
  27336. source: "./media/characters/alex-rabbit/back.svg",
  27337. extra: 502 / 460,
  27338. bottom: 18.9 / 521
  27339. }
  27340. },
  27341. },
  27342. [
  27343. {
  27344. name: "Normal",
  27345. height: math.unit(4, "feet"),
  27346. default: true
  27347. },
  27348. ]
  27349. ))
  27350. characterMakers.push(() => makeCharacter(
  27351. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27352. {
  27353. front: {
  27354. height: math.unit(1 + 3 / 12, "feet"),
  27355. weight: math.unit(80, "lb"),
  27356. name: "Front",
  27357. image: {
  27358. source: "./media/characters/zander-rose/front.svg",
  27359. extra: 916 / 797,
  27360. bottom: 17 / 933
  27361. }
  27362. },
  27363. back: {
  27364. height: math.unit(1 + 3 / 12, "feet"),
  27365. weight: math.unit(80, "lb"),
  27366. name: "Back",
  27367. image: {
  27368. source: "./media/characters/zander-rose/back.svg",
  27369. extra: 903 / 779,
  27370. bottom: 31 / 934
  27371. }
  27372. },
  27373. },
  27374. [
  27375. {
  27376. name: "Normal",
  27377. height: math.unit(1 + 3 / 12, "feet"),
  27378. default: true
  27379. },
  27380. ]
  27381. ))
  27382. characterMakers.push(() => makeCharacter(
  27383. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27384. {
  27385. anthro: {
  27386. height: math.unit(6, "feet"),
  27387. weight: math.unit(150, "lb"),
  27388. name: "Anthro",
  27389. image: {
  27390. source: "./media/characters/razz/anthro.svg",
  27391. extra: 1437 / 1343,
  27392. bottom: 48 / 1485
  27393. }
  27394. },
  27395. feral: {
  27396. height: math.unit(6, "feet"),
  27397. weight: math.unit(150, "lb"),
  27398. name: "Feral",
  27399. image: {
  27400. source: "./media/characters/razz/feral.svg",
  27401. extra: 2569 / 1385,
  27402. bottom: 95 / 2664
  27403. }
  27404. },
  27405. },
  27406. [
  27407. {
  27408. name: "Normal",
  27409. height: math.unit(6, "feet"),
  27410. default: true
  27411. },
  27412. ]
  27413. ))
  27414. characterMakers.push(() => makeCharacter(
  27415. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27416. {
  27417. front: {
  27418. height: math.unit(9 + 4 / 12, "feet"),
  27419. weight: math.unit(500, "lb"),
  27420. name: "Front",
  27421. image: {
  27422. source: "./media/characters/morrigan/front.svg",
  27423. extra: 2707 / 2579,
  27424. bottom: 156 / 2863
  27425. }
  27426. },
  27427. },
  27428. [
  27429. {
  27430. name: "Normal",
  27431. height: math.unit(9 + 4 / 12, "feet"),
  27432. default: true
  27433. },
  27434. ]
  27435. ))
  27436. characterMakers.push(() => makeCharacter(
  27437. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27438. {
  27439. front: {
  27440. height: math.unit(5, "stories"),
  27441. weight: math.unit(4000, "lb"),
  27442. name: "Front",
  27443. image: {
  27444. source: "./media/characters/jenene/front.svg",
  27445. extra: 1780 / 1710,
  27446. bottom: 57 / 1837
  27447. }
  27448. },
  27449. },
  27450. [
  27451. {
  27452. name: "Normal",
  27453. height: math.unit(5, "stories"),
  27454. default: true
  27455. },
  27456. ]
  27457. ))
  27458. characterMakers.push(() => makeCharacter(
  27459. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27460. {
  27461. front: {
  27462. height: math.unit(6, "feet"),
  27463. weight: math.unit(150, "lb"),
  27464. name: "Front",
  27465. image: {
  27466. source: "./media/characters/vix-archaser/front.svg",
  27467. extra: 2767 / 2562,
  27468. bottom: 36 / 2803
  27469. }
  27470. },
  27471. },
  27472. [
  27473. {
  27474. name: "Micro",
  27475. height: math.unit(1, "foot")
  27476. },
  27477. {
  27478. name: "Normal",
  27479. height: math.unit(6 + 5 / 12, "feet")
  27480. },
  27481. {
  27482. name: "Minimacro",
  27483. height: math.unit(500, "feet")
  27484. },
  27485. {
  27486. name: "Macro",
  27487. height: math.unit(4, "miles")
  27488. },
  27489. {
  27490. name: "Megamacro",
  27491. height: math.unit(250, "miles"),
  27492. default: true
  27493. },
  27494. {
  27495. name: "Gigamacro",
  27496. height: math.unit(1, "universe")
  27497. },
  27498. {
  27499. name: "Endgame",
  27500. height: math.unit(100, "multiverses")
  27501. }
  27502. ]
  27503. ))
  27504. characterMakers.push(() => makeCharacter(
  27505. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27506. {
  27507. taurSfw: {
  27508. height: math.unit(10, "meters"),
  27509. weight: math.unit(17500, "kg"),
  27510. name: "Taur",
  27511. image: {
  27512. source: "./media/characters/faey/taur-sfw.svg",
  27513. extra: 1200 / 968,
  27514. bottom: 41 / 1241
  27515. }
  27516. },
  27517. chestmaw: {
  27518. height: math.unit(2.01, "meters"),
  27519. name: "Chestmaw",
  27520. image: {
  27521. source: "./media/characters/faey/chestmaw.svg"
  27522. }
  27523. },
  27524. foot: {
  27525. height: math.unit(2.43, "meters"),
  27526. name: "Foot",
  27527. image: {
  27528. source: "./media/characters/faey/foot.svg"
  27529. }
  27530. },
  27531. jaws: {
  27532. height: math.unit(1.66, "meters"),
  27533. name: "Jaws",
  27534. image: {
  27535. source: "./media/characters/faey/jaws.svg"
  27536. }
  27537. },
  27538. tongues: {
  27539. height: math.unit(2.01, "meters"),
  27540. name: "Tongues",
  27541. image: {
  27542. source: "./media/characters/faey/tongues.svg"
  27543. }
  27544. },
  27545. },
  27546. [
  27547. {
  27548. name: "Small",
  27549. height: math.unit(10, "meters"),
  27550. default: true
  27551. },
  27552. {
  27553. name: "Big",
  27554. height: math.unit(500000, "km")
  27555. },
  27556. ]
  27557. ))
  27558. characterMakers.push(() => makeCharacter(
  27559. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27560. {
  27561. front: {
  27562. height: math.unit(7, "feet"),
  27563. weight: math.unit(275, "lb"),
  27564. name: "Front",
  27565. image: {
  27566. source: "./media/characters/roku/front.svg",
  27567. extra: 903 / 878,
  27568. bottom: 37 / 940
  27569. }
  27570. },
  27571. },
  27572. [
  27573. {
  27574. name: "Normal",
  27575. height: math.unit(7, "feet"),
  27576. default: true
  27577. },
  27578. {
  27579. name: "Macro",
  27580. height: math.unit(500, "feet")
  27581. },
  27582. {
  27583. name: "Megamacro",
  27584. height: math.unit(200, "miles")
  27585. },
  27586. ]
  27587. ))
  27588. characterMakers.push(() => makeCharacter(
  27589. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27590. {
  27591. front: {
  27592. height: math.unit(6 + 2 / 12, "feet"),
  27593. weight: math.unit(150, "lb"),
  27594. name: "Front",
  27595. image: {
  27596. source: "./media/characters/lira/front.svg",
  27597. extra: 1727 / 1605,
  27598. bottom: 26 / 1753
  27599. }
  27600. },
  27601. back: {
  27602. height: math.unit(6 + 2 / 12, "feet"),
  27603. weight: math.unit(150, "lb"),
  27604. name: "Back",
  27605. image: {
  27606. source: "./media/characters/lira/back.svg",
  27607. extra: 1713/1621,
  27608. bottom: 20/1733
  27609. }
  27610. },
  27611. hand: {
  27612. height: math.unit(0.75, "feet"),
  27613. name: "Hand",
  27614. image: {
  27615. source: "./media/characters/lira/hand.svg"
  27616. }
  27617. },
  27618. maw: {
  27619. height: math.unit(0.65, "feet"),
  27620. name: "Maw",
  27621. image: {
  27622. source: "./media/characters/lira/maw.svg"
  27623. }
  27624. },
  27625. pawDigi: {
  27626. height: math.unit(1.6, "feet"),
  27627. name: "Paw Digi",
  27628. image: {
  27629. source: "./media/characters/lira/paw-digi.svg"
  27630. }
  27631. },
  27632. pawPlanti: {
  27633. height: math.unit(1.4, "feet"),
  27634. name: "Paw Planti",
  27635. image: {
  27636. source: "./media/characters/lira/paw-planti.svg"
  27637. }
  27638. },
  27639. },
  27640. [
  27641. {
  27642. name: "Normal",
  27643. height: math.unit(6 + 2 / 12, "feet"),
  27644. default: true
  27645. },
  27646. {
  27647. name: "Macro",
  27648. height: math.unit(100, "feet")
  27649. },
  27650. {
  27651. name: "Macro²",
  27652. height: math.unit(1600, "feet")
  27653. },
  27654. {
  27655. name: "Planetary",
  27656. height: math.unit(20, "earths")
  27657. },
  27658. ]
  27659. ))
  27660. characterMakers.push(() => makeCharacter(
  27661. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27662. {
  27663. front: {
  27664. height: math.unit(6, "feet"),
  27665. weight: math.unit(150, "lb"),
  27666. name: "Front",
  27667. image: {
  27668. source: "./media/characters/hadjet/front.svg",
  27669. extra: 1480 / 1346,
  27670. bottom: 26 / 1506
  27671. }
  27672. },
  27673. frontNsfw: {
  27674. height: math.unit(6, "feet"),
  27675. weight: math.unit(150, "lb"),
  27676. name: "Front (NSFW)",
  27677. image: {
  27678. source: "./media/characters/hadjet/front-nsfw.svg",
  27679. extra: 1440 / 1358,
  27680. bottom: 52 / 1492
  27681. }
  27682. },
  27683. },
  27684. [
  27685. {
  27686. name: "Macro",
  27687. height: math.unit(10, "stories"),
  27688. default: true
  27689. },
  27690. {
  27691. name: "Megamacro",
  27692. height: math.unit(1.5, "miles")
  27693. },
  27694. {
  27695. name: "Megamacro+",
  27696. height: math.unit(5, "miles")
  27697. },
  27698. ]
  27699. ))
  27700. characterMakers.push(() => makeCharacter(
  27701. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27702. {
  27703. side: {
  27704. height: math.unit(106, "feet"),
  27705. weight: math.unit(500, "tonnes"),
  27706. name: "Side",
  27707. image: {
  27708. source: "./media/characters/kodran/side.svg",
  27709. extra: 553 / 480,
  27710. bottom: 33 / 586
  27711. }
  27712. },
  27713. front: {
  27714. height: math.unit(132, "feet"),
  27715. weight: math.unit(500, "tonnes"),
  27716. name: "Front",
  27717. image: {
  27718. source: "./media/characters/kodran/front.svg",
  27719. extra: 667 / 643,
  27720. bottom: 42 / 709
  27721. }
  27722. },
  27723. flying: {
  27724. height: math.unit(350, "feet"),
  27725. weight: math.unit(500, "tonnes"),
  27726. name: "Flying",
  27727. image: {
  27728. source: "./media/characters/kodran/flying.svg"
  27729. }
  27730. },
  27731. foot: {
  27732. height: math.unit(33, "feet"),
  27733. name: "Foot",
  27734. image: {
  27735. source: "./media/characters/kodran/foot.svg"
  27736. }
  27737. },
  27738. footFront: {
  27739. height: math.unit(19, "feet"),
  27740. name: "Foot (Front)",
  27741. image: {
  27742. source: "./media/characters/kodran/foot-front.svg",
  27743. extra: 261 / 261,
  27744. bottom: 91 / 352
  27745. }
  27746. },
  27747. headFront: {
  27748. height: math.unit(53, "feet"),
  27749. name: "Head (Front)",
  27750. image: {
  27751. source: "./media/characters/kodran/head-front.svg"
  27752. }
  27753. },
  27754. headSide: {
  27755. height: math.unit(65, "feet"),
  27756. name: "Head (Side)",
  27757. image: {
  27758. source: "./media/characters/kodran/head-side.svg"
  27759. }
  27760. },
  27761. throat: {
  27762. height: math.unit(79, "feet"),
  27763. name: "Throat",
  27764. image: {
  27765. source: "./media/characters/kodran/throat.svg"
  27766. }
  27767. },
  27768. },
  27769. [
  27770. {
  27771. name: "Large",
  27772. height: math.unit(106, "feet"),
  27773. default: true
  27774. },
  27775. ]
  27776. ))
  27777. characterMakers.push(() => makeCharacter(
  27778. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27779. {
  27780. side: {
  27781. height: math.unit(11, "feet"),
  27782. weight: math.unit(150, "lb"),
  27783. name: "Side",
  27784. image: {
  27785. source: "./media/characters/pyxaron/side.svg",
  27786. extra: 305 / 195,
  27787. bottom: 17 / 322
  27788. }
  27789. },
  27790. },
  27791. [
  27792. {
  27793. name: "Normal",
  27794. height: math.unit(11, "feet"),
  27795. default: true
  27796. },
  27797. ]
  27798. ))
  27799. characterMakers.push(() => makeCharacter(
  27800. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27801. {
  27802. front: {
  27803. height: math.unit(6, "feet"),
  27804. weight: math.unit(150, "lb"),
  27805. name: "Front",
  27806. image: {
  27807. source: "./media/characters/meep/front.svg",
  27808. extra: 88 / 80,
  27809. bottom: 6 / 94
  27810. }
  27811. },
  27812. },
  27813. [
  27814. {
  27815. name: "Fun Sized",
  27816. height: math.unit(2, "inches"),
  27817. default: true
  27818. },
  27819. {
  27820. name: "Friend Sized",
  27821. height: math.unit(8, "inches")
  27822. },
  27823. ]
  27824. ))
  27825. characterMakers.push(() => makeCharacter(
  27826. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27827. {
  27828. front: {
  27829. height: math.unit(15, "feet"),
  27830. weight: math.unit(2500, "lb"),
  27831. name: "Front",
  27832. image: {
  27833. source: "./media/characters/holly-rabbit/front.svg",
  27834. extra: 1433 / 1233,
  27835. bottom: 125 / 1558
  27836. }
  27837. },
  27838. dick: {
  27839. height: math.unit(4.6, "feet"),
  27840. name: "Dick",
  27841. image: {
  27842. source: "./media/characters/holly-rabbit/dick.svg"
  27843. }
  27844. },
  27845. },
  27846. [
  27847. {
  27848. name: "Normal",
  27849. height: math.unit(15, "feet"),
  27850. default: true
  27851. },
  27852. {
  27853. name: "Macro",
  27854. height: math.unit(250, "feet")
  27855. },
  27856. {
  27857. name: "Macro+",
  27858. height: math.unit(2500, "feet")
  27859. },
  27860. ]
  27861. ))
  27862. characterMakers.push(() => makeCharacter(
  27863. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27864. {
  27865. front: {
  27866. height: math.unit(3.02, "meters"),
  27867. weight: math.unit(500, "kg"),
  27868. name: "Front",
  27869. image: {
  27870. source: "./media/characters/drena/front.svg",
  27871. extra: 282 / 243,
  27872. bottom: 8 / 290
  27873. }
  27874. },
  27875. side: {
  27876. height: math.unit(3.02, "meters"),
  27877. weight: math.unit(500, "kg"),
  27878. name: "Side",
  27879. image: {
  27880. source: "./media/characters/drena/side.svg",
  27881. extra: 280 / 245,
  27882. bottom: 10 / 290
  27883. }
  27884. },
  27885. back: {
  27886. height: math.unit(3.02, "meters"),
  27887. weight: math.unit(500, "kg"),
  27888. name: "Back",
  27889. image: {
  27890. source: "./media/characters/drena/back.svg",
  27891. extra: 278 / 243,
  27892. bottom: 2 / 280
  27893. }
  27894. },
  27895. foot: {
  27896. height: math.unit(0.75, "meters"),
  27897. name: "Foot",
  27898. image: {
  27899. source: "./media/characters/drena/foot.svg"
  27900. }
  27901. },
  27902. maw: {
  27903. height: math.unit(0.82, "meters"),
  27904. name: "Maw",
  27905. image: {
  27906. source: "./media/characters/drena/maw.svg"
  27907. }
  27908. },
  27909. rump: {
  27910. height: math.unit(0.93, "meters"),
  27911. name: "Rump",
  27912. image: {
  27913. source: "./media/characters/drena/rump.svg"
  27914. }
  27915. },
  27916. },
  27917. [
  27918. {
  27919. name: "Normal",
  27920. height: math.unit(3.02, "meters"),
  27921. default: true
  27922. },
  27923. ]
  27924. ))
  27925. characterMakers.push(() => makeCharacter(
  27926. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27927. {
  27928. front: {
  27929. height: math.unit(6 + 4 / 12, "feet"),
  27930. weight: math.unit(250, "lb"),
  27931. name: "Front",
  27932. image: {
  27933. source: "./media/characters/remmyzilla/front.svg",
  27934. extra: 4033 / 3588,
  27935. bottom: 123 / 4156
  27936. }
  27937. },
  27938. back: {
  27939. height: math.unit(6 + 4 / 12, "feet"),
  27940. weight: math.unit(250, "lb"),
  27941. name: "Back",
  27942. image: {
  27943. source: "./media/characters/remmyzilla/back.svg",
  27944. extra: 2687 / 2555,
  27945. bottom: 48 / 2735
  27946. }
  27947. },
  27948. frontFancy: {
  27949. height: math.unit(6 + 4 / 12, "feet"),
  27950. weight: math.unit(250, "lb"),
  27951. name: "Front (Fancy)",
  27952. image: {
  27953. source: "./media/characters/remmyzilla/front-fancy.svg",
  27954. extra: 4119 / 3419,
  27955. bottom: 237 / 4356
  27956. }
  27957. },
  27958. paw: {
  27959. height: math.unit(1.73, "feet"),
  27960. name: "Paw",
  27961. image: {
  27962. source: "./media/characters/remmyzilla/paw.svg"
  27963. }
  27964. },
  27965. maw: {
  27966. height: math.unit(1.73, "feet"),
  27967. name: "Maw",
  27968. image: {
  27969. source: "./media/characters/remmyzilla/maw.svg"
  27970. }
  27971. },
  27972. },
  27973. [
  27974. {
  27975. name: "Normal",
  27976. height: math.unit(6 + 4 / 12, "feet")
  27977. },
  27978. {
  27979. name: "Minimacro",
  27980. height: math.unit(12 + 8 / 12, "feet")
  27981. },
  27982. {
  27983. name: "Normal",
  27984. height: math.unit(640, "feet"),
  27985. default: true
  27986. },
  27987. {
  27988. name: "Megamacro",
  27989. height: math.unit(6400, "feet")
  27990. },
  27991. {
  27992. name: "Gigamacro",
  27993. height: math.unit(64000, "miles")
  27994. },
  27995. ]
  27996. ))
  27997. characterMakers.push(() => makeCharacter(
  27998. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27999. {
  28000. front: {
  28001. height: math.unit(2.5, "meters"),
  28002. weight: math.unit(300, "lb"),
  28003. name: "Front",
  28004. image: {
  28005. source: "./media/characters/lawrence/front.svg",
  28006. extra: 357 / 335,
  28007. bottom: 30 / 387
  28008. }
  28009. },
  28010. back: {
  28011. height: math.unit(2.5, "meters"),
  28012. weight: math.unit(300, "lb"),
  28013. name: "Back",
  28014. image: {
  28015. source: "./media/characters/lawrence/back.svg",
  28016. extra: 357 / 338,
  28017. bottom: 16 / 373
  28018. }
  28019. },
  28020. head: {
  28021. height: math.unit(0.9, "meter"),
  28022. name: "Head",
  28023. image: {
  28024. source: "./media/characters/lawrence/head.svg"
  28025. }
  28026. },
  28027. maw: {
  28028. height: math.unit(0.7, "meter"),
  28029. name: "Maw",
  28030. image: {
  28031. source: "./media/characters/lawrence/maw.svg"
  28032. }
  28033. },
  28034. footBottom: {
  28035. height: math.unit(0.5, "meter"),
  28036. name: "Foot (Bottom)",
  28037. image: {
  28038. source: "./media/characters/lawrence/foot-bottom.svg"
  28039. }
  28040. },
  28041. footTop: {
  28042. height: math.unit(0.5, "meter"),
  28043. name: "Foot (Top)",
  28044. image: {
  28045. source: "./media/characters/lawrence/foot-top.svg"
  28046. }
  28047. },
  28048. },
  28049. [
  28050. {
  28051. name: "Normal",
  28052. height: math.unit(2.5, "meters"),
  28053. default: true
  28054. },
  28055. {
  28056. name: "Macro",
  28057. height: math.unit(95, "meters")
  28058. },
  28059. {
  28060. name: "Megamacro",
  28061. height: math.unit(150, "km")
  28062. },
  28063. ]
  28064. ))
  28065. characterMakers.push(() => makeCharacter(
  28066. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28067. {
  28068. front: {
  28069. height: math.unit(4.2, "meters"),
  28070. name: "Front",
  28071. image: {
  28072. source: "./media/characters/sydney/front.svg",
  28073. extra: 1323 / 1277,
  28074. bottom: 111 / 1434
  28075. }
  28076. },
  28077. },
  28078. [
  28079. {
  28080. name: "Normal",
  28081. height: math.unit(4.2, "meters"),
  28082. default: true
  28083. },
  28084. ]
  28085. ))
  28086. characterMakers.push(() => makeCharacter(
  28087. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28088. {
  28089. back: {
  28090. height: math.unit(201, "feet"),
  28091. name: "Back",
  28092. image: {
  28093. source: "./media/characters/jessica/back.svg",
  28094. extra: 273 / 259,
  28095. bottom: 7 / 280
  28096. }
  28097. },
  28098. },
  28099. [
  28100. {
  28101. name: "Normal",
  28102. height: math.unit(201, "feet"),
  28103. default: true
  28104. },
  28105. {
  28106. name: "Megamacro",
  28107. height: math.unit(8, "miles")
  28108. },
  28109. ]
  28110. ))
  28111. characterMakers.push(() => makeCharacter(
  28112. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28113. {
  28114. side: {
  28115. height: math.unit(320, "cm"),
  28116. name: "Side",
  28117. image: {
  28118. source: "./media/characters/victoria/side.svg",
  28119. extra: 778 / 346,
  28120. bottom: 56 / 834
  28121. }
  28122. },
  28123. maw: {
  28124. height: math.unit(5.9, "feet"),
  28125. name: "Maw",
  28126. image: {
  28127. source: "./media/characters/victoria/maw.svg"
  28128. }
  28129. },
  28130. },
  28131. [
  28132. {
  28133. name: "Normal",
  28134. height: math.unit(320, "cm"),
  28135. default: true
  28136. },
  28137. ]
  28138. ))
  28139. characterMakers.push(() => makeCharacter(
  28140. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28141. {
  28142. front: {
  28143. height: math.unit(5 + 6 / 12, "feet"),
  28144. name: "Front",
  28145. image: {
  28146. source: "./media/characters/cat/front.svg",
  28147. extra: 1374 / 1257,
  28148. bottom: 59 / 1433
  28149. }
  28150. },
  28151. back: {
  28152. height: math.unit(5 + 6 / 12, "feet"),
  28153. name: "Back",
  28154. image: {
  28155. source: "./media/characters/cat/back.svg",
  28156. extra: 1337 / 1226,
  28157. bottom: 34 / 1371
  28158. }
  28159. },
  28160. taur: {
  28161. height: math.unit(7, "feet"),
  28162. name: "Taur",
  28163. image: {
  28164. source: "./media/characters/cat/taur.svg",
  28165. extra: 1345 / 1231,
  28166. bottom: 66 / 1411
  28167. }
  28168. },
  28169. lucario: {
  28170. height: math.unit(4, "feet"),
  28171. name: "Lucario",
  28172. image: {
  28173. source: "./media/characters/cat/lucario.svg",
  28174. extra: 1470 / 1318,
  28175. bottom: 65 / 1535
  28176. }
  28177. },
  28178. megaLucario: {
  28179. height: math.unit(4, "feet"),
  28180. name: "Mega Lucario",
  28181. image: {
  28182. source: "./media/characters/cat/mega-lucario.svg",
  28183. extra: 1515 / 1319,
  28184. bottom: 63 / 1578
  28185. }
  28186. },
  28187. nickit: {
  28188. height: math.unit(2, "feet"),
  28189. name: "Nickit",
  28190. image: {
  28191. source: "./media/characters/cat/nickit.svg",
  28192. extra: 1980 / 1585,
  28193. bottom: 102 / 2082
  28194. }
  28195. },
  28196. lopunnyFront: {
  28197. height: math.unit(5, "feet"),
  28198. name: "Lopunny (Front)",
  28199. image: {
  28200. source: "./media/characters/cat/lopunny-front.svg",
  28201. extra: 1782 / 1469,
  28202. bottom: 38 / 1820
  28203. }
  28204. },
  28205. lopunnyBack: {
  28206. height: math.unit(5, "feet"),
  28207. name: "Lopunny (Back)",
  28208. image: {
  28209. source: "./media/characters/cat/lopunny-back.svg",
  28210. extra: 1660 / 1490,
  28211. bottom: 25 / 1685
  28212. }
  28213. },
  28214. },
  28215. [
  28216. {
  28217. name: "Really small",
  28218. height: math.unit(1, "nm")
  28219. },
  28220. {
  28221. name: "Micro",
  28222. height: math.unit(5, "inches")
  28223. },
  28224. {
  28225. name: "Normal",
  28226. height: math.unit(5 + 6 / 12, "feet"),
  28227. default: true
  28228. },
  28229. {
  28230. name: "Macro",
  28231. height: math.unit(50, "feet")
  28232. },
  28233. {
  28234. name: "Macro+",
  28235. height: math.unit(150, "feet")
  28236. },
  28237. {
  28238. name: "Megamacro",
  28239. height: math.unit(100, "miles")
  28240. },
  28241. ]
  28242. ))
  28243. characterMakers.push(() => makeCharacter(
  28244. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28245. {
  28246. front: {
  28247. height: math.unit(63.4, "meters"),
  28248. weight: math.unit(3.28349e+6, "kilograms"),
  28249. name: "Front",
  28250. image: {
  28251. source: "./media/characters/kirina-violet/front.svg",
  28252. extra: 2812 / 2725,
  28253. bottom: 0 / 2812
  28254. }
  28255. },
  28256. back: {
  28257. height: math.unit(63.4, "meters"),
  28258. weight: math.unit(3.28349e+6, "kilograms"),
  28259. name: "Back",
  28260. image: {
  28261. source: "./media/characters/kirina-violet/back.svg",
  28262. extra: 2812 / 2725,
  28263. bottom: 0 / 2812
  28264. }
  28265. },
  28266. mouth: {
  28267. height: math.unit(4.35, "meters"),
  28268. name: "Mouth",
  28269. image: {
  28270. source: "./media/characters/kirina-violet/mouth.svg"
  28271. }
  28272. },
  28273. paw: {
  28274. height: math.unit(5.6, "meters"),
  28275. name: "Paw",
  28276. image: {
  28277. source: "./media/characters/kirina-violet/paw.svg"
  28278. }
  28279. },
  28280. tail: {
  28281. height: math.unit(18, "meters"),
  28282. name: "Tail",
  28283. image: {
  28284. source: "./media/characters/kirina-violet/tail.svg"
  28285. }
  28286. },
  28287. },
  28288. [
  28289. {
  28290. name: "Macro",
  28291. height: math.unit(63.4, "meters"),
  28292. default: true
  28293. },
  28294. ]
  28295. ))
  28296. characterMakers.push(() => makeCharacter(
  28297. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28298. {
  28299. front: {
  28300. height: math.unit(60, "feet"),
  28301. name: "Front",
  28302. image: {
  28303. source: "./media/characters/cat-gigachu/front.svg",
  28304. extra: 1024 / 780,
  28305. bottom: 23 / 1047
  28306. }
  28307. },
  28308. back: {
  28309. height: math.unit(60, "feet"),
  28310. name: "Back",
  28311. image: {
  28312. source: "./media/characters/cat-gigachu/back.svg",
  28313. extra: 1024 / 780,
  28314. bottom: 23 / 1047
  28315. }
  28316. },
  28317. },
  28318. [
  28319. {
  28320. name: "Dynamax",
  28321. height: math.unit(60, "feet"),
  28322. default: true
  28323. },
  28324. ]
  28325. ))
  28326. characterMakers.push(() => makeCharacter(
  28327. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28328. {
  28329. front: {
  28330. height: math.unit(6, "feet"),
  28331. weight: math.unit(150, "lb"),
  28332. name: "Front",
  28333. image: {
  28334. source: "./media/characters/sfaiyan/front.svg",
  28335. extra: 999 / 978,
  28336. bottom: 5 / 1004
  28337. }
  28338. },
  28339. },
  28340. [
  28341. {
  28342. name: "Normal",
  28343. height: math.unit(1.82, "meters")
  28344. },
  28345. {
  28346. name: "Giant",
  28347. height: math.unit(2.27, "km"),
  28348. default: true
  28349. },
  28350. ]
  28351. ))
  28352. characterMakers.push(() => makeCharacter(
  28353. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28354. {
  28355. front: {
  28356. height: math.unit(179, "cm"),
  28357. weight: math.unit(100, "kg"),
  28358. name: "Front",
  28359. image: {
  28360. source: "./media/characters/raunehkeli/front.svg",
  28361. extra: 1934 / 1926,
  28362. bottom: 0 / 1934
  28363. }
  28364. },
  28365. },
  28366. [
  28367. {
  28368. name: "Normal",
  28369. height: math.unit(179, "cm")
  28370. },
  28371. {
  28372. name: "Maximum",
  28373. height: math.unit(575, "meters"),
  28374. default: true
  28375. },
  28376. ]
  28377. ))
  28378. characterMakers.push(() => makeCharacter(
  28379. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28380. {
  28381. front: {
  28382. height: math.unit(6, "feet"),
  28383. weight: math.unit(150, "lb"),
  28384. name: "Front",
  28385. image: {
  28386. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28387. extra: 2625 / 2518,
  28388. bottom: 60 / 2685
  28389. }
  28390. },
  28391. },
  28392. [
  28393. {
  28394. name: "Normal",
  28395. height: math.unit(6 + 2 / 12, "feet")
  28396. },
  28397. {
  28398. name: "Macro",
  28399. height: math.unit(1180, "feet"),
  28400. default: true
  28401. },
  28402. ]
  28403. ))
  28404. characterMakers.push(() => makeCharacter(
  28405. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28406. {
  28407. front: {
  28408. height: math.unit(5 + 6 / 12, "feet"),
  28409. weight: math.unit(108, "lb"),
  28410. name: "Front",
  28411. image: {
  28412. source: "./media/characters/lilith-zott/front.svg",
  28413. extra: 2510 / 2238,
  28414. bottom: 100 / 2610
  28415. }
  28416. },
  28417. frontDressed: {
  28418. height: math.unit(5 + 6 / 12, "feet"),
  28419. weight: math.unit(108, "lb"),
  28420. name: "Front (Dressed)",
  28421. image: {
  28422. source: "./media/characters/lilith-zott/front-dressed.svg",
  28423. extra: 2510 / 2238,
  28424. bottom: 100 / 2610
  28425. }
  28426. },
  28427. },
  28428. [
  28429. {
  28430. name: "Normal",
  28431. height: math.unit(5 + 6 / 12, "feet")
  28432. },
  28433. {
  28434. name: "Macro",
  28435. height: math.unit(1030, "feet"),
  28436. default: true
  28437. },
  28438. ]
  28439. ))
  28440. characterMakers.push(() => makeCharacter(
  28441. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28442. {
  28443. front: {
  28444. height: math.unit(6, "feet"),
  28445. weight: math.unit(150, "lb"),
  28446. name: "Front",
  28447. image: {
  28448. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28449. extra: 2567 / 2435,
  28450. bottom: 39 / 2606
  28451. }
  28452. },
  28453. frontSuper: {
  28454. height: math.unit(6, "feet"),
  28455. name: "Front (Super)",
  28456. image: {
  28457. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28458. extra: 2567 / 2435,
  28459. bottom: 39 / 2606
  28460. }
  28461. },
  28462. },
  28463. [
  28464. {
  28465. name: "Normal",
  28466. height: math.unit(5 + 10 / 12, "feet")
  28467. },
  28468. {
  28469. name: "Macro",
  28470. height: math.unit(1100, "feet"),
  28471. default: true
  28472. },
  28473. ]
  28474. ))
  28475. characterMakers.push(() => makeCharacter(
  28476. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28477. {
  28478. front: {
  28479. height: math.unit(100, "miles"),
  28480. name: "Front",
  28481. image: {
  28482. source: "./media/characters/sona/front.svg",
  28483. extra: 2433 / 2201,
  28484. bottom: 53 / 2486
  28485. }
  28486. },
  28487. foot: {
  28488. height: math.unit(16.1, "miles"),
  28489. name: "Foot",
  28490. image: {
  28491. source: "./media/characters/sona/foot.svg"
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Macro",
  28498. height: math.unit(100, "miles"),
  28499. default: true
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28505. {
  28506. front: {
  28507. height: math.unit(6, "feet"),
  28508. weight: math.unit(150, "lb"),
  28509. name: "Front",
  28510. image: {
  28511. source: "./media/characters/bailey/front.svg",
  28512. extra: 1778 / 1724,
  28513. bottom: 30 / 1808
  28514. }
  28515. },
  28516. },
  28517. [
  28518. {
  28519. name: "Micro",
  28520. height: math.unit(4, "inches")
  28521. },
  28522. {
  28523. name: "Normal",
  28524. height: math.unit(5 + 5 / 12, "feet"),
  28525. default: true
  28526. },
  28527. {
  28528. name: "Macro",
  28529. height: math.unit(250, "feet")
  28530. },
  28531. {
  28532. name: "Megamacro",
  28533. height: math.unit(100, "miles")
  28534. },
  28535. ]
  28536. ))
  28537. characterMakers.push(() => makeCharacter(
  28538. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28539. {
  28540. front: {
  28541. height: math.unit(5 + 2 / 12, "feet"),
  28542. weight: math.unit(120, "lb"),
  28543. name: "Front",
  28544. image: {
  28545. source: "./media/characters/snaps/front.svg",
  28546. extra: 2370 / 2177,
  28547. bottom: 48 / 2418
  28548. }
  28549. },
  28550. back: {
  28551. height: math.unit(5 + 2 / 12, "feet"),
  28552. weight: math.unit(120, "lb"),
  28553. name: "Back",
  28554. image: {
  28555. source: "./media/characters/snaps/back.svg",
  28556. extra: 2408 / 2258,
  28557. bottom: 15 / 2423
  28558. }
  28559. },
  28560. },
  28561. [
  28562. {
  28563. name: "Micro",
  28564. height: math.unit(9, "inches")
  28565. },
  28566. {
  28567. name: "Normal",
  28568. height: math.unit(5 + 2 / 12, "feet"),
  28569. default: true
  28570. },
  28571. {
  28572. name: "Mini Macro",
  28573. height: math.unit(10, "feet")
  28574. },
  28575. ]
  28576. ))
  28577. characterMakers.push(() => makeCharacter(
  28578. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28579. {
  28580. front: {
  28581. height: math.unit(1.8, "meters"),
  28582. weight: math.unit(85, "kg"),
  28583. name: "Front",
  28584. image: {
  28585. source: "./media/characters/azteck/front.svg",
  28586. extra: 2815 / 2625,
  28587. bottom: 89 / 2904
  28588. }
  28589. },
  28590. back: {
  28591. height: math.unit(1.8, "meters"),
  28592. weight: math.unit(85, "kg"),
  28593. name: "Back",
  28594. image: {
  28595. source: "./media/characters/azteck/back.svg",
  28596. extra: 2856 / 2648,
  28597. bottom: 85 / 2941
  28598. }
  28599. },
  28600. frontDressed: {
  28601. height: math.unit(1.8, "meters"),
  28602. weight: math.unit(85, "kg"),
  28603. name: "Front (Dressed)",
  28604. image: {
  28605. source: "./media/characters/azteck/front-dressed.svg",
  28606. extra: 2147 / 2003,
  28607. bottom: 68 / 2215
  28608. }
  28609. },
  28610. head: {
  28611. height: math.unit(0.47, "meters"),
  28612. weight: math.unit(85, "kg"),
  28613. name: "Head",
  28614. image: {
  28615. source: "./media/characters/azteck/head.svg"
  28616. }
  28617. },
  28618. },
  28619. [
  28620. {
  28621. name: "Bite sized",
  28622. height: math.unit(16, "cm")
  28623. },
  28624. {
  28625. name: "Normal",
  28626. height: math.unit(1.8, "meters"),
  28627. default: true
  28628. },
  28629. ]
  28630. ))
  28631. characterMakers.push(() => makeCharacter(
  28632. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28633. {
  28634. front: {
  28635. height: math.unit(6, "feet"),
  28636. weight: math.unit(150, "lb"),
  28637. name: "Front",
  28638. image: {
  28639. source: "./media/characters/pidge/front.svg",
  28640. extra: 620 / 588,
  28641. bottom: 9 / 629
  28642. }
  28643. },
  28644. back: {
  28645. height: math.unit(6, "feet"),
  28646. weight: math.unit(150, "lb"),
  28647. name: "Back",
  28648. image: {
  28649. source: "./media/characters/pidge/back.svg",
  28650. extra: 620 / 588,
  28651. bottom: 9 / 629
  28652. }
  28653. },
  28654. },
  28655. [
  28656. {
  28657. name: "Macro",
  28658. height: math.unit(1, "mile"),
  28659. default: true
  28660. },
  28661. ]
  28662. ))
  28663. characterMakers.push(() => makeCharacter(
  28664. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28665. {
  28666. front: {
  28667. height: math.unit(6, "feet"),
  28668. weight: math.unit(150, "lb"),
  28669. name: "Front",
  28670. image: {
  28671. source: "./media/characters/en/front.svg",
  28672. extra: 1697 / 1563,
  28673. bottom: 103 / 1800
  28674. }
  28675. },
  28676. back: {
  28677. height: math.unit(6, "feet"),
  28678. weight: math.unit(150, "lb"),
  28679. name: "Back",
  28680. image: {
  28681. source: "./media/characters/en/back.svg",
  28682. extra: 1700 / 1570,
  28683. bottom: 51 / 1751
  28684. }
  28685. },
  28686. frontDressed: {
  28687. height: math.unit(6, "feet"),
  28688. weight: math.unit(150, "lb"),
  28689. name: "Front (Dressed)",
  28690. image: {
  28691. source: "./media/characters/en/front-dressed.svg",
  28692. extra: 1697 / 1563,
  28693. bottom: 103 / 1800
  28694. }
  28695. },
  28696. backDressed: {
  28697. height: math.unit(6, "feet"),
  28698. weight: math.unit(150, "lb"),
  28699. name: "Back (Dressed)",
  28700. image: {
  28701. source: "./media/characters/en/back-dressed.svg",
  28702. extra: 1700 / 1570,
  28703. bottom: 51 / 1751
  28704. }
  28705. },
  28706. },
  28707. [
  28708. {
  28709. name: "Macro",
  28710. height: math.unit(210, "feet"),
  28711. default: true
  28712. },
  28713. ]
  28714. ))
  28715. characterMakers.push(() => makeCharacter(
  28716. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28717. {
  28718. front: {
  28719. height: math.unit(6, "feet"),
  28720. weight: math.unit(150, "lb"),
  28721. name: "Front",
  28722. image: {
  28723. source: "./media/characters/haze-orris/front.svg",
  28724. extra: 3975 / 3525,
  28725. bottom: 137 / 4112
  28726. }
  28727. },
  28728. },
  28729. [
  28730. {
  28731. name: "Micro",
  28732. height: math.unit(150, "mm"),
  28733. default: true
  28734. },
  28735. ]
  28736. ))
  28737. characterMakers.push(() => makeCharacter(
  28738. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28739. {
  28740. front: {
  28741. height: math.unit(6, "feet"),
  28742. weight: math.unit(150, "lb"),
  28743. name: "Front",
  28744. image: {
  28745. source: "./media/characters/casselene-yaro/front.svg",
  28746. extra: 4721 / 4541,
  28747. bottom: 82 / 4803
  28748. }
  28749. },
  28750. back: {
  28751. height: math.unit(6, "feet"),
  28752. weight: math.unit(150, "lb"),
  28753. name: "Back",
  28754. image: {
  28755. source: "./media/characters/casselene-yaro/back.svg",
  28756. extra: 4569 / 4377,
  28757. bottom: 69 / 4638
  28758. }
  28759. },
  28760. frontDressed: {
  28761. height: math.unit(6, "feet"),
  28762. weight: math.unit(150, "lb"),
  28763. name: "Front-dressed",
  28764. image: {
  28765. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28766. extra: 4721 / 4541,
  28767. bottom: 82 / 4803
  28768. }
  28769. },
  28770. },
  28771. [
  28772. {
  28773. name: "Macro",
  28774. height: math.unit(190, "feet"),
  28775. default: true
  28776. },
  28777. ]
  28778. ))
  28779. characterMakers.push(() => makeCharacter(
  28780. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28781. {
  28782. front: {
  28783. height: math.unit(6, "feet"),
  28784. weight: math.unit(150, "lb"),
  28785. name: "Front",
  28786. image: {
  28787. source: "./media/characters/myra-rue-delore/front.svg",
  28788. extra: 1340 / 1308,
  28789. bottom: 67 / 1407
  28790. }
  28791. },
  28792. back: {
  28793. height: math.unit(6, "feet"),
  28794. weight: math.unit(150, "lb"),
  28795. name: "Back",
  28796. image: {
  28797. source: "./media/characters/myra-rue-delore/back.svg",
  28798. extra: 1341 / 1310,
  28799. bottom: 40 / 1381
  28800. }
  28801. },
  28802. frontDressed: {
  28803. height: math.unit(6, "feet"),
  28804. weight: math.unit(150, "lb"),
  28805. name: "Front (Dressed)",
  28806. image: {
  28807. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28808. extra: 1340 / 1308,
  28809. bottom: 67 / 1407
  28810. }
  28811. },
  28812. },
  28813. [
  28814. {
  28815. name: "Macro",
  28816. height: math.unit(150, "feet"),
  28817. default: true
  28818. },
  28819. ]
  28820. ))
  28821. characterMakers.push(() => makeCharacter(
  28822. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28823. {
  28824. front: {
  28825. height: math.unit(10, "feet"),
  28826. weight: math.unit(15015, "lb"),
  28827. name: "Front",
  28828. image: {
  28829. source: "./media/characters/fem!plat/front.svg",
  28830. extra: 2799 / 2604,
  28831. bottom: 149 / 2948
  28832. }
  28833. },
  28834. },
  28835. [
  28836. {
  28837. name: "Normal",
  28838. height: math.unit(10, "feet"),
  28839. default: true
  28840. },
  28841. {
  28842. name: "Macro",
  28843. height: math.unit(100, "feet")
  28844. },
  28845. {
  28846. name: "Megamacro",
  28847. height: math.unit(1000, "feet")
  28848. },
  28849. ]
  28850. ))
  28851. characterMakers.push(() => makeCharacter(
  28852. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28853. {
  28854. front: {
  28855. height: math.unit(15 + 5 / 12, "feet"),
  28856. weight: math.unit(4600, "lb"),
  28857. name: "Front",
  28858. image: {
  28859. source: "./media/characters/neapolitan-ananassa/front.svg",
  28860. extra: 2903 / 2736,
  28861. bottom: 0 / 2903
  28862. }
  28863. },
  28864. side: {
  28865. height: math.unit(15 + 5 / 12, "feet"),
  28866. weight: math.unit(4600, "lb"),
  28867. name: "Side",
  28868. image: {
  28869. source: "./media/characters/neapolitan-ananassa/side.svg",
  28870. extra: 2925 / 2719,
  28871. bottom: 0 / 2925
  28872. }
  28873. },
  28874. back: {
  28875. height: math.unit(15 + 5 / 12, "feet"),
  28876. weight: math.unit(4600, "lb"),
  28877. name: "Back",
  28878. image: {
  28879. source: "./media/characters/neapolitan-ananassa/back.svg",
  28880. extra: 2903 / 2736,
  28881. bottom: 0 / 2903
  28882. }
  28883. },
  28884. },
  28885. [
  28886. {
  28887. name: "Normal",
  28888. height: math.unit(15 + 5 / 12, "feet"),
  28889. default: true
  28890. },
  28891. {
  28892. name: "Post-Millenium",
  28893. height: math.unit(35 + 5 / 12, "feet")
  28894. },
  28895. {
  28896. name: "Post-Era",
  28897. height: math.unit(450 + 5 / 12, "feet")
  28898. },
  28899. ]
  28900. ))
  28901. characterMakers.push(() => makeCharacter(
  28902. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28903. {
  28904. front: {
  28905. height: math.unit(300, "meters"),
  28906. weight: math.unit(125000, "tonnes"),
  28907. name: "Front",
  28908. image: {
  28909. source: "./media/characters/pazuzu/front.svg",
  28910. extra: 877 / 794,
  28911. bottom: 47 / 924
  28912. }
  28913. },
  28914. },
  28915. [
  28916. {
  28917. name: "Macro",
  28918. height: math.unit(300, "meters"),
  28919. default: true
  28920. },
  28921. ]
  28922. ))
  28923. characterMakers.push(() => makeCharacter(
  28924. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28925. {
  28926. side: {
  28927. height: math.unit(10 + 7 / 12, "feet"),
  28928. weight: math.unit(2.5, "tons"),
  28929. name: "Side",
  28930. image: {
  28931. source: "./media/characters/aasha/side.svg",
  28932. extra: 1345 / 1245,
  28933. bottom: 111 / 1456
  28934. }
  28935. },
  28936. back: {
  28937. height: math.unit(10 + 7 / 12, "feet"),
  28938. weight: math.unit(2.5, "tons"),
  28939. name: "Back",
  28940. image: {
  28941. source: "./media/characters/aasha/back.svg",
  28942. extra: 1133 / 1057,
  28943. bottom: 257 / 1390
  28944. }
  28945. },
  28946. },
  28947. [
  28948. {
  28949. name: "Normal",
  28950. height: math.unit(10 + 7 / 12, "feet"),
  28951. default: true
  28952. },
  28953. ]
  28954. ))
  28955. characterMakers.push(() => makeCharacter(
  28956. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28957. {
  28958. front: {
  28959. height: math.unit(6 + 3 / 12, "feet"),
  28960. name: "Front",
  28961. image: {
  28962. source: "./media/characters/nevan/front.svg",
  28963. extra: 704 / 704,
  28964. bottom: 28 / 732
  28965. }
  28966. },
  28967. back: {
  28968. height: math.unit(6 + 3 / 12, "feet"),
  28969. name: "Back",
  28970. image: {
  28971. source: "./media/characters/nevan/back.svg",
  28972. extra: 714 / 714,
  28973. bottom: 21 / 735
  28974. }
  28975. },
  28976. frontFlaccid: {
  28977. height: math.unit(6 + 3 / 12, "feet"),
  28978. name: "Front (Flaccid)",
  28979. image: {
  28980. source: "./media/characters/nevan/front-flaccid.svg",
  28981. extra: 704 / 704,
  28982. bottom: 28 / 732
  28983. }
  28984. },
  28985. frontErect: {
  28986. height: math.unit(6 + 3 / 12, "feet"),
  28987. name: "Front (Erect)",
  28988. image: {
  28989. source: "./media/characters/nevan/front-erect.svg",
  28990. extra: 704 / 704,
  28991. bottom: 28 / 732
  28992. }
  28993. },
  28994. backFlaccid: {
  28995. height: math.unit(6 + 3 / 12, "feet"),
  28996. name: "Back (Flaccid)",
  28997. image: {
  28998. source: "./media/characters/nevan/back-flaccid.svg",
  28999. extra: 714 / 714,
  29000. bottom: 21 / 735
  29001. }
  29002. },
  29003. },
  29004. [
  29005. {
  29006. name: "Normal",
  29007. height: math.unit(6 + 3 / 12, "feet"),
  29008. default: true
  29009. },
  29010. ]
  29011. ))
  29012. characterMakers.push(() => makeCharacter(
  29013. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29014. {
  29015. front: {
  29016. height: math.unit(4, "feet"),
  29017. name: "Front",
  29018. image: {
  29019. source: "./media/characters/arhan/front.svg",
  29020. extra: 3368 / 3133,
  29021. bottom: 0 / 3368
  29022. }
  29023. },
  29024. side: {
  29025. height: math.unit(4, "feet"),
  29026. name: "Side",
  29027. image: {
  29028. source: "./media/characters/arhan/side.svg",
  29029. extra: 3347 / 3105,
  29030. bottom: 0 / 3347
  29031. }
  29032. },
  29033. tongue: {
  29034. height: math.unit(1.42, "feet"),
  29035. name: "Tongue",
  29036. image: {
  29037. source: "./media/characters/arhan/tongue.svg"
  29038. }
  29039. },
  29040. head: {
  29041. height: math.unit(0.85, "feet"),
  29042. name: "Head",
  29043. image: {
  29044. source: "./media/characters/arhan/head.svg"
  29045. }
  29046. },
  29047. },
  29048. [
  29049. {
  29050. name: "Normal",
  29051. height: math.unit(4, "feet"),
  29052. default: true
  29053. },
  29054. ]
  29055. ))
  29056. characterMakers.push(() => makeCharacter(
  29057. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29058. {
  29059. front: {
  29060. height: math.unit(5 + 7.5 / 12, "feet"),
  29061. weight: math.unit(120, "lb"),
  29062. name: "Front",
  29063. image: {
  29064. source: "./media/characters/digi-duncan/front.svg",
  29065. extra: 330 / 326,
  29066. bottom: 16 / 346
  29067. }
  29068. },
  29069. side: {
  29070. height: math.unit(5 + 7.5 / 12, "feet"),
  29071. weight: math.unit(120, "lb"),
  29072. name: "Side",
  29073. image: {
  29074. source: "./media/characters/digi-duncan/side.svg",
  29075. extra: 341 / 337,
  29076. bottom: 1 / 342
  29077. }
  29078. },
  29079. back: {
  29080. height: math.unit(5 + 7.5 / 12, "feet"),
  29081. weight: math.unit(120, "lb"),
  29082. name: "Back",
  29083. image: {
  29084. source: "./media/characters/digi-duncan/back.svg",
  29085. extra: 330 / 326,
  29086. bottom: 12 / 342
  29087. }
  29088. },
  29089. },
  29090. [
  29091. {
  29092. name: "Speck",
  29093. height: math.unit(0.25, "mm")
  29094. },
  29095. {
  29096. name: "Micro",
  29097. height: math.unit(5, "mm")
  29098. },
  29099. {
  29100. name: "Tiny",
  29101. height: math.unit(0.5, "inches"),
  29102. default: true
  29103. },
  29104. {
  29105. name: "Human",
  29106. height: math.unit(5 + 7.5 / 12, "feet")
  29107. },
  29108. {
  29109. name: "Minigiant",
  29110. height: math.unit(8 + 5.25, "feet")
  29111. },
  29112. {
  29113. name: "Giant",
  29114. height: math.unit(2000, "feet")
  29115. },
  29116. {
  29117. name: "Mega",
  29118. height: math.unit(371.1, "miles")
  29119. },
  29120. ]
  29121. ))
  29122. characterMakers.push(() => makeCharacter(
  29123. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29124. {
  29125. front: {
  29126. height: math.unit(2, "meters"),
  29127. weight: math.unit(350, "kg"),
  29128. name: "Front",
  29129. image: {
  29130. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29131. extra: 898 / 838,
  29132. bottom: 9 / 907
  29133. }
  29134. },
  29135. },
  29136. [
  29137. {
  29138. name: "Micro",
  29139. height: math.unit(8, "meters")
  29140. },
  29141. {
  29142. name: "Normal",
  29143. height: math.unit(50, "meters"),
  29144. default: true
  29145. },
  29146. {
  29147. name: "Macro",
  29148. height: math.unit(500, "meters")
  29149. },
  29150. ]
  29151. ))
  29152. characterMakers.push(() => makeCharacter(
  29153. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29154. {
  29155. front: {
  29156. height: math.unit(6 + 6 / 12, "feet"),
  29157. name: "Front",
  29158. image: {
  29159. source: "./media/characters/khardesh/front.svg",
  29160. extra: 888 / 797,
  29161. bottom: 25 / 913
  29162. }
  29163. },
  29164. },
  29165. [
  29166. {
  29167. name: "Normal",
  29168. height: math.unit(6 + 6 / 12, "feet"),
  29169. default: true
  29170. },
  29171. {
  29172. name: "Normal+",
  29173. height: math.unit(4, "meters")
  29174. },
  29175. {
  29176. name: "Macro",
  29177. height: math.unit(50, "meters")
  29178. },
  29179. {
  29180. name: "Macro+",
  29181. height: math.unit(100, "meters")
  29182. },
  29183. {
  29184. name: "Megamacro",
  29185. height: math.unit(20, "km")
  29186. },
  29187. ]
  29188. ))
  29189. characterMakers.push(() => makeCharacter(
  29190. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29191. {
  29192. front: {
  29193. height: math.unit(6, "feet"),
  29194. weight: math.unit(150, "lb"),
  29195. name: "Front",
  29196. image: {
  29197. source: "./media/characters/kosho/front.svg",
  29198. extra: 1847 / 1847,
  29199. bottom: 86 / 1933
  29200. }
  29201. },
  29202. },
  29203. [
  29204. {
  29205. name: "Second-stage micro",
  29206. height: math.unit(0.5, "inches")
  29207. },
  29208. {
  29209. name: "First-stage micro",
  29210. height: math.unit(6, "inches")
  29211. },
  29212. {
  29213. name: "Normal",
  29214. height: math.unit(6, "feet"),
  29215. default: true
  29216. },
  29217. {
  29218. name: "First-stage macro",
  29219. height: math.unit(72, "feet")
  29220. },
  29221. {
  29222. name: "Second-stage macro",
  29223. height: math.unit(864, "feet")
  29224. },
  29225. ]
  29226. ))
  29227. characterMakers.push(() => makeCharacter(
  29228. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29229. {
  29230. normal: {
  29231. height: math.unit(4 + 6 / 12, "feet"),
  29232. name: "Normal",
  29233. image: {
  29234. source: "./media/characters/hydra/normal.svg",
  29235. extra: 2833 / 2634,
  29236. bottom: 68 / 2901
  29237. }
  29238. },
  29239. smol: {
  29240. height: math.unit(0.705, "inches"),
  29241. name: "Smol",
  29242. image: {
  29243. source: "./media/characters/hydra/smol.svg",
  29244. extra: 2715 / 2540,
  29245. bottom: 0 / 2715
  29246. }
  29247. },
  29248. },
  29249. [
  29250. {
  29251. name: "Normal",
  29252. height: math.unit(4 + 6 / 12, "feet"),
  29253. default: true
  29254. }
  29255. ]
  29256. ))
  29257. characterMakers.push(() => makeCharacter(
  29258. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29259. {
  29260. front: {
  29261. height: math.unit(0.6, "cm"),
  29262. name: "Front",
  29263. image: {
  29264. source: "./media/characters/daz/front.svg",
  29265. extra: 1682 / 1164,
  29266. bottom: 42 / 1724
  29267. }
  29268. },
  29269. },
  29270. [
  29271. {
  29272. name: "Normal",
  29273. height: math.unit(0.6, "cm"),
  29274. default: true
  29275. },
  29276. ]
  29277. ))
  29278. characterMakers.push(() => makeCharacter(
  29279. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29280. {
  29281. front: {
  29282. height: math.unit(6, "feet"),
  29283. weight: math.unit(235, "lb"),
  29284. name: "Front",
  29285. image: {
  29286. source: "./media/characters/theo-pangolin/front.svg",
  29287. extra: 1996 / 1969,
  29288. bottom: 115 / 2111
  29289. }
  29290. },
  29291. back: {
  29292. height: math.unit(6, "feet"),
  29293. weight: math.unit(235, "lb"),
  29294. name: "Back",
  29295. image: {
  29296. source: "./media/characters/theo-pangolin/back.svg",
  29297. extra: 1979 / 1979,
  29298. bottom: 40 / 2019
  29299. }
  29300. },
  29301. feral: {
  29302. height: math.unit(2, "feet"),
  29303. weight: math.unit(30, "lb"),
  29304. name: "Feral",
  29305. image: {
  29306. source: "./media/characters/theo-pangolin/feral.svg",
  29307. extra: 803 / 791,
  29308. bottom: 181 / 984
  29309. }
  29310. },
  29311. footFive: {
  29312. height: math.unit(1.43, "feet"),
  29313. name: "Foot (Five Toes)",
  29314. image: {
  29315. source: "./media/characters/theo-pangolin/foot-five.svg"
  29316. }
  29317. },
  29318. footFour: {
  29319. height: math.unit(1.43, "feet"),
  29320. name: "Foot (Four Toes)",
  29321. image: {
  29322. source: "./media/characters/theo-pangolin/foot-four.svg"
  29323. }
  29324. },
  29325. handFour: {
  29326. height: math.unit(0.81, "feet"),
  29327. name: "Hand (Four Fingers)",
  29328. image: {
  29329. source: "./media/characters/theo-pangolin/hand-four.svg"
  29330. }
  29331. },
  29332. handThree: {
  29333. height: math.unit(0.81, "feet"),
  29334. name: "Hand (Three Fingers)",
  29335. image: {
  29336. source: "./media/characters/theo-pangolin/hand-three.svg"
  29337. }
  29338. },
  29339. headFront: {
  29340. height: math.unit(1.37, "feet"),
  29341. name: "Head (Front)",
  29342. image: {
  29343. source: "./media/characters/theo-pangolin/head-front.svg"
  29344. }
  29345. },
  29346. headSide: {
  29347. height: math.unit(1.43, "feet"),
  29348. name: "Head (Side)",
  29349. image: {
  29350. source: "./media/characters/theo-pangolin/head-side.svg"
  29351. }
  29352. },
  29353. tongue: {
  29354. height: math.unit(2.29, "feet"),
  29355. name: "Tongue",
  29356. image: {
  29357. source: "./media/characters/theo-pangolin/tongue.svg"
  29358. }
  29359. },
  29360. },
  29361. [
  29362. {
  29363. name: "Normal",
  29364. height: math.unit(6, "feet")
  29365. },
  29366. {
  29367. name: "Macro",
  29368. height: math.unit(400, "feet"),
  29369. default: true
  29370. },
  29371. ]
  29372. ))
  29373. characterMakers.push(() => makeCharacter(
  29374. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29375. {
  29376. front: {
  29377. height: math.unit(6, "inches"),
  29378. weight: math.unit(0.036, "kg"),
  29379. name: "Front",
  29380. image: {
  29381. source: "./media/characters/renée/front.svg",
  29382. extra: 900 / 886,
  29383. bottom: 8 / 908
  29384. }
  29385. },
  29386. },
  29387. [
  29388. {
  29389. name: "Nano",
  29390. height: math.unit(1, "nm")
  29391. },
  29392. {
  29393. name: "Micro",
  29394. height: math.unit(1, "mm")
  29395. },
  29396. {
  29397. name: "Normal",
  29398. height: math.unit(6, "inches")
  29399. },
  29400. {
  29401. name: "Macro",
  29402. height: math.unit(2000, "feet"),
  29403. default: true
  29404. },
  29405. {
  29406. name: "Megamacro",
  29407. height: math.unit(2, "km")
  29408. },
  29409. {
  29410. name: "Gigamacro",
  29411. height: math.unit(2000, "km")
  29412. },
  29413. {
  29414. name: "Teramacro",
  29415. height: math.unit(250000, "km")
  29416. },
  29417. ]
  29418. ))
  29419. characterMakers.push(() => makeCharacter(
  29420. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29421. {
  29422. front: {
  29423. height: math.unit(4, "meters"),
  29424. weight: math.unit(150, "kg"),
  29425. name: "Front",
  29426. image: {
  29427. source: "./media/characters/caledvwlch/front.svg",
  29428. extra: 1760 / 1551,
  29429. bottom: 28 / 1788
  29430. }
  29431. },
  29432. side: {
  29433. height: math.unit(4, "meters"),
  29434. weight: math.unit(150, "kg"),
  29435. name: "Side",
  29436. image: {
  29437. source: "./media/characters/caledvwlch/side.svg",
  29438. extra: 1605 / 1536,
  29439. bottom: 31 / 1636
  29440. }
  29441. },
  29442. back: {
  29443. height: math.unit(4, "meters"),
  29444. weight: math.unit(150, "kg"),
  29445. name: "Back",
  29446. image: {
  29447. source: "./media/characters/caledvwlch/back.svg",
  29448. extra: 1635 / 1565,
  29449. bottom: 27 / 1662
  29450. }
  29451. },
  29452. },
  29453. [
  29454. {
  29455. name: "\"Incognito\"",
  29456. height: math.unit(4, "meters")
  29457. },
  29458. {
  29459. name: "Small rampage",
  29460. height: math.unit(600, "meters")
  29461. },
  29462. {
  29463. name: "Mega",
  29464. height: math.unit(30, "km")
  29465. },
  29466. {
  29467. name: "Home-size",
  29468. height: math.unit(50, "km"),
  29469. default: true
  29470. },
  29471. {
  29472. name: "Giga",
  29473. height: math.unit(300, "km")
  29474. },
  29475. {
  29476. name: "Lounging",
  29477. height: math.unit(11000, "km")
  29478. },
  29479. {
  29480. name: "Planet snacking",
  29481. height: math.unit(2000000, "km")
  29482. },
  29483. ]
  29484. ))
  29485. characterMakers.push(() => makeCharacter(
  29486. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29487. {
  29488. front: {
  29489. height: math.unit(6, "feet"),
  29490. weight: math.unit(215, "lb"),
  29491. name: "Front",
  29492. image: {
  29493. source: "./media/characters/sapphire-svell/front.svg",
  29494. extra: 495 / 455,
  29495. bottom: 20 / 515
  29496. }
  29497. },
  29498. back: {
  29499. height: math.unit(6, "feet"),
  29500. weight: math.unit(216, "lb"),
  29501. name: "Back",
  29502. image: {
  29503. source: "./media/characters/sapphire-svell/back.svg",
  29504. extra: 497 / 477,
  29505. bottom: 7 / 504
  29506. }
  29507. },
  29508. maw: {
  29509. height: math.unit(1.57, "feet"),
  29510. name: "Maw",
  29511. image: {
  29512. source: "./media/characters/sapphire-svell/maw.svg"
  29513. }
  29514. },
  29515. foot: {
  29516. height: math.unit(1.07, "feet"),
  29517. name: "Foot",
  29518. image: {
  29519. source: "./media/characters/sapphire-svell/foot.svg"
  29520. }
  29521. },
  29522. toering: {
  29523. height: math.unit(1.7, "inch"),
  29524. name: "Toering",
  29525. image: {
  29526. source: "./media/characters/sapphire-svell/toering.svg"
  29527. }
  29528. },
  29529. },
  29530. [
  29531. {
  29532. name: "Normal",
  29533. height: math.unit(300, "feet"),
  29534. default: true
  29535. },
  29536. {
  29537. name: "Augmented",
  29538. height: math.unit(1250, "feet")
  29539. },
  29540. {
  29541. name: "Unleashed",
  29542. height: math.unit(3000, "feet")
  29543. },
  29544. ]
  29545. ))
  29546. characterMakers.push(() => makeCharacter(
  29547. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29548. {
  29549. side: {
  29550. height: math.unit(2 + 3 / 12, "feet"),
  29551. weight: math.unit(110, "lb"),
  29552. name: "Side",
  29553. image: {
  29554. source: "./media/characters/glitch-flux/side.svg",
  29555. extra: 997 / 805,
  29556. bottom: 20 / 1017
  29557. }
  29558. },
  29559. },
  29560. [
  29561. {
  29562. name: "Normal",
  29563. height: math.unit(2 + 3 / 12, "feet"),
  29564. default: true
  29565. },
  29566. ]
  29567. ))
  29568. characterMakers.push(() => makeCharacter(
  29569. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29570. {
  29571. front: {
  29572. height: math.unit(4, "meters"),
  29573. name: "Front",
  29574. image: {
  29575. source: "./media/characters/mid/front.svg",
  29576. extra: 507 / 476,
  29577. bottom: 17 / 524
  29578. }
  29579. },
  29580. back: {
  29581. height: math.unit(4, "meters"),
  29582. name: "Back",
  29583. image: {
  29584. source: "./media/characters/mid/back.svg",
  29585. extra: 519 / 487,
  29586. bottom: 7 / 526
  29587. }
  29588. },
  29589. stuck: {
  29590. height: math.unit(2.2, "meters"),
  29591. name: "Stuck",
  29592. image: {
  29593. source: "./media/characters/mid/stuck.svg",
  29594. extra: 1951 / 1869,
  29595. bottom: 88 / 2039
  29596. }
  29597. }
  29598. },
  29599. [
  29600. {
  29601. name: "Normal",
  29602. height: math.unit(4, "meters"),
  29603. default: true
  29604. },
  29605. {
  29606. name: "Big",
  29607. height: math.unit(10, "meters")
  29608. },
  29609. {
  29610. name: "Macro",
  29611. height: math.unit(800, "meters")
  29612. },
  29613. {
  29614. name: "Megamacro",
  29615. height: math.unit(100, "km")
  29616. },
  29617. {
  29618. name: "Overgrown",
  29619. height: math.unit(1, "parsec")
  29620. },
  29621. ]
  29622. ))
  29623. characterMakers.push(() => makeCharacter(
  29624. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29625. {
  29626. front: {
  29627. height: math.unit(2.5, "meters"),
  29628. weight: math.unit(225, "kg"),
  29629. name: "Front",
  29630. image: {
  29631. source: "./media/characters/iris/front.svg",
  29632. extra: 3348 / 3251,
  29633. bottom: 205 / 3553
  29634. }
  29635. },
  29636. maw: {
  29637. height: math.unit(0.56, "meter"),
  29638. name: "Maw",
  29639. image: {
  29640. source: "./media/characters/iris/maw.svg"
  29641. }
  29642. },
  29643. },
  29644. [
  29645. {
  29646. name: "Mewter cat",
  29647. height: math.unit(1.2, "meters")
  29648. },
  29649. {
  29650. name: "Minimacro",
  29651. height: math.unit(2.5, "meters"),
  29652. default: true
  29653. },
  29654. {
  29655. name: "Macro",
  29656. height: math.unit(180, "meters")
  29657. },
  29658. {
  29659. name: "Megamacro",
  29660. height: math.unit(2746, "meters")
  29661. },
  29662. ]
  29663. ))
  29664. characterMakers.push(() => makeCharacter(
  29665. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29666. {
  29667. front: {
  29668. height: math.unit(6, "feet"),
  29669. weight: math.unit(135, "lb"),
  29670. name: "Front",
  29671. image: {
  29672. source: "./media/characters/axel/front.svg",
  29673. extra: 908 / 908,
  29674. bottom: 58 / 966
  29675. }
  29676. },
  29677. side: {
  29678. height: math.unit(6, "feet"),
  29679. weight: math.unit(135, "lb"),
  29680. name: "Side",
  29681. image: {
  29682. source: "./media/characters/axel/side.svg",
  29683. extra: 958 / 958,
  29684. bottom: 11 / 969
  29685. }
  29686. },
  29687. back: {
  29688. height: math.unit(6, "feet"),
  29689. weight: math.unit(135, "lb"),
  29690. name: "Back",
  29691. image: {
  29692. source: "./media/characters/axel/back.svg",
  29693. extra: 887 / 887,
  29694. bottom: 34 / 921
  29695. }
  29696. },
  29697. head: {
  29698. height: math.unit(1.07, "feet"),
  29699. name: "Head",
  29700. image: {
  29701. source: "./media/characters/axel/head.svg"
  29702. }
  29703. },
  29704. beak: {
  29705. height: math.unit(1.4, "feet"),
  29706. name: "Beak",
  29707. image: {
  29708. source: "./media/characters/axel/beak.svg"
  29709. }
  29710. },
  29711. beakSide: {
  29712. height: math.unit(1.4, "feet"),
  29713. name: "Beak Side",
  29714. image: {
  29715. source: "./media/characters/axel/beak-side.svg"
  29716. }
  29717. },
  29718. sheath: {
  29719. height: math.unit(0.5, "feet"),
  29720. name: "Sheath",
  29721. image: {
  29722. source: "./media/characters/axel/sheath.svg"
  29723. }
  29724. },
  29725. dick: {
  29726. height: math.unit(0.98, "feet"),
  29727. name: "Dick",
  29728. image: {
  29729. source: "./media/characters/axel/dick.svg"
  29730. }
  29731. },
  29732. },
  29733. [
  29734. {
  29735. name: "Macro",
  29736. height: math.unit(68, "meters"),
  29737. default: true
  29738. },
  29739. ]
  29740. ))
  29741. characterMakers.push(() => makeCharacter(
  29742. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29743. {
  29744. front: {
  29745. height: math.unit(3.5, "meters"),
  29746. weight: math.unit(1200, "kg"),
  29747. name: "Front",
  29748. image: {
  29749. source: "./media/characters/joanna/front.svg",
  29750. extra: 1596 / 1488,
  29751. bottom: 29 / 1625
  29752. }
  29753. },
  29754. back: {
  29755. height: math.unit(3.5, "meters"),
  29756. weight: math.unit(1200, "kg"),
  29757. name: "Back",
  29758. image: {
  29759. source: "./media/characters/joanna/back.svg",
  29760. extra: 1594 / 1495,
  29761. bottom: 26 / 1620
  29762. }
  29763. },
  29764. frontShorts: {
  29765. height: math.unit(3.5, "meters"),
  29766. weight: math.unit(1200, "kg"),
  29767. name: "Front (Shorts)",
  29768. image: {
  29769. source: "./media/characters/joanna/front-shorts.svg",
  29770. extra: 1596 / 1488,
  29771. bottom: 29 / 1625
  29772. }
  29773. },
  29774. frontBiker: {
  29775. height: math.unit(3.5, "meters"),
  29776. weight: math.unit(1200, "kg"),
  29777. name: "Front (Biker)",
  29778. image: {
  29779. source: "./media/characters/joanna/front-biker.svg",
  29780. extra: 1596 / 1488,
  29781. bottom: 29 / 1625
  29782. }
  29783. },
  29784. backBiker: {
  29785. height: math.unit(3.5, "meters"),
  29786. weight: math.unit(1200, "kg"),
  29787. name: "Back (Biker)",
  29788. image: {
  29789. source: "./media/characters/joanna/back-biker.svg",
  29790. extra: 1594 / 1495,
  29791. bottom: 88 / 1682
  29792. }
  29793. },
  29794. bikeLeft: {
  29795. height: math.unit(2.4, "meters"),
  29796. weight: math.unit(1600, "kg"),
  29797. name: "Bike (Left)",
  29798. image: {
  29799. source: "./media/characters/joanna/bike-left.svg",
  29800. extra: 720 / 720,
  29801. bottom: 8 / 728
  29802. }
  29803. },
  29804. bikeRight: {
  29805. height: math.unit(2.4, "meters"),
  29806. weight: math.unit(1600, "kg"),
  29807. name: "Bike (Right)",
  29808. image: {
  29809. source: "./media/characters/joanna/bike-right.svg",
  29810. extra: 720 / 720,
  29811. bottom: 8 / 728
  29812. }
  29813. },
  29814. },
  29815. [
  29816. {
  29817. name: "Incognito",
  29818. height: math.unit(3.5, "meters")
  29819. },
  29820. {
  29821. name: "Casual Big",
  29822. height: math.unit(200, "meters")
  29823. },
  29824. {
  29825. name: "Macro",
  29826. height: math.unit(600, "meters")
  29827. },
  29828. {
  29829. name: "Original",
  29830. height: math.unit(20, "km"),
  29831. default: true
  29832. },
  29833. {
  29834. name: "Giga",
  29835. height: math.unit(400, "km")
  29836. },
  29837. {
  29838. name: "Lounging",
  29839. height: math.unit(1500, "km")
  29840. },
  29841. {
  29842. name: "Planetary",
  29843. height: math.unit(200000, "km")
  29844. },
  29845. ]
  29846. ))
  29847. characterMakers.push(() => makeCharacter(
  29848. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29849. {
  29850. front: {
  29851. height: math.unit(6, "feet"),
  29852. weight: math.unit(150, "lb"),
  29853. name: "Front",
  29854. image: {
  29855. source: "./media/characters/hugo-sigil/front.svg",
  29856. extra: 522 / 500,
  29857. bottom: 2 / 524
  29858. }
  29859. },
  29860. back: {
  29861. height: math.unit(6, "feet"),
  29862. weight: math.unit(150, "lb"),
  29863. name: "Back",
  29864. image: {
  29865. source: "./media/characters/hugo-sigil/back.svg",
  29866. extra: 519 / 495,
  29867. bottom: 5 / 524
  29868. }
  29869. },
  29870. maw: {
  29871. height: math.unit(1.4, "feet"),
  29872. weight: math.unit(150, "lb"),
  29873. name: "Maw",
  29874. image: {
  29875. source: "./media/characters/hugo-sigil/maw.svg"
  29876. }
  29877. },
  29878. feet: {
  29879. height: math.unit(1.56, "feet"),
  29880. weight: math.unit(150, "lb"),
  29881. name: "Feet",
  29882. image: {
  29883. source: "./media/characters/hugo-sigil/feet.svg",
  29884. extra: 177 / 177,
  29885. bottom: 12 / 189
  29886. }
  29887. },
  29888. },
  29889. [
  29890. {
  29891. name: "Normal",
  29892. height: math.unit(6, "feet")
  29893. },
  29894. {
  29895. name: "Macro",
  29896. height: math.unit(200, "feet"),
  29897. default: true
  29898. },
  29899. ]
  29900. ))
  29901. characterMakers.push(() => makeCharacter(
  29902. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29903. {
  29904. front: {
  29905. height: math.unit(6, "feet"),
  29906. weight: math.unit(150, "lb"),
  29907. name: "Front",
  29908. image: {
  29909. source: "./media/characters/peri/front.svg",
  29910. extra: 2354 / 2233,
  29911. bottom: 49 / 2403
  29912. }
  29913. },
  29914. },
  29915. [
  29916. {
  29917. name: "Really Small",
  29918. height: math.unit(1, "nm")
  29919. },
  29920. {
  29921. name: "Micro",
  29922. height: math.unit(4, "inches")
  29923. },
  29924. {
  29925. name: "Normal",
  29926. height: math.unit(7, "inches"),
  29927. default: true
  29928. },
  29929. {
  29930. name: "Macro",
  29931. height: math.unit(400, "feet")
  29932. },
  29933. {
  29934. name: "Megamacro",
  29935. height: math.unit(100, "miles")
  29936. },
  29937. ]
  29938. ))
  29939. characterMakers.push(() => makeCharacter(
  29940. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29941. {
  29942. frontSlim: {
  29943. height: math.unit(7, "feet"),
  29944. name: "Front (Slim)",
  29945. image: {
  29946. source: "./media/characters/issilora/front-slim.svg",
  29947. extra: 529 / 449,
  29948. bottom: 53 / 582
  29949. }
  29950. },
  29951. sideSlim: {
  29952. height: math.unit(7, "feet"),
  29953. name: "Side (Slim)",
  29954. image: {
  29955. source: "./media/characters/issilora/side-slim.svg",
  29956. extra: 570 / 480,
  29957. bottom: 30 / 600
  29958. }
  29959. },
  29960. backSlim: {
  29961. height: math.unit(7, "feet"),
  29962. name: "Back (Slim)",
  29963. image: {
  29964. source: "./media/characters/issilora/back-slim.svg",
  29965. extra: 537 / 455,
  29966. bottom: 46 / 583
  29967. }
  29968. },
  29969. frontBuff: {
  29970. height: math.unit(7, "feet"),
  29971. name: "Front (Buff)",
  29972. image: {
  29973. source: "./media/characters/issilora/front-buff.svg",
  29974. extra: 2310 / 2035,
  29975. bottom: 335 / 2645
  29976. }
  29977. },
  29978. head: {
  29979. height: math.unit(1.94, "feet"),
  29980. name: "Head",
  29981. image: {
  29982. source: "./media/characters/issilora/head.svg"
  29983. }
  29984. },
  29985. },
  29986. [
  29987. {
  29988. name: "Minimum",
  29989. height: math.unit(7, "feet")
  29990. },
  29991. {
  29992. name: "Comfortable",
  29993. height: math.unit(17, "feet")
  29994. },
  29995. {
  29996. name: "Fun Size",
  29997. height: math.unit(47, "feet")
  29998. },
  29999. {
  30000. name: "Natural Macro",
  30001. height: math.unit(137, "feet"),
  30002. default: true
  30003. },
  30004. {
  30005. name: "Maximum Kaiju",
  30006. height: math.unit(397, "feet")
  30007. },
  30008. ]
  30009. ))
  30010. characterMakers.push(() => makeCharacter(
  30011. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30012. {
  30013. front: {
  30014. height: math.unit(50 + 9/12, "feet"),
  30015. weight: math.unit(32.8, "tons"),
  30016. name: "Front",
  30017. image: {
  30018. source: "./media/characters/irb'iiritaahn/front.svg",
  30019. extra: 1878/1826,
  30020. bottom: 326/2204
  30021. }
  30022. },
  30023. back: {
  30024. height: math.unit(50 + 9/12, "feet"),
  30025. weight: math.unit(32.8, "tons"),
  30026. name: "Back",
  30027. image: {
  30028. source: "./media/characters/irb'iiritaahn/back.svg",
  30029. extra: 2052/2018,
  30030. bottom: 152/2204
  30031. }
  30032. },
  30033. head: {
  30034. height: math.unit(12.86, "feet"),
  30035. name: "Head",
  30036. image: {
  30037. source: "./media/characters/irb'iiritaahn/head.svg"
  30038. }
  30039. },
  30040. maw: {
  30041. height: math.unit(9.66, "feet"),
  30042. name: "Maw",
  30043. image: {
  30044. source: "./media/characters/irb'iiritaahn/maw.svg"
  30045. }
  30046. },
  30047. frontDick: {
  30048. height: math.unit(8.78461, "feet"),
  30049. name: "Front Dick",
  30050. image: {
  30051. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30052. }
  30053. },
  30054. rearDick: {
  30055. height: math.unit(8.78461, "feet"),
  30056. name: "Rear Dick",
  30057. image: {
  30058. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30059. }
  30060. },
  30061. rearDickUnfolded: {
  30062. height: math.unit(8.78, "feet"),
  30063. name: "Rear Dick (Unfolded)",
  30064. image: {
  30065. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30066. }
  30067. },
  30068. wings: {
  30069. height: math.unit(43, "feet"),
  30070. name: "Wings",
  30071. image: {
  30072. source: "./media/characters/irb'iiritaahn/wings.svg"
  30073. }
  30074. },
  30075. },
  30076. [
  30077. {
  30078. name: "Macro",
  30079. height: math.unit(50 + 9/12, "feet"),
  30080. default: true
  30081. },
  30082. ]
  30083. ))
  30084. characterMakers.push(() => makeCharacter(
  30085. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30086. {
  30087. front: {
  30088. height: math.unit(205, "cm"),
  30089. weight: math.unit(102, "kg"),
  30090. name: "Front",
  30091. image: {
  30092. source: "./media/characters/irbisgreif/front.svg",
  30093. extra: 785/706,
  30094. bottom: 13/798
  30095. }
  30096. },
  30097. back: {
  30098. height: math.unit(205, "cm"),
  30099. weight: math.unit(102, "kg"),
  30100. name: "Back",
  30101. image: {
  30102. source: "./media/characters/irbisgreif/back.svg",
  30103. extra: 713/701,
  30104. bottom: 26/739
  30105. }
  30106. },
  30107. frontDressed: {
  30108. height: math.unit(216, "cm"),
  30109. weight: math.unit(102, "kg"),
  30110. name: "Front-dressed",
  30111. image: {
  30112. source: "./media/characters/irbisgreif/front-dressed.svg",
  30113. extra: 902/776,
  30114. bottom: 14/916
  30115. }
  30116. },
  30117. sideDressed: {
  30118. height: math.unit(195, "cm"),
  30119. weight: math.unit(102, "kg"),
  30120. name: "Side-dressed",
  30121. image: {
  30122. source: "./media/characters/irbisgreif/side-dressed.svg",
  30123. extra: 788/688,
  30124. bottom: 21/809
  30125. }
  30126. },
  30127. backDressed: {
  30128. height: math.unit(216, "cm"),
  30129. weight: math.unit(102, "kg"),
  30130. name: "Back-dressed",
  30131. image: {
  30132. source: "./media/characters/irbisgreif/back-dressed.svg",
  30133. extra: 901/783,
  30134. bottom: 10/911
  30135. }
  30136. },
  30137. dick: {
  30138. height: math.unit(0.49, "feet"),
  30139. name: "Dick",
  30140. image: {
  30141. source: "./media/characters/irbisgreif/dick.svg"
  30142. }
  30143. },
  30144. wingTop: {
  30145. height: math.unit(1.93 , "feet"),
  30146. name: "Wing-top",
  30147. image: {
  30148. source: "./media/characters/irbisgreif/wing-top.svg"
  30149. }
  30150. },
  30151. wingBottom: {
  30152. height: math.unit(1.93 , "feet"),
  30153. name: "Wing-bottom",
  30154. image: {
  30155. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30156. }
  30157. },
  30158. },
  30159. [
  30160. {
  30161. name: "Normal",
  30162. height: math.unit(216, "cm"),
  30163. default: true
  30164. },
  30165. ]
  30166. ))
  30167. characterMakers.push(() => makeCharacter(
  30168. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30169. {
  30170. front: {
  30171. height: math.unit(6, "feet"),
  30172. weight: math.unit(150, "lb"),
  30173. name: "Front",
  30174. image: {
  30175. source: "./media/characters/pride/front.svg",
  30176. extra: 1299/1230,
  30177. bottom: 18/1317
  30178. }
  30179. },
  30180. },
  30181. [
  30182. {
  30183. name: "Normal",
  30184. height: math.unit(7, "feet")
  30185. },
  30186. {
  30187. name: "Mini-macro",
  30188. height: math.unit(11, "feet")
  30189. },
  30190. {
  30191. name: "Macro",
  30192. height: math.unit(15, "meters"),
  30193. default: true
  30194. },
  30195. {
  30196. name: "Macro+",
  30197. height: math.unit(40, "meters")
  30198. },
  30199. ]
  30200. ))
  30201. characterMakers.push(() => makeCharacter(
  30202. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30203. {
  30204. front: {
  30205. height: math.unit(4 + 2 / 12, "feet"),
  30206. weight: math.unit(95, "lb"),
  30207. name: "Front",
  30208. image: {
  30209. source: "./media/characters/vaelophis-nyx/front.svg",
  30210. extra: 2532/2330,
  30211. bottom: 0/2532
  30212. }
  30213. },
  30214. back: {
  30215. height: math.unit(4 + 2 / 12, "feet"),
  30216. weight: math.unit(95, "lb"),
  30217. name: "Back",
  30218. image: {
  30219. source: "./media/characters/vaelophis-nyx/back.svg",
  30220. extra: 2484/2361,
  30221. bottom: 0/2484
  30222. }
  30223. },
  30224. feralSide: {
  30225. height: math.unit(2 + 1/12, "feet"),
  30226. weight: math.unit(20, "lb"),
  30227. name: "Feral (Side)",
  30228. image: {
  30229. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30230. extra: 1721/1581,
  30231. bottom: 70/1791
  30232. }
  30233. },
  30234. feralLazing: {
  30235. height: math.unit(1.08, "feet"),
  30236. weight: math.unit(20, "lb"),
  30237. name: "Feral (Lazing)",
  30238. image: {
  30239. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30240. extra: 822/822,
  30241. bottom: 248/1070
  30242. }
  30243. },
  30244. ear: {
  30245. height: math.unit(0.416, "feet"),
  30246. name: "Ear",
  30247. image: {
  30248. source: "./media/characters/vaelophis-nyx/ear.svg"
  30249. }
  30250. },
  30251. eye: {
  30252. height: math.unit(0.0748, "feet"),
  30253. name: "Eye",
  30254. image: {
  30255. source: "./media/characters/vaelophis-nyx/eye.svg"
  30256. }
  30257. },
  30258. mouth: {
  30259. height: math.unit(0.378, "feet"),
  30260. name: "Mouth",
  30261. image: {
  30262. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30263. }
  30264. },
  30265. spade: {
  30266. height: math.unit(0.55, "feet"),
  30267. name: "Spade",
  30268. image: {
  30269. source: "./media/characters/vaelophis-nyx/spade.svg"
  30270. }
  30271. },
  30272. },
  30273. [
  30274. {
  30275. name: "Normal",
  30276. height: math.unit(4 + 2/12, "feet"),
  30277. default: true
  30278. },
  30279. ]
  30280. ))
  30281. characterMakers.push(() => makeCharacter(
  30282. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30283. {
  30284. front: {
  30285. height: math.unit(7, "feet"),
  30286. weight: math.unit(231, "lb"),
  30287. name: "Front",
  30288. image: {
  30289. source: "./media/characters/flux/front.svg",
  30290. extra: 919/871,
  30291. bottom: 0/919
  30292. }
  30293. },
  30294. back: {
  30295. height: math.unit(7, "feet"),
  30296. weight: math.unit(231, "lb"),
  30297. name: "Back",
  30298. image: {
  30299. source: "./media/characters/flux/back.svg",
  30300. extra: 1040/992,
  30301. bottom: 0/1040
  30302. }
  30303. },
  30304. frontDressed: {
  30305. height: math.unit(7, "feet"),
  30306. weight: math.unit(231, "lb"),
  30307. name: "Front (Dressed)",
  30308. image: {
  30309. source: "./media/characters/flux/front-dressed.svg",
  30310. extra: 919/871,
  30311. bottom: 0/919
  30312. }
  30313. },
  30314. feralSide: {
  30315. height: math.unit(5, "feet"),
  30316. weight: math.unit(150, "lb"),
  30317. name: "Feral (Side)",
  30318. image: {
  30319. source: "./media/characters/flux/feral-side.svg",
  30320. extra: 598/528,
  30321. bottom: 28/626
  30322. }
  30323. },
  30324. head: {
  30325. height: math.unit(1.585, "feet"),
  30326. name: "Head",
  30327. image: {
  30328. source: "./media/characters/flux/head.svg"
  30329. }
  30330. },
  30331. headSide: {
  30332. height: math.unit(1.74, "feet"),
  30333. name: "Head (Side)",
  30334. image: {
  30335. source: "./media/characters/flux/head-side.svg"
  30336. }
  30337. },
  30338. headSideFire: {
  30339. height: math.unit(1.76, "feet"),
  30340. name: "Head (Side, Fire)",
  30341. image: {
  30342. source: "./media/characters/flux/head-side-fire.svg"
  30343. }
  30344. },
  30345. },
  30346. [
  30347. {
  30348. name: "Normal",
  30349. height: math.unit(7, "feet"),
  30350. default: true
  30351. },
  30352. ]
  30353. ))
  30354. characterMakers.push(() => makeCharacter(
  30355. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30356. {
  30357. front: {
  30358. height: math.unit(9, "feet"),
  30359. weight: math.unit(1012, "lb"),
  30360. name: "Front",
  30361. image: {
  30362. source: "./media/characters/ulfra-lupae/front.svg",
  30363. extra: 1083/1011,
  30364. bottom: 67/1150
  30365. }
  30366. },
  30367. },
  30368. [
  30369. {
  30370. name: "Micro",
  30371. height: math.unit(6, "inches")
  30372. },
  30373. {
  30374. name: "Socializing",
  30375. height: math.unit(6 + 5/12, "feet")
  30376. },
  30377. {
  30378. name: "Normal",
  30379. height: math.unit(9, "feet"),
  30380. default: true
  30381. },
  30382. {
  30383. name: "Macro",
  30384. height: math.unit(150, "feet")
  30385. },
  30386. ]
  30387. ))
  30388. characterMakers.push(() => makeCharacter(
  30389. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30390. {
  30391. front: {
  30392. height: math.unit(5 + 2/12, "feet"),
  30393. weight: math.unit(120, "lb"),
  30394. name: "Front",
  30395. image: {
  30396. source: "./media/characters/timber/front.svg",
  30397. extra: 2814/2705,
  30398. bottom: 181/2995
  30399. }
  30400. },
  30401. },
  30402. [
  30403. {
  30404. name: "Normal",
  30405. height: math.unit(5 + 2/12, "feet"),
  30406. default: true
  30407. },
  30408. ]
  30409. ))
  30410. characterMakers.push(() => makeCharacter(
  30411. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30412. {
  30413. front: {
  30414. height: math.unit(5 + 7/12, "feet"),
  30415. weight: math.unit(220, "lb"),
  30416. name: "Front",
  30417. image: {
  30418. source: "./media/characters/nicki/front.svg",
  30419. extra: 453/419,
  30420. bottom: 7/460
  30421. }
  30422. },
  30423. frontAlt: {
  30424. height: math.unit(5 + 7/12, "feet"),
  30425. weight: math.unit(220, "lb"),
  30426. name: "Front-alt",
  30427. image: {
  30428. source: "./media/characters/nicki/front-alt.svg",
  30429. extra: 435/411,
  30430. bottom: 12/447
  30431. }
  30432. },
  30433. back: {
  30434. height: math.unit(5 + 7/12, "feet"),
  30435. weight: math.unit(220, "lb"),
  30436. name: "Back",
  30437. image: {
  30438. source: "./media/characters/nicki/back.svg",
  30439. extra: 440/413,
  30440. bottom: 19/459
  30441. }
  30442. },
  30443. taur: {
  30444. height: math.unit(7 + 6/12, "feet"),
  30445. weight: math.unit(700, "lb"),
  30446. name: "Taur",
  30447. image: {
  30448. source: "./media/characters/nicki/taur.svg",
  30449. extra: 975/773,
  30450. bottom: 0/975
  30451. }
  30452. },
  30453. frontNsfw: {
  30454. height: math.unit(5 + 7/12, "feet"),
  30455. weight: math.unit(220, "lb"),
  30456. name: "Front (NSFW)",
  30457. image: {
  30458. source: "./media/characters/nicki/front-nsfw.svg",
  30459. extra: 453/419,
  30460. bottom: 7/460
  30461. }
  30462. },
  30463. frontNsfwAlt: {
  30464. height: math.unit(5 + 7/12, "feet"),
  30465. weight: math.unit(220, "lb"),
  30466. name: "Front (Alt, NSFW)",
  30467. image: {
  30468. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30469. extra: 435/411,
  30470. bottom: 12/447
  30471. }
  30472. },
  30473. backNsfw: {
  30474. height: math.unit(5 + 7/12, "feet"),
  30475. weight: math.unit(220, "lb"),
  30476. name: "Back (NSFW)",
  30477. image: {
  30478. source: "./media/characters/nicki/back-nsfw.svg",
  30479. extra: 440/413,
  30480. bottom: 19/459
  30481. }
  30482. },
  30483. head: {
  30484. height: math.unit(2.1, "feet"),
  30485. name: "Head",
  30486. image: {
  30487. source: "./media/characters/nicki/head.svg"
  30488. }
  30489. },
  30490. paw: {
  30491. height: math.unit(1.88, "feet"),
  30492. name: "Paw",
  30493. image: {
  30494. source: "./media/characters/nicki/paw.svg"
  30495. }
  30496. },
  30497. },
  30498. [
  30499. {
  30500. name: "Normal",
  30501. height: math.unit(5 + 7/12, "feet"),
  30502. default: true
  30503. },
  30504. ]
  30505. ))
  30506. characterMakers.push(() => makeCharacter(
  30507. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30508. {
  30509. front: {
  30510. height: math.unit(7 + 10/12, "feet"),
  30511. weight: math.unit(3.5, "tons"),
  30512. name: "Front",
  30513. image: {
  30514. source: "./media/characters/lee/front.svg",
  30515. extra: 1773/1615,
  30516. bottom: 86/1859
  30517. }
  30518. },
  30519. hand: {
  30520. height: math.unit(1.78, "feet"),
  30521. name: "Hand",
  30522. image: {
  30523. source: "./media/characters/lee/hand.svg"
  30524. }
  30525. },
  30526. maw: {
  30527. height: math.unit(1.18, "feet"),
  30528. name: "Maw",
  30529. image: {
  30530. source: "./media/characters/lee/maw.svg"
  30531. }
  30532. },
  30533. },
  30534. [
  30535. {
  30536. name: "Normal",
  30537. height: math.unit(7 + 10/12, "feet"),
  30538. default: true
  30539. },
  30540. ]
  30541. ))
  30542. characterMakers.push(() => makeCharacter(
  30543. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30544. {
  30545. front: {
  30546. height: math.unit(9, "feet"),
  30547. name: "Front",
  30548. image: {
  30549. source: "./media/characters/guti/front.svg",
  30550. extra: 4551/4355,
  30551. bottom: 123/4674
  30552. }
  30553. },
  30554. tongue: {
  30555. height: math.unit(1, "feet"),
  30556. name: "Tongue",
  30557. image: {
  30558. source: "./media/characters/guti/tongue.svg"
  30559. }
  30560. },
  30561. paw: {
  30562. height: math.unit(1.18, "feet"),
  30563. name: "Paw",
  30564. image: {
  30565. source: "./media/characters/guti/paw.svg"
  30566. }
  30567. },
  30568. },
  30569. [
  30570. {
  30571. name: "Normal",
  30572. height: math.unit(9, "feet"),
  30573. default: true
  30574. },
  30575. ]
  30576. ))
  30577. characterMakers.push(() => makeCharacter(
  30578. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30579. {
  30580. side: {
  30581. height: math.unit(5, "meters"),
  30582. name: "Side",
  30583. image: {
  30584. source: "./media/characters/vesper/side.svg",
  30585. extra: 1605/1518,
  30586. bottom: 0/1605
  30587. }
  30588. },
  30589. },
  30590. [
  30591. {
  30592. name: "Small",
  30593. height: math.unit(5, "meters")
  30594. },
  30595. {
  30596. name: "Sage",
  30597. height: math.unit(100, "meters"),
  30598. default: true
  30599. },
  30600. {
  30601. name: "Fun Size",
  30602. height: math.unit(600, "meters")
  30603. },
  30604. {
  30605. name: "Goddess",
  30606. height: math.unit(20000, "km")
  30607. },
  30608. {
  30609. name: "Maximum",
  30610. height: math.unit(5, "galaxies")
  30611. },
  30612. ]
  30613. ))
  30614. characterMakers.push(() => makeCharacter(
  30615. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30616. {
  30617. front: {
  30618. height: math.unit(6 + 3/12, "feet"),
  30619. weight: math.unit(190, "lb"),
  30620. name: "Front",
  30621. image: {
  30622. source: "./media/characters/gawain/front.svg",
  30623. extra: 2222/2139,
  30624. bottom: 90/2312
  30625. }
  30626. },
  30627. back: {
  30628. height: math.unit(6 + 3/12, "feet"),
  30629. weight: math.unit(190, "lb"),
  30630. name: "Back",
  30631. image: {
  30632. source: "./media/characters/gawain/back.svg",
  30633. extra: 2199/2111,
  30634. bottom: 73/2272
  30635. }
  30636. },
  30637. },
  30638. [
  30639. {
  30640. name: "Normal",
  30641. height: math.unit(6 + 3/12, "feet"),
  30642. default: true
  30643. },
  30644. ]
  30645. ))
  30646. characterMakers.push(() => makeCharacter(
  30647. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30648. {
  30649. side: {
  30650. height: math.unit(3.5, "meters"),
  30651. weight: math.unit(16000, "lb"),
  30652. name: "Side",
  30653. image: {
  30654. source: "./media/characters/dascalti/side.svg",
  30655. extra: 392/273,
  30656. bottom: 47/439
  30657. }
  30658. },
  30659. breath: {
  30660. height: math.unit(7.4, "feet"),
  30661. name: "Breath",
  30662. image: {
  30663. source: "./media/characters/dascalti/breath.svg"
  30664. }
  30665. },
  30666. fed: {
  30667. height: math.unit(3.6, "meters"),
  30668. weight: math.unit(16000, "lb"),
  30669. name: "Fed",
  30670. image: {
  30671. source: "./media/characters/dascalti/fed.svg",
  30672. extra: 1419/820,
  30673. bottom: 95/1514
  30674. }
  30675. },
  30676. },
  30677. [
  30678. {
  30679. name: "Normal",
  30680. height: math.unit(3.5, "meters"),
  30681. default: true
  30682. },
  30683. ]
  30684. ))
  30685. characterMakers.push(() => makeCharacter(
  30686. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30687. {
  30688. front: {
  30689. height: math.unit(3 + 5/12, "feet"),
  30690. name: "Front",
  30691. image: {
  30692. source: "./media/characters/mauve/front.svg",
  30693. extra: 1126/1033,
  30694. bottom: 65/1191
  30695. }
  30696. },
  30697. side: {
  30698. height: math.unit(3 + 5/12, "feet"),
  30699. name: "Side",
  30700. image: {
  30701. source: "./media/characters/mauve/side.svg",
  30702. extra: 1089/1001,
  30703. bottom: 29/1118
  30704. }
  30705. },
  30706. back: {
  30707. height: math.unit(3 + 5/12, "feet"),
  30708. name: "Back",
  30709. image: {
  30710. source: "./media/characters/mauve/back.svg",
  30711. extra: 1173/1053,
  30712. bottom: 109/1282
  30713. }
  30714. },
  30715. },
  30716. [
  30717. {
  30718. name: "Normal",
  30719. height: math.unit(3 + 5/12, "feet"),
  30720. default: true
  30721. },
  30722. ]
  30723. ))
  30724. characterMakers.push(() => makeCharacter(
  30725. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30726. {
  30727. front: {
  30728. height: math.unit(6 + 3/12, "feet"),
  30729. weight: math.unit(430, "lb"),
  30730. name: "Front",
  30731. image: {
  30732. source: "./media/characters/carlos/front.svg",
  30733. extra: 1964/1913,
  30734. bottom: 70/2034
  30735. }
  30736. },
  30737. },
  30738. [
  30739. {
  30740. name: "Normal",
  30741. height: math.unit(6 + 3/12, "feet"),
  30742. default: true
  30743. },
  30744. ]
  30745. ))
  30746. characterMakers.push(() => makeCharacter(
  30747. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30748. {
  30749. back: {
  30750. height: math.unit(5 + 10/12, "feet"),
  30751. weight: math.unit(200, "lb"),
  30752. name: "Back",
  30753. image: {
  30754. source: "./media/characters/jax/back.svg",
  30755. extra: 764/739,
  30756. bottom: 25/789
  30757. }
  30758. },
  30759. },
  30760. [
  30761. {
  30762. name: "Normal",
  30763. height: math.unit(5 + 10/12, "feet"),
  30764. default: true
  30765. },
  30766. ]
  30767. ))
  30768. characterMakers.push(() => makeCharacter(
  30769. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30770. {
  30771. front: {
  30772. height: math.unit(8, "feet"),
  30773. weight: math.unit(250, "lb"),
  30774. name: "Front",
  30775. image: {
  30776. source: "./media/characters/eikthynir/front.svg",
  30777. extra: 1332/1166,
  30778. bottom: 82/1414
  30779. }
  30780. },
  30781. back: {
  30782. height: math.unit(8, "feet"),
  30783. weight: math.unit(250, "lb"),
  30784. name: "Back",
  30785. image: {
  30786. source: "./media/characters/eikthynir/back.svg",
  30787. extra: 1342/1190,
  30788. bottom: 19/1361
  30789. }
  30790. },
  30791. dick: {
  30792. height: math.unit(2.35, "feet"),
  30793. name: "Dick",
  30794. image: {
  30795. source: "./media/characters/eikthynir/dick.svg"
  30796. }
  30797. },
  30798. },
  30799. [
  30800. {
  30801. name: "Normal",
  30802. height: math.unit(8, "feet"),
  30803. default: true
  30804. },
  30805. ]
  30806. ))
  30807. characterMakers.push(() => makeCharacter(
  30808. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30809. {
  30810. front: {
  30811. height: math.unit(99, "meters"),
  30812. weight: math.unit(13000, "tons"),
  30813. name: "Front",
  30814. image: {
  30815. source: "./media/characters/zlmos/front.svg",
  30816. extra: 2202/1992,
  30817. bottom: 315/2517
  30818. }
  30819. },
  30820. },
  30821. [
  30822. {
  30823. name: "Macro",
  30824. height: math.unit(99, "meters"),
  30825. default: true
  30826. },
  30827. ]
  30828. ))
  30829. characterMakers.push(() => makeCharacter(
  30830. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30831. {
  30832. front: {
  30833. height: math.unit(6 + 5/12, "feet"),
  30834. name: "Front",
  30835. image: {
  30836. source: "./media/characters/purri/front.svg",
  30837. extra: 1698/1610,
  30838. bottom: 32/1730
  30839. }
  30840. },
  30841. frontAlt: {
  30842. height: math.unit(6 + 5/12, "feet"),
  30843. name: "Front (Alt)",
  30844. image: {
  30845. source: "./media/characters/purri/front-alt.svg",
  30846. extra: 450/420,
  30847. bottom: 26/476
  30848. }
  30849. },
  30850. boots: {
  30851. height: math.unit(5.5, "feet"),
  30852. name: "Boots",
  30853. image: {
  30854. source: "./media/characters/purri/boots.svg",
  30855. extra: 905/853,
  30856. bottom: 18/923
  30857. }
  30858. },
  30859. lying: {
  30860. height: math.unit(2, "feet"),
  30861. name: "Lying",
  30862. image: {
  30863. source: "./media/characters/purri/lying.svg",
  30864. extra: 940/843,
  30865. bottom: 146/1086
  30866. }
  30867. },
  30868. devious: {
  30869. height: math.unit(1.77, "feet"),
  30870. name: "Devious",
  30871. image: {
  30872. source: "./media/characters/purri/devious.svg",
  30873. extra: 1440/1155,
  30874. bottom: 147/1587
  30875. }
  30876. },
  30877. bean: {
  30878. height: math.unit(1.94, "feet"),
  30879. name: "Bean",
  30880. image: {
  30881. source: "./media/characters/purri/bean.svg"
  30882. }
  30883. },
  30884. },
  30885. [
  30886. {
  30887. name: "Micro",
  30888. height: math.unit(1, "mm")
  30889. },
  30890. {
  30891. name: "Normal",
  30892. height: math.unit(6 + 5/12, "feet"),
  30893. default: true
  30894. },
  30895. {
  30896. name: "Macro :3c",
  30897. height: math.unit(2, "miles")
  30898. },
  30899. ]
  30900. ))
  30901. characterMakers.push(() => makeCharacter(
  30902. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30903. {
  30904. front: {
  30905. height: math.unit(6 + 2/12, "feet"),
  30906. weight: math.unit(250, "lb"),
  30907. name: "Front",
  30908. image: {
  30909. source: "./media/characters/moonlight/front.svg",
  30910. extra: 1044/908,
  30911. bottom: 56/1100
  30912. }
  30913. },
  30914. feral: {
  30915. height: math.unit(3 + 1/12, "feet"),
  30916. weight: math.unit(50, "kg"),
  30917. name: "Feral",
  30918. image: {
  30919. source: "./media/characters/moonlight/feral.svg",
  30920. extra: 3705/2791,
  30921. bottom: 145/3850
  30922. }
  30923. },
  30924. paw: {
  30925. height: math.unit(1, "feet"),
  30926. name: "Paw",
  30927. image: {
  30928. source: "./media/characters/moonlight/paw.svg"
  30929. }
  30930. },
  30931. paws: {
  30932. height: math.unit(0.98, "feet"),
  30933. name: "Paws",
  30934. image: {
  30935. source: "./media/characters/moonlight/paws.svg",
  30936. extra: 939/939,
  30937. bottom: 50/989
  30938. }
  30939. },
  30940. mouth: {
  30941. height: math.unit(0.48, "feet"),
  30942. name: "Mouth",
  30943. image: {
  30944. source: "./media/characters/moonlight/mouth.svg"
  30945. }
  30946. },
  30947. dick: {
  30948. height: math.unit(1.46, "feet"),
  30949. name: "Dick",
  30950. image: {
  30951. source: "./media/characters/moonlight/dick.svg"
  30952. }
  30953. },
  30954. },
  30955. [
  30956. {
  30957. name: "Normal",
  30958. height: math.unit(6 + 2/12, "feet"),
  30959. default: true
  30960. },
  30961. {
  30962. name: "Macro",
  30963. height: math.unit(300, "feet")
  30964. },
  30965. {
  30966. name: "Macro+",
  30967. height: math.unit(1, "mile")
  30968. },
  30969. {
  30970. name: "Mt. Moon",
  30971. height: math.unit(5, "miles")
  30972. },
  30973. {
  30974. name: "Megamacro",
  30975. height: math.unit(15, "miles")
  30976. },
  30977. ]
  30978. ))
  30979. characterMakers.push(() => makeCharacter(
  30980. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30981. {
  30982. back: {
  30983. height: math.unit(6, "feet"),
  30984. weight: math.unit(150, "lb"),
  30985. name: "Back",
  30986. image: {
  30987. source: "./media/characters/sylen/back.svg",
  30988. extra: 1335/1273,
  30989. bottom: 107/1442
  30990. }
  30991. },
  30992. },
  30993. [
  30994. {
  30995. name: "Normal",
  30996. height: math.unit(5 + 5/12, "feet")
  30997. },
  30998. {
  30999. name: "Megamacro",
  31000. height: math.unit(3, "miles"),
  31001. default: true
  31002. },
  31003. ]
  31004. ))
  31005. characterMakers.push(() => makeCharacter(
  31006. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31007. {
  31008. front: {
  31009. height: math.unit(6, "feet"),
  31010. weight: math.unit(190, "lb"),
  31011. name: "Front",
  31012. image: {
  31013. source: "./media/characters/huttser/front.svg",
  31014. extra: 1152/1058,
  31015. bottom: 23/1175
  31016. }
  31017. },
  31018. side: {
  31019. height: math.unit(6, "feet"),
  31020. weight: math.unit(190, "lb"),
  31021. name: "Side",
  31022. image: {
  31023. source: "./media/characters/huttser/side.svg",
  31024. extra: 1174/1065,
  31025. bottom: 18/1192
  31026. }
  31027. },
  31028. back: {
  31029. height: math.unit(6, "feet"),
  31030. weight: math.unit(190, "lb"),
  31031. name: "Back",
  31032. image: {
  31033. source: "./media/characters/huttser/back.svg",
  31034. extra: 1158/1056,
  31035. bottom: 12/1170
  31036. }
  31037. },
  31038. },
  31039. [
  31040. ]
  31041. ))
  31042. characterMakers.push(() => makeCharacter(
  31043. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31044. {
  31045. side: {
  31046. height: math.unit(12 + 9/12, "feet"),
  31047. weight: math.unit(15000, "lb"),
  31048. name: "Side",
  31049. image: {
  31050. source: "./media/characters/faan/side.svg",
  31051. extra: 2747/2697,
  31052. bottom: 0/2747
  31053. }
  31054. },
  31055. front: {
  31056. height: math.unit(12 + 9/12, "feet"),
  31057. weight: math.unit(15000, "lb"),
  31058. name: "Front",
  31059. image: {
  31060. source: "./media/characters/faan/front.svg",
  31061. extra: 607/571,
  31062. bottom: 24/631
  31063. }
  31064. },
  31065. head: {
  31066. height: math.unit(2.85, "feet"),
  31067. name: "Head",
  31068. image: {
  31069. source: "./media/characters/faan/head.svg"
  31070. }
  31071. },
  31072. headAlt: {
  31073. height: math.unit(3.13, "feet"),
  31074. name: "Head-alt",
  31075. image: {
  31076. source: "./media/characters/faan/head-alt.svg"
  31077. }
  31078. },
  31079. },
  31080. [
  31081. {
  31082. name: "Normal",
  31083. height: math.unit(12 + 9/12, "feet"),
  31084. default: true
  31085. },
  31086. ]
  31087. ))
  31088. characterMakers.push(() => makeCharacter(
  31089. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31090. {
  31091. front: {
  31092. height: math.unit(6, "feet"),
  31093. weight: math.unit(300, "lb"),
  31094. name: "Front",
  31095. image: {
  31096. source: "./media/characters/tanio/front.svg",
  31097. extra: 711/673,
  31098. bottom: 25/736
  31099. }
  31100. },
  31101. },
  31102. [
  31103. {
  31104. name: "Normal",
  31105. height: math.unit(6, "feet"),
  31106. default: true
  31107. },
  31108. ]
  31109. ))
  31110. characterMakers.push(() => makeCharacter(
  31111. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31112. {
  31113. front: {
  31114. height: math.unit(3, "inches"),
  31115. name: "Front",
  31116. image: {
  31117. source: "./media/characters/noboru/front.svg",
  31118. extra: 1039/932,
  31119. bottom: 18/1057
  31120. }
  31121. },
  31122. },
  31123. [
  31124. {
  31125. name: "Micro",
  31126. height: math.unit(3, "inches"),
  31127. default: true
  31128. },
  31129. ]
  31130. ))
  31131. characterMakers.push(() => makeCharacter(
  31132. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31133. {
  31134. front: {
  31135. height: math.unit(1.85, "meters"),
  31136. weight: math.unit(80, "kg"),
  31137. name: "Front",
  31138. image: {
  31139. source: "./media/characters/daniel-barrett/front.svg",
  31140. extra: 355/337,
  31141. bottom: 9/364
  31142. }
  31143. },
  31144. },
  31145. [
  31146. {
  31147. name: "Pico",
  31148. height: math.unit(0.0433, "mm")
  31149. },
  31150. {
  31151. name: "Nano",
  31152. height: math.unit(1.5, "mm")
  31153. },
  31154. {
  31155. name: "Micro",
  31156. height: math.unit(5.3, "cm"),
  31157. default: true
  31158. },
  31159. {
  31160. name: "Normal",
  31161. height: math.unit(1.85, "meters")
  31162. },
  31163. {
  31164. name: "Macro",
  31165. height: math.unit(64.7, "meters")
  31166. },
  31167. {
  31168. name: "Megamacro",
  31169. height: math.unit(2.26, "km")
  31170. },
  31171. {
  31172. name: "Gigamacro",
  31173. height: math.unit(79, "km")
  31174. },
  31175. {
  31176. name: "Teramacro",
  31177. height: math.unit(2765, "km")
  31178. },
  31179. {
  31180. name: "Petamacro",
  31181. height: math.unit(96678, "km")
  31182. },
  31183. ]
  31184. ))
  31185. characterMakers.push(() => makeCharacter(
  31186. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31187. {
  31188. front: {
  31189. height: math.unit(30, "meters"),
  31190. weight: math.unit(400, "tons"),
  31191. name: "Front",
  31192. image: {
  31193. source: "./media/characters/zeel/front.svg",
  31194. extra: 2599/2599,
  31195. bottom: 226/2825
  31196. }
  31197. },
  31198. },
  31199. [
  31200. {
  31201. name: "Macro",
  31202. height: math.unit(30, "meters"),
  31203. default: true
  31204. },
  31205. ]
  31206. ))
  31207. characterMakers.push(() => makeCharacter(
  31208. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31209. {
  31210. front: {
  31211. height: math.unit(6 + 7/12, "feet"),
  31212. weight: math.unit(210, "lb"),
  31213. name: "Front",
  31214. image: {
  31215. source: "./media/characters/tarn/front.svg",
  31216. extra: 3517/3220,
  31217. bottom: 91/3608
  31218. }
  31219. },
  31220. back: {
  31221. height: math.unit(6 + 7/12, "feet"),
  31222. weight: math.unit(210, "lb"),
  31223. name: "Back",
  31224. image: {
  31225. source: "./media/characters/tarn/back.svg",
  31226. extra: 3566/3241,
  31227. bottom: 34/3600
  31228. }
  31229. },
  31230. dick: {
  31231. height: math.unit(1.65, "feet"),
  31232. name: "Dick",
  31233. image: {
  31234. source: "./media/characters/tarn/dick.svg"
  31235. }
  31236. },
  31237. paw: {
  31238. height: math.unit(1.80, "feet"),
  31239. name: "Paw",
  31240. image: {
  31241. source: "./media/characters/tarn/paw.svg"
  31242. }
  31243. },
  31244. tongue: {
  31245. height: math.unit(0.97, "feet"),
  31246. name: "Tongue",
  31247. image: {
  31248. source: "./media/characters/tarn/tongue.svg"
  31249. }
  31250. },
  31251. },
  31252. [
  31253. {
  31254. name: "Micro",
  31255. height: math.unit(4, "inches")
  31256. },
  31257. {
  31258. name: "Normal",
  31259. height: math.unit(6 + 7/12, "feet"),
  31260. default: true
  31261. },
  31262. {
  31263. name: "Macro",
  31264. height: math.unit(300, "feet")
  31265. },
  31266. ]
  31267. ))
  31268. characterMakers.push(() => makeCharacter(
  31269. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31270. {
  31271. front: {
  31272. height: math.unit(5 + 7/12, "feet"),
  31273. weight: math.unit(80, "kg"),
  31274. name: "Front",
  31275. image: {
  31276. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31277. extra: 3023/2865,
  31278. bottom: 33/3056
  31279. }
  31280. },
  31281. back: {
  31282. height: math.unit(5 + 7/12, "feet"),
  31283. weight: math.unit(80, "kg"),
  31284. name: "Back",
  31285. image: {
  31286. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31287. extra: 3020/2886,
  31288. bottom: 30/3050
  31289. }
  31290. },
  31291. dick: {
  31292. height: math.unit(0.98, "feet"),
  31293. name: "Dick",
  31294. image: {
  31295. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31296. }
  31297. },
  31298. anatomy: {
  31299. height: math.unit(2.86, "feet"),
  31300. name: "Anatomy",
  31301. image: {
  31302. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31303. }
  31304. },
  31305. },
  31306. [
  31307. {
  31308. name: "Really Small",
  31309. height: math.unit(2, "inches")
  31310. },
  31311. {
  31312. name: "Micro",
  31313. height: math.unit(5.583, "inches")
  31314. },
  31315. {
  31316. name: "Normal",
  31317. height: math.unit(5 + 7/12, "feet"),
  31318. default: true
  31319. },
  31320. {
  31321. name: "Macro",
  31322. height: math.unit(67, "feet")
  31323. },
  31324. {
  31325. name: "Megamacro",
  31326. height: math.unit(134, "feet")
  31327. },
  31328. ]
  31329. ))
  31330. characterMakers.push(() => makeCharacter(
  31331. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31332. {
  31333. front: {
  31334. height: math.unit(9, "feet"),
  31335. weight: math.unit(120, "lb"),
  31336. name: "Front",
  31337. image: {
  31338. source: "./media/characters/sally/front.svg",
  31339. extra: 1506/1349,
  31340. bottom: 66/1572
  31341. }
  31342. },
  31343. },
  31344. [
  31345. {
  31346. name: "Normal",
  31347. height: math.unit(9, "feet"),
  31348. default: true
  31349. },
  31350. ]
  31351. ))
  31352. characterMakers.push(() => makeCharacter(
  31353. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31354. {
  31355. front: {
  31356. height: math.unit(8, "feet"),
  31357. weight: math.unit(900, "lb"),
  31358. name: "Front",
  31359. image: {
  31360. source: "./media/characters/owen/front.svg",
  31361. extra: 1761/1657,
  31362. bottom: 74/1835
  31363. }
  31364. },
  31365. side: {
  31366. height: math.unit(8, "feet"),
  31367. weight: math.unit(900, "lb"),
  31368. name: "Side",
  31369. image: {
  31370. source: "./media/characters/owen/side.svg",
  31371. extra: 1797/1734,
  31372. bottom: 30/1827
  31373. }
  31374. },
  31375. back: {
  31376. height: math.unit(8, "feet"),
  31377. weight: math.unit(900, "lb"),
  31378. name: "Back",
  31379. image: {
  31380. source: "./media/characters/owen/back.svg",
  31381. extra: 1796/1706,
  31382. bottom: 59/1855
  31383. }
  31384. },
  31385. maw: {
  31386. height: math.unit(1.76, "feet"),
  31387. name: "Maw",
  31388. image: {
  31389. source: "./media/characters/owen/maw.svg"
  31390. }
  31391. },
  31392. },
  31393. [
  31394. {
  31395. name: "Normal",
  31396. height: math.unit(8, "feet"),
  31397. default: true
  31398. },
  31399. ]
  31400. ))
  31401. characterMakers.push(() => makeCharacter(
  31402. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31403. {
  31404. front: {
  31405. height: math.unit(4, "feet"),
  31406. weight: math.unit(400, "lb"),
  31407. name: "Front",
  31408. image: {
  31409. source: "./media/characters/ryth/front.svg",
  31410. extra: 876/691,
  31411. bottom: 25/901
  31412. }
  31413. },
  31414. goia: {
  31415. height: math.unit(12, "feet"),
  31416. weight: math.unit(10800, "lb"),
  31417. name: "Goia",
  31418. image: {
  31419. source: "./media/characters/ryth/goia.svg",
  31420. extra: 3450/3198,
  31421. bottom: 61/3511
  31422. }
  31423. },
  31424. },
  31425. [
  31426. {
  31427. name: "Normal",
  31428. height: math.unit(4, "feet"),
  31429. default: true
  31430. },
  31431. ]
  31432. ))
  31433. characterMakers.push(() => makeCharacter(
  31434. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31435. {
  31436. front: {
  31437. height: math.unit(7, "feet"),
  31438. weight: math.unit(180, "lb"),
  31439. name: "Front",
  31440. image: {
  31441. source: "./media/characters/necrolance/front.svg",
  31442. extra: 1062/947,
  31443. bottom: 41/1103
  31444. }
  31445. },
  31446. back: {
  31447. height: math.unit(7, "feet"),
  31448. weight: math.unit(180, "lb"),
  31449. name: "Back",
  31450. image: {
  31451. source: "./media/characters/necrolance/back.svg",
  31452. extra: 1045/984,
  31453. bottom: 14/1059
  31454. }
  31455. },
  31456. wing: {
  31457. height: math.unit(2.67, "feet"),
  31458. name: "Wing",
  31459. image: {
  31460. source: "./media/characters/necrolance/wing.svg"
  31461. }
  31462. },
  31463. },
  31464. [
  31465. {
  31466. name: "Normal",
  31467. height: math.unit(7, "feet"),
  31468. default: true
  31469. },
  31470. ]
  31471. ))
  31472. characterMakers.push(() => makeCharacter(
  31473. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31474. {
  31475. front: {
  31476. height: math.unit(76, "meters"),
  31477. weight: math.unit(30000, "tons"),
  31478. name: "Front",
  31479. image: {
  31480. source: "./media/characters/tyler/front.svg",
  31481. extra: 1640/1640,
  31482. bottom: 114/1754
  31483. }
  31484. },
  31485. },
  31486. [
  31487. {
  31488. name: "Macro",
  31489. height: math.unit(76, "meters"),
  31490. default: true
  31491. },
  31492. ]
  31493. ))
  31494. characterMakers.push(() => makeCharacter(
  31495. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31496. {
  31497. front: {
  31498. height: math.unit(4 + 11/12, "feet"),
  31499. weight: math.unit(132, "lb"),
  31500. name: "Front",
  31501. image: {
  31502. source: "./media/characters/icey/front.svg",
  31503. extra: 2750/2550,
  31504. bottom: 33/2783
  31505. }
  31506. },
  31507. back: {
  31508. height: math.unit(4 + 11/12, "feet"),
  31509. weight: math.unit(132, "lb"),
  31510. name: "Back",
  31511. image: {
  31512. source: "./media/characters/icey/back.svg",
  31513. extra: 2624/2481,
  31514. bottom: 35/2659
  31515. }
  31516. },
  31517. },
  31518. [
  31519. {
  31520. name: "Normal",
  31521. height: math.unit(4 + 11/12, "feet"),
  31522. default: true
  31523. },
  31524. ]
  31525. ))
  31526. characterMakers.push(() => makeCharacter(
  31527. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31528. {
  31529. front: {
  31530. height: math.unit(100, "feet"),
  31531. weight: math.unit(0, "lb"),
  31532. name: "Front",
  31533. image: {
  31534. source: "./media/characters/smile/front.svg",
  31535. extra: 2983/2912,
  31536. bottom: 162/3145
  31537. }
  31538. },
  31539. back: {
  31540. height: math.unit(100, "feet"),
  31541. weight: math.unit(0, "lb"),
  31542. name: "Back",
  31543. image: {
  31544. source: "./media/characters/smile/back.svg",
  31545. extra: 3143/3031,
  31546. bottom: 91/3234
  31547. }
  31548. },
  31549. head: {
  31550. height: math.unit(26.3, "feet"),
  31551. weight: math.unit(0, "lb"),
  31552. name: "Head",
  31553. image: {
  31554. source: "./media/characters/smile/head.svg"
  31555. }
  31556. },
  31557. collar: {
  31558. height: math.unit(5.3, "feet"),
  31559. weight: math.unit(0, "lb"),
  31560. name: "Collar",
  31561. image: {
  31562. source: "./media/characters/smile/collar.svg"
  31563. }
  31564. },
  31565. },
  31566. [
  31567. {
  31568. name: "Macro",
  31569. height: math.unit(100, "feet"),
  31570. default: true
  31571. },
  31572. ]
  31573. ))
  31574. characterMakers.push(() => makeCharacter(
  31575. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31576. {
  31577. dragon: {
  31578. height: math.unit(26, "feet"),
  31579. weight: math.unit(36, "tons"),
  31580. name: "Dragon",
  31581. image: {
  31582. source: "./media/characters/arimphae/dragon.svg",
  31583. extra: 1574/983,
  31584. bottom: 357/1931
  31585. }
  31586. },
  31587. drake: {
  31588. height: math.unit(9, "feet"),
  31589. weight: math.unit(1.5, "tons"),
  31590. name: "Drake",
  31591. image: {
  31592. source: "./media/characters/arimphae/drake.svg",
  31593. extra: 1120/925,
  31594. bottom: 435/1555
  31595. }
  31596. },
  31597. },
  31598. [
  31599. {
  31600. name: "Small",
  31601. height: math.unit(26*5/9, "feet")
  31602. },
  31603. {
  31604. name: "Normal",
  31605. height: math.unit(26, "feet"),
  31606. default: true
  31607. },
  31608. ]
  31609. ))
  31610. characterMakers.push(() => makeCharacter(
  31611. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31612. {
  31613. front: {
  31614. height: math.unit(8 + 9/12, "feet"),
  31615. name: "Front",
  31616. image: {
  31617. source: "./media/characters/xander/front.svg",
  31618. extra: 848/673,
  31619. bottom: 62/910
  31620. }
  31621. },
  31622. },
  31623. [
  31624. {
  31625. name: "Normal",
  31626. height: math.unit(8 + 9/12, "feet"),
  31627. default: true
  31628. },
  31629. {
  31630. name: "Gaze Grabber",
  31631. height: math.unit(13 + 8/12, "feet")
  31632. },
  31633. {
  31634. name: "Jaw Dropper",
  31635. height: math.unit(27, "feet")
  31636. },
  31637. {
  31638. name: "Show Stopper",
  31639. height: math.unit(136, "feet")
  31640. },
  31641. {
  31642. name: "Superstar",
  31643. height: math.unit(1.9e6, "miles")
  31644. },
  31645. ]
  31646. ))
  31647. characterMakers.push(() => makeCharacter(
  31648. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31649. {
  31650. side: {
  31651. height: math.unit(2100, "feet"),
  31652. name: "Side",
  31653. image: {
  31654. source: "./media/characters/osiris/side.svg",
  31655. extra: 1105/939,
  31656. bottom: 167/1272
  31657. }
  31658. },
  31659. },
  31660. [
  31661. {
  31662. name: "Macro",
  31663. height: math.unit(2100, "feet"),
  31664. default: true
  31665. },
  31666. ]
  31667. ))
  31668. characterMakers.push(() => makeCharacter(
  31669. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31670. {
  31671. front: {
  31672. height: math.unit(6 + 8/12, "feet"),
  31673. weight: math.unit(225, "lb"),
  31674. name: "Front",
  31675. image: {
  31676. source: "./media/characters/rhys-londe/front.svg",
  31677. extra: 2258/2141,
  31678. bottom: 188/2446
  31679. }
  31680. },
  31681. back: {
  31682. height: math.unit(6 + 8/12, "feet"),
  31683. weight: math.unit(225, "lb"),
  31684. name: "Back",
  31685. image: {
  31686. source: "./media/characters/rhys-londe/back.svg",
  31687. extra: 2237/2137,
  31688. bottom: 63/2300
  31689. }
  31690. },
  31691. frontNsfw: {
  31692. height: math.unit(6 + 8/12, "feet"),
  31693. weight: math.unit(225, "lb"),
  31694. name: "Front (NSFW)",
  31695. image: {
  31696. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31697. extra: 2258/2141,
  31698. bottom: 188/2446
  31699. }
  31700. },
  31701. backNsfw: {
  31702. height: math.unit(6 + 8/12, "feet"),
  31703. weight: math.unit(225, "lb"),
  31704. name: "Back (NSFW)",
  31705. image: {
  31706. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31707. extra: 2237/2137,
  31708. bottom: 63/2300
  31709. }
  31710. },
  31711. dick: {
  31712. height: math.unit(30, "inches"),
  31713. name: "Dick",
  31714. image: {
  31715. source: "./media/characters/rhys-londe/dick.svg"
  31716. }
  31717. },
  31718. maw: {
  31719. height: math.unit(1.6, "feet"),
  31720. name: "Maw",
  31721. image: {
  31722. source: "./media/characters/rhys-londe/maw.svg"
  31723. }
  31724. },
  31725. },
  31726. [
  31727. {
  31728. name: "Normal",
  31729. height: math.unit(6 + 8/12, "feet"),
  31730. default: true
  31731. },
  31732. ]
  31733. ))
  31734. characterMakers.push(() => makeCharacter(
  31735. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31736. {
  31737. front: {
  31738. height: math.unit(3 + 10/12, "feet"),
  31739. weight: math.unit(90, "lb"),
  31740. name: "Front",
  31741. image: {
  31742. source: "./media/characters/taivas-ensim/front.svg",
  31743. extra: 1327/1216,
  31744. bottom: 96/1423
  31745. }
  31746. },
  31747. back: {
  31748. height: math.unit(3 + 10/12, "feet"),
  31749. weight: math.unit(90, "lb"),
  31750. name: "Back",
  31751. image: {
  31752. source: "./media/characters/taivas-ensim/back.svg",
  31753. extra: 1355/1247,
  31754. bottom: 11/1366
  31755. }
  31756. },
  31757. frontNsfw: {
  31758. height: math.unit(3 + 10/12, "feet"),
  31759. weight: math.unit(90, "lb"),
  31760. name: "Front (NSFW)",
  31761. image: {
  31762. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31763. extra: 1327/1216,
  31764. bottom: 96/1423
  31765. }
  31766. },
  31767. backNsfw: {
  31768. height: math.unit(3 + 10/12, "feet"),
  31769. weight: math.unit(90, "lb"),
  31770. name: "Back (NSFW)",
  31771. image: {
  31772. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31773. extra: 1355/1247,
  31774. bottom: 11/1366
  31775. }
  31776. },
  31777. },
  31778. [
  31779. {
  31780. name: "Normal",
  31781. height: math.unit(3 + 10/12, "feet"),
  31782. default: true
  31783. },
  31784. ]
  31785. ))
  31786. characterMakers.push(() => makeCharacter(
  31787. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31788. {
  31789. front: {
  31790. height: math.unit(9 + 6/12, "feet"),
  31791. weight: math.unit(940, "lb"),
  31792. name: "Front",
  31793. image: {
  31794. source: "./media/characters/byliss/front.svg",
  31795. extra: 1327/1290,
  31796. bottom: 82/1409
  31797. }
  31798. },
  31799. back: {
  31800. height: math.unit(9 + 6/12, "feet"),
  31801. weight: math.unit(940, "lb"),
  31802. name: "Back",
  31803. image: {
  31804. source: "./media/characters/byliss/back.svg",
  31805. extra: 1376/1349,
  31806. bottom: 9/1385
  31807. }
  31808. },
  31809. frontNsfw: {
  31810. height: math.unit(9 + 6/12, "feet"),
  31811. weight: math.unit(940, "lb"),
  31812. name: "Front (NSFW)",
  31813. image: {
  31814. source: "./media/characters/byliss/front-nsfw.svg",
  31815. extra: 1327/1290,
  31816. bottom: 82/1409
  31817. }
  31818. },
  31819. backNsfw: {
  31820. height: math.unit(9 + 6/12, "feet"),
  31821. weight: math.unit(940, "lb"),
  31822. name: "Back (NSFW)",
  31823. image: {
  31824. source: "./media/characters/byliss/back-nsfw.svg",
  31825. extra: 1376/1349,
  31826. bottom: 9/1385
  31827. }
  31828. },
  31829. },
  31830. [
  31831. {
  31832. name: "Normal",
  31833. height: math.unit(9 + 6/12, "feet"),
  31834. default: true
  31835. },
  31836. ]
  31837. ))
  31838. characterMakers.push(() => makeCharacter(
  31839. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31840. {
  31841. front: {
  31842. height: math.unit(5 + 2/12, "feet"),
  31843. weight: math.unit(200, "lb"),
  31844. name: "Front",
  31845. image: {
  31846. source: "./media/characters/noraly/front.svg",
  31847. extra: 4985/4773,
  31848. bottom: 150/5135
  31849. }
  31850. },
  31851. full: {
  31852. height: math.unit(5 + 2/12, "feet"),
  31853. weight: math.unit(164, "lb"),
  31854. name: "Full",
  31855. image: {
  31856. source: "./media/characters/noraly/full.svg",
  31857. extra: 1114/1059,
  31858. bottom: 35/1149
  31859. }
  31860. },
  31861. fuller: {
  31862. height: math.unit(5 + 2/12, "feet"),
  31863. weight: math.unit(230, "lb"),
  31864. name: "Fuller",
  31865. image: {
  31866. source: "./media/characters/noraly/fuller.svg",
  31867. extra: 1114/1059,
  31868. bottom: 35/1149
  31869. }
  31870. },
  31871. fullest: {
  31872. height: math.unit(5 + 2/12, "feet"),
  31873. weight: math.unit(300, "lb"),
  31874. name: "Fullest",
  31875. image: {
  31876. source: "./media/characters/noraly/fullest.svg",
  31877. extra: 1114/1059,
  31878. bottom: 35/1149
  31879. }
  31880. },
  31881. },
  31882. [
  31883. {
  31884. name: "Normal",
  31885. height: math.unit(5 + 2/12, "feet"),
  31886. default: true
  31887. },
  31888. ]
  31889. ))
  31890. characterMakers.push(() => makeCharacter(
  31891. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31892. {
  31893. front: {
  31894. height: math.unit(5 + 2/12, "feet"),
  31895. weight: math.unit(210, "lb"),
  31896. name: "Front",
  31897. image: {
  31898. source: "./media/characters/pera/front.svg",
  31899. extra: 1560/1531,
  31900. bottom: 165/1725
  31901. }
  31902. },
  31903. back: {
  31904. height: math.unit(5 + 2/12, "feet"),
  31905. weight: math.unit(210, "lb"),
  31906. name: "Back",
  31907. image: {
  31908. source: "./media/characters/pera/back.svg",
  31909. extra: 1523/1493,
  31910. bottom: 152/1675
  31911. }
  31912. },
  31913. dick: {
  31914. height: math.unit(2.4, "feet"),
  31915. name: "Dick",
  31916. image: {
  31917. source: "./media/characters/pera/dick.svg"
  31918. }
  31919. },
  31920. },
  31921. [
  31922. {
  31923. name: "Normal",
  31924. height: math.unit(5 + 2/12, "feet"),
  31925. default: true
  31926. },
  31927. ]
  31928. ))
  31929. characterMakers.push(() => makeCharacter(
  31930. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31931. {
  31932. front: {
  31933. height: math.unit(12, "feet"),
  31934. weight: math.unit(3200, "lb"),
  31935. name: "Front",
  31936. image: {
  31937. source: "./media/characters/julian/front.svg",
  31938. extra: 2962/2701,
  31939. bottom: 184/3146
  31940. }
  31941. },
  31942. maw: {
  31943. height: math.unit(5.35, "feet"),
  31944. name: "Maw",
  31945. image: {
  31946. source: "./media/characters/julian/maw.svg"
  31947. }
  31948. },
  31949. paw: {
  31950. height: math.unit(3.07, "feet"),
  31951. name: "Paw",
  31952. image: {
  31953. source: "./media/characters/julian/paw.svg"
  31954. }
  31955. },
  31956. },
  31957. [
  31958. {
  31959. name: "Default",
  31960. height: math.unit(12, "feet"),
  31961. default: true
  31962. },
  31963. {
  31964. name: "Big",
  31965. height: math.unit(50, "feet")
  31966. },
  31967. {
  31968. name: "Really Big",
  31969. height: math.unit(1, "mile")
  31970. },
  31971. {
  31972. name: "Extremely Big",
  31973. height: math.unit(100, "miles")
  31974. },
  31975. {
  31976. name: "Planet Hugger",
  31977. height: math.unit(200, "megameters")
  31978. },
  31979. {
  31980. name: "Unreasonably Big",
  31981. height: math.unit(1e300, "meters")
  31982. },
  31983. ]
  31984. ))
  31985. characterMakers.push(() => makeCharacter(
  31986. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31987. {
  31988. solgooleo: {
  31989. height: math.unit(4, "meters"),
  31990. weight: math.unit(6000*1.5, "kg"),
  31991. volume: math.unit(6000, "liters"),
  31992. name: "Solgooleo",
  31993. image: {
  31994. source: "./media/characters/pi/solgooleo.svg",
  31995. extra: 388/331,
  31996. bottom: 29/417
  31997. }
  31998. },
  31999. },
  32000. [
  32001. {
  32002. name: "Normal",
  32003. height: math.unit(4, "meters"),
  32004. default: true
  32005. },
  32006. ]
  32007. ))
  32008. characterMakers.push(() => makeCharacter(
  32009. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32010. {
  32011. front: {
  32012. height: math.unit(8 + 2/12, "feet"),
  32013. weight: math.unit(4, "tons"),
  32014. name: "Front",
  32015. image: {
  32016. source: "./media/characters/shaun/front.svg",
  32017. extra: 1550/1505,
  32018. bottom: 353/1903
  32019. }
  32020. },
  32021. },
  32022. [
  32023. {
  32024. name: "Lorg",
  32025. height: math.unit(8 + 2/12, "feet"),
  32026. default: true
  32027. },
  32028. ]
  32029. ))
  32030. characterMakers.push(() => makeCharacter(
  32031. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32032. {
  32033. front: {
  32034. height: math.unit(7, "feet"),
  32035. name: "Front",
  32036. image: {
  32037. source: "./media/characters/sini/front.svg",
  32038. extra: 726/678,
  32039. bottom: 35/761
  32040. }
  32041. },
  32042. back: {
  32043. height: math.unit(7, "feet"),
  32044. name: "Back",
  32045. image: {
  32046. source: "./media/characters/sini/back.svg",
  32047. extra: 743/701,
  32048. bottom: 12/755
  32049. }
  32050. },
  32051. mawAnthro: {
  32052. height: math.unit(2.14, "feet"),
  32053. name: "Maw (Anthro)",
  32054. image: {
  32055. source: "./media/characters/sini/maw-anthro.svg"
  32056. }
  32057. },
  32058. dick: {
  32059. height: math.unit(1.45, "feet"),
  32060. name: "Dick (Anthro)",
  32061. image: {
  32062. source: "./media/characters/sini/dick-anthro.svg"
  32063. }
  32064. },
  32065. feral: {
  32066. height: math.unit(13, "feet"),
  32067. name: "Feral",
  32068. image: {
  32069. source: "./media/characters/sini/feral.svg",
  32070. extra: 814/605,
  32071. bottom: 11/825
  32072. }
  32073. },
  32074. mawFeral: {
  32075. height: math.unit(4.6, "feet"),
  32076. name: "Maw-feral",
  32077. image: {
  32078. source: "./media/characters/sini/maw-feral.svg"
  32079. }
  32080. },
  32081. footFeral: {
  32082. height: math.unit(4.2, "feet"),
  32083. name: "Foot-feral",
  32084. image: {
  32085. source: "./media/characters/sini/foot-feral.svg"
  32086. }
  32087. },
  32088. },
  32089. [
  32090. {
  32091. name: "Normal",
  32092. height: math.unit(7, "feet"),
  32093. default: true
  32094. },
  32095. ]
  32096. ))
  32097. characterMakers.push(() => makeCharacter(
  32098. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32099. {
  32100. side: {
  32101. height: math.unit(13, "meters"),
  32102. weight: math.unit(9072, "kg"),
  32103. name: "Side",
  32104. image: {
  32105. source: "./media/characters/raylldo/side.svg",
  32106. extra: 403/344,
  32107. bottom: 42/445
  32108. }
  32109. },
  32110. leaping: {
  32111. height: math.unit(12.3, "meters"),
  32112. weight: math.unit(9072, "kg"),
  32113. name: "Leaping",
  32114. image: {
  32115. source: "./media/characters/raylldo/leaping.svg",
  32116. extra: 470/249,
  32117. bottom: 13/483
  32118. }
  32119. },
  32120. flying: {
  32121. height: math.unit(18, "meters"),
  32122. weight: math.unit(9072, "kg"),
  32123. name: "Flying",
  32124. image: {
  32125. source: "./media/characters/raylldo/flying.svg"
  32126. }
  32127. },
  32128. head: {
  32129. height: math.unit(5.85, "meters"),
  32130. name: "Head",
  32131. image: {
  32132. source: "./media/characters/raylldo/head.svg"
  32133. }
  32134. },
  32135. maw: {
  32136. height: math.unit(5.32, "meters"),
  32137. name: "Maw",
  32138. image: {
  32139. source: "./media/characters/raylldo/maw.svg"
  32140. }
  32141. },
  32142. eye: {
  32143. height: math.unit(0.54, "meters"),
  32144. name: "Eye",
  32145. image: {
  32146. source: "./media/characters/raylldo/eye.svg"
  32147. }
  32148. },
  32149. },
  32150. [
  32151. {
  32152. name: "Normal",
  32153. height: math.unit(13, "meters"),
  32154. default: true
  32155. },
  32156. ]
  32157. ))
  32158. characterMakers.push(() => makeCharacter(
  32159. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32160. {
  32161. anthroFront: {
  32162. height: math.unit(9, "feet"),
  32163. weight: math.unit(600, "lb"),
  32164. name: "Anthro (Front)",
  32165. image: {
  32166. source: "./media/characters/glint/anthro-front.svg",
  32167. extra: 1097/1018,
  32168. bottom: 28/1125
  32169. }
  32170. },
  32171. anthroBack: {
  32172. height: math.unit(9, "feet"),
  32173. weight: math.unit(600, "lb"),
  32174. name: "Anthro (Back)",
  32175. image: {
  32176. source: "./media/characters/glint/anthro-back.svg",
  32177. extra: 1154/997,
  32178. bottom: 36/1190
  32179. }
  32180. },
  32181. feral: {
  32182. height: math.unit(11, "feet"),
  32183. weight: math.unit(50000, "lb"),
  32184. name: "Feral",
  32185. image: {
  32186. source: "./media/characters/glint/feral.svg",
  32187. extra: 3035/1585,
  32188. bottom: 1169/4204
  32189. }
  32190. },
  32191. dickAnthro: {
  32192. height: math.unit(0.7, "meters"),
  32193. name: "Dick (Anthro)",
  32194. image: {
  32195. source: "./media/characters/glint/dick-anthro.svg"
  32196. }
  32197. },
  32198. dickFeral: {
  32199. height: math.unit(2.65, "meters"),
  32200. name: "Dick (Feral)",
  32201. image: {
  32202. source: "./media/characters/glint/dick-feral.svg"
  32203. }
  32204. },
  32205. slitHidden: {
  32206. height: math.unit(5.85, "meters"),
  32207. name: "Slit (Hidden)",
  32208. image: {
  32209. source: "./media/characters/glint/slit-hidden.svg"
  32210. }
  32211. },
  32212. slitErect: {
  32213. height: math.unit(5.85, "meters"),
  32214. name: "Slit (Erect)",
  32215. image: {
  32216. source: "./media/characters/glint/slit-erect.svg"
  32217. }
  32218. },
  32219. mawAnthro: {
  32220. height: math.unit(0.63, "meters"),
  32221. name: "Maw (Anthro)",
  32222. image: {
  32223. source: "./media/characters/glint/maw.svg"
  32224. }
  32225. },
  32226. mawFeral: {
  32227. height: math.unit(2.89, "meters"),
  32228. name: "Maw (Feral)",
  32229. image: {
  32230. source: "./media/characters/glint/maw.svg"
  32231. }
  32232. },
  32233. },
  32234. [
  32235. {
  32236. name: "Normal",
  32237. height: math.unit(9, "feet"),
  32238. default: true
  32239. },
  32240. ]
  32241. ))
  32242. characterMakers.push(() => makeCharacter(
  32243. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32244. {
  32245. side: {
  32246. height: math.unit(15, "feet"),
  32247. weight: math.unit(5000, "kg"),
  32248. name: "Side",
  32249. image: {
  32250. source: "./media/characters/kairne/side.svg",
  32251. extra: 979/811,
  32252. bottom: 13/992
  32253. }
  32254. },
  32255. front: {
  32256. height: math.unit(15, "feet"),
  32257. weight: math.unit(5000, "kg"),
  32258. name: "Front",
  32259. image: {
  32260. source: "./media/characters/kairne/front.svg",
  32261. extra: 908/814,
  32262. bottom: 26/934
  32263. }
  32264. },
  32265. sideNsfw: {
  32266. height: math.unit(15, "feet"),
  32267. weight: math.unit(5000, "kg"),
  32268. name: "Side (NSFW)",
  32269. image: {
  32270. source: "./media/characters/kairne/side-nsfw.svg",
  32271. extra: 979/811,
  32272. bottom: 13/992
  32273. }
  32274. },
  32275. frontNsfw: {
  32276. height: math.unit(15, "feet"),
  32277. weight: math.unit(5000, "kg"),
  32278. name: "Front (NSFW)",
  32279. image: {
  32280. source: "./media/characters/kairne/front-nsfw.svg",
  32281. extra: 908/814,
  32282. bottom: 26/934
  32283. }
  32284. },
  32285. dickCaged: {
  32286. height: math.unit(0.65, "meters"),
  32287. name: "Dick-caged",
  32288. image: {
  32289. source: "./media/characters/kairne/dick-caged.svg"
  32290. }
  32291. },
  32292. dick: {
  32293. height: math.unit(0.79, "meters"),
  32294. name: "Dick",
  32295. image: {
  32296. source: "./media/characters/kairne/dick.svg"
  32297. }
  32298. },
  32299. genitals: {
  32300. height: math.unit(1.29, "meters"),
  32301. name: "Genitals",
  32302. image: {
  32303. source: "./media/characters/kairne/genitals.svg"
  32304. }
  32305. },
  32306. maw: {
  32307. height: math.unit(1.73, "meters"),
  32308. name: "Maw",
  32309. image: {
  32310. source: "./media/characters/kairne/maw.svg"
  32311. }
  32312. },
  32313. },
  32314. [
  32315. {
  32316. name: "Normal",
  32317. height: math.unit(15, "feet"),
  32318. default: true
  32319. },
  32320. ]
  32321. ))
  32322. characterMakers.push(() => makeCharacter(
  32323. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32324. {
  32325. front: {
  32326. height: math.unit(5 + 8/12, "feet"),
  32327. weight: math.unit(139, "lb"),
  32328. name: "Front",
  32329. image: {
  32330. source: "./media/characters/biscuit-jackal/front.svg",
  32331. extra: 2106/1961,
  32332. bottom: 58/2164
  32333. }
  32334. },
  32335. back: {
  32336. height: math.unit(5 + 8/12, "feet"),
  32337. weight: math.unit(139, "lb"),
  32338. name: "Back",
  32339. image: {
  32340. source: "./media/characters/biscuit-jackal/back.svg",
  32341. extra: 2132/1976,
  32342. bottom: 57/2189
  32343. }
  32344. },
  32345. werejackal: {
  32346. height: math.unit(6 + 3/12, "feet"),
  32347. weight: math.unit(188, "lb"),
  32348. name: "Werejackal",
  32349. image: {
  32350. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32351. extra: 2373/2178,
  32352. bottom: 53/2426
  32353. }
  32354. },
  32355. },
  32356. [
  32357. {
  32358. name: "Normal",
  32359. height: math.unit(5 + 8/12, "feet"),
  32360. default: true
  32361. },
  32362. ]
  32363. ))
  32364. characterMakers.push(() => makeCharacter(
  32365. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32366. {
  32367. front: {
  32368. height: math.unit(140, "cm"),
  32369. weight: math.unit(45, "kg"),
  32370. name: "Front",
  32371. image: {
  32372. source: "./media/characters/tayra-white/front.svg",
  32373. extra: 2229/2192,
  32374. bottom: 75/2304
  32375. }
  32376. },
  32377. },
  32378. [
  32379. {
  32380. name: "Normal",
  32381. height: math.unit(140, "cm"),
  32382. default: true
  32383. },
  32384. ]
  32385. ))
  32386. characterMakers.push(() => makeCharacter(
  32387. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32388. {
  32389. front: {
  32390. height: math.unit(4 + 5/12, "feet"),
  32391. name: "Front",
  32392. image: {
  32393. source: "./media/characters/scoop/front.svg",
  32394. extra: 1257/1136,
  32395. bottom: 69/1326
  32396. }
  32397. },
  32398. back: {
  32399. height: math.unit(4 + 5/12, "feet"),
  32400. name: "Back",
  32401. image: {
  32402. source: "./media/characters/scoop/back.svg",
  32403. extra: 1321/1152,
  32404. bottom: 32/1353
  32405. }
  32406. },
  32407. maw: {
  32408. height: math.unit(0.68, "feet"),
  32409. name: "Maw",
  32410. image: {
  32411. source: "./media/characters/scoop/maw.svg"
  32412. }
  32413. },
  32414. },
  32415. [
  32416. {
  32417. name: "Really Small",
  32418. height: math.unit(1, "mm")
  32419. },
  32420. {
  32421. name: "Micro",
  32422. height: math.unit(1, "inch")
  32423. },
  32424. {
  32425. name: "Normal",
  32426. height: math.unit(4 + 5/12, "feet"),
  32427. default: true
  32428. },
  32429. {
  32430. name: "Macro",
  32431. height: math.unit(200, "feet")
  32432. },
  32433. {
  32434. name: "Megamacro",
  32435. height: math.unit(3240, "feet")
  32436. },
  32437. {
  32438. name: "Teramacro",
  32439. height: math.unit(2500, "miles")
  32440. },
  32441. ]
  32442. ))
  32443. characterMakers.push(() => makeCharacter(
  32444. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32445. {
  32446. front: {
  32447. height: math.unit(15 + 7/12, "feet"),
  32448. name: "Front",
  32449. image: {
  32450. source: "./media/characters/saphinara/front.svg",
  32451. extra: 604/546,
  32452. bottom: 19/623
  32453. }
  32454. },
  32455. side: {
  32456. height: math.unit(15 + 7/12, "feet"),
  32457. name: "Side",
  32458. image: {
  32459. source: "./media/characters/saphinara/side.svg",
  32460. extra: 605/547,
  32461. bottom: 6/611
  32462. }
  32463. },
  32464. back: {
  32465. height: math.unit(15 + 7/12, "feet"),
  32466. name: "Back",
  32467. image: {
  32468. source: "./media/characters/saphinara/back.svg",
  32469. extra: 591/531,
  32470. bottom: 13/604
  32471. }
  32472. },
  32473. frontTail: {
  32474. height: math.unit(15 + 7/12, "feet"),
  32475. name: "Front (Full Tail)",
  32476. image: {
  32477. source: "./media/characters/saphinara/front-tail.svg",
  32478. extra: 748/547,
  32479. bottom: 66/814
  32480. }
  32481. },
  32482. },
  32483. [
  32484. {
  32485. name: "Normal",
  32486. height: math.unit(15 + 7/12, "feet"),
  32487. default: true
  32488. },
  32489. {
  32490. name: "Angry",
  32491. height: math.unit(30 + 6/12, "feet")
  32492. },
  32493. {
  32494. name: "Enraged",
  32495. height: math.unit(102 + 1/12, "feet")
  32496. },
  32497. ]
  32498. ))
  32499. characterMakers.push(() => makeCharacter(
  32500. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32501. {
  32502. front: {
  32503. height: math.unit(6 + 8/12, "feet"),
  32504. weight: math.unit(300, "lb"),
  32505. name: "Front",
  32506. image: {
  32507. source: "./media/characters/jrain/front.svg",
  32508. extra: 3039/2865,
  32509. bottom: 399/3438
  32510. }
  32511. },
  32512. back: {
  32513. height: math.unit(6 + 8/12, "feet"),
  32514. weight: math.unit(300, "lb"),
  32515. name: "Back",
  32516. image: {
  32517. source: "./media/characters/jrain/back.svg",
  32518. extra: 3089/2938,
  32519. bottom: 172/3261
  32520. }
  32521. },
  32522. head: {
  32523. height: math.unit(2.14, "feet"),
  32524. name: "Head",
  32525. image: {
  32526. source: "./media/characters/jrain/head.svg"
  32527. }
  32528. },
  32529. maw: {
  32530. height: math.unit(1.77, "feet"),
  32531. name: "Maw",
  32532. image: {
  32533. source: "./media/characters/jrain/maw.svg"
  32534. }
  32535. },
  32536. leftHand: {
  32537. height: math.unit(1.1, "feet"),
  32538. name: "Left Hand",
  32539. image: {
  32540. source: "./media/characters/jrain/left-hand.svg"
  32541. }
  32542. },
  32543. rightHand: {
  32544. height: math.unit(1.1, "feet"),
  32545. name: "Right Hand",
  32546. image: {
  32547. source: "./media/characters/jrain/right-hand.svg"
  32548. }
  32549. },
  32550. eye: {
  32551. height: math.unit(0.35, "feet"),
  32552. name: "Eye",
  32553. image: {
  32554. source: "./media/characters/jrain/eye.svg"
  32555. }
  32556. },
  32557. },
  32558. [
  32559. {
  32560. name: "Normal",
  32561. height: math.unit(6 + 8/12, "feet"),
  32562. default: true
  32563. },
  32564. {
  32565. name: "Casually Large",
  32566. height: math.unit(25, "feet")
  32567. },
  32568. {
  32569. name: "Giant",
  32570. height: math.unit(100, "feet")
  32571. },
  32572. {
  32573. name: "Kaiju",
  32574. height: math.unit(300, "feet")
  32575. },
  32576. ]
  32577. ))
  32578. characterMakers.push(() => makeCharacter(
  32579. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32580. {
  32581. dragon: {
  32582. height: math.unit(5, "meters"),
  32583. name: "Dragon",
  32584. image: {
  32585. source: "./media/characters/sabrina/dragon.svg",
  32586. extra: 3670 / 2365,
  32587. bottom: 333 / 4003
  32588. }
  32589. },
  32590. gryphon: {
  32591. height: math.unit(3, "meters"),
  32592. name: "Gryphon",
  32593. image: {
  32594. source: "./media/characters/sabrina/gryphon.svg",
  32595. extra: 1576 / 945,
  32596. bottom: 71 / 1647
  32597. }
  32598. },
  32599. snake: {
  32600. height: math.unit(12, "meters"),
  32601. name: "Snake",
  32602. image: {
  32603. source: "./media/characters/sabrina/snake.svg",
  32604. extra: 1758 / 1320,
  32605. bottom: 186 / 1944
  32606. }
  32607. },
  32608. collar: {
  32609. height: math.unit(1.86, "meters"),
  32610. name: "Collar",
  32611. image: {
  32612. source: "./media/characters/sabrina/collar.svg"
  32613. }
  32614. },
  32615. eye: {
  32616. height: math.unit(0.53, "meters"),
  32617. name: "Eye",
  32618. image: {
  32619. source: "./media/characters/sabrina/eye.svg"
  32620. }
  32621. },
  32622. foot: {
  32623. height: math.unit(1.86, "meters"),
  32624. name: "Foot",
  32625. image: {
  32626. source: "./media/characters/sabrina/foot.svg"
  32627. }
  32628. },
  32629. hand: {
  32630. height: math.unit(1.32, "meters"),
  32631. name: "Hand",
  32632. image: {
  32633. source: "./media/characters/sabrina/hand.svg"
  32634. }
  32635. },
  32636. head: {
  32637. height: math.unit(2.44, "meters"),
  32638. name: "Head",
  32639. image: {
  32640. source: "./media/characters/sabrina/head.svg"
  32641. }
  32642. },
  32643. headAngry: {
  32644. height: math.unit(2.44, "meters"),
  32645. name: "Head (Angry))",
  32646. image: {
  32647. source: "./media/characters/sabrina/head-angry.svg"
  32648. }
  32649. },
  32650. maw: {
  32651. height: math.unit(1.65, "meters"),
  32652. name: "Maw",
  32653. image: {
  32654. source: "./media/characters/sabrina/maw.svg"
  32655. }
  32656. },
  32657. spikes: {
  32658. height: math.unit(1.69, "meters"),
  32659. name: "Spikes",
  32660. image: {
  32661. source: "./media/characters/sabrina/spikes.svg"
  32662. }
  32663. },
  32664. stomach: {
  32665. height: math.unit(1.15, "meters"),
  32666. name: "Stomach",
  32667. image: {
  32668. source: "./media/characters/sabrina/stomach.svg"
  32669. }
  32670. },
  32671. tongue: {
  32672. height: math.unit(1.27, "meters"),
  32673. name: "Tongue",
  32674. image: {
  32675. source: "./media/characters/sabrina/tongue.svg"
  32676. }
  32677. },
  32678. wingDorsal: {
  32679. height: math.unit(4.85, "meters"),
  32680. name: "Wing (Dorsal)",
  32681. image: {
  32682. source: "./media/characters/sabrina/wing-dorsal.svg"
  32683. }
  32684. },
  32685. wingVentral: {
  32686. height: math.unit(4.85, "meters"),
  32687. name: "Wing (Ventral)",
  32688. image: {
  32689. source: "./media/characters/sabrina/wing-ventral.svg"
  32690. }
  32691. },
  32692. },
  32693. [
  32694. {
  32695. name: "Normal",
  32696. height: math.unit(5, "meters"),
  32697. default: true
  32698. },
  32699. ]
  32700. ))
  32701. characterMakers.push(() => makeCharacter(
  32702. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32703. {
  32704. frontMaid: {
  32705. height: math.unit(5 + 5/12, "feet"),
  32706. weight: math.unit(130, "lb"),
  32707. name: "Front (Maid)",
  32708. image: {
  32709. source: "./media/characters/midnight-tales/front-maid.svg",
  32710. extra: 489/454,
  32711. bottom: 61/550
  32712. }
  32713. },
  32714. frontFormal: {
  32715. height: math.unit(5 + 5/12, "feet"),
  32716. weight: math.unit(130, "lb"),
  32717. name: "Front (Formal)",
  32718. image: {
  32719. source: "./media/characters/midnight-tales/front-formal.svg",
  32720. extra: 489/454,
  32721. bottom: 61/550
  32722. }
  32723. },
  32724. back: {
  32725. height: math.unit(5 + 5/12, "feet"),
  32726. weight: math.unit(130, "lb"),
  32727. name: "Back",
  32728. image: {
  32729. source: "./media/characters/midnight-tales/back.svg",
  32730. extra: 498/456,
  32731. bottom: 33/531
  32732. }
  32733. },
  32734. frontBeast: {
  32735. height: math.unit(40, "feet"),
  32736. weight: math.unit(64000, "lb"),
  32737. name: "Front (Beast)",
  32738. image: {
  32739. source: "./media/characters/midnight-tales/front-beast.svg",
  32740. extra: 927/860,
  32741. bottom: 53/980
  32742. }
  32743. },
  32744. backBeast: {
  32745. height: math.unit(40, "feet"),
  32746. weight: math.unit(64000, "lb"),
  32747. name: "Back (Beast)",
  32748. image: {
  32749. source: "./media/characters/midnight-tales/back-beast.svg",
  32750. extra: 929/855,
  32751. bottom: 16/945
  32752. }
  32753. },
  32754. footBeast: {
  32755. height: math.unit(6.7, "feet"),
  32756. name: "Foot (Beast)",
  32757. image: {
  32758. source: "./media/characters/midnight-tales/foot-beast.svg"
  32759. }
  32760. },
  32761. headBeast: {
  32762. height: math.unit(8, "feet"),
  32763. name: "Head (Beast)",
  32764. image: {
  32765. source: "./media/characters/midnight-tales/head-beast.svg"
  32766. }
  32767. },
  32768. },
  32769. [
  32770. {
  32771. name: "Normal",
  32772. height: math.unit(5 + 5 / 12, "feet"),
  32773. default: true
  32774. },
  32775. {
  32776. name: "Macro",
  32777. height: math.unit(25, "feet")
  32778. },
  32779. ]
  32780. ))
  32781. characterMakers.push(() => makeCharacter(
  32782. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32783. {
  32784. front: {
  32785. height: math.unit(5 + 10/12, "feet"),
  32786. name: "Front",
  32787. image: {
  32788. source: "./media/characters/argon/front.svg",
  32789. extra: 2009/1935,
  32790. bottom: 118/2127
  32791. }
  32792. },
  32793. back: {
  32794. height: math.unit(5 + 10/12, "feet"),
  32795. name: "Back",
  32796. image: {
  32797. source: "./media/characters/argon/back.svg",
  32798. extra: 2047/1992,
  32799. bottom: 20/2067
  32800. }
  32801. },
  32802. frontDressed: {
  32803. height: math.unit(5 + 10/12, "feet"),
  32804. name: "Front (Dressed)",
  32805. image: {
  32806. source: "./media/characters/argon/front-dressed.svg",
  32807. extra: 2009/1935,
  32808. bottom: 118/2127
  32809. }
  32810. },
  32811. },
  32812. [
  32813. {
  32814. name: "Normal",
  32815. height: math.unit(5 + 10/12, "feet"),
  32816. default: true
  32817. },
  32818. ]
  32819. ))
  32820. characterMakers.push(() => makeCharacter(
  32821. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32822. {
  32823. front: {
  32824. height: math.unit(8 + 6/12, "feet"),
  32825. weight: math.unit(1150, "lb"),
  32826. name: "Front",
  32827. image: {
  32828. source: "./media/characters/kichi/front.svg",
  32829. extra: 1267/1164,
  32830. bottom: 61/1328
  32831. }
  32832. },
  32833. back: {
  32834. height: math.unit(8 + 6/12, "feet"),
  32835. weight: math.unit(1150, "lb"),
  32836. name: "Back",
  32837. image: {
  32838. source: "./media/characters/kichi/back.svg",
  32839. extra: 1273/1166,
  32840. bottom: 33/1306
  32841. }
  32842. },
  32843. },
  32844. [
  32845. {
  32846. name: "Normal",
  32847. height: math.unit(8 + 6/12, "feet"),
  32848. default: true
  32849. },
  32850. ]
  32851. ))
  32852. characterMakers.push(() => makeCharacter(
  32853. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32854. {
  32855. front: {
  32856. height: math.unit(6, "feet"),
  32857. weight: math.unit(210, "lb"),
  32858. name: "Front",
  32859. image: {
  32860. source: "./media/characters/manetel-greyscale/front.svg",
  32861. extra: 350/312,
  32862. bottom: 8/358
  32863. }
  32864. },
  32865. },
  32866. [
  32867. {
  32868. name: "Micro",
  32869. height: math.unit(2, "inches")
  32870. },
  32871. {
  32872. name: "Normal",
  32873. height: math.unit(6, "feet"),
  32874. default: true
  32875. },
  32876. {
  32877. name: "Minimacro",
  32878. height: math.unit(17, "feet")
  32879. },
  32880. {
  32881. name: "Macro",
  32882. height: math.unit(117, "feet")
  32883. },
  32884. ]
  32885. ))
  32886. characterMakers.push(() => makeCharacter(
  32887. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32888. {
  32889. side: {
  32890. height: math.unit(5 + 1/12, "feet"),
  32891. weight: math.unit(418, "lb"),
  32892. name: "Side",
  32893. image: {
  32894. source: "./media/characters/softpurr/side.svg",
  32895. extra: 1993/1945,
  32896. bottom: 134/2127
  32897. }
  32898. },
  32899. front: {
  32900. height: math.unit(5 + 1/12, "feet"),
  32901. weight: math.unit(418, "lb"),
  32902. name: "Front",
  32903. image: {
  32904. source: "./media/characters/softpurr/front.svg",
  32905. extra: 1950/1856,
  32906. bottom: 174/2124
  32907. }
  32908. },
  32909. paw: {
  32910. height: math.unit(1, "feet"),
  32911. name: "Paw",
  32912. image: {
  32913. source: "./media/characters/softpurr/paw.svg"
  32914. }
  32915. },
  32916. },
  32917. [
  32918. {
  32919. name: "Normal",
  32920. height: math.unit(5 + 1/12, "feet"),
  32921. default: true
  32922. },
  32923. ]
  32924. ))
  32925. characterMakers.push(() => makeCharacter(
  32926. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32927. {
  32928. front: {
  32929. height: math.unit(260, "meters"),
  32930. name: "Front",
  32931. image: {
  32932. source: "./media/characters/anahita/front.svg",
  32933. extra: 665/635,
  32934. bottom: 89/754
  32935. }
  32936. },
  32937. },
  32938. [
  32939. {
  32940. name: "Macro",
  32941. height: math.unit(260, "meters"),
  32942. default: true
  32943. },
  32944. ]
  32945. ))
  32946. characterMakers.push(() => makeCharacter(
  32947. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32948. {
  32949. front: {
  32950. height: math.unit(4 + 10/12, "feet"),
  32951. weight: math.unit(160, "lb"),
  32952. name: "Front",
  32953. image: {
  32954. source: "./media/characters/chip-mouse/front.svg",
  32955. extra: 3528/3408,
  32956. bottom: 0/3528
  32957. }
  32958. },
  32959. frontNsfw: {
  32960. height: math.unit(4 + 10/12, "feet"),
  32961. weight: math.unit(160, "lb"),
  32962. name: "Front (NSFW)",
  32963. image: {
  32964. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32965. extra: 3528/3408,
  32966. bottom: 0/3528
  32967. }
  32968. },
  32969. },
  32970. [
  32971. {
  32972. name: "Normal",
  32973. height: math.unit(4 + 10/12, "feet"),
  32974. default: true
  32975. },
  32976. ]
  32977. ))
  32978. characterMakers.push(() => makeCharacter(
  32979. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32980. {
  32981. side: {
  32982. height: math.unit(10, "feet"),
  32983. weight: math.unit(14000, "lb"),
  32984. name: "Side",
  32985. image: {
  32986. source: "./media/characters/kremm/side.svg",
  32987. extra: 1390/1053,
  32988. bottom: 90/1480
  32989. }
  32990. },
  32991. gut: {
  32992. height: math.unit(5.8, "feet"),
  32993. name: "Gut",
  32994. image: {
  32995. source: "./media/characters/kremm/gut.svg"
  32996. }
  32997. },
  32998. ass: {
  32999. height: math.unit(6.1, "feet"),
  33000. name: "Ass",
  33001. image: {
  33002. source: "./media/characters/kremm/ass.svg"
  33003. }
  33004. },
  33005. jaws: {
  33006. height: math.unit(2.2, "feet"),
  33007. name: "Jaws",
  33008. image: {
  33009. source: "./media/characters/kremm/jaws.svg"
  33010. }
  33011. },
  33012. dick: {
  33013. height: math.unit(4.26, "feet"),
  33014. name: "Dick",
  33015. image: {
  33016. source: "./media/characters/kremm/dick.svg"
  33017. }
  33018. },
  33019. },
  33020. [
  33021. {
  33022. name: "Normal",
  33023. height: math.unit(10, "feet"),
  33024. default: true
  33025. },
  33026. ]
  33027. ))
  33028. characterMakers.push(() => makeCharacter(
  33029. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33030. {
  33031. front: {
  33032. height: math.unit(30, "stories"),
  33033. name: "Front",
  33034. image: {
  33035. source: "./media/characters/kai/front.svg",
  33036. extra: 1892/1718,
  33037. bottom: 162/2054
  33038. }
  33039. },
  33040. },
  33041. [
  33042. {
  33043. name: "Macro",
  33044. height: math.unit(30, "stories"),
  33045. default: true
  33046. },
  33047. ]
  33048. ))
  33049. characterMakers.push(() => makeCharacter(
  33050. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33051. {
  33052. front: {
  33053. height: math.unit(6 + 4/12, "feet"),
  33054. weight: math.unit(145, "lb"),
  33055. name: "Front",
  33056. image: {
  33057. source: "./media/characters/sykes/front.svg",
  33058. extra: 1321 / 1187,
  33059. bottom: 66 / 1387
  33060. }
  33061. },
  33062. back: {
  33063. height: math.unit(6 + 4/12, "feet"),
  33064. weight: math.unit(145, "lb"),
  33065. name: "Back",
  33066. image: {
  33067. source: "./media/characters/sykes/back.svg",
  33068. extra: 1326/1181,
  33069. bottom: 31/1357
  33070. }
  33071. },
  33072. handBack: {
  33073. height: math.unit(0.9, "feet"),
  33074. name: "Hand (Back)",
  33075. image: {
  33076. source: "./media/characters/sykes/hand-back.svg"
  33077. }
  33078. },
  33079. handFront: {
  33080. height: math.unit(0.839, "feet"),
  33081. name: "Hand (Front)",
  33082. image: {
  33083. source: "./media/characters/sykes/hand-front.svg"
  33084. }
  33085. },
  33086. leftFoot: {
  33087. height: math.unit(1.2, "feet"),
  33088. name: "Foot (Left)",
  33089. image: {
  33090. source: "./media/characters/sykes/foot-left.svg"
  33091. }
  33092. },
  33093. rightFoot: {
  33094. height: math.unit(1.2, "feet"),
  33095. name: "Foot (Right)",
  33096. image: {
  33097. source: "./media/characters/sykes/foot-right.svg"
  33098. }
  33099. },
  33100. maw: {
  33101. height: math.unit(1.93, "feet"),
  33102. name: "Maw",
  33103. image: {
  33104. source: "./media/characters/sykes/maw.svg"
  33105. }
  33106. },
  33107. teeth: {
  33108. height: math.unit(0.51, "feet"),
  33109. name: "Teeth",
  33110. image: {
  33111. source: "./media/characters/sykes/teeth.svg"
  33112. }
  33113. },
  33114. tongue: {
  33115. height: math.unit(2.13, "feet"),
  33116. name: "Tongue",
  33117. image: {
  33118. source: "./media/characters/sykes/tongue.svg"
  33119. }
  33120. },
  33121. uvula: {
  33122. height: math.unit(0.16, "feet"),
  33123. name: "Uvula",
  33124. image: {
  33125. source: "./media/characters/sykes/uvula.svg"
  33126. }
  33127. },
  33128. collar: {
  33129. height: math.unit(0.287, "feet"),
  33130. name: "Collar",
  33131. image: {
  33132. source: "./media/characters/sykes/collar.svg"
  33133. }
  33134. },
  33135. },
  33136. [
  33137. {
  33138. name: "Shrunken",
  33139. height: math.unit(5, "inches")
  33140. },
  33141. {
  33142. name: "Normal",
  33143. height: math.unit(6 + 4 / 12, "feet"),
  33144. default: true
  33145. },
  33146. {
  33147. name: "Big",
  33148. height: math.unit(15, "feet")
  33149. },
  33150. ]
  33151. ))
  33152. characterMakers.push(() => makeCharacter(
  33153. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33154. {
  33155. front: {
  33156. height: math.unit(5 + 8/12, "feet"),
  33157. weight: math.unit(190, "lb"),
  33158. name: "Front",
  33159. image: {
  33160. source: "./media/characters/oven-otter/front.svg",
  33161. extra: 1809/1740,
  33162. bottom: 181/1990
  33163. }
  33164. },
  33165. back: {
  33166. height: math.unit(5 + 8/12, "feet"),
  33167. weight: math.unit(190, "lb"),
  33168. name: "Back",
  33169. image: {
  33170. source: "./media/characters/oven-otter/back.svg",
  33171. extra: 1709/1635,
  33172. bottom: 118/1827
  33173. }
  33174. },
  33175. hand: {
  33176. height: math.unit(1.07, "feet"),
  33177. name: "Hand",
  33178. image: {
  33179. source: "./media/characters/oven-otter/hand.svg"
  33180. }
  33181. },
  33182. beans: {
  33183. height: math.unit(1.74, "feet"),
  33184. name: "Beans",
  33185. image: {
  33186. source: "./media/characters/oven-otter/beans.svg"
  33187. }
  33188. },
  33189. },
  33190. [
  33191. {
  33192. name: "Micro",
  33193. height: math.unit(0.5, "inches")
  33194. },
  33195. {
  33196. name: "Normal",
  33197. height: math.unit(5 + 8/12, "feet"),
  33198. default: true
  33199. },
  33200. {
  33201. name: "Macro",
  33202. height: math.unit(250, "feet")
  33203. },
  33204. {
  33205. name: "Really High",
  33206. height: math.unit(420, "feet")
  33207. },
  33208. ]
  33209. ))
  33210. characterMakers.push(() => makeCharacter(
  33211. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33212. {
  33213. front: {
  33214. height: math.unit(5, "meters"),
  33215. weight: math.unit(292000000000000, "kg"),
  33216. name: "Front",
  33217. image: {
  33218. source: "./media/characters/devourer/front.svg",
  33219. extra: 1800/1733,
  33220. bottom: 211/2011
  33221. }
  33222. },
  33223. maw: {
  33224. height: math.unit(1.1, "meter"),
  33225. name: "Maw",
  33226. image: {
  33227. source: "./media/characters/devourer/maw.svg"
  33228. }
  33229. },
  33230. },
  33231. [
  33232. {
  33233. name: "Small",
  33234. height: math.unit(3, "meters")
  33235. },
  33236. {
  33237. name: "Large",
  33238. height: math.unit(5, "meters"),
  33239. default: true
  33240. },
  33241. ]
  33242. ))
  33243. characterMakers.push(() => makeCharacter(
  33244. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33245. {
  33246. front: {
  33247. height: math.unit(6, "feet"),
  33248. weight: math.unit(400, "lb"),
  33249. name: "Front",
  33250. image: {
  33251. source: "./media/characters/ellarby/front.svg",
  33252. extra: 1909/1763,
  33253. bottom: 80/1989
  33254. }
  33255. },
  33256. back: {
  33257. height: math.unit(6, "feet"),
  33258. weight: math.unit(400, "lb"),
  33259. name: "Back",
  33260. image: {
  33261. source: "./media/characters/ellarby/back.svg",
  33262. extra: 1914/1784,
  33263. bottom: 172/2086
  33264. }
  33265. },
  33266. },
  33267. [
  33268. {
  33269. name: "Mischief",
  33270. height: math.unit(18, "inches")
  33271. },
  33272. {
  33273. name: "Trouble",
  33274. height: math.unit(12, "feet")
  33275. },
  33276. {
  33277. name: "Havoc",
  33278. height: math.unit(200, "feet"),
  33279. default: true
  33280. },
  33281. {
  33282. name: "Pandemonium",
  33283. height: math.unit(1, "mile")
  33284. },
  33285. {
  33286. name: "Catastrophe",
  33287. height: math.unit(100, "miles")
  33288. },
  33289. ]
  33290. ))
  33291. characterMakers.push(() => makeCharacter(
  33292. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33293. {
  33294. front: {
  33295. height: math.unit(4.7, "meters"),
  33296. weight: math.unit(6500, "kg"),
  33297. name: "Front",
  33298. image: {
  33299. source: "./media/characters/vex/front.svg",
  33300. extra: 1288/1140,
  33301. bottom: 100/1388
  33302. }
  33303. },
  33304. },
  33305. [
  33306. {
  33307. name: "Normal",
  33308. height: math.unit(4.7, "meters"),
  33309. default: true
  33310. },
  33311. ]
  33312. ))
  33313. characterMakers.push(() => makeCharacter(
  33314. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33315. {
  33316. normal: {
  33317. height: math.unit(6, "feet"),
  33318. weight: math.unit(350, "lb"),
  33319. name: "Normal",
  33320. image: {
  33321. source: "./media/characters/teshy/normal.svg",
  33322. extra: 1795/1735,
  33323. bottom: 16/1811
  33324. }
  33325. },
  33326. monsterFront: {
  33327. height: math.unit(12, "feet"),
  33328. weight: math.unit(4700, "lb"),
  33329. name: "Monster (Front)",
  33330. image: {
  33331. source: "./media/characters/teshy/monster-front.svg",
  33332. extra: 2042/2034,
  33333. bottom: 128/2170
  33334. }
  33335. },
  33336. monsterSide: {
  33337. height: math.unit(12, "feet"),
  33338. weight: math.unit(4700, "lb"),
  33339. name: "Monster (Side)",
  33340. image: {
  33341. source: "./media/characters/teshy/monster-side.svg",
  33342. extra: 2067/2056,
  33343. bottom: 70/2137
  33344. }
  33345. },
  33346. monsterBack: {
  33347. height: math.unit(12, "feet"),
  33348. weight: math.unit(4700, "lb"),
  33349. name: "Monster (Back)",
  33350. image: {
  33351. source: "./media/characters/teshy/monster-back.svg",
  33352. extra: 1921/1914,
  33353. bottom: 171/2092
  33354. }
  33355. },
  33356. },
  33357. [
  33358. {
  33359. name: "Normal",
  33360. height: math.unit(6, "feet"),
  33361. default: true
  33362. },
  33363. ]
  33364. ))
  33365. characterMakers.push(() => makeCharacter(
  33366. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33367. {
  33368. front: {
  33369. height: math.unit(6, "feet"),
  33370. name: "Front",
  33371. image: {
  33372. source: "./media/characters/ramey/front.svg",
  33373. extra: 790/787,
  33374. bottom: 27/817
  33375. }
  33376. },
  33377. },
  33378. [
  33379. {
  33380. name: "Normal",
  33381. height: math.unit(6, "feet"),
  33382. default: true
  33383. },
  33384. ]
  33385. ))
  33386. characterMakers.push(() => makeCharacter(
  33387. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33388. {
  33389. front: {
  33390. height: math.unit(5 + 5/12, "feet"),
  33391. weight: math.unit(120, "lb"),
  33392. name: "Front",
  33393. image: {
  33394. source: "./media/characters/phirae/front.svg",
  33395. extra: 2491/2436,
  33396. bottom: 38/2529
  33397. }
  33398. },
  33399. },
  33400. [
  33401. {
  33402. name: "Normal",
  33403. height: math.unit(5 + 5/12, "feet"),
  33404. default: true
  33405. },
  33406. ]
  33407. ))
  33408. characterMakers.push(() => makeCharacter(
  33409. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33410. {
  33411. front: {
  33412. height: math.unit(6, "feet"),
  33413. weight: math.unit(150, "lb"),
  33414. name: "Front",
  33415. image: {
  33416. source: "./media/characters/stagglas/front.svg",
  33417. extra: 962/882,
  33418. bottom: 53/1015
  33419. }
  33420. },
  33421. },
  33422. [
  33423. {
  33424. name: "Normal",
  33425. height: math.unit(5 + 3/12, "feet"),
  33426. default: true
  33427. },
  33428. ]
  33429. ))
  33430. characterMakers.push(() => makeCharacter(
  33431. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33432. {
  33433. front: {
  33434. height: math.unit(5 + 4/12, "feet"),
  33435. weight: math.unit(145, "lb"),
  33436. name: "Front",
  33437. image: {
  33438. source: "./media/characters/starra/front.svg",
  33439. extra: 1790/1691,
  33440. bottom: 91/1881
  33441. }
  33442. },
  33443. },
  33444. [
  33445. {
  33446. name: "Normal",
  33447. height: math.unit(5 + 4/12, "feet"),
  33448. default: true
  33449. },
  33450. ]
  33451. ))
  33452. characterMakers.push(() => makeCharacter(
  33453. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33454. {
  33455. front: {
  33456. height: math.unit(2.2, "meters"),
  33457. name: "Front",
  33458. image: {
  33459. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33460. extra: 1194/1005,
  33461. bottom: 25/1219
  33462. }
  33463. },
  33464. },
  33465. [
  33466. {
  33467. name: "Normal",
  33468. height: math.unit(2.2, "meters"),
  33469. default: true
  33470. },
  33471. ]
  33472. ))
  33473. characterMakers.push(() => makeCharacter(
  33474. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33475. {
  33476. side: {
  33477. height: math.unit(8 + 2/12, "feet"),
  33478. weight: math.unit(1240, "lb"),
  33479. name: "Side",
  33480. image: {
  33481. source: "./media/characters/mika-valentine/side.svg",
  33482. extra: 2670/2501,
  33483. bottom: 250/2920
  33484. }
  33485. },
  33486. },
  33487. [
  33488. {
  33489. name: "Normal",
  33490. height: math.unit(8 + 2/12, "feet"),
  33491. default: true
  33492. },
  33493. ]
  33494. ))
  33495. characterMakers.push(() => makeCharacter(
  33496. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33497. {
  33498. front: {
  33499. height: math.unit(7 + 2/12, "feet"),
  33500. name: "Front",
  33501. image: {
  33502. source: "./media/characters/xoltol/front.svg",
  33503. extra: 2212/2124,
  33504. bottom: 84/2296
  33505. }
  33506. },
  33507. side: {
  33508. height: math.unit(7 + 2/12, "feet"),
  33509. name: "Side",
  33510. image: {
  33511. source: "./media/characters/xoltol/side.svg",
  33512. extra: 2273/2197,
  33513. bottom: 26/2299
  33514. }
  33515. },
  33516. hand: {
  33517. height: math.unit(2.5, "feet"),
  33518. name: "Hand",
  33519. image: {
  33520. source: "./media/characters/xoltol/hand.svg"
  33521. }
  33522. },
  33523. },
  33524. [
  33525. {
  33526. name: "Small-ish",
  33527. height: math.unit(5 + 11/12, "feet")
  33528. },
  33529. {
  33530. name: "Normal",
  33531. height: math.unit(7 + 2/12, "feet")
  33532. },
  33533. {
  33534. name: "\"Macro\"",
  33535. height: math.unit(14 + 9/12, "feet"),
  33536. default: true
  33537. },
  33538. {
  33539. name: "Alternate Height",
  33540. height: math.unit(20, "feet")
  33541. },
  33542. {
  33543. name: "Actually Macro",
  33544. height: math.unit(100, "feet")
  33545. },
  33546. ]
  33547. ))
  33548. characterMakers.push(() => makeCharacter(
  33549. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33550. {
  33551. front: {
  33552. height: math.unit(5 + 2/12, "feet"),
  33553. name: "Front",
  33554. image: {
  33555. source: "./media/characters/kotetsu-redwood/front.svg",
  33556. extra: 1053/942,
  33557. bottom: 60/1113
  33558. }
  33559. },
  33560. },
  33561. [
  33562. {
  33563. name: "Normal",
  33564. height: math.unit(5 + 2/12, "feet"),
  33565. default: true
  33566. },
  33567. ]
  33568. ))
  33569. characterMakers.push(() => makeCharacter(
  33570. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33571. {
  33572. front: {
  33573. height: math.unit(2.4, "meters"),
  33574. weight: math.unit(125, "kg"),
  33575. name: "Front",
  33576. image: {
  33577. source: "./media/characters/lilith/front.svg",
  33578. extra: 1590/1513,
  33579. bottom: 203/1793
  33580. }
  33581. },
  33582. },
  33583. [
  33584. {
  33585. name: "Humanoid",
  33586. height: math.unit(2.4, "meters")
  33587. },
  33588. {
  33589. name: "Normal",
  33590. height: math.unit(6, "meters"),
  33591. default: true
  33592. },
  33593. {
  33594. name: "Largest",
  33595. height: math.unit(55, "meters")
  33596. },
  33597. ]
  33598. ))
  33599. characterMakers.push(() => makeCharacter(
  33600. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33601. {
  33602. front: {
  33603. height: math.unit(8 + 4/12, "feet"),
  33604. weight: math.unit(535, "lb"),
  33605. name: "Front",
  33606. image: {
  33607. source: "./media/characters/beh'kah-bolger/front.svg",
  33608. extra: 1660/1603,
  33609. bottom: 37/1697
  33610. }
  33611. },
  33612. },
  33613. [
  33614. {
  33615. name: "Normal",
  33616. height: math.unit(8 + 4/12, "feet"),
  33617. default: true
  33618. },
  33619. {
  33620. name: "Kaiju",
  33621. height: math.unit(250, "feet")
  33622. },
  33623. {
  33624. name: "Still Growing",
  33625. height: math.unit(10, "miles")
  33626. },
  33627. {
  33628. name: "Continental",
  33629. height: math.unit(5000, "miles")
  33630. },
  33631. {
  33632. name: "Final Form",
  33633. height: math.unit(2500000, "miles")
  33634. },
  33635. ]
  33636. ))
  33637. characterMakers.push(() => makeCharacter(
  33638. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33639. {
  33640. front: {
  33641. height: math.unit(7 + 2/12, "feet"),
  33642. weight: math.unit(230, "kg"),
  33643. name: "Front",
  33644. image: {
  33645. source: "./media/characters/tatyana-milewska/front.svg",
  33646. extra: 1199/1150,
  33647. bottom: 86/1285
  33648. }
  33649. },
  33650. },
  33651. [
  33652. {
  33653. name: "Normal",
  33654. height: math.unit(7 + 2/12, "feet"),
  33655. default: true
  33656. },
  33657. {
  33658. name: "Big",
  33659. height: math.unit(12, "feet")
  33660. },
  33661. {
  33662. name: "Minimacro",
  33663. height: math.unit(20, "feet")
  33664. },
  33665. {
  33666. name: "Macro",
  33667. height: math.unit(120, "feet")
  33668. },
  33669. ]
  33670. ))
  33671. characterMakers.push(() => makeCharacter(
  33672. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33673. {
  33674. front: {
  33675. height: math.unit(7 + 8/12, "feet"),
  33676. weight: math.unit(152, "kg"),
  33677. name: "Front",
  33678. image: {
  33679. source: "./media/characters/helen-arri/front.svg",
  33680. extra: 440/423,
  33681. bottom: 14/454
  33682. }
  33683. },
  33684. back: {
  33685. height: math.unit(7 + 8/12, "feet"),
  33686. weight: math.unit(152, "kg"),
  33687. name: "Back",
  33688. image: {
  33689. source: "./media/characters/helen-arri/back.svg",
  33690. extra: 443/426,
  33691. bottom: 8/451
  33692. }
  33693. },
  33694. },
  33695. [
  33696. {
  33697. name: "Normal",
  33698. height: math.unit(7 + 8/12, "feet"),
  33699. default: true
  33700. },
  33701. {
  33702. name: "Big",
  33703. height: math.unit(14, "feet")
  33704. },
  33705. {
  33706. name: "Minimacro",
  33707. height: math.unit(24, "feet")
  33708. },
  33709. {
  33710. name: "Macro",
  33711. height: math.unit(140, "feet")
  33712. },
  33713. ]
  33714. ))
  33715. characterMakers.push(() => makeCharacter(
  33716. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33717. {
  33718. front: {
  33719. height: math.unit(6, "meters"),
  33720. name: "Front",
  33721. image: {
  33722. source: "./media/characters/ehanu-rehu/front.svg",
  33723. extra: 1800/1800,
  33724. bottom: 59/1859
  33725. }
  33726. },
  33727. },
  33728. [
  33729. {
  33730. name: "Normal",
  33731. height: math.unit(6, "meters"),
  33732. default: true
  33733. },
  33734. ]
  33735. ))
  33736. characterMakers.push(() => makeCharacter(
  33737. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33738. {
  33739. front: {
  33740. height: math.unit(7 + 3/12, "feet"),
  33741. name: "Front",
  33742. image: {
  33743. source: "./media/characters/renholder/front.svg",
  33744. extra: 3096/2960,
  33745. bottom: 250/3346
  33746. }
  33747. },
  33748. },
  33749. [
  33750. {
  33751. name: "Normal Bat",
  33752. height: math.unit(7 + 3/12, "feet"),
  33753. default: true
  33754. },
  33755. {
  33756. name: "Slightly Tall Bat",
  33757. height: math.unit(100, "feet")
  33758. },
  33759. {
  33760. name: "Big Bat",
  33761. height: math.unit(1000, "feet")
  33762. },
  33763. {
  33764. name: "City-Sized Bat",
  33765. height: math.unit(200000, "feet")
  33766. },
  33767. {
  33768. name: "Bigger Bat",
  33769. height: math.unit(10000, "miles")
  33770. },
  33771. {
  33772. name: "Solar Sized Bat",
  33773. height: math.unit(100, "AU")
  33774. },
  33775. {
  33776. name: "Galactic Bat",
  33777. height: math.unit(200000, "lightyears")
  33778. },
  33779. {
  33780. name: "Universally Known Bat",
  33781. height: math.unit(1, "universe")
  33782. },
  33783. ]
  33784. ))
  33785. characterMakers.push(() => makeCharacter(
  33786. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33787. {
  33788. front: {
  33789. height: math.unit(6 + 11/12, "feet"),
  33790. weight: math.unit(250, "lb"),
  33791. name: "Front",
  33792. image: {
  33793. source: "./media/characters/cookiecat/front.svg",
  33794. extra: 893/827,
  33795. bottom: 14/907
  33796. }
  33797. },
  33798. },
  33799. [
  33800. {
  33801. name: "Micro",
  33802. height: math.unit(3, "inches")
  33803. },
  33804. {
  33805. name: "Normal",
  33806. height: math.unit(6 + 11/12, "feet"),
  33807. default: true
  33808. },
  33809. {
  33810. name: "Macro",
  33811. height: math.unit(100, "feet")
  33812. },
  33813. {
  33814. name: "Macro+",
  33815. height: math.unit(404, "feet")
  33816. },
  33817. {
  33818. name: "Megamacro",
  33819. height: math.unit(165, "miles")
  33820. },
  33821. {
  33822. name: "Planetary",
  33823. height: math.unit(4600, "miles")
  33824. },
  33825. ]
  33826. ))
  33827. characterMakers.push(() => makeCharacter(
  33828. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33829. {
  33830. front: {
  33831. height: math.unit(10 + 3/12, "feet"),
  33832. weight: math.unit(1500, "lb"),
  33833. name: "Front",
  33834. image: {
  33835. source: "./media/characters/tux-kusanagi/front.svg",
  33836. extra: 944/840,
  33837. bottom: 39/983
  33838. }
  33839. },
  33840. back: {
  33841. height: math.unit(10 + 3/12, "feet"),
  33842. weight: math.unit(1500, "lb"),
  33843. name: "Back",
  33844. image: {
  33845. source: "./media/characters/tux-kusanagi/back.svg",
  33846. extra: 941/842,
  33847. bottom: 28/969
  33848. }
  33849. },
  33850. rump: {
  33851. height: math.unit(5.25, "feet"),
  33852. name: "Rump",
  33853. image: {
  33854. source: "./media/characters/tux-kusanagi/rump.svg"
  33855. }
  33856. },
  33857. beak: {
  33858. height: math.unit(1.54, "feet"),
  33859. name: "Beak",
  33860. image: {
  33861. source: "./media/characters/tux-kusanagi/beak.svg"
  33862. }
  33863. },
  33864. },
  33865. [
  33866. {
  33867. name: "Normal",
  33868. height: math.unit(10 + 3/12, "feet"),
  33869. default: true
  33870. },
  33871. ]
  33872. ))
  33873. characterMakers.push(() => makeCharacter(
  33874. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33875. {
  33876. front: {
  33877. height: math.unit(58, "feet"),
  33878. weight: math.unit(200, "tons"),
  33879. name: "Front",
  33880. image: {
  33881. source: "./media/characters/uzarmazari/front.svg",
  33882. extra: 1575/1455,
  33883. bottom: 152/1727
  33884. }
  33885. },
  33886. back: {
  33887. height: math.unit(58, "feet"),
  33888. weight: math.unit(200, "tons"),
  33889. name: "Back",
  33890. image: {
  33891. source: "./media/characters/uzarmazari/back.svg",
  33892. extra: 1585/1510,
  33893. bottom: 157/1742
  33894. }
  33895. },
  33896. head: {
  33897. height: math.unit(26, "feet"),
  33898. name: "Head",
  33899. image: {
  33900. source: "./media/characters/uzarmazari/head.svg"
  33901. }
  33902. },
  33903. },
  33904. [
  33905. {
  33906. name: "Normal",
  33907. height: math.unit(58, "feet"),
  33908. default: true
  33909. },
  33910. ]
  33911. ))
  33912. characterMakers.push(() => makeCharacter(
  33913. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33914. {
  33915. side: {
  33916. height: math.unit(15, "feet"),
  33917. name: "Side",
  33918. image: {
  33919. source: "./media/characters/akitu/side.svg",
  33920. extra: 1421/1321,
  33921. bottom: 157/1578
  33922. }
  33923. },
  33924. front: {
  33925. height: math.unit(15, "feet"),
  33926. name: "Front",
  33927. image: {
  33928. source: "./media/characters/akitu/front.svg",
  33929. extra: 1435/1326,
  33930. bottom: 232/1667
  33931. }
  33932. },
  33933. },
  33934. [
  33935. {
  33936. name: "Normal",
  33937. height: math.unit(15, "feet"),
  33938. default: true
  33939. },
  33940. ]
  33941. ))
  33942. characterMakers.push(() => makeCharacter(
  33943. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33944. {
  33945. front: {
  33946. height: math.unit(10 + 8/12, "feet"),
  33947. name: "Front",
  33948. image: {
  33949. source: "./media/characters/azalie-croixland/front.svg",
  33950. extra: 1972/1856,
  33951. bottom: 31/2003
  33952. }
  33953. },
  33954. },
  33955. [
  33956. {
  33957. name: "Original Height",
  33958. height: math.unit(5 + 4/12, "feet")
  33959. },
  33960. {
  33961. name: "Normal Height",
  33962. height: math.unit(10 + 8/12, "feet"),
  33963. default: true
  33964. },
  33965. ]
  33966. ))
  33967. characterMakers.push(() => makeCharacter(
  33968. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  33969. {
  33970. side: {
  33971. height: math.unit(7 + 1/12, "feet"),
  33972. weight: math.unit(245, "lb"),
  33973. name: "Side",
  33974. image: {
  33975. source: "./media/characters/kavus-kazian/side.svg",
  33976. extra: 349/342,
  33977. bottom: 15/364
  33978. }
  33979. },
  33980. },
  33981. [
  33982. {
  33983. name: "Normal",
  33984. height: math.unit(7 + 1/12, "feet"),
  33985. default: true
  33986. },
  33987. ]
  33988. ))
  33989. characterMakers.push(() => makeCharacter(
  33990. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  33991. {
  33992. normal: {
  33993. height: math.unit(5 + 11/12, "feet"),
  33994. name: "Normal",
  33995. image: {
  33996. source: "./media/characters/moonlight-rose/normal.svg",
  33997. extra: 1979/1835,
  33998. bottom: 14/1993
  33999. }
  34000. },
  34001. demon: {
  34002. height: math.unit(5, "km"),
  34003. name: "Demon",
  34004. image: {
  34005. source: "./media/characters/moonlight-rose/demon.svg",
  34006. extra: 986/916,
  34007. bottom: 28/1014
  34008. }
  34009. },
  34010. },
  34011. [
  34012. {
  34013. name: "\"Natural\" height",
  34014. height: math.unit(5 + 11/12, "feet")
  34015. },
  34016. {
  34017. name: "Comfortable Size",
  34018. height: math.unit(40, "meters")
  34019. },
  34020. {
  34021. name: "Common Size",
  34022. height: math.unit(50, "km"),
  34023. default: true
  34024. },
  34025. {
  34026. name: "Demonic",
  34027. height: math.unit(1.24415e+21, "meters")
  34028. },
  34029. ]
  34030. ))
  34031. characterMakers.push(() => makeCharacter(
  34032. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34033. {
  34034. front: {
  34035. height: math.unit(16, "feet"),
  34036. weight: math.unit(610, "kg"),
  34037. name: "Front",
  34038. image: {
  34039. source: "./media/characters/huckle/front.svg",
  34040. extra: 1731/1625,
  34041. bottom: 33/1764
  34042. }
  34043. },
  34044. back: {
  34045. height: math.unit(16, "feet"),
  34046. weight: math.unit(610, "kg"),
  34047. name: "Back",
  34048. image: {
  34049. source: "./media/characters/huckle/back.svg",
  34050. extra: 1738/1651,
  34051. bottom: 37/1775
  34052. }
  34053. },
  34054. laughing: {
  34055. height: math.unit(3.75, "feet"),
  34056. name: "Laughing",
  34057. image: {
  34058. source: "./media/characters/huckle/laughing.svg"
  34059. }
  34060. },
  34061. angry: {
  34062. height: math.unit(4.15, "feet"),
  34063. name: "Angry",
  34064. image: {
  34065. source: "./media/characters/huckle/angry.svg"
  34066. }
  34067. },
  34068. },
  34069. [
  34070. {
  34071. name: "Normal",
  34072. height: math.unit(16, "feet"),
  34073. default: true
  34074. },
  34075. {
  34076. name: "Mini Macro",
  34077. height: math.unit(463, "feet")
  34078. },
  34079. {
  34080. name: "Macro",
  34081. height: math.unit(1680, "meters")
  34082. },
  34083. {
  34084. name: "Mega Macro",
  34085. height: math.unit(175, "km")
  34086. },
  34087. {
  34088. name: "Terra Macro",
  34089. height: math.unit(32, "gigameters")
  34090. },
  34091. {
  34092. name: "Multiverse+",
  34093. height: math.unit(2.56e23, "yottameters")
  34094. },
  34095. ]
  34096. ))
  34097. characterMakers.push(() => makeCharacter(
  34098. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34099. {
  34100. front: {
  34101. height: math.unit(6 + 9/12, "feet"),
  34102. weight: math.unit(280, "lb"),
  34103. name: "Front",
  34104. image: {
  34105. source: "./media/characters/candy/front.svg",
  34106. extra: 234/217,
  34107. bottom: 11/245
  34108. }
  34109. },
  34110. },
  34111. [
  34112. {
  34113. name: "Really Small",
  34114. height: math.unit(0.1, "nm")
  34115. },
  34116. {
  34117. name: "Micro",
  34118. height: math.unit(2, "inches")
  34119. },
  34120. {
  34121. name: "Normal",
  34122. height: math.unit(6 + 9/12, "feet"),
  34123. default: true
  34124. },
  34125. {
  34126. name: "Small Macro",
  34127. height: math.unit(69, "feet")
  34128. },
  34129. {
  34130. name: "Macro",
  34131. height: math.unit(160, "feet")
  34132. },
  34133. {
  34134. name: "Megamacro",
  34135. height: math.unit(22000, "miles")
  34136. },
  34137. {
  34138. name: "Gigamacro",
  34139. height: math.unit(50000, "miles")
  34140. },
  34141. ]
  34142. ))
  34143. characterMakers.push(() => makeCharacter(
  34144. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34145. {
  34146. front: {
  34147. height: math.unit(4, "feet"),
  34148. weight: math.unit(90, "lb"),
  34149. name: "Front",
  34150. image: {
  34151. source: "./media/characters/joey-mcdonald/front.svg",
  34152. extra: 1059/852,
  34153. bottom: 33/1092
  34154. }
  34155. },
  34156. back: {
  34157. height: math.unit(4, "feet"),
  34158. weight: math.unit(90, "lb"),
  34159. name: "Back",
  34160. image: {
  34161. source: "./media/characters/joey-mcdonald/back.svg",
  34162. extra: 1077/879,
  34163. bottom: 5/1082
  34164. }
  34165. },
  34166. },
  34167. [
  34168. {
  34169. name: "Normal",
  34170. height: math.unit(4, "feet"),
  34171. default: true
  34172. },
  34173. ]
  34174. ))
  34175. characterMakers.push(() => makeCharacter(
  34176. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34177. {
  34178. front: {
  34179. height: math.unit(12 + 6/12, "feet"),
  34180. name: "Front",
  34181. image: {
  34182. source: "./media/characters/kass-lockheed/front.svg",
  34183. extra: 354/343,
  34184. bottom: 9/363
  34185. }
  34186. },
  34187. back: {
  34188. height: math.unit(12 + 6/12, "feet"),
  34189. name: "Back",
  34190. image: {
  34191. source: "./media/characters/kass-lockheed/back.svg",
  34192. extra: 364/352,
  34193. bottom: 3/367
  34194. }
  34195. },
  34196. dick: {
  34197. height: math.unit(3.12, "feet"),
  34198. name: "Dick",
  34199. image: {
  34200. source: "./media/characters/kass-lockheed/dick.svg"
  34201. }
  34202. },
  34203. head: {
  34204. height: math.unit(2.6, "feet"),
  34205. name: "Head",
  34206. image: {
  34207. source: "./media/characters/kass-lockheed/head.svg"
  34208. }
  34209. },
  34210. bleh: {
  34211. height: math.unit(2.85, "feet"),
  34212. name: "Bleh",
  34213. image: {
  34214. source: "./media/characters/kass-lockheed/bleh.svg"
  34215. }
  34216. },
  34217. smug: {
  34218. height: math.unit(2.85, "feet"),
  34219. name: "Smug",
  34220. image: {
  34221. source: "./media/characters/kass-lockheed/smug.svg"
  34222. }
  34223. },
  34224. },
  34225. [
  34226. {
  34227. name: "Normal",
  34228. height: math.unit(12 + 6/12, "feet"),
  34229. default: true
  34230. },
  34231. ]
  34232. ))
  34233. characterMakers.push(() => makeCharacter(
  34234. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34235. {
  34236. front: {
  34237. height: math.unit(6 + 2/12, "feet"),
  34238. name: "Front",
  34239. image: {
  34240. source: "./media/characters/taylor/front.svg",
  34241. extra: 639/495,
  34242. bottom: 12/651
  34243. }
  34244. },
  34245. },
  34246. [
  34247. {
  34248. name: "Normal",
  34249. height: math.unit(6 + 2/12, "feet"),
  34250. default: true
  34251. },
  34252. {
  34253. name: "Big",
  34254. height: math.unit(15, "feet")
  34255. },
  34256. {
  34257. name: "Lorg",
  34258. height: math.unit(80, "feet")
  34259. },
  34260. {
  34261. name: "Too Lorg",
  34262. height: math.unit(120, "feet")
  34263. },
  34264. ]
  34265. ))
  34266. characterMakers.push(() => makeCharacter(
  34267. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34268. {
  34269. front: {
  34270. height: math.unit(15, "feet"),
  34271. name: "Front",
  34272. image: {
  34273. source: "./media/characters/kaizer/front.svg",
  34274. extra: 1612/1436,
  34275. bottom: 43/1655
  34276. }
  34277. },
  34278. },
  34279. [
  34280. {
  34281. name: "Normal",
  34282. height: math.unit(15, "feet"),
  34283. default: true
  34284. },
  34285. ]
  34286. ))
  34287. characterMakers.push(() => makeCharacter(
  34288. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34289. {
  34290. front: {
  34291. height: math.unit(2, "feet"),
  34292. weight: math.unit(30, "lb"),
  34293. name: "Front",
  34294. image: {
  34295. source: "./media/characters/sandy/front.svg",
  34296. extra: 1439/1307,
  34297. bottom: 194/1633
  34298. }
  34299. },
  34300. },
  34301. [
  34302. {
  34303. name: "Normal",
  34304. height: math.unit(2, "feet"),
  34305. default: true
  34306. },
  34307. ]
  34308. ))
  34309. characterMakers.push(() => makeCharacter(
  34310. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34311. {
  34312. front: {
  34313. height: math.unit(3, "feet"),
  34314. name: "Front",
  34315. image: {
  34316. source: "./media/characters/mellvi/front.svg",
  34317. extra: 1831/1630,
  34318. bottom: 58/1889
  34319. }
  34320. },
  34321. },
  34322. [
  34323. {
  34324. name: "Normal",
  34325. height: math.unit(3, "feet"),
  34326. default: true
  34327. },
  34328. ]
  34329. ))
  34330. characterMakers.push(() => makeCharacter(
  34331. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34332. {
  34333. front: {
  34334. height: math.unit(5 + 11/12, "feet"),
  34335. weight: math.unit(200, "lb"),
  34336. name: "Front",
  34337. image: {
  34338. source: "./media/characters/shirou/front.svg",
  34339. extra: 2491/2383,
  34340. bottom: 189/2680
  34341. }
  34342. },
  34343. back: {
  34344. height: math.unit(5 + 11/12, "feet"),
  34345. weight: math.unit(200, "lb"),
  34346. name: "Back",
  34347. image: {
  34348. source: "./media/characters/shirou/back.svg",
  34349. extra: 2554/2450,
  34350. bottom: 76/2630
  34351. }
  34352. },
  34353. },
  34354. [
  34355. {
  34356. name: "Normal",
  34357. height: math.unit(5 + 11/12, "feet"),
  34358. default: true
  34359. },
  34360. ]
  34361. ))
  34362. characterMakers.push(() => makeCharacter(
  34363. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34364. {
  34365. front: {
  34366. height: math.unit(6 + 3/12, "feet"),
  34367. weight: math.unit(177, "lb"),
  34368. name: "Front",
  34369. image: {
  34370. source: "./media/characters/noryu/front.svg",
  34371. extra: 973/885,
  34372. bottom: 10/983
  34373. }
  34374. },
  34375. },
  34376. [
  34377. {
  34378. name: "Normal",
  34379. height: math.unit(6 + 3/12, "feet"),
  34380. default: true
  34381. },
  34382. ]
  34383. ))
  34384. characterMakers.push(() => makeCharacter(
  34385. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34386. {
  34387. front: {
  34388. height: math.unit(5 + 6/12, "feet"),
  34389. weight: math.unit(170, "lb"),
  34390. name: "Front",
  34391. image: {
  34392. source: "./media/characters/mevolas-rubenido/front.svg",
  34393. extra: 2109/1901,
  34394. bottom: 96/2205
  34395. }
  34396. },
  34397. },
  34398. [
  34399. {
  34400. name: "Normal",
  34401. height: math.unit(5 + 6/12, "feet"),
  34402. default: true
  34403. },
  34404. ]
  34405. ))
  34406. characterMakers.push(() => makeCharacter(
  34407. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34408. {
  34409. front: {
  34410. height: math.unit(100, "feet"),
  34411. name: "Front",
  34412. image: {
  34413. source: "./media/characters/dee/front.svg",
  34414. extra: 2153/2036,
  34415. bottom: 59/2212
  34416. }
  34417. },
  34418. back: {
  34419. height: math.unit(100, "feet"),
  34420. name: "Back",
  34421. image: {
  34422. source: "./media/characters/dee/back.svg",
  34423. extra: 2183/2058,
  34424. bottom: 75/2258
  34425. }
  34426. },
  34427. foot: {
  34428. height: math.unit(19.43, "feet"),
  34429. name: "Foot",
  34430. image: {
  34431. source: "./media/characters/dee/foot.svg"
  34432. }
  34433. },
  34434. hoof: {
  34435. height: math.unit(20.6, "feet"),
  34436. name: "Hoof",
  34437. image: {
  34438. source: "./media/characters/dee/hoof.svg"
  34439. }
  34440. },
  34441. },
  34442. [
  34443. {
  34444. name: "Macro",
  34445. height: math.unit(100, "feet"),
  34446. default: true
  34447. },
  34448. ]
  34449. ))
  34450. characterMakers.push(() => makeCharacter(
  34451. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34452. {
  34453. front: {
  34454. height: math.unit(5 + 6/12, "feet"),
  34455. name: "Front",
  34456. image: {
  34457. source: "./media/characters/teh/front.svg",
  34458. extra: 1002/847,
  34459. bottom: 62/1064
  34460. }
  34461. },
  34462. },
  34463. [
  34464. {
  34465. name: "Normal",
  34466. height: math.unit(5 + 6/12, "feet"),
  34467. default: true
  34468. },
  34469. ]
  34470. ))
  34471. characterMakers.push(() => makeCharacter(
  34472. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34473. {
  34474. side: {
  34475. height: math.unit(6 + 1/12, "feet"),
  34476. weight: math.unit(204, "lb"),
  34477. name: "Side",
  34478. image: {
  34479. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34480. extra: 974/775,
  34481. bottom: 169/1143
  34482. }
  34483. },
  34484. sitting: {
  34485. height: math.unit(6 + 2/12, "feet"),
  34486. weight: math.unit(204, "lb"),
  34487. name: "Sitting",
  34488. image: {
  34489. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34490. extra: 1175/964,
  34491. bottom: 378/1553
  34492. }
  34493. },
  34494. },
  34495. [
  34496. {
  34497. name: "Normal",
  34498. height: math.unit(6 + 1/12, "feet"),
  34499. default: true
  34500. },
  34501. ]
  34502. ))
  34503. characterMakers.push(() => makeCharacter(
  34504. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34505. {
  34506. front: {
  34507. height: math.unit(6, "inches"),
  34508. name: "Front",
  34509. image: {
  34510. source: "./media/characters/tululi/front.svg",
  34511. extra: 1997/1876,
  34512. bottom: 20/2017
  34513. }
  34514. },
  34515. },
  34516. [
  34517. {
  34518. name: "Normal",
  34519. height: math.unit(6, "inches"),
  34520. default: true
  34521. },
  34522. ]
  34523. ))
  34524. characterMakers.push(() => makeCharacter(
  34525. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34526. {
  34527. front: {
  34528. height: math.unit(4 + 1/12, "feet"),
  34529. name: "Front",
  34530. image: {
  34531. source: "./media/characters/star/front.svg",
  34532. extra: 1493/1189,
  34533. bottom: 48/1541
  34534. }
  34535. },
  34536. },
  34537. [
  34538. {
  34539. name: "Normal",
  34540. height: math.unit(4 + 1/12, "feet"),
  34541. default: true
  34542. },
  34543. ]
  34544. ))
  34545. characterMakers.push(() => makeCharacter(
  34546. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34547. {
  34548. front: {
  34549. height: math.unit(6 + 3/12, "feet"),
  34550. name: "Front",
  34551. image: {
  34552. source: "./media/characters/comet/front.svg",
  34553. extra: 1681/1462,
  34554. bottom: 26/1707
  34555. }
  34556. },
  34557. },
  34558. [
  34559. {
  34560. name: "Normal",
  34561. height: math.unit(6 + 3/12, "feet"),
  34562. default: true
  34563. },
  34564. ]
  34565. ))
  34566. characterMakers.push(() => makeCharacter(
  34567. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34568. {
  34569. front: {
  34570. height: math.unit(950, "feet"),
  34571. name: "Front",
  34572. image: {
  34573. source: "./media/characters/vortex/front.svg",
  34574. extra: 1497/1434,
  34575. bottom: 56/1553
  34576. }
  34577. },
  34578. maw: {
  34579. height: math.unit(285, "feet"),
  34580. name: "Maw",
  34581. image: {
  34582. source: "./media/characters/vortex/maw.svg"
  34583. }
  34584. },
  34585. },
  34586. [
  34587. {
  34588. name: "Macro",
  34589. height: math.unit(950, "feet"),
  34590. default: true
  34591. },
  34592. ]
  34593. ))
  34594. characterMakers.push(() => makeCharacter(
  34595. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34596. {
  34597. front: {
  34598. height: math.unit(600, "feet"),
  34599. weight: math.unit(0.02, "grams"),
  34600. name: "Front",
  34601. image: {
  34602. source: "./media/characters/doodle/front.svg",
  34603. extra: 1578/1413,
  34604. bottom: 37/1615
  34605. }
  34606. },
  34607. },
  34608. [
  34609. {
  34610. name: "Macro",
  34611. height: math.unit(600, "feet"),
  34612. default: true
  34613. },
  34614. ]
  34615. ))
  34616. characterMakers.push(() => makeCharacter(
  34617. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34618. {
  34619. front: {
  34620. height: math.unit(6 + 6/12, "feet"),
  34621. name: "Front",
  34622. image: {
  34623. source: "./media/characters/jai/front.svg",
  34624. extra: 1645/1534,
  34625. bottom: 115/1760
  34626. }
  34627. },
  34628. },
  34629. [
  34630. {
  34631. name: "Normal",
  34632. height: math.unit(6 + 6/12, "feet"),
  34633. default: true
  34634. },
  34635. ]
  34636. ))
  34637. characterMakers.push(() => makeCharacter(
  34638. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34639. {
  34640. front: {
  34641. height: math.unit(6 + 8/12, "feet"),
  34642. name: "Front",
  34643. image: {
  34644. source: "./media/characters/pixel/front.svg",
  34645. extra: 1900/1735,
  34646. bottom: 63/1963
  34647. }
  34648. },
  34649. },
  34650. [
  34651. {
  34652. name: "Normal",
  34653. height: math.unit(6 + 8/12, "feet"),
  34654. default: true
  34655. },
  34656. ]
  34657. ))
  34658. characterMakers.push(() => makeCharacter(
  34659. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34660. {
  34661. front: {
  34662. height: math.unit(4 + 11/12, "feet"),
  34663. weight: math.unit(111, "lb"),
  34664. name: "Front",
  34665. image: {
  34666. source: "./media/characters/rhett/front.svg",
  34667. extra: 1682/1586,
  34668. bottom: 92/1774
  34669. }
  34670. },
  34671. },
  34672. [
  34673. {
  34674. name: "Mini",
  34675. height: math.unit(1 + 1/12, "feet")
  34676. },
  34677. {
  34678. name: "Normal",
  34679. height: math.unit(4 + 11/12, "feet"),
  34680. default: true
  34681. },
  34682. ]
  34683. ))
  34684. characterMakers.push(() => makeCharacter(
  34685. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34686. {
  34687. front: {
  34688. height: math.unit(3 + 3/12, "feet"),
  34689. name: "Front",
  34690. image: {
  34691. source: "./media/characters/penny/front.svg",
  34692. extra: 1406/1311,
  34693. bottom: 26/1432
  34694. }
  34695. },
  34696. },
  34697. [
  34698. {
  34699. name: "Normal",
  34700. height: math.unit(3 + 3/12, "feet"),
  34701. default: true
  34702. },
  34703. ]
  34704. ))
  34705. characterMakers.push(() => makeCharacter(
  34706. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34707. {
  34708. front: {
  34709. height: math.unit(4 + 11/12, "feet"),
  34710. name: "Front",
  34711. image: {
  34712. source: "./media/characters/monty/front.svg",
  34713. extra: 1479/1209,
  34714. bottom: 0/1479
  34715. }
  34716. },
  34717. },
  34718. [
  34719. {
  34720. name: "Normal",
  34721. height: math.unit(4 + 11/12, "feet"),
  34722. default: true
  34723. },
  34724. ]
  34725. ))
  34726. characterMakers.push(() => makeCharacter(
  34727. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34728. {
  34729. front: {
  34730. height: math.unit(8 + 4/12, "feet"),
  34731. name: "Front",
  34732. image: {
  34733. source: "./media/characters/sterling/front.svg",
  34734. extra: 1420/1236,
  34735. bottom: 27/1447
  34736. }
  34737. },
  34738. },
  34739. [
  34740. {
  34741. name: "Normal",
  34742. height: math.unit(8 + 4/12, "feet"),
  34743. default: true
  34744. },
  34745. ]
  34746. ))
  34747. characterMakers.push(() => makeCharacter(
  34748. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34749. {
  34750. front: {
  34751. height: math.unit(15, "feet"),
  34752. name: "Front",
  34753. image: {
  34754. source: "./media/characters/marble/front.svg",
  34755. extra: 973/937,
  34756. bottom: 32/1005
  34757. }
  34758. },
  34759. },
  34760. [
  34761. {
  34762. name: "Normal",
  34763. height: math.unit(15, "feet"),
  34764. default: true
  34765. },
  34766. ]
  34767. ))
  34768. characterMakers.push(() => makeCharacter(
  34769. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34770. {
  34771. front: {
  34772. height: math.unit(3, "inches"),
  34773. name: "Front",
  34774. image: {
  34775. source: "./media/characters/powder/front.svg",
  34776. extra: 1504/1334,
  34777. bottom: 518/2022
  34778. }
  34779. },
  34780. },
  34781. [
  34782. {
  34783. name: "Normal",
  34784. height: math.unit(3, "inches"),
  34785. default: true
  34786. },
  34787. ]
  34788. ))
  34789. characterMakers.push(() => makeCharacter(
  34790. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34791. {
  34792. front: {
  34793. height: math.unit(4 + 5/12, "feet"),
  34794. name: "Front",
  34795. image: {
  34796. source: "./media/characters/joey-raccoon/front.svg",
  34797. extra: 1273/1197,
  34798. bottom: 0/1273
  34799. }
  34800. },
  34801. },
  34802. [
  34803. {
  34804. name: "Normal",
  34805. height: math.unit(4 + 5/12, "feet"),
  34806. default: true
  34807. },
  34808. ]
  34809. ))
  34810. characterMakers.push(() => makeCharacter(
  34811. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34812. {
  34813. front: {
  34814. height: math.unit(8 + 4/12, "feet"),
  34815. name: "Front",
  34816. image: {
  34817. source: "./media/characters/vick/front.svg",
  34818. extra: 2187/2118,
  34819. bottom: 47/2234
  34820. }
  34821. },
  34822. },
  34823. [
  34824. {
  34825. name: "Normal",
  34826. height: math.unit(8 + 4/12, "feet"),
  34827. default: true
  34828. },
  34829. ]
  34830. ))
  34831. characterMakers.push(() => makeCharacter(
  34832. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34833. {
  34834. front: {
  34835. height: math.unit(5 + 5/12, "feet"),
  34836. name: "Front",
  34837. image: {
  34838. source: "./media/characters/mitsy/front.svg",
  34839. extra: 1842/1695,
  34840. bottom: 0/1842
  34841. }
  34842. },
  34843. },
  34844. [
  34845. {
  34846. name: "Normal",
  34847. height: math.unit(5 + 5/12, "feet"),
  34848. default: true
  34849. },
  34850. ]
  34851. ))
  34852. characterMakers.push(() => makeCharacter(
  34853. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34854. {
  34855. front: {
  34856. height: math.unit(6 + 3/12, "feet"),
  34857. name: "Front",
  34858. image: {
  34859. source: "./media/characters/silvy/front.svg",
  34860. extra: 1995/1836,
  34861. bottom: 225/2220
  34862. }
  34863. },
  34864. },
  34865. [
  34866. {
  34867. name: "Normal",
  34868. height: math.unit(6 + 3/12, "feet"),
  34869. default: true
  34870. },
  34871. ]
  34872. ))
  34873. characterMakers.push(() => makeCharacter(
  34874. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34875. {
  34876. front: {
  34877. height: math.unit(3 + 8/12, "feet"),
  34878. name: "Front",
  34879. image: {
  34880. source: "./media/characters/rodney/front.svg",
  34881. extra: 1956/1747,
  34882. bottom: 31/1987
  34883. }
  34884. },
  34885. frontDressed: {
  34886. height: math.unit(2.9, "feet"),
  34887. name: "Front (Dressed)",
  34888. image: {
  34889. source: "./media/characters/rodney/front-dressed.svg",
  34890. extra: 1382/1241,
  34891. bottom: 385/1767
  34892. }
  34893. },
  34894. },
  34895. [
  34896. {
  34897. name: "Normal",
  34898. height: math.unit(3 + 8/12, "feet"),
  34899. default: true
  34900. },
  34901. ]
  34902. ))
  34903. characterMakers.push(() => makeCharacter(
  34904. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34905. {
  34906. front: {
  34907. height: math.unit(5 + 9/12, "feet"),
  34908. weight: math.unit(194, "lbs"),
  34909. name: "Front",
  34910. image: {
  34911. source: "./media/characters/zakail-sudekai/front.svg",
  34912. extra: 2696/2533,
  34913. bottom: 248/2944
  34914. }
  34915. },
  34916. maw: {
  34917. height: math.unit(1.35, "feet"),
  34918. name: "Maw",
  34919. image: {
  34920. source: "./media/characters/zakail-sudekai/maw.svg"
  34921. }
  34922. },
  34923. },
  34924. [
  34925. {
  34926. name: "Normal",
  34927. height: math.unit(5 + 9/12, "feet"),
  34928. default: true
  34929. },
  34930. ]
  34931. ))
  34932. characterMakers.push(() => makeCharacter(
  34933. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34934. {
  34935. front: {
  34936. height: math.unit(8 + 4/12, "feet"),
  34937. weight: math.unit(1200, "lb"),
  34938. name: "Front",
  34939. image: {
  34940. source: "./media/characters/eleanor/front.svg",
  34941. extra: 1226/1192,
  34942. bottom: 52/1278
  34943. }
  34944. },
  34945. back: {
  34946. height: math.unit(8 + 4/12, "feet"),
  34947. weight: math.unit(1200, "lb"),
  34948. name: "Back",
  34949. image: {
  34950. source: "./media/characters/eleanor/back.svg",
  34951. extra: 1242/1184,
  34952. bottom: 60/1302
  34953. }
  34954. },
  34955. head: {
  34956. height: math.unit(2.62, "feet"),
  34957. name: "Head",
  34958. image: {
  34959. source: "./media/characters/eleanor/head.svg"
  34960. }
  34961. },
  34962. },
  34963. [
  34964. {
  34965. name: "Normal",
  34966. height: math.unit(8 + 4/12, "feet"),
  34967. default: true
  34968. },
  34969. ]
  34970. ))
  34971. characterMakers.push(() => makeCharacter(
  34972. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  34973. {
  34974. front: {
  34975. height: math.unit(8 + 4/12, "feet"),
  34976. weight: math.unit(750, "lb"),
  34977. name: "Front",
  34978. image: {
  34979. source: "./media/characters/tanya/front.svg",
  34980. extra: 1749/1615,
  34981. bottom: 33/1782
  34982. }
  34983. },
  34984. },
  34985. [
  34986. {
  34987. name: "Normal",
  34988. height: math.unit(8 + 4/12, "feet"),
  34989. default: true
  34990. },
  34991. ]
  34992. ))
  34993. characterMakers.push(() => makeCharacter(
  34994. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  34995. {
  34996. front: {
  34997. height: math.unit(5, "feet"),
  34998. weight: math.unit(225, "lb"),
  34999. name: "Front",
  35000. image: {
  35001. source: "./media/characters/cindy/front.svg",
  35002. extra: 1320/1250,
  35003. bottom: 42/1362
  35004. }
  35005. },
  35006. frontDressed: {
  35007. height: math.unit(5, "feet"),
  35008. weight: math.unit(225, "lb"),
  35009. name: "Front (Dressed)",
  35010. image: {
  35011. source: "./media/characters/cindy/front-dressed.svg",
  35012. extra: 1320/1250,
  35013. bottom: 42/1362
  35014. }
  35015. },
  35016. back: {
  35017. height: math.unit(5, "feet"),
  35018. weight: math.unit(225, "lb"),
  35019. name: "Back",
  35020. image: {
  35021. source: "./media/characters/cindy/back.svg",
  35022. extra: 1384/1346,
  35023. bottom: 14/1398
  35024. }
  35025. },
  35026. },
  35027. [
  35028. {
  35029. name: "Normal",
  35030. height: math.unit(5, "feet"),
  35031. default: true
  35032. },
  35033. ]
  35034. ))
  35035. characterMakers.push(() => makeCharacter(
  35036. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35037. {
  35038. front: {
  35039. height: math.unit(6 + 9/12, "feet"),
  35040. weight: math.unit(440, "lb"),
  35041. name: "Front",
  35042. image: {
  35043. source: "./media/characters/wilbur-owen/front.svg",
  35044. extra: 1575/1448,
  35045. bottom: 72/1647
  35046. }
  35047. },
  35048. back: {
  35049. height: math.unit(6 + 9/12, "feet"),
  35050. weight: math.unit(440, "lb"),
  35051. name: "Back",
  35052. image: {
  35053. source: "./media/characters/wilbur-owen/back.svg",
  35054. extra: 1578/1445,
  35055. bottom: 36/1614
  35056. }
  35057. },
  35058. },
  35059. [
  35060. {
  35061. name: "Normal",
  35062. height: math.unit(6 + 9/12, "feet"),
  35063. default: true
  35064. },
  35065. ]
  35066. ))
  35067. characterMakers.push(() => makeCharacter(
  35068. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35069. {
  35070. front: {
  35071. height: math.unit(6 + 5/12, "feet"),
  35072. weight: math.unit(650, "lb"),
  35073. name: "Front",
  35074. image: {
  35075. source: "./media/characters/keegan/front.svg",
  35076. extra: 2387/2198,
  35077. bottom: 33/2420
  35078. }
  35079. },
  35080. side: {
  35081. height: math.unit(6 + 5/12, "feet"),
  35082. weight: math.unit(650, "lb"),
  35083. name: "Side",
  35084. image: {
  35085. source: "./media/characters/keegan/side.svg",
  35086. extra: 2390/2202,
  35087. bottom: 47/2437
  35088. }
  35089. },
  35090. back: {
  35091. height: math.unit(6 + 5/12, "feet"),
  35092. weight: math.unit(650, "lb"),
  35093. name: "Back",
  35094. image: {
  35095. source: "./media/characters/keegan/back.svg",
  35096. extra: 2418/2268,
  35097. bottom: 15/2433
  35098. }
  35099. },
  35100. frontSfw: {
  35101. height: math.unit(6 + 5/12, "feet"),
  35102. weight: math.unit(650, "lb"),
  35103. name: "Front (SFW)",
  35104. image: {
  35105. source: "./media/characters/keegan/front-sfw.svg",
  35106. extra: 2387/2198,
  35107. bottom: 33/2420
  35108. }
  35109. },
  35110. beans: {
  35111. height: math.unit(1.85, "feet"),
  35112. name: "Beans",
  35113. image: {
  35114. source: "./media/characters/keegan/beans.svg"
  35115. }
  35116. },
  35117. },
  35118. [
  35119. {
  35120. name: "Normal",
  35121. height: math.unit(6 + 5/12, "feet"),
  35122. default: true
  35123. },
  35124. ]
  35125. ))
  35126. characterMakers.push(() => makeCharacter(
  35127. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35128. {
  35129. front: {
  35130. height: math.unit(9, "feet"),
  35131. name: "Front",
  35132. image: {
  35133. source: "./media/characters/colton/front.svg",
  35134. extra: 1589/1326,
  35135. bottom: 139/1728
  35136. }
  35137. },
  35138. },
  35139. [
  35140. {
  35141. name: "Normal",
  35142. height: math.unit(9, "feet"),
  35143. default: true
  35144. },
  35145. ]
  35146. ))
  35147. characterMakers.push(() => makeCharacter(
  35148. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35149. {
  35150. front: {
  35151. height: math.unit(2 + 9/12, "feet"),
  35152. name: "Front",
  35153. image: {
  35154. source: "./media/characters/bora/front.svg",
  35155. extra: 1265/1250,
  35156. bottom: 24/1289
  35157. }
  35158. },
  35159. },
  35160. [
  35161. {
  35162. name: "Normal",
  35163. height: math.unit(2 + 9/12, "feet"),
  35164. default: true
  35165. },
  35166. ]
  35167. ))
  35168. characterMakers.push(() => makeCharacter(
  35169. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35170. {
  35171. front: {
  35172. height: math.unit(8, "feet"),
  35173. name: "Front",
  35174. image: {
  35175. source: "./media/characters/myu-myu/front.svg",
  35176. extra: 1949/1857,
  35177. bottom: 90/2039
  35178. }
  35179. },
  35180. },
  35181. [
  35182. {
  35183. name: "Normal",
  35184. height: math.unit(8, "feet"),
  35185. default: true
  35186. },
  35187. {
  35188. name: "Big",
  35189. height: math.unit(15, "feet")
  35190. },
  35191. {
  35192. name: "BIG",
  35193. height: math.unit(25, "feet")
  35194. },
  35195. ]
  35196. ))
  35197. characterMakers.push(() => makeCharacter(
  35198. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35199. {
  35200. side: {
  35201. height: math.unit(7 + 5/12, "feet"),
  35202. weight: math.unit(2800, "lb"),
  35203. name: "Side",
  35204. image: {
  35205. source: "./media/characters/haloren/side.svg",
  35206. extra: 1793/409,
  35207. bottom: 59/1852
  35208. }
  35209. },
  35210. frontPaw: {
  35211. height: math.unit(2.36, "feet"),
  35212. name: "Front paw",
  35213. image: {
  35214. source: "./media/characters/haloren/front-paw.svg"
  35215. }
  35216. },
  35217. hindPaw: {
  35218. height: math.unit(3.18, "feet"),
  35219. name: "Hind paw",
  35220. image: {
  35221. source: "./media/characters/haloren/hind-paw.svg"
  35222. }
  35223. },
  35224. maw: {
  35225. height: math.unit(5.05, "feet"),
  35226. name: "Maw",
  35227. image: {
  35228. source: "./media/characters/haloren/maw.svg"
  35229. }
  35230. },
  35231. dick: {
  35232. height: math.unit(2.90, "feet"),
  35233. name: "Dick",
  35234. image: {
  35235. source: "./media/characters/haloren/dick.svg"
  35236. }
  35237. },
  35238. },
  35239. [
  35240. {
  35241. name: "Normal",
  35242. height: math.unit(7 + 5/12, "feet"),
  35243. default: true
  35244. },
  35245. {
  35246. name: "Enhanced",
  35247. height: math.unit(14 + 3/12, "feet")
  35248. },
  35249. ]
  35250. ))
  35251. characterMakers.push(() => makeCharacter(
  35252. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35253. {
  35254. front: {
  35255. height: math.unit(171, "cm"),
  35256. name: "Front",
  35257. image: {
  35258. source: "./media/characters/kimmy/front.svg",
  35259. extra: 1491/1435,
  35260. bottom: 53/1544
  35261. }
  35262. },
  35263. },
  35264. [
  35265. {
  35266. name: "Small",
  35267. height: math.unit(9, "cm")
  35268. },
  35269. {
  35270. name: "Normal",
  35271. height: math.unit(171, "cm"),
  35272. default: true
  35273. },
  35274. ]
  35275. ))
  35276. characterMakers.push(() => makeCharacter(
  35277. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35278. {
  35279. front: {
  35280. height: math.unit(8, "feet"),
  35281. weight: math.unit(300, "lb"),
  35282. name: "Front",
  35283. image: {
  35284. source: "./media/characters/galeboomer/front.svg",
  35285. extra: 4651/4415,
  35286. bottom: 162/4813
  35287. }
  35288. },
  35289. back: {
  35290. height: math.unit(8, "feet"),
  35291. weight: math.unit(300, "lb"),
  35292. name: "Back",
  35293. image: {
  35294. source: "./media/characters/galeboomer/back.svg",
  35295. extra: 4544/4314,
  35296. bottom: 16/4560
  35297. }
  35298. },
  35299. frontAlt: {
  35300. height: math.unit(8, "feet"),
  35301. weight: math.unit(300, "lb"),
  35302. name: "Front (Alt)",
  35303. image: {
  35304. source: "./media/characters/galeboomer/front-alt.svg",
  35305. extra: 4458/4228,
  35306. bottom: 68/4526
  35307. }
  35308. },
  35309. maw: {
  35310. height: math.unit(1.2, "feet"),
  35311. name: "Maw",
  35312. image: {
  35313. source: "./media/characters/galeboomer/maw.svg"
  35314. }
  35315. },
  35316. },
  35317. [
  35318. {
  35319. name: "Normal",
  35320. height: math.unit(8, "feet"),
  35321. default: true
  35322. },
  35323. ]
  35324. ))
  35325. characterMakers.push(() => makeCharacter(
  35326. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35327. {
  35328. front: {
  35329. height: math.unit(5 + 9/12, "feet"),
  35330. weight: math.unit(120, "lb"),
  35331. name: "Front",
  35332. image: {
  35333. source: "./media/characters/chyr/front.svg",
  35334. extra: 1323/1254,
  35335. bottom: 63/1386
  35336. }
  35337. },
  35338. back: {
  35339. height: math.unit(5 + 9/12, "feet"),
  35340. weight: math.unit(120, "lb"),
  35341. name: "Back",
  35342. image: {
  35343. source: "./media/characters/chyr/back.svg",
  35344. extra: 1323/1252,
  35345. bottom: 48/1371
  35346. }
  35347. },
  35348. },
  35349. [
  35350. {
  35351. name: "Normal",
  35352. height: math.unit(5 + 9/12, "feet"),
  35353. default: true
  35354. },
  35355. ]
  35356. ))
  35357. characterMakers.push(() => makeCharacter(
  35358. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35359. {
  35360. front: {
  35361. height: math.unit(7, "feet"),
  35362. weight: math.unit(310, "lb"),
  35363. name: "Front",
  35364. image: {
  35365. source: "./media/characters/solarus/front.svg",
  35366. extra: 2415/2021,
  35367. bottom: 103/2518
  35368. }
  35369. },
  35370. back: {
  35371. height: math.unit(7, "feet"),
  35372. weight: math.unit(310, "lb"),
  35373. name: "Back",
  35374. image: {
  35375. source: "./media/characters/solarus/back.svg",
  35376. extra: 2463/2089,
  35377. bottom: 79/2542
  35378. }
  35379. },
  35380. },
  35381. [
  35382. {
  35383. name: "Normal",
  35384. height: math.unit(7, "feet"),
  35385. default: true
  35386. },
  35387. ]
  35388. ))
  35389. characterMakers.push(() => makeCharacter(
  35390. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35391. {
  35392. front: {
  35393. height: math.unit(16, "feet"),
  35394. name: "Front",
  35395. image: {
  35396. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35397. extra: 1844/1780,
  35398. bottom: 58/1902
  35399. }
  35400. },
  35401. },
  35402. [
  35403. {
  35404. name: "Normal",
  35405. height: math.unit(16, "feet"),
  35406. default: true
  35407. },
  35408. ]
  35409. ))
  35410. //characters
  35411. function makeCharacters() {
  35412. const results = [];
  35413. characterMakers.forEach(character => {
  35414. results.push(character());
  35415. });
  35416. return results;
  35417. }