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

34822 строки
875 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. }
  1524. //species
  1525. function getSpeciesInfo(speciesList) {
  1526. let result = new Set();
  1527. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1528. result.add(entry)
  1529. });
  1530. return Array.from(result);
  1531. };
  1532. function getSpeciesInfoHelper(species) {
  1533. if (!speciesData[species]) {
  1534. console.warn(species + " doesn't exist");
  1535. return [];
  1536. }
  1537. if (speciesData[species].parents) {
  1538. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1539. } else {
  1540. return [species];
  1541. }
  1542. }
  1543. characterMakers.push(() => makeCharacter(
  1544. {
  1545. name: "Fen",
  1546. species: ["crux"],
  1547. description: {
  1548. title: "Bio",
  1549. text: "Very furry. Sheds on everything."
  1550. },
  1551. tags: [
  1552. "anthro",
  1553. "goo"
  1554. ]
  1555. },
  1556. {
  1557. back: {
  1558. height: math.unit(2.2428, "meter"),
  1559. weight: math.unit(124.738, "kg"),
  1560. name: "Back",
  1561. image: {
  1562. source: "./media/characters/fen/back.svg",
  1563. extra: 2024 / 1867,
  1564. bottom: 13 / 2037
  1565. },
  1566. info: {
  1567. description: {
  1568. mode: "append",
  1569. text: "\n\nHe is not currently looking at you."
  1570. }
  1571. }
  1572. },
  1573. full: {
  1574. height: math.unit(1.34, "meter"),
  1575. weight: math.unit(225, "kg"),
  1576. name: "Full",
  1577. image: {
  1578. source: "./media/characters/fen/full.svg"
  1579. },
  1580. info: {
  1581. description: {
  1582. mode: "append",
  1583. text: "\n\nMunch."
  1584. }
  1585. }
  1586. },
  1587. kneeling: {
  1588. height: math.unit(5.4, "feet"),
  1589. weight: math.unit(124.738, "kg"),
  1590. name: "Kneeling",
  1591. image: {
  1592. source: "./media/characters/fen/kneeling.svg",
  1593. extra: 563 / 507
  1594. }
  1595. },
  1596. goo: {
  1597. height: math.unit(2.8, "feet"),
  1598. weight: math.unit(125, "kg"),
  1599. capacity: math.unit(1, "people"),
  1600. name: "Goo",
  1601. image: {
  1602. source: "./media/characters/fen/goo.svg",
  1603. bottom: 116 / 613
  1604. }
  1605. },
  1606. lounging: {
  1607. height: math.unit(6.5, "feet"),
  1608. weight: math.unit(125, "kg"),
  1609. name: "Lounging",
  1610. image: {
  1611. source: "./media/characters/fen/lounging.svg"
  1612. }
  1613. },
  1614. },
  1615. [
  1616. {
  1617. name: "Normal",
  1618. height: math.unit(2.2428, "meter")
  1619. },
  1620. {
  1621. name: "Big",
  1622. height: math.unit(12, "feet")
  1623. },
  1624. {
  1625. name: "Minimacro",
  1626. height: math.unit(40, "feet"),
  1627. default: true,
  1628. info: {
  1629. description: {
  1630. mode: "append",
  1631. text: "\n\nTOO DAMN BIG"
  1632. }
  1633. }
  1634. },
  1635. {
  1636. name: "Macro",
  1637. height: math.unit(100, "feet"),
  1638. info: {
  1639. description: {
  1640. mode: "append",
  1641. text: "\n\nTOO DAMN BIG"
  1642. }
  1643. }
  1644. },
  1645. {
  1646. name: "Macro+",
  1647. height: math.unit(300, "feet")
  1648. },
  1649. {
  1650. name: "Megamacro",
  1651. height: math.unit(2, "miles")
  1652. }
  1653. ]
  1654. ))
  1655. characterMakers.push(() => makeCharacter(
  1656. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1657. {
  1658. front: {
  1659. height: math.unit(183, "cm"),
  1660. weight: math.unit(80, "kg"),
  1661. name: "Front",
  1662. image: {
  1663. source: "./media/characters/sofia-fluttertail/front.svg",
  1664. bottom: 0.01,
  1665. extra: 2154 / 2081
  1666. }
  1667. },
  1668. frontAlt: {
  1669. height: math.unit(183, "cm"),
  1670. weight: math.unit(80, "kg"),
  1671. name: "Front (alt)",
  1672. image: {
  1673. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1674. }
  1675. },
  1676. back: {
  1677. height: math.unit(183, "cm"),
  1678. weight: math.unit(80, "kg"),
  1679. name: "Back",
  1680. image: {
  1681. source: "./media/characters/sofia-fluttertail/back.svg"
  1682. }
  1683. },
  1684. kneeling: {
  1685. height: math.unit(125, "cm"),
  1686. weight: math.unit(80, "kg"),
  1687. name: "Kneeling",
  1688. image: {
  1689. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1690. extra: 1033 / 977,
  1691. bottom: 23.7 / 1057
  1692. }
  1693. },
  1694. maw: {
  1695. height: math.unit(183 / 5, "cm"),
  1696. name: "Maw",
  1697. image: {
  1698. source: "./media/characters/sofia-fluttertail/maw.svg"
  1699. }
  1700. },
  1701. mawcloseup: {
  1702. height: math.unit(183 / 5 * 0.41, "cm"),
  1703. name: "Maw (Closeup)",
  1704. image: {
  1705. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1706. }
  1707. },
  1708. paws: {
  1709. height: math.unit(1.17, "feet"),
  1710. name: "Paws",
  1711. image: {
  1712. source: "./media/characters/sofia-fluttertail/paws.svg",
  1713. extra: 851 / 851,
  1714. bottom: 17 / 868
  1715. }
  1716. },
  1717. },
  1718. [
  1719. {
  1720. name: "Normal",
  1721. height: math.unit(1.83, "meter")
  1722. },
  1723. {
  1724. name: "Size Thief",
  1725. height: math.unit(18, "feet")
  1726. },
  1727. {
  1728. name: "50 Foot Collie",
  1729. height: math.unit(50, "feet")
  1730. },
  1731. {
  1732. name: "Macro",
  1733. height: math.unit(96, "feet"),
  1734. default: true
  1735. },
  1736. {
  1737. name: "Megamerger",
  1738. height: math.unit(650, "feet")
  1739. },
  1740. ]
  1741. ))
  1742. characterMakers.push(() => makeCharacter(
  1743. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1744. {
  1745. front: {
  1746. height: math.unit(7, "feet"),
  1747. weight: math.unit(100, "kg"),
  1748. name: "Front",
  1749. image: {
  1750. source: "./media/characters/march/front.svg",
  1751. extra: 1,
  1752. bottom: 0.015
  1753. }
  1754. },
  1755. foot: {
  1756. height: math.unit(0.9, "feet"),
  1757. name: "Foot",
  1758. image: {
  1759. source: "./media/characters/march/foot.svg"
  1760. }
  1761. },
  1762. },
  1763. [
  1764. {
  1765. name: "Normal",
  1766. height: math.unit(7.9, "feet")
  1767. },
  1768. {
  1769. name: "Macro",
  1770. height: math.unit(220, "meters")
  1771. },
  1772. {
  1773. name: "Megamacro",
  1774. height: math.unit(2.98, "km"),
  1775. default: true
  1776. },
  1777. {
  1778. name: "Gigamacro",
  1779. height: math.unit(15963, "km")
  1780. },
  1781. {
  1782. name: "Teramacro",
  1783. height: math.unit(2980000000, "km")
  1784. },
  1785. {
  1786. name: "Examacro",
  1787. height: math.unit(250, "parsecs")
  1788. },
  1789. ]
  1790. ))
  1791. characterMakers.push(() => makeCharacter(
  1792. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1793. {
  1794. front: {
  1795. height: math.unit(6, "feet"),
  1796. weight: math.unit(60, "kg"),
  1797. name: "Front",
  1798. image: {
  1799. source: "./media/characters/noir/front.svg",
  1800. extra: 1,
  1801. bottom: 0.032
  1802. }
  1803. },
  1804. },
  1805. [
  1806. {
  1807. name: "Normal",
  1808. height: math.unit(6.6, "feet")
  1809. },
  1810. {
  1811. name: "Macro",
  1812. height: math.unit(500, "feet")
  1813. },
  1814. {
  1815. name: "Megamacro",
  1816. height: math.unit(2.5, "km"),
  1817. default: true
  1818. },
  1819. {
  1820. name: "Gigamacro",
  1821. height: math.unit(22500, "km")
  1822. },
  1823. {
  1824. name: "Teramacro",
  1825. height: math.unit(2500000000, "km")
  1826. },
  1827. {
  1828. name: "Examacro",
  1829. height: math.unit(200, "parsecs")
  1830. },
  1831. ]
  1832. ))
  1833. characterMakers.push(() => makeCharacter(
  1834. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1835. {
  1836. front: {
  1837. height: math.unit(7, "feet"),
  1838. weight: math.unit(100, "kg"),
  1839. name: "Front",
  1840. image: {
  1841. source: "./media/characters/okuri/front.svg",
  1842. extra: 1,
  1843. bottom: 0.037
  1844. }
  1845. },
  1846. back: {
  1847. height: math.unit(7, "feet"),
  1848. weight: math.unit(100, "kg"),
  1849. name: "Back",
  1850. image: {
  1851. source: "./media/characters/okuri/back.svg",
  1852. extra: 1,
  1853. bottom: 0.007
  1854. }
  1855. },
  1856. },
  1857. [
  1858. {
  1859. name: "Megamacro",
  1860. height: math.unit(100, "miles"),
  1861. default: true
  1862. },
  1863. ]
  1864. ))
  1865. characterMakers.push(() => makeCharacter(
  1866. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1867. {
  1868. front: {
  1869. height: math.unit(7, "feet"),
  1870. weight: math.unit(100, "kg"),
  1871. name: "Front",
  1872. image: {
  1873. source: "./media/characters/manny/front.svg",
  1874. extra: 1,
  1875. bottom: 0.06
  1876. }
  1877. },
  1878. back: {
  1879. height: math.unit(7, "feet"),
  1880. weight: math.unit(100, "kg"),
  1881. name: "Back",
  1882. image: {
  1883. source: "./media/characters/manny/back.svg",
  1884. extra: 1,
  1885. bottom: 0.014
  1886. }
  1887. },
  1888. },
  1889. [
  1890. {
  1891. name: "Normal",
  1892. height: math.unit(7, "feet"),
  1893. },
  1894. {
  1895. name: "Macro",
  1896. height: math.unit(78, "feet"),
  1897. default: true
  1898. },
  1899. {
  1900. name: "Macro+",
  1901. height: math.unit(300, "meters")
  1902. },
  1903. {
  1904. name: "Macro++",
  1905. height: math.unit(2400, "meters")
  1906. },
  1907. {
  1908. name: "Megamacro",
  1909. height: math.unit(5167, "meters")
  1910. },
  1911. {
  1912. name: "Gigamacro",
  1913. height: math.unit(41769, "miles")
  1914. },
  1915. ]
  1916. ))
  1917. characterMakers.push(() => makeCharacter(
  1918. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1919. {
  1920. front: {
  1921. height: math.unit(7, "feet"),
  1922. weight: math.unit(100, "kg"),
  1923. name: "Front",
  1924. image: {
  1925. source: "./media/characters/adake/front-1.svg"
  1926. }
  1927. },
  1928. frontAlt: {
  1929. height: math.unit(7, "feet"),
  1930. weight: math.unit(100, "kg"),
  1931. name: "Front (Alt)",
  1932. image: {
  1933. source: "./media/characters/adake/front-2.svg",
  1934. extra: 1,
  1935. bottom: 0.01
  1936. }
  1937. },
  1938. back: {
  1939. height: math.unit(7, "feet"),
  1940. weight: math.unit(100, "kg"),
  1941. name: "Back",
  1942. image: {
  1943. source: "./media/characters/adake/back.svg",
  1944. }
  1945. },
  1946. kneel: {
  1947. height: math.unit(5.385, "feet"),
  1948. weight: math.unit(100, "kg"),
  1949. name: "Kneeling",
  1950. image: {
  1951. source: "./media/characters/adake/kneel.svg",
  1952. bottom: 0.052
  1953. }
  1954. },
  1955. },
  1956. [
  1957. {
  1958. name: "Normal",
  1959. height: math.unit(7, "feet"),
  1960. },
  1961. {
  1962. name: "Macro",
  1963. height: math.unit(78, "feet"),
  1964. default: true
  1965. },
  1966. {
  1967. name: "Macro+",
  1968. height: math.unit(300, "meters")
  1969. },
  1970. {
  1971. name: "Macro++",
  1972. height: math.unit(2400, "meters")
  1973. },
  1974. {
  1975. name: "Megamacro",
  1976. height: math.unit(5167, "meters")
  1977. },
  1978. {
  1979. name: "Gigamacro",
  1980. height: math.unit(41769, "miles")
  1981. },
  1982. ]
  1983. ))
  1984. characterMakers.push(() => makeCharacter(
  1985. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1986. {
  1987. front: {
  1988. height: math.unit(1.65, "meters"),
  1989. weight: math.unit(50, "kg"),
  1990. name: "Front",
  1991. image: {
  1992. source: "./media/characters/elijah/front.svg",
  1993. extra: 858 / 830,
  1994. bottom: 95.5 / 953.8559
  1995. }
  1996. },
  1997. back: {
  1998. height: math.unit(1.65, "meters"),
  1999. weight: math.unit(50, "kg"),
  2000. name: "Back",
  2001. image: {
  2002. source: "./media/characters/elijah/back.svg",
  2003. extra: 895 / 850,
  2004. bottom: 5.3 / 897.956
  2005. }
  2006. },
  2007. frontNsfw: {
  2008. height: math.unit(1.65, "meters"),
  2009. weight: math.unit(50, "kg"),
  2010. name: "Front (NSFW)",
  2011. image: {
  2012. source: "./media/characters/elijah/front-nsfw.svg",
  2013. extra: 858 / 830,
  2014. bottom: 95.5 / 953.8559
  2015. }
  2016. },
  2017. backNsfw: {
  2018. height: math.unit(1.65, "meters"),
  2019. weight: math.unit(50, "kg"),
  2020. name: "Back (NSFW)",
  2021. image: {
  2022. source: "./media/characters/elijah/back-nsfw.svg",
  2023. extra: 895 / 850,
  2024. bottom: 5.3 / 897.956
  2025. }
  2026. },
  2027. dick: {
  2028. height: math.unit(1, "feet"),
  2029. name: "Dick",
  2030. image: {
  2031. source: "./media/characters/elijah/dick.svg"
  2032. }
  2033. },
  2034. beakOpen: {
  2035. height: math.unit(1.25, "feet"),
  2036. name: "Beak (Open)",
  2037. image: {
  2038. source: "./media/characters/elijah/beak-open.svg"
  2039. }
  2040. },
  2041. beakShut: {
  2042. height: math.unit(1.25, "feet"),
  2043. name: "Beak (Shut)",
  2044. image: {
  2045. source: "./media/characters/elijah/beak-shut.svg"
  2046. }
  2047. },
  2048. footFlexing: {
  2049. height: math.unit(1.61, "feet"),
  2050. name: "Foot (Flexing)",
  2051. image: {
  2052. source: "./media/characters/elijah/foot-flexing.svg"
  2053. }
  2054. },
  2055. footStepping: {
  2056. height: math.unit(1.44, "feet"),
  2057. name: "Foot (Stepping)",
  2058. image: {
  2059. source: "./media/characters/elijah/foot-stepping.svg"
  2060. }
  2061. },
  2062. plantigradeLeg: {
  2063. height: math.unit(2.34, "feet"),
  2064. name: "Plantigrade Leg",
  2065. image: {
  2066. source: "./media/characters/elijah/plantigrade-leg.svg"
  2067. }
  2068. },
  2069. plantigradeFootLeft: {
  2070. height: math.unit(0.9, "feet"),
  2071. name: "Plantigrade Foot (Left)",
  2072. image: {
  2073. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2074. }
  2075. },
  2076. plantigradeFootRight: {
  2077. height: math.unit(0.9, "feet"),
  2078. name: "Plantigrade Foot (Right)",
  2079. image: {
  2080. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2081. }
  2082. },
  2083. },
  2084. [
  2085. {
  2086. name: "Normal",
  2087. height: math.unit(1.65, "meters")
  2088. },
  2089. {
  2090. name: "Macro",
  2091. height: math.unit(55, "meters"),
  2092. default: true
  2093. },
  2094. {
  2095. name: "Macro+",
  2096. height: math.unit(105, "meters")
  2097. },
  2098. ]
  2099. ))
  2100. characterMakers.push(() => makeCharacter(
  2101. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2102. {
  2103. front: {
  2104. height: math.unit(11, "feet"),
  2105. weight: math.unit(80, "kg"),
  2106. name: "Front",
  2107. image: {
  2108. source: "./media/characters/rai/front.svg",
  2109. extra: 1,
  2110. bottom: 0.03
  2111. }
  2112. },
  2113. side: {
  2114. height: math.unit(11, "feet"),
  2115. weight: math.unit(80, "kg"),
  2116. name: "Side",
  2117. image: {
  2118. source: "./media/characters/rai/side.svg"
  2119. }
  2120. },
  2121. back: {
  2122. height: math.unit(11, "feet"),
  2123. weight: math.unit(80, "lb"),
  2124. name: "Back",
  2125. image: {
  2126. source: "./media/characters/rai/back.svg",
  2127. extra: 1,
  2128. bottom: 0.01
  2129. }
  2130. },
  2131. feral: {
  2132. height: math.unit(11, "feet"),
  2133. weight: math.unit(800, "lb"),
  2134. name: "Feral",
  2135. image: {
  2136. source: "./media/characters/rai/feral.svg",
  2137. extra: 1050 / 659,
  2138. bottom: 0.07
  2139. }
  2140. },
  2141. dragon: {
  2142. height: math.unit(23, "feet"),
  2143. weight: math.unit(50000, "lb"),
  2144. name: "Dragon",
  2145. image: {
  2146. source: "./media/characters/rai/dragon.svg",
  2147. extra: 2498 / 2030,
  2148. bottom: 85.2 / 2584
  2149. }
  2150. },
  2151. maw: {
  2152. height: math.unit(6 / 3.81416, "feet"),
  2153. name: "Maw",
  2154. image: {
  2155. source: "./media/characters/rai/maw.svg"
  2156. }
  2157. },
  2158. },
  2159. [
  2160. {
  2161. name: "Normal",
  2162. height: math.unit(11, "feet")
  2163. },
  2164. {
  2165. name: "Macro",
  2166. height: math.unit(302, "feet"),
  2167. default: true
  2168. },
  2169. ]
  2170. ))
  2171. characterMakers.push(() => makeCharacter(
  2172. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2173. {
  2174. frontDressed: {
  2175. height: math.unit(216, "feet"),
  2176. weight: math.unit(7000000, "lb"),
  2177. name: "Front (Dressed)",
  2178. image: {
  2179. source: "./media/characters/jazzy/front-dressed.svg",
  2180. extra: 2738 / 2651,
  2181. bottom: 41.8 / 2786
  2182. }
  2183. },
  2184. backDressed: {
  2185. height: math.unit(216, "feet"),
  2186. weight: math.unit(7000000, "lb"),
  2187. name: "Back (Dressed)",
  2188. image: {
  2189. source: "./media/characters/jazzy/back-dressed.svg",
  2190. extra: 2775 / 2673,
  2191. bottom: 36.8 / 2817
  2192. }
  2193. },
  2194. front: {
  2195. height: math.unit(216, "feet"),
  2196. weight: math.unit(7000000, "lb"),
  2197. name: "Front",
  2198. image: {
  2199. source: "./media/characters/jazzy/front.svg",
  2200. extra: 2738 / 2651,
  2201. bottom: 41.8 / 2786
  2202. }
  2203. },
  2204. back: {
  2205. height: math.unit(216, "feet"),
  2206. weight: math.unit(7000000, "lb"),
  2207. name: "Back",
  2208. image: {
  2209. source: "./media/characters/jazzy/back.svg",
  2210. extra: 2775 / 2673,
  2211. bottom: 36.8 / 2817
  2212. }
  2213. },
  2214. maw: {
  2215. height: math.unit(20, "feet"),
  2216. name: "Maw",
  2217. image: {
  2218. source: "./media/characters/jazzy/maw.svg"
  2219. }
  2220. },
  2221. paws: {
  2222. height: math.unit(27.5, "feet"),
  2223. name: "Paws",
  2224. image: {
  2225. source: "./media/characters/jazzy/paws.svg"
  2226. }
  2227. },
  2228. eye: {
  2229. height: math.unit(4.4, "feet"),
  2230. name: "Eye",
  2231. image: {
  2232. source: "./media/characters/jazzy/eye.svg"
  2233. }
  2234. },
  2235. droneOffense: {
  2236. height: math.unit(9.5, "inches"),
  2237. name: "Drone (Offense)",
  2238. image: {
  2239. source: "./media/characters/jazzy/drone-offense.svg"
  2240. }
  2241. },
  2242. droneRecon: {
  2243. height: math.unit(9.5, "inches"),
  2244. name: "Drone (Recon)",
  2245. image: {
  2246. source: "./media/characters/jazzy/drone-recon.svg"
  2247. }
  2248. },
  2249. droneDefense: {
  2250. height: math.unit(9.5, "inches"),
  2251. name: "Drone (Defense)",
  2252. image: {
  2253. source: "./media/characters/jazzy/drone-defense.svg"
  2254. }
  2255. },
  2256. },
  2257. [
  2258. {
  2259. name: "Macro",
  2260. height: math.unit(216, "feet"),
  2261. default: true
  2262. },
  2263. ]
  2264. ))
  2265. characterMakers.push(() => makeCharacter(
  2266. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2267. {
  2268. front: {
  2269. height: math.unit(7, "feet"),
  2270. weight: math.unit(80, "kg"),
  2271. name: "Front",
  2272. image: {
  2273. source: "./media/characters/flamm/front.svg",
  2274. extra: 1794 / 1677,
  2275. bottom: 31.7 / 1828.5
  2276. }
  2277. },
  2278. },
  2279. [
  2280. {
  2281. name: "Normal",
  2282. height: math.unit(9.5, "feet")
  2283. },
  2284. {
  2285. name: "Macro",
  2286. height: math.unit(200, "feet"),
  2287. default: true
  2288. },
  2289. ]
  2290. ))
  2291. characterMakers.push(() => makeCharacter(
  2292. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2293. {
  2294. front: {
  2295. height: math.unit(5 + 3/12, "feet"),
  2296. weight: math.unit(60, "kg"),
  2297. name: "Front",
  2298. image: {
  2299. source: "./media/characters/zephiro/front.svg",
  2300. extra: 2309 / 2162,
  2301. bottom: 0.069
  2302. }
  2303. },
  2304. side: {
  2305. height: math.unit(5 + 3/12, "feet"),
  2306. weight: math.unit(60, "kg"),
  2307. name: "Side",
  2308. image: {
  2309. source: "./media/characters/zephiro/side.svg",
  2310. extra: 2403 / 2279,
  2311. bottom: 0.015
  2312. }
  2313. },
  2314. back: {
  2315. height: math.unit(5 + 3/12, "feet"),
  2316. weight: math.unit(60, "kg"),
  2317. name: "Back",
  2318. image: {
  2319. source: "./media/characters/zephiro/back.svg",
  2320. extra: 2373 / 2244,
  2321. bottom: 0.013
  2322. }
  2323. },
  2324. hand: {
  2325. height: math.unit(0.68, "feet"),
  2326. name: "Hand",
  2327. image: {
  2328. source: "./media/characters/zephiro/hand.svg"
  2329. }
  2330. },
  2331. paw: {
  2332. height: math.unit(1, "feet"),
  2333. name: "Paw",
  2334. image: {
  2335. source: "./media/characters/zephiro/paw.svg"
  2336. }
  2337. },
  2338. beans: {
  2339. height: math.unit(0.93, "feet"),
  2340. name: "Beans",
  2341. image: {
  2342. source: "./media/characters/zephiro/beans.svg"
  2343. }
  2344. },
  2345. },
  2346. [
  2347. {
  2348. name: "Micro",
  2349. height: math.unit(3, "inches")
  2350. },
  2351. {
  2352. name: "Normal",
  2353. height: math.unit(5 + 3 / 12, "feet"),
  2354. default: true
  2355. },
  2356. {
  2357. name: "Macro",
  2358. height: math.unit(118, "feet")
  2359. },
  2360. ]
  2361. ))
  2362. characterMakers.push(() => makeCharacter(
  2363. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2364. {
  2365. front: {
  2366. height: math.unit(5, "feet"),
  2367. weight: math.unit(90, "kg"),
  2368. name: "Front",
  2369. image: {
  2370. source: "./media/characters/fory/front.svg",
  2371. extra: 2862 / 2674,
  2372. bottom: 180 / 3043.8
  2373. }
  2374. },
  2375. back: {
  2376. height: math.unit(5, "feet"),
  2377. weight: math.unit(90, "kg"),
  2378. name: "Back",
  2379. image: {
  2380. source: "./media/characters/fory/back.svg",
  2381. extra: 2962 / 2791,
  2382. bottom: 106 / 3071.8
  2383. }
  2384. },
  2385. foot: {
  2386. height: math.unit(2.14, "feet"),
  2387. name: "Foot",
  2388. image: {
  2389. source: "./media/characters/fory/foot.svg"
  2390. }
  2391. },
  2392. },
  2393. [
  2394. {
  2395. name: "Normal",
  2396. height: math.unit(5, "feet")
  2397. },
  2398. {
  2399. name: "Macro",
  2400. height: math.unit(50, "feet"),
  2401. default: true
  2402. },
  2403. {
  2404. name: "Megamacro",
  2405. height: math.unit(10, "miles")
  2406. },
  2407. {
  2408. name: "Gigamacro",
  2409. height: math.unit(5, "earths")
  2410. },
  2411. ]
  2412. ))
  2413. characterMakers.push(() => makeCharacter(
  2414. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2415. {
  2416. front: {
  2417. height: math.unit(7, "feet"),
  2418. weight: math.unit(90, "kg"),
  2419. name: "Front",
  2420. image: {
  2421. source: "./media/characters/kurrikage/front.svg",
  2422. extra: 1,
  2423. bottom: 0.035
  2424. }
  2425. },
  2426. back: {
  2427. height: math.unit(7, "feet"),
  2428. weight: math.unit(90, "lb"),
  2429. name: "Back",
  2430. image: {
  2431. source: "./media/characters/kurrikage/back.svg"
  2432. }
  2433. },
  2434. paw: {
  2435. height: math.unit(1.5, "feet"),
  2436. name: "Paw",
  2437. image: {
  2438. source: "./media/characters/kurrikage/paw.svg"
  2439. }
  2440. },
  2441. staff: {
  2442. height: math.unit(6.7, "feet"),
  2443. name: "Staff",
  2444. image: {
  2445. source: "./media/characters/kurrikage/staff.svg"
  2446. }
  2447. },
  2448. peek: {
  2449. height: math.unit(1.05, "feet"),
  2450. name: "Peeking",
  2451. image: {
  2452. source: "./media/characters/kurrikage/peek.svg",
  2453. bottom: 0.08
  2454. }
  2455. },
  2456. },
  2457. [
  2458. {
  2459. name: "Normal",
  2460. height: math.unit(12, "feet"),
  2461. default: true
  2462. },
  2463. {
  2464. name: "Big",
  2465. height: math.unit(20, "feet")
  2466. },
  2467. {
  2468. name: "Macro",
  2469. height: math.unit(500, "feet")
  2470. },
  2471. {
  2472. name: "Megamacro",
  2473. height: math.unit(20, "miles")
  2474. },
  2475. ]
  2476. ))
  2477. characterMakers.push(() => makeCharacter(
  2478. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2479. {
  2480. front: {
  2481. height: math.unit(6, "feet"),
  2482. weight: math.unit(75, "kg"),
  2483. name: "Front",
  2484. image: {
  2485. source: "./media/characters/shingo/front.svg",
  2486. extra: 706/681,
  2487. bottom: 11/717
  2488. }
  2489. },
  2490. frontAlt: {
  2491. height: math.unit(6, "feet"),
  2492. weight: math.unit(75, "kg"),
  2493. name: "Front (Alt)",
  2494. image: {
  2495. source: "./media/characters/shingo/front-alt.svg",
  2496. extra: 3511 / 3338,
  2497. bottom: 0.005
  2498. }
  2499. },
  2500. paw: {
  2501. height: math.unit(1, "feet"),
  2502. name: "Paw",
  2503. image: {
  2504. source: "./media/characters/shingo/paw.svg"
  2505. }
  2506. },
  2507. },
  2508. [
  2509. {
  2510. name: "Micro",
  2511. height: math.unit(4, "inches")
  2512. },
  2513. {
  2514. name: "Normal",
  2515. height: math.unit(6, "feet"),
  2516. default: true
  2517. },
  2518. {
  2519. name: "Macro",
  2520. height: math.unit(108, "feet")
  2521. },
  2522. {
  2523. name: "Macro+",
  2524. height: math.unit(1500, "feet")
  2525. },
  2526. ]
  2527. ))
  2528. characterMakers.push(() => makeCharacter(
  2529. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2530. {
  2531. side: {
  2532. height: math.unit(6, "feet"),
  2533. weight: math.unit(75, "kg"),
  2534. name: "Side",
  2535. image: {
  2536. source: "./media/characters/aigey/side.svg"
  2537. }
  2538. },
  2539. },
  2540. [
  2541. {
  2542. name: "Macro",
  2543. height: math.unit(200, "feet"),
  2544. default: true
  2545. },
  2546. {
  2547. name: "Megamacro",
  2548. height: math.unit(100, "miles")
  2549. },
  2550. ]
  2551. )
  2552. )
  2553. characterMakers.push(() => makeCharacter(
  2554. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2555. {
  2556. front: {
  2557. height: math.unit(5 + 5 / 12, "feet"),
  2558. weight: math.unit(75, "kg"),
  2559. name: "Front",
  2560. image: {
  2561. source: "./media/characters/natasha/front.svg",
  2562. extra: 859 / 824,
  2563. bottom: 23 / 879.6
  2564. }
  2565. },
  2566. frontNsfw: {
  2567. height: math.unit(5 + 5 / 12, "feet"),
  2568. weight: math.unit(75, "kg"),
  2569. name: "Front (NSFW)",
  2570. image: {
  2571. source: "./media/characters/natasha/front-nsfw.svg",
  2572. extra: 859 / 824,
  2573. bottom: 23 / 879.6
  2574. }
  2575. },
  2576. frontErect: {
  2577. height: math.unit(5 + 5 / 12, "feet"),
  2578. weight: math.unit(75, "kg"),
  2579. name: "Front (Erect)",
  2580. image: {
  2581. source: "./media/characters/natasha/front-erect.svg",
  2582. extra: 859 / 824,
  2583. bottom: 23 / 879.6
  2584. }
  2585. },
  2586. back: {
  2587. height: math.unit(5 + 5 / 12, "feet"),
  2588. weight: math.unit(75, "kg"),
  2589. name: "Back",
  2590. image: {
  2591. source: "./media/characters/natasha/back.svg",
  2592. extra: 887.9 / 852.6,
  2593. bottom: 9.7 / 896.4
  2594. }
  2595. },
  2596. backAlt: {
  2597. height: math.unit(5 + 5 / 12, "feet"),
  2598. weight: math.unit(75, "kg"),
  2599. name: "Back (Alt)",
  2600. image: {
  2601. source: "./media/characters/natasha/back-alt.svg",
  2602. extra: 1236.7 / 1192,
  2603. bottom: 22.3 / 1258.2
  2604. }
  2605. },
  2606. dick: {
  2607. height: math.unit(1.772, "feet"),
  2608. name: "Dick",
  2609. image: {
  2610. source: "./media/characters/natasha/dick.svg"
  2611. }
  2612. },
  2613. paw: {
  2614. height: math.unit(0.250, "meters"),
  2615. name: "Paw",
  2616. image: {
  2617. source: "./media/characters/natasha/paw.svg"
  2618. }
  2619. },
  2620. },
  2621. [
  2622. {
  2623. name: "Normal",
  2624. height: math.unit(5 + 5 / 12, "feet")
  2625. },
  2626. {
  2627. name: "Large",
  2628. height: math.unit(12, "feet")
  2629. },
  2630. {
  2631. name: "Macro",
  2632. height: math.unit(100, "feet"),
  2633. default: true
  2634. },
  2635. {
  2636. name: "Macro+",
  2637. height: math.unit(260, "feet")
  2638. },
  2639. {
  2640. name: "Macro++",
  2641. height: math.unit(1, "mile")
  2642. },
  2643. ]
  2644. ))
  2645. characterMakers.push(() => makeCharacter(
  2646. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2647. {
  2648. front: {
  2649. height: math.unit(6, "feet"),
  2650. weight: math.unit(75, "kg"),
  2651. name: "Front",
  2652. image: {
  2653. source: "./media/characters/malik/front.svg"
  2654. }
  2655. },
  2656. side: {
  2657. height: math.unit(6, "feet"),
  2658. weight: math.unit(75, "kg"),
  2659. name: "Side",
  2660. image: {
  2661. source: "./media/characters/malik/side.svg",
  2662. extra: 1.1539
  2663. }
  2664. },
  2665. back: {
  2666. height: math.unit(6, "feet"),
  2667. weight: math.unit(75, "kg"),
  2668. name: "Back",
  2669. image: {
  2670. source: "./media/characters/malik/back.svg"
  2671. }
  2672. },
  2673. },
  2674. [
  2675. {
  2676. name: "Macro",
  2677. height: math.unit(156, "feet"),
  2678. default: true
  2679. },
  2680. {
  2681. name: "Macro+",
  2682. height: math.unit(1188, "feet")
  2683. },
  2684. ]
  2685. ))
  2686. characterMakers.push(() => makeCharacter(
  2687. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2688. {
  2689. front: {
  2690. height: math.unit(6, "feet"),
  2691. weight: math.unit(75, "kg"),
  2692. name: "Front",
  2693. image: {
  2694. source: "./media/characters/sefer/front.svg",
  2695. extra: 848 / 659,
  2696. bottom: 28.3 / 876.442
  2697. }
  2698. },
  2699. back: {
  2700. height: math.unit(6, "feet"),
  2701. weight: math.unit(75, "kg"),
  2702. name: "Back",
  2703. image: {
  2704. source: "./media/characters/sefer/back.svg",
  2705. extra: 864 / 695,
  2706. bottom: 10 / 871
  2707. }
  2708. },
  2709. frontDressed: {
  2710. height: math.unit(6, "feet"),
  2711. weight: math.unit(75, "kg"),
  2712. name: "Front (Dressed)",
  2713. image: {
  2714. source: "./media/characters/sefer/front-dressed.svg",
  2715. extra: 839 / 653,
  2716. bottom: 37.6 / 878
  2717. }
  2718. },
  2719. },
  2720. [
  2721. {
  2722. name: "Normal",
  2723. height: math.unit(6, "feet"),
  2724. default: true
  2725. },
  2726. ]
  2727. ))
  2728. characterMakers.push(() => makeCharacter(
  2729. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2730. {
  2731. body: {
  2732. height: math.unit(2.2428, "meter"),
  2733. weight: math.unit(124.738, "kg"),
  2734. name: "Body",
  2735. image: {
  2736. extra: 1225 / 1050,
  2737. source: "./media/characters/north/front.svg"
  2738. }
  2739. }
  2740. },
  2741. [
  2742. {
  2743. name: "Micro",
  2744. height: math.unit(4, "inches")
  2745. },
  2746. {
  2747. name: "Macro",
  2748. height: math.unit(63, "meters")
  2749. },
  2750. {
  2751. name: "Megamacro",
  2752. height: math.unit(101, "miles"),
  2753. default: true
  2754. }
  2755. ]
  2756. ))
  2757. characterMakers.push(() => makeCharacter(
  2758. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2759. {
  2760. angled: {
  2761. height: math.unit(4, "meter"),
  2762. weight: math.unit(150, "kg"),
  2763. name: "Angled",
  2764. image: {
  2765. source: "./media/characters/talan/angled-sfw.svg",
  2766. bottom: 29 / 3734
  2767. }
  2768. },
  2769. angledNsfw: {
  2770. height: math.unit(4, "meter"),
  2771. weight: math.unit(150, "kg"),
  2772. name: "Angled (NSFW)",
  2773. image: {
  2774. source: "./media/characters/talan/angled-nsfw.svg",
  2775. bottom: 29 / 3734
  2776. }
  2777. },
  2778. frontNsfw: {
  2779. height: math.unit(4, "meter"),
  2780. weight: math.unit(150, "kg"),
  2781. name: "Front (NSFW)",
  2782. image: {
  2783. source: "./media/characters/talan/front-nsfw.svg",
  2784. bottom: 29 / 3734
  2785. }
  2786. },
  2787. sideNsfw: {
  2788. height: math.unit(4, "meter"),
  2789. weight: math.unit(150, "kg"),
  2790. name: "Side (NSFW)",
  2791. image: {
  2792. source: "./media/characters/talan/side-nsfw.svg",
  2793. bottom: 29 / 3734
  2794. }
  2795. },
  2796. back: {
  2797. height: math.unit(4, "meter"),
  2798. weight: math.unit(150, "kg"),
  2799. name: "Back",
  2800. image: {
  2801. source: "./media/characters/talan/back.svg"
  2802. }
  2803. },
  2804. dickBottom: {
  2805. height: math.unit(0.621, "meter"),
  2806. name: "Dick (Bottom)",
  2807. image: {
  2808. source: "./media/characters/talan/dick-bottom.svg"
  2809. }
  2810. },
  2811. dickTop: {
  2812. height: math.unit(0.621, "meter"),
  2813. name: "Dick (Top)",
  2814. image: {
  2815. source: "./media/characters/talan/dick-top.svg"
  2816. }
  2817. },
  2818. dickSide: {
  2819. height: math.unit(0.305, "meter"),
  2820. name: "Dick (Side)",
  2821. image: {
  2822. source: "./media/characters/talan/dick-side.svg"
  2823. }
  2824. },
  2825. dickFront: {
  2826. height: math.unit(0.305, "meter"),
  2827. name: "Dick (Front)",
  2828. image: {
  2829. source: "./media/characters/talan/dick-front.svg"
  2830. }
  2831. },
  2832. },
  2833. [
  2834. {
  2835. name: "Normal",
  2836. height: math.unit(4, "meters")
  2837. },
  2838. {
  2839. name: "Macro",
  2840. height: math.unit(100, "meters")
  2841. },
  2842. {
  2843. name: "Megamacro",
  2844. height: math.unit(2, "miles"),
  2845. default: true
  2846. },
  2847. {
  2848. name: "Gigamacro",
  2849. height: math.unit(5000, "miles")
  2850. },
  2851. {
  2852. name: "Teramacro",
  2853. height: math.unit(100, "parsecs")
  2854. }
  2855. ]
  2856. ))
  2857. characterMakers.push(() => makeCharacter(
  2858. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2859. {
  2860. front: {
  2861. height: math.unit(2, "meter"),
  2862. weight: math.unit(90, "kg"),
  2863. name: "Front",
  2864. image: {
  2865. source: "./media/characters/gael'rathus/front.svg"
  2866. }
  2867. },
  2868. frontAlt: {
  2869. height: math.unit(2, "meter"),
  2870. weight: math.unit(90, "kg"),
  2871. name: "Front (alt)",
  2872. image: {
  2873. source: "./media/characters/gael'rathus/front-alt.svg"
  2874. }
  2875. },
  2876. frontAlt2: {
  2877. height: math.unit(2, "meter"),
  2878. weight: math.unit(90, "kg"),
  2879. name: "Front (alt 2)",
  2880. image: {
  2881. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2882. }
  2883. }
  2884. },
  2885. [
  2886. {
  2887. name: "Normal",
  2888. height: math.unit(9, "feet"),
  2889. default: true
  2890. },
  2891. {
  2892. name: "Large",
  2893. height: math.unit(25, "feet")
  2894. },
  2895. {
  2896. name: "Macro",
  2897. height: math.unit(0.25, "miles")
  2898. },
  2899. {
  2900. name: "Megamacro",
  2901. height: math.unit(10, "miles")
  2902. }
  2903. ]
  2904. ))
  2905. characterMakers.push(() => makeCharacter(
  2906. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2907. {
  2908. side: {
  2909. height: math.unit(2, "meter"),
  2910. weight: math.unit(140, "kg"),
  2911. name: "Side",
  2912. image: {
  2913. source: "./media/characters/sosha/side.svg",
  2914. bottom: 0.042
  2915. }
  2916. },
  2917. },
  2918. [
  2919. {
  2920. name: "Normal",
  2921. height: math.unit(12, "feet"),
  2922. default: true
  2923. }
  2924. ]
  2925. ))
  2926. characterMakers.push(() => makeCharacter(
  2927. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2928. {
  2929. side: {
  2930. height: math.unit(5 + 5 / 12, "feet"),
  2931. weight: math.unit(170, "kg"),
  2932. name: "Side",
  2933. image: {
  2934. source: "./media/characters/runnola/side.svg",
  2935. extra: 741 / 448,
  2936. bottom: 0.05
  2937. }
  2938. },
  2939. },
  2940. [
  2941. {
  2942. name: "Small",
  2943. height: math.unit(3, "feet")
  2944. },
  2945. {
  2946. name: "Normal",
  2947. height: math.unit(5 + 5 / 12, "feet"),
  2948. default: true
  2949. },
  2950. {
  2951. name: "Big",
  2952. height: math.unit(10, "feet")
  2953. },
  2954. ]
  2955. ))
  2956. characterMakers.push(() => makeCharacter(
  2957. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2958. {
  2959. front: {
  2960. height: math.unit(2, "meter"),
  2961. weight: math.unit(50, "kg"),
  2962. name: "Front",
  2963. image: {
  2964. source: "./media/characters/kurribird/front.svg",
  2965. bottom: 0.015
  2966. }
  2967. },
  2968. frontAlt: {
  2969. height: math.unit(1.5, "meter"),
  2970. weight: math.unit(50, "kg"),
  2971. name: "Front (Alt)",
  2972. image: {
  2973. source: "./media/characters/kurribird/front-alt.svg",
  2974. extra: 1.45
  2975. }
  2976. },
  2977. },
  2978. [
  2979. {
  2980. name: "Normal",
  2981. height: math.unit(7, "feet")
  2982. },
  2983. {
  2984. name: "Big",
  2985. height: math.unit(12, "feet"),
  2986. default: true
  2987. },
  2988. {
  2989. name: "Macro",
  2990. height: math.unit(1500, "feet")
  2991. },
  2992. {
  2993. name: "Megamacro",
  2994. height: math.unit(2, "miles")
  2995. }
  2996. ]
  2997. ))
  2998. characterMakers.push(() => makeCharacter(
  2999. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3000. {
  3001. front: {
  3002. height: math.unit(2, "meter"),
  3003. weight: math.unit(80, "kg"),
  3004. name: "Front",
  3005. image: {
  3006. source: "./media/characters/elbial/front.svg",
  3007. extra: 1643 / 1556,
  3008. bottom: 60.2 / 1696
  3009. }
  3010. },
  3011. side: {
  3012. height: math.unit(2, "meter"),
  3013. weight: math.unit(80, "kg"),
  3014. name: "Side",
  3015. image: {
  3016. source: "./media/characters/elbial/side.svg",
  3017. extra: 1630 / 1565,
  3018. bottom: 71.5 / 1697
  3019. }
  3020. },
  3021. back: {
  3022. height: math.unit(2, "meter"),
  3023. weight: math.unit(80, "kg"),
  3024. name: "Back",
  3025. image: {
  3026. source: "./media/characters/elbial/back.svg",
  3027. extra: 1668 / 1595,
  3028. bottom: 5.6 / 1672
  3029. }
  3030. },
  3031. frontDressed: {
  3032. height: math.unit(2, "meter"),
  3033. weight: math.unit(80, "kg"),
  3034. name: "Front (Dressed)",
  3035. image: {
  3036. source: "./media/characters/elbial/front-dressed.svg",
  3037. extra: 1653 / 1584,
  3038. bottom: 57 / 1708
  3039. }
  3040. },
  3041. genitals: {
  3042. height: math.unit(2 / 3.367, "meter"),
  3043. name: "Genitals",
  3044. image: {
  3045. source: "./media/characters/elbial/genitals.svg"
  3046. }
  3047. },
  3048. },
  3049. [
  3050. {
  3051. name: "Large",
  3052. height: math.unit(100, "feet")
  3053. },
  3054. {
  3055. name: "Macro",
  3056. height: math.unit(500, "feet"),
  3057. default: true
  3058. },
  3059. {
  3060. name: "Megamacro",
  3061. height: math.unit(10, "miles")
  3062. },
  3063. {
  3064. name: "Gigamacro",
  3065. height: math.unit(25000, "miles")
  3066. },
  3067. {
  3068. name: "Full-Size",
  3069. height: math.unit(8000000, "gigaparsecs")
  3070. }
  3071. ]
  3072. ))
  3073. characterMakers.push(() => makeCharacter(
  3074. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3075. {
  3076. front: {
  3077. height: math.unit(2, "meter"),
  3078. weight: math.unit(60, "kg"),
  3079. name: "Front",
  3080. image: {
  3081. source: "./media/characters/noah/front.svg"
  3082. }
  3083. },
  3084. talons: {
  3085. height: math.unit(0.315, "meter"),
  3086. name: "Talons",
  3087. image: {
  3088. source: "./media/characters/noah/talons.svg"
  3089. }
  3090. }
  3091. },
  3092. [
  3093. {
  3094. name: "Large",
  3095. height: math.unit(50, "feet")
  3096. },
  3097. {
  3098. name: "Macro",
  3099. height: math.unit(750, "feet"),
  3100. default: true
  3101. },
  3102. {
  3103. name: "Megamacro",
  3104. height: math.unit(50, "miles")
  3105. },
  3106. {
  3107. name: "Gigamacro",
  3108. height: math.unit(100000, "miles")
  3109. },
  3110. {
  3111. name: "Full-Size",
  3112. height: math.unit(3000000000, "miles")
  3113. }
  3114. ]
  3115. ))
  3116. characterMakers.push(() => makeCharacter(
  3117. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3118. {
  3119. front: {
  3120. height: math.unit(2, "meter"),
  3121. weight: math.unit(80, "kg"),
  3122. name: "Front",
  3123. image: {
  3124. source: "./media/characters/natalya/front.svg"
  3125. }
  3126. },
  3127. back: {
  3128. height: math.unit(2, "meter"),
  3129. weight: math.unit(80, "kg"),
  3130. name: "Back",
  3131. image: {
  3132. source: "./media/characters/natalya/back.svg"
  3133. }
  3134. }
  3135. },
  3136. [
  3137. {
  3138. name: "Normal",
  3139. height: math.unit(150, "feet"),
  3140. default: true
  3141. },
  3142. {
  3143. name: "Megamacro",
  3144. height: math.unit(5, "miles")
  3145. },
  3146. {
  3147. name: "Full-Size",
  3148. height: math.unit(600, "kiloparsecs")
  3149. }
  3150. ]
  3151. ))
  3152. characterMakers.push(() => makeCharacter(
  3153. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3154. {
  3155. front: {
  3156. height: math.unit(2, "meter"),
  3157. weight: math.unit(50, "kg"),
  3158. name: "Front",
  3159. image: {
  3160. source: "./media/characters/erestrebah/front.svg",
  3161. extra: 208 / 193,
  3162. bottom: 0.055
  3163. }
  3164. },
  3165. back: {
  3166. height: math.unit(2, "meter"),
  3167. weight: math.unit(50, "kg"),
  3168. name: "Back",
  3169. image: {
  3170. source: "./media/characters/erestrebah/back.svg",
  3171. extra: 1.3
  3172. }
  3173. }
  3174. },
  3175. [
  3176. {
  3177. name: "Normal",
  3178. height: math.unit(10, "feet")
  3179. },
  3180. {
  3181. name: "Large",
  3182. height: math.unit(50, "feet"),
  3183. default: true
  3184. },
  3185. {
  3186. name: "Macro",
  3187. height: math.unit(300, "feet")
  3188. },
  3189. {
  3190. name: "Macro+",
  3191. height: math.unit(750, "feet")
  3192. },
  3193. {
  3194. name: "Megamacro",
  3195. height: math.unit(3, "miles")
  3196. }
  3197. ]
  3198. ))
  3199. characterMakers.push(() => makeCharacter(
  3200. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3201. {
  3202. front: {
  3203. height: math.unit(2, "meter"),
  3204. weight: math.unit(80, "kg"),
  3205. name: "Front",
  3206. image: {
  3207. source: "./media/characters/jennifer/front.svg",
  3208. bottom: 0.11,
  3209. extra: 1.16
  3210. }
  3211. },
  3212. frontAlt: {
  3213. height: math.unit(2, "meter"),
  3214. weight: math.unit(80, "kg"),
  3215. name: "Front (Alt)",
  3216. image: {
  3217. source: "./media/characters/jennifer/front-alt.svg"
  3218. }
  3219. }
  3220. },
  3221. [
  3222. {
  3223. name: "Canon Height",
  3224. height: math.unit(120, "feet"),
  3225. default: true
  3226. },
  3227. {
  3228. name: "Macro+",
  3229. height: math.unit(300, "feet")
  3230. },
  3231. {
  3232. name: "Megamacro",
  3233. height: math.unit(20000, "feet")
  3234. }
  3235. ]
  3236. ))
  3237. characterMakers.push(() => makeCharacter(
  3238. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3239. {
  3240. front: {
  3241. height: math.unit(2, "meter"),
  3242. weight: math.unit(50, "kg"),
  3243. name: "Front",
  3244. image: {
  3245. source: "./media/characters/kalista/front.svg",
  3246. extra: 1947 / 1700,
  3247. bottom: 76.6 / 1412.98
  3248. }
  3249. },
  3250. back: {
  3251. height: math.unit(2, "meter"),
  3252. weight: math.unit(50, "kg"),
  3253. name: "Back",
  3254. image: {
  3255. source: "./media/characters/kalista/back.svg",
  3256. extra: 1366 / 1156,
  3257. bottom: 33.9 / 1362.78
  3258. }
  3259. }
  3260. },
  3261. [
  3262. {
  3263. name: "Uncomfortably Small",
  3264. height: math.unit(10, "feet")
  3265. },
  3266. {
  3267. name: "Small",
  3268. height: math.unit(30, "feet")
  3269. },
  3270. {
  3271. name: "Macro",
  3272. height: math.unit(100, "feet"),
  3273. default: true
  3274. },
  3275. {
  3276. name: "Macro+",
  3277. height: math.unit(2000, "feet")
  3278. },
  3279. {
  3280. name: "True Form",
  3281. height: math.unit(8924, "miles")
  3282. }
  3283. ]
  3284. ))
  3285. characterMakers.push(() => makeCharacter(
  3286. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3287. {
  3288. front: {
  3289. height: math.unit(2, "meter"),
  3290. weight: math.unit(120, "kg"),
  3291. name: "Front",
  3292. image: {
  3293. source: "./media/characters/ggv/front.svg"
  3294. }
  3295. },
  3296. side: {
  3297. height: math.unit(2, "meter"),
  3298. weight: math.unit(120, "kg"),
  3299. name: "Side",
  3300. image: {
  3301. source: "./media/characters/ggv/side.svg"
  3302. }
  3303. }
  3304. },
  3305. [
  3306. {
  3307. name: "Extremely Puny",
  3308. height: math.unit(9 + 5 / 12, "feet")
  3309. },
  3310. {
  3311. name: "Horribly Small",
  3312. height: math.unit(47.7, "miles"),
  3313. default: true
  3314. },
  3315. {
  3316. name: "Reasonably Sized",
  3317. height: math.unit(25000, "parsecs")
  3318. },
  3319. {
  3320. name: "Slightly Uncompressed",
  3321. height: math.unit(7.77e31, "parsecs")
  3322. },
  3323. {
  3324. name: "Omniversal",
  3325. height: math.unit(1e300, "meters")
  3326. },
  3327. ]
  3328. ))
  3329. characterMakers.push(() => makeCharacter(
  3330. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3331. {
  3332. front: {
  3333. height: math.unit(2, "meter"),
  3334. weight: math.unit(75, "lb"),
  3335. name: "Front",
  3336. image: {
  3337. source: "./media/characters/napalm/front.svg"
  3338. }
  3339. },
  3340. back: {
  3341. height: math.unit(2, "meter"),
  3342. weight: math.unit(75, "lb"),
  3343. name: "Back",
  3344. image: {
  3345. source: "./media/characters/napalm/back.svg"
  3346. }
  3347. }
  3348. },
  3349. [
  3350. {
  3351. name: "Standard",
  3352. height: math.unit(55, "feet"),
  3353. default: true
  3354. }
  3355. ]
  3356. ))
  3357. characterMakers.push(() => makeCharacter(
  3358. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3359. {
  3360. front: {
  3361. height: math.unit(7 + 5 / 6, "feet"),
  3362. weight: math.unit(325, "lb"),
  3363. name: "Front",
  3364. image: {
  3365. source: "./media/characters/asana/front.svg",
  3366. extra: 1133 / 1060,
  3367. bottom: 15.2 / 1148.6
  3368. }
  3369. },
  3370. back: {
  3371. height: math.unit(7 + 5 / 6, "feet"),
  3372. weight: math.unit(325, "lb"),
  3373. name: "Back",
  3374. image: {
  3375. source: "./media/characters/asana/back.svg",
  3376. extra: 1114 / 1043,
  3377. bottom: 5 / 1120
  3378. }
  3379. },
  3380. dressedDark: {
  3381. height: math.unit(7 + 5 / 6, "feet"),
  3382. weight: math.unit(325, "lb"),
  3383. name: "Dressed (Dark)",
  3384. image: {
  3385. source: "./media/characters/asana/dressed-dark.svg",
  3386. extra: 1133 / 1060,
  3387. bottom: 15.2 / 1148.6
  3388. }
  3389. },
  3390. dressedLight: {
  3391. height: math.unit(7 + 5 / 6, "feet"),
  3392. weight: math.unit(325, "lb"),
  3393. name: "Dressed (Light)",
  3394. image: {
  3395. source: "./media/characters/asana/dressed-light.svg",
  3396. extra: 1133 / 1060,
  3397. bottom: 15.2 / 1148.6
  3398. }
  3399. },
  3400. },
  3401. [
  3402. {
  3403. name: "Standard",
  3404. height: math.unit(7 + 5 / 6, "feet"),
  3405. default: true
  3406. },
  3407. {
  3408. name: "Large",
  3409. height: math.unit(10, "meters")
  3410. },
  3411. {
  3412. name: "Macro",
  3413. height: math.unit(2500, "meters")
  3414. },
  3415. {
  3416. name: "Megamacro",
  3417. height: math.unit(5e6, "meters")
  3418. },
  3419. {
  3420. name: "Examacro",
  3421. height: math.unit(5e12, "lightyears")
  3422. },
  3423. {
  3424. name: "Max Size",
  3425. height: math.unit(1e31, "lightyears")
  3426. }
  3427. ]
  3428. ))
  3429. characterMakers.push(() => makeCharacter(
  3430. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3431. {
  3432. front: {
  3433. height: math.unit(2, "meter"),
  3434. weight: math.unit(60, "kg"),
  3435. name: "Front",
  3436. image: {
  3437. source: "./media/characters/ebony/front.svg",
  3438. bottom: 0.03,
  3439. extra: 1045 / 810 + 0.03
  3440. }
  3441. },
  3442. side: {
  3443. height: math.unit(2, "meter"),
  3444. weight: math.unit(60, "kg"),
  3445. name: "Side",
  3446. image: {
  3447. source: "./media/characters/ebony/side.svg",
  3448. bottom: 0.03,
  3449. extra: 1045 / 810 + 0.03
  3450. }
  3451. },
  3452. back: {
  3453. height: math.unit(2, "meter"),
  3454. weight: math.unit(60, "kg"),
  3455. name: "Back",
  3456. image: {
  3457. source: "./media/characters/ebony/back.svg",
  3458. bottom: 0.01,
  3459. extra: 1045 / 810 + 0.01
  3460. }
  3461. },
  3462. },
  3463. [
  3464. // TODO check why I did this lol
  3465. {
  3466. name: "Standard",
  3467. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3468. default: true
  3469. },
  3470. {
  3471. name: "Macro",
  3472. height: math.unit(200, "feet")
  3473. },
  3474. {
  3475. name: "Gigamacro",
  3476. height: math.unit(13000, "km")
  3477. }
  3478. ]
  3479. ))
  3480. characterMakers.push(() => makeCharacter(
  3481. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3482. {
  3483. front: {
  3484. height: math.unit(6, "feet"),
  3485. weight: math.unit(175, "lb"),
  3486. name: "Front",
  3487. image: {
  3488. source: "./media/characters/mountain/front.svg",
  3489. extra: 972 / 955,
  3490. bottom: 64 / 1036.6
  3491. }
  3492. },
  3493. back: {
  3494. height: math.unit(6, "feet"),
  3495. weight: math.unit(175, "lb"),
  3496. name: "Back",
  3497. image: {
  3498. source: "./media/characters/mountain/back.svg",
  3499. extra: 970 / 950,
  3500. bottom: 28.25 / 999
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Large",
  3507. height: math.unit(20, "meters")
  3508. },
  3509. {
  3510. name: "Macro",
  3511. height: math.unit(300, "meters")
  3512. },
  3513. {
  3514. name: "Gigamacro",
  3515. height: math.unit(10000, "km"),
  3516. default: true
  3517. },
  3518. {
  3519. name: "Examacro",
  3520. height: math.unit(10e9, "lightyears")
  3521. }
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(8, "feet"),
  3529. weight: math.unit(500, "lb"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/rick/front.svg"
  3533. }
  3534. }
  3535. },
  3536. [
  3537. {
  3538. name: "Normal",
  3539. height: math.unit(8, "feet"),
  3540. default: true
  3541. },
  3542. {
  3543. name: "Macro",
  3544. height: math.unit(5, "km")
  3545. }
  3546. ]
  3547. ))
  3548. characterMakers.push(() => makeCharacter(
  3549. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3550. {
  3551. front: {
  3552. height: math.unit(8, "feet"),
  3553. weight: math.unit(120, "lb"),
  3554. name: "Front",
  3555. image: {
  3556. source: "./media/characters/ona/front.svg"
  3557. }
  3558. },
  3559. frontAlt: {
  3560. height: math.unit(8, "feet"),
  3561. weight: math.unit(120, "lb"),
  3562. name: "Front (Alt)",
  3563. image: {
  3564. source: "./media/characters/ona/front-alt.svg"
  3565. }
  3566. },
  3567. back: {
  3568. height: math.unit(8, "feet"),
  3569. weight: math.unit(120, "lb"),
  3570. name: "Back",
  3571. image: {
  3572. source: "./media/characters/ona/back.svg"
  3573. }
  3574. },
  3575. foot: {
  3576. height: math.unit(1.1, "feet"),
  3577. name: "Foot",
  3578. image: {
  3579. source: "./media/characters/ona/foot.svg"
  3580. }
  3581. }
  3582. },
  3583. [
  3584. {
  3585. name: "Megamacro",
  3586. height: math.unit(70, "km"),
  3587. default: true
  3588. },
  3589. {
  3590. name: "Gigamacro",
  3591. height: math.unit(681818, "miles")
  3592. },
  3593. {
  3594. name: "Examacro",
  3595. height: math.unit(3800000, "lightyears")
  3596. },
  3597. ]
  3598. ))
  3599. characterMakers.push(() => makeCharacter(
  3600. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3601. {
  3602. front: {
  3603. height: math.unit(12, "feet"),
  3604. weight: math.unit(3000, "lb"),
  3605. name: "Front",
  3606. image: {
  3607. source: "./media/characters/mech/front.svg",
  3608. extra: 2900 / 2770,
  3609. bottom: 110 / 3010
  3610. }
  3611. },
  3612. back: {
  3613. height: math.unit(12, "feet"),
  3614. weight: math.unit(3000, "lb"),
  3615. name: "Back",
  3616. image: {
  3617. source: "./media/characters/mech/back.svg",
  3618. extra: 3011 / 2890,
  3619. bottom: 94 / 3105
  3620. }
  3621. },
  3622. maw: {
  3623. height: math.unit(3.07, "feet"),
  3624. name: "Maw",
  3625. image: {
  3626. source: "./media/characters/mech/maw.svg"
  3627. }
  3628. },
  3629. head: {
  3630. height: math.unit(2.82, "feet"),
  3631. name: "Head",
  3632. image: {
  3633. source: "./media/characters/mech/head.svg"
  3634. }
  3635. },
  3636. dick: {
  3637. height: math.unit(1.43, "feet"),
  3638. name: "Dick",
  3639. image: {
  3640. source: "./media/characters/mech/dick.svg"
  3641. }
  3642. },
  3643. },
  3644. [
  3645. {
  3646. name: "Normal",
  3647. height: math.unit(12, "feet")
  3648. },
  3649. {
  3650. name: "Macro",
  3651. height: math.unit(300, "feet"),
  3652. default: true
  3653. },
  3654. {
  3655. name: "Macro+",
  3656. height: math.unit(1500, "feet")
  3657. },
  3658. ]
  3659. ))
  3660. characterMakers.push(() => makeCharacter(
  3661. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3662. {
  3663. front: {
  3664. height: math.unit(1.3, "meter"),
  3665. weight: math.unit(30, "kg"),
  3666. name: "Front",
  3667. image: {
  3668. source: "./media/characters/gregory/front.svg",
  3669. }
  3670. }
  3671. },
  3672. [
  3673. {
  3674. name: "Normal",
  3675. height: math.unit(1.3, "meter"),
  3676. default: true
  3677. },
  3678. {
  3679. name: "Macro",
  3680. height: math.unit(20, "meter")
  3681. }
  3682. ]
  3683. ))
  3684. characterMakers.push(() => makeCharacter(
  3685. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3686. {
  3687. front: {
  3688. height: math.unit(2.8, "meter"),
  3689. weight: math.unit(200, "kg"),
  3690. name: "Front",
  3691. image: {
  3692. source: "./media/characters/elory/front.svg",
  3693. }
  3694. }
  3695. },
  3696. [
  3697. {
  3698. name: "Normal",
  3699. height: math.unit(2.8, "meter"),
  3700. default: true
  3701. },
  3702. {
  3703. name: "Macro",
  3704. height: math.unit(38, "meter")
  3705. }
  3706. ]
  3707. ))
  3708. characterMakers.push(() => makeCharacter(
  3709. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3710. {
  3711. front: {
  3712. height: math.unit(470, "feet"),
  3713. weight: math.unit(924, "tons"),
  3714. name: "Front",
  3715. image: {
  3716. source: "./media/characters/angelpatamon/front.svg",
  3717. }
  3718. }
  3719. },
  3720. [
  3721. {
  3722. name: "Normal",
  3723. height: math.unit(470, "feet"),
  3724. default: true
  3725. },
  3726. {
  3727. name: "Deity Size I",
  3728. height: math.unit(28651.2, "km")
  3729. },
  3730. {
  3731. name: "Deity Size II",
  3732. height: math.unit(171907.2, "km")
  3733. }
  3734. ]
  3735. ))
  3736. characterMakers.push(() => makeCharacter(
  3737. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3738. {
  3739. side: {
  3740. height: math.unit(7.2, "meter"),
  3741. weight: math.unit(8.2, "tons"),
  3742. name: "Side",
  3743. image: {
  3744. source: "./media/characters/cryae/side.svg",
  3745. extra: 3500 / 1500
  3746. }
  3747. }
  3748. },
  3749. [
  3750. {
  3751. name: "Normal",
  3752. height: math.unit(7.2, "meter"),
  3753. default: true
  3754. }
  3755. ]
  3756. ))
  3757. characterMakers.push(() => makeCharacter(
  3758. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3759. {
  3760. front: {
  3761. height: math.unit(6, "feet"),
  3762. weight: math.unit(175, "lb"),
  3763. name: "Front",
  3764. image: {
  3765. source: "./media/characters/xera/front.svg",
  3766. extra: 2377 / 1972,
  3767. bottom: 75.5 / 2452
  3768. }
  3769. },
  3770. side: {
  3771. height: math.unit(6, "feet"),
  3772. weight: math.unit(175, "lb"),
  3773. name: "Side",
  3774. image: {
  3775. source: "./media/characters/xera/side.svg",
  3776. extra: 2345 / 2019,
  3777. bottom: 39.7 / 2384
  3778. }
  3779. },
  3780. back: {
  3781. height: math.unit(6, "feet"),
  3782. weight: math.unit(175, "lb"),
  3783. name: "Back",
  3784. image: {
  3785. source: "./media/characters/xera/back.svg",
  3786. extra: 2095 / 1984,
  3787. bottom: 67 / 2166
  3788. }
  3789. },
  3790. },
  3791. [
  3792. {
  3793. name: "Small",
  3794. height: math.unit(10, "feet")
  3795. },
  3796. {
  3797. name: "Macro",
  3798. height: math.unit(500, "meters"),
  3799. default: true
  3800. },
  3801. {
  3802. name: "Macro+",
  3803. height: math.unit(10, "km")
  3804. },
  3805. {
  3806. name: "Gigamacro",
  3807. height: math.unit(25000, "km")
  3808. },
  3809. {
  3810. name: "Teramacro",
  3811. height: math.unit(3e6, "km")
  3812. }
  3813. ]
  3814. ))
  3815. characterMakers.push(() => makeCharacter(
  3816. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3817. {
  3818. front: {
  3819. height: math.unit(6, "feet"),
  3820. weight: math.unit(175, "lb"),
  3821. name: "Front",
  3822. image: {
  3823. source: "./media/characters/nebula/front.svg",
  3824. extra: 2566 / 2362,
  3825. bottom: 81 / 2644
  3826. }
  3827. }
  3828. },
  3829. [
  3830. {
  3831. name: "Small",
  3832. height: math.unit(4.5, "meters")
  3833. },
  3834. {
  3835. name: "Macro",
  3836. height: math.unit(1500, "meters"),
  3837. default: true
  3838. },
  3839. {
  3840. name: "Megamacro",
  3841. height: math.unit(150, "km")
  3842. },
  3843. {
  3844. name: "Gigamacro",
  3845. height: math.unit(27000, "km")
  3846. }
  3847. ]
  3848. ))
  3849. characterMakers.push(() => makeCharacter(
  3850. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3851. {
  3852. front: {
  3853. height: math.unit(6, "feet"),
  3854. weight: math.unit(225, "lb"),
  3855. name: "Front",
  3856. image: {
  3857. source: "./media/characters/abysgar/front.svg"
  3858. }
  3859. }
  3860. },
  3861. [
  3862. {
  3863. name: "Small",
  3864. height: math.unit(4.5, "meters")
  3865. },
  3866. {
  3867. name: "Macro",
  3868. height: math.unit(1250, "meters"),
  3869. default: true
  3870. },
  3871. {
  3872. name: "Megamacro",
  3873. height: math.unit(125, "km")
  3874. },
  3875. {
  3876. name: "Gigamacro",
  3877. height: math.unit(26000, "km")
  3878. }
  3879. ]
  3880. ))
  3881. characterMakers.push(() => makeCharacter(
  3882. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3883. {
  3884. front: {
  3885. height: math.unit(6, "feet"),
  3886. weight: math.unit(180, "lb"),
  3887. name: "Front",
  3888. image: {
  3889. source: "./media/characters/yakuz/front.svg"
  3890. }
  3891. }
  3892. },
  3893. [
  3894. {
  3895. name: "Small",
  3896. height: math.unit(5, "meters")
  3897. },
  3898. {
  3899. name: "Macro",
  3900. height: math.unit(1500, "meters"),
  3901. default: true
  3902. },
  3903. {
  3904. name: "Megamacro",
  3905. height: math.unit(200, "km")
  3906. },
  3907. {
  3908. name: "Gigamacro",
  3909. height: math.unit(100000, "km")
  3910. }
  3911. ]
  3912. ))
  3913. characterMakers.push(() => makeCharacter(
  3914. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3915. {
  3916. front: {
  3917. height: math.unit(6, "feet"),
  3918. weight: math.unit(175, "lb"),
  3919. name: "Front",
  3920. image: {
  3921. source: "./media/characters/mirova/front.svg",
  3922. extra: 3334 / 3071,
  3923. bottom: 42 / 3375.6
  3924. }
  3925. }
  3926. },
  3927. [
  3928. {
  3929. name: "Small",
  3930. height: math.unit(5, "meters")
  3931. },
  3932. {
  3933. name: "Macro",
  3934. height: math.unit(900, "meters"),
  3935. default: true
  3936. },
  3937. {
  3938. name: "Megamacro",
  3939. height: math.unit(135, "km")
  3940. },
  3941. {
  3942. name: "Gigamacro",
  3943. height: math.unit(20000, "km")
  3944. }
  3945. ]
  3946. ))
  3947. characterMakers.push(() => makeCharacter(
  3948. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3949. {
  3950. side: {
  3951. height: math.unit(28.35, "feet"),
  3952. weight: math.unit(99.75, "tons"),
  3953. name: "Side",
  3954. image: {
  3955. source: "./media/characters/asana-mech/side.svg",
  3956. extra: 923 / 699,
  3957. bottom: 50 / 975
  3958. }
  3959. },
  3960. chaingun: {
  3961. height: math.unit(7, "feet"),
  3962. weight: math.unit(2400, "lb"),
  3963. name: "Chaingun",
  3964. image: {
  3965. source: "./media/characters/asana-mech/chaingun.svg"
  3966. }
  3967. },
  3968. laser: {
  3969. height: math.unit(7.12, "feet"),
  3970. weight: math.unit(2000, "lb"),
  3971. name: "Laser",
  3972. image: {
  3973. source: "./media/characters/asana-mech/laser.svg"
  3974. }
  3975. },
  3976. },
  3977. [
  3978. {
  3979. name: "Normal",
  3980. height: math.unit(28.35, "feet"),
  3981. default: true
  3982. },
  3983. {
  3984. name: "Macro",
  3985. height: math.unit(2500, "feet")
  3986. },
  3987. {
  3988. name: "Megamacro",
  3989. height: math.unit(25, "miles")
  3990. },
  3991. {
  3992. name: "Examacro",
  3993. height: math.unit(6e8, "lightyears")
  3994. },
  3995. ]
  3996. ))
  3997. characterMakers.push(() => makeCharacter(
  3998. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3999. {
  4000. front: {
  4001. height: math.unit(5, "meters"),
  4002. weight: math.unit(1000, "kg"),
  4003. name: "Front",
  4004. image: {
  4005. source: "./media/characters/asche/front.svg",
  4006. extra: 1258 / 1190,
  4007. bottom: 47 / 1305
  4008. }
  4009. },
  4010. frontUnderwear: {
  4011. height: math.unit(5, "meters"),
  4012. weight: math.unit(1000, "kg"),
  4013. name: "Front (Underwear)",
  4014. image: {
  4015. source: "./media/characters/asche/front-underwear.svg",
  4016. extra: 1258 / 1190,
  4017. bottom: 47 / 1305
  4018. }
  4019. },
  4020. frontDressed: {
  4021. height: math.unit(5, "meters"),
  4022. weight: math.unit(1000, "kg"),
  4023. name: "Front (Dressed)",
  4024. image: {
  4025. source: "./media/characters/asche/front-dressed.svg",
  4026. extra: 1258 / 1190,
  4027. bottom: 47 / 1305
  4028. }
  4029. },
  4030. frontArmor: {
  4031. height: math.unit(5, "meters"),
  4032. weight: math.unit(1000, "kg"),
  4033. name: "Front (Armored)",
  4034. image: {
  4035. source: "./media/characters/asche/front-armored.svg",
  4036. extra: 1374 / 1308,
  4037. bottom: 23 / 1397
  4038. }
  4039. },
  4040. mp724: {
  4041. height: math.unit(0.96, "meters"),
  4042. weight: math.unit(38, "kg"),
  4043. name: "H&K MP724",
  4044. image: {
  4045. source: "./media/characters/asche/h&k-mp724.svg"
  4046. }
  4047. },
  4048. side: {
  4049. height: math.unit(5, "meters"),
  4050. weight: math.unit(1000, "kg"),
  4051. name: "Side",
  4052. image: {
  4053. source: "./media/characters/asche/side.svg",
  4054. extra: 1717 / 1609,
  4055. bottom: 0.005
  4056. }
  4057. },
  4058. back: {
  4059. height: math.unit(5, "meters"),
  4060. weight: math.unit(1000, "kg"),
  4061. name: "Back",
  4062. image: {
  4063. source: "./media/characters/asche/back.svg",
  4064. extra: 1570 / 1501
  4065. }
  4066. },
  4067. },
  4068. [
  4069. {
  4070. name: "DEFCON 5",
  4071. height: math.unit(5, "meters")
  4072. },
  4073. {
  4074. name: "DEFCON 4",
  4075. height: math.unit(500, "meters"),
  4076. default: true
  4077. },
  4078. {
  4079. name: "DEFCON 3",
  4080. height: math.unit(5, "km")
  4081. },
  4082. {
  4083. name: "DEFCON 2",
  4084. height: math.unit(500, "km")
  4085. },
  4086. {
  4087. name: "DEFCON 1",
  4088. height: math.unit(500000, "km")
  4089. },
  4090. {
  4091. name: "DEFCON 0",
  4092. height: math.unit(3, "gigaparsecs")
  4093. },
  4094. ]
  4095. ))
  4096. characterMakers.push(() => makeCharacter(
  4097. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4098. {
  4099. front: {
  4100. height: math.unit(2, "meters"),
  4101. weight: math.unit(76, "kg"),
  4102. name: "Front",
  4103. image: {
  4104. source: "./media/characters/gale/front.svg"
  4105. }
  4106. },
  4107. frontAlt1: {
  4108. height: math.unit(2, "meters"),
  4109. weight: math.unit(76, "kg"),
  4110. name: "Front (Alt 1)",
  4111. image: {
  4112. source: "./media/characters/gale/front-alt-1.svg"
  4113. }
  4114. },
  4115. frontAlt2: {
  4116. height: math.unit(2, "meters"),
  4117. weight: math.unit(76, "kg"),
  4118. name: "Front (Alt 2)",
  4119. image: {
  4120. source: "./media/characters/gale/front-alt-2.svg"
  4121. }
  4122. },
  4123. },
  4124. [
  4125. {
  4126. name: "Normal",
  4127. height: math.unit(7, "feet")
  4128. },
  4129. {
  4130. name: "Macro",
  4131. height: math.unit(150, "feet"),
  4132. default: true
  4133. },
  4134. {
  4135. name: "Macro+",
  4136. height: math.unit(300, "feet")
  4137. },
  4138. ]
  4139. ))
  4140. characterMakers.push(() => makeCharacter(
  4141. { name: "Draylen", species: ["coyote"], 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/draylen/front.svg"
  4149. }
  4150. }
  4151. },
  4152. [
  4153. {
  4154. name: "Macro",
  4155. height: math.unit(150, "feet"),
  4156. default: true
  4157. }
  4158. ]
  4159. ))
  4160. characterMakers.push(() => makeCharacter(
  4161. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4162. {
  4163. front: {
  4164. height: math.unit(7 + 9 / 12, "feet"),
  4165. weight: math.unit(379, "lbs"),
  4166. name: "Front",
  4167. image: {
  4168. source: "./media/characters/chez/front.svg"
  4169. }
  4170. },
  4171. side: {
  4172. height: math.unit(7 + 9 / 12, "feet"),
  4173. weight: math.unit(379, "lbs"),
  4174. name: "Side",
  4175. image: {
  4176. source: "./media/characters/chez/side.svg"
  4177. }
  4178. }
  4179. },
  4180. [
  4181. {
  4182. name: "Normal",
  4183. height: math.unit(7 + 9 / 12, "feet"),
  4184. default: true
  4185. },
  4186. {
  4187. name: "God King",
  4188. height: math.unit(9750000, "meters")
  4189. }
  4190. ]
  4191. ))
  4192. characterMakers.push(() => makeCharacter(
  4193. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4194. {
  4195. front: {
  4196. height: math.unit(6, "feet"),
  4197. weight: math.unit(275, "lbs"),
  4198. name: "Front",
  4199. image: {
  4200. source: "./media/characters/kaylum/front.svg",
  4201. bottom: 0.01,
  4202. extra: 1166 / 1031
  4203. }
  4204. },
  4205. frontWingless: {
  4206. height: math.unit(6, "feet"),
  4207. weight: math.unit(275, "lbs"),
  4208. name: "Front (Wingless)",
  4209. image: {
  4210. source: "./media/characters/kaylum/front-wingless.svg",
  4211. bottom: 0.01,
  4212. extra: 1117 / 1031
  4213. }
  4214. }
  4215. },
  4216. [
  4217. {
  4218. name: "Normal",
  4219. height: math.unit(3.05, "meters")
  4220. },
  4221. {
  4222. name: "Master",
  4223. height: math.unit(5.5, "meters")
  4224. },
  4225. {
  4226. name: "Rampage",
  4227. height: math.unit(19, "meters")
  4228. },
  4229. {
  4230. name: "Macro Lite",
  4231. height: math.unit(37, "meters")
  4232. },
  4233. {
  4234. name: "Hyper Predator",
  4235. height: math.unit(61, "meters")
  4236. },
  4237. {
  4238. name: "Macro",
  4239. height: math.unit(138, "meters"),
  4240. default: true
  4241. }
  4242. ]
  4243. ))
  4244. characterMakers.push(() => makeCharacter(
  4245. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4246. {
  4247. front: {
  4248. height: math.unit(6, "feet"),
  4249. weight: math.unit(150, "lbs"),
  4250. name: "Front",
  4251. image: {
  4252. source: "./media/characters/geta/front.svg"
  4253. }
  4254. }
  4255. },
  4256. [
  4257. {
  4258. name: "Micro",
  4259. height: math.unit(3, "inches"),
  4260. default: true
  4261. },
  4262. {
  4263. name: "Normal",
  4264. height: math.unit(5 + 5 / 12, "feet")
  4265. }
  4266. ]
  4267. ))
  4268. characterMakers.push(() => makeCharacter(
  4269. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4270. {
  4271. front: {
  4272. height: math.unit(6, "feet"),
  4273. weight: math.unit(300, "lbs"),
  4274. name: "Front",
  4275. image: {
  4276. source: "./media/characters/tyrnn/front.svg"
  4277. }
  4278. }
  4279. },
  4280. [
  4281. {
  4282. name: "Main Height",
  4283. height: math.unit(355, "feet"),
  4284. default: true
  4285. },
  4286. {
  4287. name: "Fave. Height",
  4288. height: math.unit(2400, "feet")
  4289. }
  4290. ]
  4291. ))
  4292. characterMakers.push(() => makeCharacter(
  4293. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4294. {
  4295. front: {
  4296. height: math.unit(6, "feet"),
  4297. weight: math.unit(300, "lbs"),
  4298. name: "Front",
  4299. image: {
  4300. source: "./media/characters/appledectomy/front.svg"
  4301. }
  4302. }
  4303. },
  4304. [
  4305. {
  4306. name: "Macro",
  4307. height: math.unit(2500, "feet")
  4308. },
  4309. {
  4310. name: "Megamacro",
  4311. height: math.unit(50, "miles"),
  4312. default: true
  4313. },
  4314. {
  4315. name: "Gigamacro",
  4316. height: math.unit(5000, "miles")
  4317. },
  4318. {
  4319. name: "Teramacro",
  4320. height: math.unit(250000, "miles")
  4321. },
  4322. ]
  4323. ))
  4324. characterMakers.push(() => makeCharacter(
  4325. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4326. {
  4327. front: {
  4328. height: math.unit(6, "feet"),
  4329. weight: math.unit(200, "lbs"),
  4330. name: "Front",
  4331. image: {
  4332. source: "./media/characters/vulpes/front.svg",
  4333. extra: 573 / 543,
  4334. bottom: 0.033
  4335. }
  4336. },
  4337. side: {
  4338. height: math.unit(6, "feet"),
  4339. weight: math.unit(200, "lbs"),
  4340. name: "Side",
  4341. image: {
  4342. source: "./media/characters/vulpes/side.svg",
  4343. extra: 577 / 549,
  4344. bottom: 11 / 588
  4345. }
  4346. },
  4347. back: {
  4348. height: math.unit(6, "feet"),
  4349. weight: math.unit(200, "lbs"),
  4350. name: "Back",
  4351. image: {
  4352. source: "./media/characters/vulpes/back.svg",
  4353. extra: 573 / 549,
  4354. bottom: 20 / 593
  4355. }
  4356. },
  4357. feet: {
  4358. height: math.unit(1.276, "feet"),
  4359. name: "Feet",
  4360. image: {
  4361. source: "./media/characters/vulpes/feet.svg"
  4362. }
  4363. },
  4364. maw: {
  4365. height: math.unit(1.18, "feet"),
  4366. name: "Maw",
  4367. image: {
  4368. source: "./media/characters/vulpes/maw.svg"
  4369. }
  4370. },
  4371. },
  4372. [
  4373. {
  4374. name: "Micro",
  4375. height: math.unit(2, "inches")
  4376. },
  4377. {
  4378. name: "Normal",
  4379. height: math.unit(6.3, "feet")
  4380. },
  4381. {
  4382. name: "Macro",
  4383. height: math.unit(850, "feet")
  4384. },
  4385. {
  4386. name: "Megamacro",
  4387. height: math.unit(7500, "feet"),
  4388. default: true
  4389. },
  4390. {
  4391. name: "Gigamacro",
  4392. height: math.unit(570000, "miles")
  4393. }
  4394. ]
  4395. ))
  4396. characterMakers.push(() => makeCharacter(
  4397. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4398. {
  4399. front: {
  4400. height: math.unit(6, "feet"),
  4401. weight: math.unit(210, "lbs"),
  4402. name: "Front",
  4403. image: {
  4404. source: "./media/characters/rain-fallen/front.svg"
  4405. }
  4406. },
  4407. side: {
  4408. height: math.unit(6, "feet"),
  4409. weight: math.unit(210, "lbs"),
  4410. name: "Side",
  4411. image: {
  4412. source: "./media/characters/rain-fallen/side.svg"
  4413. }
  4414. },
  4415. back: {
  4416. height: math.unit(6, "feet"),
  4417. weight: math.unit(210, "lbs"),
  4418. name: "Back",
  4419. image: {
  4420. source: "./media/characters/rain-fallen/back.svg"
  4421. }
  4422. },
  4423. feral: {
  4424. height: math.unit(9, "feet"),
  4425. weight: math.unit(700, "lbs"),
  4426. name: "Feral",
  4427. image: {
  4428. source: "./media/characters/rain-fallen/feral.svg"
  4429. }
  4430. },
  4431. },
  4432. [
  4433. {
  4434. name: "Meddling with Mortals",
  4435. height: math.unit(8 + 8/12, "feet")
  4436. },
  4437. {
  4438. name: "Normal",
  4439. height: math.unit(5, "meter")
  4440. },
  4441. {
  4442. name: "Macro",
  4443. height: math.unit(150, "meter"),
  4444. default: true
  4445. },
  4446. {
  4447. name: "Megamacro",
  4448. height: math.unit(278e6, "meter")
  4449. },
  4450. {
  4451. name: "Gigamacro",
  4452. height: math.unit(2e9, "meter")
  4453. },
  4454. {
  4455. name: "Teramacro",
  4456. height: math.unit(8e12, "meter")
  4457. },
  4458. {
  4459. name: "Devourer",
  4460. height: math.unit(14, "zettameters")
  4461. },
  4462. {
  4463. name: "Scarlet King",
  4464. height: math.unit(18, "yottameters")
  4465. },
  4466. {
  4467. name: "Void",
  4468. height: math.unit(1e88, "yottameters")
  4469. }
  4470. ]
  4471. ))
  4472. characterMakers.push(() => makeCharacter(
  4473. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4474. {
  4475. standing: {
  4476. height: math.unit(6, "feet"),
  4477. weight: math.unit(180, "lbs"),
  4478. name: "Standing",
  4479. image: {
  4480. source: "./media/characters/zaakira/standing.svg"
  4481. }
  4482. },
  4483. laying: {
  4484. height: math.unit(3, "feet"),
  4485. weight: math.unit(180, "lbs"),
  4486. name: "Laying",
  4487. image: {
  4488. source: "./media/characters/zaakira/laying.svg"
  4489. }
  4490. },
  4491. },
  4492. [
  4493. {
  4494. name: "Normal",
  4495. height: math.unit(12, "feet")
  4496. },
  4497. {
  4498. name: "Macro",
  4499. height: math.unit(279, "feet"),
  4500. default: true
  4501. }
  4502. ]
  4503. ))
  4504. characterMakers.push(() => makeCharacter(
  4505. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4506. {
  4507. femSfw: {
  4508. height: math.unit(8, "feet"),
  4509. weight: math.unit(350, "lb"),
  4510. name: "Fem",
  4511. image: {
  4512. source: "./media/characters/sigvald/fem-sfw.svg",
  4513. extra: 182 / 164,
  4514. bottom: 8.7 / 190.5
  4515. }
  4516. },
  4517. femNsfw: {
  4518. height: math.unit(8, "feet"),
  4519. weight: math.unit(350, "lb"),
  4520. name: "Fem (NSFW)",
  4521. image: {
  4522. source: "./media/characters/sigvald/fem-nsfw.svg",
  4523. extra: 182 / 164,
  4524. bottom: 8.7 / 190.5
  4525. }
  4526. },
  4527. maleNsfw: {
  4528. height: math.unit(8, "feet"),
  4529. weight: math.unit(350, "lb"),
  4530. name: "Male (NSFW)",
  4531. image: {
  4532. source: "./media/characters/sigvald/male-nsfw.svg",
  4533. extra: 182 / 164,
  4534. bottom: 8.7 / 190.5
  4535. }
  4536. },
  4537. hermNsfw: {
  4538. height: math.unit(8, "feet"),
  4539. weight: math.unit(350, "lb"),
  4540. name: "Herm (NSFW)",
  4541. image: {
  4542. source: "./media/characters/sigvald/herm-nsfw.svg",
  4543. extra: 182 / 164,
  4544. bottom: 8.7 / 190.5
  4545. }
  4546. },
  4547. dick: {
  4548. height: math.unit(2.36, "feet"),
  4549. name: "Dick",
  4550. image: {
  4551. source: "./media/characters/sigvald/dick.svg"
  4552. }
  4553. },
  4554. eye: {
  4555. height: math.unit(0.31, "feet"),
  4556. name: "Eye",
  4557. image: {
  4558. source: "./media/characters/sigvald/eye.svg"
  4559. }
  4560. },
  4561. mouth: {
  4562. height: math.unit(0.92, "feet"),
  4563. name: "Mouth",
  4564. image: {
  4565. source: "./media/characters/sigvald/mouth.svg"
  4566. }
  4567. },
  4568. paws: {
  4569. height: math.unit(2.2, "feet"),
  4570. name: "Paws",
  4571. image: {
  4572. source: "./media/characters/sigvald/paws.svg"
  4573. }
  4574. }
  4575. },
  4576. [
  4577. {
  4578. name: "Normal",
  4579. height: math.unit(8, "feet")
  4580. },
  4581. {
  4582. name: "Large",
  4583. height: math.unit(12, "feet")
  4584. },
  4585. {
  4586. name: "Larger",
  4587. height: math.unit(20, "feet")
  4588. },
  4589. {
  4590. name: "Macro",
  4591. height: math.unit(150, "feet")
  4592. },
  4593. {
  4594. name: "Macro+",
  4595. height: math.unit(200, "feet"),
  4596. default: true
  4597. },
  4598. ]
  4599. ))
  4600. characterMakers.push(() => makeCharacter(
  4601. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4602. {
  4603. side: {
  4604. height: math.unit(12, "feet"),
  4605. weight: math.unit(2000, "kg"),
  4606. name: "Side",
  4607. image: {
  4608. source: "./media/characters/scott/side.svg",
  4609. extra: 754 / 724,
  4610. bottom: 0.069
  4611. }
  4612. },
  4613. upright: {
  4614. height: math.unit(12, "feet"),
  4615. weight: math.unit(2000, "kg"),
  4616. name: "Upright",
  4617. image: {
  4618. source: "./media/characters/scott/upright.svg",
  4619. extra: 3881 / 3722,
  4620. bottom: 0.05
  4621. }
  4622. },
  4623. },
  4624. [
  4625. {
  4626. name: "Normal",
  4627. height: math.unit(12, "feet"),
  4628. default: true
  4629. },
  4630. ]
  4631. ))
  4632. characterMakers.push(() => makeCharacter(
  4633. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4634. {
  4635. side: {
  4636. height: math.unit(8, "meters"),
  4637. weight: math.unit(84755, "lbs"),
  4638. name: "Side",
  4639. image: {
  4640. source: "./media/characters/tobias/side.svg",
  4641. extra: 1474 / 1096,
  4642. bottom: 38.9 / 1513.1235
  4643. }
  4644. },
  4645. },
  4646. [
  4647. {
  4648. name: "Normal",
  4649. height: math.unit(8, "meters"),
  4650. default: true
  4651. },
  4652. ]
  4653. ))
  4654. characterMakers.push(() => makeCharacter(
  4655. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4656. {
  4657. front: {
  4658. height: math.unit(5.5, "feet"),
  4659. weight: math.unit(400, "lbs"),
  4660. name: "Front",
  4661. image: {
  4662. source: "./media/characters/kieran/front.svg",
  4663. extra: 2694 / 2364,
  4664. bottom: 217 / 2908
  4665. }
  4666. },
  4667. side: {
  4668. height: math.unit(5.5, "feet"),
  4669. weight: math.unit(400, "lbs"),
  4670. name: "Side",
  4671. image: {
  4672. source: "./media/characters/kieran/side.svg",
  4673. extra: 875 / 777,
  4674. bottom: 84.6 / 959
  4675. }
  4676. },
  4677. },
  4678. [
  4679. {
  4680. name: "Normal",
  4681. height: math.unit(5.5, "feet"),
  4682. default: true
  4683. },
  4684. ]
  4685. ))
  4686. characterMakers.push(() => makeCharacter(
  4687. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4688. {
  4689. side: {
  4690. height: math.unit(2, "meters"),
  4691. weight: math.unit(70, "kg"),
  4692. name: "Side",
  4693. image: {
  4694. source: "./media/characters/sanya/side.svg",
  4695. bottom: 0.02,
  4696. extra: 1.02
  4697. }
  4698. },
  4699. },
  4700. [
  4701. {
  4702. name: "Small",
  4703. height: math.unit(2, "meters")
  4704. },
  4705. {
  4706. name: "Normal",
  4707. height: math.unit(3, "meters")
  4708. },
  4709. {
  4710. name: "Macro",
  4711. height: math.unit(16, "meters"),
  4712. default: true
  4713. },
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4718. {
  4719. front: {
  4720. height: math.unit(2, "meters"),
  4721. weight: math.unit(120, "kg"),
  4722. name: "Front",
  4723. image: {
  4724. source: "./media/characters/miranda/front.svg",
  4725. extra: 195 / 185,
  4726. bottom: 10.9 / 206.5
  4727. }
  4728. },
  4729. back: {
  4730. height: math.unit(2, "meters"),
  4731. weight: math.unit(120, "kg"),
  4732. name: "Back",
  4733. image: {
  4734. source: "./media/characters/miranda/back.svg",
  4735. extra: 201 / 193,
  4736. bottom: 2.3 / 203.7
  4737. }
  4738. },
  4739. },
  4740. [
  4741. {
  4742. name: "Normal",
  4743. height: math.unit(10, "feet"),
  4744. default: true
  4745. }
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "James", species: ["deer"], tags: ["anthro"] },
  4750. {
  4751. side: {
  4752. height: math.unit(2, "meters"),
  4753. weight: math.unit(100, "kg"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/james/front.svg",
  4757. extra: 10 / 8.5
  4758. }
  4759. },
  4760. },
  4761. [
  4762. {
  4763. name: "Normal",
  4764. height: math.unit(8.5, "feet"),
  4765. default: true
  4766. }
  4767. ]
  4768. ))
  4769. characterMakers.push(() => makeCharacter(
  4770. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4771. {
  4772. side: {
  4773. height: math.unit(9.5, "feet"),
  4774. weight: math.unit(2500, "lbs"),
  4775. name: "Side",
  4776. image: {
  4777. source: "./media/characters/heather/side.svg"
  4778. }
  4779. },
  4780. },
  4781. [
  4782. {
  4783. name: "Normal",
  4784. height: math.unit(9.5, "feet"),
  4785. default: true
  4786. }
  4787. ]
  4788. ))
  4789. characterMakers.push(() => makeCharacter(
  4790. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4791. {
  4792. side: {
  4793. height: math.unit(6.5, "feet"),
  4794. weight: math.unit(400, "lbs"),
  4795. name: "Side",
  4796. image: {
  4797. source: "./media/characters/lukas/side.svg",
  4798. extra: 7.25 / 6.5
  4799. }
  4800. },
  4801. },
  4802. [
  4803. {
  4804. name: "Normal",
  4805. height: math.unit(6.5, "feet"),
  4806. default: true
  4807. }
  4808. ]
  4809. ))
  4810. characterMakers.push(() => makeCharacter(
  4811. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4812. {
  4813. side: {
  4814. height: math.unit(5, "feet"),
  4815. weight: math.unit(3000, "lbs"),
  4816. name: "Side",
  4817. image: {
  4818. source: "./media/characters/louise/side.svg"
  4819. }
  4820. },
  4821. },
  4822. [
  4823. {
  4824. name: "Normal",
  4825. height: math.unit(5, "feet"),
  4826. default: true
  4827. }
  4828. ]
  4829. ))
  4830. characterMakers.push(() => makeCharacter(
  4831. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4832. {
  4833. side: {
  4834. height: math.unit(6, "feet"),
  4835. weight: math.unit(150, "lbs"),
  4836. name: "Side",
  4837. image: {
  4838. source: "./media/characters/ramona/side.svg"
  4839. }
  4840. },
  4841. },
  4842. [
  4843. {
  4844. name: "Normal",
  4845. height: math.unit(5.3, "meters"),
  4846. default: true
  4847. },
  4848. {
  4849. name: "Macro",
  4850. height: math.unit(20, "stories")
  4851. },
  4852. {
  4853. name: "Macro+",
  4854. height: math.unit(50, "stories")
  4855. },
  4856. ]
  4857. ))
  4858. characterMakers.push(() => makeCharacter(
  4859. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4860. {
  4861. standing: {
  4862. height: math.unit(5.75, "feet"),
  4863. weight: math.unit(160, "lbs"),
  4864. name: "Standing",
  4865. image: {
  4866. source: "./media/characters/deerpuff/standing.svg",
  4867. extra: 682 / 624
  4868. }
  4869. },
  4870. sitting: {
  4871. height: math.unit(5.75 / 1.79, "feet"),
  4872. weight: math.unit(160, "lbs"),
  4873. name: "Sitting",
  4874. image: {
  4875. source: "./media/characters/deerpuff/sitting.svg",
  4876. bottom: 44 / 400,
  4877. extra: 1
  4878. }
  4879. },
  4880. taurLaying: {
  4881. height: math.unit(6, "feet"),
  4882. weight: math.unit(400, "lbs"),
  4883. name: "Taur (Laying)",
  4884. image: {
  4885. source: "./media/characters/deerpuff/taur-laying.svg"
  4886. }
  4887. },
  4888. },
  4889. [
  4890. {
  4891. name: "Puffball",
  4892. height: math.unit(6, "inches")
  4893. },
  4894. {
  4895. name: "Normalpuff",
  4896. height: math.unit(5.75, "feet")
  4897. },
  4898. {
  4899. name: "Macropuff",
  4900. height: math.unit(1500, "feet"),
  4901. default: true
  4902. },
  4903. {
  4904. name: "Megapuff",
  4905. height: math.unit(500, "miles")
  4906. },
  4907. {
  4908. name: "Gigapuff",
  4909. height: math.unit(250000, "miles")
  4910. },
  4911. {
  4912. name: "Omegapuff",
  4913. height: math.unit(1000, "lightyears")
  4914. },
  4915. ]
  4916. ))
  4917. characterMakers.push(() => makeCharacter(
  4918. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4919. {
  4920. stomping: {
  4921. height: math.unit(6, "feet"),
  4922. weight: math.unit(170, "lbs"),
  4923. name: "Stomping",
  4924. image: {
  4925. source: "./media/characters/vivian/stomping.svg"
  4926. }
  4927. },
  4928. sitting: {
  4929. height: math.unit(6 / 1.75, "feet"),
  4930. weight: math.unit(170, "lbs"),
  4931. name: "Sitting",
  4932. image: {
  4933. source: "./media/characters/vivian/sitting.svg",
  4934. bottom: 1 / 6.4,
  4935. extra: 1,
  4936. }
  4937. },
  4938. },
  4939. [
  4940. {
  4941. name: "Normal",
  4942. height: math.unit(7, "feet"),
  4943. default: true
  4944. },
  4945. {
  4946. name: "Macro",
  4947. height: math.unit(10, "stories")
  4948. },
  4949. {
  4950. name: "Macro+",
  4951. height: math.unit(30, "stories")
  4952. },
  4953. {
  4954. name: "Megamacro",
  4955. height: math.unit(10, "miles")
  4956. },
  4957. {
  4958. name: "Megamacro+",
  4959. height: math.unit(2750000, "meters")
  4960. },
  4961. ]
  4962. ))
  4963. characterMakers.push(() => makeCharacter(
  4964. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4965. {
  4966. front: {
  4967. height: math.unit(6, "feet"),
  4968. weight: math.unit(160, "lbs"),
  4969. name: "Front",
  4970. image: {
  4971. source: "./media/characters/prince/front.svg",
  4972. extra: 3400 / 3000
  4973. }
  4974. },
  4975. jumping: {
  4976. height: math.unit(6, "feet"),
  4977. weight: math.unit(160, "lbs"),
  4978. name: "Jumping",
  4979. image: {
  4980. source: "./media/characters/prince/jump.svg",
  4981. extra: 2555 / 2134
  4982. }
  4983. },
  4984. },
  4985. [
  4986. {
  4987. name: "Normal",
  4988. height: math.unit(7.75, "feet"),
  4989. default: true
  4990. },
  4991. {
  4992. name: "Not cute",
  4993. height: math.unit(17, "feet")
  4994. },
  4995. {
  4996. name: "I said NOT",
  4997. height: math.unit(91, "feet")
  4998. },
  4999. {
  5000. name: "Please stop",
  5001. height: math.unit(560, "feet")
  5002. },
  5003. {
  5004. name: "What have you done",
  5005. height: math.unit(2200, "feet")
  5006. },
  5007. {
  5008. name: "Deer God",
  5009. height: math.unit(3.6, "miles")
  5010. },
  5011. ]
  5012. ))
  5013. characterMakers.push(() => makeCharacter(
  5014. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5015. {
  5016. standing: {
  5017. height: math.unit(6, "feet"),
  5018. weight: math.unit(300, "lbs"),
  5019. name: "Standing",
  5020. image: {
  5021. source: "./media/characters/psymon/standing.svg",
  5022. extra: 1888 / 1810,
  5023. bottom: 0.05
  5024. }
  5025. },
  5026. slithering: {
  5027. height: math.unit(6, "feet"),
  5028. weight: math.unit(300, "lbs"),
  5029. name: "Slithering",
  5030. image: {
  5031. source: "./media/characters/psymon/slithering.svg",
  5032. extra: 1330 / 1224
  5033. }
  5034. },
  5035. slitheringAlt: {
  5036. height: math.unit(6, "feet"),
  5037. weight: math.unit(300, "lbs"),
  5038. name: "Slithering (Alt)",
  5039. image: {
  5040. source: "./media/characters/psymon/slithering-alt.svg",
  5041. extra: 1330 / 1224
  5042. }
  5043. },
  5044. },
  5045. [
  5046. {
  5047. name: "Normal",
  5048. height: math.unit(11.25, "feet"),
  5049. default: true
  5050. },
  5051. {
  5052. name: "Large",
  5053. height: math.unit(27, "feet")
  5054. },
  5055. {
  5056. name: "Giant",
  5057. height: math.unit(87, "feet")
  5058. },
  5059. {
  5060. name: "Macro",
  5061. height: math.unit(365, "feet")
  5062. },
  5063. {
  5064. name: "Megamacro",
  5065. height: math.unit(3, "miles")
  5066. },
  5067. {
  5068. name: "World Serpent",
  5069. height: math.unit(8000, "miles")
  5070. },
  5071. ]
  5072. ))
  5073. characterMakers.push(() => makeCharacter(
  5074. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5075. {
  5076. front: {
  5077. height: math.unit(6, "feet"),
  5078. weight: math.unit(180, "lbs"),
  5079. name: "Front",
  5080. image: {
  5081. source: "./media/characters/daimos/front.svg",
  5082. extra: 4160 / 3897,
  5083. bottom: 0.021
  5084. }
  5085. }
  5086. },
  5087. [
  5088. {
  5089. name: "Normal",
  5090. height: math.unit(8, "feet"),
  5091. default: true
  5092. },
  5093. {
  5094. name: "Big Dog",
  5095. height: math.unit(22, "feet")
  5096. },
  5097. {
  5098. name: "Macro",
  5099. height: math.unit(127, "feet")
  5100. },
  5101. {
  5102. name: "Megamacro",
  5103. height: math.unit(3600, "feet")
  5104. },
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5109. {
  5110. side: {
  5111. height: math.unit(6, "feet"),
  5112. weight: math.unit(180, "lbs"),
  5113. name: "Side",
  5114. image: {
  5115. source: "./media/characters/blake/side.svg",
  5116. extra: 1212 / 1120,
  5117. bottom: 0.05
  5118. }
  5119. },
  5120. crouched: {
  5121. height: math.unit(6 * 0.57, "feet"),
  5122. weight: math.unit(180, "lbs"),
  5123. name: "Crouched",
  5124. image: {
  5125. source: "./media/characters/blake/crouched.svg",
  5126. extra: 840 / 587,
  5127. bottom: 0.04
  5128. }
  5129. },
  5130. bent: {
  5131. height: math.unit(6 * 0.75, "feet"),
  5132. weight: math.unit(180, "lbs"),
  5133. name: "Bent",
  5134. image: {
  5135. source: "./media/characters/blake/bent.svg",
  5136. extra: 592 / 544,
  5137. bottom: 0.035
  5138. }
  5139. },
  5140. },
  5141. [
  5142. {
  5143. name: "Normal",
  5144. height: math.unit(8 + 1 / 6, "feet"),
  5145. default: true
  5146. },
  5147. {
  5148. name: "Big Backside",
  5149. height: math.unit(37, "feet")
  5150. },
  5151. {
  5152. name: "Subway Shredder",
  5153. height: math.unit(72, "feet")
  5154. },
  5155. {
  5156. name: "City Carver",
  5157. height: math.unit(1675, "feet")
  5158. },
  5159. {
  5160. name: "Tectonic Tweaker",
  5161. height: math.unit(2300, "miles")
  5162. },
  5163. ]
  5164. ))
  5165. characterMakers.push(() => makeCharacter(
  5166. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5167. {
  5168. front: {
  5169. height: math.unit(6, "feet"),
  5170. weight: math.unit(180, "lbs"),
  5171. name: "Front",
  5172. image: {
  5173. source: "./media/characters/guisetto/front.svg",
  5174. extra: 856 / 817,
  5175. bottom: 0.06
  5176. }
  5177. },
  5178. airborne: {
  5179. height: math.unit(6, "feet"),
  5180. weight: math.unit(180, "lbs"),
  5181. name: "Airborne",
  5182. image: {
  5183. source: "./media/characters/guisetto/airborne.svg",
  5184. extra: 584 / 525
  5185. }
  5186. },
  5187. },
  5188. [
  5189. {
  5190. name: "Normal",
  5191. height: math.unit(10 + 11 / 12, "feet"),
  5192. default: true
  5193. },
  5194. {
  5195. name: "Large",
  5196. height: math.unit(35, "feet")
  5197. },
  5198. {
  5199. name: "Macro",
  5200. height: math.unit(475, "feet")
  5201. },
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5206. {
  5207. front: {
  5208. height: math.unit(6, "feet"),
  5209. weight: math.unit(180, "lbs"),
  5210. name: "Front",
  5211. image: {
  5212. source: "./media/characters/luxor/front.svg",
  5213. extra: 2940 / 2152
  5214. }
  5215. },
  5216. back: {
  5217. height: math.unit(6, "feet"),
  5218. weight: math.unit(180, "lbs"),
  5219. name: "Back",
  5220. image: {
  5221. source: "./media/characters/luxor/back.svg",
  5222. extra: 1083 / 960
  5223. }
  5224. },
  5225. },
  5226. [
  5227. {
  5228. name: "Normal",
  5229. height: math.unit(5 + 5 / 6, "feet"),
  5230. default: true
  5231. },
  5232. {
  5233. name: "Lamp",
  5234. height: math.unit(50, "feet")
  5235. },
  5236. {
  5237. name: "Lämp",
  5238. height: math.unit(300, "feet")
  5239. },
  5240. {
  5241. name: "The sun is a lamp",
  5242. height: math.unit(250000, "miles")
  5243. },
  5244. ]
  5245. ))
  5246. characterMakers.push(() => makeCharacter(
  5247. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5248. {
  5249. front: {
  5250. height: math.unit(6, "feet"),
  5251. weight: math.unit(50, "lbs"),
  5252. name: "Front",
  5253. image: {
  5254. source: "./media/characters/huoyan/front.svg"
  5255. }
  5256. },
  5257. side: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(180, "lbs"),
  5260. name: "Side",
  5261. image: {
  5262. source: "./media/characters/huoyan/side.svg"
  5263. }
  5264. },
  5265. },
  5266. [
  5267. {
  5268. name: "Chef",
  5269. height: math.unit(9, "feet")
  5270. },
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(65, "feet"),
  5274. default: true
  5275. },
  5276. {
  5277. name: "Macro",
  5278. height: math.unit(780, "feet")
  5279. },
  5280. {
  5281. name: "Flaming Mountain",
  5282. height: math.unit(4.8, "miles")
  5283. },
  5284. {
  5285. name: "Celestial",
  5286. height: math.unit(765000, "miles")
  5287. },
  5288. ]
  5289. ))
  5290. characterMakers.push(() => makeCharacter(
  5291. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5292. {
  5293. front: {
  5294. height: math.unit(5 + 3 / 4, "feet"),
  5295. weight: math.unit(120, "lbs"),
  5296. name: "Front",
  5297. image: {
  5298. source: "./media/characters/tails/front.svg"
  5299. }
  5300. }
  5301. },
  5302. [
  5303. {
  5304. name: "Normal",
  5305. height: math.unit(5 + 3 / 4, "feet"),
  5306. default: true
  5307. }
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5312. {
  5313. front: {
  5314. height: math.unit(4, "feet"),
  5315. weight: math.unit(50, "lbs"),
  5316. name: "Front",
  5317. image: {
  5318. source: "./media/characters/rainy/front.svg"
  5319. }
  5320. }
  5321. },
  5322. [
  5323. {
  5324. name: "Macro",
  5325. height: math.unit(800, "feet"),
  5326. default: true
  5327. }
  5328. ]
  5329. ))
  5330. characterMakers.push(() => makeCharacter(
  5331. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5332. {
  5333. front: {
  5334. height: math.unit(6, "feet"),
  5335. weight: math.unit(150, "lbs"),
  5336. name: "Front",
  5337. image: {
  5338. source: "./media/characters/rainier/front.svg"
  5339. }
  5340. }
  5341. },
  5342. [
  5343. {
  5344. name: "Micro",
  5345. height: math.unit(2, "mm"),
  5346. default: true
  5347. }
  5348. ]
  5349. ))
  5350. characterMakers.push(() => makeCharacter(
  5351. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5352. {
  5353. front: {
  5354. height: math.unit(6, "feet"),
  5355. weight: math.unit(180, "lbs"),
  5356. name: "Front",
  5357. image: {
  5358. source: "./media/characters/andy/front.svg"
  5359. }
  5360. }
  5361. },
  5362. [
  5363. {
  5364. name: "Normal",
  5365. height: math.unit(8, "feet"),
  5366. default: true
  5367. },
  5368. {
  5369. name: "Macro",
  5370. height: math.unit(1000, "feet")
  5371. },
  5372. {
  5373. name: "Megamacro",
  5374. height: math.unit(5, "miles")
  5375. },
  5376. {
  5377. name: "Gigamacro",
  5378. height: math.unit(5000, "miles")
  5379. },
  5380. ]
  5381. ))
  5382. characterMakers.push(() => makeCharacter(
  5383. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5384. {
  5385. front: {
  5386. height: math.unit(6, "feet"),
  5387. weight: math.unit(210, "lbs"),
  5388. name: "Front",
  5389. image: {
  5390. source: "./media/characters/cimmaron/front-sfw.svg",
  5391. extra: 701 / 676,
  5392. bottom: 0.046
  5393. }
  5394. },
  5395. back: {
  5396. height: math.unit(6, "feet"),
  5397. weight: math.unit(210, "lbs"),
  5398. name: "Back",
  5399. image: {
  5400. source: "./media/characters/cimmaron/back-sfw.svg",
  5401. extra: 701 / 676,
  5402. bottom: 0.046
  5403. }
  5404. },
  5405. frontNsfw: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(210, "lbs"),
  5408. name: "Front (NSFW)",
  5409. image: {
  5410. source: "./media/characters/cimmaron/front-nsfw.svg",
  5411. extra: 701 / 676,
  5412. bottom: 0.046
  5413. }
  5414. },
  5415. backNsfw: {
  5416. height: math.unit(6, "feet"),
  5417. weight: math.unit(210, "lbs"),
  5418. name: "Back (NSFW)",
  5419. image: {
  5420. source: "./media/characters/cimmaron/back-nsfw.svg",
  5421. extra: 701 / 676,
  5422. bottom: 0.046
  5423. }
  5424. },
  5425. dick: {
  5426. height: math.unit(1.714, "feet"),
  5427. name: "Dick",
  5428. image: {
  5429. source: "./media/characters/cimmaron/dick.svg"
  5430. }
  5431. },
  5432. },
  5433. [
  5434. {
  5435. name: "Normal",
  5436. height: math.unit(6, "feet"),
  5437. default: true
  5438. },
  5439. {
  5440. name: "Macro Mayor",
  5441. height: math.unit(350, "meters")
  5442. },
  5443. ]
  5444. ))
  5445. characterMakers.push(() => makeCharacter(
  5446. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5447. {
  5448. front: {
  5449. height: math.unit(6, "feet"),
  5450. weight: math.unit(200, "lbs"),
  5451. name: "Front",
  5452. image: {
  5453. source: "./media/characters/akari/front.svg",
  5454. extra: 962 / 901,
  5455. bottom: 0.04
  5456. }
  5457. }
  5458. },
  5459. [
  5460. {
  5461. name: "Micro",
  5462. height: math.unit(5, "inches"),
  5463. default: true
  5464. },
  5465. {
  5466. name: "Normal",
  5467. height: math.unit(7, "feet")
  5468. },
  5469. ]
  5470. ))
  5471. characterMakers.push(() => makeCharacter(
  5472. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5473. {
  5474. front: {
  5475. height: math.unit(6, "feet"),
  5476. weight: math.unit(140, "lbs"),
  5477. name: "Front",
  5478. image: {
  5479. source: "./media/characters/cynosura/front.svg",
  5480. extra: 896 / 847
  5481. }
  5482. },
  5483. back: {
  5484. height: math.unit(6, "feet"),
  5485. weight: math.unit(140, "lbs"),
  5486. name: "Back",
  5487. image: {
  5488. source: "./media/characters/cynosura/back.svg",
  5489. extra: 1365 / 1250
  5490. }
  5491. },
  5492. },
  5493. [
  5494. {
  5495. name: "Micro",
  5496. height: math.unit(4, "inches")
  5497. },
  5498. {
  5499. name: "Normal",
  5500. height: math.unit(5.75, "feet"),
  5501. default: true
  5502. },
  5503. {
  5504. name: "Tall",
  5505. height: math.unit(10, "feet")
  5506. },
  5507. {
  5508. name: "Big",
  5509. height: math.unit(20, "feet")
  5510. },
  5511. {
  5512. name: "Macro",
  5513. height: math.unit(50, "feet")
  5514. },
  5515. ]
  5516. ))
  5517. characterMakers.push(() => makeCharacter(
  5518. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5519. {
  5520. front: {
  5521. height: math.unit(6, "feet"),
  5522. weight: math.unit(170, "lbs"),
  5523. name: "Front",
  5524. image: {
  5525. source: "./media/characters/gin/front.svg",
  5526. extra: 1.053,
  5527. bottom: 0.025
  5528. }
  5529. },
  5530. foot: {
  5531. height: math.unit(6 / 4.25, "feet"),
  5532. name: "Foot",
  5533. image: {
  5534. source: "./media/characters/gin/foot.svg"
  5535. }
  5536. },
  5537. sole: {
  5538. height: math.unit(6 / 4.40, "feet"),
  5539. name: "Sole",
  5540. image: {
  5541. source: "./media/characters/gin/sole.svg"
  5542. }
  5543. },
  5544. },
  5545. [
  5546. {
  5547. name: "Normal",
  5548. height: math.unit(13 + 2 / 12, "feet")
  5549. },
  5550. {
  5551. name: "Macro",
  5552. height: math.unit(1500, "feet")
  5553. },
  5554. {
  5555. name: "Megamacro",
  5556. height: math.unit(200, "miles"),
  5557. default: true
  5558. },
  5559. {
  5560. name: "Gigamacro",
  5561. height: math.unit(500, "megameters")
  5562. },
  5563. {
  5564. name: "Teramacro",
  5565. height: math.unit(15, "lightyears")
  5566. }
  5567. ]
  5568. ))
  5569. characterMakers.push(() => makeCharacter(
  5570. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5571. {
  5572. front: {
  5573. height: math.unit(6 + 1 / 6, "feet"),
  5574. weight: math.unit(178, "lbs"),
  5575. name: "Front",
  5576. image: {
  5577. source: "./media/characters/guy/front.svg"
  5578. }
  5579. }
  5580. },
  5581. [
  5582. {
  5583. name: "Normal",
  5584. height: math.unit(6 + 1 / 6, "feet"),
  5585. default: true
  5586. },
  5587. {
  5588. name: "Large",
  5589. height: math.unit(25 + 7 / 12, "feet")
  5590. },
  5591. {
  5592. name: "Macro",
  5593. height: math.unit(60 + 9 / 12, "feet")
  5594. },
  5595. {
  5596. name: "Macro+",
  5597. height: math.unit(246, "feet")
  5598. },
  5599. {
  5600. name: "Macro++",
  5601. height: math.unit(878, "feet")
  5602. }
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5607. {
  5608. front: {
  5609. height: math.unit(9, "feet"),
  5610. weight: math.unit(800, "lbs"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/tiberius/front.svg",
  5614. extra: 2295 / 2071
  5615. }
  5616. },
  5617. back: {
  5618. height: math.unit(9, "feet"),
  5619. weight: math.unit(800, "lbs"),
  5620. name: "Back",
  5621. image: {
  5622. source: "./media/characters/tiberius/back.svg",
  5623. extra: 2373 / 2160
  5624. }
  5625. },
  5626. },
  5627. [
  5628. {
  5629. name: "Normal",
  5630. height: math.unit(9, "feet"),
  5631. default: true
  5632. }
  5633. ]
  5634. ))
  5635. characterMakers.push(() => makeCharacter(
  5636. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5637. {
  5638. front: {
  5639. height: math.unit(6, "feet"),
  5640. weight: math.unit(600, "lbs"),
  5641. name: "Front",
  5642. image: {
  5643. source: "./media/characters/surgo/front.svg",
  5644. extra: 3591 / 2227
  5645. }
  5646. },
  5647. back: {
  5648. height: math.unit(6, "feet"),
  5649. weight: math.unit(600, "lbs"),
  5650. name: "Back",
  5651. image: {
  5652. source: "./media/characters/surgo/back.svg",
  5653. extra: 3557 / 2228
  5654. }
  5655. },
  5656. laying: {
  5657. height: math.unit(6 * 0.85, "feet"),
  5658. weight: math.unit(600, "lbs"),
  5659. name: "Laying",
  5660. image: {
  5661. source: "./media/characters/surgo/laying.svg"
  5662. }
  5663. },
  5664. },
  5665. [
  5666. {
  5667. name: "Normal",
  5668. height: math.unit(6, "feet"),
  5669. default: true
  5670. }
  5671. ]
  5672. ))
  5673. characterMakers.push(() => makeCharacter(
  5674. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5675. {
  5676. side: {
  5677. height: math.unit(6, "feet"),
  5678. weight: math.unit(150, "lbs"),
  5679. name: "Side",
  5680. image: {
  5681. source: "./media/characters/cibus/side.svg",
  5682. extra: 800 / 400
  5683. }
  5684. },
  5685. },
  5686. [
  5687. {
  5688. name: "Normal",
  5689. height: math.unit(6, "feet"),
  5690. default: true
  5691. }
  5692. ]
  5693. ))
  5694. characterMakers.push(() => makeCharacter(
  5695. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5696. {
  5697. front: {
  5698. height: math.unit(6, "feet"),
  5699. weight: math.unit(240, "lbs"),
  5700. name: "Front",
  5701. image: {
  5702. source: "./media/characters/nibbles/front.svg"
  5703. }
  5704. },
  5705. side: {
  5706. height: math.unit(6, "feet"),
  5707. weight: math.unit(240, "lbs"),
  5708. name: "Side",
  5709. image: {
  5710. source: "./media/characters/nibbles/side.svg"
  5711. }
  5712. },
  5713. },
  5714. [
  5715. {
  5716. name: "Normal",
  5717. height: math.unit(9, "feet"),
  5718. default: true
  5719. }
  5720. ]
  5721. ))
  5722. characterMakers.push(() => makeCharacter(
  5723. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5724. {
  5725. side: {
  5726. height: math.unit(5 + 1 / 6, "feet"),
  5727. weight: math.unit(130, "lbs"),
  5728. name: "Side",
  5729. image: {
  5730. source: "./media/characters/rikky/side.svg",
  5731. extra: 851 / 801
  5732. }
  5733. },
  5734. },
  5735. [
  5736. {
  5737. name: "Normal",
  5738. height: math.unit(5 + 1 / 6, "feet")
  5739. },
  5740. {
  5741. name: "Macro",
  5742. height: math.unit(152, "feet"),
  5743. default: true
  5744. },
  5745. {
  5746. name: "Megamacro",
  5747. height: math.unit(7, "miles")
  5748. }
  5749. ]
  5750. ))
  5751. characterMakers.push(() => makeCharacter(
  5752. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5753. {
  5754. side: {
  5755. height: math.unit(370, "cm"),
  5756. weight: math.unit(350, "lbs"),
  5757. name: "Side",
  5758. image: {
  5759. source: "./media/characters/malfressa/side.svg"
  5760. }
  5761. },
  5762. walking: {
  5763. height: math.unit(370, "cm"),
  5764. weight: math.unit(350, "lbs"),
  5765. name: "Walking",
  5766. image: {
  5767. source: "./media/characters/malfressa/walking.svg"
  5768. }
  5769. },
  5770. feral: {
  5771. height: math.unit(2500, "cm"),
  5772. weight: math.unit(100000, "lbs"),
  5773. name: "Feral",
  5774. image: {
  5775. source: "./media/characters/malfressa/feral.svg",
  5776. extra: 2108 / 837,
  5777. bottom: 0.02
  5778. }
  5779. },
  5780. },
  5781. [
  5782. {
  5783. name: "Normal",
  5784. height: math.unit(370, "cm")
  5785. },
  5786. {
  5787. name: "Macro",
  5788. height: math.unit(300, "meters"),
  5789. default: true
  5790. }
  5791. ]
  5792. ))
  5793. characterMakers.push(() => makeCharacter(
  5794. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5795. {
  5796. front: {
  5797. height: math.unit(6, "feet"),
  5798. weight: math.unit(60, "kg"),
  5799. name: "Front",
  5800. image: {
  5801. source: "./media/characters/jaro/front.svg"
  5802. }
  5803. },
  5804. back: {
  5805. height: math.unit(6, "feet"),
  5806. weight: math.unit(60, "kg"),
  5807. name: "Back",
  5808. image: {
  5809. source: "./media/characters/jaro/back.svg"
  5810. }
  5811. },
  5812. },
  5813. [
  5814. {
  5815. name: "Micro",
  5816. height: math.unit(7, "inches")
  5817. },
  5818. {
  5819. name: "Normal",
  5820. height: math.unit(5.5, "feet"),
  5821. default: true
  5822. },
  5823. {
  5824. name: "Minimacro",
  5825. height: math.unit(20, "feet")
  5826. },
  5827. {
  5828. name: "Macro",
  5829. height: math.unit(200, "meters")
  5830. }
  5831. ]
  5832. ))
  5833. characterMakers.push(() => makeCharacter(
  5834. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5835. {
  5836. front: {
  5837. height: math.unit(6, "feet"),
  5838. weight: math.unit(195, "lb"),
  5839. name: "Front",
  5840. image: {
  5841. source: "./media/characters/rogue/front.svg"
  5842. }
  5843. },
  5844. },
  5845. [
  5846. {
  5847. name: "Macro",
  5848. height: math.unit(90, "feet"),
  5849. default: true
  5850. },
  5851. ]
  5852. ))
  5853. characterMakers.push(() => makeCharacter(
  5854. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5855. {
  5856. front: {
  5857. height: math.unit(5 + 8 / 12, "feet"),
  5858. weight: math.unit(140, "lb"),
  5859. name: "Front",
  5860. image: {
  5861. source: "./media/characters/piper/front.svg",
  5862. extra: 3948/3655,
  5863. bottom: 0/3948
  5864. }
  5865. },
  5866. },
  5867. [
  5868. {
  5869. name: "Micro",
  5870. height: math.unit(2, "inches")
  5871. },
  5872. {
  5873. name: "Normal",
  5874. height: math.unit(5 + 8 / 12, "feet")
  5875. },
  5876. {
  5877. name: "Macro",
  5878. height: math.unit(250, "feet"),
  5879. default: true
  5880. },
  5881. {
  5882. name: "Megamacro",
  5883. height: math.unit(7, "miles")
  5884. },
  5885. ]
  5886. ))
  5887. characterMakers.push(() => makeCharacter(
  5888. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5889. {
  5890. front: {
  5891. height: math.unit(6, "feet"),
  5892. weight: math.unit(220, "lb"),
  5893. name: "Front",
  5894. image: {
  5895. source: "./media/characters/gemini/front.svg"
  5896. }
  5897. },
  5898. back: {
  5899. height: math.unit(6, "feet"),
  5900. weight: math.unit(220, "lb"),
  5901. name: "Back",
  5902. image: {
  5903. source: "./media/characters/gemini/back.svg"
  5904. }
  5905. },
  5906. kneeling: {
  5907. height: math.unit(6 / 1.5, "feet"),
  5908. weight: math.unit(220, "lb"),
  5909. name: "Kneeling",
  5910. image: {
  5911. source: "./media/characters/gemini/kneeling.svg",
  5912. bottom: 0.02
  5913. }
  5914. },
  5915. },
  5916. [
  5917. {
  5918. name: "Macro",
  5919. height: math.unit(300, "meters"),
  5920. default: true
  5921. },
  5922. {
  5923. name: "Megamacro",
  5924. height: math.unit(6900, "meters")
  5925. },
  5926. ]
  5927. ))
  5928. characterMakers.push(() => makeCharacter(
  5929. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5930. {
  5931. anthro: {
  5932. height: math.unit(2.35, "meters"),
  5933. weight: math.unit(73, "kg"),
  5934. name: "Anthro",
  5935. image: {
  5936. source: "./media/characters/alicia/anthro.svg",
  5937. extra: 2571 / 2385,
  5938. bottom: 75 / 2648
  5939. }
  5940. },
  5941. paw: {
  5942. height: math.unit(1.32, "feet"),
  5943. name: "Paw",
  5944. image: {
  5945. source: "./media/characters/alicia/paw.svg"
  5946. }
  5947. },
  5948. feral: {
  5949. height: math.unit(1.69, "meters"),
  5950. weight: math.unit(73, "kg"),
  5951. name: "Feral",
  5952. image: {
  5953. source: "./media/characters/alicia/feral.svg",
  5954. extra: 2123 / 1715,
  5955. bottom: 222 / 2349
  5956. }
  5957. },
  5958. },
  5959. [
  5960. {
  5961. name: "Normal",
  5962. height: math.unit(2.35, "meters")
  5963. },
  5964. {
  5965. name: "Macro",
  5966. height: math.unit(60, "meters"),
  5967. default: true
  5968. },
  5969. {
  5970. name: "Megamacro",
  5971. height: math.unit(10000, "kilometers")
  5972. },
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5977. {
  5978. front: {
  5979. height: math.unit(7, "feet"),
  5980. weight: math.unit(250, "lbs"),
  5981. name: "Front",
  5982. image: {
  5983. source: "./media/characters/archy/front.svg"
  5984. }
  5985. }
  5986. },
  5987. [
  5988. {
  5989. name: "Micro",
  5990. height: math.unit(1, "inch")
  5991. },
  5992. {
  5993. name: "Shorty",
  5994. height: math.unit(5, "feet")
  5995. },
  5996. {
  5997. name: "Normal",
  5998. height: math.unit(7, "feet")
  5999. },
  6000. {
  6001. name: "Macro",
  6002. height: math.unit(600, "meters"),
  6003. default: true
  6004. },
  6005. {
  6006. name: "Megamacro",
  6007. height: math.unit(1, "mile")
  6008. },
  6009. ]
  6010. ))
  6011. characterMakers.push(() => makeCharacter(
  6012. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6013. {
  6014. front: {
  6015. height: math.unit(1.65, "meters"),
  6016. weight: math.unit(74, "kg"),
  6017. name: "Front",
  6018. image: {
  6019. source: "./media/characters/berri/front.svg",
  6020. extra: 857 / 837,
  6021. bottom: 18 / 877
  6022. }
  6023. },
  6024. bum: {
  6025. height: math.unit(1.46, "feet"),
  6026. name: "Bum",
  6027. image: {
  6028. source: "./media/characters/berri/bum.svg"
  6029. }
  6030. },
  6031. mouth: {
  6032. height: math.unit(0.44, "feet"),
  6033. name: "Mouth",
  6034. image: {
  6035. source: "./media/characters/berri/mouth.svg"
  6036. }
  6037. },
  6038. paw: {
  6039. height: math.unit(0.826, "feet"),
  6040. name: "Paw",
  6041. image: {
  6042. source: "./media/characters/berri/paw.svg"
  6043. }
  6044. },
  6045. },
  6046. [
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(1.65, "meters")
  6050. },
  6051. {
  6052. name: "Macro",
  6053. height: math.unit(60, "m"),
  6054. default: true
  6055. },
  6056. {
  6057. name: "Megamacro",
  6058. height: math.unit(9.213, "km")
  6059. },
  6060. {
  6061. name: "Planet Eater",
  6062. height: math.unit(489, "megameters")
  6063. },
  6064. {
  6065. name: "Teramacro",
  6066. height: math.unit(2471635000000, "meters")
  6067. },
  6068. {
  6069. name: "Examacro",
  6070. height: math.unit(8.0624e+26, "meters")
  6071. }
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6076. {
  6077. front: {
  6078. height: math.unit(1.72, "meters"),
  6079. weight: math.unit(68, "kg"),
  6080. name: "Front",
  6081. image: {
  6082. source: "./media/characters/lexi/front.svg"
  6083. }
  6084. }
  6085. },
  6086. [
  6087. {
  6088. name: "Very Smol",
  6089. height: math.unit(10, "mm")
  6090. },
  6091. {
  6092. name: "Micro",
  6093. height: math.unit(6.8, "cm"),
  6094. default: true
  6095. },
  6096. {
  6097. name: "Normal",
  6098. height: math.unit(1.72, "m")
  6099. }
  6100. ]
  6101. ))
  6102. characterMakers.push(() => makeCharacter(
  6103. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6104. {
  6105. front: {
  6106. height: math.unit(1.69, "meters"),
  6107. weight: math.unit(68, "kg"),
  6108. name: "Front",
  6109. image: {
  6110. source: "./media/characters/martin/front.svg",
  6111. extra: 596 / 581
  6112. }
  6113. }
  6114. },
  6115. [
  6116. {
  6117. name: "Micro",
  6118. height: math.unit(6.85, "cm"),
  6119. default: true
  6120. },
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(1.69, "m")
  6124. }
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6129. {
  6130. front: {
  6131. height: math.unit(1.69, "meters"),
  6132. weight: math.unit(68, "kg"),
  6133. name: "Front",
  6134. image: {
  6135. source: "./media/characters/juno/front.svg"
  6136. }
  6137. }
  6138. },
  6139. [
  6140. {
  6141. name: "Micro",
  6142. height: math.unit(7, "cm")
  6143. },
  6144. {
  6145. name: "Normal",
  6146. height: math.unit(1.89, "m")
  6147. },
  6148. {
  6149. name: "Macro",
  6150. height: math.unit(353, "meters"),
  6151. default: true
  6152. }
  6153. ]
  6154. ))
  6155. characterMakers.push(() => makeCharacter(
  6156. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6157. {
  6158. front: {
  6159. height: math.unit(1.93, "meters"),
  6160. weight: math.unit(83, "kg"),
  6161. name: "Front",
  6162. image: {
  6163. source: "./media/characters/samantha/front.svg"
  6164. }
  6165. },
  6166. frontClothed: {
  6167. height: math.unit(1.93, "meters"),
  6168. weight: math.unit(83, "kg"),
  6169. name: "Front (Clothed)",
  6170. image: {
  6171. source: "./media/characters/samantha/front-clothed.svg"
  6172. }
  6173. },
  6174. back: {
  6175. height: math.unit(1.93, "meters"),
  6176. weight: math.unit(83, "kg"),
  6177. name: "Back",
  6178. image: {
  6179. source: "./media/characters/samantha/back.svg"
  6180. }
  6181. },
  6182. },
  6183. [
  6184. {
  6185. name: "Normal",
  6186. height: math.unit(1.93, "m")
  6187. },
  6188. {
  6189. name: "Macro",
  6190. height: math.unit(74, "meters"),
  6191. default: true
  6192. },
  6193. {
  6194. name: "Macro+",
  6195. height: math.unit(223, "meters"),
  6196. },
  6197. {
  6198. name: "Megamacro",
  6199. height: math.unit(8381, "meters"),
  6200. },
  6201. {
  6202. name: "Megamacro+",
  6203. height: math.unit(12000, "kilometers")
  6204. },
  6205. ]
  6206. ))
  6207. characterMakers.push(() => makeCharacter(
  6208. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6209. {
  6210. front: {
  6211. height: math.unit(1.92, "meters"),
  6212. weight: math.unit(80, "kg"),
  6213. name: "Front",
  6214. image: {
  6215. source: "./media/characters/dr-clay/front.svg"
  6216. }
  6217. },
  6218. frontClothed: {
  6219. height: math.unit(1.92, "meters"),
  6220. weight: math.unit(80, "kg"),
  6221. name: "Front (Clothed)",
  6222. image: {
  6223. source: "./media/characters/dr-clay/front-clothed.svg"
  6224. }
  6225. }
  6226. },
  6227. [
  6228. {
  6229. name: "Normal",
  6230. height: math.unit(1.92, "m")
  6231. },
  6232. {
  6233. name: "Macro",
  6234. height: math.unit(214, "meters"),
  6235. default: true
  6236. },
  6237. {
  6238. name: "Macro+",
  6239. height: math.unit(12.237, "meters"),
  6240. },
  6241. {
  6242. name: "Megamacro",
  6243. height: math.unit(557, "megameters"),
  6244. },
  6245. {
  6246. name: "Unimaginable",
  6247. height: math.unit(120e9, "lightyears")
  6248. },
  6249. ]
  6250. ))
  6251. characterMakers.push(() => makeCharacter(
  6252. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6253. {
  6254. front: {
  6255. height: math.unit(2, "meters"),
  6256. weight: math.unit(80, "kg"),
  6257. name: "Front",
  6258. image: {
  6259. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6260. }
  6261. }
  6262. },
  6263. [
  6264. {
  6265. name: "Teramacro",
  6266. height: math.unit(500000, "lightyears"),
  6267. default: true
  6268. },
  6269. ]
  6270. ))
  6271. characterMakers.push(() => makeCharacter(
  6272. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6273. {
  6274. front: {
  6275. height: math.unit(2, "meters"),
  6276. weight: math.unit(150, "kg"),
  6277. name: "Front",
  6278. image: {
  6279. source: "./media/characters/vemus/front.svg",
  6280. extra: 2384 / 2084,
  6281. bottom: 0.0123
  6282. }
  6283. }
  6284. },
  6285. [
  6286. {
  6287. name: "Normal",
  6288. height: math.unit(3.75, "meters"),
  6289. default: true
  6290. },
  6291. {
  6292. name: "Big",
  6293. height: math.unit(8, "meters")
  6294. },
  6295. {
  6296. name: "Macro",
  6297. height: math.unit(100, "meters")
  6298. },
  6299. {
  6300. name: "Macro+",
  6301. height: math.unit(1500, "meters")
  6302. },
  6303. {
  6304. name: "Stellar",
  6305. height: math.unit(14e8, "meters")
  6306. },
  6307. ]
  6308. ))
  6309. characterMakers.push(() => makeCharacter(
  6310. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6311. {
  6312. front: {
  6313. height: math.unit(2, "meters"),
  6314. weight: math.unit(70, "kg"),
  6315. name: "Front",
  6316. image: {
  6317. source: "./media/characters/beherit/front.svg",
  6318. extra: 1408 / 1242
  6319. }
  6320. }
  6321. },
  6322. [
  6323. {
  6324. name: "Normal",
  6325. height: math.unit(6, "feet")
  6326. },
  6327. {
  6328. name: "Lorg",
  6329. height: math.unit(25, "feet"),
  6330. default: true
  6331. },
  6332. {
  6333. name: "Lorger",
  6334. height: math.unit(75, "feet")
  6335. },
  6336. {
  6337. name: "Macro",
  6338. height: math.unit(200, "meters")
  6339. },
  6340. ]
  6341. ))
  6342. characterMakers.push(() => makeCharacter(
  6343. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6344. {
  6345. front: {
  6346. height: math.unit(2, "meters"),
  6347. weight: math.unit(150, "kg"),
  6348. name: "Front",
  6349. image: {
  6350. source: "./media/characters/everett/front.svg",
  6351. extra: 2038 / 1737,
  6352. bottom: 0.03
  6353. }
  6354. },
  6355. paw: {
  6356. height: math.unit(2 / 3.6, "meters"),
  6357. name: "Paw",
  6358. image: {
  6359. source: "./media/characters/everett/paw.svg"
  6360. }
  6361. },
  6362. },
  6363. [
  6364. {
  6365. name: "Normal",
  6366. height: math.unit(15, "feet"),
  6367. default: true
  6368. },
  6369. {
  6370. name: "Lorg",
  6371. height: math.unit(70, "feet"),
  6372. default: true
  6373. },
  6374. {
  6375. name: "Lorger",
  6376. height: math.unit(250, "feet")
  6377. },
  6378. {
  6379. name: "Macro",
  6380. height: math.unit(500, "meters")
  6381. },
  6382. ]
  6383. ))
  6384. characterMakers.push(() => makeCharacter(
  6385. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6386. {
  6387. front: {
  6388. height: math.unit(2, "meters"),
  6389. weight: math.unit(86, "kg"),
  6390. name: "Front",
  6391. image: {
  6392. source: "./media/characters/rose/front.svg",
  6393. extra: 350/335,
  6394. bottom: 10/360
  6395. }
  6396. },
  6397. frontAlt: {
  6398. height: math.unit(1.6, "meters"),
  6399. weight: math.unit(86, "kg"),
  6400. name: "Front (Alt)",
  6401. image: {
  6402. source: "./media/characters/rose/front-alt.svg",
  6403. extra: 299/283,
  6404. bottom: 3/302
  6405. }
  6406. },
  6407. plush: {
  6408. height: math.unit(2, "meters"),
  6409. weight: math.unit(86/3, "kg"),
  6410. name: "Plush",
  6411. image: {
  6412. source: "./media/characters/rose/plush.svg",
  6413. extra: 361/337,
  6414. bottom: 11/372
  6415. }
  6416. },
  6417. },
  6418. [
  6419. {
  6420. name: "Mini-Micro",
  6421. height: math.unit(1, "cm")
  6422. },
  6423. {
  6424. name: "Micro",
  6425. height: math.unit(3.5, "inches"),
  6426. default: true
  6427. },
  6428. {
  6429. name: "Normal",
  6430. height: math.unit(6 + 1 / 6, "feet")
  6431. },
  6432. {
  6433. name: "Mini-Macro",
  6434. height: math.unit(9 + 10 / 12, "feet")
  6435. },
  6436. ]
  6437. ))
  6438. characterMakers.push(() => makeCharacter(
  6439. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6440. {
  6441. front: {
  6442. height: math.unit(2, "meters"),
  6443. weight: math.unit(350, "lbs"),
  6444. name: "Front",
  6445. image: {
  6446. source: "./media/characters/regal/front.svg"
  6447. }
  6448. },
  6449. back: {
  6450. height: math.unit(2, "meters"),
  6451. weight: math.unit(350, "lbs"),
  6452. name: "Back",
  6453. image: {
  6454. source: "./media/characters/regal/back.svg"
  6455. }
  6456. },
  6457. },
  6458. [
  6459. {
  6460. name: "Macro",
  6461. height: math.unit(350, "feet"),
  6462. default: true
  6463. }
  6464. ]
  6465. ))
  6466. characterMakers.push(() => makeCharacter(
  6467. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6468. {
  6469. front: {
  6470. height: math.unit(4 + 11 / 12, "feet"),
  6471. weight: math.unit(100, "lbs"),
  6472. name: "Front",
  6473. image: {
  6474. source: "./media/characters/opal/front.svg"
  6475. }
  6476. },
  6477. frontAlt: {
  6478. height: math.unit(4 + 11 / 12, "feet"),
  6479. weight: math.unit(100, "lbs"),
  6480. name: "Front (Alt)",
  6481. image: {
  6482. source: "./media/characters/opal/front-alt.svg"
  6483. }
  6484. },
  6485. },
  6486. [
  6487. {
  6488. name: "Small",
  6489. height: math.unit(4 + 11 / 12, "feet")
  6490. },
  6491. {
  6492. name: "Normal",
  6493. height: math.unit(20, "feet"),
  6494. default: true
  6495. },
  6496. {
  6497. name: "Macro",
  6498. height: math.unit(120, "feet")
  6499. },
  6500. {
  6501. name: "Megamacro",
  6502. height: math.unit(80, "miles")
  6503. },
  6504. {
  6505. name: "True Size",
  6506. height: math.unit(100000, "lightyears")
  6507. },
  6508. ]
  6509. ))
  6510. characterMakers.push(() => makeCharacter(
  6511. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6512. {
  6513. front: {
  6514. height: math.unit(6, "feet"),
  6515. weight: math.unit(200, "lbs"),
  6516. name: "Front",
  6517. image: {
  6518. source: "./media/characters/vector-wuff/front.svg"
  6519. }
  6520. }
  6521. },
  6522. [
  6523. {
  6524. name: "Normal",
  6525. height: math.unit(2.8, "meters")
  6526. },
  6527. {
  6528. name: "Macro",
  6529. height: math.unit(450, "meters"),
  6530. default: true
  6531. },
  6532. {
  6533. name: "Megamacro",
  6534. height: math.unit(15, "kilometers")
  6535. }
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6540. {
  6541. front: {
  6542. height: math.unit(6, "feet"),
  6543. weight: math.unit(256, "lbs"),
  6544. name: "Front",
  6545. image: {
  6546. source: "./media/characters/dannik/front.svg"
  6547. }
  6548. }
  6549. },
  6550. [
  6551. {
  6552. name: "Macro",
  6553. height: math.unit(69.57, "meters"),
  6554. default: true
  6555. },
  6556. ]
  6557. ))
  6558. characterMakers.push(() => makeCharacter(
  6559. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6560. {
  6561. front: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(120, "lbs"),
  6564. name: "Front",
  6565. image: {
  6566. source: "./media/characters/azura-saharah/front.svg"
  6567. }
  6568. },
  6569. back: {
  6570. height: math.unit(6, "feet"),
  6571. weight: math.unit(120, "lbs"),
  6572. name: "Back",
  6573. image: {
  6574. source: "./media/characters/azura-saharah/back.svg"
  6575. }
  6576. },
  6577. },
  6578. [
  6579. {
  6580. name: "Macro",
  6581. height: math.unit(100, "feet"),
  6582. default: true
  6583. },
  6584. ]
  6585. ))
  6586. characterMakers.push(() => makeCharacter(
  6587. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6588. {
  6589. side: {
  6590. height: math.unit(5 + 4 / 12, "feet"),
  6591. weight: math.unit(163, "lbs"),
  6592. name: "Side",
  6593. image: {
  6594. source: "./media/characters/kennedy/side.svg"
  6595. }
  6596. }
  6597. },
  6598. [
  6599. {
  6600. name: "Standard Doggo",
  6601. height: math.unit(5 + 4 / 12, "feet")
  6602. },
  6603. {
  6604. name: "Big Doggo",
  6605. height: math.unit(25 + 3 / 12, "feet"),
  6606. default: true
  6607. },
  6608. ]
  6609. ))
  6610. characterMakers.push(() => makeCharacter(
  6611. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6612. {
  6613. front: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(90, "lbs"),
  6616. name: "Front",
  6617. image: {
  6618. source: "./media/characters/odi-lunar/front.svg"
  6619. }
  6620. }
  6621. },
  6622. [
  6623. {
  6624. name: "Micro",
  6625. height: math.unit(3, "inches"),
  6626. default: true
  6627. },
  6628. {
  6629. name: "Normal",
  6630. height: math.unit(5.5, "feet")
  6631. }
  6632. ]
  6633. ))
  6634. characterMakers.push(() => makeCharacter(
  6635. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6636. {
  6637. back: {
  6638. height: math.unit(6, "feet"),
  6639. weight: math.unit(220, "lbs"),
  6640. name: "Back",
  6641. image: {
  6642. source: "./media/characters/mandake/back.svg"
  6643. }
  6644. }
  6645. },
  6646. [
  6647. {
  6648. name: "Normal",
  6649. height: math.unit(7, "feet"),
  6650. default: true
  6651. },
  6652. {
  6653. name: "Macro",
  6654. height: math.unit(78, "feet")
  6655. },
  6656. {
  6657. name: "Macro+",
  6658. height: math.unit(300, "meters")
  6659. },
  6660. {
  6661. name: "Macro++",
  6662. height: math.unit(2400, "feet")
  6663. },
  6664. {
  6665. name: "Megamacro",
  6666. height: math.unit(5167, "meters")
  6667. },
  6668. {
  6669. name: "Gigamacro",
  6670. height: math.unit(41769, "miles")
  6671. },
  6672. ]
  6673. ))
  6674. characterMakers.push(() => makeCharacter(
  6675. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6676. {
  6677. front: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(120, "lbs"),
  6680. name: "Front",
  6681. image: {
  6682. source: "./media/characters/yozey/front.svg"
  6683. }
  6684. },
  6685. frontAlt: {
  6686. height: math.unit(6, "feet"),
  6687. weight: math.unit(120, "lbs"),
  6688. name: "Front (Alt)",
  6689. image: {
  6690. source: "./media/characters/yozey/front-alt.svg"
  6691. }
  6692. },
  6693. side: {
  6694. height: math.unit(6, "feet"),
  6695. weight: math.unit(120, "lbs"),
  6696. name: "Side",
  6697. image: {
  6698. source: "./media/characters/yozey/side.svg"
  6699. }
  6700. },
  6701. },
  6702. [
  6703. {
  6704. name: "Micro",
  6705. height: math.unit(3, "inches"),
  6706. default: true
  6707. },
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(6, "feet")
  6711. }
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(6, "feet"),
  6719. weight: math.unit(103, "lbs"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/valeska-voss/front.svg"
  6723. }
  6724. }
  6725. },
  6726. [
  6727. {
  6728. name: "Mini-Sized Sub",
  6729. height: math.unit(3.1, "inches")
  6730. },
  6731. {
  6732. name: "Mid-Sized Sub",
  6733. height: math.unit(6.2, "inches")
  6734. },
  6735. {
  6736. name: "Full-Sized Sub",
  6737. height: math.unit(9.3, "inches")
  6738. },
  6739. {
  6740. name: "Normal",
  6741. height: math.unit(5 + 2 / 12, "foot"),
  6742. default: true
  6743. },
  6744. ]
  6745. ))
  6746. characterMakers.push(() => makeCharacter(
  6747. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6748. {
  6749. front: {
  6750. height: math.unit(6, "feet"),
  6751. weight: math.unit(160, "lbs"),
  6752. name: "Front",
  6753. image: {
  6754. source: "./media/characters/gene-zeta/front.svg",
  6755. extra: 3006 / 2826,
  6756. bottom: 182 / 3188
  6757. }
  6758. }
  6759. },
  6760. [
  6761. {
  6762. name: "Micro",
  6763. height: math.unit(6, "inches")
  6764. },
  6765. {
  6766. name: "Normal",
  6767. height: math.unit(5 + 11 / 12, "foot"),
  6768. default: true
  6769. },
  6770. {
  6771. name: "Macro",
  6772. height: math.unit(140, "feet")
  6773. },
  6774. {
  6775. name: "Supercharged",
  6776. height: math.unit(2500, "feet")
  6777. },
  6778. ]
  6779. ))
  6780. characterMakers.push(() => makeCharacter(
  6781. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6782. {
  6783. front: {
  6784. height: math.unit(6, "feet"),
  6785. weight: math.unit(350, "lbs"),
  6786. name: "Front",
  6787. image: {
  6788. source: "./media/characters/razinox/front.svg",
  6789. extra: 1686 / 1548,
  6790. bottom: 28.2 / 1868
  6791. }
  6792. },
  6793. back: {
  6794. height: math.unit(6, "feet"),
  6795. weight: math.unit(350, "lbs"),
  6796. name: "Back",
  6797. image: {
  6798. source: "./media/characters/razinox/back.svg",
  6799. extra: 1660 / 1590,
  6800. bottom: 15 / 1665
  6801. }
  6802. },
  6803. },
  6804. [
  6805. {
  6806. name: "Normal",
  6807. height: math.unit(10 + 8 / 12, "foot")
  6808. },
  6809. {
  6810. name: "Minimacro",
  6811. height: math.unit(15, "foot")
  6812. },
  6813. {
  6814. name: "Macro",
  6815. height: math.unit(60, "foot"),
  6816. default: true
  6817. },
  6818. {
  6819. name: "Megamacro",
  6820. height: math.unit(5, "miles")
  6821. },
  6822. {
  6823. name: "Gigamacro",
  6824. height: math.unit(6000, "miles")
  6825. },
  6826. ]
  6827. ))
  6828. characterMakers.push(() => makeCharacter(
  6829. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6830. {
  6831. front: {
  6832. height: math.unit(6, "feet"),
  6833. weight: math.unit(150, "lbs"),
  6834. name: "Front",
  6835. image: {
  6836. source: "./media/characters/cobalt/front.svg"
  6837. }
  6838. }
  6839. },
  6840. [
  6841. {
  6842. name: "Normal",
  6843. height: math.unit(8 + 1 / 12, "foot")
  6844. },
  6845. {
  6846. name: "Macro",
  6847. height: math.unit(111, "foot"),
  6848. default: true
  6849. },
  6850. {
  6851. name: "Supracosmic",
  6852. height: math.unit(1e42, "feet")
  6853. },
  6854. ]
  6855. ))
  6856. characterMakers.push(() => makeCharacter(
  6857. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6858. {
  6859. front: {
  6860. height: math.unit(6, "feet"),
  6861. weight: math.unit(140, "lbs"),
  6862. name: "Front",
  6863. image: {
  6864. source: "./media/characters/amanda/front.svg"
  6865. }
  6866. }
  6867. },
  6868. [
  6869. {
  6870. name: "Micro",
  6871. height: math.unit(5, "inches"),
  6872. default: true
  6873. },
  6874. ]
  6875. ))
  6876. characterMakers.push(() => makeCharacter(
  6877. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6878. {
  6879. front: {
  6880. height: math.unit(2.75, "meters"),
  6881. weight: math.unit(1200, "lb"),
  6882. name: "Front",
  6883. image: {
  6884. source: "./media/characters/teal/front.svg",
  6885. extra: 2463 / 2320,
  6886. bottom: 166 / 2629
  6887. }
  6888. },
  6889. back: {
  6890. height: math.unit(2.75, "meters"),
  6891. weight: math.unit(1200, "lb"),
  6892. name: "Back",
  6893. image: {
  6894. source: "./media/characters/teal/back.svg",
  6895. extra: 2580 / 2489,
  6896. bottom: 151 / 2731
  6897. }
  6898. },
  6899. sitting: {
  6900. height: math.unit(1.9, "meters"),
  6901. weight: math.unit(1200, "lb"),
  6902. name: "Sitting",
  6903. image: {
  6904. source: "./media/characters/teal/sitting.svg",
  6905. extra: 623 / 590,
  6906. bottom: 121 / 744
  6907. }
  6908. },
  6909. standing: {
  6910. height: math.unit(2.75, "meters"),
  6911. weight: math.unit(1200, "lb"),
  6912. name: "Standing",
  6913. image: {
  6914. source: "./media/characters/teal/standing.svg",
  6915. extra: 923 / 893,
  6916. bottom: 60 / 983
  6917. }
  6918. },
  6919. stretching: {
  6920. height: math.unit(3.65, "meters"),
  6921. weight: math.unit(1200, "lb"),
  6922. name: "Stretching",
  6923. image: {
  6924. source: "./media/characters/teal/stretching.svg",
  6925. extra: 1276 / 1244,
  6926. bottom: 0 / 1276
  6927. }
  6928. },
  6929. legged: {
  6930. height: math.unit(1.3, "meters"),
  6931. weight: math.unit(100, "lb"),
  6932. name: "Legged",
  6933. image: {
  6934. source: "./media/characters/teal/legged.svg",
  6935. extra: 462 / 437,
  6936. bottom: 24 / 486
  6937. }
  6938. },
  6939. naga: {
  6940. height: math.unit(5.4, "meters"),
  6941. weight: math.unit(4000, "lb"),
  6942. name: "Naga",
  6943. image: {
  6944. source: "./media/characters/teal/naga.svg",
  6945. extra: 1902 / 1858,
  6946. bottom: 0 / 1902
  6947. }
  6948. },
  6949. hand: {
  6950. height: math.unit(0.52, "meters"),
  6951. name: "Hand",
  6952. image: {
  6953. source: "./media/characters/teal/hand.svg"
  6954. }
  6955. },
  6956. maw: {
  6957. height: math.unit(0.43, "meters"),
  6958. name: "Maw",
  6959. image: {
  6960. source: "./media/characters/teal/maw.svg"
  6961. }
  6962. },
  6963. slit: {
  6964. height: math.unit(0.25, "meters"),
  6965. name: "Slit",
  6966. image: {
  6967. source: "./media/characters/teal/slit.svg"
  6968. }
  6969. },
  6970. },
  6971. [
  6972. {
  6973. name: "Normal",
  6974. height: math.unit(2.75, "meters"),
  6975. default: true
  6976. },
  6977. {
  6978. name: "Macro",
  6979. height: math.unit(300, "feet")
  6980. },
  6981. {
  6982. name: "Macro+",
  6983. height: math.unit(2000, "feet")
  6984. },
  6985. ]
  6986. ))
  6987. characterMakers.push(() => makeCharacter(
  6988. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6989. {
  6990. frontCat: {
  6991. height: math.unit(6, "feet"),
  6992. weight: math.unit(180, "lbs"),
  6993. name: "Front (Cat)",
  6994. image: {
  6995. source: "./media/characters/ravin-amulet/front-cat.svg"
  6996. }
  6997. },
  6998. frontCatAlt: {
  6999. height: math.unit(6, "feet"),
  7000. weight: math.unit(180, "lbs"),
  7001. name: "Front (Alt, Cat)",
  7002. image: {
  7003. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7004. }
  7005. },
  7006. frontWerewolf: {
  7007. height: math.unit(6 * 1.2, "feet"),
  7008. weight: math.unit(225, "lbs"),
  7009. name: "Front (Werewolf)",
  7010. image: {
  7011. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7012. }
  7013. },
  7014. backWerewolf: {
  7015. height: math.unit(6 * 1.2, "feet"),
  7016. weight: math.unit(225, "lbs"),
  7017. name: "Back (Werewolf)",
  7018. image: {
  7019. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7020. }
  7021. },
  7022. },
  7023. [
  7024. {
  7025. name: "Nano",
  7026. height: math.unit(1, "micrometer")
  7027. },
  7028. {
  7029. name: "Micro",
  7030. height: math.unit(1, "inch")
  7031. },
  7032. {
  7033. name: "Normal",
  7034. height: math.unit(6, "feet"),
  7035. default: true
  7036. },
  7037. {
  7038. name: "Macro",
  7039. height: math.unit(60, "feet")
  7040. }
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7045. {
  7046. front: {
  7047. height: math.unit(6, "feet"),
  7048. weight: math.unit(165, "lbs"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/fluoresce/front.svg"
  7052. }
  7053. }
  7054. },
  7055. [
  7056. {
  7057. name: "Micro",
  7058. height: math.unit(6, "cm")
  7059. },
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(5 + 7 / 12, "feet"),
  7063. default: true
  7064. },
  7065. {
  7066. name: "Macro",
  7067. height: math.unit(56, "feet")
  7068. },
  7069. {
  7070. name: "Megamacro",
  7071. height: math.unit(1.9, "miles")
  7072. },
  7073. ]
  7074. ))
  7075. characterMakers.push(() => makeCharacter(
  7076. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7077. {
  7078. front: {
  7079. height: math.unit(9 + 6 / 12, "feet"),
  7080. weight: math.unit(523, "lbs"),
  7081. name: "Side",
  7082. image: {
  7083. source: "./media/characters/aurora/side.svg"
  7084. }
  7085. }
  7086. },
  7087. [
  7088. {
  7089. name: "Normal",
  7090. height: math.unit(9 + 6 / 12, "feet")
  7091. },
  7092. {
  7093. name: "Macro",
  7094. height: math.unit(96, "feet"),
  7095. default: true
  7096. },
  7097. {
  7098. name: "Macro+",
  7099. height: math.unit(243, "feet")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(194, "cm"),
  7108. weight: math.unit(90, "kg"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/ranek/front.svg"
  7112. }
  7113. },
  7114. side: {
  7115. height: math.unit(194, "cm"),
  7116. weight: math.unit(90, "kg"),
  7117. name: "Side",
  7118. image: {
  7119. source: "./media/characters/ranek/side.svg"
  7120. }
  7121. },
  7122. back: {
  7123. height: math.unit(194, "cm"),
  7124. weight: math.unit(90, "kg"),
  7125. name: "Back",
  7126. image: {
  7127. source: "./media/characters/ranek/back.svg"
  7128. }
  7129. },
  7130. feral: {
  7131. height: math.unit(30, "cm"),
  7132. weight: math.unit(1.6, "lbs"),
  7133. name: "Feral",
  7134. image: {
  7135. source: "./media/characters/ranek/feral.svg"
  7136. }
  7137. },
  7138. },
  7139. [
  7140. {
  7141. name: "Normal",
  7142. height: math.unit(194, "cm"),
  7143. default: true
  7144. },
  7145. {
  7146. name: "Macro",
  7147. height: math.unit(100, "meters")
  7148. },
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7153. {
  7154. front: {
  7155. height: math.unit(5 + 6 / 12, "feet"),
  7156. weight: math.unit(153, "lbs"),
  7157. name: "Front",
  7158. image: {
  7159. source: "./media/characters/andrew-cooper/front.svg"
  7160. }
  7161. },
  7162. },
  7163. [
  7164. {
  7165. name: "Nano",
  7166. height: math.unit(1, "mm")
  7167. },
  7168. {
  7169. name: "Micro",
  7170. height: math.unit(2, "inches")
  7171. },
  7172. {
  7173. name: "Normal",
  7174. height: math.unit(5 + 6 / 12, "feet"),
  7175. default: true
  7176. }
  7177. ]
  7178. ))
  7179. characterMakers.push(() => makeCharacter(
  7180. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7181. {
  7182. front: {
  7183. height: math.unit(6, "feet"),
  7184. weight: math.unit(180, "lbs"),
  7185. name: "Front",
  7186. image: {
  7187. source: "./media/characters/akane-sato/front.svg",
  7188. extra: 1219 / 1140
  7189. }
  7190. },
  7191. back: {
  7192. height: math.unit(6, "feet"),
  7193. weight: math.unit(180, "lbs"),
  7194. name: "Back",
  7195. image: {
  7196. source: "./media/characters/akane-sato/back.svg",
  7197. extra: 1219 / 1170
  7198. }
  7199. },
  7200. },
  7201. [
  7202. {
  7203. name: "Normal",
  7204. height: math.unit(2.5, "meters")
  7205. },
  7206. {
  7207. name: "Macro",
  7208. height: math.unit(250, "meters"),
  7209. default: true
  7210. },
  7211. {
  7212. name: "Megamacro",
  7213. height: math.unit(25, "km")
  7214. },
  7215. ]
  7216. ))
  7217. characterMakers.push(() => makeCharacter(
  7218. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7219. {
  7220. front: {
  7221. height: math.unit(6, "feet"),
  7222. weight: math.unit(65, "kg"),
  7223. name: "Front",
  7224. image: {
  7225. source: "./media/characters/rook/front.svg",
  7226. extra: 960 / 950
  7227. }
  7228. }
  7229. },
  7230. [
  7231. {
  7232. name: "Normal",
  7233. height: math.unit(8.8, "feet")
  7234. },
  7235. {
  7236. name: "Macro",
  7237. height: math.unit(88, "feet"),
  7238. default: true
  7239. },
  7240. {
  7241. name: "Megamacro",
  7242. height: math.unit(8, "miles")
  7243. },
  7244. ]
  7245. ))
  7246. characterMakers.push(() => makeCharacter(
  7247. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7248. {
  7249. front: {
  7250. height: math.unit(12 + 2 / 12, "feet"),
  7251. weight: math.unit(808, "lbs"),
  7252. name: "Front",
  7253. image: {
  7254. source: "./media/characters/prodigy/front.svg"
  7255. }
  7256. }
  7257. },
  7258. [
  7259. {
  7260. name: "Normal",
  7261. height: math.unit(12 + 2 / 12, "feet"),
  7262. default: true
  7263. },
  7264. {
  7265. name: "Macro",
  7266. height: math.unit(143, "feet")
  7267. },
  7268. {
  7269. name: "Macro+",
  7270. height: math.unit(400, "feet")
  7271. },
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7276. {
  7277. front: {
  7278. height: math.unit(6, "feet"),
  7279. weight: math.unit(225, "lbs"),
  7280. name: "Front",
  7281. image: {
  7282. source: "./media/characters/daniel/front.svg"
  7283. }
  7284. },
  7285. leaning: {
  7286. height: math.unit(6, "feet"),
  7287. weight: math.unit(225, "lbs"),
  7288. name: "Leaning",
  7289. image: {
  7290. source: "./media/characters/daniel/leaning.svg"
  7291. }
  7292. },
  7293. },
  7294. [
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(1000, "feet"),
  7298. default: true
  7299. },
  7300. ]
  7301. ))
  7302. characterMakers.push(() => makeCharacter(
  7303. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7304. {
  7305. front: {
  7306. height: math.unit(6, "feet"),
  7307. weight: math.unit(88, "lbs"),
  7308. name: "Front",
  7309. image: {
  7310. source: "./media/characters/chiros/front.svg",
  7311. extra: 306 / 226
  7312. }
  7313. },
  7314. side: {
  7315. height: math.unit(6, "feet"),
  7316. weight: math.unit(88, "lbs"),
  7317. name: "Side",
  7318. image: {
  7319. source: "./media/characters/chiros/side.svg",
  7320. extra: 306 / 226
  7321. }
  7322. },
  7323. },
  7324. [
  7325. {
  7326. name: "Normal",
  7327. height: math.unit(6, "cm"),
  7328. default: true
  7329. },
  7330. ]
  7331. ))
  7332. characterMakers.push(() => makeCharacter(
  7333. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7334. {
  7335. front: {
  7336. height: math.unit(6, "feet"),
  7337. weight: math.unit(100, "lbs"),
  7338. name: "Front",
  7339. image: {
  7340. source: "./media/characters/selka/front.svg",
  7341. extra: 947 / 887
  7342. }
  7343. }
  7344. },
  7345. [
  7346. {
  7347. name: "Normal",
  7348. height: math.unit(5, "cm"),
  7349. default: true
  7350. },
  7351. ]
  7352. ))
  7353. characterMakers.push(() => makeCharacter(
  7354. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7355. {
  7356. front: {
  7357. height: math.unit(8 + 3 / 12, "feet"),
  7358. weight: math.unit(424, "lbs"),
  7359. name: "Front",
  7360. image: {
  7361. source: "./media/characters/verin/front.svg",
  7362. extra: 1845 / 1550
  7363. }
  7364. },
  7365. frontArmored: {
  7366. height: math.unit(8 + 3 / 12, "feet"),
  7367. weight: math.unit(424, "lbs"),
  7368. name: "Front (Armored)",
  7369. image: {
  7370. source: "./media/characters/verin/front-armor.svg",
  7371. extra: 1845 / 1550,
  7372. bottom: 0.01
  7373. }
  7374. },
  7375. back: {
  7376. height: math.unit(8 + 3 / 12, "feet"),
  7377. weight: math.unit(424, "lbs"),
  7378. name: "Back",
  7379. image: {
  7380. source: "./media/characters/verin/back.svg",
  7381. bottom: 0.1,
  7382. extra: 1
  7383. }
  7384. },
  7385. foot: {
  7386. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7387. name: "Foot",
  7388. image: {
  7389. source: "./media/characters/verin/foot.svg"
  7390. }
  7391. },
  7392. },
  7393. [
  7394. {
  7395. name: "Normal",
  7396. height: math.unit(8 + 3 / 12, "feet")
  7397. },
  7398. {
  7399. name: "Minimacro",
  7400. height: math.unit(21, "feet"),
  7401. default: true
  7402. },
  7403. {
  7404. name: "Macro",
  7405. height: math.unit(626, "feet")
  7406. },
  7407. ]
  7408. ))
  7409. characterMakers.push(() => makeCharacter(
  7410. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7411. {
  7412. front: {
  7413. height: math.unit(2.718, "meters"),
  7414. weight: math.unit(150, "lbs"),
  7415. name: "Front",
  7416. image: {
  7417. source: "./media/characters/sovrim-terraquian/front.svg"
  7418. }
  7419. },
  7420. back: {
  7421. height: math.unit(2.718, "meters"),
  7422. weight: math.unit(150, "lbs"),
  7423. name: "Back",
  7424. image: {
  7425. source: "./media/characters/sovrim-terraquian/back.svg"
  7426. }
  7427. }
  7428. },
  7429. [
  7430. {
  7431. name: "Micro",
  7432. height: math.unit(2, "inches")
  7433. },
  7434. {
  7435. name: "Small",
  7436. height: math.unit(1, "meter")
  7437. },
  7438. {
  7439. name: "Normal",
  7440. height: math.unit(Math.E, "meters"),
  7441. default: true
  7442. },
  7443. {
  7444. name: "Macro",
  7445. height: math.unit(20, "meters")
  7446. },
  7447. {
  7448. name: "Macro+",
  7449. height: math.unit(400, "meters")
  7450. },
  7451. ]
  7452. ))
  7453. characterMakers.push(() => makeCharacter(
  7454. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7455. {
  7456. front: {
  7457. height: math.unit(7, "feet"),
  7458. weight: math.unit(489, "lbs"),
  7459. name: "Front",
  7460. image: {
  7461. source: "./media/characters/reece-silvermane/front.svg",
  7462. bottom: 0.02,
  7463. extra: 1
  7464. }
  7465. },
  7466. },
  7467. [
  7468. {
  7469. name: "Macro",
  7470. height: math.unit(1.5, "miles"),
  7471. default: true
  7472. },
  7473. ]
  7474. ))
  7475. characterMakers.push(() => makeCharacter(
  7476. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7477. {
  7478. front: {
  7479. height: math.unit(6, "feet"),
  7480. weight: math.unit(78, "kg"),
  7481. name: "Front",
  7482. image: {
  7483. source: "./media/characters/kane/front.svg",
  7484. extra: 978 / 899
  7485. }
  7486. },
  7487. },
  7488. [
  7489. {
  7490. name: "Normal",
  7491. height: math.unit(2.1, "m"),
  7492. },
  7493. {
  7494. name: "Macro",
  7495. height: math.unit(1, "km"),
  7496. default: true
  7497. },
  7498. ]
  7499. ))
  7500. characterMakers.push(() => makeCharacter(
  7501. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7502. {
  7503. front: {
  7504. height: math.unit(6, "feet"),
  7505. weight: math.unit(200, "kg"),
  7506. name: "Front",
  7507. image: {
  7508. source: "./media/characters/tegon/front.svg",
  7509. bottom: 0.01,
  7510. extra: 1
  7511. }
  7512. },
  7513. },
  7514. [
  7515. {
  7516. name: "Micro",
  7517. height: math.unit(1, "inch")
  7518. },
  7519. {
  7520. name: "Normal",
  7521. height: math.unit(6 + 3 / 12, "feet"),
  7522. default: true
  7523. },
  7524. {
  7525. name: "Macro",
  7526. height: math.unit(300, "feet")
  7527. },
  7528. {
  7529. name: "Megamacro",
  7530. height: math.unit(69, "miles")
  7531. },
  7532. ]
  7533. ))
  7534. characterMakers.push(() => makeCharacter(
  7535. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7536. {
  7537. side: {
  7538. height: math.unit(6, "feet"),
  7539. weight: math.unit(2304, "lbs"),
  7540. name: "Side",
  7541. image: {
  7542. source: "./media/characters/arcturax/side.svg",
  7543. extra: 790 / 376,
  7544. bottom: 0.01
  7545. }
  7546. },
  7547. },
  7548. [
  7549. {
  7550. name: "Micro",
  7551. height: math.unit(2, "inch")
  7552. },
  7553. {
  7554. name: "Normal",
  7555. height: math.unit(6, "feet")
  7556. },
  7557. {
  7558. name: "Macro",
  7559. height: math.unit(39, "feet"),
  7560. default: true
  7561. },
  7562. {
  7563. name: "Megamacro",
  7564. height: math.unit(7, "miles")
  7565. },
  7566. ]
  7567. ))
  7568. characterMakers.push(() => makeCharacter(
  7569. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7570. {
  7571. front: {
  7572. height: math.unit(6, "feet"),
  7573. weight: math.unit(50, "lbs"),
  7574. name: "Front",
  7575. image: {
  7576. source: "./media/characters/sentri/front.svg",
  7577. extra: 1750 / 1570,
  7578. bottom: 0.025
  7579. }
  7580. },
  7581. frontAlt: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(50, "lbs"),
  7584. name: "Front (Alt)",
  7585. image: {
  7586. source: "./media/characters/sentri/front-alt.svg",
  7587. extra: 1750 / 1570,
  7588. bottom: 0.025
  7589. }
  7590. },
  7591. },
  7592. [
  7593. {
  7594. name: "Normal",
  7595. height: math.unit(15, "feet"),
  7596. default: true
  7597. },
  7598. {
  7599. name: "Macro",
  7600. height: math.unit(2500, "feet")
  7601. }
  7602. ]
  7603. ))
  7604. characterMakers.push(() => makeCharacter(
  7605. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7606. {
  7607. front: {
  7608. height: math.unit(5 + 8 / 12, "feet"),
  7609. weight: math.unit(130, "lbs"),
  7610. name: "Front",
  7611. image: {
  7612. source: "./media/characters/corvin/front.svg",
  7613. extra: 1803 / 1629
  7614. }
  7615. },
  7616. frontShirt: {
  7617. height: math.unit(5 + 8 / 12, "feet"),
  7618. weight: math.unit(130, "lbs"),
  7619. name: "Front (Shirt)",
  7620. image: {
  7621. source: "./media/characters/corvin/front-shirt.svg",
  7622. extra: 1803 / 1629
  7623. }
  7624. },
  7625. frontPoncho: {
  7626. height: math.unit(5 + 8 / 12, "feet"),
  7627. weight: math.unit(130, "lbs"),
  7628. name: "Front (Poncho)",
  7629. image: {
  7630. source: "./media/characters/corvin/front-poncho.svg",
  7631. extra: 1803 / 1629
  7632. }
  7633. },
  7634. side: {
  7635. height: math.unit(5 + 8 / 12, "feet"),
  7636. weight: math.unit(130, "lbs"),
  7637. name: "Side",
  7638. image: {
  7639. source: "./media/characters/corvin/side.svg",
  7640. extra: 1012 / 945
  7641. }
  7642. },
  7643. back: {
  7644. height: math.unit(5 + 8 / 12, "feet"),
  7645. weight: math.unit(130, "lbs"),
  7646. name: "Back",
  7647. image: {
  7648. source: "./media/characters/corvin/back.svg",
  7649. extra: 1803 / 1629
  7650. }
  7651. },
  7652. },
  7653. [
  7654. {
  7655. name: "Micro",
  7656. height: math.unit(3, "inches")
  7657. },
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(5 + 8 / 12, "feet")
  7661. },
  7662. {
  7663. name: "Macro",
  7664. height: math.unit(300, "feet"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Megamacro",
  7669. height: math.unit(500, "miles")
  7670. }
  7671. ]
  7672. ))
  7673. characterMakers.push(() => makeCharacter(
  7674. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7675. {
  7676. front: {
  7677. height: math.unit(6, "feet"),
  7678. weight: math.unit(135, "lbs"),
  7679. name: "Front",
  7680. image: {
  7681. source: "./media/characters/q/front.svg",
  7682. extra: 854 / 752,
  7683. bottom: 0.005
  7684. }
  7685. },
  7686. back: {
  7687. height: math.unit(6, "feet"),
  7688. weight: math.unit(130, "lbs"),
  7689. name: "Back",
  7690. image: {
  7691. source: "./media/characters/q/back.svg",
  7692. extra: 854 / 752
  7693. }
  7694. },
  7695. },
  7696. [
  7697. {
  7698. name: "Macro",
  7699. height: math.unit(90, "feet"),
  7700. default: true
  7701. },
  7702. {
  7703. name: "Extra Macro",
  7704. height: math.unit(300, "feet"),
  7705. },
  7706. {
  7707. name: "BIG WALF",
  7708. height: math.unit(750, "feet"),
  7709. },
  7710. ]
  7711. ))
  7712. characterMakers.push(() => makeCharacter(
  7713. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7714. {
  7715. front: {
  7716. height: math.unit(6, "feet"),
  7717. weight: math.unit(150, "lbs"),
  7718. name: "Front",
  7719. image: {
  7720. source: "./media/characters/carley/front.svg",
  7721. extra: 3927 / 3540,
  7722. bottom: 29.2 / 735
  7723. }
  7724. }
  7725. },
  7726. [
  7727. {
  7728. name: "Normal",
  7729. height: math.unit(6 + 3 / 12, "feet")
  7730. },
  7731. {
  7732. name: "Macro",
  7733. height: math.unit(185, "feet"),
  7734. default: true
  7735. },
  7736. {
  7737. name: "Megamacro",
  7738. height: math.unit(8, "miles"),
  7739. },
  7740. ]
  7741. ))
  7742. characterMakers.push(() => makeCharacter(
  7743. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7744. {
  7745. front: {
  7746. height: math.unit(3, "feet"),
  7747. weight: math.unit(28, "lbs"),
  7748. name: "Front",
  7749. image: {
  7750. source: "./media/characters/citrine/front.svg"
  7751. }
  7752. }
  7753. },
  7754. [
  7755. {
  7756. name: "Normal",
  7757. height: math.unit(3, "feet"),
  7758. default: true
  7759. }
  7760. ]
  7761. ))
  7762. characterMakers.push(() => makeCharacter(
  7763. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7764. {
  7765. front: {
  7766. height: math.unit(14, "feet"),
  7767. weight: math.unit(1450, "kg"),
  7768. capacity: math.unit(15, "people"),
  7769. name: "Front",
  7770. image: {
  7771. source: "./media/characters/aura-starwind/front.svg",
  7772. extra: 1455 / 1335
  7773. }
  7774. },
  7775. side: {
  7776. height: math.unit(14, "feet"),
  7777. weight: math.unit(1450, "kg"),
  7778. capacity: math.unit(15, "people"),
  7779. name: "Side",
  7780. image: {
  7781. source: "./media/characters/aura-starwind/side.svg",
  7782. extra: 1654 / 1497
  7783. }
  7784. },
  7785. taur: {
  7786. height: math.unit(18, "feet"),
  7787. weight: math.unit(5500, "kg"),
  7788. capacity: math.unit(50, "people"),
  7789. name: "Taur",
  7790. image: {
  7791. source: "./media/characters/aura-starwind/taur.svg",
  7792. extra: 1760 / 1650
  7793. }
  7794. },
  7795. feral: {
  7796. height: math.unit(46, "feet"),
  7797. weight: math.unit(25000, "kg"),
  7798. capacity: math.unit(120, "people"),
  7799. name: "Feral",
  7800. image: {
  7801. source: "./media/characters/aura-starwind/feral.svg"
  7802. }
  7803. },
  7804. },
  7805. [
  7806. {
  7807. name: "Normal",
  7808. height: math.unit(14, "feet"),
  7809. default: true
  7810. },
  7811. {
  7812. name: "Macro",
  7813. height: math.unit(50, "meters")
  7814. },
  7815. {
  7816. name: "Megamacro",
  7817. height: math.unit(5000, "meters")
  7818. },
  7819. {
  7820. name: "Gigamacro",
  7821. height: math.unit(100000, "kilometers")
  7822. },
  7823. ]
  7824. ))
  7825. characterMakers.push(() => makeCharacter(
  7826. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7827. {
  7828. front: {
  7829. height: math.unit(2 + 7 / 12, "feet"),
  7830. weight: math.unit(32, "lbs"),
  7831. name: "Front",
  7832. image: {
  7833. source: "./media/characters/rivet/front.svg",
  7834. extra: 1716 / 1658,
  7835. bottom: 0.03
  7836. }
  7837. },
  7838. foot: {
  7839. height: math.unit(0.551, "feet"),
  7840. name: "Rivet's Foot",
  7841. image: {
  7842. source: "./media/characters/rivet/foot.svg"
  7843. },
  7844. rename: true
  7845. }
  7846. },
  7847. [
  7848. {
  7849. name: "Micro",
  7850. height: math.unit(1.5, "inches"),
  7851. },
  7852. {
  7853. name: "Normal",
  7854. height: math.unit(2 + 7 / 12, "feet"),
  7855. default: true
  7856. },
  7857. {
  7858. name: "Macro",
  7859. height: math.unit(85, "feet")
  7860. },
  7861. {
  7862. name: "Megamacro",
  7863. height: math.unit(2.2, "km")
  7864. }
  7865. ]
  7866. ))
  7867. characterMakers.push(() => makeCharacter(
  7868. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7869. {
  7870. front: {
  7871. height: math.unit(5 + 9 / 12, "feet"),
  7872. weight: math.unit(150, "lbs"),
  7873. name: "Front",
  7874. image: {
  7875. source: "./media/characters/coffee/front.svg",
  7876. extra: 3666 / 3032,
  7877. bottom: 0.04
  7878. }
  7879. },
  7880. foot: {
  7881. height: math.unit(1.29, "feet"),
  7882. name: "Foot",
  7883. image: {
  7884. source: "./media/characters/coffee/foot.svg"
  7885. }
  7886. },
  7887. },
  7888. [
  7889. {
  7890. name: "Micro",
  7891. height: math.unit(2, "inches"),
  7892. },
  7893. {
  7894. name: "Normal",
  7895. height: math.unit(5 + 9 / 12, "feet"),
  7896. default: true
  7897. },
  7898. {
  7899. name: "Macro",
  7900. height: math.unit(800, "feet")
  7901. },
  7902. {
  7903. name: "Megamacro",
  7904. height: math.unit(25, "miles")
  7905. }
  7906. ]
  7907. ))
  7908. characterMakers.push(() => makeCharacter(
  7909. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7910. {
  7911. front: {
  7912. height: math.unit(6, "feet"),
  7913. weight: math.unit(200, "lbs"),
  7914. name: "Front",
  7915. image: {
  7916. source: "./media/characters/chari-gal/front.svg",
  7917. extra: 1568 / 1385,
  7918. bottom: 0.047
  7919. }
  7920. },
  7921. gigantamax: {
  7922. height: math.unit(6 * 16, "feet"),
  7923. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7924. name: "Gigantamax",
  7925. image: {
  7926. source: "./media/characters/chari-gal/gigantamax.svg",
  7927. extra: 1124 / 888,
  7928. bottom: 0.03
  7929. }
  7930. },
  7931. },
  7932. [
  7933. {
  7934. name: "Normal",
  7935. height: math.unit(5 + 7 / 12, "feet")
  7936. },
  7937. {
  7938. name: "Macro",
  7939. height: math.unit(200, "feet"),
  7940. default: true
  7941. }
  7942. ]
  7943. ))
  7944. characterMakers.push(() => makeCharacter(
  7945. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7946. {
  7947. front: {
  7948. height: math.unit(6, "feet"),
  7949. weight: math.unit(150, "lbs"),
  7950. name: "Front",
  7951. image: {
  7952. source: "./media/characters/nova/front.svg",
  7953. extra: 5000 / 4722,
  7954. bottom: 0.02
  7955. }
  7956. }
  7957. },
  7958. [
  7959. {
  7960. name: "Micro-",
  7961. height: math.unit(0.8, "inches")
  7962. },
  7963. {
  7964. name: "Micro",
  7965. height: math.unit(2, "inches"),
  7966. default: true
  7967. },
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7972. {
  7973. front: {
  7974. height: math.unit(3 + 1 / 12, "feet"),
  7975. weight: math.unit(21.7, "lbs"),
  7976. name: "Front",
  7977. image: {
  7978. source: "./media/characters/argent/front.svg",
  7979. extra: 1471 / 1331,
  7980. bottom: 100.8 / 1575.5
  7981. }
  7982. }
  7983. },
  7984. [
  7985. {
  7986. name: "Micro",
  7987. height: math.unit(2, "inches")
  7988. },
  7989. {
  7990. name: "Normal",
  7991. height: math.unit(3 + 1 / 12, "feet"),
  7992. default: true
  7993. },
  7994. {
  7995. name: "Macro",
  7996. height: math.unit(120, "feet")
  7997. },
  7998. ]
  7999. ))
  8000. characterMakers.push(() => makeCharacter(
  8001. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8002. {
  8003. lamp: {
  8004. height: math.unit(7 * 1559 / 989, "feet"),
  8005. name: "Magic Lamp",
  8006. image: {
  8007. source: "./media/characters/mira-al-cul/lamp.svg",
  8008. extra: 1617 / 1559
  8009. }
  8010. },
  8011. front: {
  8012. height: math.unit(7, "feet"),
  8013. name: "Front",
  8014. image: {
  8015. source: "./media/characters/mira-al-cul/front.svg",
  8016. extra: 1044 / 990
  8017. }
  8018. },
  8019. },
  8020. [
  8021. {
  8022. name: "Heavily Restricted",
  8023. height: math.unit(7 * 1559 / 989, "feet")
  8024. },
  8025. {
  8026. name: "Freshly Freed",
  8027. height: math.unit(50 * 1559 / 989, "feet")
  8028. },
  8029. {
  8030. name: "World Encompassing",
  8031. height: math.unit(10000 * 1559 / 989, "miles")
  8032. },
  8033. {
  8034. name: "Galactic",
  8035. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8036. },
  8037. {
  8038. name: "Palmed Universe",
  8039. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8040. default: true
  8041. },
  8042. {
  8043. name: "Multiversal Matriarch",
  8044. height: math.unit(8.87e10, "yottameters")
  8045. },
  8046. {
  8047. name: "Void Mother",
  8048. height: math.unit(3.14e110, "yottaparsecs")
  8049. },
  8050. {
  8051. name: "Toying with Transcendence",
  8052. height: math.unit(1e307, "meters")
  8053. },
  8054. ]
  8055. ))
  8056. characterMakers.push(() => makeCharacter(
  8057. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8058. {
  8059. front: {
  8060. height: math.unit(17 + 1 / 12, "feet"),
  8061. weight: math.unit(476.2 * 5, "lbs"),
  8062. name: "Front",
  8063. image: {
  8064. source: "./media/characters/kuro-shi-uchū/front.svg",
  8065. extra: 2329 / 1835,
  8066. bottom: 0.02
  8067. }
  8068. },
  8069. },
  8070. [
  8071. {
  8072. name: "Micro",
  8073. height: math.unit(2, "inches")
  8074. },
  8075. {
  8076. name: "Normal",
  8077. height: math.unit(12, "meters")
  8078. },
  8079. {
  8080. name: "Planetary",
  8081. height: math.unit(0.00929, "AU"),
  8082. default: true
  8083. },
  8084. {
  8085. name: "Universal",
  8086. height: math.unit(20, "gigaparsecs")
  8087. },
  8088. ]
  8089. ))
  8090. characterMakers.push(() => makeCharacter(
  8091. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8092. {
  8093. front: {
  8094. height: math.unit(5 + 2 / 12, "feet"),
  8095. weight: math.unit(120, "lbs"),
  8096. name: "Front",
  8097. image: {
  8098. source: "./media/characters/katherine/front.svg",
  8099. extra: 2075 / 1969
  8100. }
  8101. },
  8102. dress: {
  8103. height: math.unit(5 + 2 / 12, "feet"),
  8104. weight: math.unit(120, "lbs"),
  8105. name: "Dress",
  8106. image: {
  8107. source: "./media/characters/katherine/dress.svg",
  8108. extra: 2258 / 2064
  8109. }
  8110. },
  8111. },
  8112. [
  8113. {
  8114. name: "Micro",
  8115. height: math.unit(1, "inches"),
  8116. default: true
  8117. },
  8118. {
  8119. name: "Normal",
  8120. height: math.unit(5 + 2 / 12, "feet")
  8121. },
  8122. {
  8123. name: "Macro",
  8124. height: math.unit(100, "meters")
  8125. },
  8126. {
  8127. name: "Megamacro",
  8128. height: math.unit(80, "miles")
  8129. },
  8130. ]
  8131. ))
  8132. characterMakers.push(() => makeCharacter(
  8133. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8134. {
  8135. front: {
  8136. height: math.unit(7 + 8 / 12, "feet"),
  8137. weight: math.unit(250, "lbs"),
  8138. name: "Front",
  8139. image: {
  8140. source: "./media/characters/yevis/front.svg",
  8141. extra: 1938 / 1755
  8142. }
  8143. }
  8144. },
  8145. [
  8146. {
  8147. name: "Mortal",
  8148. height: math.unit(7 + 8 / 12, "feet")
  8149. },
  8150. {
  8151. name: "Battle",
  8152. height: math.unit(25 + 11 / 12, "feet")
  8153. },
  8154. {
  8155. name: "Wrath",
  8156. height: math.unit(1654 + 11 / 12, "feet")
  8157. },
  8158. {
  8159. name: "Planet Destroyer",
  8160. height: math.unit(12000, "miles")
  8161. },
  8162. {
  8163. name: "Galaxy Conqueror",
  8164. height: math.unit(1.45, "zettameters"),
  8165. default: true
  8166. },
  8167. {
  8168. name: "Universal War",
  8169. height: math.unit(184, "gigaparsecs")
  8170. },
  8171. {
  8172. name: "Eternity War",
  8173. height: math.unit(1.98e55, "yottaparsecs")
  8174. },
  8175. ]
  8176. ))
  8177. characterMakers.push(() => makeCharacter(
  8178. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8179. {
  8180. front: {
  8181. height: math.unit(5 + 8 / 12, "feet"),
  8182. weight: math.unit(63, "kg"),
  8183. name: "Front",
  8184. image: {
  8185. source: "./media/characters/xavier/front.svg",
  8186. extra: 944 / 883
  8187. }
  8188. },
  8189. frontStretch: {
  8190. height: math.unit(5 + 8 / 12, "feet"),
  8191. weight: math.unit(63, "kg"),
  8192. name: "Stretching",
  8193. image: {
  8194. source: "./media/characters/xavier/front-stretch.svg",
  8195. extra: 962 / 820
  8196. }
  8197. },
  8198. },
  8199. [
  8200. {
  8201. name: "Normal",
  8202. height: math.unit(5 + 8 / 12, "feet")
  8203. },
  8204. {
  8205. name: "Macro",
  8206. height: math.unit(100, "meters"),
  8207. default: true
  8208. },
  8209. {
  8210. name: "McLargeHuge",
  8211. height: math.unit(10, "miles")
  8212. },
  8213. ]
  8214. ))
  8215. characterMakers.push(() => makeCharacter(
  8216. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8217. {
  8218. front: {
  8219. height: math.unit(5 + 5 / 12, "feet"),
  8220. weight: math.unit(150, "lb"),
  8221. name: "Front",
  8222. image: {
  8223. source: "./media/characters/joshii/front.svg",
  8224. extra: 765 / 653,
  8225. bottom: 51 / 816
  8226. }
  8227. },
  8228. foot: {
  8229. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8230. name: "Foot",
  8231. image: {
  8232. source: "./media/characters/joshii/foot.svg"
  8233. }
  8234. },
  8235. },
  8236. [
  8237. {
  8238. name: "Micro",
  8239. height: math.unit(2, "inches"),
  8240. default: true
  8241. },
  8242. {
  8243. name: "Normal",
  8244. height: math.unit(5 + 5 / 12, "feet")
  8245. },
  8246. {
  8247. name: "Macro",
  8248. height: math.unit(785, "feet")
  8249. },
  8250. {
  8251. name: "Megamacro",
  8252. height: math.unit(24.5, "miles")
  8253. },
  8254. ]
  8255. ))
  8256. characterMakers.push(() => makeCharacter(
  8257. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8258. {
  8259. front: {
  8260. height: math.unit(6, "feet"),
  8261. weight: math.unit(150, "lb"),
  8262. name: "Front",
  8263. image: {
  8264. source: "./media/characters/goddess-elizabeth/front.svg",
  8265. extra: 1800 / 1525,
  8266. bottom: 0.005
  8267. }
  8268. },
  8269. foot: {
  8270. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8271. name: "Foot",
  8272. image: {
  8273. source: "./media/characters/goddess-elizabeth/foot.svg"
  8274. }
  8275. },
  8276. mouth: {
  8277. height: math.unit(6, "feet"),
  8278. name: "Mouth",
  8279. image: {
  8280. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8281. }
  8282. },
  8283. },
  8284. [
  8285. {
  8286. name: "Micro",
  8287. height: math.unit(12, "feet")
  8288. },
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(80, "miles"),
  8292. default: true
  8293. },
  8294. {
  8295. name: "Macro",
  8296. height: math.unit(15000, "parsecs")
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8302. {
  8303. front: {
  8304. height: math.unit(5 + 9 / 12, "feet"),
  8305. weight: math.unit(144, "lb"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/kara/front.svg"
  8309. }
  8310. },
  8311. feet: {
  8312. height: math.unit(6 / 6.765, "feet"),
  8313. name: "Kara's Feet",
  8314. rename: true,
  8315. image: {
  8316. source: "./media/characters/kara/feet.svg"
  8317. }
  8318. },
  8319. },
  8320. [
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(5 + 9 / 12, "feet")
  8324. },
  8325. {
  8326. name: "Macro",
  8327. height: math.unit(174, "feet"),
  8328. default: true
  8329. },
  8330. ]
  8331. ))
  8332. characterMakers.push(() => makeCharacter(
  8333. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8334. {
  8335. front: {
  8336. height: math.unit(18, "feet"),
  8337. weight: math.unit(4050, "lb"),
  8338. name: "Front",
  8339. image: {
  8340. source: "./media/characters/tyrone/front.svg",
  8341. extra: 2405 / 2270,
  8342. bottom: 182 / 2587
  8343. }
  8344. },
  8345. },
  8346. [
  8347. {
  8348. name: "Normal",
  8349. height: math.unit(18, "feet"),
  8350. default: true
  8351. },
  8352. {
  8353. name: "Macro",
  8354. height: math.unit(300, "feet")
  8355. },
  8356. {
  8357. name: "Megamacro",
  8358. height: math.unit(15, "km")
  8359. },
  8360. {
  8361. name: "Gigamacro",
  8362. height: math.unit(500, "km")
  8363. },
  8364. {
  8365. name: "Teramacro",
  8366. height: math.unit(0.5, "gigameters")
  8367. },
  8368. {
  8369. name: "Omnimacro",
  8370. height: math.unit(1e252, "yottauniverse")
  8371. },
  8372. ]
  8373. ))
  8374. characterMakers.push(() => makeCharacter(
  8375. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8376. {
  8377. front: {
  8378. height: math.unit(7 + 8 / 12, "feet"),
  8379. weight: math.unit(120, "lb"),
  8380. name: "Front",
  8381. image: {
  8382. source: "./media/characters/danny/front.svg",
  8383. extra: 1490 / 1350
  8384. }
  8385. },
  8386. back: {
  8387. height: math.unit(7 + 8 / 12, "feet"),
  8388. weight: math.unit(120, "lb"),
  8389. name: "Back",
  8390. image: {
  8391. source: "./media/characters/danny/back.svg",
  8392. extra: 1490 / 1350
  8393. }
  8394. },
  8395. },
  8396. [
  8397. {
  8398. name: "Normal",
  8399. height: math.unit(7 + 8 / 12, "feet"),
  8400. default: true
  8401. },
  8402. ]
  8403. ))
  8404. characterMakers.push(() => makeCharacter(
  8405. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8406. {
  8407. front: {
  8408. height: math.unit(3.5, "inches"),
  8409. weight: math.unit(19, "grams"),
  8410. name: "Front",
  8411. image: {
  8412. source: "./media/characters/mallow/front.svg",
  8413. extra: 471 / 431
  8414. }
  8415. },
  8416. back: {
  8417. height: math.unit(3.5, "inches"),
  8418. weight: math.unit(19, "grams"),
  8419. name: "Back",
  8420. image: {
  8421. source: "./media/characters/mallow/back.svg",
  8422. extra: 471 / 431
  8423. }
  8424. },
  8425. },
  8426. [
  8427. {
  8428. name: "Normal",
  8429. height: math.unit(3.5, "inches"),
  8430. default: true
  8431. },
  8432. ]
  8433. ))
  8434. characterMakers.push(() => makeCharacter(
  8435. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8436. {
  8437. front: {
  8438. height: math.unit(9, "feet"),
  8439. weight: math.unit(230, "kg"),
  8440. name: "Front",
  8441. image: {
  8442. source: "./media/characters/starry-aqua/front.svg"
  8443. }
  8444. },
  8445. back: {
  8446. height: math.unit(9, "feet"),
  8447. weight: math.unit(230, "kg"),
  8448. name: "Back",
  8449. image: {
  8450. source: "./media/characters/starry-aqua/back.svg"
  8451. }
  8452. },
  8453. hand: {
  8454. height: math.unit(9 * 0.1168, "feet"),
  8455. name: "Hand",
  8456. image: {
  8457. source: "./media/characters/starry-aqua/hand.svg"
  8458. }
  8459. },
  8460. foot: {
  8461. height: math.unit(9 * 0.18, "feet"),
  8462. name: "Foot",
  8463. image: {
  8464. source: "./media/characters/starry-aqua/foot.svg"
  8465. }
  8466. }
  8467. },
  8468. [
  8469. {
  8470. name: "Micro",
  8471. height: math.unit(3, "inches")
  8472. },
  8473. {
  8474. name: "Normal",
  8475. height: math.unit(9, "feet")
  8476. },
  8477. {
  8478. name: "Macro",
  8479. height: math.unit(300, "feet"),
  8480. default: true
  8481. },
  8482. {
  8483. name: "Megamacro",
  8484. height: math.unit(3200, "feet")
  8485. }
  8486. ]
  8487. ))
  8488. characterMakers.push(() => makeCharacter(
  8489. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8490. {
  8491. front: {
  8492. height: math.unit(6, "feet"),
  8493. weight: math.unit(230, "lb"),
  8494. name: "Front",
  8495. image: {
  8496. source: "./media/characters/luka/front.svg",
  8497. extra: 1,
  8498. bottom: 0.025
  8499. }
  8500. },
  8501. },
  8502. [
  8503. {
  8504. name: "Normal",
  8505. height: math.unit(12 + 8 / 12, "feet"),
  8506. default: true
  8507. },
  8508. {
  8509. name: "Minimacro",
  8510. height: math.unit(20, "feet")
  8511. },
  8512. {
  8513. name: "Macro",
  8514. height: math.unit(250, "feet")
  8515. },
  8516. {
  8517. name: "Megamacro",
  8518. height: math.unit(5, "miles")
  8519. },
  8520. {
  8521. name: "Gigamacro",
  8522. height: math.unit(8000, "miles")
  8523. },
  8524. ]
  8525. ))
  8526. characterMakers.push(() => makeCharacter(
  8527. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8528. {
  8529. front: {
  8530. height: math.unit(6, "feet"),
  8531. weight: math.unit(150, "lb"),
  8532. name: "Front",
  8533. image: {
  8534. source: "./media/characters/natalie-nightring/front.svg",
  8535. extra: 1,
  8536. bottom: 0.06
  8537. }
  8538. },
  8539. },
  8540. [
  8541. {
  8542. name: "Uh Oh",
  8543. height: math.unit(0.1, "mm")
  8544. },
  8545. {
  8546. name: "Small",
  8547. height: math.unit(3, "inches")
  8548. },
  8549. {
  8550. name: "Human Scale",
  8551. height: math.unit(6, "feet")
  8552. },
  8553. {
  8554. name: "Librarian",
  8555. height: math.unit(50, "feet"),
  8556. default: true
  8557. },
  8558. {
  8559. name: "Immense",
  8560. height: math.unit(200, "miles")
  8561. },
  8562. ]
  8563. ))
  8564. characterMakers.push(() => makeCharacter(
  8565. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8566. {
  8567. front: {
  8568. height: math.unit(6, "feet"),
  8569. weight: math.unit(180, "lbs"),
  8570. name: "Front",
  8571. image: {
  8572. source: "./media/characters/danni-rosie/front.svg",
  8573. extra: 1260 / 1128,
  8574. bottom: 0.022
  8575. }
  8576. },
  8577. },
  8578. [
  8579. {
  8580. name: "Micro",
  8581. height: math.unit(2, "inches"),
  8582. default: true
  8583. },
  8584. ]
  8585. ))
  8586. characterMakers.push(() => makeCharacter(
  8587. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8588. {
  8589. front: {
  8590. height: math.unit(5 + 9 / 12, "feet"),
  8591. weight: math.unit(220, "lb"),
  8592. name: "Front",
  8593. image: {
  8594. source: "./media/characters/samantha-kruse/front.svg",
  8595. extra: (985 / 935),
  8596. bottom: 0.03
  8597. }
  8598. },
  8599. frontUndressed: {
  8600. height: math.unit(5 + 9 / 12, "feet"),
  8601. weight: math.unit(220, "lb"),
  8602. name: "Front (Undressed)",
  8603. image: {
  8604. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8605. extra: (973 / 923),
  8606. bottom: 0.025
  8607. }
  8608. },
  8609. fat: {
  8610. height: math.unit(5 + 9 / 12, "feet"),
  8611. weight: math.unit(900, "lb"),
  8612. name: "Front (Fat)",
  8613. image: {
  8614. source: "./media/characters/samantha-kruse/fat.svg",
  8615. extra: 2688 / 2561
  8616. }
  8617. },
  8618. },
  8619. [
  8620. {
  8621. name: "Normal",
  8622. height: math.unit(5 + 9 / 12, "feet"),
  8623. default: true
  8624. }
  8625. ]
  8626. ))
  8627. characterMakers.push(() => makeCharacter(
  8628. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8629. {
  8630. back: {
  8631. height: math.unit(5 + 4 / 12, "feet"),
  8632. weight: math.unit(4963, "lb"),
  8633. name: "Back",
  8634. image: {
  8635. source: "./media/characters/amelia-rosie/back.svg",
  8636. extra: 1113 / 963,
  8637. bottom: 0.01
  8638. }
  8639. },
  8640. },
  8641. [
  8642. {
  8643. name: "Level 0",
  8644. height: math.unit(5 + 4 / 12, "feet")
  8645. },
  8646. {
  8647. name: "Level 1",
  8648. height: math.unit(164597, "feet"),
  8649. default: true
  8650. },
  8651. {
  8652. name: "Level 2",
  8653. height: math.unit(956243, "miles")
  8654. },
  8655. {
  8656. name: "Level 3",
  8657. height: math.unit(29421709423, "miles")
  8658. },
  8659. {
  8660. name: "Level 4",
  8661. height: math.unit(154, "lightyears")
  8662. },
  8663. {
  8664. name: "Level 5",
  8665. height: math.unit(4738272, "lightyears")
  8666. },
  8667. {
  8668. name: "Level 6",
  8669. height: math.unit(145787152896, "lightyears")
  8670. },
  8671. ]
  8672. ))
  8673. characterMakers.push(() => makeCharacter(
  8674. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8675. {
  8676. front: {
  8677. height: math.unit(5 + 11 / 12, "feet"),
  8678. weight: math.unit(65, "kg"),
  8679. name: "Front",
  8680. image: {
  8681. source: "./media/characters/rook-kitara/front.svg",
  8682. extra: 1347 / 1274,
  8683. bottom: 0.005
  8684. }
  8685. },
  8686. },
  8687. [
  8688. {
  8689. name: "Totally Unfair",
  8690. height: math.unit(1.8, "mm")
  8691. },
  8692. {
  8693. name: "Lap Rookie",
  8694. height: math.unit(1.4, "feet")
  8695. },
  8696. {
  8697. name: "Normal",
  8698. height: math.unit(5 + 11 / 12, "feet"),
  8699. default: true
  8700. },
  8701. {
  8702. name: "How Did This Happen",
  8703. height: math.unit(80, "miles")
  8704. }
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8709. {
  8710. front: {
  8711. height: math.unit(7, "feet"),
  8712. weight: math.unit(300, "lb"),
  8713. name: "Front",
  8714. image: {
  8715. source: "./media/characters/pisces/front.svg",
  8716. extra: 2255 / 2115,
  8717. bottom: 0.03
  8718. }
  8719. },
  8720. back: {
  8721. height: math.unit(7, "feet"),
  8722. weight: math.unit(300, "lb"),
  8723. name: "Back",
  8724. image: {
  8725. source: "./media/characters/pisces/back.svg",
  8726. extra: 2146 / 2055,
  8727. bottom: 0.04
  8728. }
  8729. },
  8730. },
  8731. [
  8732. {
  8733. name: "Normal",
  8734. height: math.unit(7, "feet"),
  8735. default: true
  8736. },
  8737. {
  8738. name: "Swimming Pool",
  8739. height: math.unit(12.2, "meters")
  8740. },
  8741. {
  8742. name: "Olympic Swimming Pool",
  8743. height: math.unit(56.3, "meters")
  8744. },
  8745. {
  8746. name: "Lake Superior",
  8747. height: math.unit(93900, "meters")
  8748. },
  8749. {
  8750. name: "Mediterranean Sea",
  8751. height: math.unit(644457, "meters")
  8752. },
  8753. {
  8754. name: "World's Oceans",
  8755. height: math.unit(4567491, "meters")
  8756. },
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8761. {
  8762. front: {
  8763. height: math.unit(2.3, "meters"),
  8764. weight: math.unit(120, "kg"),
  8765. name: "Front",
  8766. image: {
  8767. source: "./media/characters/zelas/front.svg"
  8768. }
  8769. },
  8770. side: {
  8771. height: math.unit(2.3, "meters"),
  8772. weight: math.unit(120, "kg"),
  8773. name: "Side",
  8774. image: {
  8775. source: "./media/characters/zelas/side.svg"
  8776. }
  8777. },
  8778. back: {
  8779. height: math.unit(2.3, "meters"),
  8780. weight: math.unit(120, "kg"),
  8781. name: "Back",
  8782. image: {
  8783. source: "./media/characters/zelas/back.svg"
  8784. }
  8785. },
  8786. foot: {
  8787. height: math.unit(1.116, "feet"),
  8788. name: "Foot",
  8789. image: {
  8790. source: "./media/characters/zelas/foot.svg"
  8791. }
  8792. },
  8793. },
  8794. [
  8795. {
  8796. name: "Normal",
  8797. height: math.unit(2.3, "meters")
  8798. },
  8799. {
  8800. name: "Macro",
  8801. height: math.unit(30, "meters"),
  8802. default: true
  8803. },
  8804. ]
  8805. ))
  8806. characterMakers.push(() => makeCharacter(
  8807. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8808. {
  8809. front: {
  8810. height: math.unit(1, "inch"),
  8811. weight: math.unit(0.21, "grams"),
  8812. name: "Front",
  8813. image: {
  8814. source: "./media/characters/talbot/front.svg",
  8815. extra: 594 / 544
  8816. }
  8817. },
  8818. },
  8819. [
  8820. {
  8821. name: "Micro",
  8822. height: math.unit(1, "inch"),
  8823. default: true
  8824. },
  8825. ]
  8826. ))
  8827. characterMakers.push(() => makeCharacter(
  8828. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8829. {
  8830. front: {
  8831. height: math.unit(3 + 3 / 12, "feet"),
  8832. weight: math.unit(51.8, "lb"),
  8833. name: "Front",
  8834. image: {
  8835. source: "./media/characters/fliss/front.svg",
  8836. extra: 840 / 640
  8837. }
  8838. },
  8839. },
  8840. [
  8841. {
  8842. name: "Teeny Tiny",
  8843. height: math.unit(1, "mm")
  8844. },
  8845. {
  8846. name: "Small",
  8847. height: math.unit(1, "inch"),
  8848. default: true
  8849. },
  8850. {
  8851. name: "Standard Sylveon",
  8852. height: math.unit(3 + 3 / 12, "feet")
  8853. },
  8854. {
  8855. name: "Large Nuisance",
  8856. height: math.unit(33, "feet")
  8857. },
  8858. {
  8859. name: "City Filler",
  8860. height: math.unit(3000, "feet")
  8861. },
  8862. {
  8863. name: "New Horizon",
  8864. height: math.unit(6000, "miles")
  8865. },
  8866. ]
  8867. ))
  8868. characterMakers.push(() => makeCharacter(
  8869. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8870. {
  8871. front: {
  8872. height: math.unit(5, "cm"),
  8873. weight: math.unit(1.94, "g"),
  8874. name: "Front",
  8875. image: {
  8876. source: "./media/characters/fleta/front.svg",
  8877. extra: 835 / 803
  8878. }
  8879. },
  8880. back: {
  8881. height: math.unit(5, "cm"),
  8882. weight: math.unit(1.94, "g"),
  8883. name: "Back",
  8884. image: {
  8885. source: "./media/characters/fleta/back.svg",
  8886. extra: 835 / 803
  8887. }
  8888. },
  8889. },
  8890. [
  8891. {
  8892. name: "Micro",
  8893. height: math.unit(5, "cm"),
  8894. default: true
  8895. },
  8896. ]
  8897. ))
  8898. characterMakers.push(() => makeCharacter(
  8899. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8900. {
  8901. front: {
  8902. height: math.unit(6, "feet"),
  8903. weight: math.unit(225, "lb"),
  8904. name: "Front",
  8905. image: {
  8906. source: "./media/characters/dominic/front.svg",
  8907. extra: 1770 / 1620,
  8908. bottom: 0.025
  8909. }
  8910. },
  8911. back: {
  8912. height: math.unit(6, "feet"),
  8913. weight: math.unit(225, "lb"),
  8914. name: "Back",
  8915. image: {
  8916. source: "./media/characters/dominic/back.svg",
  8917. extra: 1745 / 1620,
  8918. bottom: 0.065
  8919. }
  8920. },
  8921. },
  8922. [
  8923. {
  8924. name: "Nano",
  8925. height: math.unit(0.1, "mm")
  8926. },
  8927. {
  8928. name: "Micro-",
  8929. height: math.unit(1, "mm")
  8930. },
  8931. {
  8932. name: "Micro",
  8933. height: math.unit(4, "inches")
  8934. },
  8935. {
  8936. name: "Normal",
  8937. height: math.unit(6 + 4 / 12, "feet"),
  8938. default: true
  8939. },
  8940. {
  8941. name: "Macro",
  8942. height: math.unit(115, "feet")
  8943. },
  8944. {
  8945. name: "Macro+",
  8946. height: math.unit(955, "feet")
  8947. },
  8948. {
  8949. name: "Megamacro",
  8950. height: math.unit(8990, "feet")
  8951. },
  8952. {
  8953. name: "Gigmacro",
  8954. height: math.unit(9310, "miles")
  8955. },
  8956. {
  8957. name: "Teramacro",
  8958. height: math.unit(1567005010, "miles")
  8959. },
  8960. {
  8961. name: "Examacro",
  8962. height: math.unit(1425, "parsecs")
  8963. },
  8964. ]
  8965. ))
  8966. characterMakers.push(() => makeCharacter(
  8967. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8968. {
  8969. front: {
  8970. height: math.unit(400, "feet"),
  8971. weight: math.unit(44444444, "lb"),
  8972. name: "Front",
  8973. image: {
  8974. source: "./media/characters/major-colonel/front.svg"
  8975. }
  8976. },
  8977. back: {
  8978. height: math.unit(400, "feet"),
  8979. weight: math.unit(44444444, "lb"),
  8980. name: "Back",
  8981. image: {
  8982. source: "./media/characters/major-colonel/back.svg"
  8983. }
  8984. },
  8985. },
  8986. [
  8987. {
  8988. name: "Macro",
  8989. height: math.unit(400, "feet"),
  8990. default: true
  8991. },
  8992. ]
  8993. ))
  8994. characterMakers.push(() => makeCharacter(
  8995. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8996. {
  8997. catFront: {
  8998. height: math.unit(6, "feet"),
  8999. weight: math.unit(120, "lb"),
  9000. name: "Front (Cat Side)",
  9001. image: {
  9002. source: "./media/characters/axel-lycan/cat-front.svg",
  9003. extra: 430 / 402,
  9004. bottom: 43 / 472.35
  9005. }
  9006. },
  9007. catBack: {
  9008. height: math.unit(6, "feet"),
  9009. weight: math.unit(120, "lb"),
  9010. name: "Back (Cat Side)",
  9011. image: {
  9012. source: "./media/characters/axel-lycan/cat-back.svg",
  9013. extra: 447 / 419,
  9014. bottom: 23.3 / 469
  9015. }
  9016. },
  9017. wolfFront: {
  9018. height: math.unit(6, "feet"),
  9019. weight: math.unit(120, "lb"),
  9020. name: "Front (Wolf Side)",
  9021. image: {
  9022. source: "./media/characters/axel-lycan/wolf-front.svg",
  9023. extra: 485 / 456,
  9024. bottom: 19 / 504
  9025. }
  9026. },
  9027. wolfBack: {
  9028. height: math.unit(6, "feet"),
  9029. weight: math.unit(120, "lb"),
  9030. name: "Back (Wolf Side)",
  9031. image: {
  9032. source: "./media/characters/axel-lycan/wolf-back.svg",
  9033. extra: 475 / 438,
  9034. bottom: 39.2 / 514
  9035. }
  9036. },
  9037. },
  9038. [
  9039. {
  9040. name: "Macro",
  9041. height: math.unit(1, "km"),
  9042. default: true
  9043. },
  9044. ]
  9045. ))
  9046. characterMakers.push(() => makeCharacter(
  9047. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9048. {
  9049. front: {
  9050. height: math.unit(5 + 9 / 12, "feet"),
  9051. weight: math.unit(175, "lb"),
  9052. name: "Front",
  9053. image: {
  9054. source: "./media/characters/vanrel-hyena/front.svg",
  9055. extra: 1086 / 1010,
  9056. bottom: 0.04
  9057. }
  9058. },
  9059. },
  9060. [
  9061. {
  9062. name: "Normal",
  9063. height: math.unit(5 + 9 / 12, "feet"),
  9064. default: true
  9065. },
  9066. ]
  9067. ))
  9068. characterMakers.push(() => makeCharacter(
  9069. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9070. {
  9071. front: {
  9072. height: math.unit(6, "feet"),
  9073. weight: math.unit(103, "lb"),
  9074. name: "Front",
  9075. image: {
  9076. source: "./media/characters/abbott-absol/front.svg",
  9077. extra: 2010 / 1842
  9078. }
  9079. },
  9080. },
  9081. [
  9082. {
  9083. name: "Megamicro",
  9084. height: math.unit(0.1, "mm")
  9085. },
  9086. {
  9087. name: "Micro",
  9088. height: math.unit(1, "inch")
  9089. },
  9090. {
  9091. name: "Normal",
  9092. height: math.unit(6, "feet"),
  9093. default: true
  9094. },
  9095. ]
  9096. ))
  9097. characterMakers.push(() => makeCharacter(
  9098. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9099. {
  9100. front: {
  9101. height: math.unit(6, "feet"),
  9102. weight: math.unit(264, "lb"),
  9103. name: "Front",
  9104. image: {
  9105. source: "./media/characters/hector/front.svg",
  9106. extra: 2280 / 2130,
  9107. bottom: 0.07
  9108. }
  9109. },
  9110. },
  9111. [
  9112. {
  9113. name: "Normal",
  9114. height: math.unit(12.25, "foot"),
  9115. default: true
  9116. },
  9117. {
  9118. name: "Macro",
  9119. height: math.unit(160, "feet")
  9120. },
  9121. ]
  9122. ))
  9123. characterMakers.push(() => makeCharacter(
  9124. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9125. {
  9126. front: {
  9127. height: math.unit(6, "feet"),
  9128. weight: math.unit(150, "lb"),
  9129. name: "Front",
  9130. image: {
  9131. source: "./media/characters/sal/front.svg",
  9132. extra: 1846 / 1699,
  9133. bottom: 0.04
  9134. }
  9135. },
  9136. },
  9137. [
  9138. {
  9139. name: "Megamacro",
  9140. height: math.unit(10, "miles"),
  9141. default: true
  9142. },
  9143. ]
  9144. ))
  9145. characterMakers.push(() => makeCharacter(
  9146. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9147. {
  9148. front: {
  9149. height: math.unit(3, "meters"),
  9150. weight: math.unit(450, "kg"),
  9151. name: "front",
  9152. image: {
  9153. source: "./media/characters/ranger/front.svg",
  9154. extra: 2401 / 2243,
  9155. bottom: 0.05
  9156. }
  9157. },
  9158. },
  9159. [
  9160. {
  9161. name: "Normal",
  9162. height: math.unit(3, "meters"),
  9163. default: true
  9164. },
  9165. ]
  9166. ))
  9167. characterMakers.push(() => makeCharacter(
  9168. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9169. {
  9170. front: {
  9171. height: math.unit(14, "feet"),
  9172. weight: math.unit(800, "kg"),
  9173. name: "Front",
  9174. image: {
  9175. source: "./media/characters/theresa/front.svg",
  9176. extra: 3575 / 3346,
  9177. bottom: 0.03
  9178. }
  9179. },
  9180. },
  9181. [
  9182. {
  9183. name: "Normal",
  9184. height: math.unit(14, "feet"),
  9185. default: true
  9186. },
  9187. ]
  9188. ))
  9189. characterMakers.push(() => makeCharacter(
  9190. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9191. {
  9192. front: {
  9193. height: math.unit(6, "feet"),
  9194. weight: math.unit(3, "kg"),
  9195. name: "Front",
  9196. image: {
  9197. source: "./media/characters/ine/front.svg",
  9198. extra: 678 / 539,
  9199. bottom: 0.023
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Normal",
  9206. height: math.unit(2.265, "feet"),
  9207. default: true
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9213. {
  9214. front: {
  9215. height: math.unit(5, "feet"),
  9216. weight: math.unit(30, "kg"),
  9217. name: "Front",
  9218. image: {
  9219. source: "./media/characters/vial/front.svg",
  9220. extra: 1365 / 1277,
  9221. bottom: 0.04
  9222. }
  9223. },
  9224. },
  9225. [
  9226. {
  9227. name: "Normal",
  9228. height: math.unit(5, "feet"),
  9229. default: true
  9230. },
  9231. ]
  9232. ))
  9233. characterMakers.push(() => makeCharacter(
  9234. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9235. {
  9236. side: {
  9237. height: math.unit(3.4, "meters"),
  9238. weight: math.unit(1000, "lb"),
  9239. name: "Side",
  9240. image: {
  9241. source: "./media/characters/rovoska/side.svg",
  9242. extra: 4403 / 1515
  9243. }
  9244. },
  9245. },
  9246. [
  9247. {
  9248. name: "Normal",
  9249. height: math.unit(3.4, "meters"),
  9250. default: true
  9251. },
  9252. ]
  9253. ))
  9254. characterMakers.push(() => makeCharacter(
  9255. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9256. {
  9257. front: {
  9258. height: math.unit(8, "feet"),
  9259. weight: math.unit(315, "lb"),
  9260. name: "Front",
  9261. image: {
  9262. source: "./media/characters/gunner-rotthbauer/front.svg"
  9263. }
  9264. },
  9265. back: {
  9266. height: math.unit(8, "feet"),
  9267. weight: math.unit(315, "lb"),
  9268. name: "Back",
  9269. image: {
  9270. source: "./media/characters/gunner-rotthbauer/back.svg"
  9271. }
  9272. },
  9273. },
  9274. [
  9275. {
  9276. name: "Micro",
  9277. height: math.unit(3.5, "inches")
  9278. },
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(8, "feet"),
  9282. default: true
  9283. },
  9284. {
  9285. name: "Macro",
  9286. height: math.unit(250, "feet")
  9287. },
  9288. {
  9289. name: "Megamacro",
  9290. height: math.unit(1, "AU")
  9291. },
  9292. ]
  9293. ))
  9294. characterMakers.push(() => makeCharacter(
  9295. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9296. {
  9297. front: {
  9298. height: math.unit(5 + 5 / 12, "feet"),
  9299. weight: math.unit(140, "lb"),
  9300. name: "Front",
  9301. image: {
  9302. source: "./media/characters/allatia/front.svg",
  9303. extra: 1227 / 1180,
  9304. bottom: 0.027
  9305. }
  9306. },
  9307. },
  9308. [
  9309. {
  9310. name: "Normal",
  9311. height: math.unit(5 + 5 / 12, "feet")
  9312. },
  9313. {
  9314. name: "Macro",
  9315. height: math.unit(250, "feet"),
  9316. default: true
  9317. },
  9318. {
  9319. name: "Megamacro",
  9320. height: math.unit(8, "miles")
  9321. }
  9322. ]
  9323. ))
  9324. characterMakers.push(() => makeCharacter(
  9325. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9326. {
  9327. front: {
  9328. height: math.unit(6, "feet"),
  9329. weight: math.unit(120, "lb"),
  9330. name: "Front",
  9331. image: {
  9332. source: "./media/characters/tene/front.svg",
  9333. extra: 1728 / 1578,
  9334. bottom: 0.022
  9335. }
  9336. },
  9337. stomping: {
  9338. height: math.unit(2.025, "meters"),
  9339. weight: math.unit(120, "lb"),
  9340. name: "Stomping",
  9341. image: {
  9342. source: "./media/characters/tene/stomping.svg",
  9343. extra: 938 / 873,
  9344. bottom: 0.01
  9345. }
  9346. },
  9347. sitting: {
  9348. height: math.unit(1, "meter"),
  9349. weight: math.unit(120, "lb"),
  9350. name: "Sitting",
  9351. image: {
  9352. source: "./media/characters/tene/sitting.svg",
  9353. extra: 437 / 415,
  9354. bottom: 0.1
  9355. }
  9356. },
  9357. feral: {
  9358. height: math.unit(3.9, "feet"),
  9359. weight: math.unit(250, "lb"),
  9360. name: "Feral",
  9361. image: {
  9362. source: "./media/characters/tene/feral.svg",
  9363. extra: 717 / 458,
  9364. bottom: 0.179
  9365. }
  9366. },
  9367. },
  9368. [
  9369. {
  9370. name: "Normal",
  9371. height: math.unit(6, "feet")
  9372. },
  9373. {
  9374. name: "Macro",
  9375. height: math.unit(300, "feet"),
  9376. default: true
  9377. },
  9378. {
  9379. name: "Megamacro",
  9380. height: math.unit(5, "miles")
  9381. },
  9382. ]
  9383. ))
  9384. characterMakers.push(() => makeCharacter(
  9385. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9386. {
  9387. side: {
  9388. height: math.unit(6, "feet"),
  9389. name: "Side",
  9390. image: {
  9391. source: "./media/characters/evander/side.svg",
  9392. extra: 877 / 477
  9393. }
  9394. },
  9395. },
  9396. [
  9397. {
  9398. name: "Normal",
  9399. height: math.unit(0.83, "meters"),
  9400. default: true
  9401. },
  9402. ]
  9403. ))
  9404. characterMakers.push(() => makeCharacter(
  9405. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9406. {
  9407. front: {
  9408. height: math.unit(12, "feet"),
  9409. weight: math.unit(1000, "lb"),
  9410. name: "Front",
  9411. image: {
  9412. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9413. extra: 1762 / 1611
  9414. }
  9415. },
  9416. back: {
  9417. height: math.unit(12, "feet"),
  9418. weight: math.unit(1000, "lb"),
  9419. name: "Back",
  9420. image: {
  9421. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9422. extra: 1762 / 1611
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Normal",
  9429. height: math.unit(12, "feet"),
  9430. default: true
  9431. },
  9432. {
  9433. name: "Kaiju",
  9434. height: math.unit(150, "feet")
  9435. },
  9436. ]
  9437. ))
  9438. characterMakers.push(() => makeCharacter(
  9439. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9440. {
  9441. front: {
  9442. height: math.unit(6, "feet"),
  9443. weight: math.unit(150, "lb"),
  9444. name: "Front",
  9445. image: {
  9446. source: "./media/characters/zero-alurus/front.svg"
  9447. }
  9448. },
  9449. back: {
  9450. height: math.unit(6, "feet"),
  9451. weight: math.unit(150, "lb"),
  9452. name: "Back",
  9453. image: {
  9454. source: "./media/characters/zero-alurus/back.svg"
  9455. }
  9456. },
  9457. },
  9458. [
  9459. {
  9460. name: "Normal",
  9461. height: math.unit(5 + 10 / 12, "feet")
  9462. },
  9463. {
  9464. name: "Macro",
  9465. height: math.unit(60, "feet"),
  9466. default: true
  9467. },
  9468. {
  9469. name: "Macro+",
  9470. height: math.unit(450, "feet")
  9471. },
  9472. ]
  9473. ))
  9474. characterMakers.push(() => makeCharacter(
  9475. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9476. {
  9477. front: {
  9478. height: math.unit(6, "feet"),
  9479. weight: math.unit(200, "lb"),
  9480. name: "Front",
  9481. image: {
  9482. source: "./media/characters/mega-shi/front.svg",
  9483. extra: 1279 / 1250,
  9484. bottom: 0.02
  9485. }
  9486. },
  9487. back: {
  9488. height: math.unit(6, "feet"),
  9489. weight: math.unit(200, "lb"),
  9490. name: "Back",
  9491. image: {
  9492. source: "./media/characters/mega-shi/back.svg",
  9493. extra: 1279 / 1250,
  9494. bottom: 0.02
  9495. }
  9496. },
  9497. },
  9498. [
  9499. {
  9500. name: "Micro",
  9501. height: math.unit(16 + 6 / 12, "feet")
  9502. },
  9503. {
  9504. name: "Third Dimension",
  9505. height: math.unit(40, "meters")
  9506. },
  9507. {
  9508. name: "Normal",
  9509. height: math.unit(660, "feet"),
  9510. default: true
  9511. },
  9512. {
  9513. name: "Megamacro",
  9514. height: math.unit(10, "miles")
  9515. },
  9516. {
  9517. name: "Planetary Launch",
  9518. height: math.unit(500, "miles")
  9519. },
  9520. {
  9521. name: "Interstellar",
  9522. height: math.unit(1e9, "miles")
  9523. },
  9524. {
  9525. name: "Leaving the Universe",
  9526. height: math.unit(1, "gigaparsec")
  9527. },
  9528. {
  9529. name: "Travelling Universes",
  9530. height: math.unit(30e15, "parsecs")
  9531. },
  9532. ]
  9533. ))
  9534. characterMakers.push(() => makeCharacter(
  9535. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9536. {
  9537. front: {
  9538. height: math.unit(6, "feet"),
  9539. weight: math.unit(150, "lb"),
  9540. name: "Front",
  9541. image: {
  9542. source: "./media/characters/odyssey/front.svg",
  9543. extra: 1782 / 1582,
  9544. bottom: 0.01
  9545. }
  9546. },
  9547. side: {
  9548. height: math.unit(5.7, "feet"),
  9549. weight: math.unit(140, "lb"),
  9550. name: "Side",
  9551. image: {
  9552. source: "./media/characters/odyssey/side.svg",
  9553. extra: 6462 / 5700
  9554. }
  9555. },
  9556. },
  9557. [
  9558. {
  9559. name: "Normal",
  9560. height: math.unit(5 + 4 / 12, "feet")
  9561. },
  9562. {
  9563. name: "Macro",
  9564. height: math.unit(1, "km")
  9565. },
  9566. {
  9567. name: "Megamacro",
  9568. height: math.unit(3000, "km")
  9569. },
  9570. {
  9571. name: "Gigamacro",
  9572. height: math.unit(1, "AU"),
  9573. default: true
  9574. },
  9575. {
  9576. name: "Omniversal",
  9577. height: math.unit(100e14, "lightyears")
  9578. },
  9579. ]
  9580. ))
  9581. characterMakers.push(() => makeCharacter(
  9582. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9583. {
  9584. front: {
  9585. height: math.unit(6, "feet"),
  9586. weight: math.unit(300, "lb"),
  9587. name: "Front",
  9588. image: {
  9589. source: "./media/characters/mekuto/front.svg",
  9590. extra: 921 / 832,
  9591. bottom: 0.03
  9592. }
  9593. },
  9594. hand: {
  9595. height: math.unit(6 / 10.24, "feet"),
  9596. name: "Hand",
  9597. image: {
  9598. source: "./media/characters/mekuto/hand.svg"
  9599. }
  9600. },
  9601. foot: {
  9602. height: math.unit(6 / 5.05, "feet"),
  9603. name: "Foot",
  9604. image: {
  9605. source: "./media/characters/mekuto/foot.svg"
  9606. }
  9607. },
  9608. },
  9609. [
  9610. {
  9611. name: "Minimicro",
  9612. height: math.unit(0.2, "inches")
  9613. },
  9614. {
  9615. name: "Micro",
  9616. height: math.unit(1.5, "inches")
  9617. },
  9618. {
  9619. name: "Normal",
  9620. height: math.unit(5 + 11 / 12, "feet"),
  9621. default: true
  9622. },
  9623. {
  9624. name: "Minimacro",
  9625. height: math.unit(17 + 9 / 12, "feet")
  9626. },
  9627. {
  9628. name: "Macro",
  9629. height: math.unit(177.5, "feet")
  9630. },
  9631. {
  9632. name: "Megamacro",
  9633. height: math.unit(152, "miles")
  9634. },
  9635. ]
  9636. ))
  9637. characterMakers.push(() => makeCharacter(
  9638. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9639. {
  9640. front: {
  9641. height: math.unit(6.5, "inches"),
  9642. weight: math.unit(13, "oz"),
  9643. name: "Front",
  9644. image: {
  9645. source: "./media/characters/dafydd-tomos/front.svg",
  9646. extra: 2990 / 2603,
  9647. bottom: 0.03
  9648. }
  9649. },
  9650. },
  9651. [
  9652. {
  9653. name: "Micro",
  9654. height: math.unit(6.5, "inches"),
  9655. default: true
  9656. },
  9657. ]
  9658. ))
  9659. characterMakers.push(() => makeCharacter(
  9660. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9661. {
  9662. front: {
  9663. height: math.unit(6, "feet"),
  9664. weight: math.unit(150, "lb"),
  9665. name: "Front",
  9666. image: {
  9667. source: "./media/characters/splinter/front.svg",
  9668. extra: 2990 / 2882,
  9669. bottom: 0.04
  9670. }
  9671. },
  9672. back: {
  9673. height: math.unit(6, "feet"),
  9674. weight: math.unit(150, "lb"),
  9675. name: "Back",
  9676. image: {
  9677. source: "./media/characters/splinter/back.svg",
  9678. extra: 2990 / 2882,
  9679. bottom: 0.04
  9680. }
  9681. },
  9682. },
  9683. [
  9684. {
  9685. name: "Normal",
  9686. height: math.unit(6, "feet")
  9687. },
  9688. {
  9689. name: "Macro",
  9690. height: math.unit(230, "meters"),
  9691. default: true
  9692. },
  9693. ]
  9694. ))
  9695. characterMakers.push(() => makeCharacter(
  9696. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9697. {
  9698. front: {
  9699. height: math.unit(4 + 10 / 12, "feet"),
  9700. weight: math.unit(480, "lb"),
  9701. name: "Front",
  9702. image: {
  9703. source: "./media/characters/snow-gabumon/front.svg",
  9704. extra: 1140 / 963,
  9705. bottom: 0.058
  9706. }
  9707. },
  9708. back: {
  9709. height: math.unit(4 + 10 / 12, "feet"),
  9710. weight: math.unit(480, "lb"),
  9711. name: "Back",
  9712. image: {
  9713. source: "./media/characters/snow-gabumon/back.svg",
  9714. extra: 1115 / 962,
  9715. bottom: 0.041
  9716. }
  9717. },
  9718. frontUndresed: {
  9719. height: math.unit(4 + 10 / 12, "feet"),
  9720. weight: math.unit(480, "lb"),
  9721. name: "Front (Undressed)",
  9722. image: {
  9723. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9724. extra: 1061 / 960,
  9725. bottom: 0.045
  9726. }
  9727. },
  9728. },
  9729. [
  9730. {
  9731. name: "Micro",
  9732. height: math.unit(1, "inch")
  9733. },
  9734. {
  9735. name: "Normal",
  9736. height: math.unit(4 + 10 / 12, "feet"),
  9737. default: true
  9738. },
  9739. {
  9740. name: "Macro",
  9741. height: math.unit(200, "feet")
  9742. },
  9743. {
  9744. name: "Megamacro",
  9745. height: math.unit(120, "miles")
  9746. },
  9747. {
  9748. name: "Gigamacro",
  9749. height: math.unit(9800, "miles")
  9750. },
  9751. ]
  9752. ))
  9753. characterMakers.push(() => makeCharacter(
  9754. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9755. {
  9756. front: {
  9757. height: math.unit(1.7, "meters"),
  9758. weight: math.unit(140, "lb"),
  9759. name: "Front",
  9760. image: {
  9761. source: "./media/characters/moody/front.svg",
  9762. extra: 3226 / 3007,
  9763. bottom: 0.087
  9764. }
  9765. },
  9766. },
  9767. [
  9768. {
  9769. name: "Micro",
  9770. height: math.unit(1, "mm")
  9771. },
  9772. {
  9773. name: "Normal",
  9774. height: math.unit(1.7, "meters"),
  9775. default: true
  9776. },
  9777. {
  9778. name: "Macro",
  9779. height: math.unit(80, "meters")
  9780. },
  9781. {
  9782. name: "Macro+",
  9783. height: math.unit(500, "meters")
  9784. },
  9785. ]
  9786. ))
  9787. characterMakers.push(() => makeCharacter(
  9788. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9789. {
  9790. front: {
  9791. height: math.unit(6, "feet"),
  9792. weight: math.unit(150, "lb"),
  9793. name: "Front",
  9794. image: {
  9795. source: "./media/characters/zyas/front.svg",
  9796. extra: 1180 / 1120,
  9797. bottom: 0.045
  9798. }
  9799. },
  9800. },
  9801. [
  9802. {
  9803. name: "Normal",
  9804. height: math.unit(10, "feet"),
  9805. default: true
  9806. },
  9807. {
  9808. name: "Macro",
  9809. height: math.unit(500, "feet")
  9810. },
  9811. {
  9812. name: "Megamacro",
  9813. height: math.unit(5, "miles")
  9814. },
  9815. {
  9816. name: "Teramacro",
  9817. height: math.unit(150000, "miles")
  9818. },
  9819. ]
  9820. ))
  9821. characterMakers.push(() => makeCharacter(
  9822. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9823. {
  9824. front: {
  9825. height: math.unit(6, "feet"),
  9826. weight: math.unit(150, "lb"),
  9827. name: "Front",
  9828. image: {
  9829. source: "./media/characters/cuon/front.svg",
  9830. extra: 1390 / 1320,
  9831. bottom: 0.008
  9832. }
  9833. },
  9834. },
  9835. [
  9836. {
  9837. name: "Micro",
  9838. height: math.unit(3, "inches")
  9839. },
  9840. {
  9841. name: "Normal",
  9842. height: math.unit(18 + 9 / 12, "feet"),
  9843. default: true
  9844. },
  9845. {
  9846. name: "Macro",
  9847. height: math.unit(360, "feet")
  9848. },
  9849. {
  9850. name: "Megamacro",
  9851. height: math.unit(360, "miles")
  9852. },
  9853. ]
  9854. ))
  9855. characterMakers.push(() => makeCharacter(
  9856. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9857. {
  9858. front: {
  9859. height: math.unit(2.4, "meters"),
  9860. weight: math.unit(70, "kg"),
  9861. name: "Front",
  9862. image: {
  9863. source: "./media/characters/nyanuxk/front.svg",
  9864. extra: 1172 / 1084,
  9865. bottom: 0.065
  9866. }
  9867. },
  9868. side: {
  9869. height: math.unit(2.4, "meters"),
  9870. weight: math.unit(70, "kg"),
  9871. name: "Side",
  9872. image: {
  9873. source: "./media/characters/nyanuxk/side.svg",
  9874. extra: 1190 / 1132,
  9875. bottom: 0.007
  9876. }
  9877. },
  9878. back: {
  9879. height: math.unit(2.4, "meters"),
  9880. weight: math.unit(70, "kg"),
  9881. name: "Back",
  9882. image: {
  9883. source: "./media/characters/nyanuxk/back.svg",
  9884. extra: 1200 / 1141,
  9885. bottom: 0.015
  9886. }
  9887. },
  9888. foot: {
  9889. height: math.unit(0.52, "meters"),
  9890. name: "Foot",
  9891. image: {
  9892. source: "./media/characters/nyanuxk/foot.svg"
  9893. }
  9894. },
  9895. },
  9896. [
  9897. {
  9898. name: "Micro",
  9899. height: math.unit(2, "cm")
  9900. },
  9901. {
  9902. name: "Normal",
  9903. height: math.unit(2.4, "meters"),
  9904. default: true
  9905. },
  9906. {
  9907. name: "Smaller Macro",
  9908. height: math.unit(120, "meters")
  9909. },
  9910. {
  9911. name: "Bigger Macro",
  9912. height: math.unit(1.2, "km")
  9913. },
  9914. {
  9915. name: "Megamacro",
  9916. height: math.unit(15, "kilometers")
  9917. },
  9918. {
  9919. name: "Gigamacro",
  9920. height: math.unit(2000, "km")
  9921. },
  9922. {
  9923. name: "Teramacro",
  9924. height: math.unit(500000, "km")
  9925. },
  9926. ]
  9927. ))
  9928. characterMakers.push(() => makeCharacter(
  9929. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9930. {
  9931. side: {
  9932. height: math.unit(6, "feet"),
  9933. name: "Side",
  9934. image: {
  9935. source: "./media/characters/ailbhe/side.svg",
  9936. extra: 757 / 464,
  9937. bottom: 0.041
  9938. }
  9939. },
  9940. },
  9941. [
  9942. {
  9943. name: "Normal",
  9944. height: math.unit(1.07, "meters"),
  9945. default: true
  9946. },
  9947. ]
  9948. ))
  9949. characterMakers.push(() => makeCharacter(
  9950. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9951. {
  9952. front: {
  9953. height: math.unit(6, "feet"),
  9954. weight: math.unit(120, "kg"),
  9955. name: "Front",
  9956. image: {
  9957. source: "./media/characters/zevulfius/front.svg",
  9958. extra: 965 / 903
  9959. }
  9960. },
  9961. side: {
  9962. height: math.unit(6, "feet"),
  9963. weight: math.unit(120, "kg"),
  9964. name: "Side",
  9965. image: {
  9966. source: "./media/characters/zevulfius/side.svg",
  9967. extra: 939 / 900
  9968. }
  9969. },
  9970. back: {
  9971. height: math.unit(6, "feet"),
  9972. weight: math.unit(120, "kg"),
  9973. name: "Back",
  9974. image: {
  9975. source: "./media/characters/zevulfius/back.svg",
  9976. extra: 918 / 854,
  9977. bottom: 0.005
  9978. }
  9979. },
  9980. foot: {
  9981. height: math.unit(6 / 3.72, "feet"),
  9982. name: "Foot",
  9983. image: {
  9984. source: "./media/characters/zevulfius/foot.svg"
  9985. }
  9986. },
  9987. },
  9988. [
  9989. {
  9990. name: "Macro",
  9991. height: math.unit(750, "meters")
  9992. },
  9993. {
  9994. name: "Megamacro",
  9995. height: math.unit(20, "km"),
  9996. default: true
  9997. },
  9998. {
  9999. name: "Gigamacro",
  10000. height: math.unit(2000, "km")
  10001. },
  10002. {
  10003. name: "Teramacro",
  10004. height: math.unit(250000, "km")
  10005. },
  10006. ]
  10007. ))
  10008. characterMakers.push(() => makeCharacter(
  10009. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10010. {
  10011. front: {
  10012. height: math.unit(100, "feet"),
  10013. weight: math.unit(350, "kg"),
  10014. name: "Front",
  10015. image: {
  10016. source: "./media/characters/rikes/front.svg",
  10017. extra: 1565 / 1483,
  10018. bottom: 0.017
  10019. }
  10020. },
  10021. },
  10022. [
  10023. {
  10024. name: "Macro",
  10025. height: math.unit(100, "feet"),
  10026. default: true
  10027. },
  10028. ]
  10029. ))
  10030. characterMakers.push(() => makeCharacter(
  10031. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10032. {
  10033. anthro: {
  10034. height: math.unit(8, "feet"),
  10035. weight: math.unit(120, "kg"),
  10036. name: "Anthro",
  10037. image: {
  10038. source: "./media/characters/adam-silver-mane/anthro.svg",
  10039. extra: 5743 / 5339,
  10040. bottom: 0.07
  10041. }
  10042. },
  10043. taur: {
  10044. height: math.unit(16, "feet"),
  10045. weight: math.unit(1500, "kg"),
  10046. name: "Taur",
  10047. image: {
  10048. source: "./media/characters/adam-silver-mane/taur.svg",
  10049. extra: 1713 / 1571,
  10050. bottom: 0.01
  10051. }
  10052. },
  10053. },
  10054. [
  10055. {
  10056. name: "Normal",
  10057. height: math.unit(8, "feet")
  10058. },
  10059. {
  10060. name: "Minimacro",
  10061. height: math.unit(80, "feet")
  10062. },
  10063. {
  10064. name: "Macro",
  10065. height: math.unit(800, "feet"),
  10066. default: true
  10067. },
  10068. {
  10069. name: "Megamacro",
  10070. height: math.unit(8000, "feet")
  10071. },
  10072. {
  10073. name: "Gigamacro",
  10074. height: math.unit(800, "miles")
  10075. },
  10076. {
  10077. name: "Teramacro",
  10078. height: math.unit(80000, "miles")
  10079. },
  10080. {
  10081. name: "Celestial",
  10082. height: math.unit(8e6, "miles")
  10083. },
  10084. {
  10085. name: "Star Dragon",
  10086. height: math.unit(800000, "parsecs")
  10087. },
  10088. {
  10089. name: "Godly",
  10090. height: math.unit(800, "teraparsecs")
  10091. },
  10092. ]
  10093. ))
  10094. characterMakers.push(() => makeCharacter(
  10095. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10096. {
  10097. front: {
  10098. height: math.unit(6, "feet"),
  10099. weight: math.unit(150, "lb"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/ky'owin/front.svg",
  10103. extra: 3888 / 3068,
  10104. bottom: 0.015
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Normal",
  10111. height: math.unit(6 + 8 / 12, "feet")
  10112. },
  10113. {
  10114. name: "Large",
  10115. height: math.unit(68, "feet")
  10116. },
  10117. {
  10118. name: "Macro",
  10119. height: math.unit(132, "feet")
  10120. },
  10121. {
  10122. name: "Macro+",
  10123. height: math.unit(340, "feet")
  10124. },
  10125. {
  10126. name: "Macro++",
  10127. height: math.unit(680, "feet"),
  10128. default: true
  10129. },
  10130. {
  10131. name: "Megamacro",
  10132. height: math.unit(1, "mile")
  10133. },
  10134. {
  10135. name: "Megamacro+",
  10136. height: math.unit(10, "miles")
  10137. },
  10138. ]
  10139. ))
  10140. characterMakers.push(() => makeCharacter(
  10141. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10142. {
  10143. front: {
  10144. height: math.unit(4, "feet"),
  10145. weight: math.unit(50, "lb"),
  10146. name: "Front",
  10147. image: {
  10148. source: "./media/characters/mal/front.svg",
  10149. extra: 785 / 724,
  10150. bottom: 0.07
  10151. }
  10152. },
  10153. },
  10154. [
  10155. {
  10156. name: "Micro",
  10157. height: math.unit(4, "inches")
  10158. },
  10159. {
  10160. name: "Normal",
  10161. height: math.unit(4, "feet"),
  10162. default: true
  10163. },
  10164. {
  10165. name: "Macro",
  10166. height: math.unit(200, "feet")
  10167. },
  10168. ]
  10169. ))
  10170. characterMakers.push(() => makeCharacter(
  10171. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10172. {
  10173. front: {
  10174. height: math.unit(6, "feet"),
  10175. weight: math.unit(150, "lb"),
  10176. name: "Front",
  10177. image: {
  10178. source: "./media/characters/jordan-deware/front.svg",
  10179. extra: 1191 / 1012
  10180. }
  10181. },
  10182. },
  10183. [
  10184. {
  10185. name: "Nano",
  10186. height: math.unit(0.01, "mm")
  10187. },
  10188. {
  10189. name: "Minimicro",
  10190. height: math.unit(1, "mm")
  10191. },
  10192. {
  10193. name: "Micro",
  10194. height: math.unit(0.5, "inches")
  10195. },
  10196. {
  10197. name: "Normal",
  10198. height: math.unit(4, "feet"),
  10199. default: true
  10200. },
  10201. {
  10202. name: "Minimacro",
  10203. height: math.unit(40, "meters")
  10204. },
  10205. {
  10206. name: "Small Macro",
  10207. height: math.unit(400, "meters")
  10208. },
  10209. {
  10210. name: "Macro",
  10211. height: math.unit(4, "miles")
  10212. },
  10213. {
  10214. name: "Megamacro",
  10215. height: math.unit(40, "miles")
  10216. },
  10217. {
  10218. name: "Megamacro+",
  10219. height: math.unit(400, "miles")
  10220. },
  10221. {
  10222. name: "Gigamacro",
  10223. height: math.unit(400000, "miles")
  10224. },
  10225. ]
  10226. ))
  10227. characterMakers.push(() => makeCharacter(
  10228. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10229. {
  10230. side: {
  10231. height: math.unit(6, "feet"),
  10232. weight: math.unit(150, "lb"),
  10233. name: "Side",
  10234. image: {
  10235. source: "./media/characters/kimiko/side.svg",
  10236. extra: 600 / 358
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Normal",
  10243. height: math.unit(15, "feet"),
  10244. default: true
  10245. },
  10246. {
  10247. name: "Macro",
  10248. height: math.unit(220, "feet")
  10249. },
  10250. {
  10251. name: "Macro+",
  10252. height: math.unit(1450, "feet")
  10253. },
  10254. {
  10255. name: "Megamacro",
  10256. height: math.unit(11500, "feet")
  10257. },
  10258. {
  10259. name: "Gigamacro",
  10260. height: math.unit(9500, "miles")
  10261. },
  10262. {
  10263. name: "Teramacro",
  10264. height: math.unit(2208005005, "miles")
  10265. },
  10266. {
  10267. name: "Examacro",
  10268. height: math.unit(2750, "parsecs")
  10269. },
  10270. {
  10271. name: "Zettamacro",
  10272. height: math.unit(101500, "parsecs")
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10278. {
  10279. front: {
  10280. height: math.unit(6, "feet"),
  10281. weight: math.unit(70, "kg"),
  10282. name: "Front",
  10283. image: {
  10284. source: "./media/characters/andrew-sleepy/front.svg"
  10285. }
  10286. },
  10287. side: {
  10288. height: math.unit(6, "feet"),
  10289. weight: math.unit(70, "kg"),
  10290. name: "Side",
  10291. image: {
  10292. source: "./media/characters/andrew-sleepy/side.svg"
  10293. }
  10294. },
  10295. },
  10296. [
  10297. {
  10298. name: "Micro",
  10299. height: math.unit(1, "mm"),
  10300. default: true
  10301. },
  10302. ]
  10303. ))
  10304. characterMakers.push(() => makeCharacter(
  10305. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10306. {
  10307. front: {
  10308. height: math.unit(6, "feet"),
  10309. weight: math.unit(150, "lb"),
  10310. name: "Front",
  10311. image: {
  10312. source: "./media/characters/judio/front.svg",
  10313. extra: 1258 / 1110
  10314. }
  10315. },
  10316. },
  10317. [
  10318. {
  10319. name: "Normal",
  10320. height: math.unit(5 + 6 / 12, "feet")
  10321. },
  10322. {
  10323. name: "Macro",
  10324. height: math.unit(1000, "feet"),
  10325. default: true
  10326. },
  10327. {
  10328. name: "Megamacro",
  10329. height: math.unit(10, "miles")
  10330. },
  10331. ]
  10332. ))
  10333. characterMakers.push(() => makeCharacter(
  10334. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10335. {
  10336. front: {
  10337. height: math.unit(6, "feet"),
  10338. weight: math.unit(68, "kg"),
  10339. name: "Front",
  10340. image: {
  10341. source: "./media/characters/nomaxice/front.svg",
  10342. extra: 1498 / 1073,
  10343. bottom: 0.075
  10344. }
  10345. },
  10346. foot: {
  10347. height: math.unit(1.1, "feet"),
  10348. name: "Foot",
  10349. image: {
  10350. source: "./media/characters/nomaxice/foot.svg"
  10351. }
  10352. },
  10353. },
  10354. [
  10355. {
  10356. name: "Micro",
  10357. height: math.unit(8, "cm")
  10358. },
  10359. {
  10360. name: "Norm",
  10361. height: math.unit(1.82, "m")
  10362. },
  10363. {
  10364. name: "Norm+",
  10365. height: math.unit(8.8, "feet")
  10366. },
  10367. {
  10368. name: "Big",
  10369. height: math.unit(8, "meters"),
  10370. default: true
  10371. },
  10372. {
  10373. name: "Macro",
  10374. height: math.unit(18, "meters")
  10375. },
  10376. {
  10377. name: "Macro+",
  10378. height: math.unit(88, "meters")
  10379. },
  10380. ]
  10381. ))
  10382. characterMakers.push(() => makeCharacter(
  10383. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10384. {
  10385. front: {
  10386. height: math.unit(12, "feet"),
  10387. weight: math.unit(1.5, "tons"),
  10388. name: "Front",
  10389. image: {
  10390. source: "./media/characters/dydros/front.svg",
  10391. extra: 863 / 800,
  10392. bottom: 0.015
  10393. }
  10394. },
  10395. back: {
  10396. height: math.unit(12, "feet"),
  10397. weight: math.unit(1.5, "tons"),
  10398. name: "Back",
  10399. image: {
  10400. source: "./media/characters/dydros/back.svg",
  10401. extra: 900 / 843,
  10402. bottom: 0.005
  10403. }
  10404. },
  10405. },
  10406. [
  10407. {
  10408. name: "Normal",
  10409. height: math.unit(12, "feet"),
  10410. default: true
  10411. },
  10412. ]
  10413. ))
  10414. characterMakers.push(() => makeCharacter(
  10415. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10416. {
  10417. front: {
  10418. height: math.unit(6, "feet"),
  10419. weight: math.unit(100, "kg"),
  10420. name: "Front",
  10421. image: {
  10422. source: "./media/characters/riggi/front.svg",
  10423. extra: 5787 / 5303
  10424. }
  10425. },
  10426. hyper: {
  10427. height: math.unit(6 * 5 / 3, "feet"),
  10428. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10429. name: "Hyper",
  10430. image: {
  10431. source: "./media/characters/riggi/hyper.svg",
  10432. extra: 3595 / 3485
  10433. }
  10434. },
  10435. },
  10436. [
  10437. {
  10438. name: "Small Macro",
  10439. height: math.unit(50, "feet")
  10440. },
  10441. {
  10442. name: "Default",
  10443. height: math.unit(200, "feet"),
  10444. default: true
  10445. },
  10446. {
  10447. name: "Loom",
  10448. height: math.unit(10000, "feet")
  10449. },
  10450. {
  10451. name: "Cruising Altitude",
  10452. height: math.unit(30000, "feet")
  10453. },
  10454. {
  10455. name: "Megamacro",
  10456. height: math.unit(100, "miles")
  10457. },
  10458. {
  10459. name: "Continent Sized",
  10460. height: math.unit(2800, "miles")
  10461. },
  10462. {
  10463. name: "Earth Sized",
  10464. height: math.unit(8000, "miles")
  10465. },
  10466. ]
  10467. ))
  10468. characterMakers.push(() => makeCharacter(
  10469. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10470. {
  10471. front: {
  10472. height: math.unit(6, "feet"),
  10473. weight: math.unit(250, "lb"),
  10474. name: "Front",
  10475. image: {
  10476. source: "./media/characters/alexi/front.svg",
  10477. extra: 3483 / 3291,
  10478. bottom: 0.04
  10479. }
  10480. },
  10481. back: {
  10482. height: math.unit(6, "feet"),
  10483. weight: math.unit(250, "lb"),
  10484. name: "Back",
  10485. image: {
  10486. source: "./media/characters/alexi/back.svg",
  10487. extra: 3533 / 3356,
  10488. bottom: 0.021
  10489. }
  10490. },
  10491. frontTransforming: {
  10492. height: math.unit(8.58, "feet"),
  10493. weight: math.unit(1300, "lb"),
  10494. name: "Transforming",
  10495. image: {
  10496. source: "./media/characters/alexi/front-transforming.svg",
  10497. extra: 437 / 409,
  10498. bottom: 19 / 458.66
  10499. }
  10500. },
  10501. frontTransformed: {
  10502. height: math.unit(12.5, "feet"),
  10503. weight: math.unit(4000, "lb"),
  10504. name: "Transformed",
  10505. image: {
  10506. source: "./media/characters/alexi/front-transformed.svg",
  10507. extra: 639 / 614,
  10508. bottom: 30.55 / 671
  10509. }
  10510. },
  10511. },
  10512. [
  10513. {
  10514. name: "Normal",
  10515. height: math.unit(14, "feet"),
  10516. default: true
  10517. },
  10518. {
  10519. name: "Minimacro",
  10520. height: math.unit(30, "meters")
  10521. },
  10522. {
  10523. name: "Macro",
  10524. height: math.unit(500, "meters")
  10525. },
  10526. {
  10527. name: "Megamacro",
  10528. height: math.unit(9000, "km")
  10529. },
  10530. {
  10531. name: "Teramacro",
  10532. height: math.unit(384000, "km")
  10533. },
  10534. ]
  10535. ))
  10536. characterMakers.push(() => makeCharacter(
  10537. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10538. {
  10539. front: {
  10540. height: math.unit(6, "feet"),
  10541. weight: math.unit(150, "lb"),
  10542. name: "Front",
  10543. image: {
  10544. source: "./media/characters/kayroo/front.svg",
  10545. extra: 1153 / 1038,
  10546. bottom: 0.06
  10547. }
  10548. },
  10549. foot: {
  10550. height: math.unit(6, "feet"),
  10551. weight: math.unit(150, "lb"),
  10552. name: "Foot",
  10553. image: {
  10554. source: "./media/characters/kayroo/foot.svg"
  10555. }
  10556. },
  10557. },
  10558. [
  10559. {
  10560. name: "Normal",
  10561. height: math.unit(8, "feet"),
  10562. default: true
  10563. },
  10564. {
  10565. name: "Minimacro",
  10566. height: math.unit(250, "feet")
  10567. },
  10568. {
  10569. name: "Macro",
  10570. height: math.unit(2800, "feet")
  10571. },
  10572. {
  10573. name: "Megamacro",
  10574. height: math.unit(5200, "feet")
  10575. },
  10576. {
  10577. name: "Gigamacro",
  10578. height: math.unit(27000, "feet")
  10579. },
  10580. {
  10581. name: "Omega",
  10582. height: math.unit(45000, "feet")
  10583. },
  10584. ]
  10585. ))
  10586. characterMakers.push(() => makeCharacter(
  10587. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10588. {
  10589. front: {
  10590. height: math.unit(18, "feet"),
  10591. weight: math.unit(5800, "lb"),
  10592. name: "Front",
  10593. image: {
  10594. source: "./media/characters/rhys/front.svg",
  10595. extra: 3386 / 3090,
  10596. bottom: 0.07
  10597. }
  10598. },
  10599. },
  10600. [
  10601. {
  10602. name: "Normal",
  10603. height: math.unit(18, "feet"),
  10604. default: true
  10605. },
  10606. {
  10607. name: "Working Size",
  10608. height: math.unit(200, "feet")
  10609. },
  10610. {
  10611. name: "Demolition Size",
  10612. height: math.unit(2000, "feet")
  10613. },
  10614. {
  10615. name: "Maximum Licensed Size",
  10616. height: math.unit(5, "miles")
  10617. },
  10618. {
  10619. name: "Maximum Observed Size",
  10620. height: math.unit(10, "yottameters")
  10621. },
  10622. ]
  10623. ))
  10624. characterMakers.push(() => makeCharacter(
  10625. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10626. {
  10627. front: {
  10628. height: math.unit(6, "feet"),
  10629. weight: math.unit(250, "lb"),
  10630. name: "Front",
  10631. image: {
  10632. source: "./media/characters/toto/front.svg",
  10633. extra: 527 / 479,
  10634. bottom: 0.05
  10635. }
  10636. },
  10637. },
  10638. [
  10639. {
  10640. name: "Micro",
  10641. height: math.unit(3, "feet")
  10642. },
  10643. {
  10644. name: "Normal",
  10645. height: math.unit(10, "feet")
  10646. },
  10647. {
  10648. name: "Macro",
  10649. height: math.unit(150, "feet"),
  10650. default: true
  10651. },
  10652. {
  10653. name: "Megamacro",
  10654. height: math.unit(1200, "feet")
  10655. },
  10656. ]
  10657. ))
  10658. characterMakers.push(() => makeCharacter(
  10659. { name: "King", species: ["lion"], tags: ["anthro"] },
  10660. {
  10661. back: {
  10662. height: math.unit(6, "feet"),
  10663. weight: math.unit(150, "lb"),
  10664. name: "Back",
  10665. image: {
  10666. source: "./media/characters/king/back.svg"
  10667. }
  10668. },
  10669. },
  10670. [
  10671. {
  10672. name: "Micro",
  10673. height: math.unit(2, "inches")
  10674. },
  10675. {
  10676. name: "Normal",
  10677. height: math.unit(8, "feet")
  10678. },
  10679. {
  10680. name: "Macro",
  10681. height: math.unit(200, "feet"),
  10682. default: true
  10683. },
  10684. {
  10685. name: "Megamacro",
  10686. height: math.unit(50, "miles")
  10687. },
  10688. ]
  10689. ))
  10690. characterMakers.push(() => makeCharacter(
  10691. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10692. {
  10693. anthro: {
  10694. height: math.unit(6 + 5 / 12, "feet"),
  10695. weight: math.unit(280, "lb"),
  10696. name: "Anthro",
  10697. image: {
  10698. source: "./media/characters/cordite/anthro.svg",
  10699. extra: 1986 / 1905,
  10700. bottom: 0.025
  10701. }
  10702. },
  10703. feral: {
  10704. height: math.unit(2, "feet"),
  10705. weight: math.unit(90, "lb"),
  10706. name: "Feral",
  10707. image: {
  10708. source: "./media/characters/cordite/feral.svg",
  10709. extra: 1260 / 755,
  10710. bottom: 0.05
  10711. }
  10712. },
  10713. },
  10714. [
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(6 + 5 / 12, "feet"),
  10718. default: true
  10719. },
  10720. ]
  10721. ))
  10722. characterMakers.push(() => makeCharacter(
  10723. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10724. {
  10725. front: {
  10726. height: math.unit(6, "feet"),
  10727. weight: math.unit(150, "lb"),
  10728. name: "Front",
  10729. image: {
  10730. source: "./media/characters/pianostrong/front.svg",
  10731. extra: 6577 / 6254,
  10732. bottom: 0.02
  10733. }
  10734. },
  10735. side: {
  10736. height: math.unit(6, "feet"),
  10737. weight: math.unit(150, "lb"),
  10738. name: "Side",
  10739. image: {
  10740. source: "./media/characters/pianostrong/side.svg",
  10741. extra: 6106 / 5730
  10742. }
  10743. },
  10744. back: {
  10745. height: math.unit(6, "feet"),
  10746. weight: math.unit(150, "lb"),
  10747. name: "Back",
  10748. image: {
  10749. source: "./media/characters/pianostrong/back.svg",
  10750. extra: 6085 / 5733,
  10751. bottom: 0.01
  10752. }
  10753. },
  10754. },
  10755. [
  10756. {
  10757. name: "Macro",
  10758. height: math.unit(100, "feet")
  10759. },
  10760. {
  10761. name: "Macro+",
  10762. height: math.unit(300, "feet"),
  10763. default: true
  10764. },
  10765. {
  10766. name: "Macro++",
  10767. height: math.unit(1000, "feet")
  10768. },
  10769. ]
  10770. ))
  10771. characterMakers.push(() => makeCharacter(
  10772. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10773. {
  10774. front: {
  10775. height: math.unit(6, "feet"),
  10776. weight: math.unit(150, "lb"),
  10777. name: "Front",
  10778. image: {
  10779. source: "./media/characters/kona/front.svg",
  10780. extra: 2960 / 2629,
  10781. bottom: 0.005
  10782. }
  10783. },
  10784. },
  10785. [
  10786. {
  10787. name: "Normal",
  10788. height: math.unit(11 + 8 / 12, "feet")
  10789. },
  10790. {
  10791. name: "Macro",
  10792. height: math.unit(850, "feet"),
  10793. default: true
  10794. },
  10795. {
  10796. name: "Macro+",
  10797. height: math.unit(1.5, "km"),
  10798. default: true
  10799. },
  10800. {
  10801. name: "Megamacro",
  10802. height: math.unit(80, "miles")
  10803. },
  10804. {
  10805. name: "Gigamacro",
  10806. height: math.unit(3500, "miles")
  10807. },
  10808. ]
  10809. ))
  10810. characterMakers.push(() => makeCharacter(
  10811. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10812. {
  10813. side: {
  10814. height: math.unit(1.9, "meters"),
  10815. weight: math.unit(326, "kg"),
  10816. name: "Side",
  10817. image: {
  10818. source: "./media/characters/levi/side.svg",
  10819. extra: 1704 / 1334,
  10820. bottom: 0.02
  10821. }
  10822. },
  10823. },
  10824. [
  10825. {
  10826. name: "Normal",
  10827. height: math.unit(1.9, "meters"),
  10828. default: true
  10829. },
  10830. {
  10831. name: "Macro",
  10832. height: math.unit(20, "meters")
  10833. },
  10834. {
  10835. name: "Macro+",
  10836. height: math.unit(200, "meters")
  10837. },
  10838. {
  10839. name: "Megamacro",
  10840. height: math.unit(2, "km")
  10841. },
  10842. {
  10843. name: "Megamacro+",
  10844. height: math.unit(20, "km")
  10845. },
  10846. {
  10847. name: "Gigamacro",
  10848. height: math.unit(2500, "km")
  10849. },
  10850. {
  10851. name: "Gigamacro+",
  10852. height: math.unit(120000, "km")
  10853. },
  10854. {
  10855. name: "Teramacro",
  10856. height: math.unit(7.77e6, "km")
  10857. },
  10858. ]
  10859. ))
  10860. characterMakers.push(() => makeCharacter(
  10861. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10862. {
  10863. front: {
  10864. height: math.unit(6 + 4 / 12, "feet"),
  10865. weight: math.unit(188, "lb"),
  10866. name: "Front",
  10867. image: {
  10868. source: "./media/characters/bmc/front.svg",
  10869. extra: 1067 / 1022,
  10870. bottom: 0.047
  10871. }
  10872. },
  10873. },
  10874. [
  10875. {
  10876. name: "Human-sized",
  10877. height: math.unit(6 + 4 / 12, "feet")
  10878. },
  10879. {
  10880. name: "Small",
  10881. height: math.unit(250, "feet")
  10882. },
  10883. {
  10884. name: "Normal",
  10885. height: math.unit(1250, "feet"),
  10886. default: true
  10887. },
  10888. {
  10889. name: "Good Day",
  10890. height: math.unit(88, "miles")
  10891. },
  10892. {
  10893. name: "Largest Measured Size",
  10894. height: math.unit(11.2e6, "lightyears")
  10895. },
  10896. ]
  10897. ))
  10898. characterMakers.push(() => makeCharacter(
  10899. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10900. {
  10901. front: {
  10902. height: math.unit(20, "feet"),
  10903. weight: math.unit(2016, "kg"),
  10904. name: "Front",
  10905. image: {
  10906. source: "./media/characters/sven-the-kaiju/front.svg",
  10907. extra: 1479 / 1449,
  10908. bottom: 0.05
  10909. }
  10910. },
  10911. },
  10912. [
  10913. {
  10914. name: "Fairy",
  10915. height: math.unit(6, "inches")
  10916. },
  10917. {
  10918. name: "Normal",
  10919. height: math.unit(20, "feet"),
  10920. default: true
  10921. },
  10922. {
  10923. name: "Rampage",
  10924. height: math.unit(200, "feet")
  10925. },
  10926. {
  10927. name: "Archfey Forest Guardian",
  10928. height: math.unit(1, "mile")
  10929. },
  10930. ]
  10931. ))
  10932. characterMakers.push(() => makeCharacter(
  10933. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10934. {
  10935. front: {
  10936. height: math.unit(4, "meters"),
  10937. weight: math.unit(2, "tons"),
  10938. name: "Front",
  10939. image: {
  10940. source: "./media/characters/marik/front.svg",
  10941. extra: 1057 / 1003,
  10942. bottom: 0.08
  10943. }
  10944. },
  10945. },
  10946. [
  10947. {
  10948. name: "Normal",
  10949. height: math.unit(4, "meters"),
  10950. default: true
  10951. },
  10952. {
  10953. name: "Macro",
  10954. height: math.unit(20, "meters")
  10955. },
  10956. {
  10957. name: "Megamacro",
  10958. height: math.unit(50, "km")
  10959. },
  10960. {
  10961. name: "Gigamacro",
  10962. height: math.unit(100, "km")
  10963. },
  10964. {
  10965. name: "Alpha Macro",
  10966. height: math.unit(7.88e7, "yottameters")
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10972. {
  10973. front: {
  10974. height: math.unit(6, "feet"),
  10975. weight: math.unit(110, "lb"),
  10976. name: "Front",
  10977. image: {
  10978. source: "./media/characters/mel/front.svg",
  10979. extra: 736 / 617,
  10980. bottom: 0.017
  10981. }
  10982. },
  10983. },
  10984. [
  10985. {
  10986. name: "Pico",
  10987. height: math.unit(3, "pm")
  10988. },
  10989. {
  10990. name: "Nano",
  10991. height: math.unit(3, "nm")
  10992. },
  10993. {
  10994. name: "Micro",
  10995. height: math.unit(0.3, "mm"),
  10996. default: true
  10997. },
  10998. {
  10999. name: "Micro+",
  11000. height: math.unit(3, "mm")
  11001. },
  11002. {
  11003. name: "Normal",
  11004. height: math.unit(5 + 10.5 / 12, "feet")
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11010. {
  11011. kaiju: {
  11012. height: math.unit(1.75, "meters"),
  11013. weight: math.unit(55, "kg"),
  11014. name: "Kaiju",
  11015. image: {
  11016. source: "./media/characters/lykonous/kaiju.svg",
  11017. extra: 1055 / 946,
  11018. bottom: 0.135
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Normal",
  11025. height: math.unit(2.5, "meters"),
  11026. default: true
  11027. },
  11028. {
  11029. name: "Kaiju Dragon",
  11030. height: math.unit(60, "meters")
  11031. },
  11032. {
  11033. name: "Mega Kaiju",
  11034. height: math.unit(120, "km")
  11035. },
  11036. {
  11037. name: "Giga Kaiju",
  11038. height: math.unit(200, "megameters")
  11039. },
  11040. {
  11041. name: "Terra Kaiju",
  11042. height: math.unit(400, "gigameters")
  11043. },
  11044. {
  11045. name: "Kaiju Dragon God",
  11046. height: math.unit(13000, "exaparsecs")
  11047. },
  11048. ]
  11049. ))
  11050. characterMakers.push(() => makeCharacter(
  11051. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11052. {
  11053. front: {
  11054. height: math.unit(6, "feet"),
  11055. weight: math.unit(150, "lb"),
  11056. name: "Front",
  11057. image: {
  11058. source: "./media/characters/blü/front.svg",
  11059. extra: 1883 / 1564,
  11060. bottom: 0.031
  11061. }
  11062. },
  11063. },
  11064. [
  11065. {
  11066. name: "Normal",
  11067. height: math.unit(13, "feet"),
  11068. default: true
  11069. },
  11070. {
  11071. name: "Big Boi",
  11072. height: math.unit(150, "meters")
  11073. },
  11074. {
  11075. name: "Mini Stomper",
  11076. height: math.unit(300, "meters")
  11077. },
  11078. {
  11079. name: "Macro",
  11080. height: math.unit(1000, "meters")
  11081. },
  11082. {
  11083. name: "Megamacro",
  11084. height: math.unit(11000, "meters")
  11085. },
  11086. {
  11087. name: "Gigamacro",
  11088. height: math.unit(11000, "km")
  11089. },
  11090. {
  11091. name: "Teramacro",
  11092. height: math.unit(420000, "km")
  11093. },
  11094. {
  11095. name: "Examacro",
  11096. height: math.unit(120, "parsecs")
  11097. },
  11098. {
  11099. name: "God Tho",
  11100. height: math.unit(98000000000, "parsecs")
  11101. },
  11102. ]
  11103. ))
  11104. characterMakers.push(() => makeCharacter(
  11105. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11106. {
  11107. taurFront: {
  11108. height: math.unit(6, "feet"),
  11109. weight: math.unit(200, "lb"),
  11110. name: "Taur (Front)",
  11111. image: {
  11112. source: "./media/characters/scales/taur-front.svg",
  11113. extra: 1,
  11114. bottom: 0.05
  11115. }
  11116. },
  11117. taurBack: {
  11118. height: math.unit(6, "feet"),
  11119. weight: math.unit(200, "lb"),
  11120. name: "Taur (Back)",
  11121. image: {
  11122. source: "./media/characters/scales/taur-back.svg",
  11123. extra: 1,
  11124. bottom: 0.08
  11125. }
  11126. },
  11127. anthro: {
  11128. height: math.unit(6 * 7 / 12, "feet"),
  11129. weight: math.unit(100, "lb"),
  11130. name: "Anthro",
  11131. image: {
  11132. source: "./media/characters/scales/anthro.svg",
  11133. extra: 1,
  11134. bottom: 0.06
  11135. }
  11136. },
  11137. },
  11138. [
  11139. {
  11140. name: "Normal",
  11141. height: math.unit(12, "feet"),
  11142. default: true
  11143. },
  11144. ]
  11145. ))
  11146. characterMakers.push(() => makeCharacter(
  11147. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11148. {
  11149. front: {
  11150. height: math.unit(6, "feet"),
  11151. weight: math.unit(150, "lb"),
  11152. name: "Front",
  11153. image: {
  11154. source: "./media/characters/koragos/front.svg",
  11155. extra: 841 / 794,
  11156. bottom: 0.035
  11157. }
  11158. },
  11159. back: {
  11160. height: math.unit(6, "feet"),
  11161. weight: math.unit(150, "lb"),
  11162. name: "Back",
  11163. image: {
  11164. source: "./media/characters/koragos/back.svg",
  11165. extra: 841 / 810,
  11166. bottom: 0.022
  11167. }
  11168. },
  11169. },
  11170. [
  11171. {
  11172. name: "Normal",
  11173. height: math.unit(6 + 11 / 12, "feet"),
  11174. default: true
  11175. },
  11176. {
  11177. name: "Macro",
  11178. height: math.unit(490, "feet")
  11179. },
  11180. {
  11181. name: "Megamacro",
  11182. height: math.unit(10, "miles")
  11183. },
  11184. {
  11185. name: "Gigamacro",
  11186. height: math.unit(50, "miles")
  11187. },
  11188. ]
  11189. ))
  11190. characterMakers.push(() => makeCharacter(
  11191. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11192. {
  11193. front: {
  11194. height: math.unit(6, "feet"),
  11195. weight: math.unit(250, "lb"),
  11196. name: "Front",
  11197. image: {
  11198. source: "./media/characters/xylrem/front.svg",
  11199. extra: 3323 / 3050,
  11200. bottom: 0.065
  11201. }
  11202. },
  11203. },
  11204. [
  11205. {
  11206. name: "Micro",
  11207. height: math.unit(4, "feet")
  11208. },
  11209. {
  11210. name: "Normal",
  11211. height: math.unit(16, "feet"),
  11212. default: true
  11213. },
  11214. {
  11215. name: "Macro",
  11216. height: math.unit(2720, "feet")
  11217. },
  11218. {
  11219. name: "Megamacro",
  11220. height: math.unit(25000, "miles")
  11221. },
  11222. ]
  11223. ))
  11224. characterMakers.push(() => makeCharacter(
  11225. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11226. {
  11227. front: {
  11228. height: math.unit(8, "feet"),
  11229. weight: math.unit(250, "kg"),
  11230. name: "Front",
  11231. image: {
  11232. source: "./media/characters/ikideru/front.svg",
  11233. extra: 930 / 870,
  11234. bottom: 0.087
  11235. }
  11236. },
  11237. back: {
  11238. height: math.unit(8, "feet"),
  11239. weight: math.unit(250, "kg"),
  11240. name: "Back",
  11241. image: {
  11242. source: "./media/characters/ikideru/back.svg",
  11243. extra: 919 / 852,
  11244. bottom: 0.055
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Rare",
  11251. height: math.unit(8, "feet"),
  11252. default: true
  11253. },
  11254. {
  11255. name: "Playful Loom",
  11256. height: math.unit(80, "feet")
  11257. },
  11258. {
  11259. name: "City Leaner",
  11260. height: math.unit(230, "feet")
  11261. },
  11262. {
  11263. name: "Megamacro",
  11264. height: math.unit(2500, "feet")
  11265. },
  11266. {
  11267. name: "Gigamacro",
  11268. height: math.unit(26400, "feet")
  11269. },
  11270. {
  11271. name: "Tectonic Shifter",
  11272. height: math.unit(1.7, "megameters")
  11273. },
  11274. {
  11275. name: "Planet Carer",
  11276. height: math.unit(21, "megameters")
  11277. },
  11278. {
  11279. name: "God",
  11280. height: math.unit(11157.22, "parsecs")
  11281. },
  11282. ]
  11283. ))
  11284. characterMakers.push(() => makeCharacter(
  11285. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11286. {
  11287. front: {
  11288. height: math.unit(6, "feet"),
  11289. weight: math.unit(120, "lb"),
  11290. name: "Front",
  11291. image: {
  11292. source: "./media/characters/neo/front.svg"
  11293. }
  11294. },
  11295. },
  11296. [
  11297. {
  11298. name: "Micro",
  11299. height: math.unit(2, "inches"),
  11300. default: true
  11301. },
  11302. {
  11303. name: "Human Size",
  11304. height: math.unit(5 + 8 / 12, "feet")
  11305. },
  11306. ]
  11307. ))
  11308. characterMakers.push(() => makeCharacter(
  11309. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11310. {
  11311. front: {
  11312. height: math.unit(13 + 10 / 12, "feet"),
  11313. weight: math.unit(5320, "lb"),
  11314. name: "Front",
  11315. image: {
  11316. source: "./media/characters/chauncey-chantz/front.svg",
  11317. extra: 1587 / 1435,
  11318. bottom: 0.02
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Normal",
  11325. height: math.unit(13 + 10 / 12, "feet"),
  11326. default: true
  11327. },
  11328. {
  11329. name: "Macro",
  11330. height: math.unit(45, "feet")
  11331. },
  11332. {
  11333. name: "Megamacro",
  11334. height: math.unit(250, "miles")
  11335. },
  11336. {
  11337. name: "Planetary",
  11338. height: math.unit(10000, "miles")
  11339. },
  11340. {
  11341. name: "Galactic",
  11342. height: math.unit(40000, "parsecs")
  11343. },
  11344. {
  11345. name: "Universal",
  11346. height: math.unit(1, "yottameter")
  11347. },
  11348. ]
  11349. ))
  11350. characterMakers.push(() => makeCharacter(
  11351. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11352. {
  11353. front: {
  11354. height: math.unit(6, "feet"),
  11355. weight: math.unit(150, "lb"),
  11356. name: "Front",
  11357. image: {
  11358. source: "./media/characters/epifox/front.svg",
  11359. extra: 1,
  11360. bottom: 0.075
  11361. }
  11362. },
  11363. },
  11364. [
  11365. {
  11366. name: "Micro",
  11367. height: math.unit(6, "inches")
  11368. },
  11369. {
  11370. name: "Normal",
  11371. height: math.unit(12, "feet"),
  11372. default: true
  11373. },
  11374. {
  11375. name: "Macro",
  11376. height: math.unit(3810, "feet")
  11377. },
  11378. {
  11379. name: "Megamacro",
  11380. height: math.unit(500, "miles")
  11381. },
  11382. ]
  11383. ))
  11384. characterMakers.push(() => makeCharacter(
  11385. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11386. {
  11387. front: {
  11388. height: math.unit(1.8796, "m"),
  11389. weight: math.unit(230, "lb"),
  11390. name: "Front",
  11391. image: {
  11392. source: "./media/characters/colin-t/front.svg",
  11393. extra: 1272 / 1193,
  11394. bottom: 0.07
  11395. }
  11396. },
  11397. },
  11398. [
  11399. {
  11400. name: "Micro",
  11401. height: math.unit(0.571, "meters")
  11402. },
  11403. {
  11404. name: "Normal",
  11405. height: math.unit(1.8796, "meters"),
  11406. default: true
  11407. },
  11408. {
  11409. name: "Tall",
  11410. height: math.unit(4, "meters")
  11411. },
  11412. {
  11413. name: "Macro",
  11414. height: math.unit(67.241, "meters")
  11415. },
  11416. {
  11417. name: "Megamacro",
  11418. height: math.unit(371.856, "meters")
  11419. },
  11420. {
  11421. name: "Planetary",
  11422. height: math.unit(12631.5689, "km")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11428. {
  11429. front: {
  11430. height: math.unit(1.85, "meters"),
  11431. weight: math.unit(80, "kg"),
  11432. name: "Front",
  11433. image: {
  11434. source: "./media/characters/matvei/front.svg",
  11435. extra: 614 / 594,
  11436. bottom: 0.01
  11437. }
  11438. },
  11439. },
  11440. [
  11441. {
  11442. name: "Normal",
  11443. height: math.unit(1.85, "meters"),
  11444. default: true
  11445. },
  11446. ]
  11447. ))
  11448. characterMakers.push(() => makeCharacter(
  11449. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11450. {
  11451. front: {
  11452. height: math.unit(5 + 9 / 12, "feet"),
  11453. weight: math.unit(70, "lb"),
  11454. name: "Front",
  11455. image: {
  11456. source: "./media/characters/quincy/front.svg",
  11457. extra: 3041 / 2751
  11458. }
  11459. },
  11460. back: {
  11461. height: math.unit(5 + 9 / 12, "feet"),
  11462. weight: math.unit(70, "lb"),
  11463. name: "Back",
  11464. image: {
  11465. source: "./media/characters/quincy/back.svg",
  11466. extra: 3041 / 2751
  11467. }
  11468. },
  11469. flying: {
  11470. height: math.unit(5 + 4 / 12, "feet"),
  11471. weight: math.unit(70, "lb"),
  11472. name: "Flying",
  11473. image: {
  11474. source: "./media/characters/quincy/flying.svg",
  11475. extra: 1044 / 930
  11476. }
  11477. },
  11478. },
  11479. [
  11480. {
  11481. name: "Micro",
  11482. height: math.unit(3, "cm")
  11483. },
  11484. {
  11485. name: "Normal",
  11486. height: math.unit(5 + 9 / 12, "feet")
  11487. },
  11488. {
  11489. name: "Macro",
  11490. height: math.unit(200, "meters"),
  11491. default: true
  11492. },
  11493. {
  11494. name: "Megamacro",
  11495. height: math.unit(1000, "meters")
  11496. },
  11497. ]
  11498. ))
  11499. characterMakers.push(() => makeCharacter(
  11500. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11501. {
  11502. front: {
  11503. height: math.unit(4 + 7 / 12, "feet"),
  11504. weight: math.unit(50, "lb"),
  11505. name: "Front",
  11506. image: {
  11507. source: "./media/characters/vanrel/front.svg",
  11508. extra: 1,
  11509. bottom: 0.02
  11510. }
  11511. },
  11512. frontAlt: {
  11513. height: math.unit(4 + 7 / 12, "feet"),
  11514. weight: math.unit(50, "lb"),
  11515. name: "Front-alt",
  11516. image: {
  11517. source: "./media/characters/vanrel/front-alt.svg",
  11518. extra: 1,
  11519. bottom: 15 / 1511
  11520. }
  11521. },
  11522. elemental: {
  11523. height: math.unit(3, "feet"),
  11524. weight: math.unit(50, "lb"),
  11525. name: "Elemental",
  11526. image: {
  11527. source: "./media/characters/vanrel/elemental.svg",
  11528. extra: 192.3 / 162.8,
  11529. bottom: 1.79 / 194.17
  11530. }
  11531. },
  11532. side: {
  11533. height: math.unit(4 + 7 / 12, "feet"),
  11534. weight: math.unit(50, "lb"),
  11535. name: "Side",
  11536. image: {
  11537. source: "./media/characters/vanrel/side.svg",
  11538. extra: 1,
  11539. bottom: 0.025
  11540. }
  11541. },
  11542. tome: {
  11543. height: math.unit(1.35, "feet"),
  11544. weight: math.unit(10, "lb"),
  11545. name: "Vanrel's Tome",
  11546. rename: true,
  11547. image: {
  11548. source: "./media/characters/vanrel/tome.svg"
  11549. }
  11550. },
  11551. beans: {
  11552. height: math.unit(0.89, "feet"),
  11553. name: "Beans",
  11554. image: {
  11555. source: "./media/characters/vanrel/beans.svg"
  11556. }
  11557. },
  11558. },
  11559. [
  11560. {
  11561. name: "Normal",
  11562. height: math.unit(4 + 7 / 12, "feet"),
  11563. default: true
  11564. },
  11565. ]
  11566. ))
  11567. characterMakers.push(() => makeCharacter(
  11568. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11569. {
  11570. front: {
  11571. height: math.unit(7 + 5 / 12, "feet"),
  11572. weight: math.unit(150, "lb"),
  11573. name: "Front",
  11574. image: {
  11575. source: "./media/characters/kuiper-vanrel/front.svg",
  11576. extra: 1118 / 1068,
  11577. bottom: 0.09
  11578. }
  11579. },
  11580. foot: {
  11581. height: math.unit(0.55, "meters"),
  11582. name: "Foot",
  11583. image: {
  11584. source: "./media/characters/kuiper-vanrel/foot.svg",
  11585. }
  11586. },
  11587. battle: {
  11588. height: math.unit(6.824, "feet"),
  11589. weight: math.unit(150, "lb"),
  11590. name: "Battle",
  11591. image: {
  11592. source: "./media/characters/kuiper-vanrel/battle.svg",
  11593. extra: 1466 / 1327,
  11594. bottom: 29 / 1492.5
  11595. }
  11596. },
  11597. battleAlt: {
  11598. height: math.unit(6.824, "feet"),
  11599. weight: math.unit(150, "lb"),
  11600. name: "Battle (Alt)",
  11601. image: {
  11602. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11603. extra: 2081 / 1965,
  11604. bottom: 40 / 2121
  11605. }
  11606. },
  11607. },
  11608. [
  11609. {
  11610. name: "Normal",
  11611. height: math.unit(7 + 5 / 12, "feet"),
  11612. default: true
  11613. },
  11614. ]
  11615. ))
  11616. characterMakers.push(() => makeCharacter(
  11617. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11618. {
  11619. front: {
  11620. height: math.unit(8 + 5 / 12, "feet"),
  11621. weight: math.unit(150, "lb"),
  11622. name: "Front",
  11623. image: {
  11624. source: "./media/characters/keset-vanrel/front.svg",
  11625. extra: 1150 / 1084,
  11626. bottom: 0.05
  11627. }
  11628. },
  11629. hand: {
  11630. height: math.unit(0.6, "meters"),
  11631. name: "Hand",
  11632. image: {
  11633. source: "./media/characters/keset-vanrel/hand.svg"
  11634. }
  11635. },
  11636. foot: {
  11637. height: math.unit(0.94978, "meters"),
  11638. name: "Foot",
  11639. image: {
  11640. source: "./media/characters/keset-vanrel/foot.svg"
  11641. }
  11642. },
  11643. battle: {
  11644. height: math.unit(7.408, "feet"),
  11645. weight: math.unit(150, "lb"),
  11646. name: "Battle",
  11647. image: {
  11648. source: "./media/characters/keset-vanrel/battle.svg",
  11649. extra: 1890 / 1386,
  11650. bottom: 73.28 / 1970
  11651. }
  11652. },
  11653. },
  11654. [
  11655. {
  11656. name: "Normal",
  11657. height: math.unit(8 + 5 / 12, "feet"),
  11658. default: true
  11659. },
  11660. ]
  11661. ))
  11662. characterMakers.push(() => makeCharacter(
  11663. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11664. {
  11665. front: {
  11666. height: math.unit(6, "feet"),
  11667. weight: math.unit(150, "lb"),
  11668. name: "Front",
  11669. image: {
  11670. source: "./media/characters/neos/front.svg",
  11671. extra: 1696 / 992,
  11672. bottom: 0.14
  11673. }
  11674. },
  11675. },
  11676. [
  11677. {
  11678. name: "Normal",
  11679. height: math.unit(54, "cm"),
  11680. default: true
  11681. },
  11682. {
  11683. name: "Macro",
  11684. height: math.unit(100, "m")
  11685. },
  11686. {
  11687. name: "Megamacro",
  11688. height: math.unit(10, "km")
  11689. },
  11690. {
  11691. name: "Megamacro+",
  11692. height: math.unit(100, "km")
  11693. },
  11694. {
  11695. name: "Gigamacro",
  11696. height: math.unit(100, "Mm")
  11697. },
  11698. {
  11699. name: "Teramacro",
  11700. height: math.unit(100, "Gm")
  11701. },
  11702. {
  11703. name: "Examacro",
  11704. height: math.unit(100, "Em")
  11705. },
  11706. {
  11707. name: "Godly",
  11708. height: math.unit(10000, "Ym")
  11709. },
  11710. {
  11711. name: "Beyond Godly",
  11712. height: math.unit(25, "multiverses")
  11713. },
  11714. ]
  11715. ))
  11716. characterMakers.push(() => makeCharacter(
  11717. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11718. {
  11719. feminine: {
  11720. height: math.unit(5, "feet"),
  11721. weight: math.unit(100, "lb"),
  11722. name: "Feminine",
  11723. image: {
  11724. source: "./media/characters/sammy-mouse/feminine.svg",
  11725. extra: 2526 / 2425,
  11726. bottom: 0.123
  11727. }
  11728. },
  11729. masculine: {
  11730. height: math.unit(5, "feet"),
  11731. weight: math.unit(100, "lb"),
  11732. name: "Masculine",
  11733. image: {
  11734. source: "./media/characters/sammy-mouse/masculine.svg",
  11735. extra: 2526 / 2425,
  11736. bottom: 0.123
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Micro",
  11743. height: math.unit(5, "inches")
  11744. },
  11745. {
  11746. name: "Normal",
  11747. height: math.unit(5, "feet"),
  11748. default: true
  11749. },
  11750. {
  11751. name: "Macro",
  11752. height: math.unit(60, "feet")
  11753. },
  11754. ]
  11755. ))
  11756. characterMakers.push(() => makeCharacter(
  11757. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11758. {
  11759. front: {
  11760. height: math.unit(4, "feet"),
  11761. weight: math.unit(50, "lb"),
  11762. name: "Front",
  11763. image: {
  11764. source: "./media/characters/kole/front.svg",
  11765. extra: 1423 / 1303,
  11766. bottom: 0.025
  11767. }
  11768. },
  11769. back: {
  11770. height: math.unit(4, "feet"),
  11771. weight: math.unit(50, "lb"),
  11772. name: "Back",
  11773. image: {
  11774. source: "./media/characters/kole/back.svg",
  11775. extra: 1426 / 1280,
  11776. bottom: 0.02
  11777. }
  11778. },
  11779. },
  11780. [
  11781. {
  11782. name: "Normal",
  11783. height: math.unit(4, "feet"),
  11784. default: true
  11785. },
  11786. ]
  11787. ))
  11788. characterMakers.push(() => makeCharacter(
  11789. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11790. {
  11791. front: {
  11792. height: math.unit(2 + 6 / 12, "feet"),
  11793. weight: math.unit(20, "lb"),
  11794. name: "Front",
  11795. image: {
  11796. source: "./media/characters/rufran/front.svg",
  11797. extra: 2041 / 1839,
  11798. bottom: 0.055
  11799. }
  11800. },
  11801. back: {
  11802. height: math.unit(2 + 6 / 12, "feet"),
  11803. weight: math.unit(20, "lb"),
  11804. name: "Back",
  11805. image: {
  11806. source: "./media/characters/rufran/back.svg",
  11807. extra: 2054 / 1839,
  11808. bottom: 0.01
  11809. }
  11810. },
  11811. hand: {
  11812. height: math.unit(0.2166, "meters"),
  11813. name: "Hand",
  11814. image: {
  11815. source: "./media/characters/rufran/hand.svg"
  11816. }
  11817. },
  11818. foot: {
  11819. height: math.unit(0.185, "meters"),
  11820. name: "Foot",
  11821. image: {
  11822. source: "./media/characters/rufran/foot.svg"
  11823. }
  11824. },
  11825. },
  11826. [
  11827. {
  11828. name: "Micro",
  11829. height: math.unit(1, "inch")
  11830. },
  11831. {
  11832. name: "Normal",
  11833. height: math.unit(2 + 6 / 12, "feet"),
  11834. default: true
  11835. },
  11836. {
  11837. name: "Big",
  11838. height: math.unit(60, "feet")
  11839. },
  11840. {
  11841. name: "Macro",
  11842. height: math.unit(325, "feet")
  11843. },
  11844. ]
  11845. ))
  11846. characterMakers.push(() => makeCharacter(
  11847. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11848. {
  11849. front: {
  11850. height: math.unit(0.3, "meters"),
  11851. weight: math.unit(3.5, "kg"),
  11852. name: "Front",
  11853. image: {
  11854. source: "./media/characters/chip/front.svg",
  11855. extra: 748 / 674
  11856. }
  11857. },
  11858. },
  11859. [
  11860. {
  11861. name: "Micro",
  11862. height: math.unit(1, "inch"),
  11863. default: true
  11864. },
  11865. ]
  11866. ))
  11867. characterMakers.push(() => makeCharacter(
  11868. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11869. {
  11870. side: {
  11871. height: math.unit(2.3, "meters"),
  11872. weight: math.unit(3500, "lb"),
  11873. name: "Side",
  11874. image: {
  11875. source: "./media/characters/torvid/side.svg",
  11876. extra: 1972 / 722,
  11877. bottom: 0.035
  11878. }
  11879. },
  11880. },
  11881. [
  11882. {
  11883. name: "Normal",
  11884. height: math.unit(2.3, "meters"),
  11885. default: true
  11886. },
  11887. ]
  11888. ))
  11889. characterMakers.push(() => makeCharacter(
  11890. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11891. {
  11892. front: {
  11893. height: math.unit(2, "meters"),
  11894. weight: math.unit(150.5, "kg"),
  11895. name: "Front",
  11896. image: {
  11897. source: "./media/characters/susan/front.svg",
  11898. extra: 693 / 635,
  11899. bottom: 0.05
  11900. }
  11901. },
  11902. },
  11903. [
  11904. {
  11905. name: "Megamacro",
  11906. height: math.unit(505, "miles"),
  11907. default: true
  11908. },
  11909. ]
  11910. ))
  11911. characterMakers.push(() => makeCharacter(
  11912. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11913. {
  11914. front: {
  11915. height: math.unit(6, "feet"),
  11916. weight: math.unit(150, "lb"),
  11917. name: "Front",
  11918. image: {
  11919. source: "./media/characters/raindrops/front.svg",
  11920. extra: 2655 / 2461,
  11921. bottom: 49 / 2705
  11922. }
  11923. },
  11924. back: {
  11925. height: math.unit(6, "feet"),
  11926. weight: math.unit(150, "lb"),
  11927. name: "Back",
  11928. image: {
  11929. source: "./media/characters/raindrops/back.svg",
  11930. extra: 2574 / 2400,
  11931. bottom: 65 / 2634
  11932. }
  11933. },
  11934. },
  11935. [
  11936. {
  11937. name: "Micro",
  11938. height: math.unit(6, "inches")
  11939. },
  11940. {
  11941. name: "Normal",
  11942. height: math.unit(6 + 2 / 12, "feet")
  11943. },
  11944. {
  11945. name: "Macro",
  11946. height: math.unit(131, "feet"),
  11947. default: true
  11948. },
  11949. {
  11950. name: "Megamacro",
  11951. height: math.unit(15, "miles")
  11952. },
  11953. {
  11954. name: "Gigamacro",
  11955. height: math.unit(4000, "miles")
  11956. },
  11957. {
  11958. name: "Teramacro",
  11959. height: math.unit(315000, "miles")
  11960. },
  11961. ]
  11962. ))
  11963. characterMakers.push(() => makeCharacter(
  11964. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11965. {
  11966. front: {
  11967. height: math.unit(2.794, "meters"),
  11968. weight: math.unit(325, "kg"),
  11969. name: "Front",
  11970. image: {
  11971. source: "./media/characters/tezwa/front.svg",
  11972. extra: 2083 / 1906,
  11973. bottom: 0.031
  11974. }
  11975. },
  11976. foot: {
  11977. height: math.unit(0.687, "meters"),
  11978. name: "Foot",
  11979. image: {
  11980. source: "./media/characters/tezwa/foot.svg"
  11981. }
  11982. },
  11983. },
  11984. [
  11985. {
  11986. name: "Normal",
  11987. height: math.unit(9 + 2 / 12, "feet"),
  11988. default: true
  11989. },
  11990. ]
  11991. ))
  11992. characterMakers.push(() => makeCharacter(
  11993. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11994. {
  11995. front: {
  11996. height: math.unit(58, "feet"),
  11997. weight: math.unit(89000, "lb"),
  11998. name: "Front",
  11999. image: {
  12000. source: "./media/characters/typhus/front.svg",
  12001. extra: 816 / 800,
  12002. bottom: 0.065
  12003. }
  12004. },
  12005. },
  12006. [
  12007. {
  12008. name: "Macro",
  12009. height: math.unit(58, "feet"),
  12010. default: true
  12011. },
  12012. ]
  12013. ))
  12014. characterMakers.push(() => makeCharacter(
  12015. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12016. {
  12017. front: {
  12018. height: math.unit(12, "feet"),
  12019. weight: math.unit(6, "tonnes"),
  12020. name: "Front",
  12021. image: {
  12022. source: "./media/characters/lyra-von-wulf/front.svg",
  12023. extra: 1,
  12024. bottom: 0.10
  12025. }
  12026. },
  12027. frontMecha: {
  12028. height: math.unit(12, "feet"),
  12029. weight: math.unit(12, "tonnes"),
  12030. name: "Front (Mecha)",
  12031. image: {
  12032. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12033. extra: 1,
  12034. bottom: 0.042
  12035. }
  12036. },
  12037. maw: {
  12038. height: math.unit(2.2, "feet"),
  12039. name: "Maw",
  12040. image: {
  12041. source: "./media/characters/lyra-von-wulf/maw.svg"
  12042. }
  12043. },
  12044. },
  12045. [
  12046. {
  12047. name: "Normal",
  12048. height: math.unit(12, "feet"),
  12049. default: true
  12050. },
  12051. {
  12052. name: "Classic",
  12053. height: math.unit(50, "feet")
  12054. },
  12055. {
  12056. name: "Macro",
  12057. height: math.unit(500, "feet")
  12058. },
  12059. {
  12060. name: "Megamacro",
  12061. height: math.unit(1, "mile")
  12062. },
  12063. {
  12064. name: "Gigamacro",
  12065. height: math.unit(400, "miles")
  12066. },
  12067. {
  12068. name: "Teramacro",
  12069. height: math.unit(22000, "miles")
  12070. },
  12071. {
  12072. name: "Solarmacro",
  12073. height: math.unit(8600000, "miles")
  12074. },
  12075. {
  12076. name: "Galactic",
  12077. height: math.unit(1057000, "lightyears")
  12078. },
  12079. ]
  12080. ))
  12081. characterMakers.push(() => makeCharacter(
  12082. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12083. {
  12084. front: {
  12085. height: math.unit(6 + 10 / 12, "feet"),
  12086. weight: math.unit(150, "lb"),
  12087. name: "Front",
  12088. image: {
  12089. source: "./media/characters/dixon/front.svg",
  12090. extra: 3361 / 3209,
  12091. bottom: 0.01
  12092. }
  12093. },
  12094. },
  12095. [
  12096. {
  12097. name: "Normal",
  12098. height: math.unit(6 + 10 / 12, "feet"),
  12099. default: true
  12100. },
  12101. {
  12102. name: "Big",
  12103. height: math.unit(12, "meters")
  12104. },
  12105. {
  12106. name: "Macro",
  12107. height: math.unit(500, "meters")
  12108. },
  12109. {
  12110. name: "Megamacro",
  12111. height: math.unit(2, "km")
  12112. },
  12113. ]
  12114. ))
  12115. characterMakers.push(() => makeCharacter(
  12116. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12117. {
  12118. front: {
  12119. height: math.unit(185, "cm"),
  12120. weight: math.unit(68, "kg"),
  12121. name: "Front",
  12122. image: {
  12123. source: "./media/characters/kauko/front.svg",
  12124. extra: 1455 / 1421,
  12125. bottom: 0.03
  12126. }
  12127. },
  12128. back: {
  12129. height: math.unit(185, "cm"),
  12130. weight: math.unit(68, "kg"),
  12131. name: "Back",
  12132. image: {
  12133. source: "./media/characters/kauko/back.svg",
  12134. extra: 1455 / 1421,
  12135. bottom: 0.004
  12136. }
  12137. },
  12138. },
  12139. [
  12140. {
  12141. name: "Normal",
  12142. height: math.unit(185, "cm"),
  12143. default: true
  12144. },
  12145. ]
  12146. ))
  12147. characterMakers.push(() => makeCharacter(
  12148. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12149. {
  12150. front: {
  12151. height: math.unit(6, "feet"),
  12152. weight: math.unit(150, "kg"),
  12153. name: "Front",
  12154. image: {
  12155. source: "./media/characters/varg/front.svg",
  12156. extra: 1108 / 1018,
  12157. bottom: 0.0375
  12158. }
  12159. },
  12160. },
  12161. [
  12162. {
  12163. name: "Normal",
  12164. height: math.unit(5, "meters")
  12165. },
  12166. {
  12167. name: "Macro",
  12168. height: math.unit(200, "meters")
  12169. },
  12170. {
  12171. name: "Megamacro",
  12172. height: math.unit(20, "kilometers")
  12173. },
  12174. {
  12175. name: "True Size",
  12176. height: math.unit(211, "km"),
  12177. default: true
  12178. },
  12179. {
  12180. name: "Gigamacro",
  12181. height: math.unit(1000, "km")
  12182. },
  12183. {
  12184. name: "Gigamacro+",
  12185. height: math.unit(8000, "km")
  12186. },
  12187. {
  12188. name: "Teramacro",
  12189. height: math.unit(1000000, "km")
  12190. },
  12191. ]
  12192. ))
  12193. characterMakers.push(() => makeCharacter(
  12194. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12195. {
  12196. front: {
  12197. height: math.unit(7 + 7 / 12, "feet"),
  12198. weight: math.unit(267, "lb"),
  12199. name: "Front",
  12200. image: {
  12201. source: "./media/characters/dayza/front.svg",
  12202. extra: 1262 / 1200,
  12203. bottom: 0.035
  12204. }
  12205. },
  12206. side: {
  12207. height: math.unit(7 + 7 / 12, "feet"),
  12208. weight: math.unit(267, "lb"),
  12209. name: "Side",
  12210. image: {
  12211. source: "./media/characters/dayza/side.svg",
  12212. extra: 1295 / 1245,
  12213. bottom: 0.05
  12214. }
  12215. },
  12216. back: {
  12217. height: math.unit(7 + 7 / 12, "feet"),
  12218. weight: math.unit(267, "lb"),
  12219. name: "Back",
  12220. image: {
  12221. source: "./media/characters/dayza/back.svg",
  12222. extra: 1241 / 1170
  12223. }
  12224. },
  12225. },
  12226. [
  12227. {
  12228. name: "Normal",
  12229. height: math.unit(7 + 7 / 12, "feet"),
  12230. default: true
  12231. },
  12232. {
  12233. name: "Macro",
  12234. height: math.unit(155, "feet")
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(6 + 5 / 12, "feet"),
  12243. weight: math.unit(160, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/xanthos/front.svg",
  12247. extra: 1,
  12248. bottom: 0.04
  12249. }
  12250. },
  12251. back: {
  12252. height: math.unit(6 + 5 / 12, "feet"),
  12253. weight: math.unit(160, "lb"),
  12254. name: "Back",
  12255. image: {
  12256. source: "./media/characters/xanthos/back.svg",
  12257. extra: 1,
  12258. bottom: 0.03
  12259. }
  12260. },
  12261. hand: {
  12262. height: math.unit(0.928, "feet"),
  12263. name: "Hand",
  12264. image: {
  12265. source: "./media/characters/xanthos/hand.svg"
  12266. }
  12267. },
  12268. foot: {
  12269. height: math.unit(1.286, "feet"),
  12270. name: "Foot",
  12271. image: {
  12272. source: "./media/characters/xanthos/foot.svg"
  12273. }
  12274. },
  12275. },
  12276. [
  12277. {
  12278. name: "Normal",
  12279. height: math.unit(6 + 5 / 12, "feet"),
  12280. default: true
  12281. },
  12282. {
  12283. name: "Normal+",
  12284. height: math.unit(6, "meters")
  12285. },
  12286. {
  12287. name: "Macro",
  12288. height: math.unit(40, "feet")
  12289. },
  12290. {
  12291. name: "Macro+",
  12292. height: math.unit(200, "meters")
  12293. },
  12294. {
  12295. name: "Megamacro",
  12296. height: math.unit(20, "km")
  12297. },
  12298. {
  12299. name: "Megamacro+",
  12300. height: math.unit(100, "km")
  12301. },
  12302. ]
  12303. ))
  12304. characterMakers.push(() => makeCharacter(
  12305. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12306. {
  12307. front: {
  12308. height: math.unit(6 + 3 / 12, "feet"),
  12309. weight: math.unit(215, "lb"),
  12310. name: "Front",
  12311. image: {
  12312. source: "./media/characters/grynn/front.svg",
  12313. extra: 4627 / 4209,
  12314. bottom: 0.047
  12315. }
  12316. },
  12317. },
  12318. [
  12319. {
  12320. name: "Micro",
  12321. height: math.unit(6, "inches")
  12322. },
  12323. {
  12324. name: "Normal",
  12325. height: math.unit(6 + 3 / 12, "feet"),
  12326. default: true
  12327. },
  12328. {
  12329. name: "Big",
  12330. height: math.unit(104, "feet")
  12331. },
  12332. {
  12333. name: "Macro",
  12334. height: math.unit(944, "feet")
  12335. },
  12336. {
  12337. name: "Macro+",
  12338. height: math.unit(9480, "feet")
  12339. },
  12340. {
  12341. name: "Megamacro",
  12342. height: math.unit(78752, "feet")
  12343. },
  12344. {
  12345. name: "Megamacro+",
  12346. height: math.unit(630128, "feet")
  12347. },
  12348. {
  12349. name: "Megamacro++",
  12350. height: math.unit(3150695, "feet")
  12351. },
  12352. ]
  12353. ))
  12354. characterMakers.push(() => makeCharacter(
  12355. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12356. {
  12357. front: {
  12358. height: math.unit(7 + 5 / 12, "feet"),
  12359. weight: math.unit(450, "lb"),
  12360. name: "Front",
  12361. image: {
  12362. source: "./media/characters/mocha-aura/front.svg",
  12363. extra: 1907 / 1817,
  12364. bottom: 0.04
  12365. }
  12366. },
  12367. back: {
  12368. height: math.unit(7 + 5 / 12, "feet"),
  12369. weight: math.unit(450, "lb"),
  12370. name: "Back",
  12371. image: {
  12372. source: "./media/characters/mocha-aura/back.svg",
  12373. extra: 1900 / 1825,
  12374. bottom: 0.045
  12375. }
  12376. },
  12377. },
  12378. [
  12379. {
  12380. name: "Nano",
  12381. height: math.unit(1, "nm")
  12382. },
  12383. {
  12384. name: "Megamicro",
  12385. height: math.unit(1, "mm")
  12386. },
  12387. {
  12388. name: "Micro",
  12389. height: math.unit(3, "inches")
  12390. },
  12391. {
  12392. name: "Normal",
  12393. height: math.unit(7 + 5 / 12, "feet"),
  12394. default: true
  12395. },
  12396. {
  12397. name: "Macro",
  12398. height: math.unit(30, "feet")
  12399. },
  12400. {
  12401. name: "Megamacro",
  12402. height: math.unit(3500, "feet")
  12403. },
  12404. {
  12405. name: "Teramacro",
  12406. height: math.unit(500000, "miles")
  12407. },
  12408. {
  12409. name: "Petamacro",
  12410. height: math.unit(50000000000000000, "parsecs")
  12411. },
  12412. ]
  12413. ))
  12414. characterMakers.push(() => makeCharacter(
  12415. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12416. {
  12417. front: {
  12418. height: math.unit(6, "feet"),
  12419. weight: math.unit(150, "lb"),
  12420. name: "Front",
  12421. image: {
  12422. source: "./media/characters/ilisha-devya/front.svg",
  12423. extra: 1,
  12424. bottom: 0.175
  12425. }
  12426. },
  12427. back: {
  12428. height: math.unit(6, "feet"),
  12429. weight: math.unit(150, "lb"),
  12430. name: "Back",
  12431. image: {
  12432. source: "./media/characters/ilisha-devya/back.svg",
  12433. extra: 1,
  12434. bottom: 0.015
  12435. }
  12436. },
  12437. },
  12438. [
  12439. {
  12440. name: "Macro",
  12441. height: math.unit(500, "feet"),
  12442. default: true
  12443. },
  12444. {
  12445. name: "Megamacro",
  12446. height: math.unit(10, "miles")
  12447. },
  12448. {
  12449. name: "Gigamacro",
  12450. height: math.unit(100000, "miles")
  12451. },
  12452. {
  12453. name: "Examacro",
  12454. height: math.unit(1e9, "lightyears")
  12455. },
  12456. {
  12457. name: "Omniversal",
  12458. height: math.unit(1e33, "lightyears")
  12459. },
  12460. {
  12461. name: "Beyond Infinite",
  12462. height: math.unit(1e100, "lightyears")
  12463. },
  12464. ]
  12465. ))
  12466. characterMakers.push(() => makeCharacter(
  12467. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12468. {
  12469. Side: {
  12470. height: math.unit(6, "feet"),
  12471. weight: math.unit(150, "lb"),
  12472. name: "Side",
  12473. image: {
  12474. source: "./media/characters/mira/side.svg",
  12475. extra: 900 / 799,
  12476. bottom: 0.02
  12477. }
  12478. },
  12479. },
  12480. [
  12481. {
  12482. name: "Human Size",
  12483. height: math.unit(6, "feet")
  12484. },
  12485. {
  12486. name: "Macro",
  12487. height: math.unit(100, "feet"),
  12488. default: true
  12489. },
  12490. {
  12491. name: "Megamacro",
  12492. height: math.unit(10, "miles")
  12493. },
  12494. {
  12495. name: "Gigamacro",
  12496. height: math.unit(25000, "miles")
  12497. },
  12498. {
  12499. name: "Teramacro",
  12500. height: math.unit(300, "AU")
  12501. },
  12502. {
  12503. name: "Full Size",
  12504. height: math.unit(4.5e10, "lightyears")
  12505. },
  12506. ]
  12507. ))
  12508. characterMakers.push(() => makeCharacter(
  12509. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12510. {
  12511. front: {
  12512. height: math.unit(6, "feet"),
  12513. weight: math.unit(150, "lb"),
  12514. name: "Front",
  12515. image: {
  12516. source: "./media/characters/holly/front.svg",
  12517. extra: 639 / 606
  12518. }
  12519. },
  12520. back: {
  12521. height: math.unit(6, "feet"),
  12522. weight: math.unit(150, "lb"),
  12523. name: "Back",
  12524. image: {
  12525. source: "./media/characters/holly/back.svg",
  12526. extra: 623 / 598
  12527. }
  12528. },
  12529. frontWorking: {
  12530. height: math.unit(6, "feet"),
  12531. weight: math.unit(150, "lb"),
  12532. name: "Front (Working)",
  12533. image: {
  12534. source: "./media/characters/holly/front-working.svg",
  12535. extra: 607 / 577,
  12536. bottom: 0.048
  12537. }
  12538. },
  12539. },
  12540. [
  12541. {
  12542. name: "Normal",
  12543. height: math.unit(12 + 3 / 12, "feet"),
  12544. default: true
  12545. },
  12546. ]
  12547. ))
  12548. characterMakers.push(() => makeCharacter(
  12549. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12550. {
  12551. front: {
  12552. height: math.unit(6, "feet"),
  12553. weight: math.unit(150, "lb"),
  12554. name: "Front",
  12555. image: {
  12556. source: "./media/characters/porter/front.svg",
  12557. extra: 1,
  12558. bottom: 0.01
  12559. }
  12560. },
  12561. frontRobes: {
  12562. height: math.unit(6, "feet"),
  12563. weight: math.unit(150, "lb"),
  12564. name: "Front (Robes)",
  12565. image: {
  12566. source: "./media/characters/porter/front-robes.svg",
  12567. extra: 1.01,
  12568. bottom: 0.01
  12569. }
  12570. },
  12571. },
  12572. [
  12573. {
  12574. name: "Normal",
  12575. height: math.unit(11 + 9 / 12, "feet"),
  12576. default: true
  12577. },
  12578. ]
  12579. ))
  12580. characterMakers.push(() => makeCharacter(
  12581. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12582. {
  12583. legendary: {
  12584. height: math.unit(6, "feet"),
  12585. weight: math.unit(150, "lb"),
  12586. name: "Legendary",
  12587. image: {
  12588. source: "./media/characters/lucy/legendary.svg",
  12589. extra: 1355 / 1100,
  12590. bottom: 0.045
  12591. }
  12592. },
  12593. },
  12594. [
  12595. {
  12596. name: "Legendary",
  12597. height: math.unit(86882 * 2, "miles"),
  12598. default: true
  12599. },
  12600. ]
  12601. ))
  12602. characterMakers.push(() => makeCharacter(
  12603. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12604. {
  12605. front: {
  12606. height: math.unit(6, "feet"),
  12607. weight: math.unit(150, "lb"),
  12608. name: "Front",
  12609. image: {
  12610. source: "./media/characters/drusilla/front.svg",
  12611. extra: 678 / 635,
  12612. bottom: 0.03
  12613. }
  12614. },
  12615. back: {
  12616. height: math.unit(6, "feet"),
  12617. weight: math.unit(150, "lb"),
  12618. name: "Back",
  12619. image: {
  12620. source: "./media/characters/drusilla/back.svg",
  12621. extra: 678 / 635,
  12622. bottom: 0.005
  12623. }
  12624. },
  12625. },
  12626. [
  12627. {
  12628. name: "Macro",
  12629. height: math.unit(100, "feet")
  12630. },
  12631. {
  12632. name: "Canon Height",
  12633. height: math.unit(2000, "feet"),
  12634. default: true
  12635. },
  12636. ]
  12637. ))
  12638. characterMakers.push(() => makeCharacter(
  12639. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12640. {
  12641. front: {
  12642. height: math.unit(6, "feet"),
  12643. weight: math.unit(180, "lb"),
  12644. name: "Front",
  12645. image: {
  12646. source: "./media/characters/renard-thatch/front.svg",
  12647. extra: 2411 / 2275,
  12648. bottom: 0.01
  12649. }
  12650. },
  12651. frontPosing: {
  12652. height: math.unit(6, "feet"),
  12653. weight: math.unit(180, "lb"),
  12654. name: "Front (Posing)",
  12655. image: {
  12656. source: "./media/characters/renard-thatch/front-posing.svg",
  12657. extra: 2381 / 2261,
  12658. bottom: 0.01
  12659. }
  12660. },
  12661. back: {
  12662. height: math.unit(6, "feet"),
  12663. weight: math.unit(180, "lb"),
  12664. name: "Back",
  12665. image: {
  12666. source: "./media/characters/renard-thatch/back.svg",
  12667. extra: 2428 / 2288
  12668. }
  12669. },
  12670. },
  12671. [
  12672. {
  12673. name: "Micro",
  12674. height: math.unit(3, "inches")
  12675. },
  12676. {
  12677. name: "Default",
  12678. height: math.unit(6, "feet"),
  12679. default: true
  12680. },
  12681. {
  12682. name: "Macro",
  12683. height: math.unit(75, "feet")
  12684. },
  12685. ]
  12686. ))
  12687. characterMakers.push(() => makeCharacter(
  12688. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12689. {
  12690. front: {
  12691. height: math.unit(1450, "feet"),
  12692. weight: math.unit(1.21e6, "tons"),
  12693. name: "Front",
  12694. image: {
  12695. source: "./media/characters/sekvra/front.svg",
  12696. extra: 1,
  12697. bottom: 0.03
  12698. }
  12699. },
  12700. frontClothed: {
  12701. height: math.unit(1450, "feet"),
  12702. weight: math.unit(1.21e6, "tons"),
  12703. name: "Front (Clothed)",
  12704. image: {
  12705. source: "./media/characters/sekvra/front-clothed.svg",
  12706. extra: 1,
  12707. bottom: 0.03
  12708. }
  12709. },
  12710. side: {
  12711. height: math.unit(1450, "feet"),
  12712. weight: math.unit(1.21e6, "tons"),
  12713. name: "Side",
  12714. image: {
  12715. source: "./media/characters/sekvra/side.svg",
  12716. extra: 1,
  12717. bottom: 0.025
  12718. }
  12719. },
  12720. back: {
  12721. height: math.unit(1450, "feet"),
  12722. weight: math.unit(1.21e6, "tons"),
  12723. name: "Back",
  12724. image: {
  12725. source: "./media/characters/sekvra/back.svg",
  12726. extra: 1,
  12727. bottom: 0.005
  12728. }
  12729. },
  12730. },
  12731. [
  12732. {
  12733. name: "Macro",
  12734. height: math.unit(1450, "feet"),
  12735. default: true
  12736. },
  12737. {
  12738. name: "Megamacro",
  12739. height: math.unit(15000, "feet")
  12740. },
  12741. ]
  12742. ))
  12743. characterMakers.push(() => makeCharacter(
  12744. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12745. {
  12746. front: {
  12747. height: math.unit(6, "feet"),
  12748. weight: math.unit(150, "lb"),
  12749. name: "Front",
  12750. image: {
  12751. source: "./media/characters/carmine/front.svg",
  12752. extra: 1,
  12753. bottom: 0.035
  12754. }
  12755. },
  12756. frontArmor: {
  12757. height: math.unit(6, "feet"),
  12758. weight: math.unit(150, "lb"),
  12759. name: "Front (Armor)",
  12760. image: {
  12761. source: "./media/characters/carmine/front-armor.svg",
  12762. extra: 1,
  12763. bottom: 0.035
  12764. }
  12765. },
  12766. },
  12767. [
  12768. {
  12769. name: "Large",
  12770. height: math.unit(1, "mile")
  12771. },
  12772. {
  12773. name: "Huge",
  12774. height: math.unit(40, "miles"),
  12775. default: true
  12776. },
  12777. {
  12778. name: "Colossal",
  12779. height: math.unit(2500, "miles")
  12780. },
  12781. ]
  12782. ))
  12783. characterMakers.push(() => makeCharacter(
  12784. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12785. {
  12786. front: {
  12787. height: math.unit(6, "feet"),
  12788. weight: math.unit(150, "lb"),
  12789. name: "Front",
  12790. image: {
  12791. source: "./media/characters/elyssia/front.svg",
  12792. extra: 2201 / 2035,
  12793. bottom: 0.05
  12794. }
  12795. },
  12796. frontClothed: {
  12797. height: math.unit(6, "feet"),
  12798. weight: math.unit(150, "lb"),
  12799. name: "Front (Clothed)",
  12800. image: {
  12801. source: "./media/characters/elyssia/front-clothed.svg",
  12802. extra: 2201 / 2035,
  12803. bottom: 0.05
  12804. }
  12805. },
  12806. back: {
  12807. height: math.unit(6, "feet"),
  12808. weight: math.unit(150, "lb"),
  12809. name: "Back",
  12810. image: {
  12811. source: "./media/characters/elyssia/back.svg",
  12812. extra: 2201 / 2035,
  12813. bottom: 0.013
  12814. }
  12815. },
  12816. },
  12817. [
  12818. {
  12819. name: "Smaller",
  12820. height: math.unit(150, "feet")
  12821. },
  12822. {
  12823. name: "Standard",
  12824. height: math.unit(1400, "feet"),
  12825. default: true
  12826. },
  12827. {
  12828. name: "Distracted",
  12829. height: math.unit(15000, "feet")
  12830. },
  12831. ]
  12832. ))
  12833. characterMakers.push(() => makeCharacter(
  12834. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12835. {
  12836. front: {
  12837. height: math.unit(7 + 4 / 12, "feet"),
  12838. weight: math.unit(500, "lb"),
  12839. name: "Front",
  12840. image: {
  12841. source: "./media/characters/geno-maxwell/front.svg",
  12842. extra: 2207 / 2040,
  12843. bottom: 0.015
  12844. }
  12845. },
  12846. },
  12847. [
  12848. {
  12849. name: "Micro",
  12850. height: math.unit(3, "inches")
  12851. },
  12852. {
  12853. name: "Normal",
  12854. height: math.unit(7 + 4 / 12, "feet"),
  12855. default: true
  12856. },
  12857. {
  12858. name: "Macro",
  12859. height: math.unit(220, "feet")
  12860. },
  12861. {
  12862. name: "Megamacro",
  12863. height: math.unit(11, "miles")
  12864. },
  12865. ]
  12866. ))
  12867. characterMakers.push(() => makeCharacter(
  12868. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12869. {
  12870. front: {
  12871. height: math.unit(7 + 4 / 12, "feet"),
  12872. weight: math.unit(500, "lb"),
  12873. name: "Front",
  12874. image: {
  12875. source: "./media/characters/regena-maxwell/front.svg",
  12876. extra: 3115 / 2770,
  12877. bottom: 0.02
  12878. }
  12879. },
  12880. },
  12881. [
  12882. {
  12883. name: "Normal",
  12884. height: math.unit(7 + 4 / 12, "feet"),
  12885. default: true
  12886. },
  12887. {
  12888. name: "Macro",
  12889. height: math.unit(220, "feet")
  12890. },
  12891. {
  12892. name: "Megamacro",
  12893. height: math.unit(11, "miles")
  12894. },
  12895. ]
  12896. ))
  12897. characterMakers.push(() => makeCharacter(
  12898. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12899. {
  12900. front: {
  12901. height: math.unit(6, "feet"),
  12902. weight: math.unit(150, "lb"),
  12903. name: "Front",
  12904. image: {
  12905. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12906. extra: 860 / 690,
  12907. bottom: 0.03
  12908. }
  12909. },
  12910. },
  12911. [
  12912. {
  12913. name: "Normal",
  12914. height: math.unit(1.7, "meters"),
  12915. default: true
  12916. },
  12917. ]
  12918. ))
  12919. characterMakers.push(() => makeCharacter(
  12920. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12921. {
  12922. front: {
  12923. height: math.unit(6, "feet"),
  12924. weight: math.unit(150, "lb"),
  12925. name: "Front",
  12926. image: {
  12927. source: "./media/characters/quilly/front.svg",
  12928. extra: 890 / 776
  12929. }
  12930. },
  12931. },
  12932. [
  12933. {
  12934. name: "Gigamacro",
  12935. height: math.unit(404090, "miles"),
  12936. default: true
  12937. },
  12938. ]
  12939. ))
  12940. characterMakers.push(() => makeCharacter(
  12941. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12942. {
  12943. front: {
  12944. height: math.unit(7 + 8 / 12, "feet"),
  12945. weight: math.unit(350, "lb"),
  12946. name: "Front",
  12947. image: {
  12948. source: "./media/characters/tempest/front.svg",
  12949. extra: 1175 / 1086,
  12950. bottom: 0.02
  12951. }
  12952. },
  12953. },
  12954. [
  12955. {
  12956. name: "Normal",
  12957. height: math.unit(7 + 8 / 12, "feet"),
  12958. default: true
  12959. },
  12960. ]
  12961. ))
  12962. characterMakers.push(() => makeCharacter(
  12963. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12964. {
  12965. side: {
  12966. height: math.unit(4 + 5 / 12, "feet"),
  12967. weight: math.unit(80, "lb"),
  12968. name: "Side",
  12969. image: {
  12970. source: "./media/characters/rodger/side.svg",
  12971. extra: 1235 / 1118
  12972. }
  12973. },
  12974. },
  12975. [
  12976. {
  12977. name: "Micro",
  12978. height: math.unit(1, "inch")
  12979. },
  12980. {
  12981. name: "Normal",
  12982. height: math.unit(4 + 5 / 12, "feet"),
  12983. default: true
  12984. },
  12985. {
  12986. name: "Macro",
  12987. height: math.unit(120, "feet")
  12988. },
  12989. ]
  12990. ))
  12991. characterMakers.push(() => makeCharacter(
  12992. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12993. {
  12994. front: {
  12995. height: math.unit(6, "feet"),
  12996. weight: math.unit(150, "lb"),
  12997. name: "Front",
  12998. image: {
  12999. source: "./media/characters/danyel/front.svg",
  13000. extra: 1185 / 1123,
  13001. bottom: 0.05
  13002. }
  13003. },
  13004. },
  13005. [
  13006. {
  13007. name: "Shrunken",
  13008. height: math.unit(0.5, "mm")
  13009. },
  13010. {
  13011. name: "Micro",
  13012. height: math.unit(1, "mm"),
  13013. default: true
  13014. },
  13015. {
  13016. name: "Upsized",
  13017. height: math.unit(5 + 5 / 12, "feet")
  13018. },
  13019. ]
  13020. ))
  13021. characterMakers.push(() => makeCharacter(
  13022. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13023. {
  13024. front: {
  13025. height: math.unit(5 + 6 / 12, "feet"),
  13026. weight: math.unit(200, "lb"),
  13027. name: "Front",
  13028. image: {
  13029. source: "./media/characters/vivian-bijoux/front.svg",
  13030. extra: 1,
  13031. bottom: 0.072
  13032. }
  13033. },
  13034. },
  13035. [
  13036. {
  13037. name: "Normal",
  13038. height: math.unit(5 + 6 / 12, "feet"),
  13039. default: true
  13040. },
  13041. {
  13042. name: "Bad Dream",
  13043. height: math.unit(500, "feet")
  13044. },
  13045. {
  13046. name: "Nightmare",
  13047. height: math.unit(500, "miles")
  13048. },
  13049. ]
  13050. ))
  13051. characterMakers.push(() => makeCharacter(
  13052. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13053. {
  13054. front: {
  13055. height: math.unit(6 + 1 / 12, "feet"),
  13056. weight: math.unit(260, "lb"),
  13057. name: "Front",
  13058. image: {
  13059. source: "./media/characters/zeta/front.svg",
  13060. extra: 1968 / 1889,
  13061. bottom: 0.06
  13062. }
  13063. },
  13064. back: {
  13065. height: math.unit(6 + 1 / 12, "feet"),
  13066. weight: math.unit(260, "lb"),
  13067. name: "Back",
  13068. image: {
  13069. source: "./media/characters/zeta/back.svg",
  13070. extra: 1944 / 1858,
  13071. bottom: 0.03
  13072. }
  13073. },
  13074. hand: {
  13075. height: math.unit(1.112, "feet"),
  13076. name: "Hand",
  13077. image: {
  13078. source: "./media/characters/zeta/hand.svg"
  13079. }
  13080. },
  13081. foot: {
  13082. height: math.unit(1.48, "feet"),
  13083. name: "Foot",
  13084. image: {
  13085. source: "./media/characters/zeta/foot.svg"
  13086. }
  13087. },
  13088. },
  13089. [
  13090. {
  13091. name: "Micro",
  13092. height: math.unit(6, "inches")
  13093. },
  13094. {
  13095. name: "Normal",
  13096. height: math.unit(6 + 1 / 12, "feet"),
  13097. default: true
  13098. },
  13099. {
  13100. name: "Macro",
  13101. height: math.unit(20, "feet")
  13102. },
  13103. ]
  13104. ))
  13105. characterMakers.push(() => makeCharacter(
  13106. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13107. {
  13108. front: {
  13109. height: math.unit(6, "feet"),
  13110. weight: math.unit(150, "lb"),
  13111. name: "Front",
  13112. image: {
  13113. source: "./media/characters/jamie-larsen/front.svg",
  13114. extra: 962 / 933,
  13115. bottom: 0.02
  13116. }
  13117. },
  13118. back: {
  13119. height: math.unit(6, "feet"),
  13120. weight: math.unit(150, "lb"),
  13121. name: "Back",
  13122. image: {
  13123. source: "./media/characters/jamie-larsen/back.svg",
  13124. extra: 997 / 946
  13125. }
  13126. },
  13127. },
  13128. [
  13129. {
  13130. name: "Macro",
  13131. height: math.unit(28 + 7 / 12, "feet"),
  13132. default: true
  13133. },
  13134. {
  13135. name: "Macro+",
  13136. height: math.unit(180, "feet")
  13137. },
  13138. {
  13139. name: "Megamacro",
  13140. height: math.unit(10, "miles")
  13141. },
  13142. {
  13143. name: "Gigamacro",
  13144. height: math.unit(200000, "miles")
  13145. },
  13146. ]
  13147. ))
  13148. characterMakers.push(() => makeCharacter(
  13149. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13150. {
  13151. front: {
  13152. height: math.unit(6, "feet"),
  13153. weight: math.unit(120, "lb"),
  13154. name: "Front",
  13155. image: {
  13156. source: "./media/characters/vance/front.svg",
  13157. extra: 1980 / 1890,
  13158. bottom: 0.09
  13159. }
  13160. },
  13161. back: {
  13162. height: math.unit(6, "feet"),
  13163. weight: math.unit(120, "lb"),
  13164. name: "Back",
  13165. image: {
  13166. source: "./media/characters/vance/back.svg",
  13167. extra: 2081 / 1994,
  13168. bottom: 0.014
  13169. }
  13170. },
  13171. hand: {
  13172. height: math.unit(0.88, "feet"),
  13173. name: "Hand",
  13174. image: {
  13175. source: "./media/characters/vance/hand.svg"
  13176. }
  13177. },
  13178. foot: {
  13179. height: math.unit(0.64, "feet"),
  13180. name: "Foot",
  13181. image: {
  13182. source: "./media/characters/vance/foot.svg"
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Small",
  13189. height: math.unit(90, "feet"),
  13190. default: true
  13191. },
  13192. {
  13193. name: "Macro",
  13194. height: math.unit(100, "meters")
  13195. },
  13196. {
  13197. name: "Megamacro",
  13198. height: math.unit(15, "miles")
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13204. {
  13205. front: {
  13206. height: math.unit(6, "feet"),
  13207. weight: math.unit(180, "lb"),
  13208. name: "Front",
  13209. image: {
  13210. source: "./media/characters/xochitl/front.svg",
  13211. extra: 2297 / 2261,
  13212. bottom: 0.065
  13213. }
  13214. },
  13215. back: {
  13216. height: math.unit(6, "feet"),
  13217. weight: math.unit(180, "lb"),
  13218. name: "Back",
  13219. image: {
  13220. source: "./media/characters/xochitl/back.svg",
  13221. extra: 2386 / 2354,
  13222. bottom: 0.01
  13223. }
  13224. },
  13225. foot: {
  13226. height: math.unit(6 / 5 * 1.15, "feet"),
  13227. weight: math.unit(150, "lb"),
  13228. name: "Foot",
  13229. image: {
  13230. source: "./media/characters/xochitl/foot.svg"
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Macro",
  13237. height: math.unit(80, "feet")
  13238. },
  13239. {
  13240. name: "Macro+",
  13241. height: math.unit(400, "feet"),
  13242. default: true
  13243. },
  13244. {
  13245. name: "Gigamacro",
  13246. height: math.unit(80000, "miles")
  13247. },
  13248. {
  13249. name: "Gigamacro+",
  13250. height: math.unit(400000, "miles")
  13251. },
  13252. {
  13253. name: "Teramacro",
  13254. height: math.unit(300, "AU")
  13255. },
  13256. ]
  13257. ))
  13258. characterMakers.push(() => makeCharacter(
  13259. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13260. {
  13261. front: {
  13262. height: math.unit(6, "feet"),
  13263. weight: math.unit(150, "lb"),
  13264. name: "Front",
  13265. image: {
  13266. source: "./media/characters/vincent/front.svg",
  13267. extra: 1130 / 1080,
  13268. bottom: 0.055
  13269. }
  13270. },
  13271. beak: {
  13272. height: math.unit(6 * 0.1, "feet"),
  13273. name: "Beak",
  13274. image: {
  13275. source: "./media/characters/vincent/beak.svg"
  13276. }
  13277. },
  13278. hand: {
  13279. height: math.unit(6 * 0.85, "feet"),
  13280. weight: math.unit(150, "lb"),
  13281. name: "Hand",
  13282. image: {
  13283. source: "./media/characters/vincent/hand.svg"
  13284. }
  13285. },
  13286. foot: {
  13287. height: math.unit(6 * 0.19, "feet"),
  13288. weight: math.unit(150, "lb"),
  13289. name: "Foot",
  13290. image: {
  13291. source: "./media/characters/vincent/foot.svg"
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Base",
  13298. height: math.unit(6 + 5 / 12, "feet"),
  13299. default: true
  13300. },
  13301. {
  13302. name: "Macro",
  13303. height: math.unit(300, "feet")
  13304. },
  13305. {
  13306. name: "Megamacro",
  13307. height: math.unit(2, "miles")
  13308. },
  13309. {
  13310. name: "Gigamacro",
  13311. height: math.unit(1000, "miles")
  13312. },
  13313. ]
  13314. ))
  13315. characterMakers.push(() => makeCharacter(
  13316. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13317. {
  13318. front: {
  13319. height: math.unit(6 + 2 / 12, "feet"),
  13320. weight: math.unit(265, "lb"),
  13321. name: "Front",
  13322. image: {
  13323. source: "./media/characters/jay/front.svg",
  13324. extra: 1510 / 1430,
  13325. bottom: 0.042
  13326. }
  13327. },
  13328. back: {
  13329. height: math.unit(6 + 2 / 12, "feet"),
  13330. weight: math.unit(265, "lb"),
  13331. name: "Back",
  13332. image: {
  13333. source: "./media/characters/jay/back.svg",
  13334. extra: 1510 / 1430,
  13335. bottom: 0.025
  13336. }
  13337. },
  13338. clothed: {
  13339. height: math.unit(6 + 2 / 12, "feet"),
  13340. weight: math.unit(265, "lb"),
  13341. name: "Front (Clothed)",
  13342. image: {
  13343. source: "./media/characters/jay/clothed.svg",
  13344. extra: 744 / 699,
  13345. bottom: 0.043
  13346. }
  13347. },
  13348. head: {
  13349. height: math.unit(1.772, "feet"),
  13350. name: "Head",
  13351. image: {
  13352. source: "./media/characters/jay/head.svg"
  13353. }
  13354. },
  13355. sizeRay: {
  13356. height: math.unit(1.331, "feet"),
  13357. name: "Size Ray",
  13358. image: {
  13359. source: "./media/characters/jay/size-ray.svg"
  13360. }
  13361. },
  13362. },
  13363. [
  13364. {
  13365. name: "Micro",
  13366. height: math.unit(1, "inch")
  13367. },
  13368. {
  13369. name: "Normal",
  13370. height: math.unit(6 + 2 / 12, "feet"),
  13371. default: true
  13372. },
  13373. {
  13374. name: "Macro",
  13375. height: math.unit(1, "mile")
  13376. },
  13377. {
  13378. name: "Megamacro",
  13379. height: math.unit(100, "miles")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(2, "meters"),
  13388. weight: math.unit(500, "kg"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/coatl/front.svg",
  13392. extra: 3948 / 3500,
  13393. bottom: 0.082
  13394. }
  13395. },
  13396. },
  13397. [
  13398. {
  13399. name: "Normal",
  13400. height: math.unit(4, "meters")
  13401. },
  13402. {
  13403. name: "Macro",
  13404. height: math.unit(100, "meters"),
  13405. default: true
  13406. },
  13407. {
  13408. name: "Macro+",
  13409. height: math.unit(300, "meters")
  13410. },
  13411. {
  13412. name: "Megamacro",
  13413. height: math.unit(3, "gigameters")
  13414. },
  13415. {
  13416. name: "Megamacro+",
  13417. height: math.unit(300, "terameters")
  13418. },
  13419. {
  13420. name: "Megamacro++",
  13421. height: math.unit(3, "lightyears")
  13422. },
  13423. ]
  13424. ))
  13425. characterMakers.push(() => makeCharacter(
  13426. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13427. {
  13428. front: {
  13429. height: math.unit(6, "feet"),
  13430. weight: math.unit(50, "kg"),
  13431. name: "front",
  13432. image: {
  13433. source: "./media/characters/shiroryu/front.svg",
  13434. extra: 1990 / 1935
  13435. }
  13436. },
  13437. },
  13438. [
  13439. {
  13440. name: "Mortal Mingling",
  13441. height: math.unit(3, "meters")
  13442. },
  13443. {
  13444. name: "Kaiju-ish",
  13445. height: math.unit(250, "meters")
  13446. },
  13447. {
  13448. name: "Somewhat Godly",
  13449. height: math.unit(400, "km"),
  13450. default: true
  13451. },
  13452. {
  13453. name: "Planetary",
  13454. height: math.unit(300, "megameters")
  13455. },
  13456. {
  13457. name: "Galaxy-dwarfing",
  13458. height: math.unit(450, "kiloparsecs")
  13459. },
  13460. {
  13461. name: "Universe Eater",
  13462. height: math.unit(150, "gigaparsecs")
  13463. },
  13464. {
  13465. name: "Almost Immeasurable",
  13466. height: math.unit(1.3e266, "yottaparsecs")
  13467. },
  13468. ]
  13469. ))
  13470. characterMakers.push(() => makeCharacter(
  13471. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13472. {
  13473. front: {
  13474. height: math.unit(6, "feet"),
  13475. weight: math.unit(150, "lb"),
  13476. name: "Front",
  13477. image: {
  13478. source: "./media/characters/umeko/front.svg",
  13479. extra: 1,
  13480. bottom: 0.019
  13481. }
  13482. },
  13483. frontArmored: {
  13484. height: math.unit(6, "feet"),
  13485. weight: math.unit(150, "lb"),
  13486. name: "Front (Armored)",
  13487. image: {
  13488. source: "./media/characters/umeko/front-armored.svg",
  13489. extra: 1,
  13490. bottom: 0.021
  13491. }
  13492. },
  13493. },
  13494. [
  13495. {
  13496. name: "Macro",
  13497. height: math.unit(220, "feet"),
  13498. default: true
  13499. },
  13500. {
  13501. name: "Guardian Dragon",
  13502. height: math.unit(50, "miles")
  13503. },
  13504. {
  13505. name: "Cosmic",
  13506. height: math.unit(800000, "miles")
  13507. },
  13508. ]
  13509. ))
  13510. characterMakers.push(() => makeCharacter(
  13511. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13512. {
  13513. front: {
  13514. height: math.unit(6, "feet"),
  13515. weight: math.unit(150, "lb"),
  13516. name: "Front",
  13517. image: {
  13518. source: "./media/characters/cassidy/front.svg",
  13519. extra: 1,
  13520. bottom: 0.043
  13521. }
  13522. },
  13523. },
  13524. [
  13525. {
  13526. name: "Canon Height",
  13527. height: math.unit(120, "feet"),
  13528. default: true
  13529. },
  13530. {
  13531. name: "Macro+",
  13532. height: math.unit(400, "feet")
  13533. },
  13534. {
  13535. name: "Macro++",
  13536. height: math.unit(4000, "feet")
  13537. },
  13538. {
  13539. name: "Megamacro",
  13540. height: math.unit(3, "miles")
  13541. },
  13542. ]
  13543. ))
  13544. characterMakers.push(() => makeCharacter(
  13545. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13546. {
  13547. front: {
  13548. height: math.unit(6, "feet"),
  13549. weight: math.unit(150, "lb"),
  13550. name: "Front",
  13551. image: {
  13552. source: "./media/characters/isaac/front.svg",
  13553. extra: 896 / 815,
  13554. bottom: 0.11
  13555. }
  13556. },
  13557. },
  13558. [
  13559. {
  13560. name: "Human Size",
  13561. height: math.unit(8, "feet"),
  13562. default: true
  13563. },
  13564. {
  13565. name: "Macro",
  13566. height: math.unit(400, "feet")
  13567. },
  13568. {
  13569. name: "Megamacro",
  13570. height: math.unit(50, "miles")
  13571. },
  13572. {
  13573. name: "Canon Height",
  13574. height: math.unit(200, "AU")
  13575. },
  13576. ]
  13577. ))
  13578. characterMakers.push(() => makeCharacter(
  13579. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13580. {
  13581. front: {
  13582. height: math.unit(6, "feet"),
  13583. weight: math.unit(72, "kg"),
  13584. name: "Front",
  13585. image: {
  13586. source: "./media/characters/sleekit/front.svg",
  13587. extra: 4693 / 4487,
  13588. bottom: 0.012
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Minimum Height",
  13595. height: math.unit(10, "meters")
  13596. },
  13597. {
  13598. name: "Smaller",
  13599. height: math.unit(25, "meters")
  13600. },
  13601. {
  13602. name: "Larger",
  13603. height: math.unit(38, "meters"),
  13604. default: true
  13605. },
  13606. {
  13607. name: "Maximum height",
  13608. height: math.unit(100, "meters")
  13609. },
  13610. ]
  13611. ))
  13612. characterMakers.push(() => makeCharacter(
  13613. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13614. {
  13615. front: {
  13616. height: math.unit(6, "feet"),
  13617. weight: math.unit(150, "lb"),
  13618. name: "Front",
  13619. image: {
  13620. source: "./media/characters/nillia/front.svg",
  13621. extra: 2195 / 2037,
  13622. bottom: 0.005
  13623. }
  13624. },
  13625. back: {
  13626. height: math.unit(6, "feet"),
  13627. weight: math.unit(150, "lb"),
  13628. name: "Back",
  13629. image: {
  13630. source: "./media/characters/nillia/back.svg",
  13631. extra: 2195 / 2037,
  13632. bottom: 0.005
  13633. }
  13634. },
  13635. },
  13636. [
  13637. {
  13638. name: "Canon Height",
  13639. height: math.unit(489, "feet"),
  13640. default: true
  13641. }
  13642. ]
  13643. ))
  13644. characterMakers.push(() => makeCharacter(
  13645. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13646. {
  13647. front: {
  13648. height: math.unit(6, "feet"),
  13649. weight: math.unit(150, "lb"),
  13650. name: "Front",
  13651. image: {
  13652. source: "./media/characters/mesmyriza/front.svg",
  13653. extra: 2067 / 1784,
  13654. bottom: 0.035
  13655. }
  13656. },
  13657. foot: {
  13658. height: math.unit(6 / (250 / 35), "feet"),
  13659. name: "Foot",
  13660. image: {
  13661. source: "./media/characters/mesmyriza/foot.svg"
  13662. }
  13663. },
  13664. },
  13665. [
  13666. {
  13667. name: "Macro",
  13668. height: math.unit(457, "meters"),
  13669. default: true
  13670. },
  13671. {
  13672. name: "Megamacro",
  13673. height: math.unit(8, "megameters")
  13674. },
  13675. ]
  13676. ))
  13677. characterMakers.push(() => makeCharacter(
  13678. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13679. {
  13680. front: {
  13681. height: math.unit(6, "feet"),
  13682. weight: math.unit(250, "lb"),
  13683. name: "Front",
  13684. image: {
  13685. source: "./media/characters/saudade/front.svg",
  13686. extra: 1172 / 1139,
  13687. bottom: 0.035
  13688. }
  13689. },
  13690. },
  13691. [
  13692. {
  13693. name: "Micro",
  13694. height: math.unit(3, "inches")
  13695. },
  13696. {
  13697. name: "Normal",
  13698. height: math.unit(6, "feet"),
  13699. default: true
  13700. },
  13701. {
  13702. name: "Macro",
  13703. height: math.unit(50, "feet")
  13704. },
  13705. {
  13706. name: "Megamacro",
  13707. height: math.unit(2800, "feet")
  13708. },
  13709. ]
  13710. ))
  13711. characterMakers.push(() => makeCharacter(
  13712. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13713. {
  13714. front: {
  13715. height: math.unit(5 + 4 / 12, "feet"),
  13716. weight: math.unit(100, "lb"),
  13717. name: "Front",
  13718. image: {
  13719. source: "./media/characters/keireer/front.svg",
  13720. extra: 716 / 666,
  13721. bottom: 0.05
  13722. }
  13723. },
  13724. },
  13725. [
  13726. {
  13727. name: "Normal",
  13728. height: math.unit(5 + 4 / 12, "feet"),
  13729. default: true
  13730. },
  13731. ]
  13732. ))
  13733. characterMakers.push(() => makeCharacter(
  13734. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13735. {
  13736. front: {
  13737. height: math.unit(6, "feet"),
  13738. weight: math.unit(90, "kg"),
  13739. name: "Front",
  13740. image: {
  13741. source: "./media/characters/mirja/front.svg",
  13742. extra: 1789 / 1683,
  13743. bottom: 0.05
  13744. }
  13745. },
  13746. frontDressed: {
  13747. height: math.unit(6, "feet"),
  13748. weight: math.unit(90, "lb"),
  13749. name: "Front (Dressed)",
  13750. image: {
  13751. source: "./media/characters/mirja/front-dressed.svg",
  13752. extra: 1789 / 1683,
  13753. bottom: 0.05
  13754. }
  13755. },
  13756. back: {
  13757. height: math.unit(6, "feet"),
  13758. weight: math.unit(90, "lb"),
  13759. name: "Back",
  13760. image: {
  13761. source: "./media/characters/mirja/back.svg",
  13762. extra: 953 / 917,
  13763. bottom: 0.017
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "\"Incognito\"",
  13770. height: math.unit(3, "meters")
  13771. },
  13772. {
  13773. name: "Strolling Size",
  13774. height: math.unit(15, "km")
  13775. },
  13776. {
  13777. name: "Larger Strolling Size",
  13778. height: math.unit(400, "km")
  13779. },
  13780. {
  13781. name: "Preferred Size",
  13782. height: math.unit(5000, "km")
  13783. },
  13784. {
  13785. name: "True Size",
  13786. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13787. default: true
  13788. },
  13789. ]
  13790. ))
  13791. characterMakers.push(() => makeCharacter(
  13792. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13793. {
  13794. front: {
  13795. height: math.unit(15, "feet"),
  13796. weight: math.unit(880, "kg"),
  13797. name: "Front",
  13798. image: {
  13799. source: "./media/characters/nightraver/front.svg",
  13800. extra: 2444 / 2160,
  13801. bottom: 0.027
  13802. }
  13803. },
  13804. back: {
  13805. height: math.unit(15, "feet"),
  13806. weight: math.unit(880, "kg"),
  13807. name: "Back",
  13808. image: {
  13809. source: "./media/characters/nightraver/back.svg",
  13810. extra: 2309 / 2180,
  13811. bottom: 0.005
  13812. }
  13813. },
  13814. sole: {
  13815. height: math.unit(2.878, "feet"),
  13816. name: "Sole",
  13817. image: {
  13818. source: "./media/characters/nightraver/sole.svg"
  13819. }
  13820. },
  13821. foot: {
  13822. height: math.unit(2.285, "feet"),
  13823. name: "Foot",
  13824. image: {
  13825. source: "./media/characters/nightraver/foot.svg"
  13826. }
  13827. },
  13828. maw: {
  13829. height: math.unit(2.67, "feet"),
  13830. name: "Maw",
  13831. image: {
  13832. source: "./media/characters/nightraver/maw.svg"
  13833. }
  13834. },
  13835. },
  13836. [
  13837. {
  13838. name: "Micro",
  13839. height: math.unit(1, "cm")
  13840. },
  13841. {
  13842. name: "Normal",
  13843. height: math.unit(15, "feet"),
  13844. default: true
  13845. },
  13846. {
  13847. name: "Macro",
  13848. height: math.unit(300, "feet")
  13849. },
  13850. {
  13851. name: "Megamacro",
  13852. height: math.unit(300, "miles")
  13853. },
  13854. {
  13855. name: "Gigamacro",
  13856. height: math.unit(10000, "miles")
  13857. },
  13858. ]
  13859. ))
  13860. characterMakers.push(() => makeCharacter(
  13861. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13862. {
  13863. side: {
  13864. height: math.unit(2, "inches"),
  13865. weight: math.unit(5, "grams"),
  13866. name: "Side",
  13867. image: {
  13868. source: "./media/characters/arc/side.svg"
  13869. }
  13870. },
  13871. },
  13872. [
  13873. {
  13874. name: "Micro",
  13875. height: math.unit(2, "inches"),
  13876. default: true
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13882. {
  13883. front: {
  13884. height: math.unit(1.1938, "meters"),
  13885. weight: math.unit(54, "kg"),
  13886. name: "Front",
  13887. image: {
  13888. source: "./media/characters/nebula-shahar/front.svg",
  13889. extra: 1642 / 1436,
  13890. bottom: 0.06
  13891. }
  13892. },
  13893. },
  13894. [
  13895. {
  13896. name: "Megamicro",
  13897. height: math.unit(0.3, "mm")
  13898. },
  13899. {
  13900. name: "Micro",
  13901. height: math.unit(3, "cm")
  13902. },
  13903. {
  13904. name: "Normal",
  13905. height: math.unit(138, "cm"),
  13906. default: true
  13907. },
  13908. {
  13909. name: "Macro",
  13910. height: math.unit(30, "m")
  13911. },
  13912. ]
  13913. ))
  13914. characterMakers.push(() => makeCharacter(
  13915. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13916. {
  13917. front: {
  13918. height: math.unit(5.24, "feet"),
  13919. weight: math.unit(150, "lb"),
  13920. name: "Front",
  13921. image: {
  13922. source: "./media/characters/shayla/front.svg",
  13923. extra: 1512 / 1414,
  13924. bottom: 0.01
  13925. }
  13926. },
  13927. back: {
  13928. height: math.unit(5.24, "feet"),
  13929. weight: math.unit(150, "lb"),
  13930. name: "Back",
  13931. image: {
  13932. source: "./media/characters/shayla/back.svg",
  13933. extra: 1512 / 1414
  13934. }
  13935. },
  13936. hand: {
  13937. height: math.unit(0.7781496062992126, "feet"),
  13938. name: "Hand",
  13939. image: {
  13940. source: "./media/characters/shayla/hand.svg"
  13941. }
  13942. },
  13943. foot: {
  13944. height: math.unit(1.4206036745406823, "feet"),
  13945. name: "Foot",
  13946. image: {
  13947. source: "./media/characters/shayla/foot.svg"
  13948. }
  13949. },
  13950. },
  13951. [
  13952. {
  13953. name: "Micro",
  13954. height: math.unit(0.32, "feet")
  13955. },
  13956. {
  13957. name: "Normal",
  13958. height: math.unit(5.24, "feet"),
  13959. default: true
  13960. },
  13961. {
  13962. name: "Macro",
  13963. height: math.unit(492.12, "feet")
  13964. },
  13965. {
  13966. name: "Megamacro",
  13967. height: math.unit(186.41, "miles")
  13968. },
  13969. ]
  13970. ))
  13971. characterMakers.push(() => makeCharacter(
  13972. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13973. {
  13974. front: {
  13975. height: math.unit(2.2, "m"),
  13976. weight: math.unit(120, "kg"),
  13977. name: "Front",
  13978. image: {
  13979. source: "./media/characters/pia-jr/front.svg",
  13980. extra: 1000 / 970,
  13981. bottom: 0.035
  13982. }
  13983. },
  13984. hand: {
  13985. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13986. name: "Hand",
  13987. image: {
  13988. source: "./media/characters/pia-jr/hand.svg"
  13989. }
  13990. },
  13991. paw: {
  13992. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13993. name: "Paw",
  13994. image: {
  13995. source: "./media/characters/pia-jr/paw.svg"
  13996. }
  13997. },
  13998. },
  13999. [
  14000. {
  14001. name: "Micro",
  14002. height: math.unit(1.2, "cm")
  14003. },
  14004. {
  14005. name: "Normal",
  14006. height: math.unit(2.2, "m"),
  14007. default: true
  14008. },
  14009. {
  14010. name: "Macro",
  14011. height: math.unit(180, "m")
  14012. },
  14013. {
  14014. name: "Megamacro",
  14015. height: math.unit(420, "km")
  14016. },
  14017. ]
  14018. ))
  14019. characterMakers.push(() => makeCharacter(
  14020. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14021. {
  14022. front: {
  14023. height: math.unit(2, "m"),
  14024. weight: math.unit(115, "kg"),
  14025. name: "Front",
  14026. image: {
  14027. source: "./media/characters/pia-sr/front.svg",
  14028. extra: 760 / 730,
  14029. bottom: 0.015
  14030. }
  14031. },
  14032. back: {
  14033. height: math.unit(2, "m"),
  14034. weight: math.unit(115, "kg"),
  14035. name: "Back",
  14036. image: {
  14037. source: "./media/characters/pia-sr/back.svg",
  14038. extra: 760 / 730,
  14039. bottom: 0.01
  14040. }
  14041. },
  14042. hand: {
  14043. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14044. name: "Hand",
  14045. image: {
  14046. source: "./media/characters/pia-sr/hand.svg"
  14047. }
  14048. },
  14049. foot: {
  14050. height: math.unit(1.83, "feet"),
  14051. name: "Foot",
  14052. image: {
  14053. source: "./media/characters/pia-sr/foot.svg"
  14054. }
  14055. },
  14056. },
  14057. [
  14058. {
  14059. name: "Micro",
  14060. height: math.unit(88, "mm")
  14061. },
  14062. {
  14063. name: "Normal",
  14064. height: math.unit(2, "m"),
  14065. default: true
  14066. },
  14067. {
  14068. name: "Macro",
  14069. height: math.unit(200, "m")
  14070. },
  14071. {
  14072. name: "Megamacro",
  14073. height: math.unit(420, "km")
  14074. },
  14075. ]
  14076. ))
  14077. characterMakers.push(() => makeCharacter(
  14078. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14079. {
  14080. front: {
  14081. height: math.unit(8 + 2 / 12, "feet"),
  14082. weight: math.unit(300, "lb"),
  14083. name: "Front",
  14084. image: {
  14085. source: "./media/characters/kibibyte/front.svg",
  14086. extra: 2221 / 2098,
  14087. bottom: 0.04
  14088. }
  14089. },
  14090. },
  14091. [
  14092. {
  14093. name: "Normal",
  14094. height: math.unit(8 + 2 / 12, "feet"),
  14095. default: true
  14096. },
  14097. {
  14098. name: "Socialable Macro",
  14099. height: math.unit(50, "feet")
  14100. },
  14101. {
  14102. name: "Macro",
  14103. height: math.unit(300, "feet")
  14104. },
  14105. {
  14106. name: "Megamacro",
  14107. height: math.unit(500, "miles")
  14108. },
  14109. ]
  14110. ))
  14111. characterMakers.push(() => makeCharacter(
  14112. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14113. {
  14114. front: {
  14115. height: math.unit(6, "feet"),
  14116. weight: math.unit(150, "lb"),
  14117. name: "Front",
  14118. image: {
  14119. source: "./media/characters/felix/front.svg",
  14120. extra: 762 / 722,
  14121. bottom: 0.02
  14122. }
  14123. },
  14124. frontClothed: {
  14125. height: math.unit(6, "feet"),
  14126. weight: math.unit(150, "lb"),
  14127. name: "Front (Clothed)",
  14128. image: {
  14129. source: "./media/characters/felix/front-clothed.svg",
  14130. extra: 762 / 722,
  14131. bottom: 0.02
  14132. }
  14133. },
  14134. },
  14135. [
  14136. {
  14137. name: "Normal",
  14138. height: math.unit(6 + 8 / 12, "feet"),
  14139. default: true
  14140. },
  14141. {
  14142. name: "Macro",
  14143. height: math.unit(2600, "feet")
  14144. },
  14145. {
  14146. name: "Megamacro",
  14147. height: math.unit(450, "miles")
  14148. },
  14149. ]
  14150. ))
  14151. characterMakers.push(() => makeCharacter(
  14152. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14153. {
  14154. front: {
  14155. height: math.unit(6 + 1 / 12, "feet"),
  14156. weight: math.unit(250, "lb"),
  14157. name: "Front",
  14158. image: {
  14159. source: "./media/characters/tobo/front.svg",
  14160. extra: 608 / 586,
  14161. bottom: 0.023
  14162. }
  14163. },
  14164. back: {
  14165. height: math.unit(6 + 1 / 12, "feet"),
  14166. weight: math.unit(250, "lb"),
  14167. name: "Back",
  14168. image: {
  14169. source: "./media/characters/tobo/back.svg",
  14170. extra: 608 / 586
  14171. }
  14172. },
  14173. },
  14174. [
  14175. {
  14176. name: "Nano",
  14177. height: math.unit(2, "nm")
  14178. },
  14179. {
  14180. name: "Megamicro",
  14181. height: math.unit(0.1, "mm")
  14182. },
  14183. {
  14184. name: "Micro",
  14185. height: math.unit(1, "inch"),
  14186. default: true
  14187. },
  14188. {
  14189. name: "Human-sized",
  14190. height: math.unit(6 + 1 / 12, "feet")
  14191. },
  14192. {
  14193. name: "Macro",
  14194. height: math.unit(250, "feet")
  14195. },
  14196. {
  14197. name: "Megamacro",
  14198. height: math.unit(75, "miles")
  14199. },
  14200. {
  14201. name: "Texas-sized",
  14202. height: math.unit(750, "miles")
  14203. },
  14204. {
  14205. name: "Teramacro",
  14206. height: math.unit(50000, "miles")
  14207. },
  14208. ]
  14209. ))
  14210. characterMakers.push(() => makeCharacter(
  14211. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14212. {
  14213. front: {
  14214. height: math.unit(6, "feet"),
  14215. weight: math.unit(269, "lb"),
  14216. name: "Front",
  14217. image: {
  14218. source: "./media/characters/danny-kapowsky/front.svg",
  14219. extra: 766 / 736,
  14220. bottom: 0.044
  14221. }
  14222. },
  14223. back: {
  14224. height: math.unit(6, "feet"),
  14225. weight: math.unit(269, "lb"),
  14226. name: "Back",
  14227. image: {
  14228. source: "./media/characters/danny-kapowsky/back.svg",
  14229. extra: 797 / 760,
  14230. bottom: 0.025
  14231. }
  14232. },
  14233. },
  14234. [
  14235. {
  14236. name: "Macro",
  14237. height: math.unit(150, "feet"),
  14238. default: true
  14239. },
  14240. {
  14241. name: "Macro+",
  14242. height: math.unit(200, "feet")
  14243. },
  14244. {
  14245. name: "Macro++",
  14246. height: math.unit(300, "feet")
  14247. },
  14248. {
  14249. name: "Macro+++",
  14250. height: math.unit(400, "feet")
  14251. },
  14252. ]
  14253. ))
  14254. characterMakers.push(() => makeCharacter(
  14255. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14256. {
  14257. side: {
  14258. height: math.unit(6, "feet"),
  14259. weight: math.unit(170, "lb"),
  14260. name: "Side",
  14261. image: {
  14262. source: "./media/characters/finn/side.svg",
  14263. extra: 1953 / 1807,
  14264. bottom: 0.057
  14265. }
  14266. },
  14267. },
  14268. [
  14269. {
  14270. name: "Megamacro",
  14271. height: math.unit(14445, "feet"),
  14272. default: true
  14273. },
  14274. ]
  14275. ))
  14276. characterMakers.push(() => makeCharacter(
  14277. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14278. {
  14279. front: {
  14280. height: math.unit(5 + 6 / 12, "feet"),
  14281. weight: math.unit(125, "lb"),
  14282. name: "Front",
  14283. image: {
  14284. source: "./media/characters/roy/front.svg",
  14285. extra: 1,
  14286. bottom: 0.11
  14287. }
  14288. },
  14289. },
  14290. [
  14291. {
  14292. name: "Micro",
  14293. height: math.unit(3, "inches"),
  14294. default: true
  14295. },
  14296. {
  14297. name: "Normal",
  14298. height: math.unit(5 + 6 / 12, "feet")
  14299. },
  14300. {
  14301. name: "Lesser Macro",
  14302. height: math.unit(60, "feet")
  14303. },
  14304. {
  14305. name: "Greater Macro",
  14306. height: math.unit(120, "feet")
  14307. },
  14308. ]
  14309. ))
  14310. characterMakers.push(() => makeCharacter(
  14311. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14312. {
  14313. front: {
  14314. height: math.unit(6, "feet"),
  14315. weight: math.unit(100, "lb"),
  14316. name: "Front",
  14317. image: {
  14318. source: "./media/characters/aevsivs/front.svg",
  14319. extra: 1,
  14320. bottom: 0.03
  14321. }
  14322. },
  14323. back: {
  14324. height: math.unit(6, "feet"),
  14325. weight: math.unit(100, "lb"),
  14326. name: "Back",
  14327. image: {
  14328. source: "./media/characters/aevsivs/back.svg"
  14329. }
  14330. },
  14331. },
  14332. [
  14333. {
  14334. name: "Micro",
  14335. height: math.unit(2, "inches"),
  14336. default: true
  14337. },
  14338. {
  14339. name: "Normal",
  14340. height: math.unit(5, "feet")
  14341. },
  14342. ]
  14343. ))
  14344. characterMakers.push(() => makeCharacter(
  14345. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14346. {
  14347. front: {
  14348. height: math.unit(5 + 7 / 12, "feet"),
  14349. weight: math.unit(159, "lb"),
  14350. name: "Front",
  14351. image: {
  14352. source: "./media/characters/hildegard/front.svg",
  14353. extra: 289 / 269,
  14354. bottom: 7.63 / 297.8
  14355. }
  14356. },
  14357. back: {
  14358. height: math.unit(5 + 7 / 12, "feet"),
  14359. weight: math.unit(159, "lb"),
  14360. name: "Back",
  14361. image: {
  14362. source: "./media/characters/hildegard/back.svg",
  14363. extra: 280 / 260,
  14364. bottom: 2.3 / 282
  14365. }
  14366. },
  14367. },
  14368. [
  14369. {
  14370. name: "Normal",
  14371. height: math.unit(5 + 7 / 12, "feet"),
  14372. default: true
  14373. },
  14374. ]
  14375. ))
  14376. characterMakers.push(() => makeCharacter(
  14377. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14378. {
  14379. bernard: {
  14380. height: math.unit(2 + 7 / 12, "feet"),
  14381. weight: math.unit(66, "lb"),
  14382. name: "Bernard",
  14383. rename: true,
  14384. image: {
  14385. source: "./media/characters/bernard-wilder/bernard.svg",
  14386. extra: 192 / 128,
  14387. bottom: 0.05
  14388. }
  14389. },
  14390. wilder: {
  14391. height: math.unit(5 + 8 / 12, "feet"),
  14392. weight: math.unit(143, "lb"),
  14393. name: "Wilder",
  14394. rename: true,
  14395. image: {
  14396. source: "./media/characters/bernard-wilder/wilder.svg",
  14397. extra: 361 / 312,
  14398. bottom: 0.02
  14399. }
  14400. },
  14401. },
  14402. [
  14403. {
  14404. name: "Normal",
  14405. height: math.unit(2 + 7 / 12, "feet"),
  14406. default: true
  14407. },
  14408. ]
  14409. ))
  14410. characterMakers.push(() => makeCharacter(
  14411. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14412. {
  14413. anthro: {
  14414. height: math.unit(6 + 1 / 12, "feet"),
  14415. weight: math.unit(155, "lb"),
  14416. name: "Anthro",
  14417. image: {
  14418. source: "./media/characters/hearth/anthro.svg",
  14419. extra: 260 / 250,
  14420. bottom: 0.02
  14421. }
  14422. },
  14423. feral: {
  14424. height: math.unit(3.78, "feet"),
  14425. weight: math.unit(35, "kg"),
  14426. name: "Feral",
  14427. image: {
  14428. source: "./media/characters/hearth/feral.svg",
  14429. extra: 153 / 135,
  14430. bottom: 0.03
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Normal",
  14437. height: math.unit(6 + 1 / 12, "feet"),
  14438. default: true
  14439. },
  14440. ]
  14441. ))
  14442. characterMakers.push(() => makeCharacter(
  14443. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14444. {
  14445. front: {
  14446. height: math.unit(6, "feet"),
  14447. weight: math.unit(182, "lb"),
  14448. name: "Front",
  14449. image: {
  14450. source: "./media/characters/ingrid/front.svg",
  14451. extra: 294 / 268,
  14452. bottom: 0.027
  14453. }
  14454. },
  14455. },
  14456. [
  14457. {
  14458. name: "Normal",
  14459. height: math.unit(6, "feet"),
  14460. default: true
  14461. },
  14462. ]
  14463. ))
  14464. characterMakers.push(() => makeCharacter(
  14465. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14466. {
  14467. eevee: {
  14468. height: math.unit(2 + 10 / 12, "feet"),
  14469. weight: math.unit(86, "lb"),
  14470. name: "Malgam",
  14471. image: {
  14472. source: "./media/characters/malgam/eevee.svg",
  14473. extra: 218 / 180,
  14474. bottom: 0.2
  14475. }
  14476. },
  14477. sylveon: {
  14478. height: math.unit(4, "feet"),
  14479. weight: math.unit(101, "lb"),
  14480. name: "Future Malgam",
  14481. rename: true,
  14482. image: {
  14483. source: "./media/characters/malgam/sylveon.svg",
  14484. extra: 371 / 325,
  14485. bottom: 0.015
  14486. }
  14487. },
  14488. gigantamax: {
  14489. height: math.unit(50, "feet"),
  14490. name: "Gigantamax Malgam",
  14491. rename: true,
  14492. image: {
  14493. source: "./media/characters/malgam/gigantamax.svg"
  14494. }
  14495. },
  14496. },
  14497. [
  14498. {
  14499. name: "Normal",
  14500. height: math.unit(2 + 10 / 12, "feet"),
  14501. default: true
  14502. },
  14503. ]
  14504. ))
  14505. characterMakers.push(() => makeCharacter(
  14506. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14507. {
  14508. front: {
  14509. height: math.unit(5 + 11 / 12, "feet"),
  14510. weight: math.unit(188, "lb"),
  14511. name: "Front",
  14512. image: {
  14513. source: "./media/characters/fleur/front.svg",
  14514. extra: 309 / 283,
  14515. bottom: 0.007
  14516. }
  14517. },
  14518. },
  14519. [
  14520. {
  14521. name: "Normal",
  14522. height: math.unit(5 + 11 / 12, "feet"),
  14523. default: true
  14524. },
  14525. ]
  14526. ))
  14527. characterMakers.push(() => makeCharacter(
  14528. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14529. {
  14530. front: {
  14531. height: math.unit(5 + 4 / 12, "feet"),
  14532. weight: math.unit(122, "lb"),
  14533. name: "Front",
  14534. image: {
  14535. source: "./media/characters/jude/front.svg",
  14536. extra: 288 / 273,
  14537. bottom: 0.03
  14538. }
  14539. },
  14540. },
  14541. [
  14542. {
  14543. name: "Normal",
  14544. height: math.unit(5 + 4 / 12, "feet"),
  14545. default: true
  14546. },
  14547. ]
  14548. ))
  14549. characterMakers.push(() => makeCharacter(
  14550. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14551. {
  14552. front: {
  14553. height: math.unit(5 + 11 / 12, "feet"),
  14554. weight: math.unit(190, "lb"),
  14555. name: "Front",
  14556. image: {
  14557. source: "./media/characters/seara/front.svg",
  14558. extra: 1,
  14559. bottom: 0.05
  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: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14573. {
  14574. front: {
  14575. height: math.unit(16 + 5 / 12, "feet"),
  14576. weight: math.unit(524, "lb"),
  14577. name: "Front",
  14578. image: {
  14579. source: "./media/characters/caspian/front.svg",
  14580. extra: 1,
  14581. bottom: 0.04
  14582. }
  14583. },
  14584. },
  14585. [
  14586. {
  14587. name: "Normal",
  14588. height: math.unit(16 + 5 / 12, "feet"),
  14589. default: true
  14590. },
  14591. ]
  14592. ))
  14593. characterMakers.push(() => makeCharacter(
  14594. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14595. {
  14596. front: {
  14597. height: math.unit(5 + 7 / 12, "feet"),
  14598. weight: math.unit(170, "lb"),
  14599. name: "Front",
  14600. image: {
  14601. source: "./media/characters/mika/front.svg",
  14602. extra: 1,
  14603. bottom: 0.016
  14604. }
  14605. },
  14606. },
  14607. [
  14608. {
  14609. name: "Normal",
  14610. height: math.unit(5 + 7 / 12, "feet"),
  14611. default: true
  14612. },
  14613. ]
  14614. ))
  14615. characterMakers.push(() => makeCharacter(
  14616. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14617. {
  14618. front: {
  14619. height: math.unit(6 + 2 / 12, "feet"),
  14620. weight: math.unit(268, "lb"),
  14621. name: "Front",
  14622. image: {
  14623. source: "./media/characters/sol/front.svg",
  14624. extra: 247 / 231,
  14625. bottom: 0.05
  14626. }
  14627. },
  14628. },
  14629. [
  14630. {
  14631. name: "Normal",
  14632. height: math.unit(6 + 2 / 12, "feet"),
  14633. default: true
  14634. },
  14635. ]
  14636. ))
  14637. characterMakers.push(() => makeCharacter(
  14638. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14639. {
  14640. buizel: {
  14641. height: math.unit(2 + 5 / 12, "feet"),
  14642. weight: math.unit(87, "lb"),
  14643. name: "Buizel",
  14644. image: {
  14645. source: "./media/characters/umiko/buizel.svg",
  14646. extra: 172 / 157,
  14647. bottom: 0.01
  14648. }
  14649. },
  14650. floatzel: {
  14651. height: math.unit(5 + 9 / 12, "feet"),
  14652. weight: math.unit(250, "lb"),
  14653. name: "Floatzel",
  14654. image: {
  14655. source: "./media/characters/umiko/floatzel.svg",
  14656. extra: 262 / 248
  14657. }
  14658. },
  14659. },
  14660. [
  14661. {
  14662. name: "Normal",
  14663. height: math.unit(2 + 5 / 12, "feet"),
  14664. default: true
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14670. {
  14671. front: {
  14672. height: math.unit(6 + 2 / 12, "feet"),
  14673. weight: math.unit(146, "lb"),
  14674. name: "Front",
  14675. image: {
  14676. source: "./media/characters/iliac/front.svg",
  14677. extra: 389 / 365,
  14678. bottom: 0.035
  14679. }
  14680. },
  14681. },
  14682. [
  14683. {
  14684. name: "Normal",
  14685. height: math.unit(6 + 2 / 12, "feet"),
  14686. default: true
  14687. },
  14688. ]
  14689. ))
  14690. characterMakers.push(() => makeCharacter(
  14691. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14692. {
  14693. front: {
  14694. height: math.unit(6, "feet"),
  14695. weight: math.unit(170, "lb"),
  14696. name: "Front",
  14697. image: {
  14698. source: "./media/characters/topaz/front.svg",
  14699. extra: 317 / 303,
  14700. bottom: 0.055
  14701. }
  14702. },
  14703. },
  14704. [
  14705. {
  14706. name: "Normal",
  14707. height: math.unit(6, "feet"),
  14708. default: true
  14709. },
  14710. ]
  14711. ))
  14712. characterMakers.push(() => makeCharacter(
  14713. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14714. {
  14715. front: {
  14716. height: math.unit(5 + 11 / 12, "feet"),
  14717. weight: math.unit(144, "lb"),
  14718. name: "Front",
  14719. image: {
  14720. source: "./media/characters/gabriel/front.svg",
  14721. extra: 285 / 262,
  14722. bottom: 0.004
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Normal",
  14729. height: math.unit(5 + 11 / 12, "feet"),
  14730. default: true
  14731. },
  14732. ]
  14733. ))
  14734. characterMakers.push(() => makeCharacter(
  14735. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14736. {
  14737. side: {
  14738. height: math.unit(6 + 5 / 12, "feet"),
  14739. weight: math.unit(300, "lb"),
  14740. name: "Side",
  14741. image: {
  14742. source: "./media/characters/tempest-suicune/side.svg",
  14743. extra: 195 / 154,
  14744. bottom: 0.04
  14745. }
  14746. },
  14747. },
  14748. [
  14749. {
  14750. name: "Normal",
  14751. height: math.unit(6 + 5 / 12, "feet"),
  14752. default: true
  14753. },
  14754. ]
  14755. ))
  14756. characterMakers.push(() => makeCharacter(
  14757. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14758. {
  14759. front: {
  14760. height: math.unit(7 + 2 / 12, "feet"),
  14761. weight: math.unit(322, "lb"),
  14762. name: "Front",
  14763. image: {
  14764. source: "./media/characters/vulcan/front.svg",
  14765. extra: 154 / 147,
  14766. bottom: 0.04
  14767. }
  14768. },
  14769. },
  14770. [
  14771. {
  14772. name: "Normal",
  14773. height: math.unit(7 + 2 / 12, "feet"),
  14774. default: true
  14775. },
  14776. ]
  14777. ))
  14778. characterMakers.push(() => makeCharacter(
  14779. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14780. {
  14781. front: {
  14782. height: math.unit(5 + 10 / 12, "feet"),
  14783. weight: math.unit(264, "lb"),
  14784. name: "Front",
  14785. image: {
  14786. source: "./media/characters/gault/front.svg",
  14787. extra: 161 / 140,
  14788. bottom: 0.028
  14789. }
  14790. },
  14791. },
  14792. [
  14793. {
  14794. name: "Normal",
  14795. height: math.unit(5 + 10 / 12, "feet"),
  14796. default: true
  14797. },
  14798. ]
  14799. ))
  14800. characterMakers.push(() => makeCharacter(
  14801. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14802. {
  14803. front: {
  14804. height: math.unit(6, "feet"),
  14805. weight: math.unit(150, "lb"),
  14806. name: "Front",
  14807. image: {
  14808. source: "./media/characters/shard/front.svg",
  14809. extra: 273 / 238,
  14810. bottom: 0.02
  14811. }
  14812. },
  14813. },
  14814. [
  14815. {
  14816. name: "Normal",
  14817. height: math.unit(3 + 6 / 12, "feet"),
  14818. default: true
  14819. },
  14820. ]
  14821. ))
  14822. characterMakers.push(() => makeCharacter(
  14823. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14824. {
  14825. front: {
  14826. height: math.unit(5 + 11 / 12, "feet"),
  14827. weight: math.unit(146, "lb"),
  14828. name: "Front",
  14829. image: {
  14830. source: "./media/characters/ashe/front.svg",
  14831. extra: 400 / 373,
  14832. bottom: 0.01
  14833. }
  14834. },
  14835. },
  14836. [
  14837. {
  14838. name: "Normal",
  14839. height: math.unit(5 + 11 / 12, "feet"),
  14840. default: true
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(5 + 5 / 12, "feet"),
  14849. weight: math.unit(135, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/beatrix/front.svg",
  14853. extra: 392 / 379,
  14854. bottom: 0.01
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Normal",
  14861. height: math.unit(6, "feet"),
  14862. default: true
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(6, "feet"),
  14871. weight: math.unit(150, "lb"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/ignatius/front.svg",
  14875. extra: 245 / 222,
  14876. bottom: 0.01
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Normal",
  14883. height: math.unit(5 + 5 / 12, "feet"),
  14884. default: true
  14885. },
  14886. ]
  14887. ))
  14888. characterMakers.push(() => makeCharacter(
  14889. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14890. {
  14891. front: {
  14892. height: math.unit(6 + 2 / 12, "feet"),
  14893. weight: math.unit(138, "lb"),
  14894. name: "Front",
  14895. image: {
  14896. source: "./media/characters/mei-li/front.svg",
  14897. extra: 237 / 229,
  14898. bottom: 0.03
  14899. }
  14900. },
  14901. },
  14902. [
  14903. {
  14904. name: "Normal",
  14905. height: math.unit(6 + 2 / 12, "feet"),
  14906. default: true
  14907. },
  14908. ]
  14909. ))
  14910. characterMakers.push(() => makeCharacter(
  14911. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14912. {
  14913. front: {
  14914. height: math.unit(2 + 4 / 12, "feet"),
  14915. weight: math.unit(62, "lb"),
  14916. name: "Front",
  14917. image: {
  14918. source: "./media/characters/puru/front.svg",
  14919. extra: 206 / 149,
  14920. bottom: 0.06
  14921. }
  14922. },
  14923. },
  14924. [
  14925. {
  14926. name: "Normal",
  14927. height: math.unit(2 + 4 / 12, "feet"),
  14928. default: true
  14929. },
  14930. ]
  14931. ))
  14932. characterMakers.push(() => makeCharacter(
  14933. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14934. {
  14935. taur: {
  14936. height: math.unit(11, "feet"),
  14937. weight: math.unit(500, "lb"),
  14938. name: "Taur",
  14939. image: {
  14940. source: "./media/characters/kee/taur.svg",
  14941. extra: 1,
  14942. bottom: 0.04
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Normal",
  14949. height: math.unit(11, "feet"),
  14950. default: true
  14951. },
  14952. ]
  14953. ))
  14954. characterMakers.push(() => makeCharacter(
  14955. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14956. {
  14957. anthro: {
  14958. height: math.unit(7, "feet"),
  14959. weight: math.unit(190, "lb"),
  14960. name: "Anthro",
  14961. image: {
  14962. source: "./media/characters/cobalt-dracha/anthro.svg",
  14963. extra: 231 / 225,
  14964. bottom: 0.04
  14965. }
  14966. },
  14967. feral: {
  14968. height: math.unit(9 + 7 / 12, "feet"),
  14969. weight: math.unit(294, "lb"),
  14970. name: "Feral",
  14971. image: {
  14972. source: "./media/characters/cobalt-dracha/feral.svg",
  14973. extra: 692 / 633,
  14974. bottom: 0.05
  14975. }
  14976. },
  14977. },
  14978. [
  14979. {
  14980. name: "Normal",
  14981. height: math.unit(7, "feet"),
  14982. default: true
  14983. },
  14984. ]
  14985. ))
  14986. characterMakers.push(() => makeCharacter(
  14987. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14988. {
  14989. fallen: {
  14990. height: math.unit(11 + 8 / 12, "feet"),
  14991. weight: math.unit(485, "lb"),
  14992. name: "Java (Fallen)",
  14993. rename: true,
  14994. image: {
  14995. source: "./media/characters/java/fallen.svg",
  14996. extra: 226 / 208,
  14997. bottom: 0.005
  14998. }
  14999. },
  15000. godkin: {
  15001. height: math.unit(10 + 6 / 12, "feet"),
  15002. weight: math.unit(328, "lb"),
  15003. name: "Java (Godkin)",
  15004. rename: true,
  15005. image: {
  15006. source: "./media/characters/java/godkin.svg",
  15007. extra: 270 / 262,
  15008. bottom: 0.02
  15009. }
  15010. },
  15011. },
  15012. [
  15013. {
  15014. name: "Normal",
  15015. height: math.unit(11 + 8 / 12, "feet"),
  15016. default: true
  15017. },
  15018. ]
  15019. ))
  15020. characterMakers.push(() => makeCharacter(
  15021. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15022. {
  15023. front: {
  15024. height: math.unit(7 + 8 / 12, "feet"),
  15025. weight: math.unit(320, "lb"),
  15026. name: "Front",
  15027. image: {
  15028. source: "./media/characters/skoll/front.svg",
  15029. extra: 232 / 220,
  15030. bottom: 0.02
  15031. }
  15032. },
  15033. },
  15034. [
  15035. {
  15036. name: "Normal",
  15037. height: math.unit(7 + 8 / 12, "feet"),
  15038. default: true
  15039. },
  15040. ]
  15041. ))
  15042. characterMakers.push(() => makeCharacter(
  15043. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15044. {
  15045. front: {
  15046. height: math.unit(5 + 9 / 12, "feet"),
  15047. weight: math.unit(170, "lb"),
  15048. name: "Front",
  15049. image: {
  15050. source: "./media/characters/purna/front.svg",
  15051. extra: 239 / 229,
  15052. bottom: 0.01
  15053. }
  15054. },
  15055. },
  15056. [
  15057. {
  15058. name: "Normal",
  15059. height: math.unit(5 + 9 / 12, "feet"),
  15060. default: true
  15061. },
  15062. ]
  15063. ))
  15064. characterMakers.push(() => makeCharacter(
  15065. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15066. {
  15067. front: {
  15068. height: math.unit(5 + 9 / 12, "feet"),
  15069. weight: math.unit(142, "lb"),
  15070. name: "Front",
  15071. image: {
  15072. source: "./media/characters/kuva/front.svg",
  15073. extra: 281 / 271,
  15074. bottom: 0.006
  15075. }
  15076. },
  15077. },
  15078. [
  15079. {
  15080. name: "Normal",
  15081. height: math.unit(5 + 9 / 12, "feet"),
  15082. default: true
  15083. },
  15084. ]
  15085. ))
  15086. characterMakers.push(() => makeCharacter(
  15087. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15088. {
  15089. anthro: {
  15090. height: math.unit(9 + 2 / 12, "feet"),
  15091. weight: math.unit(270, "lb"),
  15092. name: "Anthro",
  15093. image: {
  15094. source: "./media/characters/embra/anthro.svg",
  15095. extra: 200 / 187,
  15096. bottom: 0.02
  15097. }
  15098. },
  15099. feral: {
  15100. height: math.unit(18 + 8 / 12, "feet"),
  15101. weight: math.unit(576, "lb"),
  15102. name: "Feral",
  15103. image: {
  15104. source: "./media/characters/embra/feral.svg",
  15105. extra: 152 / 137,
  15106. bottom: 0.037
  15107. }
  15108. },
  15109. },
  15110. [
  15111. {
  15112. name: "Normal",
  15113. height: math.unit(9 + 2 / 12, "feet"),
  15114. default: true
  15115. },
  15116. ]
  15117. ))
  15118. characterMakers.push(() => makeCharacter(
  15119. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15120. {
  15121. anthro: {
  15122. height: math.unit(10 + 9 / 12, "feet"),
  15123. weight: math.unit(224, "lb"),
  15124. name: "Anthro",
  15125. image: {
  15126. source: "./media/characters/grottos/anthro.svg",
  15127. extra: 350 / 332,
  15128. bottom: 0.045
  15129. }
  15130. },
  15131. feral: {
  15132. height: math.unit(20 + 7 / 12, "feet"),
  15133. weight: math.unit(629, "lb"),
  15134. name: "Feral",
  15135. image: {
  15136. source: "./media/characters/grottos/feral.svg",
  15137. extra: 207 / 190,
  15138. bottom: 0.05
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Normal",
  15145. height: math.unit(10 + 9 / 12, "feet"),
  15146. default: true
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15152. {
  15153. anthro: {
  15154. height: math.unit(9 + 6 / 12, "feet"),
  15155. weight: math.unit(298, "lb"),
  15156. name: "Anthro",
  15157. image: {
  15158. source: "./media/characters/frifna/anthro.svg",
  15159. extra: 282 / 269,
  15160. bottom: 0.015
  15161. }
  15162. },
  15163. feral: {
  15164. height: math.unit(16 + 2 / 12, "feet"),
  15165. weight: math.unit(624, "lb"),
  15166. name: "Feral",
  15167. image: {
  15168. source: "./media/characters/frifna/feral.svg"
  15169. }
  15170. },
  15171. },
  15172. [
  15173. {
  15174. name: "Normal",
  15175. height: math.unit(9 + 6 / 12, "feet"),
  15176. default: true
  15177. },
  15178. ]
  15179. ))
  15180. characterMakers.push(() => makeCharacter(
  15181. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15182. {
  15183. front: {
  15184. height: math.unit(6 + 2 / 12, "feet"),
  15185. weight: math.unit(168, "lb"),
  15186. name: "Front",
  15187. image: {
  15188. source: "./media/characters/elise/front.svg",
  15189. extra: 276 / 271
  15190. }
  15191. },
  15192. },
  15193. [
  15194. {
  15195. name: "Normal",
  15196. height: math.unit(6 + 2 / 12, "feet"),
  15197. default: true
  15198. },
  15199. ]
  15200. ))
  15201. characterMakers.push(() => makeCharacter(
  15202. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15203. {
  15204. front: {
  15205. height: math.unit(5 + 10 / 12, "feet"),
  15206. weight: math.unit(210, "lb"),
  15207. name: "Front",
  15208. image: {
  15209. source: "./media/characters/glade/front.svg",
  15210. extra: 258 / 247,
  15211. bottom: 0.008
  15212. }
  15213. },
  15214. },
  15215. [
  15216. {
  15217. name: "Normal",
  15218. height: math.unit(5 + 10 / 12, "feet"),
  15219. default: true
  15220. },
  15221. ]
  15222. ))
  15223. characterMakers.push(() => makeCharacter(
  15224. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15225. {
  15226. front: {
  15227. height: math.unit(5 + 10 / 12, "feet"),
  15228. weight: math.unit(129, "lb"),
  15229. name: "Front",
  15230. image: {
  15231. source: "./media/characters/rina/front.svg",
  15232. extra: 266 / 255,
  15233. bottom: 0.005
  15234. }
  15235. },
  15236. },
  15237. [
  15238. {
  15239. name: "Normal",
  15240. height: math.unit(5 + 10 / 12, "feet"),
  15241. default: true
  15242. },
  15243. ]
  15244. ))
  15245. characterMakers.push(() => makeCharacter(
  15246. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15247. {
  15248. front: {
  15249. height: math.unit(6 + 1 / 12, "feet"),
  15250. weight: math.unit(192, "lb"),
  15251. name: "Front",
  15252. image: {
  15253. source: "./media/characters/veronica/front.svg",
  15254. extra: 319 / 309,
  15255. bottom: 0.005
  15256. }
  15257. },
  15258. },
  15259. [
  15260. {
  15261. name: "Normal",
  15262. height: math.unit(6 + 1 / 12, "feet"),
  15263. default: true
  15264. },
  15265. ]
  15266. ))
  15267. characterMakers.push(() => makeCharacter(
  15268. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15269. {
  15270. front: {
  15271. height: math.unit(9 + 3 / 12, "feet"),
  15272. weight: math.unit(1100, "lb"),
  15273. name: "Front",
  15274. image: {
  15275. source: "./media/characters/braxton/front.svg",
  15276. extra: 1057 / 984,
  15277. bottom: 0.05
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Normal",
  15284. height: math.unit(9 + 3 / 12, "feet")
  15285. },
  15286. {
  15287. name: "Giant",
  15288. height: math.unit(300, "feet"),
  15289. default: true
  15290. },
  15291. {
  15292. name: "Macro",
  15293. height: math.unit(700, "feet")
  15294. },
  15295. {
  15296. name: "Megamacro",
  15297. height: math.unit(6000, "feet")
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(6 + 7 / 12, "feet"),
  15306. weight: math.unit(150, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/blue-feyonics/front.svg",
  15310. extra: 1403 / 1306,
  15311. bottom: 0.047
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(6 + 7 / 12, "feet"),
  15319. default: true
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15325. {
  15326. front: {
  15327. height: math.unit(1.8, "meters"),
  15328. weight: math.unit(60, "kg"),
  15329. name: "Front",
  15330. image: {
  15331. source: "./media/characters/maxwell/front.svg",
  15332. extra: 2060 / 1873
  15333. }
  15334. },
  15335. },
  15336. [
  15337. {
  15338. name: "Micro",
  15339. height: math.unit(1, "mm")
  15340. },
  15341. {
  15342. name: "Normal",
  15343. height: math.unit(1.8, "meter"),
  15344. default: true
  15345. },
  15346. {
  15347. name: "Macro",
  15348. height: math.unit(30, "meters")
  15349. },
  15350. {
  15351. name: "Megamacro",
  15352. height: math.unit(10, "km")
  15353. },
  15354. ]
  15355. ))
  15356. characterMakers.push(() => makeCharacter(
  15357. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15358. {
  15359. front: {
  15360. height: math.unit(6, "feet"),
  15361. weight: math.unit(150, "lb"),
  15362. name: "Front",
  15363. image: {
  15364. source: "./media/characters/jack/front.svg",
  15365. extra: 1754 / 1640,
  15366. bottom: 0.01
  15367. }
  15368. },
  15369. },
  15370. [
  15371. {
  15372. name: "Normal",
  15373. height: math.unit(80000, "feet"),
  15374. default: true
  15375. },
  15376. {
  15377. name: "Max size",
  15378. height: math.unit(10, "lightyears")
  15379. },
  15380. ]
  15381. ))
  15382. characterMakers.push(() => makeCharacter(
  15383. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15384. {
  15385. upright: {
  15386. height: math.unit(7, "feet"),
  15387. weight: math.unit(170, "lb"),
  15388. name: "Upright",
  15389. image: {
  15390. source: "./media/characters/cafat/upright.svg",
  15391. bottom: 0.01
  15392. }
  15393. },
  15394. uprightFull: {
  15395. height: math.unit(7, "feet"),
  15396. weight: math.unit(170, "lb"),
  15397. name: "Upright (Full)",
  15398. image: {
  15399. source: "./media/characters/cafat/upright-full.svg",
  15400. bottom: 0.01
  15401. }
  15402. },
  15403. side: {
  15404. height: math.unit(5, "feet"),
  15405. weight: math.unit(150, "lb"),
  15406. name: "Side",
  15407. image: {
  15408. source: "./media/characters/cafat/side.svg"
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Small",
  15415. height: math.unit(7, "feet"),
  15416. default: true
  15417. },
  15418. {
  15419. name: "Large",
  15420. height: math.unit(15.5, "feet")
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15426. {
  15427. front: {
  15428. height: math.unit(6, "feet"),
  15429. weight: math.unit(150, "lb"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/verin-raharra/front.svg",
  15433. extra: 5019 / 4835,
  15434. bottom: 0.023
  15435. }
  15436. },
  15437. },
  15438. [
  15439. {
  15440. name: "Normal",
  15441. height: math.unit(7 + 5 / 12, "feet"),
  15442. default: true
  15443. },
  15444. {
  15445. name: "Upsized",
  15446. height: math.unit(20, "feet")
  15447. },
  15448. ]
  15449. ))
  15450. characterMakers.push(() => makeCharacter(
  15451. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15452. {
  15453. front: {
  15454. height: math.unit(7, "feet"),
  15455. weight: math.unit(230, "lb"),
  15456. name: "Front",
  15457. image: {
  15458. source: "./media/characters/nakata/front.svg",
  15459. extra: 1.005,
  15460. bottom: 0.01
  15461. }
  15462. },
  15463. },
  15464. [
  15465. {
  15466. name: "Normal",
  15467. height: math.unit(7, "feet"),
  15468. default: true
  15469. },
  15470. {
  15471. name: "Big",
  15472. height: math.unit(14, "feet")
  15473. },
  15474. {
  15475. name: "Macro",
  15476. height: math.unit(400, "feet")
  15477. },
  15478. ]
  15479. ))
  15480. characterMakers.push(() => makeCharacter(
  15481. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15482. {
  15483. front: {
  15484. height: math.unit(4.91, "feet"),
  15485. weight: math.unit(100, "lb"),
  15486. name: "Front",
  15487. image: {
  15488. source: "./media/characters/lily/front.svg",
  15489. extra: 1585 / 1415,
  15490. bottom: 0.02
  15491. }
  15492. },
  15493. },
  15494. [
  15495. {
  15496. name: "Normal",
  15497. height: math.unit(4.91, "feet"),
  15498. default: true
  15499. },
  15500. ]
  15501. ))
  15502. characterMakers.push(() => makeCharacter(
  15503. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15504. {
  15505. laying: {
  15506. height: math.unit(4 + 4 / 12, "feet"),
  15507. weight: math.unit(600, "lb"),
  15508. name: "Laying",
  15509. image: {
  15510. source: "./media/characters/sheila/laying.svg",
  15511. extra: 1333 / 1265,
  15512. bottom: 0.16
  15513. }
  15514. },
  15515. },
  15516. [
  15517. {
  15518. name: "Normal",
  15519. height: math.unit(4 + 4 / 12, "feet"),
  15520. default: true
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15526. {
  15527. front: {
  15528. height: math.unit(6, "feet"),
  15529. weight: math.unit(190, "lb"),
  15530. name: "Front",
  15531. image: {
  15532. source: "./media/characters/sax/front.svg",
  15533. extra: 1187 / 973,
  15534. bottom: 0.042
  15535. }
  15536. },
  15537. },
  15538. [
  15539. {
  15540. name: "Micro",
  15541. height: math.unit(4, "inches"),
  15542. default: true
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15548. {
  15549. front: {
  15550. height: math.unit(6, "feet"),
  15551. weight: math.unit(150, "lb"),
  15552. name: "Front",
  15553. image: {
  15554. source: "./media/characters/pandora/front.svg",
  15555. extra: 2720 / 2556,
  15556. bottom: 0.015
  15557. }
  15558. },
  15559. back: {
  15560. height: math.unit(6, "feet"),
  15561. weight: math.unit(150, "lb"),
  15562. name: "Back",
  15563. image: {
  15564. source: "./media/characters/pandora/back.svg",
  15565. extra: 2720 / 2556,
  15566. bottom: 0.01
  15567. }
  15568. },
  15569. beans: {
  15570. height: math.unit(6 / 8, "feet"),
  15571. name: "Beans",
  15572. image: {
  15573. source: "./media/characters/pandora/beans.svg"
  15574. }
  15575. },
  15576. skirt: {
  15577. height: math.unit(6, "feet"),
  15578. weight: math.unit(150, "lb"),
  15579. name: "Skirt",
  15580. image: {
  15581. source: "./media/characters/pandora/skirt.svg",
  15582. extra: 1622 / 1525,
  15583. bottom: 0.015
  15584. }
  15585. },
  15586. hoodie: {
  15587. height: math.unit(6, "feet"),
  15588. weight: math.unit(150, "lb"),
  15589. name: "Hoodie",
  15590. image: {
  15591. source: "./media/characters/pandora/hoodie.svg",
  15592. extra: 1622 / 1525,
  15593. bottom: 0.015
  15594. }
  15595. },
  15596. casual: {
  15597. height: math.unit(6, "feet"),
  15598. weight: math.unit(150, "lb"),
  15599. name: "Casual",
  15600. image: {
  15601. source: "./media/characters/pandora/casual.svg",
  15602. extra: 1622 / 1525,
  15603. bottom: 0.015
  15604. }
  15605. },
  15606. },
  15607. [
  15608. {
  15609. name: "Normal",
  15610. height: math.unit(6, "feet")
  15611. },
  15612. {
  15613. name: "Big Steppy",
  15614. height: math.unit(1, "km"),
  15615. default: true
  15616. },
  15617. ]
  15618. ))
  15619. characterMakers.push(() => makeCharacter(
  15620. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15621. {
  15622. side: {
  15623. height: math.unit(10, "feet"),
  15624. weight: math.unit(800, "kg"),
  15625. name: "Side",
  15626. image: {
  15627. source: "./media/characters/venio-darcony/side.svg",
  15628. extra: 1373 / 1003,
  15629. bottom: 0.037
  15630. }
  15631. },
  15632. front: {
  15633. height: math.unit(19, "feet"),
  15634. weight: math.unit(800, "kg"),
  15635. name: "Front",
  15636. image: {
  15637. source: "./media/characters/venio-darcony/front.svg"
  15638. }
  15639. },
  15640. back: {
  15641. height: math.unit(19, "feet"),
  15642. weight: math.unit(800, "kg"),
  15643. name: "Back",
  15644. image: {
  15645. source: "./media/characters/venio-darcony/back.svg"
  15646. }
  15647. },
  15648. sideNsfw: {
  15649. height: math.unit(10, "feet"),
  15650. weight: math.unit(800, "kg"),
  15651. name: "Side (NSFW)",
  15652. image: {
  15653. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15654. extra: 1373 / 1003,
  15655. bottom: 0.037
  15656. }
  15657. },
  15658. frontNsfw: {
  15659. height: math.unit(19, "feet"),
  15660. weight: math.unit(800, "kg"),
  15661. name: "Front (NSFW)",
  15662. image: {
  15663. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15664. }
  15665. },
  15666. backNsfw: {
  15667. height: math.unit(19, "feet"),
  15668. weight: math.unit(800, "kg"),
  15669. name: "Back (NSFW)",
  15670. image: {
  15671. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15672. }
  15673. },
  15674. sideArmored: {
  15675. height: math.unit(10, "feet"),
  15676. weight: math.unit(800, "kg"),
  15677. name: "Side (Armored)",
  15678. image: {
  15679. source: "./media/characters/venio-darcony/side-armored.svg",
  15680. extra: 1373 / 1003,
  15681. bottom: 0.037
  15682. }
  15683. },
  15684. frontArmored: {
  15685. height: math.unit(19, "feet"),
  15686. weight: math.unit(900, "kg"),
  15687. name: "Front (Armored)",
  15688. image: {
  15689. source: "./media/characters/venio-darcony/front-armored.svg"
  15690. }
  15691. },
  15692. backArmored: {
  15693. height: math.unit(19, "feet"),
  15694. weight: math.unit(900, "kg"),
  15695. name: "Back (Armored)",
  15696. image: {
  15697. source: "./media/characters/venio-darcony/back-armored.svg"
  15698. }
  15699. },
  15700. sword: {
  15701. height: math.unit(10, "feet"),
  15702. weight: math.unit(50, "lb"),
  15703. name: "Sword",
  15704. image: {
  15705. source: "./media/characters/venio-darcony/sword.svg"
  15706. }
  15707. },
  15708. },
  15709. [
  15710. {
  15711. name: "Normal",
  15712. height: math.unit(10, "feet")
  15713. },
  15714. {
  15715. name: "Macro",
  15716. height: math.unit(130, "feet"),
  15717. default: true
  15718. },
  15719. {
  15720. name: "Macro+",
  15721. height: math.unit(240, "feet")
  15722. },
  15723. ]
  15724. ))
  15725. characterMakers.push(() => makeCharacter(
  15726. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15727. {
  15728. front: {
  15729. height: math.unit(6, "feet"),
  15730. weight: math.unit(150, "lb"),
  15731. name: "Front",
  15732. image: {
  15733. source: "./media/characters/veski/front.svg",
  15734. extra: 1299 / 1225,
  15735. bottom: 0.04
  15736. }
  15737. },
  15738. back: {
  15739. height: math.unit(6, "feet"),
  15740. weight: math.unit(150, "lb"),
  15741. name: "Back",
  15742. image: {
  15743. source: "./media/characters/veski/back.svg",
  15744. extra: 1299 / 1225,
  15745. bottom: 0.008
  15746. }
  15747. },
  15748. maw: {
  15749. height: math.unit(1.5 * 1.21, "feet"),
  15750. name: "Maw",
  15751. image: {
  15752. source: "./media/characters/veski/maw.svg"
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Macro",
  15759. height: math.unit(2, "km"),
  15760. default: true
  15761. },
  15762. ]
  15763. ))
  15764. characterMakers.push(() => makeCharacter(
  15765. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15766. {
  15767. front: {
  15768. height: math.unit(5 + 7 / 12, "feet"),
  15769. name: "Front",
  15770. image: {
  15771. source: "./media/characters/isabelle/front.svg",
  15772. extra: 2130 / 1976,
  15773. bottom: 0.05
  15774. }
  15775. },
  15776. },
  15777. [
  15778. {
  15779. name: "Supermicro",
  15780. height: math.unit(10, "micrometers")
  15781. },
  15782. {
  15783. name: "Micro",
  15784. height: math.unit(1, "inch")
  15785. },
  15786. {
  15787. name: "Tiny",
  15788. height: math.unit(5, "inches")
  15789. },
  15790. {
  15791. name: "Standard",
  15792. height: math.unit(5 + 7 / 12, "inches")
  15793. },
  15794. {
  15795. name: "Macro",
  15796. height: math.unit(80, "meters"),
  15797. default: true
  15798. },
  15799. {
  15800. name: "Megamacro",
  15801. height: math.unit(250, "meters")
  15802. },
  15803. {
  15804. name: "Gigamacro",
  15805. height: math.unit(5, "km")
  15806. },
  15807. {
  15808. name: "Cosmic",
  15809. height: math.unit(2.5e6, "miles")
  15810. },
  15811. ]
  15812. ))
  15813. characterMakers.push(() => makeCharacter(
  15814. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15815. {
  15816. front: {
  15817. height: math.unit(6, "feet"),
  15818. weight: math.unit(150, "lb"),
  15819. name: "Front",
  15820. image: {
  15821. source: "./media/characters/hanzo/front.svg",
  15822. extra: 374 / 344,
  15823. bottom: 0.02
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Normal",
  15830. height: math.unit(8, "feet"),
  15831. default: true
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15837. {
  15838. front: {
  15839. height: math.unit(7, "feet"),
  15840. weight: math.unit(130, "lb"),
  15841. name: "Front",
  15842. image: {
  15843. source: "./media/characters/anna/front.svg",
  15844. extra: 169 / 145,
  15845. bottom: 0.06
  15846. }
  15847. },
  15848. full: {
  15849. height: math.unit(4.96, "feet"),
  15850. weight: math.unit(220, "lb"),
  15851. name: "Full",
  15852. image: {
  15853. source: "./media/characters/anna/full.svg",
  15854. extra: 138 / 114,
  15855. bottom: 0.15
  15856. }
  15857. },
  15858. tongue: {
  15859. height: math.unit(2.53, "feet"),
  15860. name: "Tongue",
  15861. image: {
  15862. source: "./media/characters/anna/tongue.svg"
  15863. }
  15864. },
  15865. },
  15866. [
  15867. {
  15868. name: "Normal",
  15869. height: math.unit(7, "feet"),
  15870. default: true
  15871. },
  15872. ]
  15873. ))
  15874. characterMakers.push(() => makeCharacter(
  15875. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15876. {
  15877. front: {
  15878. height: math.unit(7, "feet"),
  15879. weight: math.unit(150, "lb"),
  15880. name: "Front",
  15881. image: {
  15882. source: "./media/characters/ian-corvid/front.svg",
  15883. extra: 150 / 142,
  15884. bottom: 0.02
  15885. }
  15886. },
  15887. back: {
  15888. height: math.unit(7, "feet"),
  15889. weight: math.unit(150, "lb"),
  15890. name: "Back",
  15891. image: {
  15892. source: "./media/characters/ian-corvid/back.svg",
  15893. extra: 150 / 143,
  15894. bottom: 0.01
  15895. }
  15896. },
  15897. stomping: {
  15898. height: math.unit(7, "feet"),
  15899. weight: math.unit(150, "lb"),
  15900. name: "Stomping",
  15901. image: {
  15902. source: "./media/characters/ian-corvid/stomping.svg",
  15903. extra: 76 / 72
  15904. }
  15905. },
  15906. sitting: {
  15907. height: math.unit(7 / 1.8, "feet"),
  15908. weight: math.unit(150, "lb"),
  15909. name: "Sitting",
  15910. image: {
  15911. source: "./media/characters/ian-corvid/sitting.svg",
  15912. extra: 1400 / 1269,
  15913. bottom: 0.15
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "Tiny Microw",
  15920. height: math.unit(1, "inch")
  15921. },
  15922. {
  15923. name: "Microw",
  15924. height: math.unit(6, "inches")
  15925. },
  15926. {
  15927. name: "Crow",
  15928. height: math.unit(7 + 1 / 12, "feet"),
  15929. default: true
  15930. },
  15931. {
  15932. name: "Macrow",
  15933. height: math.unit(176, "feet")
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15939. {
  15940. front: {
  15941. height: math.unit(5 + 7 / 12, "feet"),
  15942. weight: math.unit(147, "lb"),
  15943. name: "Front",
  15944. image: {
  15945. source: "./media/characters/natalie-kellon/front.svg",
  15946. extra: 1214 / 1141,
  15947. bottom: 0.02
  15948. }
  15949. },
  15950. },
  15951. [
  15952. {
  15953. name: "Micro",
  15954. height: math.unit(1 / 16, "inch")
  15955. },
  15956. {
  15957. name: "Tiny",
  15958. height: math.unit(4, "inches")
  15959. },
  15960. {
  15961. name: "Normal",
  15962. height: math.unit(5 + 7 / 12, "feet"),
  15963. default: true
  15964. },
  15965. {
  15966. name: "Amazon",
  15967. height: math.unit(12, "feet")
  15968. },
  15969. {
  15970. name: "Giantess",
  15971. height: math.unit(160, "meters")
  15972. },
  15973. {
  15974. name: "Titaness",
  15975. height: math.unit(800, "meters")
  15976. },
  15977. ]
  15978. ))
  15979. characterMakers.push(() => makeCharacter(
  15980. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15981. {
  15982. front: {
  15983. height: math.unit(6, "feet"),
  15984. weight: math.unit(150, "lb"),
  15985. name: "Front",
  15986. image: {
  15987. source: "./media/characters/alluria/front.svg",
  15988. extra: 806 / 738,
  15989. bottom: 0.01
  15990. }
  15991. },
  15992. side: {
  15993. height: math.unit(6, "feet"),
  15994. weight: math.unit(150, "lb"),
  15995. name: "Side",
  15996. image: {
  15997. source: "./media/characters/alluria/side.svg",
  15998. extra: 800 / 750,
  15999. }
  16000. },
  16001. back: {
  16002. height: math.unit(6, "feet"),
  16003. weight: math.unit(150, "lb"),
  16004. name: "Back",
  16005. image: {
  16006. source: "./media/characters/alluria/back.svg",
  16007. extra: 806 / 738,
  16008. }
  16009. },
  16010. frontMaid: {
  16011. height: math.unit(6, "feet"),
  16012. weight: math.unit(150, "lb"),
  16013. name: "Front (Maid)",
  16014. image: {
  16015. source: "./media/characters/alluria/front-maid.svg",
  16016. extra: 806 / 738,
  16017. bottom: 0.01
  16018. }
  16019. },
  16020. sideMaid: {
  16021. height: math.unit(6, "feet"),
  16022. weight: math.unit(150, "lb"),
  16023. name: "Side (Maid)",
  16024. image: {
  16025. source: "./media/characters/alluria/side-maid.svg",
  16026. extra: 800 / 750,
  16027. bottom: 0.005
  16028. }
  16029. },
  16030. backMaid: {
  16031. height: math.unit(6, "feet"),
  16032. weight: math.unit(150, "lb"),
  16033. name: "Back (Maid)",
  16034. image: {
  16035. source: "./media/characters/alluria/back-maid.svg",
  16036. extra: 806 / 738,
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Micro",
  16043. height: math.unit(6, "inches"),
  16044. default: true
  16045. },
  16046. ]
  16047. ))
  16048. characterMakers.push(() => makeCharacter(
  16049. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16050. {
  16051. front: {
  16052. height: math.unit(6, "feet"),
  16053. weight: math.unit(150, "lb"),
  16054. name: "Front",
  16055. image: {
  16056. source: "./media/characters/kyle/front.svg",
  16057. extra: 1069 / 962,
  16058. bottom: 77.228 / 1727.45
  16059. }
  16060. },
  16061. },
  16062. [
  16063. {
  16064. name: "Macro",
  16065. height: math.unit(150, "feet"),
  16066. default: true
  16067. },
  16068. ]
  16069. ))
  16070. characterMakers.push(() => makeCharacter(
  16071. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16072. {
  16073. front: {
  16074. height: math.unit(6, "feet"),
  16075. weight: math.unit(300, "lb"),
  16076. name: "Front",
  16077. image: {
  16078. source: "./media/characters/duncan/front.svg",
  16079. extra: 1650 / 1482,
  16080. bottom: 0.05
  16081. }
  16082. },
  16083. },
  16084. [
  16085. {
  16086. name: "Macro",
  16087. height: math.unit(100, "feet"),
  16088. default: true
  16089. },
  16090. ]
  16091. ))
  16092. characterMakers.push(() => makeCharacter(
  16093. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16094. {
  16095. front: {
  16096. height: math.unit(5 + 4 / 12, "feet"),
  16097. weight: math.unit(220, "lb"),
  16098. name: "Front",
  16099. image: {
  16100. source: "./media/characters/memory/front.svg",
  16101. extra: 3641 / 3545,
  16102. bottom: 0.03
  16103. }
  16104. },
  16105. back: {
  16106. height: math.unit(5 + 4 / 12, "feet"),
  16107. weight: math.unit(220, "lb"),
  16108. name: "Back",
  16109. image: {
  16110. source: "./media/characters/memory/back.svg",
  16111. extra: 3641 / 3545,
  16112. bottom: 0.025
  16113. }
  16114. },
  16115. frontSkirt: {
  16116. height: math.unit(5 + 4 / 12, "feet"),
  16117. weight: math.unit(220, "lb"),
  16118. name: "Front (Skirt)",
  16119. image: {
  16120. source: "./media/characters/memory/front-skirt.svg",
  16121. extra: 3641 / 3545,
  16122. bottom: 0.03
  16123. }
  16124. },
  16125. frontDress: {
  16126. height: math.unit(5 + 4 / 12, "feet"),
  16127. weight: math.unit(220, "lb"),
  16128. name: "Front (Dress)",
  16129. image: {
  16130. source: "./media/characters/memory/front-dress.svg",
  16131. extra: 3641 / 3545,
  16132. bottom: 0.03
  16133. }
  16134. },
  16135. },
  16136. [
  16137. {
  16138. name: "Micro",
  16139. height: math.unit(6, "inches"),
  16140. default: true
  16141. },
  16142. {
  16143. name: "Normal",
  16144. height: math.unit(5 + 4 / 12, "feet")
  16145. },
  16146. ]
  16147. ))
  16148. characterMakers.push(() => makeCharacter(
  16149. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16150. {
  16151. front: {
  16152. height: math.unit(4 + 11 / 12, "feet"),
  16153. weight: math.unit(100, "lb"),
  16154. name: "Front",
  16155. image: {
  16156. source: "./media/characters/luno/front.svg",
  16157. extra: 1535 / 1487,
  16158. bottom: 0.03
  16159. }
  16160. },
  16161. },
  16162. [
  16163. {
  16164. name: "Micro",
  16165. height: math.unit(3, "inches")
  16166. },
  16167. {
  16168. name: "Normal",
  16169. height: math.unit(4 + 11 / 12, "feet"),
  16170. default: true
  16171. },
  16172. {
  16173. name: "Macro",
  16174. height: math.unit(300, "feet")
  16175. },
  16176. {
  16177. name: "Megamacro",
  16178. height: math.unit(700, "miles")
  16179. },
  16180. ]
  16181. ))
  16182. characterMakers.push(() => makeCharacter(
  16183. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16184. {
  16185. front: {
  16186. height: math.unit(6 + 2 / 12, "feet"),
  16187. weight: math.unit(170, "lb"),
  16188. name: "Front",
  16189. image: {
  16190. source: "./media/characters/jamesy/front.svg",
  16191. extra: 440 / 382,
  16192. bottom: 0.005
  16193. }
  16194. },
  16195. },
  16196. [
  16197. {
  16198. name: "Micro",
  16199. height: math.unit(3, "inches")
  16200. },
  16201. {
  16202. name: "Normal",
  16203. height: math.unit(6 + 2 / 12, "feet"),
  16204. default: true
  16205. },
  16206. {
  16207. name: "Macro",
  16208. height: math.unit(300, "feet")
  16209. },
  16210. {
  16211. name: "Megamacro",
  16212. height: math.unit(700, "miles")
  16213. },
  16214. ]
  16215. ))
  16216. characterMakers.push(() => makeCharacter(
  16217. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16218. {
  16219. front: {
  16220. height: math.unit(6, "feet"),
  16221. weight: math.unit(160, "lb"),
  16222. name: "Front",
  16223. image: {
  16224. source: "./media/characters/mark/front.svg",
  16225. extra: 3300 / 3100,
  16226. bottom: 136.42 / 3440.47
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "Macro",
  16233. height: math.unit(120, "meters")
  16234. },
  16235. {
  16236. name: "Bigger Macro",
  16237. height: math.unit(350, "meters")
  16238. },
  16239. {
  16240. name: "Megamacro",
  16241. height: math.unit(8, "km"),
  16242. default: true
  16243. },
  16244. {
  16245. name: "Continental",
  16246. height: math.unit(4550, "km")
  16247. },
  16248. {
  16249. name: "Planetary",
  16250. height: math.unit(65000, "km")
  16251. },
  16252. ]
  16253. ))
  16254. characterMakers.push(() => makeCharacter(
  16255. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16256. {
  16257. front: {
  16258. height: math.unit(6, "feet"),
  16259. weight: math.unit(400, "lb"),
  16260. name: "Front",
  16261. image: {
  16262. source: "./media/characters/mac/front.svg",
  16263. extra: 1048 / 987.7,
  16264. bottom: 60 / 1107.6,
  16265. }
  16266. },
  16267. },
  16268. [
  16269. {
  16270. name: "Macro",
  16271. height: math.unit(500, "feet"),
  16272. default: true
  16273. },
  16274. ]
  16275. ))
  16276. characterMakers.push(() => makeCharacter(
  16277. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16278. {
  16279. front: {
  16280. height: math.unit(5 + 2 / 12, "feet"),
  16281. weight: math.unit(190, "lb"),
  16282. name: "Front",
  16283. image: {
  16284. source: "./media/characters/bari/front.svg",
  16285. extra: 3156 / 2880,
  16286. bottom: 0.03
  16287. }
  16288. },
  16289. back: {
  16290. height: math.unit(5 + 2 / 12, "feet"),
  16291. weight: math.unit(190, "lb"),
  16292. name: "Back",
  16293. image: {
  16294. source: "./media/characters/bari/back.svg",
  16295. extra: 3260 / 2834,
  16296. bottom: 0.025
  16297. }
  16298. },
  16299. frontPlush: {
  16300. height: math.unit(5 + 2 / 12, "feet"),
  16301. weight: math.unit(190, "lb"),
  16302. name: "Front (Plush)",
  16303. image: {
  16304. source: "./media/characters/bari/front-plush.svg",
  16305. extra: 1112 / 1061,
  16306. bottom: 0.002
  16307. }
  16308. },
  16309. },
  16310. [
  16311. {
  16312. name: "Micro",
  16313. height: math.unit(3, "inches")
  16314. },
  16315. {
  16316. name: "Normal",
  16317. height: math.unit(5 + 2 / 12, "feet"),
  16318. default: true
  16319. },
  16320. {
  16321. name: "Macro",
  16322. height: math.unit(20, "feet")
  16323. },
  16324. ]
  16325. ))
  16326. characterMakers.push(() => makeCharacter(
  16327. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16328. {
  16329. front: {
  16330. height: math.unit(6 + 1 / 12, "feet"),
  16331. weight: math.unit(275, "lb"),
  16332. name: "Front",
  16333. image: {
  16334. source: "./media/characters/hunter-misha-raven/front.svg"
  16335. }
  16336. },
  16337. },
  16338. [
  16339. {
  16340. name: "Mortal",
  16341. height: math.unit(6 + 1 / 12, "feet")
  16342. },
  16343. {
  16344. name: "Divine",
  16345. height: math.unit(1.12134e34, "parsecs"),
  16346. default: true
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16352. {
  16353. front: {
  16354. height: math.unit(6 + 3 / 12, "feet"),
  16355. weight: math.unit(220, "lb"),
  16356. name: "Front",
  16357. image: {
  16358. source: "./media/characters/max-calore/front.svg",
  16359. extra: 1700 / 1648,
  16360. bottom: 0.01
  16361. }
  16362. },
  16363. back: {
  16364. height: math.unit(6 + 3 / 12, "feet"),
  16365. weight: math.unit(220, "lb"),
  16366. name: "Back",
  16367. image: {
  16368. source: "./media/characters/max-calore/back.svg",
  16369. extra: 1700 / 1648,
  16370. bottom: 0.01
  16371. }
  16372. },
  16373. },
  16374. [
  16375. {
  16376. name: "Normal",
  16377. height: math.unit(6 + 3 / 12, "feet"),
  16378. default: true
  16379. },
  16380. ]
  16381. ))
  16382. characterMakers.push(() => makeCharacter(
  16383. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16384. {
  16385. side: {
  16386. height: math.unit(2 + 8 / 12, "feet"),
  16387. weight: math.unit(99, "lb"),
  16388. name: "Side",
  16389. image: {
  16390. source: "./media/characters/aspen/side.svg",
  16391. extra: 152 / 138,
  16392. bottom: 0.032
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(2 + 8 / 12, "feet"),
  16400. default: true
  16401. },
  16402. ]
  16403. ))
  16404. characterMakers.push(() => makeCharacter(
  16405. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16406. {
  16407. side: {
  16408. height: math.unit(3 + 2 / 12, "feet"),
  16409. weight: math.unit(224, "lb"),
  16410. name: "Side",
  16411. image: {
  16412. source: "./media/characters/sheila-feral-wolf/side.svg",
  16413. extra: 179 / 166,
  16414. bottom: 0.03
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Normal",
  16421. height: math.unit(3 + 2 / 12, "feet"),
  16422. default: true
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16428. {
  16429. side: {
  16430. height: math.unit(1 + 9 / 12, "feet"),
  16431. weight: math.unit(38, "lb"),
  16432. name: "Side",
  16433. image: {
  16434. source: "./media/characters/michelle/side.svg",
  16435. extra: 147 / 136.7,
  16436. bottom: 0.03
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(1 + 9 / 12, "feet"),
  16444. default: true
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(1 + 1 / 12, "feet"),
  16453. weight: math.unit(18, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/nino/front.svg"
  16457. }
  16458. },
  16459. },
  16460. [
  16461. {
  16462. name: "Normal",
  16463. height: math.unit(1 + 1 / 12, "feet"),
  16464. default: true
  16465. },
  16466. ]
  16467. ))
  16468. characterMakers.push(() => makeCharacter(
  16469. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16470. {
  16471. front: {
  16472. height: math.unit(1, "feet"),
  16473. weight: math.unit(16, "lb"),
  16474. name: "Front",
  16475. image: {
  16476. source: "./media/characters/viola/front.svg"
  16477. }
  16478. },
  16479. },
  16480. [
  16481. {
  16482. name: "Normal",
  16483. height: math.unit(1, "feet"),
  16484. default: true
  16485. },
  16486. ]
  16487. ))
  16488. characterMakers.push(() => makeCharacter(
  16489. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16490. {
  16491. front: {
  16492. height: math.unit(6 + 5 / 12, "feet"),
  16493. weight: math.unit(580, "lb"),
  16494. name: "Front",
  16495. image: {
  16496. source: "./media/characters/atlas/front.svg",
  16497. extra: 298.5 / 290,
  16498. bottom: 0.015
  16499. }
  16500. },
  16501. },
  16502. [
  16503. {
  16504. name: "Normal",
  16505. height: math.unit(6 + 5 / 12, "feet"),
  16506. default: true
  16507. },
  16508. ]
  16509. ))
  16510. characterMakers.push(() => makeCharacter(
  16511. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16512. {
  16513. side: {
  16514. height: math.unit(1 + 10 / 12, "feet"),
  16515. weight: math.unit(25, "lb"),
  16516. name: "Side",
  16517. image: {
  16518. source: "./media/characters/davy/side.svg",
  16519. extra: 200 / 170,
  16520. bottom: 0.01
  16521. }
  16522. },
  16523. },
  16524. [
  16525. {
  16526. name: "Normal",
  16527. height: math.unit(1 + 10 / 12, "feet"),
  16528. default: true
  16529. },
  16530. ]
  16531. ))
  16532. characterMakers.push(() => makeCharacter(
  16533. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16534. {
  16535. side: {
  16536. height: math.unit(4 + 8 / 12, "feet"),
  16537. weight: math.unit(166, "lb"),
  16538. name: "Side",
  16539. image: {
  16540. source: "./media/characters/fiona/side.svg",
  16541. extra: 232 / 220,
  16542. bottom: 0.03
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Normal",
  16549. height: math.unit(4 + 8 / 12, "feet"),
  16550. default: true
  16551. },
  16552. ]
  16553. ))
  16554. characterMakers.push(() => makeCharacter(
  16555. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16556. {
  16557. front: {
  16558. height: math.unit(2, "feet"),
  16559. weight: math.unit(62, "lb"),
  16560. name: "Front",
  16561. image: {
  16562. source: "./media/characters/lyla/front.svg",
  16563. bottom: 0.1
  16564. }
  16565. },
  16566. },
  16567. [
  16568. {
  16569. name: "Normal",
  16570. height: math.unit(2, "feet"),
  16571. default: true
  16572. },
  16573. ]
  16574. ))
  16575. characterMakers.push(() => makeCharacter(
  16576. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16577. {
  16578. side: {
  16579. height: math.unit(1.8, "feet"),
  16580. weight: math.unit(44, "lb"),
  16581. name: "Side",
  16582. image: {
  16583. source: "./media/characters/perseus/side.svg",
  16584. bottom: 0.21
  16585. }
  16586. },
  16587. },
  16588. [
  16589. {
  16590. name: "Normal",
  16591. height: math.unit(1.8, "feet"),
  16592. default: true
  16593. },
  16594. ]
  16595. ))
  16596. characterMakers.push(() => makeCharacter(
  16597. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16598. {
  16599. side: {
  16600. height: math.unit(4 + 2 / 12, "feet"),
  16601. weight: math.unit(20, "lb"),
  16602. name: "Side",
  16603. image: {
  16604. source: "./media/characters/remus/side.svg"
  16605. }
  16606. },
  16607. },
  16608. [
  16609. {
  16610. name: "Normal",
  16611. height: math.unit(4 + 2 / 12, "feet"),
  16612. default: true
  16613. },
  16614. ]
  16615. ))
  16616. characterMakers.push(() => makeCharacter(
  16617. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16618. {
  16619. front: {
  16620. height: math.unit(4 + 11 / 12, "feet"),
  16621. weight: math.unit(114, "lb"),
  16622. name: "Front",
  16623. image: {
  16624. source: "./media/characters/raf/front.svg",
  16625. bottom: 20.5 / 1863
  16626. }
  16627. },
  16628. side: {
  16629. height: math.unit(4 + 11 / 12, "feet"),
  16630. weight: math.unit(114, "lb"),
  16631. name: "Side",
  16632. image: {
  16633. source: "./media/characters/raf/side.svg",
  16634. bottom: 22 / 1822
  16635. }
  16636. },
  16637. },
  16638. [
  16639. {
  16640. name: "Micro",
  16641. height: math.unit(2, "inches")
  16642. },
  16643. {
  16644. name: "Normal",
  16645. height: math.unit(4 + 11 / 12, "feet"),
  16646. default: true
  16647. },
  16648. {
  16649. name: "Macro",
  16650. height: math.unit(70, "feet")
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16656. {
  16657. front: {
  16658. height: math.unit(1.5, "meters"),
  16659. weight: math.unit(68, "kg"),
  16660. name: "Front",
  16661. image: {
  16662. source: "./media/characters/liam-einarr/front.svg",
  16663. extra: 2822 / 2666
  16664. }
  16665. },
  16666. back: {
  16667. height: math.unit(1.5, "meters"),
  16668. weight: math.unit(68, "kg"),
  16669. name: "Back",
  16670. image: {
  16671. source: "./media/characters/liam-einarr/back.svg",
  16672. extra: 2822 / 2666,
  16673. bottom: 0.015
  16674. }
  16675. },
  16676. },
  16677. [
  16678. {
  16679. name: "Normal",
  16680. height: math.unit(1.5, "meters"),
  16681. default: true
  16682. },
  16683. {
  16684. name: "Macro",
  16685. height: math.unit(150, "meters")
  16686. },
  16687. {
  16688. name: "Megamacro",
  16689. height: math.unit(35, "km")
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16695. {
  16696. front: {
  16697. height: math.unit(6, "feet"),
  16698. weight: math.unit(75, "kg"),
  16699. name: "Front",
  16700. image: {
  16701. source: "./media/characters/linda/front.svg",
  16702. extra: 930 / 874,
  16703. bottom: 0.004
  16704. }
  16705. },
  16706. },
  16707. [
  16708. {
  16709. name: "Normal",
  16710. height: math.unit(6, "feet"),
  16711. default: true
  16712. },
  16713. ]
  16714. ))
  16715. characterMakers.push(() => makeCharacter(
  16716. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16717. {
  16718. front: {
  16719. height: math.unit(6 + 8 / 12, "feet"),
  16720. weight: math.unit(220, "lb"),
  16721. name: "Front",
  16722. image: {
  16723. source: "./media/characters/caylex/front.svg",
  16724. extra: 821 / 772,
  16725. bottom: 0.07
  16726. }
  16727. },
  16728. back: {
  16729. height: math.unit(6 + 8 / 12, "feet"),
  16730. weight: math.unit(220, "lb"),
  16731. name: "Back",
  16732. image: {
  16733. source: "./media/characters/caylex/back.svg",
  16734. extra: 821 / 772,
  16735. bottom: 0.022
  16736. }
  16737. },
  16738. hand: {
  16739. height: math.unit(1.25, "feet"),
  16740. name: "Hand",
  16741. image: {
  16742. source: "./media/characters/caylex/hand.svg"
  16743. }
  16744. },
  16745. foot: {
  16746. height: math.unit(1.6, "feet"),
  16747. name: "Foot",
  16748. image: {
  16749. source: "./media/characters/caylex/foot.svg"
  16750. }
  16751. },
  16752. armored: {
  16753. height: math.unit(6 + 8 / 12, "feet"),
  16754. weight: math.unit(250, "lb"),
  16755. name: "Armored",
  16756. image: {
  16757. source: "./media/characters/caylex/armored.svg",
  16758. extra: 1420 / 1310,
  16759. bottom: 0.045
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Normal",
  16766. height: math.unit(6 + 8 / 12, "feet"),
  16767. default: true
  16768. },
  16769. {
  16770. name: "Normal+",
  16771. height: math.unit(12, "feet")
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16777. {
  16778. front: {
  16779. height: math.unit(7 + 6 / 12, "feet"),
  16780. weight: math.unit(288, "lb"),
  16781. name: "Front",
  16782. image: {
  16783. source: "./media/characters/alana/front.svg",
  16784. extra: 679 / 653,
  16785. bottom: 22.5 / 701
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Normal",
  16792. height: math.unit(7 + 6 / 12, "feet")
  16793. },
  16794. {
  16795. name: "Large",
  16796. height: math.unit(50, "feet")
  16797. },
  16798. {
  16799. name: "Macro",
  16800. height: math.unit(100, "feet"),
  16801. default: true
  16802. },
  16803. {
  16804. name: "Macro+",
  16805. height: math.unit(200, "feet")
  16806. },
  16807. ]
  16808. ))
  16809. characterMakers.push(() => makeCharacter(
  16810. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16811. {
  16812. front: {
  16813. height: math.unit(6 + 1 / 12, "feet"),
  16814. weight: math.unit(210, "lb"),
  16815. name: "Front",
  16816. image: {
  16817. source: "./media/characters/hasani/front.svg",
  16818. extra: 244 / 232,
  16819. bottom: 0.01
  16820. }
  16821. },
  16822. back: {
  16823. height: math.unit(6 + 1 / 12, "feet"),
  16824. weight: math.unit(210, "lb"),
  16825. name: "Back",
  16826. image: {
  16827. source: "./media/characters/hasani/back.svg",
  16828. extra: 244 / 232,
  16829. bottom: 0.01
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(6 + 1 / 12, "feet")
  16837. },
  16838. {
  16839. name: "Macro",
  16840. height: math.unit(175, "feet"),
  16841. default: true
  16842. },
  16843. ]
  16844. ))
  16845. characterMakers.push(() => makeCharacter(
  16846. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16847. {
  16848. front: {
  16849. height: math.unit(1.82, "meters"),
  16850. weight: math.unit(140, "lb"),
  16851. name: "Front",
  16852. image: {
  16853. source: "./media/characters/nita/front.svg",
  16854. extra: 2473 / 2363,
  16855. bottom: 0.01
  16856. }
  16857. },
  16858. },
  16859. [
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(1.82, "m")
  16863. },
  16864. {
  16865. name: "Macro",
  16866. height: math.unit(300, "m")
  16867. },
  16868. {
  16869. name: "Mistake Canon",
  16870. height: math.unit(0.5, "miles"),
  16871. default: true
  16872. },
  16873. {
  16874. name: "Big Mistake",
  16875. height: math.unit(13, "miles")
  16876. },
  16877. {
  16878. name: "Playing God",
  16879. height: math.unit(2450, "miles")
  16880. },
  16881. ]
  16882. ))
  16883. characterMakers.push(() => makeCharacter(
  16884. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16885. {
  16886. front: {
  16887. height: math.unit(4, "feet"),
  16888. weight: math.unit(120, "lb"),
  16889. name: "Front",
  16890. image: {
  16891. source: "./media/characters/shiriko/front.svg",
  16892. extra: 195 / 188
  16893. }
  16894. },
  16895. },
  16896. [
  16897. {
  16898. name: "Normal",
  16899. height: math.unit(4, "feet"),
  16900. default: true
  16901. },
  16902. ]
  16903. ))
  16904. characterMakers.push(() => makeCharacter(
  16905. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16906. {
  16907. front: {
  16908. height: math.unit(6, "feet"),
  16909. name: "front",
  16910. image: {
  16911. source: "./media/characters/deja/front.svg",
  16912. extra: 926 / 840,
  16913. bottom: 0.07
  16914. }
  16915. },
  16916. },
  16917. [
  16918. {
  16919. name: "Planck Length",
  16920. height: math.unit(1.6e-35, "meters")
  16921. },
  16922. {
  16923. name: "Normal",
  16924. height: math.unit(30.48, "meters"),
  16925. default: true
  16926. },
  16927. {
  16928. name: "Universal",
  16929. height: math.unit(8.8e26, "meters")
  16930. },
  16931. ]
  16932. ))
  16933. characterMakers.push(() => makeCharacter(
  16934. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16935. {
  16936. side: {
  16937. height: math.unit(8, "feet"),
  16938. weight: math.unit(6300, "lb"),
  16939. name: "Side",
  16940. image: {
  16941. source: "./media/characters/anima/side.svg",
  16942. bottom: 0.035
  16943. }
  16944. },
  16945. },
  16946. [
  16947. {
  16948. name: "Normal",
  16949. height: math.unit(8, "feet"),
  16950. default: true
  16951. },
  16952. ]
  16953. ))
  16954. characterMakers.push(() => makeCharacter(
  16955. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16956. {
  16957. front: {
  16958. height: math.unit(8, "feet"),
  16959. weight: math.unit(350, "lb"),
  16960. name: "Front",
  16961. image: {
  16962. source: "./media/characters/bianca/front.svg",
  16963. extra: 234 / 225,
  16964. bottom: 0.03
  16965. }
  16966. },
  16967. },
  16968. [
  16969. {
  16970. name: "Normal",
  16971. height: math.unit(8, "feet"),
  16972. default: true
  16973. },
  16974. ]
  16975. ))
  16976. characterMakers.push(() => makeCharacter(
  16977. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16978. {
  16979. front: {
  16980. height: math.unit(6, "feet"),
  16981. weight: math.unit(150, "lb"),
  16982. name: "Front",
  16983. image: {
  16984. source: "./media/characters/adinia/front.svg",
  16985. extra: 1845 / 1672,
  16986. bottom: 0.02
  16987. }
  16988. },
  16989. back: {
  16990. height: math.unit(6, "feet"),
  16991. weight: math.unit(150, "lb"),
  16992. name: "Back",
  16993. image: {
  16994. source: "./media/characters/adinia/back.svg",
  16995. extra: 1845 / 1672,
  16996. bottom: 0.002
  16997. }
  16998. },
  16999. },
  17000. [
  17001. {
  17002. name: "Normal",
  17003. height: math.unit(11 + 5 / 12, "feet"),
  17004. default: true
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17010. {
  17011. front: {
  17012. height: math.unit(3, "meters"),
  17013. weight: math.unit(200, "kg"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/lykasa/front.svg",
  17017. extra: 1076 / 976,
  17018. bottom: 0.06
  17019. }
  17020. },
  17021. },
  17022. [
  17023. {
  17024. name: "Normal",
  17025. height: math.unit(3, "meters")
  17026. },
  17027. {
  17028. name: "Kaiju",
  17029. height: math.unit(120, "meters"),
  17030. default: true
  17031. },
  17032. {
  17033. name: "Mega Kaiju",
  17034. height: math.unit(240, "km")
  17035. },
  17036. {
  17037. name: "Giga Kaiju",
  17038. height: math.unit(400, "megameters")
  17039. },
  17040. {
  17041. name: "Tera Kaiju",
  17042. height: math.unit(800, "gigameters")
  17043. },
  17044. {
  17045. name: "Kaiju Dragon Goddess",
  17046. height: math.unit(26, "zettaparsecs")
  17047. },
  17048. ]
  17049. ))
  17050. characterMakers.push(() => makeCharacter(
  17051. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17052. {
  17053. side: {
  17054. height: math.unit(283 / 124 * 6, "feet"),
  17055. weight: math.unit(35000, "lb"),
  17056. name: "Side",
  17057. image: {
  17058. source: "./media/characters/malfaren/side.svg",
  17059. extra: 2500 / 1010,
  17060. bottom: 0.01
  17061. }
  17062. },
  17063. front: {
  17064. height: math.unit(22.36, "feet"),
  17065. weight: math.unit(35000, "lb"),
  17066. name: "Front",
  17067. image: {
  17068. source: "./media/characters/malfaren/front.svg",
  17069. extra: 1631 / 1476,
  17070. bottom: 0.01
  17071. }
  17072. },
  17073. maw: {
  17074. height: math.unit(6.9, "feet"),
  17075. name: "Maw",
  17076. image: {
  17077. source: "./media/characters/malfaren/maw.svg"
  17078. }
  17079. },
  17080. },
  17081. [
  17082. {
  17083. name: "Big",
  17084. height: math.unit(283 / 162 * 6, "feet"),
  17085. },
  17086. {
  17087. name: "Bigger",
  17088. height: math.unit(283 / 124 * 6, "feet")
  17089. },
  17090. {
  17091. name: "Massive",
  17092. height: math.unit(283 / 92 * 6, "feet"),
  17093. default: true
  17094. },
  17095. {
  17096. name: "👀💦",
  17097. height: math.unit(283 / 73 * 6, "feet"),
  17098. },
  17099. ]
  17100. ))
  17101. characterMakers.push(() => makeCharacter(
  17102. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17103. {
  17104. front: {
  17105. height: math.unit(1.7, "m"),
  17106. weight: math.unit(70, "kg"),
  17107. name: "Front",
  17108. image: {
  17109. source: "./media/characters/kernel/front.svg",
  17110. extra: 222 / 210,
  17111. bottom: 0.007
  17112. }
  17113. },
  17114. },
  17115. [
  17116. {
  17117. name: "Nano",
  17118. height: math.unit(17, "micrometers")
  17119. },
  17120. {
  17121. name: "Micro",
  17122. height: math.unit(1.7, "mm")
  17123. },
  17124. {
  17125. name: "Small",
  17126. height: math.unit(1.7, "cm")
  17127. },
  17128. {
  17129. name: "Normal",
  17130. height: math.unit(1.7, "m"),
  17131. default: true
  17132. },
  17133. ]
  17134. ))
  17135. characterMakers.push(() => makeCharacter(
  17136. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17137. {
  17138. front: {
  17139. height: math.unit(1.75, "meters"),
  17140. weight: math.unit(65, "kg"),
  17141. name: "Front",
  17142. image: {
  17143. source: "./media/characters/jayne-folest/front.svg",
  17144. extra: 2115 / 2007,
  17145. bottom: 0.02
  17146. }
  17147. },
  17148. back: {
  17149. height: math.unit(1.75, "meters"),
  17150. weight: math.unit(65, "kg"),
  17151. name: "Back",
  17152. image: {
  17153. source: "./media/characters/jayne-folest/back.svg",
  17154. extra: 2115 / 2007,
  17155. bottom: 0.005
  17156. }
  17157. },
  17158. frontClothed: {
  17159. height: math.unit(1.75, "meters"),
  17160. weight: math.unit(65, "kg"),
  17161. name: "Front (Clothed)",
  17162. image: {
  17163. source: "./media/characters/jayne-folest/front-clothed.svg",
  17164. extra: 2115 / 2007,
  17165. bottom: 0.035
  17166. }
  17167. },
  17168. hand: {
  17169. height: math.unit(1 / 1.260, "feet"),
  17170. name: "Hand",
  17171. image: {
  17172. source: "./media/characters/jayne-folest/hand.svg"
  17173. }
  17174. },
  17175. foot: {
  17176. height: math.unit(1 / 0.918, "feet"),
  17177. name: "Foot",
  17178. image: {
  17179. source: "./media/characters/jayne-folest/foot.svg"
  17180. }
  17181. },
  17182. },
  17183. [
  17184. {
  17185. name: "Micro",
  17186. height: math.unit(4, "cm")
  17187. },
  17188. {
  17189. name: "Normal",
  17190. height: math.unit(1.75, "meters")
  17191. },
  17192. {
  17193. name: "Macro",
  17194. height: math.unit(47.5, "meters"),
  17195. default: true
  17196. },
  17197. ]
  17198. ))
  17199. characterMakers.push(() => makeCharacter(
  17200. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17201. {
  17202. front: {
  17203. height: math.unit(180, "cm"),
  17204. weight: math.unit(70, "kg"),
  17205. name: "Front",
  17206. image: {
  17207. source: "./media/characters/algier/front.svg",
  17208. extra: 596 / 572,
  17209. bottom: 0.04
  17210. }
  17211. },
  17212. back: {
  17213. height: math.unit(180, "cm"),
  17214. weight: math.unit(70, "kg"),
  17215. name: "Back",
  17216. image: {
  17217. source: "./media/characters/algier/back.svg",
  17218. extra: 596 / 572,
  17219. bottom: 0.025
  17220. }
  17221. },
  17222. frontdressed: {
  17223. height: math.unit(180, "cm"),
  17224. weight: math.unit(150, "kg"),
  17225. name: "Front-dressed",
  17226. image: {
  17227. source: "./media/characters/algier/front-dressed.svg",
  17228. extra: 596 / 572,
  17229. bottom: 0.038
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Micro",
  17236. height: math.unit(5, "cm")
  17237. },
  17238. {
  17239. name: "Normal",
  17240. height: math.unit(180, "cm"),
  17241. default: true
  17242. },
  17243. {
  17244. name: "Macro",
  17245. height: math.unit(64, "m")
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17251. {
  17252. upright: {
  17253. height: math.unit(7, "feet"),
  17254. weight: math.unit(300, "lb"),
  17255. name: "Upright",
  17256. image: {
  17257. source: "./media/characters/pretzel/upright.svg",
  17258. extra: 534 / 522,
  17259. bottom: 0.065
  17260. }
  17261. },
  17262. sprawling: {
  17263. height: math.unit(3.75, "feet"),
  17264. weight: math.unit(300, "lb"),
  17265. name: "Sprawling",
  17266. image: {
  17267. source: "./media/characters/pretzel/sprawling.svg",
  17268. extra: 314 / 281,
  17269. bottom: 0.1
  17270. }
  17271. },
  17272. tongue: {
  17273. height: math.unit(2, "feet"),
  17274. name: "Tongue",
  17275. image: {
  17276. source: "./media/characters/pretzel/tongue.svg"
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Normal",
  17283. height: math.unit(7, "feet"),
  17284. default: true
  17285. },
  17286. {
  17287. name: "Oversized",
  17288. height: math.unit(15, "feet")
  17289. },
  17290. {
  17291. name: "Huge",
  17292. height: math.unit(30, "feet")
  17293. },
  17294. {
  17295. name: "Macro",
  17296. height: math.unit(250, "feet")
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17302. {
  17303. sideFront: {
  17304. height: math.unit(5 + 2 / 12, "feet"),
  17305. weight: math.unit(120, "lb"),
  17306. name: "Front Side",
  17307. image: {
  17308. source: "./media/characters/roxi/side-front.svg",
  17309. extra: 2924 / 2717,
  17310. bottom: 0.08
  17311. }
  17312. },
  17313. sideBack: {
  17314. height: math.unit(5 + 2 / 12, "feet"),
  17315. weight: math.unit(120, "lb"),
  17316. name: "Back Side",
  17317. image: {
  17318. source: "./media/characters/roxi/side-back.svg",
  17319. extra: 2904 / 2693,
  17320. bottom: 0.06
  17321. }
  17322. },
  17323. front: {
  17324. height: math.unit(5 + 2 / 12, "feet"),
  17325. weight: math.unit(120, "lb"),
  17326. name: "Front",
  17327. image: {
  17328. source: "./media/characters/roxi/front.svg",
  17329. extra: 2028 / 1907,
  17330. bottom: 0.01
  17331. }
  17332. },
  17333. frontAlt: {
  17334. height: math.unit(5 + 2 / 12, "feet"),
  17335. weight: math.unit(120, "lb"),
  17336. name: "Front (Alt)",
  17337. image: {
  17338. source: "./media/characters/roxi/front-alt.svg",
  17339. extra: 1828 / 1798,
  17340. bottom: 0.01
  17341. }
  17342. },
  17343. sitting: {
  17344. height: math.unit(2.8, "feet"),
  17345. weight: math.unit(120, "lb"),
  17346. name: "Sitting",
  17347. image: {
  17348. source: "./media/characters/roxi/sitting.svg",
  17349. extra: 2660 / 2462,
  17350. bottom: 0.1
  17351. }
  17352. },
  17353. },
  17354. [
  17355. {
  17356. name: "Normal",
  17357. height: math.unit(5 + 2 / 12, "feet"),
  17358. default: true
  17359. },
  17360. ]
  17361. ))
  17362. characterMakers.push(() => makeCharacter(
  17363. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17364. {
  17365. side: {
  17366. height: math.unit(55, "feet"),
  17367. weight: math.unit(153, "tons"),
  17368. name: "Side",
  17369. image: {
  17370. source: "./media/characters/shadow/side.svg",
  17371. extra: 701 / 628,
  17372. bottom: 0.02
  17373. }
  17374. },
  17375. flying: {
  17376. height: math.unit(145, "feet"),
  17377. weight: math.unit(153, "tons"),
  17378. name: "Flying",
  17379. image: {
  17380. source: "./media/characters/shadow/flying.svg"
  17381. }
  17382. },
  17383. },
  17384. [
  17385. {
  17386. name: "Normal",
  17387. height: math.unit(55, "feet"),
  17388. default: true
  17389. },
  17390. ]
  17391. ))
  17392. characterMakers.push(() => makeCharacter(
  17393. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17394. {
  17395. front: {
  17396. height: math.unit(6, "feet"),
  17397. weight: math.unit(200, "lb"),
  17398. name: "Front",
  17399. image: {
  17400. source: "./media/characters/marcie/front.svg",
  17401. extra: 960 / 876,
  17402. bottom: 58 / 1017.87
  17403. }
  17404. },
  17405. },
  17406. [
  17407. {
  17408. name: "Macro",
  17409. height: math.unit(1, "mile"),
  17410. default: true
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17416. {
  17417. front: {
  17418. height: math.unit(7, "feet"),
  17419. weight: math.unit(200, "lb"),
  17420. name: "Front",
  17421. image: {
  17422. source: "./media/characters/kachina/front.svg",
  17423. extra: 1290.68 / 1119,
  17424. bottom: 36.5 / 1327.18
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(7, "feet"),
  17432. default: true
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17438. {
  17439. looking: {
  17440. height: math.unit(2, "meters"),
  17441. weight: math.unit(300, "kg"),
  17442. name: "Looking",
  17443. image: {
  17444. source: "./media/characters/kash/looking.svg",
  17445. extra: 474 / 344,
  17446. bottom: 0.03
  17447. }
  17448. },
  17449. side: {
  17450. height: math.unit(2, "meters"),
  17451. weight: math.unit(300, "kg"),
  17452. name: "Side",
  17453. image: {
  17454. source: "./media/characters/kash/side.svg",
  17455. extra: 302 / 251,
  17456. bottom: 0.03
  17457. }
  17458. },
  17459. front: {
  17460. height: math.unit(2, "meters"),
  17461. weight: math.unit(300, "kg"),
  17462. name: "Front",
  17463. image: {
  17464. source: "./media/characters/kash/front.svg",
  17465. extra: 495 / 360,
  17466. bottom: 0.015
  17467. }
  17468. },
  17469. },
  17470. [
  17471. {
  17472. name: "Normal",
  17473. height: math.unit(2, "meters"),
  17474. default: true
  17475. },
  17476. {
  17477. name: "Big",
  17478. height: math.unit(3, "meters")
  17479. },
  17480. {
  17481. name: "Large",
  17482. height: math.unit(5, "meters")
  17483. },
  17484. ]
  17485. ))
  17486. characterMakers.push(() => makeCharacter(
  17487. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17488. {
  17489. feeding: {
  17490. height: math.unit(6.7, "feet"),
  17491. weight: math.unit(350, "lb"),
  17492. name: "Feeding",
  17493. image: {
  17494. source: "./media/characters/lalim/feeding.svg",
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Normal",
  17501. height: math.unit(6.7, "feet"),
  17502. default: true
  17503. },
  17504. ]
  17505. ))
  17506. characterMakers.push(() => makeCharacter(
  17507. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17508. {
  17509. front: {
  17510. height: math.unit(9.5, "feet"),
  17511. weight: math.unit(600, "lb"),
  17512. name: "Front",
  17513. image: {
  17514. source: "./media/characters/de'vout/front.svg",
  17515. extra: 1443 / 1328,
  17516. bottom: 0.025
  17517. }
  17518. },
  17519. back: {
  17520. height: math.unit(9.5, "feet"),
  17521. weight: math.unit(600, "lb"),
  17522. name: "Back",
  17523. image: {
  17524. source: "./media/characters/de'vout/back.svg",
  17525. extra: 1443 / 1328
  17526. }
  17527. },
  17528. frontDressed: {
  17529. height: math.unit(9.5, "feet"),
  17530. weight: math.unit(600, "lb"),
  17531. name: "Front (Dressed",
  17532. image: {
  17533. source: "./media/characters/de'vout/front-dressed.svg",
  17534. extra: 1443 / 1328,
  17535. bottom: 0.025
  17536. }
  17537. },
  17538. backDressed: {
  17539. height: math.unit(9.5, "feet"),
  17540. weight: math.unit(600, "lb"),
  17541. name: "Back (Dressed",
  17542. image: {
  17543. source: "./media/characters/de'vout/back-dressed.svg",
  17544. extra: 1443 / 1328
  17545. }
  17546. },
  17547. },
  17548. [
  17549. {
  17550. name: "Normal",
  17551. height: math.unit(9.5, "feet"),
  17552. default: true
  17553. },
  17554. ]
  17555. ))
  17556. characterMakers.push(() => makeCharacter(
  17557. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17558. {
  17559. front: {
  17560. height: math.unit(8, "feet"),
  17561. weight: math.unit(225, "lb"),
  17562. name: "Front",
  17563. image: {
  17564. source: "./media/characters/talana/front.svg",
  17565. extra: 1410 / 1300,
  17566. bottom: 0.015
  17567. }
  17568. },
  17569. frontDressed: {
  17570. height: math.unit(8, "feet"),
  17571. weight: math.unit(225, "lb"),
  17572. name: "Front (Dressed",
  17573. image: {
  17574. source: "./media/characters/talana/front-dressed.svg",
  17575. extra: 1410 / 1300,
  17576. bottom: 0.015
  17577. }
  17578. },
  17579. },
  17580. [
  17581. {
  17582. name: "Normal",
  17583. height: math.unit(8, "feet"),
  17584. default: true
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17590. {
  17591. side: {
  17592. height: math.unit(7.2, "feet"),
  17593. weight: math.unit(150, "lb"),
  17594. name: "Side",
  17595. image: {
  17596. source: "./media/characters/xeauvok/side.svg",
  17597. extra: 1975 / 1523,
  17598. bottom: 0.07
  17599. }
  17600. },
  17601. },
  17602. [
  17603. {
  17604. name: "Normal",
  17605. height: math.unit(7.2, "feet"),
  17606. default: true
  17607. },
  17608. ]
  17609. ))
  17610. characterMakers.push(() => makeCharacter(
  17611. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17612. {
  17613. side: {
  17614. height: math.unit(10, "feet"),
  17615. weight: math.unit(900, "kg"),
  17616. name: "Side",
  17617. image: {
  17618. source: "./media/characters/zara/side.svg",
  17619. extra: 504 / 498
  17620. }
  17621. },
  17622. },
  17623. [
  17624. {
  17625. name: "Normal",
  17626. height: math.unit(10, "feet"),
  17627. default: true
  17628. },
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17633. {
  17634. side: {
  17635. height: math.unit(6, "feet"),
  17636. weight: math.unit(150, "lb"),
  17637. name: "Side",
  17638. image: {
  17639. source: "./media/characters/richard-dragon/side.svg",
  17640. extra: 845 / 340,
  17641. bottom: 0.017
  17642. }
  17643. },
  17644. maw: {
  17645. height: math.unit(2.97, "feet"),
  17646. name: "Maw",
  17647. image: {
  17648. source: "./media/characters/richard-dragon/maw.svg"
  17649. }
  17650. },
  17651. },
  17652. [
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17657. {
  17658. front: {
  17659. height: math.unit(4, "feet"),
  17660. weight: math.unit(100, "lb"),
  17661. name: "Front",
  17662. image: {
  17663. source: "./media/characters/richard-smeargle/front.svg",
  17664. extra: 2952 / 2820,
  17665. bottom: 0.028
  17666. }
  17667. },
  17668. },
  17669. [
  17670. {
  17671. name: "Normal",
  17672. height: math.unit(4, "feet"),
  17673. default: true
  17674. },
  17675. {
  17676. name: "Dynamax",
  17677. height: math.unit(20, "meters")
  17678. },
  17679. ]
  17680. ))
  17681. characterMakers.push(() => makeCharacter(
  17682. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17683. {
  17684. front: {
  17685. height: math.unit(6, "feet"),
  17686. weight: math.unit(110, "lb"),
  17687. name: "Front",
  17688. image: {
  17689. source: "./media/characters/klay/front.svg",
  17690. extra: 962 / 883,
  17691. bottom: 0.04
  17692. }
  17693. },
  17694. back: {
  17695. height: math.unit(6, "feet"),
  17696. weight: math.unit(110, "lb"),
  17697. name: "Back",
  17698. image: {
  17699. source: "./media/characters/klay/back.svg",
  17700. extra: 962 / 883
  17701. }
  17702. },
  17703. beans: {
  17704. height: math.unit(1.15, "feet"),
  17705. name: "Beans",
  17706. image: {
  17707. source: "./media/characters/klay/beans.svg"
  17708. }
  17709. },
  17710. },
  17711. [
  17712. {
  17713. name: "Micro",
  17714. height: math.unit(6, "inches")
  17715. },
  17716. {
  17717. name: "Mini",
  17718. height: math.unit(3, "feet")
  17719. },
  17720. {
  17721. name: "Normal",
  17722. height: math.unit(6, "feet"),
  17723. default: true
  17724. },
  17725. {
  17726. name: "Big",
  17727. height: math.unit(25, "feet")
  17728. },
  17729. {
  17730. name: "Macro",
  17731. height: math.unit(100, "feet")
  17732. },
  17733. {
  17734. name: "Megamacro",
  17735. height: math.unit(400, "feet")
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17741. {
  17742. front: {
  17743. height: math.unit(6, "feet"),
  17744. weight: math.unit(160, "lb"),
  17745. name: "Front",
  17746. image: {
  17747. source: "./media/characters/marcus/front.svg",
  17748. extra: 734 / 676,
  17749. bottom: 0.03
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Little",
  17756. height: math.unit(6, "feet")
  17757. },
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(110, "feet"),
  17761. default: true
  17762. },
  17763. {
  17764. name: "Macro",
  17765. height: math.unit(250, "feet")
  17766. },
  17767. {
  17768. name: "Megamacro",
  17769. height: math.unit(1000, "feet")
  17770. },
  17771. ]
  17772. ))
  17773. characterMakers.push(() => makeCharacter(
  17774. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17775. {
  17776. front: {
  17777. height: math.unit(7, "feet"),
  17778. weight: math.unit(275, "lb"),
  17779. name: "Front",
  17780. image: {
  17781. source: "./media/characters/claude-delroute/front.svg",
  17782. extra: 230 / 214,
  17783. bottom: 0.007
  17784. }
  17785. },
  17786. side: {
  17787. height: math.unit(7, "feet"),
  17788. weight: math.unit(275, "lb"),
  17789. name: "Side",
  17790. image: {
  17791. source: "./media/characters/claude-delroute/side.svg",
  17792. extra: 222 / 214,
  17793. bottom: 0.01
  17794. }
  17795. },
  17796. back: {
  17797. height: math.unit(7, "feet"),
  17798. weight: math.unit(275, "lb"),
  17799. name: "Back",
  17800. image: {
  17801. source: "./media/characters/claude-delroute/back.svg",
  17802. extra: 230 / 214,
  17803. bottom: 0.015
  17804. }
  17805. },
  17806. maw: {
  17807. height: math.unit(0.6407, "meters"),
  17808. name: "Maw",
  17809. image: {
  17810. source: "./media/characters/claude-delroute/maw.svg"
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Normal",
  17817. height: math.unit(7, "feet"),
  17818. default: true
  17819. },
  17820. {
  17821. name: "Lorge",
  17822. height: math.unit(20, "feet")
  17823. },
  17824. ]
  17825. ))
  17826. characterMakers.push(() => makeCharacter(
  17827. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17828. {
  17829. front: {
  17830. height: math.unit(8 + 4 / 12, "feet"),
  17831. weight: math.unit(600, "lb"),
  17832. name: "Front",
  17833. image: {
  17834. source: "./media/characters/dragonien/front.svg",
  17835. extra: 100 / 94,
  17836. bottom: 3.3 / 103.3445
  17837. }
  17838. },
  17839. back: {
  17840. height: math.unit(8 + 4 / 12, "feet"),
  17841. weight: math.unit(600, "lb"),
  17842. name: "Back",
  17843. image: {
  17844. source: "./media/characters/dragonien/back.svg",
  17845. extra: 776 / 746,
  17846. bottom: 6.4 / 782.0616
  17847. }
  17848. },
  17849. foot: {
  17850. height: math.unit(1.54, "feet"),
  17851. name: "Foot",
  17852. image: {
  17853. source: "./media/characters/dragonien/foot.svg",
  17854. }
  17855. },
  17856. },
  17857. [
  17858. {
  17859. name: "Normal",
  17860. height: math.unit(8 + 4 / 12, "feet"),
  17861. default: true
  17862. },
  17863. {
  17864. name: "Macro",
  17865. height: math.unit(200, "feet")
  17866. },
  17867. {
  17868. name: "Megamacro",
  17869. height: math.unit(1, "mile")
  17870. },
  17871. {
  17872. name: "Gigamacro",
  17873. height: math.unit(1000, "miles")
  17874. },
  17875. ]
  17876. ))
  17877. characterMakers.push(() => makeCharacter(
  17878. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17879. {
  17880. front: {
  17881. height: math.unit(5 + 2 / 12, "feet"),
  17882. weight: math.unit(110, "lb"),
  17883. name: "Front",
  17884. image: {
  17885. source: "./media/characters/desta/front.svg",
  17886. extra: 767 / 726,
  17887. bottom: 11.7 / 779
  17888. }
  17889. },
  17890. back: {
  17891. height: math.unit(5 + 2 / 12, "feet"),
  17892. weight: math.unit(110, "lb"),
  17893. name: "Back",
  17894. image: {
  17895. source: "./media/characters/desta/back.svg",
  17896. extra: 777 / 728,
  17897. bottom: 6 / 784
  17898. }
  17899. },
  17900. frontAlt: {
  17901. height: math.unit(5 + 2 / 12, "feet"),
  17902. weight: math.unit(110, "lb"),
  17903. name: "Front",
  17904. image: {
  17905. source: "./media/characters/desta/front-alt.svg",
  17906. extra: 1482 / 1417
  17907. }
  17908. },
  17909. side: {
  17910. height: math.unit(5 + 2 / 12, "feet"),
  17911. weight: math.unit(110, "lb"),
  17912. name: "Side",
  17913. image: {
  17914. source: "./media/characters/desta/side.svg",
  17915. extra: 2579 / 2491,
  17916. bottom: 0.053
  17917. }
  17918. },
  17919. },
  17920. [
  17921. {
  17922. name: "Micro",
  17923. height: math.unit(6, "inches")
  17924. },
  17925. {
  17926. name: "Normal",
  17927. height: math.unit(5 + 2 / 12, "feet"),
  17928. default: true
  17929. },
  17930. {
  17931. name: "Macro",
  17932. height: math.unit(62, "feet")
  17933. },
  17934. {
  17935. name: "Megamacro",
  17936. height: math.unit(1800, "feet")
  17937. },
  17938. ]
  17939. ))
  17940. characterMakers.push(() => makeCharacter(
  17941. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17942. {
  17943. front: {
  17944. height: math.unit(10, "feet"),
  17945. weight: math.unit(700, "lb"),
  17946. name: "Front",
  17947. image: {
  17948. source: "./media/characters/storm-alystar/front.svg",
  17949. extra: 2112 / 1898,
  17950. bottom: 0.034
  17951. }
  17952. },
  17953. },
  17954. [
  17955. {
  17956. name: "Micro",
  17957. height: math.unit(3.5, "inches")
  17958. },
  17959. {
  17960. name: "Normal",
  17961. height: math.unit(10, "feet"),
  17962. default: true
  17963. },
  17964. {
  17965. name: "Macro",
  17966. height: math.unit(400, "feet")
  17967. },
  17968. {
  17969. name: "Deific",
  17970. height: math.unit(60, "miles")
  17971. },
  17972. ]
  17973. ))
  17974. characterMakers.push(() => makeCharacter(
  17975. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17976. {
  17977. front: {
  17978. height: math.unit(2.35, "meters"),
  17979. weight: math.unit(119, "kg"),
  17980. name: "Front",
  17981. image: {
  17982. source: "./media/characters/ilia/front.svg",
  17983. extra: 1285 / 1255,
  17984. bottom: 0.06
  17985. }
  17986. },
  17987. },
  17988. [
  17989. {
  17990. name: "Normal",
  17991. height: math.unit(2.35, "meters")
  17992. },
  17993. {
  17994. name: "Macro",
  17995. height: math.unit(140, "meters"),
  17996. default: true
  17997. },
  17998. {
  17999. name: "Megamacro",
  18000. height: math.unit(100, "miles")
  18001. },
  18002. ]
  18003. ))
  18004. characterMakers.push(() => makeCharacter(
  18005. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18006. {
  18007. front: {
  18008. height: math.unit(6 + 5 / 12, "feet"),
  18009. weight: math.unit(190, "lb"),
  18010. name: "Front",
  18011. image: {
  18012. source: "./media/characters/kingdead/front.svg",
  18013. extra: 1228 / 1177
  18014. }
  18015. },
  18016. },
  18017. [
  18018. {
  18019. name: "Micro",
  18020. height: math.unit(7, "inches")
  18021. },
  18022. {
  18023. name: "Normal",
  18024. height: math.unit(6 + 5 / 12, "feet")
  18025. },
  18026. {
  18027. name: "Macro",
  18028. height: math.unit(150, "feet"),
  18029. default: true
  18030. },
  18031. {
  18032. name: "Megamacro",
  18033. height: math.unit(200, "miles")
  18034. },
  18035. ]
  18036. ))
  18037. characterMakers.push(() => makeCharacter(
  18038. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18039. {
  18040. front: {
  18041. height: math.unit(8, "feet"),
  18042. weight: math.unit(600, "lb"),
  18043. name: "Front",
  18044. image: {
  18045. source: "./media/characters/kyrehx/front.svg",
  18046. extra: 1195 / 1095,
  18047. bottom: 0.034
  18048. }
  18049. },
  18050. },
  18051. [
  18052. {
  18053. name: "Micro",
  18054. height: math.unit(2, "inches")
  18055. },
  18056. {
  18057. name: "Normal",
  18058. height: math.unit(8, "feet"),
  18059. default: true
  18060. },
  18061. {
  18062. name: "Macro",
  18063. height: math.unit(255, "feet")
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18069. {
  18070. front: {
  18071. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18072. weight: math.unit(184, "lb"),
  18073. name: "Front",
  18074. image: {
  18075. source: "./media/characters/xang/front.svg",
  18076. extra: 845 / 755
  18077. }
  18078. },
  18079. },
  18080. [
  18081. {
  18082. name: "Normal",
  18083. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18084. default: true
  18085. },
  18086. {
  18087. name: "Macro",
  18088. height: math.unit(0.935 * 146, "feet")
  18089. },
  18090. {
  18091. name: "Megamacro",
  18092. height: math.unit(0.935 * 3, "miles")
  18093. },
  18094. ]
  18095. ))
  18096. characterMakers.push(() => makeCharacter(
  18097. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18098. {
  18099. frontDressed: {
  18100. height: math.unit(5 + 7 / 12, "feet"),
  18101. weight: math.unit(140, "lb"),
  18102. name: "Front (Dressed)",
  18103. image: {
  18104. source: "./media/characters/doc-weardno/front-dressed.svg",
  18105. extra: 263 / 234
  18106. }
  18107. },
  18108. backDressed: {
  18109. height: math.unit(5 + 7 / 12, "feet"),
  18110. weight: math.unit(140, "lb"),
  18111. name: "Back (Dressed)",
  18112. image: {
  18113. source: "./media/characters/doc-weardno/back-dressed.svg",
  18114. extra: 266 / 238
  18115. }
  18116. },
  18117. front: {
  18118. height: math.unit(5 + 7 / 12, "feet"),
  18119. weight: math.unit(140, "lb"),
  18120. name: "Front",
  18121. image: {
  18122. source: "./media/characters/doc-weardno/front.svg",
  18123. extra: 254 / 233
  18124. }
  18125. },
  18126. },
  18127. [
  18128. {
  18129. name: "Micro",
  18130. height: math.unit(3, "inches")
  18131. },
  18132. {
  18133. name: "Normal",
  18134. height: math.unit(5 + 7 / 12, "feet"),
  18135. default: true
  18136. },
  18137. {
  18138. name: "Macro",
  18139. height: math.unit(25, "feet")
  18140. },
  18141. {
  18142. name: "Megamacro",
  18143. height: math.unit(2, "miles")
  18144. },
  18145. ]
  18146. ))
  18147. characterMakers.push(() => makeCharacter(
  18148. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18149. {
  18150. front: {
  18151. height: math.unit(6 + 2 / 12, "feet"),
  18152. weight: math.unit(153, "lb"),
  18153. name: "Front",
  18154. image: {
  18155. source: "./media/characters/seth-whilst/front.svg",
  18156. bottom: 0.07
  18157. }
  18158. },
  18159. },
  18160. [
  18161. {
  18162. name: "Micro",
  18163. height: math.unit(5, "inches")
  18164. },
  18165. {
  18166. name: "Normal",
  18167. height: math.unit(6 + 2 / 12, "feet"),
  18168. default: true
  18169. },
  18170. ]
  18171. ))
  18172. characterMakers.push(() => makeCharacter(
  18173. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18174. {
  18175. front: {
  18176. height: math.unit(3, "inches"),
  18177. weight: math.unit(8, "grams"),
  18178. name: "Front",
  18179. image: {
  18180. source: "./media/characters/pocket-jabari/front.svg",
  18181. extra: 1024 / 974,
  18182. bottom: 0.039
  18183. }
  18184. },
  18185. },
  18186. [
  18187. {
  18188. name: "Minimicro",
  18189. height: math.unit(8, "mm")
  18190. },
  18191. {
  18192. name: "Micro",
  18193. height: math.unit(3, "inches"),
  18194. default: true
  18195. },
  18196. {
  18197. name: "Normal",
  18198. height: math.unit(3, "feet")
  18199. },
  18200. ]
  18201. ))
  18202. characterMakers.push(() => makeCharacter(
  18203. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18204. {
  18205. front: {
  18206. height: math.unit(15, "feet"),
  18207. weight: math.unit(3280, "lb"),
  18208. name: "Front",
  18209. image: {
  18210. source: "./media/characters/sapphy/front.svg",
  18211. extra: 671 / 577,
  18212. bottom: 0.085
  18213. }
  18214. },
  18215. back: {
  18216. height: math.unit(15, "feet"),
  18217. weight: math.unit(3280, "lb"),
  18218. name: "Back",
  18219. image: {
  18220. source: "./media/characters/sapphy/back.svg",
  18221. extra: 631 / 607,
  18222. bottom: 0.045
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(15, "feet")
  18230. },
  18231. {
  18232. name: "Casual Macro",
  18233. height: math.unit(120, "feet")
  18234. },
  18235. {
  18236. name: "Macro",
  18237. height: math.unit(2150, "feet"),
  18238. default: true
  18239. },
  18240. {
  18241. name: "Megamacro",
  18242. height: math.unit(8, "miles")
  18243. },
  18244. {
  18245. name: "Galaxy Mom",
  18246. height: math.unit(6, "megalightyears")
  18247. },
  18248. ]
  18249. ))
  18250. characterMakers.push(() => makeCharacter(
  18251. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18252. {
  18253. front: {
  18254. height: math.unit(6, "feet"),
  18255. weight: math.unit(170, "lb"),
  18256. name: "Front",
  18257. image: {
  18258. source: "./media/characters/kiro/front.svg",
  18259. extra: 1064 / 1012,
  18260. bottom: 0.052
  18261. }
  18262. },
  18263. },
  18264. [
  18265. {
  18266. name: "Micro",
  18267. height: math.unit(6, "inches")
  18268. },
  18269. {
  18270. name: "Normal",
  18271. height: math.unit(6, "feet"),
  18272. default: true
  18273. },
  18274. {
  18275. name: "Macro",
  18276. height: math.unit(72, "feet")
  18277. },
  18278. ]
  18279. ))
  18280. characterMakers.push(() => makeCharacter(
  18281. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18282. {
  18283. front: {
  18284. height: math.unit(5 + 9 / 12, "feet"),
  18285. weight: math.unit(175, "lb"),
  18286. name: "Front",
  18287. image: {
  18288. source: "./media/characters/irishfox/front.svg",
  18289. extra: 1912 / 1680,
  18290. bottom: 0.02
  18291. }
  18292. },
  18293. },
  18294. [
  18295. {
  18296. name: "Nano",
  18297. height: math.unit(1, "mm")
  18298. },
  18299. {
  18300. name: "Micro",
  18301. height: math.unit(2, "inches")
  18302. },
  18303. {
  18304. name: "Normal",
  18305. height: math.unit(5 + 9 / 12, "feet"),
  18306. default: true
  18307. },
  18308. {
  18309. name: "Macro",
  18310. height: math.unit(45, "feet")
  18311. },
  18312. ]
  18313. ))
  18314. characterMakers.push(() => makeCharacter(
  18315. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18316. {
  18317. front: {
  18318. height: math.unit(6 + 1 / 12, "feet"),
  18319. weight: math.unit(75, "lb"),
  18320. name: "Front",
  18321. image: {
  18322. source: "./media/characters/aronai-sieyes/front.svg",
  18323. extra: 1556 / 1480,
  18324. bottom: 0.015
  18325. }
  18326. },
  18327. side: {
  18328. height: math.unit(6 + 1 / 12, "feet"),
  18329. weight: math.unit(75, "lb"),
  18330. name: "Side",
  18331. image: {
  18332. source: "./media/characters/aronai-sieyes/side.svg",
  18333. extra: 1433 / 1390,
  18334. bottom: 0.0393
  18335. }
  18336. },
  18337. back: {
  18338. height: math.unit(6 + 1 / 12, "feet"),
  18339. weight: math.unit(75, "lb"),
  18340. name: "Back",
  18341. image: {
  18342. source: "./media/characters/aronai-sieyes/back.svg",
  18343. extra: 1544 / 1494,
  18344. bottom: 0.02
  18345. }
  18346. },
  18347. frontClothed: {
  18348. height: math.unit(6 + 1 / 12, "feet"),
  18349. weight: math.unit(75, "lb"),
  18350. name: "Front (Clothed)",
  18351. image: {
  18352. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18353. extra: 1582 / 1527
  18354. }
  18355. },
  18356. feral: {
  18357. height: math.unit(18, "feet"),
  18358. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18359. name: "Feral",
  18360. image: {
  18361. source: "./media/characters/aronai-sieyes/feral.svg",
  18362. extra: 1530 / 1240,
  18363. bottom: 0.035
  18364. }
  18365. },
  18366. },
  18367. [
  18368. {
  18369. name: "Micro",
  18370. height: math.unit(2, "inches")
  18371. },
  18372. {
  18373. name: "Normal",
  18374. height: math.unit(6 + 1 / 12, "feet"),
  18375. default: true
  18376. }
  18377. ]
  18378. ))
  18379. characterMakers.push(() => makeCharacter(
  18380. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18381. {
  18382. front: {
  18383. height: math.unit(12, "feet"),
  18384. weight: math.unit(410, "kg"),
  18385. name: "Front",
  18386. image: {
  18387. source: "./media/characters/xuna/front.svg",
  18388. extra: 2184 / 1980
  18389. }
  18390. },
  18391. side: {
  18392. height: math.unit(12, "feet"),
  18393. weight: math.unit(410, "kg"),
  18394. name: "Side",
  18395. image: {
  18396. source: "./media/characters/xuna/side.svg",
  18397. extra: 2184 / 1980
  18398. }
  18399. },
  18400. back: {
  18401. height: math.unit(12, "feet"),
  18402. weight: math.unit(410, "kg"),
  18403. name: "Back",
  18404. image: {
  18405. source: "./media/characters/xuna/back.svg",
  18406. extra: 2184 / 1980
  18407. }
  18408. },
  18409. },
  18410. [
  18411. {
  18412. name: "Nano glow",
  18413. height: math.unit(10, "nm")
  18414. },
  18415. {
  18416. name: "Micro floof",
  18417. height: math.unit(0.3, "m")
  18418. },
  18419. {
  18420. name: "Huggable softy boi",
  18421. height: math.unit(3.6576, "m"),
  18422. default: true
  18423. },
  18424. {
  18425. name: "Admirable floof",
  18426. height: math.unit(80, "meters")
  18427. },
  18428. {
  18429. name: "Gentle macro",
  18430. height: math.unit(300, "meters")
  18431. },
  18432. {
  18433. name: "Very careful floof",
  18434. height: math.unit(3200, "meters")
  18435. },
  18436. {
  18437. name: "The mega floof",
  18438. height: math.unit(36000, "meters")
  18439. },
  18440. {
  18441. name: "Giga-fur-Wicker",
  18442. height: math.unit(4800000, "meters")
  18443. },
  18444. {
  18445. name: "Licky world",
  18446. height: math.unit(20000000, "meters")
  18447. },
  18448. {
  18449. name: "Floofy cyan sun",
  18450. height: math.unit(1500000000, "meters")
  18451. },
  18452. {
  18453. name: "Milky Wicker",
  18454. height: math.unit(1000000000000000000000, "meters")
  18455. },
  18456. {
  18457. name: "The observing Wicker",
  18458. height: math.unit(999999999999999999999999999, "meters")
  18459. },
  18460. ]
  18461. ))
  18462. characterMakers.push(() => makeCharacter(
  18463. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18464. {
  18465. front: {
  18466. height: math.unit(5 + 9 / 12, "feet"),
  18467. weight: math.unit(150, "lb"),
  18468. name: "Front",
  18469. image: {
  18470. source: "./media/characters/arokha-sieyes/front.svg",
  18471. extra: 1425 / 1284,
  18472. bottom: 0.05
  18473. }
  18474. },
  18475. },
  18476. [
  18477. {
  18478. name: "Normal",
  18479. height: math.unit(5 + 9 / 12, "feet")
  18480. },
  18481. {
  18482. name: "Macro",
  18483. height: math.unit(30, "meters"),
  18484. default: true
  18485. },
  18486. ]
  18487. ))
  18488. characterMakers.push(() => makeCharacter(
  18489. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18490. {
  18491. front: {
  18492. height: math.unit(6, "feet"),
  18493. weight: math.unit(180, "lb"),
  18494. name: "Front",
  18495. image: {
  18496. source: "./media/characters/arokh-sieyes/front.svg",
  18497. extra: 1830 / 1769,
  18498. bottom: 0.01
  18499. }
  18500. },
  18501. },
  18502. [
  18503. {
  18504. name: "Normal",
  18505. height: math.unit(6, "feet")
  18506. },
  18507. {
  18508. name: "Macro",
  18509. height: math.unit(30, "meters"),
  18510. default: true
  18511. },
  18512. ]
  18513. ))
  18514. characterMakers.push(() => makeCharacter(
  18515. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18516. {
  18517. side: {
  18518. height: math.unit(13 + 1 / 12, "feet"),
  18519. weight: math.unit(8.5, "tonnes"),
  18520. name: "Side",
  18521. image: {
  18522. source: "./media/characters/goldeneye/side.svg",
  18523. extra: 1182 / 778,
  18524. bottom: 0.067
  18525. }
  18526. },
  18527. paw: {
  18528. height: math.unit(3.4, "feet"),
  18529. name: "Paw",
  18530. image: {
  18531. source: "./media/characters/goldeneye/paw.svg"
  18532. }
  18533. },
  18534. },
  18535. [
  18536. {
  18537. name: "Normal",
  18538. height: math.unit(13 + 1 / 12, "feet"),
  18539. default: true
  18540. },
  18541. ]
  18542. ))
  18543. characterMakers.push(() => makeCharacter(
  18544. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18545. {
  18546. front: {
  18547. height: math.unit(6 + 1 / 12, "feet"),
  18548. weight: math.unit(210, "lb"),
  18549. name: "Front",
  18550. image: {
  18551. source: "./media/characters/leonardo-lycheborne/front.svg",
  18552. extra: 390 / 365,
  18553. bottom: 0.032
  18554. }
  18555. },
  18556. side: {
  18557. height: math.unit(6 + 1 / 12, "feet"),
  18558. weight: math.unit(210, "lb"),
  18559. name: "Side",
  18560. image: {
  18561. source: "./media/characters/leonardo-lycheborne/side.svg",
  18562. extra: 390 / 365,
  18563. bottom: 0.005
  18564. }
  18565. },
  18566. back: {
  18567. height: math.unit(6 + 1 / 12, "feet"),
  18568. weight: math.unit(210, "lb"),
  18569. name: "Back",
  18570. image: {
  18571. source: "./media/characters/leonardo-lycheborne/back.svg",
  18572. extra: 392 / 366,
  18573. bottom: 0.01
  18574. }
  18575. },
  18576. hand: {
  18577. height: math.unit(1.08, "feet"),
  18578. name: "Hand",
  18579. image: {
  18580. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18581. }
  18582. },
  18583. foot: {
  18584. height: math.unit(1.32, "feet"),
  18585. name: "Foot",
  18586. image: {
  18587. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18588. }
  18589. },
  18590. were: {
  18591. height: math.unit(20, "feet"),
  18592. weight: math.unit(7800, "lb"),
  18593. name: "Were",
  18594. image: {
  18595. source: "./media/characters/leonardo-lycheborne/were.svg",
  18596. extra: 308 / 294,
  18597. bottom: 0.048
  18598. }
  18599. },
  18600. feral: {
  18601. height: math.unit(7.5, "feet"),
  18602. weight: math.unit(600, "lb"),
  18603. name: "Feral",
  18604. image: {
  18605. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18606. extra: 210 / 186,
  18607. bottom: 0.108
  18608. }
  18609. },
  18610. taur: {
  18611. height: math.unit(11, "feet"),
  18612. weight: math.unit(3300, "lb"),
  18613. name: "Taur",
  18614. image: {
  18615. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18616. extra: 320 / 303,
  18617. bottom: 0.025
  18618. }
  18619. },
  18620. barghest: {
  18621. height: math.unit(11, "feet"),
  18622. weight: math.unit(1300, "lb"),
  18623. name: "Barghest",
  18624. image: {
  18625. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18626. extra: 323 / 302,
  18627. bottom: 0.027
  18628. }
  18629. },
  18630. dick: {
  18631. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18632. name: "Dick",
  18633. image: {
  18634. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18635. }
  18636. },
  18637. dickWere: {
  18638. height: math.unit((20) / 3.8, "feet"),
  18639. name: "Dick (Were)",
  18640. image: {
  18641. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18642. }
  18643. },
  18644. },
  18645. [
  18646. {
  18647. name: "Normal",
  18648. height: math.unit(6 + 1 / 12, "feet"),
  18649. default: true
  18650. },
  18651. ]
  18652. ))
  18653. characterMakers.push(() => makeCharacter(
  18654. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18655. {
  18656. front: {
  18657. height: math.unit(10, "feet"),
  18658. weight: math.unit(350, "lb"),
  18659. name: "Front",
  18660. image: {
  18661. source: "./media/characters/jet/front.svg",
  18662. extra: 2050 / 1980,
  18663. bottom: 0.013
  18664. }
  18665. },
  18666. back: {
  18667. height: math.unit(10, "feet"),
  18668. weight: math.unit(350, "lb"),
  18669. name: "Back",
  18670. image: {
  18671. source: "./media/characters/jet/back.svg",
  18672. extra: 2050 / 1980,
  18673. bottom: 0.013
  18674. }
  18675. },
  18676. },
  18677. [
  18678. {
  18679. name: "Micro",
  18680. height: math.unit(6, "inches")
  18681. },
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(10, "feet"),
  18685. default: true
  18686. },
  18687. {
  18688. name: "Macro",
  18689. height: math.unit(100, "feet")
  18690. },
  18691. ]
  18692. ))
  18693. characterMakers.push(() => makeCharacter(
  18694. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18695. {
  18696. front: {
  18697. height: math.unit(15, "feet"),
  18698. weight: math.unit(2800, "lb"),
  18699. name: "Front",
  18700. image: {
  18701. source: "./media/characters/tanarath/front.svg",
  18702. extra: 2392 / 2220,
  18703. bottom: 0.03
  18704. }
  18705. },
  18706. back: {
  18707. height: math.unit(15, "feet"),
  18708. weight: math.unit(2800, "lb"),
  18709. name: "Back",
  18710. image: {
  18711. source: "./media/characters/tanarath/back.svg",
  18712. extra: 2392 / 2220,
  18713. bottom: 0.03
  18714. }
  18715. },
  18716. },
  18717. [
  18718. {
  18719. name: "Normal",
  18720. height: math.unit(15, "feet"),
  18721. default: true
  18722. },
  18723. ]
  18724. ))
  18725. characterMakers.push(() => makeCharacter(
  18726. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18727. {
  18728. front: {
  18729. height: math.unit(7 + 1 / 12, "feet"),
  18730. weight: math.unit(175, "lb"),
  18731. name: "Front",
  18732. image: {
  18733. source: "./media/characters/patty-cattybatty/front.svg",
  18734. extra: 908 / 874,
  18735. bottom: 0.025
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Micro",
  18742. height: math.unit(1, "inch")
  18743. },
  18744. {
  18745. name: "Normal",
  18746. height: math.unit(7 + 1 / 12, "feet")
  18747. },
  18748. {
  18749. name: "Mini Macro",
  18750. height: math.unit(155, "feet")
  18751. },
  18752. {
  18753. name: "Macro",
  18754. height: math.unit(1077, "feet")
  18755. },
  18756. {
  18757. name: "Mega Macro",
  18758. height: math.unit(47650, "feet"),
  18759. default: true
  18760. },
  18761. {
  18762. name: "Giga Macro",
  18763. height: math.unit(440, "miles")
  18764. },
  18765. {
  18766. name: "Tera Macro",
  18767. height: math.unit(8700, "miles")
  18768. },
  18769. {
  18770. name: "Planetary Macro",
  18771. height: math.unit(32700, "miles")
  18772. },
  18773. {
  18774. name: "Solar Macro",
  18775. height: math.unit(550000, "miles")
  18776. },
  18777. {
  18778. name: "Celestial Macro",
  18779. height: math.unit(2.5, "AU")
  18780. },
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18785. {
  18786. front: {
  18787. height: math.unit(4 + 5 / 12, "feet"),
  18788. weight: math.unit(90, "lb"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/cappu/front.svg",
  18792. extra: 1247 / 1152,
  18793. bottom: 0.012
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(4 + 5 / 12, "feet"),
  18801. default: true
  18802. },
  18803. ]
  18804. ))
  18805. characterMakers.push(() => makeCharacter(
  18806. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18807. {
  18808. frontDressed: {
  18809. height: math.unit(70, "cm"),
  18810. weight: math.unit(6, "kg"),
  18811. name: "Front (Dressed)",
  18812. image: {
  18813. source: "./media/characters/sebi/front-dressed.svg",
  18814. extra: 713.5 / 686.5,
  18815. bottom: 0.003
  18816. }
  18817. },
  18818. front: {
  18819. height: math.unit(70, "cm"),
  18820. weight: math.unit(5, "kg"),
  18821. name: "Front",
  18822. image: {
  18823. source: "./media/characters/sebi/front.svg",
  18824. extra: 713.5 / 686.5,
  18825. bottom: 0.003
  18826. }
  18827. }
  18828. },
  18829. [
  18830. {
  18831. name: "Normal",
  18832. height: math.unit(70, "cm"),
  18833. default: true
  18834. },
  18835. {
  18836. name: "Macro",
  18837. height: math.unit(8, "meters")
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18843. {
  18844. front: {
  18845. height: math.unit(6, "feet"),
  18846. weight: math.unit(150, "lb"),
  18847. name: "Front",
  18848. image: {
  18849. source: "./media/characters/typhek/front.svg",
  18850. extra: 1948 / 1929,
  18851. bottom: 0.025
  18852. }
  18853. },
  18854. side: {
  18855. height: math.unit(6, "feet"),
  18856. weight: math.unit(150, "lb"),
  18857. name: "Side",
  18858. image: {
  18859. source: "./media/characters/typhek/side.svg",
  18860. extra: 2034 / 2010,
  18861. bottom: 0.003
  18862. }
  18863. },
  18864. back: {
  18865. height: math.unit(6, "feet"),
  18866. weight: math.unit(150, "lb"),
  18867. name: "Back",
  18868. image: {
  18869. source: "./media/characters/typhek/back.svg",
  18870. extra: 2005 / 1978,
  18871. bottom: 0.004
  18872. }
  18873. },
  18874. palm: {
  18875. height: math.unit(1.2, "feet"),
  18876. name: "Palm",
  18877. image: {
  18878. source: "./media/characters/typhek/palm.svg"
  18879. }
  18880. },
  18881. fist: {
  18882. height: math.unit(1.1, "feet"),
  18883. name: "Fist",
  18884. image: {
  18885. source: "./media/characters/typhek/fist.svg"
  18886. }
  18887. },
  18888. foot: {
  18889. height: math.unit(1.57, "feet"),
  18890. name: "Foot",
  18891. image: {
  18892. source: "./media/characters/typhek/foot.svg"
  18893. }
  18894. },
  18895. sole: {
  18896. height: math.unit(2.05, "feet"),
  18897. name: "Sole",
  18898. image: {
  18899. source: "./media/characters/typhek/sole.svg"
  18900. }
  18901. },
  18902. },
  18903. [
  18904. {
  18905. name: "Macro",
  18906. height: math.unit(40, "stories"),
  18907. default: true
  18908. },
  18909. {
  18910. name: "Megamacro",
  18911. height: math.unit(1, "mile")
  18912. },
  18913. {
  18914. name: "Gigamacro",
  18915. height: math.unit(4000, "solarradii")
  18916. },
  18917. {
  18918. name: "Universal",
  18919. height: math.unit(1.1, "universes")
  18920. }
  18921. ]
  18922. ))
  18923. characterMakers.push(() => makeCharacter(
  18924. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18925. {
  18926. side: {
  18927. height: math.unit(5 + 7 / 12, "feet"),
  18928. weight: math.unit(150, "lb"),
  18929. name: "Side",
  18930. image: {
  18931. source: "./media/characters/kassy/side.svg",
  18932. extra: 1280 / 1225,
  18933. bottom: 0.002
  18934. }
  18935. },
  18936. front: {
  18937. height: math.unit(5 + 7 / 12, "feet"),
  18938. weight: math.unit(150, "lb"),
  18939. name: "Front",
  18940. image: {
  18941. source: "./media/characters/kassy/front.svg",
  18942. extra: 1280 / 1225,
  18943. bottom: 0.025
  18944. }
  18945. },
  18946. back: {
  18947. height: math.unit(5 + 7 / 12, "feet"),
  18948. weight: math.unit(150, "lb"),
  18949. name: "Back",
  18950. image: {
  18951. source: "./media/characters/kassy/back.svg",
  18952. extra: 1280 / 1225,
  18953. bottom: 0.002
  18954. }
  18955. },
  18956. foot: {
  18957. height: math.unit(1.266, "feet"),
  18958. name: "Foot",
  18959. image: {
  18960. source: "./media/characters/kassy/foot.svg"
  18961. }
  18962. },
  18963. },
  18964. [
  18965. {
  18966. name: "Normal",
  18967. height: math.unit(5 + 7 / 12, "feet")
  18968. },
  18969. {
  18970. name: "Macro",
  18971. height: math.unit(137, "feet"),
  18972. default: true
  18973. },
  18974. {
  18975. name: "Megamacro",
  18976. height: math.unit(1, "mile")
  18977. },
  18978. ]
  18979. ))
  18980. characterMakers.push(() => makeCharacter(
  18981. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18982. {
  18983. front: {
  18984. height: math.unit(6 + 1 / 12, "feet"),
  18985. weight: math.unit(200, "lb"),
  18986. name: "Front",
  18987. image: {
  18988. source: "./media/characters/neil/front.svg",
  18989. extra: 1326 / 1250,
  18990. bottom: 0.023
  18991. }
  18992. },
  18993. },
  18994. [
  18995. {
  18996. name: "Normal",
  18997. height: math.unit(6 + 1 / 12, "feet"),
  18998. default: true
  18999. },
  19000. {
  19001. name: "Macro",
  19002. height: math.unit(200, "feet")
  19003. },
  19004. ]
  19005. ))
  19006. characterMakers.push(() => makeCharacter(
  19007. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19008. {
  19009. front: {
  19010. height: math.unit(5 + 9 / 12, "feet"),
  19011. weight: math.unit(190, "lb"),
  19012. name: "Front",
  19013. image: {
  19014. source: "./media/characters/atticus/front.svg",
  19015. extra: 2934 / 2785,
  19016. bottom: 0.025
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Normal",
  19023. height: math.unit(5 + 9 / 12, "feet"),
  19024. default: true
  19025. },
  19026. {
  19027. name: "Macro",
  19028. height: math.unit(180, "feet")
  19029. },
  19030. ]
  19031. ))
  19032. characterMakers.push(() => makeCharacter(
  19033. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19034. {
  19035. side: {
  19036. height: math.unit(9, "feet"),
  19037. weight: math.unit(650, "lb"),
  19038. name: "Side",
  19039. image: {
  19040. source: "./media/characters/milo/side.svg",
  19041. extra: 2644 / 2310,
  19042. bottom: 0.032
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Normal",
  19049. height: math.unit(9, "feet"),
  19050. default: true
  19051. },
  19052. {
  19053. name: "Macro",
  19054. height: math.unit(300, "feet")
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19060. {
  19061. side: {
  19062. height: math.unit(8, "meters"),
  19063. weight: math.unit(90000, "kg"),
  19064. name: "Side",
  19065. image: {
  19066. source: "./media/characters/ijzer/side.svg",
  19067. extra: 2756 / 1600,
  19068. bottom: 0.01
  19069. }
  19070. },
  19071. },
  19072. [
  19073. {
  19074. name: "Small",
  19075. height: math.unit(3, "meters")
  19076. },
  19077. {
  19078. name: "Normal",
  19079. height: math.unit(8, "meters"),
  19080. default: true
  19081. },
  19082. {
  19083. name: "Normal+",
  19084. height: math.unit(10, "meters")
  19085. },
  19086. {
  19087. name: "Bigger",
  19088. height: math.unit(24, "meters")
  19089. },
  19090. {
  19091. name: "Huge",
  19092. height: math.unit(80, "meters")
  19093. },
  19094. ]
  19095. ))
  19096. characterMakers.push(() => makeCharacter(
  19097. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19098. {
  19099. front: {
  19100. height: math.unit(6 + 2 / 12, "feet"),
  19101. weight: math.unit(153, "lb"),
  19102. name: "Front",
  19103. image: {
  19104. source: "./media/characters/luca-cervicum/front.svg",
  19105. extra: 370 / 327,
  19106. bottom: 0.015
  19107. }
  19108. },
  19109. back: {
  19110. height: math.unit(6 + 2 / 12, "feet"),
  19111. weight: math.unit(153, "lb"),
  19112. name: "Back",
  19113. image: {
  19114. source: "./media/characters/luca-cervicum/back.svg",
  19115. extra: 367 / 333,
  19116. bottom: 0.005
  19117. }
  19118. },
  19119. frontGear: {
  19120. height: math.unit(6 + 2 / 12, "feet"),
  19121. weight: math.unit(173, "lb"),
  19122. name: "Front (Gear)",
  19123. image: {
  19124. source: "./media/characters/luca-cervicum/front-gear.svg",
  19125. extra: 377 / 333,
  19126. bottom: 0.006
  19127. }
  19128. },
  19129. },
  19130. [
  19131. {
  19132. name: "Normal",
  19133. height: math.unit(6 + 2 / 12, "feet"),
  19134. default: true
  19135. },
  19136. ]
  19137. ))
  19138. characterMakers.push(() => makeCharacter(
  19139. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19140. {
  19141. front: {
  19142. height: math.unit(6 + 1 / 12, "feet"),
  19143. weight: math.unit(304, "lb"),
  19144. name: "Front",
  19145. image: {
  19146. source: "./media/characters/oliver/front.svg",
  19147. extra: 157 / 143,
  19148. bottom: 0.08
  19149. }
  19150. },
  19151. },
  19152. [
  19153. {
  19154. name: "Normal",
  19155. height: math.unit(6 + 1 / 12, "feet"),
  19156. default: true
  19157. },
  19158. ]
  19159. ))
  19160. characterMakers.push(() => makeCharacter(
  19161. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19162. {
  19163. front: {
  19164. height: math.unit(5 + 7 / 12, "feet"),
  19165. weight: math.unit(140, "lb"),
  19166. name: "Front",
  19167. image: {
  19168. source: "./media/characters/shane/front.svg",
  19169. extra: 304 / 289,
  19170. bottom: 0.005
  19171. }
  19172. },
  19173. },
  19174. [
  19175. {
  19176. name: "Normal",
  19177. height: math.unit(5 + 7 / 12, "feet"),
  19178. default: true
  19179. },
  19180. ]
  19181. ))
  19182. characterMakers.push(() => makeCharacter(
  19183. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19184. {
  19185. front: {
  19186. height: math.unit(5 + 9 / 12, "feet"),
  19187. weight: math.unit(178, "lb"),
  19188. name: "Front",
  19189. image: {
  19190. source: "./media/characters/shin/front.svg",
  19191. extra: 159 / 151,
  19192. bottom: 0.015
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Normal",
  19199. height: math.unit(5 + 9 / 12, "feet"),
  19200. default: true
  19201. },
  19202. ]
  19203. ))
  19204. characterMakers.push(() => makeCharacter(
  19205. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19206. {
  19207. front: {
  19208. height: math.unit(5 + 10 / 12, "feet"),
  19209. weight: math.unit(168, "lb"),
  19210. name: "Front",
  19211. image: {
  19212. source: "./media/characters/xerxes/front.svg",
  19213. extra: 282 / 260,
  19214. bottom: 0.045
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(5 + 10 / 12, "feet"),
  19222. default: true
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19228. {
  19229. front: {
  19230. height: math.unit(6 + 7 / 12, "feet"),
  19231. weight: math.unit(208, "lb"),
  19232. name: "Front",
  19233. image: {
  19234. source: "./media/characters/chaska/front.svg",
  19235. extra: 332 / 319,
  19236. bottom: 0.015
  19237. }
  19238. },
  19239. },
  19240. [
  19241. {
  19242. name: "Normal",
  19243. height: math.unit(6 + 7 / 12, "feet"),
  19244. default: true
  19245. },
  19246. ]
  19247. ))
  19248. characterMakers.push(() => makeCharacter(
  19249. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19250. {
  19251. front: {
  19252. height: math.unit(5 + 8 / 12, "feet"),
  19253. weight: math.unit(208, "lb"),
  19254. name: "Front",
  19255. image: {
  19256. source: "./media/characters/enuk/front.svg",
  19257. extra: 437 / 406,
  19258. bottom: 0.02
  19259. }
  19260. },
  19261. },
  19262. [
  19263. {
  19264. name: "Normal",
  19265. height: math.unit(5 + 8 / 12, "feet"),
  19266. default: true
  19267. },
  19268. ]
  19269. ))
  19270. characterMakers.push(() => makeCharacter(
  19271. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19272. {
  19273. front: {
  19274. height: math.unit(5 + 10 / 12, "feet"),
  19275. weight: math.unit(252, "lb"),
  19276. name: "Front",
  19277. image: {
  19278. source: "./media/characters/bruun/front.svg",
  19279. extra: 197 / 187,
  19280. bottom: 0.012
  19281. }
  19282. },
  19283. },
  19284. [
  19285. {
  19286. name: "Normal",
  19287. height: math.unit(5 + 10 / 12, "feet"),
  19288. default: true
  19289. },
  19290. ]
  19291. ))
  19292. characterMakers.push(() => makeCharacter(
  19293. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19294. {
  19295. front: {
  19296. height: math.unit(6 + 10 / 12, "feet"),
  19297. weight: math.unit(255, "lb"),
  19298. name: "Front",
  19299. image: {
  19300. source: "./media/characters/alexeev/front.svg",
  19301. extra: 213 / 200,
  19302. bottom: 0.05
  19303. }
  19304. },
  19305. },
  19306. [
  19307. {
  19308. name: "Normal",
  19309. height: math.unit(6 + 10 / 12, "feet"),
  19310. default: true
  19311. },
  19312. ]
  19313. ))
  19314. characterMakers.push(() => makeCharacter(
  19315. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19316. {
  19317. front: {
  19318. height: math.unit(2 + 8 / 12, "feet"),
  19319. weight: math.unit(22, "lb"),
  19320. name: "Front",
  19321. image: {
  19322. source: "./media/characters/evelyn/front.svg",
  19323. extra: 208 / 180
  19324. }
  19325. },
  19326. },
  19327. [
  19328. {
  19329. name: "Normal",
  19330. height: math.unit(2 + 8 / 12, "feet"),
  19331. default: true
  19332. },
  19333. ]
  19334. ))
  19335. characterMakers.push(() => makeCharacter(
  19336. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19337. {
  19338. front: {
  19339. height: math.unit(5 + 9 / 12, "feet"),
  19340. weight: math.unit(139, "lb"),
  19341. name: "Front",
  19342. image: {
  19343. source: "./media/characters/inca/front.svg",
  19344. extra: 294 / 291,
  19345. bottom: 0.03
  19346. }
  19347. },
  19348. },
  19349. [
  19350. {
  19351. name: "Normal",
  19352. height: math.unit(5 + 9 / 12, "feet"),
  19353. default: true
  19354. },
  19355. ]
  19356. ))
  19357. characterMakers.push(() => makeCharacter(
  19358. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19359. {
  19360. front: {
  19361. height: math.unit(5 + 1 / 12, "feet"),
  19362. weight: math.unit(84, "lb"),
  19363. name: "Front",
  19364. image: {
  19365. source: "./media/characters/magdalene/front.svg",
  19366. extra: 293 / 273
  19367. }
  19368. },
  19369. },
  19370. [
  19371. {
  19372. name: "Normal",
  19373. height: math.unit(5 + 1 / 12, "feet"),
  19374. default: true
  19375. },
  19376. ]
  19377. ))
  19378. characterMakers.push(() => makeCharacter(
  19379. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19380. {
  19381. front: {
  19382. height: math.unit(6 + 3 / 12, "feet"),
  19383. weight: math.unit(185, "lb"),
  19384. name: "Front",
  19385. image: {
  19386. source: "./media/characters/mera/front.svg",
  19387. extra: 291 / 277,
  19388. bottom: 0.03
  19389. }
  19390. },
  19391. },
  19392. [
  19393. {
  19394. name: "Normal",
  19395. height: math.unit(6 + 3 / 12, "feet"),
  19396. default: true
  19397. },
  19398. ]
  19399. ))
  19400. characterMakers.push(() => makeCharacter(
  19401. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19402. {
  19403. front: {
  19404. height: math.unit(6 + 7 / 12, "feet"),
  19405. weight: math.unit(160, "lb"),
  19406. name: "Front",
  19407. image: {
  19408. source: "./media/characters/ceres/front.svg",
  19409. extra: 1023 / 950,
  19410. bottom: 0.027
  19411. }
  19412. },
  19413. back: {
  19414. height: math.unit(6 + 7 / 12, "feet"),
  19415. weight: math.unit(160, "lb"),
  19416. name: "Back",
  19417. image: {
  19418. source: "./media/characters/ceres/back.svg",
  19419. extra: 1023 / 950
  19420. }
  19421. },
  19422. },
  19423. [
  19424. {
  19425. name: "Normal",
  19426. height: math.unit(6 + 7 / 12, "feet"),
  19427. default: true
  19428. },
  19429. ]
  19430. ))
  19431. characterMakers.push(() => makeCharacter(
  19432. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19433. {
  19434. front: {
  19435. height: math.unit(5 + 10 / 12, "feet"),
  19436. weight: math.unit(150, "lb"),
  19437. name: "Front",
  19438. image: {
  19439. source: "./media/characters/kris/front.svg",
  19440. extra: 885 / 803,
  19441. bottom: 0.03
  19442. }
  19443. },
  19444. },
  19445. [
  19446. {
  19447. name: "Normal",
  19448. height: math.unit(5 + 10 / 12, "feet"),
  19449. default: true
  19450. },
  19451. ]
  19452. ))
  19453. characterMakers.push(() => makeCharacter(
  19454. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19455. {
  19456. front: {
  19457. height: math.unit(7, "feet"),
  19458. weight: math.unit(120, "kg"),
  19459. name: "Front",
  19460. image: {
  19461. source: "./media/characters/taluthus/front.svg",
  19462. extra: 903 / 833,
  19463. bottom: 0.015
  19464. }
  19465. },
  19466. },
  19467. [
  19468. {
  19469. name: "Normal",
  19470. height: math.unit(7, "feet"),
  19471. default: true
  19472. },
  19473. {
  19474. name: "Macro",
  19475. height: math.unit(300, "feet")
  19476. },
  19477. ]
  19478. ))
  19479. characterMakers.push(() => makeCharacter(
  19480. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19481. {
  19482. front: {
  19483. height: math.unit(5 + 9 / 12, "feet"),
  19484. weight: math.unit(145, "lb"),
  19485. name: "Front",
  19486. image: {
  19487. source: "./media/characters/dawn/front.svg",
  19488. extra: 2094 / 2016,
  19489. bottom: 0.025
  19490. }
  19491. },
  19492. back: {
  19493. height: math.unit(5 + 9 / 12, "feet"),
  19494. weight: math.unit(160, "lb"),
  19495. name: "Back",
  19496. image: {
  19497. source: "./media/characters/dawn/back.svg",
  19498. extra: 2112 / 2080,
  19499. bottom: 0.005
  19500. }
  19501. },
  19502. },
  19503. [
  19504. {
  19505. name: "Normal",
  19506. height: math.unit(6 + 7 / 12, "feet"),
  19507. default: true
  19508. },
  19509. ]
  19510. ))
  19511. characterMakers.push(() => makeCharacter(
  19512. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19513. {
  19514. anthro: {
  19515. height: math.unit(8 + 3 / 12, "feet"),
  19516. weight: math.unit(450, "lb"),
  19517. name: "Anthro",
  19518. image: {
  19519. source: "./media/characters/arador/anthro.svg",
  19520. extra: 1835 / 1718,
  19521. bottom: 0.025
  19522. }
  19523. },
  19524. feral: {
  19525. height: math.unit(4, "feet"),
  19526. weight: math.unit(200, "lb"),
  19527. name: "Feral",
  19528. image: {
  19529. source: "./media/characters/arador/feral.svg",
  19530. extra: 1683 / 1514,
  19531. bottom: 0.07
  19532. }
  19533. },
  19534. },
  19535. [
  19536. {
  19537. name: "Normal",
  19538. height: math.unit(8 + 3 / 12, "feet")
  19539. },
  19540. {
  19541. name: "Macro",
  19542. height: math.unit(82.5, "feet"),
  19543. default: true
  19544. },
  19545. ]
  19546. ))
  19547. characterMakers.push(() => makeCharacter(
  19548. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19549. {
  19550. front: {
  19551. height: math.unit(5 + 10 / 12, "feet"),
  19552. weight: math.unit(125, "lb"),
  19553. name: "Front",
  19554. image: {
  19555. source: "./media/characters/dharsi/front.svg",
  19556. extra: 716 / 630,
  19557. bottom: 0.035
  19558. }
  19559. },
  19560. },
  19561. [
  19562. {
  19563. name: "Nano",
  19564. height: math.unit(100, "nm")
  19565. },
  19566. {
  19567. name: "Micro",
  19568. height: math.unit(2, "inches")
  19569. },
  19570. {
  19571. name: "Normal",
  19572. height: math.unit(5 + 10 / 12, "feet"),
  19573. default: true
  19574. },
  19575. {
  19576. name: "Macro",
  19577. height: math.unit(1000, "feet")
  19578. },
  19579. {
  19580. name: "Megamacro",
  19581. height: math.unit(10, "miles")
  19582. },
  19583. {
  19584. name: "Gigamacro",
  19585. height: math.unit(3000, "miles")
  19586. },
  19587. {
  19588. name: "Teramacro",
  19589. height: math.unit(500000, "miles")
  19590. },
  19591. {
  19592. name: "Teramacro+",
  19593. height: math.unit(30, "galaxies")
  19594. },
  19595. ]
  19596. ))
  19597. characterMakers.push(() => makeCharacter(
  19598. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19599. {
  19600. front: {
  19601. height: math.unit(6, "feet"),
  19602. weight: math.unit(150, "lb"),
  19603. name: "Front",
  19604. image: {
  19605. source: "./media/characters/deathy/front.svg",
  19606. extra: 1552 / 1463,
  19607. bottom: 0.025
  19608. }
  19609. },
  19610. side: {
  19611. height: math.unit(6, "feet"),
  19612. weight: math.unit(150, "lb"),
  19613. name: "Side",
  19614. image: {
  19615. source: "./media/characters/deathy/side.svg",
  19616. extra: 1604 / 1455,
  19617. bottom: 0.025
  19618. }
  19619. },
  19620. back: {
  19621. height: math.unit(6, "feet"),
  19622. weight: math.unit(150, "lb"),
  19623. name: "Back",
  19624. image: {
  19625. source: "./media/characters/deathy/back.svg",
  19626. extra: 1580 / 1463,
  19627. bottom: 0.005
  19628. }
  19629. },
  19630. },
  19631. [
  19632. {
  19633. name: "Micro",
  19634. height: math.unit(5, "millimeters")
  19635. },
  19636. {
  19637. name: "Normal",
  19638. height: math.unit(6 + 5 / 12, "feet"),
  19639. default: true
  19640. },
  19641. ]
  19642. ))
  19643. characterMakers.push(() => makeCharacter(
  19644. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19645. {
  19646. front: {
  19647. height: math.unit(16, "feet"),
  19648. weight: math.unit(4000, "lb"),
  19649. name: "Front",
  19650. image: {
  19651. source: "./media/characters/juniper/front.svg",
  19652. bottom: 0.04
  19653. }
  19654. },
  19655. },
  19656. [
  19657. {
  19658. name: "Normal",
  19659. height: math.unit(16, "feet"),
  19660. default: true
  19661. },
  19662. ]
  19663. ))
  19664. characterMakers.push(() => makeCharacter(
  19665. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19666. {
  19667. front: {
  19668. height: math.unit(6, "feet"),
  19669. weight: math.unit(150, "lb"),
  19670. name: "Front",
  19671. image: {
  19672. source: "./media/characters/hipster/front.svg",
  19673. extra: 1312 / 1209,
  19674. bottom: 0.025
  19675. }
  19676. },
  19677. back: {
  19678. height: math.unit(6, "feet"),
  19679. weight: math.unit(150, "lb"),
  19680. name: "Back",
  19681. image: {
  19682. source: "./media/characters/hipster/back.svg",
  19683. extra: 1281 / 1196,
  19684. bottom: 0.01
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Micro",
  19691. height: math.unit(1, "mm")
  19692. },
  19693. {
  19694. name: "Normal",
  19695. height: math.unit(4, "inches"),
  19696. default: true
  19697. },
  19698. {
  19699. name: "Macro",
  19700. height: math.unit(500, "feet")
  19701. },
  19702. {
  19703. name: "Megamacro",
  19704. height: math.unit(1000, "miles")
  19705. },
  19706. ]
  19707. ))
  19708. characterMakers.push(() => makeCharacter(
  19709. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19710. {
  19711. front: {
  19712. height: math.unit(6, "feet"),
  19713. weight: math.unit(150, "lb"),
  19714. name: "Front",
  19715. image: {
  19716. source: "./media/characters/tendirmuldr/front.svg",
  19717. extra: 1878 / 1772,
  19718. bottom: 0.015
  19719. }
  19720. },
  19721. },
  19722. [
  19723. {
  19724. name: "Megamacro",
  19725. height: math.unit(1500, "miles"),
  19726. default: true
  19727. },
  19728. ]
  19729. ))
  19730. characterMakers.push(() => makeCharacter(
  19731. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19732. {
  19733. front: {
  19734. height: math.unit(14, "feet"),
  19735. weight: math.unit(12000, "lb"),
  19736. name: "Front",
  19737. image: {
  19738. source: "./media/characters/mort/front.svg",
  19739. extra: 365 / 318,
  19740. bottom: 0.01
  19741. }
  19742. },
  19743. side: {
  19744. height: math.unit(14, "feet"),
  19745. weight: math.unit(12000, "lb"),
  19746. name: "Side",
  19747. image: {
  19748. source: "./media/characters/mort/side.svg",
  19749. extra: 365 / 318,
  19750. bottom: 0.052
  19751. },
  19752. default: true
  19753. },
  19754. back: {
  19755. height: math.unit(14, "feet"),
  19756. weight: math.unit(12000, "lb"),
  19757. name: "Back",
  19758. image: {
  19759. source: "./media/characters/mort/back.svg",
  19760. extra: 371 / 332,
  19761. bottom: 0.18
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "Normal",
  19768. height: math.unit(14, "feet"),
  19769. default: true
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19775. {
  19776. front: {
  19777. height: math.unit(8, "feet"),
  19778. weight: math.unit(1, "ton"),
  19779. name: "Front",
  19780. image: {
  19781. source: "./media/characters/lycoa/front.svg",
  19782. extra: 1875 / 1789,
  19783. bottom: 0.022
  19784. }
  19785. },
  19786. back: {
  19787. height: math.unit(8, "feet"),
  19788. weight: math.unit(1, "ton"),
  19789. name: "Back",
  19790. image: {
  19791. source: "./media/characters/lycoa/back.svg",
  19792. extra: 1835 / 1781,
  19793. bottom: 0.03
  19794. }
  19795. },
  19796. head: {
  19797. height: math.unit(2.1, "feet"),
  19798. name: "Head",
  19799. image: {
  19800. source: "./media/characters/lycoa/head.svg"
  19801. }
  19802. },
  19803. tailmaw: {
  19804. height: math.unit(1.9, "feet"),
  19805. name: "Tailmaw",
  19806. image: {
  19807. source: "./media/characters/lycoa/tailmaw.svg"
  19808. }
  19809. },
  19810. tentacles: {
  19811. height: math.unit(2.1, "feet"),
  19812. name: "Tentacles",
  19813. image: {
  19814. source: "./media/characters/lycoa/tentacles.svg"
  19815. }
  19816. },
  19817. dick: {
  19818. height: math.unit(1.73, "feet"),
  19819. name: "Dick",
  19820. image: {
  19821. source: "./media/characters/lycoa/dick.svg"
  19822. }
  19823. },
  19824. },
  19825. [
  19826. {
  19827. name: "Normal",
  19828. height: math.unit(8, "feet"),
  19829. default: true
  19830. },
  19831. {
  19832. name: "Macro",
  19833. height: math.unit(30, "feet")
  19834. },
  19835. ]
  19836. ))
  19837. characterMakers.push(() => makeCharacter(
  19838. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19839. {
  19840. front: {
  19841. height: math.unit(4 + 2 / 12, "feet"),
  19842. weight: math.unit(70, "lb"),
  19843. name: "Front",
  19844. image: {
  19845. source: "./media/characters/naldara/front.svg",
  19846. extra: 841 / 720,
  19847. bottom: 0.04
  19848. }
  19849. },
  19850. naga: {
  19851. height: math.unit(23, "feet"),
  19852. weight: math.unit(15000, "kg"),
  19853. name: "Naga",
  19854. image: {
  19855. source: "./media/characters/naldara/naga.svg",
  19856. extra: 3290 / 2959,
  19857. bottom: 124 / 3432
  19858. }
  19859. },
  19860. },
  19861. [
  19862. {
  19863. name: "Normal",
  19864. height: math.unit(4 + 2 / 12, "feet"),
  19865. default: true
  19866. },
  19867. ]
  19868. ))
  19869. characterMakers.push(() => makeCharacter(
  19870. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19871. {
  19872. front: {
  19873. height: math.unit(13 + 7 / 12, "feet"),
  19874. weight: math.unit(1500, "lb"),
  19875. name: "Front",
  19876. image: {
  19877. source: "./media/characters/briar/front.svg",
  19878. extra: 626 / 596,
  19879. bottom: 0.08
  19880. }
  19881. },
  19882. },
  19883. [
  19884. {
  19885. name: "Normal",
  19886. height: math.unit(13 + 7 / 12, "feet"),
  19887. default: true
  19888. },
  19889. ]
  19890. ))
  19891. characterMakers.push(() => makeCharacter(
  19892. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19893. {
  19894. side: {
  19895. height: math.unit(10, "feet"),
  19896. weight: math.unit(500, "lb"),
  19897. name: "Side",
  19898. image: {
  19899. source: "./media/characters/vanguard/side.svg",
  19900. extra: 502 / 425,
  19901. bottom: 0.087
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Normal",
  19908. height: math.unit(10, "feet"),
  19909. default: true
  19910. },
  19911. ]
  19912. ))
  19913. characterMakers.push(() => makeCharacter(
  19914. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19915. {
  19916. front: {
  19917. height: math.unit(7.5, "feet"),
  19918. weight: math.unit(2, "lb"),
  19919. name: "Front",
  19920. image: {
  19921. source: "./media/characters/artemis/front.svg",
  19922. extra: 1192 / 1075,
  19923. bottom: 0.07
  19924. }
  19925. },
  19926. frontNsfw: {
  19927. height: math.unit(7.5, "feet"),
  19928. weight: math.unit(2, "lb"),
  19929. name: "Front (NSFW)",
  19930. image: {
  19931. source: "./media/characters/artemis/front-nsfw.svg",
  19932. extra: 1192 / 1075,
  19933. bottom: 0.07
  19934. }
  19935. },
  19936. frontNsfwer: {
  19937. height: math.unit(7.5, "feet"),
  19938. weight: math.unit(2, "lb"),
  19939. name: "Front (NSFW-er)",
  19940. image: {
  19941. source: "./media/characters/artemis/front-nsfwer.svg",
  19942. extra: 1192 / 1075,
  19943. bottom: 0.07
  19944. }
  19945. },
  19946. side: {
  19947. height: math.unit(7.5, "feet"),
  19948. weight: math.unit(2, "lb"),
  19949. name: "Side",
  19950. image: {
  19951. source: "./media/characters/artemis/side.svg",
  19952. extra: 1192 / 1075,
  19953. bottom: 0.07
  19954. }
  19955. },
  19956. sideNsfw: {
  19957. height: math.unit(7.5, "feet"),
  19958. weight: math.unit(2, "lb"),
  19959. name: "Side (NSFW)",
  19960. image: {
  19961. source: "./media/characters/artemis/side-nsfw.svg",
  19962. extra: 1192 / 1075,
  19963. bottom: 0.07
  19964. }
  19965. },
  19966. sideNsfwer: {
  19967. height: math.unit(7.5, "feet"),
  19968. weight: math.unit(2, "lb"),
  19969. name: "Side (NSFW-er)",
  19970. image: {
  19971. source: "./media/characters/artemis/side-nsfwer.svg",
  19972. extra: 1192 / 1075,
  19973. bottom: 0.07
  19974. }
  19975. },
  19976. maw: {
  19977. height: math.unit(1.1, "feet"),
  19978. name: "Maw",
  19979. image: {
  19980. source: "./media/characters/artemis/maw.svg"
  19981. }
  19982. },
  19983. stomach: {
  19984. height: math.unit(0.95, "feet"),
  19985. name: "Stomach",
  19986. image: {
  19987. source: "./media/characters/artemis/stomach.svg"
  19988. }
  19989. },
  19990. dickCanine: {
  19991. height: math.unit(1, "feet"),
  19992. name: "Dick (Canine)",
  19993. image: {
  19994. source: "./media/characters/artemis/dick-canine.svg"
  19995. }
  19996. },
  19997. dickEquine: {
  19998. height: math.unit(0.85, "feet"),
  19999. name: "Dick (Equine)",
  20000. image: {
  20001. source: "./media/characters/artemis/dick-equine.svg"
  20002. }
  20003. },
  20004. dickExotic: {
  20005. height: math.unit(0.85, "feet"),
  20006. name: "Dick (Exotic)",
  20007. image: {
  20008. source: "./media/characters/artemis/dick-exotic.svg"
  20009. }
  20010. },
  20011. },
  20012. [
  20013. {
  20014. name: "Normal",
  20015. height: math.unit(7.5, "feet"),
  20016. default: true
  20017. },
  20018. {
  20019. name: "Enlarged",
  20020. height: math.unit(12, "feet")
  20021. },
  20022. ]
  20023. ))
  20024. characterMakers.push(() => makeCharacter(
  20025. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20026. {
  20027. front: {
  20028. height: math.unit(5 + 3 / 12, "feet"),
  20029. weight: math.unit(160, "lb"),
  20030. name: "Front",
  20031. image: {
  20032. source: "./media/characters/kira/front.svg",
  20033. extra: 906 / 786,
  20034. bottom: 0.01
  20035. }
  20036. },
  20037. back: {
  20038. height: math.unit(5 + 3 / 12, "feet"),
  20039. weight: math.unit(160, "lb"),
  20040. name: "Back",
  20041. image: {
  20042. source: "./media/characters/kira/back.svg",
  20043. extra: 882 / 757,
  20044. bottom: 0.005
  20045. }
  20046. },
  20047. frontDressed: {
  20048. height: math.unit(5 + 3 / 12, "feet"),
  20049. weight: math.unit(160, "lb"),
  20050. name: "Front (Dressed)",
  20051. image: {
  20052. source: "./media/characters/kira/front-dressed.svg",
  20053. extra: 906 / 786,
  20054. bottom: 0.01
  20055. }
  20056. },
  20057. beans: {
  20058. height: math.unit(0.92, "feet"),
  20059. name: "Beans",
  20060. image: {
  20061. source: "./media/characters/kira/beans.svg"
  20062. }
  20063. },
  20064. },
  20065. [
  20066. {
  20067. name: "Normal",
  20068. height: math.unit(5 + 3 / 12, "feet"),
  20069. default: true
  20070. },
  20071. ]
  20072. ))
  20073. characterMakers.push(() => makeCharacter(
  20074. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20075. {
  20076. front: {
  20077. height: math.unit(5 + 4 / 12, "feet"),
  20078. weight: math.unit(145, "lb"),
  20079. name: "Front",
  20080. image: {
  20081. source: "./media/characters/scramble/front.svg",
  20082. extra: 763 / 727,
  20083. bottom: 0.05
  20084. }
  20085. },
  20086. back: {
  20087. height: math.unit(5 + 4 / 12, "feet"),
  20088. weight: math.unit(145, "lb"),
  20089. name: "Back",
  20090. image: {
  20091. source: "./media/characters/scramble/back.svg",
  20092. extra: 826 / 737,
  20093. bottom: 0.002
  20094. }
  20095. },
  20096. },
  20097. [
  20098. {
  20099. name: "Normal",
  20100. height: math.unit(5 + 4 / 12, "feet"),
  20101. default: true
  20102. },
  20103. ]
  20104. ))
  20105. characterMakers.push(() => makeCharacter(
  20106. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20107. {
  20108. side: {
  20109. height: math.unit(6 + 2 / 12, "feet"),
  20110. weight: math.unit(190, "lb"),
  20111. name: "Side",
  20112. image: {
  20113. source: "./media/characters/biscuit/side.svg",
  20114. extra: 858 / 791,
  20115. bottom: 0.044
  20116. }
  20117. },
  20118. },
  20119. [
  20120. {
  20121. name: "Normal",
  20122. height: math.unit(6 + 2 / 12, "feet"),
  20123. default: true
  20124. },
  20125. ]
  20126. ))
  20127. characterMakers.push(() => makeCharacter(
  20128. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20129. {
  20130. front: {
  20131. height: math.unit(5 + 2 / 12, "feet"),
  20132. weight: math.unit(120, "lb"),
  20133. name: "Front",
  20134. image: {
  20135. source: "./media/characters/poffin/front.svg",
  20136. extra: 786 / 680,
  20137. bottom: 0.005
  20138. }
  20139. },
  20140. },
  20141. [
  20142. {
  20143. name: "Normal",
  20144. height: math.unit(5 + 2 / 12, "feet"),
  20145. default: true
  20146. },
  20147. ]
  20148. ))
  20149. characterMakers.push(() => makeCharacter(
  20150. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20151. {
  20152. front: {
  20153. height: math.unit(6 + 3 / 12, "feet"),
  20154. weight: math.unit(519, "lb"),
  20155. name: "Front",
  20156. image: {
  20157. source: "./media/characters/dhari/front.svg",
  20158. extra: 1048 / 946,
  20159. bottom: 0.015
  20160. }
  20161. },
  20162. back: {
  20163. height: math.unit(6 + 3 / 12, "feet"),
  20164. weight: math.unit(519, "lb"),
  20165. name: "Back",
  20166. image: {
  20167. source: "./media/characters/dhari/back.svg",
  20168. extra: 1048 / 931,
  20169. bottom: 0.005
  20170. }
  20171. },
  20172. frontDressed: {
  20173. height: math.unit(6 + 3 / 12, "feet"),
  20174. weight: math.unit(519, "lb"),
  20175. name: "Front (Dressed)",
  20176. image: {
  20177. source: "./media/characters/dhari/front-dressed.svg",
  20178. extra: 1713 / 1546,
  20179. bottom: 0.02
  20180. }
  20181. },
  20182. backDressed: {
  20183. height: math.unit(6 + 3 / 12, "feet"),
  20184. weight: math.unit(519, "lb"),
  20185. name: "Back (Dressed)",
  20186. image: {
  20187. source: "./media/characters/dhari/back-dressed.svg",
  20188. extra: 1699 / 1537,
  20189. bottom: 0.01
  20190. }
  20191. },
  20192. maw: {
  20193. height: math.unit(0.95, "feet"),
  20194. name: "Maw",
  20195. image: {
  20196. source: "./media/characters/dhari/maw.svg"
  20197. }
  20198. },
  20199. wereFront: {
  20200. height: math.unit(12 + 8 / 12, "feet"),
  20201. weight: math.unit(4000, "lb"),
  20202. name: "Front (Were)",
  20203. image: {
  20204. source: "./media/characters/dhari/were-front.svg",
  20205. extra: 1065 / 969,
  20206. bottom: 0.015
  20207. }
  20208. },
  20209. wereBack: {
  20210. height: math.unit(12 + 8 / 12, "feet"),
  20211. weight: math.unit(4000, "lb"),
  20212. name: "Back (Were)",
  20213. image: {
  20214. source: "./media/characters/dhari/were-back.svg",
  20215. extra: 1065 / 969,
  20216. bottom: 0.012
  20217. }
  20218. },
  20219. wereMaw: {
  20220. height: math.unit(0.625, "meters"),
  20221. name: "Maw (Were)",
  20222. image: {
  20223. source: "./media/characters/dhari/were-maw.svg"
  20224. }
  20225. },
  20226. },
  20227. [
  20228. {
  20229. name: "Normal",
  20230. height: math.unit(6 + 3 / 12, "feet"),
  20231. default: true
  20232. },
  20233. ]
  20234. ))
  20235. characterMakers.push(() => makeCharacter(
  20236. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20237. {
  20238. anthro: {
  20239. height: math.unit(5 + 7 / 12, "feet"),
  20240. weight: math.unit(175, "lb"),
  20241. name: "Anthro",
  20242. image: {
  20243. source: "./media/characters/rena-dyne/anthro.svg",
  20244. extra: 1849 / 1785,
  20245. bottom: 0.005
  20246. }
  20247. },
  20248. taur: {
  20249. height: math.unit(15 + 6 / 12, "feet"),
  20250. weight: math.unit(8000, "lb"),
  20251. name: "Taur",
  20252. image: {
  20253. source: "./media/characters/rena-dyne/taur.svg",
  20254. extra: 2315 / 2234,
  20255. bottom: 0.033
  20256. }
  20257. },
  20258. },
  20259. [
  20260. {
  20261. name: "Normal",
  20262. height: math.unit(5 + 7 / 12, "feet"),
  20263. default: true
  20264. },
  20265. ]
  20266. ))
  20267. characterMakers.push(() => makeCharacter(
  20268. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20269. {
  20270. front: {
  20271. height: math.unit(8, "feet"),
  20272. weight: math.unit(600, "lb"),
  20273. name: "Front",
  20274. image: {
  20275. source: "./media/characters/weremeep/front.svg",
  20276. extra: 967 / 862,
  20277. bottom: 0.01
  20278. }
  20279. },
  20280. },
  20281. [
  20282. {
  20283. name: "Normal",
  20284. height: math.unit(8, "feet"),
  20285. default: true
  20286. },
  20287. {
  20288. name: "Lorg",
  20289. height: math.unit(12, "feet")
  20290. },
  20291. {
  20292. name: "Oh Lawd She Comin'",
  20293. height: math.unit(20, "feet")
  20294. },
  20295. ]
  20296. ))
  20297. characterMakers.push(() => makeCharacter(
  20298. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20299. {
  20300. front: {
  20301. height: math.unit(4, "feet"),
  20302. weight: math.unit(90, "lb"),
  20303. name: "Front",
  20304. image: {
  20305. source: "./media/characters/reza/front.svg",
  20306. extra: 1183 / 1111,
  20307. bottom: 0.017
  20308. }
  20309. },
  20310. back: {
  20311. height: math.unit(4, "feet"),
  20312. weight: math.unit(90, "lb"),
  20313. name: "Back",
  20314. image: {
  20315. source: "./media/characters/reza/back.svg",
  20316. extra: 1183 / 1111,
  20317. bottom: 0.01
  20318. }
  20319. },
  20320. drake: {
  20321. height: math.unit(30, "feet"),
  20322. weight: math.unit(246960, "lb"),
  20323. name: "Drake",
  20324. image: {
  20325. source: "./media/characters/reza/drake.svg",
  20326. extra: 2350 / 2024,
  20327. bottom: 60.7 / 2403
  20328. }
  20329. },
  20330. },
  20331. [
  20332. {
  20333. name: "Normal",
  20334. height: math.unit(4, "feet"),
  20335. default: true
  20336. },
  20337. ]
  20338. ))
  20339. characterMakers.push(() => makeCharacter(
  20340. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20341. {
  20342. side: {
  20343. height: math.unit(15, "feet"),
  20344. weight: math.unit(14, "tons"),
  20345. name: "Side",
  20346. image: {
  20347. source: "./media/characters/athea/side.svg",
  20348. extra: 960 / 540,
  20349. bottom: 0.003
  20350. }
  20351. },
  20352. sitting: {
  20353. height: math.unit(6 * 2.85, "feet"),
  20354. weight: math.unit(14, "tons"),
  20355. name: "Sitting",
  20356. image: {
  20357. source: "./media/characters/athea/sitting.svg",
  20358. extra: 621 / 581,
  20359. bottom: 0.075
  20360. }
  20361. },
  20362. maw: {
  20363. height: math.unit(7.59498031496063, "feet"),
  20364. name: "Maw",
  20365. image: {
  20366. source: "./media/characters/athea/maw.svg"
  20367. }
  20368. },
  20369. },
  20370. [
  20371. {
  20372. name: "Lap Cat",
  20373. height: math.unit(2.5, "feet")
  20374. },
  20375. {
  20376. name: "Minimacro",
  20377. height: math.unit(15, "feet"),
  20378. default: true
  20379. },
  20380. {
  20381. name: "Macro",
  20382. height: math.unit(120, "feet")
  20383. },
  20384. {
  20385. name: "Macro+",
  20386. height: math.unit(640, "feet")
  20387. },
  20388. {
  20389. name: "Colossus",
  20390. height: math.unit(2.2, "miles")
  20391. },
  20392. ]
  20393. ))
  20394. characterMakers.push(() => makeCharacter(
  20395. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20396. {
  20397. front: {
  20398. height: math.unit(8 + 8 / 12, "feet"),
  20399. weight: math.unit(130, "kg"),
  20400. name: "Front",
  20401. image: {
  20402. source: "./media/characters/seroko/front.svg",
  20403. extra: 1385 / 1280,
  20404. bottom: 0.025
  20405. }
  20406. },
  20407. back: {
  20408. height: math.unit(8 + 8 / 12, "feet"),
  20409. weight: math.unit(130, "kg"),
  20410. name: "Back",
  20411. image: {
  20412. source: "./media/characters/seroko/back.svg",
  20413. extra: 1369 / 1238,
  20414. bottom: 0.018
  20415. }
  20416. },
  20417. frontDressed: {
  20418. height: math.unit(8 + 8 / 12, "feet"),
  20419. weight: math.unit(130, "kg"),
  20420. name: "Front (Dressed)",
  20421. image: {
  20422. source: "./media/characters/seroko/front-dressed.svg",
  20423. extra: 1366 / 1275,
  20424. bottom: 0.03
  20425. }
  20426. },
  20427. },
  20428. [
  20429. {
  20430. name: "Normal",
  20431. height: math.unit(8 + 8 / 12, "feet"),
  20432. default: true
  20433. },
  20434. ]
  20435. ))
  20436. characterMakers.push(() => makeCharacter(
  20437. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20438. {
  20439. front: {
  20440. height: math.unit(5.5, "feet"),
  20441. weight: math.unit(160, "lb"),
  20442. name: "Front",
  20443. image: {
  20444. source: "./media/characters/quatzi/front.svg",
  20445. extra: 2346 / 2242,
  20446. bottom: 0.015
  20447. }
  20448. },
  20449. },
  20450. [
  20451. {
  20452. name: "Normal",
  20453. height: math.unit(5.5, "feet"),
  20454. default: true
  20455. },
  20456. {
  20457. name: "Big",
  20458. height: math.unit(7.7, "feet")
  20459. },
  20460. ]
  20461. ))
  20462. characterMakers.push(() => makeCharacter(
  20463. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20464. {
  20465. front: {
  20466. height: math.unit(5 + 11 / 12, "feet"),
  20467. weight: math.unit(180, "lb"),
  20468. name: "Front",
  20469. image: {
  20470. source: "./media/characters/sen/front.svg",
  20471. extra: 1321 / 1254,
  20472. bottom: 0.015
  20473. }
  20474. },
  20475. side: {
  20476. height: math.unit(5 + 11 / 12, "feet"),
  20477. weight: math.unit(180, "lb"),
  20478. name: "Side",
  20479. image: {
  20480. source: "./media/characters/sen/side.svg",
  20481. extra: 1321 / 1254,
  20482. bottom: 0.007
  20483. }
  20484. },
  20485. back: {
  20486. height: math.unit(5 + 11 / 12, "feet"),
  20487. weight: math.unit(180, "lb"),
  20488. name: "Back",
  20489. image: {
  20490. source: "./media/characters/sen/back.svg",
  20491. extra: 1321 / 1254
  20492. }
  20493. },
  20494. },
  20495. [
  20496. {
  20497. name: "Normal",
  20498. height: math.unit(5 + 11 / 12, "feet"),
  20499. default: true
  20500. },
  20501. ]
  20502. ))
  20503. characterMakers.push(() => makeCharacter(
  20504. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20505. {
  20506. front: {
  20507. height: math.unit(166.6, "cm"),
  20508. weight: math.unit(66.6, "kg"),
  20509. name: "Front",
  20510. image: {
  20511. source: "./media/characters/fruity/front.svg",
  20512. extra: 1510 / 1386,
  20513. bottom: 0.04
  20514. }
  20515. },
  20516. back: {
  20517. height: math.unit(166.6, "cm"),
  20518. weight: math.unit(66.6, "lb"),
  20519. name: "Back",
  20520. image: {
  20521. source: "./media/characters/fruity/back.svg",
  20522. extra: 1563 / 1435,
  20523. bottom: 0.005
  20524. }
  20525. },
  20526. },
  20527. [
  20528. {
  20529. name: "Normal",
  20530. height: math.unit(166.6, "cm"),
  20531. default: true
  20532. },
  20533. {
  20534. name: "Demonic",
  20535. height: math.unit(166.6, "feet")
  20536. },
  20537. ]
  20538. ))
  20539. characterMakers.push(() => makeCharacter(
  20540. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20541. {
  20542. side: {
  20543. height: math.unit(10, "feet"),
  20544. weight: math.unit(500, "lb"),
  20545. name: "Side",
  20546. image: {
  20547. source: "./media/characters/zost/side.svg",
  20548. extra: 966 / 880,
  20549. bottom: 0.075
  20550. }
  20551. },
  20552. mawFront: {
  20553. height: math.unit(1.08, "meters"),
  20554. name: "Maw (Front)",
  20555. image: {
  20556. source: "./media/characters/zost/maw-front.svg"
  20557. }
  20558. },
  20559. mawSide: {
  20560. height: math.unit(2.66, "feet"),
  20561. name: "Maw (Side)",
  20562. image: {
  20563. source: "./media/characters/zost/maw-side.svg"
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Normal",
  20570. height: math.unit(10, "feet"),
  20571. default: true
  20572. },
  20573. ]
  20574. ))
  20575. characterMakers.push(() => makeCharacter(
  20576. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20577. {
  20578. front: {
  20579. height: math.unit(5 + 4 / 12, "feet"),
  20580. weight: math.unit(120, "lb"),
  20581. name: "Front",
  20582. image: {
  20583. source: "./media/characters/luci/front.svg",
  20584. extra: 1985 / 1884,
  20585. bottom: 0.04
  20586. }
  20587. },
  20588. back: {
  20589. height: math.unit(5 + 4 / 12, "feet"),
  20590. weight: math.unit(120, "lb"),
  20591. name: "Back",
  20592. image: {
  20593. source: "./media/characters/luci/back.svg",
  20594. extra: 1892 / 1791,
  20595. bottom: 0.002
  20596. }
  20597. },
  20598. },
  20599. [
  20600. {
  20601. name: "Normal",
  20602. height: math.unit(5 + 4 / 12, "feet"),
  20603. default: true
  20604. },
  20605. ]
  20606. ))
  20607. characterMakers.push(() => makeCharacter(
  20608. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20609. {
  20610. front: {
  20611. height: math.unit(1500, "feet"),
  20612. weight: math.unit(3.8e6, "tons"),
  20613. name: "Front",
  20614. image: {
  20615. source: "./media/characters/2th/front.svg",
  20616. extra: 3489 / 3350,
  20617. bottom: 0.1
  20618. }
  20619. },
  20620. foot: {
  20621. height: math.unit(461, "feet"),
  20622. name: "Foot",
  20623. image: {
  20624. source: "./media/characters/2th/foot.svg"
  20625. }
  20626. },
  20627. },
  20628. [
  20629. {
  20630. name: "\"Micro\"",
  20631. height: math.unit(15 + 7 / 12, "feet")
  20632. },
  20633. {
  20634. name: "Normal",
  20635. height: math.unit(1500, "feet"),
  20636. default: true
  20637. },
  20638. {
  20639. name: "Macro",
  20640. height: math.unit(5000, "feet")
  20641. },
  20642. {
  20643. name: "Megamacro",
  20644. height: math.unit(15, "miles")
  20645. },
  20646. {
  20647. name: "Gigamacro",
  20648. height: math.unit(4000, "miles")
  20649. },
  20650. {
  20651. name: "Galactic",
  20652. height: math.unit(50, "AU")
  20653. },
  20654. ]
  20655. ))
  20656. characterMakers.push(() => makeCharacter(
  20657. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20658. {
  20659. front: {
  20660. height: math.unit(5 + 6 / 12, "feet"),
  20661. weight: math.unit(220, "lb"),
  20662. name: "Front",
  20663. image: {
  20664. source: "./media/characters/amethyst/front.svg",
  20665. extra: 2078 / 2040,
  20666. bottom: 0.045
  20667. }
  20668. },
  20669. back: {
  20670. height: math.unit(5 + 6 / 12, "feet"),
  20671. weight: math.unit(220, "lb"),
  20672. name: "Back",
  20673. image: {
  20674. source: "./media/characters/amethyst/back.svg",
  20675. extra: 2021 / 1989,
  20676. bottom: 0.02
  20677. }
  20678. },
  20679. },
  20680. [
  20681. {
  20682. name: "Normal",
  20683. height: math.unit(5 + 6 / 12, "feet"),
  20684. default: true
  20685. },
  20686. ]
  20687. ))
  20688. characterMakers.push(() => makeCharacter(
  20689. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20690. {
  20691. front: {
  20692. height: math.unit(4 + 11 / 12, "feet"),
  20693. weight: math.unit(120, "lb"),
  20694. name: "Front",
  20695. image: {
  20696. source: "./media/characters/yumi-akiyama/front.svg",
  20697. extra: 1327 / 1235,
  20698. bottom: 0.02
  20699. }
  20700. },
  20701. back: {
  20702. height: math.unit(4 + 11 / 12, "feet"),
  20703. weight: math.unit(120, "lb"),
  20704. name: "Back",
  20705. image: {
  20706. source: "./media/characters/yumi-akiyama/back.svg",
  20707. extra: 1287 / 1245,
  20708. bottom: 0.002
  20709. }
  20710. },
  20711. },
  20712. [
  20713. {
  20714. name: "Galactic",
  20715. height: math.unit(50, "galaxies"),
  20716. default: true
  20717. },
  20718. {
  20719. name: "Universal",
  20720. height: math.unit(100, "universes")
  20721. },
  20722. ]
  20723. ))
  20724. characterMakers.push(() => makeCharacter(
  20725. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20726. {
  20727. front: {
  20728. height: math.unit(8, "feet"),
  20729. weight: math.unit(500, "lb"),
  20730. name: "Front",
  20731. image: {
  20732. source: "./media/characters/rifter-yrmori/front.svg",
  20733. extra: 1180 / 1125,
  20734. bottom: 0.02
  20735. }
  20736. },
  20737. back: {
  20738. height: math.unit(8, "feet"),
  20739. weight: math.unit(500, "lb"),
  20740. name: "Back",
  20741. image: {
  20742. source: "./media/characters/rifter-yrmori/back.svg",
  20743. extra: 1190 / 1145,
  20744. bottom: 0.001
  20745. }
  20746. },
  20747. wings: {
  20748. height: math.unit(7.75, "feet"),
  20749. weight: math.unit(500, "lb"),
  20750. name: "Wings",
  20751. image: {
  20752. source: "./media/characters/rifter-yrmori/wings.svg",
  20753. extra: 1357 / 1285
  20754. }
  20755. },
  20756. maw: {
  20757. height: math.unit(0.8, "feet"),
  20758. name: "Maw",
  20759. image: {
  20760. source: "./media/characters/rifter-yrmori/maw.svg"
  20761. }
  20762. },
  20763. mawfront: {
  20764. height: math.unit(1.45, "feet"),
  20765. name: "Maw (Front)",
  20766. image: {
  20767. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20768. }
  20769. },
  20770. },
  20771. [
  20772. {
  20773. name: "Normal",
  20774. height: math.unit(8, "feet"),
  20775. default: true
  20776. },
  20777. {
  20778. name: "Macro",
  20779. height: math.unit(42, "meters")
  20780. },
  20781. ]
  20782. ))
  20783. characterMakers.push(() => makeCharacter(
  20784. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20785. {
  20786. were: {
  20787. height: math.unit(25 + 6 / 12, "feet"),
  20788. weight: math.unit(10000, "lb"),
  20789. name: "Were",
  20790. image: {
  20791. source: "./media/characters/tahajin/were.svg",
  20792. extra: 801 / 770,
  20793. bottom: 0.042
  20794. }
  20795. },
  20796. aquatic: {
  20797. height: math.unit(6 + 4 / 12, "feet"),
  20798. weight: math.unit(160, "lb"),
  20799. name: "Aquatic",
  20800. image: {
  20801. source: "./media/characters/tahajin/aquatic.svg",
  20802. extra: 572 / 542,
  20803. bottom: 0.04
  20804. }
  20805. },
  20806. chow: {
  20807. height: math.unit(8 + 11 / 12, "feet"),
  20808. weight: math.unit(450, "lb"),
  20809. name: "Chow",
  20810. image: {
  20811. source: "./media/characters/tahajin/chow.svg",
  20812. extra: 660 / 640,
  20813. bottom: 0.015
  20814. }
  20815. },
  20816. demiNaga: {
  20817. height: math.unit(6 + 8 / 12, "feet"),
  20818. weight: math.unit(300, "lb"),
  20819. name: "Demi Naga",
  20820. image: {
  20821. source: "./media/characters/tahajin/demi-naga.svg",
  20822. extra: 643 / 615,
  20823. bottom: 0.1
  20824. }
  20825. },
  20826. data: {
  20827. height: math.unit(5, "inches"),
  20828. weight: math.unit(0.1, "lb"),
  20829. name: "Data",
  20830. image: {
  20831. source: "./media/characters/tahajin/data.svg"
  20832. }
  20833. },
  20834. fluu: {
  20835. height: math.unit(5 + 7 / 12, "feet"),
  20836. weight: math.unit(140, "lb"),
  20837. name: "Fluu",
  20838. image: {
  20839. source: "./media/characters/tahajin/fluu.svg",
  20840. extra: 628 / 592,
  20841. bottom: 0.02
  20842. }
  20843. },
  20844. starWarrior: {
  20845. height: math.unit(4 + 5 / 12, "feet"),
  20846. weight: math.unit(50, "lb"),
  20847. name: "Star Warrior",
  20848. image: {
  20849. source: "./media/characters/tahajin/star-warrior.svg"
  20850. }
  20851. },
  20852. },
  20853. [
  20854. {
  20855. name: "Normal",
  20856. height: math.unit(25 + 6 / 12, "feet"),
  20857. default: true
  20858. },
  20859. ]
  20860. ))
  20861. characterMakers.push(() => makeCharacter(
  20862. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20863. {
  20864. front: {
  20865. height: math.unit(8, "feet"),
  20866. weight: math.unit(350, "lb"),
  20867. name: "Front",
  20868. image: {
  20869. source: "./media/characters/gabira/front.svg",
  20870. extra: 608 / 580,
  20871. bottom: 0.03
  20872. }
  20873. },
  20874. back: {
  20875. height: math.unit(8, "feet"),
  20876. weight: math.unit(350, "lb"),
  20877. name: "Back",
  20878. image: {
  20879. source: "./media/characters/gabira/back.svg",
  20880. extra: 608 / 580,
  20881. bottom: 0.03
  20882. }
  20883. },
  20884. },
  20885. [
  20886. {
  20887. name: "Normal",
  20888. height: math.unit(8, "feet"),
  20889. default: true
  20890. },
  20891. ]
  20892. ))
  20893. characterMakers.push(() => makeCharacter(
  20894. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20895. {
  20896. front: {
  20897. height: math.unit(5 + 3 / 12, "feet"),
  20898. weight: math.unit(137, "lb"),
  20899. name: "Front",
  20900. image: {
  20901. source: "./media/characters/sasha-katraine/front.svg",
  20902. bottom: 0.045
  20903. }
  20904. },
  20905. },
  20906. [
  20907. {
  20908. name: "Micro",
  20909. height: math.unit(5, "inches")
  20910. },
  20911. {
  20912. name: "Normal",
  20913. height: math.unit(5 + 3 / 12, "feet"),
  20914. default: true
  20915. },
  20916. ]
  20917. ))
  20918. characterMakers.push(() => makeCharacter(
  20919. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20920. {
  20921. side: {
  20922. height: math.unit(4, "inches"),
  20923. weight: math.unit(200, "grams"),
  20924. name: "Side",
  20925. image: {
  20926. source: "./media/characters/der/side.svg",
  20927. extra: 719 / 400,
  20928. bottom: 30.6 / 749.9187
  20929. }
  20930. },
  20931. },
  20932. [
  20933. {
  20934. name: "Micro",
  20935. height: math.unit(4, "inches"),
  20936. default: true
  20937. },
  20938. ]
  20939. ))
  20940. characterMakers.push(() => makeCharacter(
  20941. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20942. {
  20943. side: {
  20944. height: math.unit(30, "meters"),
  20945. weight: math.unit(700, "tonnes"),
  20946. name: "Side",
  20947. image: {
  20948. source: "./media/characters/fixerdragon/side.svg",
  20949. extra: (1293.0514 - 116.03) / 1106.86,
  20950. bottom: 116.03 / 1293.0514
  20951. }
  20952. },
  20953. },
  20954. [
  20955. {
  20956. name: "Planck",
  20957. height: math.unit(1.6e-35, "meters")
  20958. },
  20959. {
  20960. name: "Micro",
  20961. height: math.unit(0.4, "meters")
  20962. },
  20963. {
  20964. name: "Normal",
  20965. height: math.unit(30, "meters"),
  20966. default: true
  20967. },
  20968. {
  20969. name: "Megamacro",
  20970. height: math.unit(1.2, "megameters")
  20971. },
  20972. {
  20973. name: "Teramacro",
  20974. height: math.unit(130, "terameters")
  20975. },
  20976. {
  20977. name: "Yottamacro",
  20978. height: math.unit(6200, "yottameters")
  20979. },
  20980. ]
  20981. ));
  20982. characterMakers.push(() => makeCharacter(
  20983. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20984. {
  20985. front: {
  20986. height: math.unit(8, "feet"),
  20987. weight: math.unit(250, "lb"),
  20988. name: "Front",
  20989. image: {
  20990. source: "./media/characters/kite/front.svg",
  20991. extra: 2796 / 2659,
  20992. bottom: 0.002
  20993. }
  20994. },
  20995. },
  20996. [
  20997. {
  20998. name: "Normal",
  20999. height: math.unit(8, "feet"),
  21000. default: true
  21001. },
  21002. {
  21003. name: "Macro",
  21004. height: math.unit(360, "feet")
  21005. },
  21006. {
  21007. name: "Megamacro",
  21008. height: math.unit(1500, "feet")
  21009. },
  21010. ]
  21011. ))
  21012. characterMakers.push(() => makeCharacter(
  21013. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21014. {
  21015. front: {
  21016. height: math.unit(5 + 10 / 12, "feet"),
  21017. weight: math.unit(150, "lb"),
  21018. name: "Front",
  21019. image: {
  21020. source: "./media/characters/poojawa-vynar/front.svg",
  21021. extra: (1506.1547 - 55) / 1356.6,
  21022. bottom: 55 / 1506.1547
  21023. }
  21024. },
  21025. frontTailless: {
  21026. height: math.unit(5 + 10 / 12, "feet"),
  21027. weight: math.unit(150, "lb"),
  21028. name: "Front (Tailless)",
  21029. image: {
  21030. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21031. extra: (1506.1547 - 55) / 1356.6,
  21032. bottom: 55 / 1506.1547
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Normal",
  21039. height: math.unit(5 + 10 / 12, "feet"),
  21040. default: true
  21041. },
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21046. {
  21047. front: {
  21048. height: math.unit(293, "meters"),
  21049. weight: math.unit(70400, "tons"),
  21050. name: "Front",
  21051. image: {
  21052. source: "./media/characters/violette/front.svg",
  21053. extra: 1227 / 1180,
  21054. bottom: 0.005
  21055. }
  21056. },
  21057. back: {
  21058. height: math.unit(293, "meters"),
  21059. weight: math.unit(70400, "tons"),
  21060. name: "Back",
  21061. image: {
  21062. source: "./media/characters/violette/back.svg",
  21063. extra: 1227 / 1180,
  21064. bottom: 0.005
  21065. }
  21066. },
  21067. },
  21068. [
  21069. {
  21070. name: "Macro",
  21071. height: math.unit(293, "meters"),
  21072. default: true
  21073. },
  21074. ]
  21075. ))
  21076. characterMakers.push(() => makeCharacter(
  21077. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21078. {
  21079. front: {
  21080. height: math.unit(1050, "feet"),
  21081. weight: math.unit(200000, "tons"),
  21082. name: "Front",
  21083. image: {
  21084. source: "./media/characters/alessandra/front.svg",
  21085. extra: 960 / 912,
  21086. bottom: 0.06
  21087. }
  21088. },
  21089. },
  21090. [
  21091. {
  21092. name: "Macro",
  21093. height: math.unit(1050, "feet")
  21094. },
  21095. {
  21096. name: "Macro+",
  21097. height: math.unit(900, "meters"),
  21098. default: true
  21099. },
  21100. ]
  21101. ))
  21102. characterMakers.push(() => makeCharacter(
  21103. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21104. {
  21105. front: {
  21106. height: math.unit(5, "feet"),
  21107. weight: math.unit(187, "lb"),
  21108. name: "Front",
  21109. image: {
  21110. source: "./media/characters/person/front.svg",
  21111. extra: 3087 / 2945,
  21112. bottom: 91 / 3181
  21113. }
  21114. },
  21115. },
  21116. [
  21117. {
  21118. name: "Micro",
  21119. height: math.unit(3, "inches")
  21120. },
  21121. {
  21122. name: "Normal",
  21123. height: math.unit(5, "feet"),
  21124. default: true
  21125. },
  21126. {
  21127. name: "Macro",
  21128. height: math.unit(90, "feet")
  21129. },
  21130. {
  21131. name: "Max Size",
  21132. height: math.unit(280, "feet")
  21133. },
  21134. ]
  21135. ))
  21136. characterMakers.push(() => makeCharacter(
  21137. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21138. {
  21139. front: {
  21140. height: math.unit(4.5, "meters"),
  21141. weight: math.unit(3200, "lb"),
  21142. name: "Front",
  21143. image: {
  21144. source: "./media/characters/ty/front.svg",
  21145. extra: 1038 / 960,
  21146. bottom: 31.156 / 1068
  21147. }
  21148. },
  21149. back: {
  21150. height: math.unit(4.5, "meters"),
  21151. weight: math.unit(3200, "lb"),
  21152. name: "Back",
  21153. image: {
  21154. source: "./media/characters/ty/back.svg",
  21155. extra: 1044 / 966,
  21156. bottom: 7.48 / 1049
  21157. }
  21158. },
  21159. },
  21160. [
  21161. {
  21162. name: "Normal",
  21163. height: math.unit(4.5, "meters"),
  21164. default: true
  21165. },
  21166. ]
  21167. ))
  21168. characterMakers.push(() => makeCharacter(
  21169. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21170. {
  21171. front: {
  21172. height: math.unit(5 + 4 / 12, "feet"),
  21173. weight: math.unit(115, "lb"),
  21174. name: "Front",
  21175. image: {
  21176. source: "./media/characters/rocky/front.svg",
  21177. extra: 1012 / 975,
  21178. bottom: 54 / 1066
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Normal",
  21185. height: math.unit(5 + 4 / 12, "feet"),
  21186. default: true
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21192. {
  21193. upright: {
  21194. height: math.unit(6, "meters"),
  21195. weight: math.unit(4000, "kg"),
  21196. name: "Upright",
  21197. image: {
  21198. source: "./media/characters/ruin/upright.svg",
  21199. extra: 668 / 661,
  21200. bottom: 42 / 799.8396
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Normal",
  21207. height: math.unit(6, "meters"),
  21208. default: true
  21209. },
  21210. ]
  21211. ))
  21212. characterMakers.push(() => makeCharacter(
  21213. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21214. {
  21215. front: {
  21216. height: math.unit(5, "feet"),
  21217. weight: math.unit(106, "lb"),
  21218. name: "Front",
  21219. image: {
  21220. source: "./media/characters/robin/front.svg",
  21221. extra: 862 / 799,
  21222. bottom: 42.4 / 914.8856
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(5, "feet"),
  21230. default: true
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21236. {
  21237. side: {
  21238. height: math.unit(3, "feet"),
  21239. weight: math.unit(225, "lb"),
  21240. name: "Side",
  21241. image: {
  21242. source: "./media/characters/saian/side.svg",
  21243. extra: 566 / 356,
  21244. bottom: 79.7 / 643
  21245. }
  21246. },
  21247. maw: {
  21248. height: math.unit(2.85, "feet"),
  21249. name: "Maw",
  21250. image: {
  21251. source: "./media/characters/saian/maw.svg"
  21252. }
  21253. },
  21254. },
  21255. [
  21256. {
  21257. name: "Normal",
  21258. height: math.unit(3, "feet"),
  21259. default: true
  21260. },
  21261. ]
  21262. ))
  21263. characterMakers.push(() => makeCharacter(
  21264. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21265. {
  21266. side: {
  21267. height: math.unit(8, "feet"),
  21268. weight: math.unit(300, "lb"),
  21269. name: "Side",
  21270. image: {
  21271. source: "./media/characters/equus-silvermane/side.svg",
  21272. extra: 2176 / 2050,
  21273. bottom: 65.7 / 2245
  21274. }
  21275. },
  21276. front: {
  21277. height: math.unit(8, "feet"),
  21278. weight: math.unit(300, "lb"),
  21279. name: "Front",
  21280. image: {
  21281. source: "./media/characters/equus-silvermane/front.svg",
  21282. extra: 4633 / 4400,
  21283. bottom: 71.3 / 4706.915
  21284. }
  21285. },
  21286. sideStepping: {
  21287. height: math.unit(8, "feet"),
  21288. weight: math.unit(300, "lb"),
  21289. name: "Side (Stepping)",
  21290. image: {
  21291. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21292. extra: 1968 / 1860,
  21293. bottom: 16.4 / 1989
  21294. }
  21295. },
  21296. },
  21297. [
  21298. {
  21299. name: "Normal",
  21300. height: math.unit(8, "feet")
  21301. },
  21302. {
  21303. name: "Minimacro",
  21304. height: math.unit(75, "feet"),
  21305. default: true
  21306. },
  21307. {
  21308. name: "Macro",
  21309. height: math.unit(150, "feet")
  21310. },
  21311. {
  21312. name: "Macro+",
  21313. height: math.unit(1000, "feet")
  21314. },
  21315. {
  21316. name: "Megamacro",
  21317. height: math.unit(1, "mile")
  21318. },
  21319. ]
  21320. ))
  21321. characterMakers.push(() => makeCharacter(
  21322. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21323. {
  21324. side: {
  21325. height: math.unit(20, "feet"),
  21326. weight: math.unit(30000, "kg"),
  21327. name: "Side",
  21328. image: {
  21329. source: "./media/characters/windar/side.svg",
  21330. extra: 1491 / 1248,
  21331. bottom: 82.56 / 1568
  21332. }
  21333. },
  21334. },
  21335. [
  21336. {
  21337. name: "Normal",
  21338. height: math.unit(20, "feet"),
  21339. default: true
  21340. },
  21341. ]
  21342. ))
  21343. characterMakers.push(() => makeCharacter(
  21344. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21345. {
  21346. side: {
  21347. height: math.unit(15.66, "feet"),
  21348. weight: math.unit(150, "lb"),
  21349. name: "Side",
  21350. image: {
  21351. source: "./media/characters/melody/side.svg",
  21352. extra: 1097 / 944,
  21353. bottom: 11.8 / 1109
  21354. }
  21355. },
  21356. sideOutfit: {
  21357. height: math.unit(15.66, "feet"),
  21358. weight: math.unit(150, "lb"),
  21359. name: "Side (Outfit)",
  21360. image: {
  21361. source: "./media/characters/melody/side-outfit.svg",
  21362. extra: 1097 / 944,
  21363. bottom: 11.8 / 1109
  21364. }
  21365. },
  21366. },
  21367. [
  21368. {
  21369. name: "Normal",
  21370. height: math.unit(15.66, "feet"),
  21371. default: true
  21372. },
  21373. ]
  21374. ))
  21375. characterMakers.push(() => makeCharacter(
  21376. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21377. {
  21378. front: {
  21379. height: math.unit(8, "feet"),
  21380. weight: math.unit(325, "lb"),
  21381. name: "Front",
  21382. image: {
  21383. source: "./media/characters/windera/front.svg",
  21384. extra: 3180 / 2845,
  21385. bottom: 178 / 3365
  21386. }
  21387. },
  21388. },
  21389. [
  21390. {
  21391. name: "Normal",
  21392. height: math.unit(8, "feet"),
  21393. default: true
  21394. },
  21395. ]
  21396. ))
  21397. characterMakers.push(() => makeCharacter(
  21398. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21399. {
  21400. front: {
  21401. height: math.unit(28.75, "feet"),
  21402. weight: math.unit(2000, "kg"),
  21403. name: "Front",
  21404. image: {
  21405. source: "./media/characters/sonear/front.svg",
  21406. extra: 1041.1 / 964.9,
  21407. bottom: 53.7 / 1096.6
  21408. }
  21409. },
  21410. },
  21411. [
  21412. {
  21413. name: "Normal",
  21414. height: math.unit(28.75, "feet"),
  21415. default: true
  21416. },
  21417. ]
  21418. ))
  21419. characterMakers.push(() => makeCharacter(
  21420. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21421. {
  21422. side: {
  21423. height: math.unit(25.5, "feet"),
  21424. weight: math.unit(23000, "kg"),
  21425. name: "Side",
  21426. image: {
  21427. source: "./media/characters/kanara/side.svg"
  21428. }
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(25.5, "feet"),
  21435. default: true
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21441. {
  21442. side: {
  21443. height: math.unit(10, "feet"),
  21444. weight: math.unit(1000, "kg"),
  21445. name: "Side",
  21446. image: {
  21447. source: "./media/characters/ereus/side.svg",
  21448. extra: 1157 / 959,
  21449. bottom: 153 / 1312.5
  21450. }
  21451. },
  21452. },
  21453. [
  21454. {
  21455. name: "Normal",
  21456. height: math.unit(10, "feet"),
  21457. default: true
  21458. },
  21459. ]
  21460. ))
  21461. characterMakers.push(() => makeCharacter(
  21462. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21463. {
  21464. side: {
  21465. height: math.unit(4.5, "feet"),
  21466. weight: math.unit(500, "lb"),
  21467. name: "Side",
  21468. image: {
  21469. source: "./media/characters/e-ter/side.svg",
  21470. extra: 1550 / 1248,
  21471. bottom: 146 / 1694
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Normal",
  21478. height: math.unit(4.5, "feet"),
  21479. default: true
  21480. },
  21481. ]
  21482. ))
  21483. characterMakers.push(() => makeCharacter(
  21484. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21485. {
  21486. side: {
  21487. height: math.unit(9.7, "feet"),
  21488. weight: math.unit(4000, "kg"),
  21489. name: "Side",
  21490. image: {
  21491. source: "./media/characters/yamie/side.svg"
  21492. }
  21493. },
  21494. },
  21495. [
  21496. {
  21497. name: "Normal",
  21498. height: math.unit(9.7, "feet"),
  21499. default: true
  21500. },
  21501. ]
  21502. ))
  21503. characterMakers.push(() => makeCharacter(
  21504. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21505. {
  21506. front: {
  21507. height: math.unit(50, "feet"),
  21508. weight: math.unit(50000, "kg"),
  21509. name: "Front",
  21510. image: {
  21511. source: "./media/characters/anders/front.svg",
  21512. extra: 570 / 539,
  21513. bottom: 14.7 / 586.7
  21514. }
  21515. },
  21516. },
  21517. [
  21518. {
  21519. name: "Large",
  21520. height: math.unit(50, "feet")
  21521. },
  21522. {
  21523. name: "Macro",
  21524. height: math.unit(2000, "feet"),
  21525. default: true
  21526. },
  21527. {
  21528. name: "Megamacro",
  21529. height: math.unit(12, "miles")
  21530. },
  21531. ]
  21532. ))
  21533. characterMakers.push(() => makeCharacter(
  21534. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21535. {
  21536. front: {
  21537. height: math.unit(7 + 2 / 12, "feet"),
  21538. weight: math.unit(300, "lb"),
  21539. name: "Front",
  21540. image: {
  21541. source: "./media/characters/reban/front.svg",
  21542. extra: 516 / 487,
  21543. bottom: 42.82 / 558.356
  21544. }
  21545. },
  21546. dick: {
  21547. height: math.unit(7 / 5, "feet"),
  21548. name: "Dick",
  21549. image: {
  21550. source: "./media/characters/reban/dick.svg"
  21551. }
  21552. },
  21553. },
  21554. [
  21555. {
  21556. name: "Natural Height",
  21557. height: math.unit(7 + 2 / 12, "feet")
  21558. },
  21559. {
  21560. name: "Macro",
  21561. height: math.unit(500, "feet"),
  21562. default: true
  21563. },
  21564. {
  21565. name: "Canon Height",
  21566. height: math.unit(50, "AU")
  21567. },
  21568. ]
  21569. ))
  21570. characterMakers.push(() => makeCharacter(
  21571. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21572. {
  21573. front: {
  21574. height: math.unit(6, "feet"),
  21575. weight: math.unit(150, "lb"),
  21576. name: "Front",
  21577. image: {
  21578. source: "./media/characters/terrance-keayes/front.svg",
  21579. extra: 1.005,
  21580. bottom: 151 / 1615
  21581. }
  21582. },
  21583. side: {
  21584. height: math.unit(6, "feet"),
  21585. weight: math.unit(150, "lb"),
  21586. name: "Side",
  21587. image: {
  21588. source: "./media/characters/terrance-keayes/side.svg",
  21589. extra: 1.005,
  21590. bottom: 129.4 / 1544
  21591. }
  21592. },
  21593. back: {
  21594. height: math.unit(6, "feet"),
  21595. weight: math.unit(150, "lb"),
  21596. name: "Back",
  21597. image: {
  21598. source: "./media/characters/terrance-keayes/back.svg",
  21599. extra: 1.005,
  21600. bottom: 58.4 / 1557.3
  21601. }
  21602. },
  21603. dick: {
  21604. height: math.unit(6 * 0.208, "feet"),
  21605. name: "Dick",
  21606. image: {
  21607. source: "./media/characters/terrance-keayes/dick.svg"
  21608. }
  21609. },
  21610. },
  21611. [
  21612. {
  21613. name: "Canon Height",
  21614. height: math.unit(35, "miles"),
  21615. default: true
  21616. },
  21617. ]
  21618. ))
  21619. characterMakers.push(() => makeCharacter(
  21620. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21621. {
  21622. front: {
  21623. height: math.unit(6, "feet"),
  21624. weight: math.unit(150, "lb"),
  21625. name: "Front",
  21626. image: {
  21627. source: "./media/characters/ofelia/front.svg",
  21628. extra: 546 / 541,
  21629. bottom: 39 / 583
  21630. }
  21631. },
  21632. back: {
  21633. height: math.unit(6, "feet"),
  21634. weight: math.unit(150, "lb"),
  21635. name: "Back",
  21636. image: {
  21637. source: "./media/characters/ofelia/back.svg",
  21638. extra: 564 / 559.5,
  21639. bottom: 8.69 / 573.02
  21640. }
  21641. },
  21642. maw: {
  21643. height: math.unit(1, "feet"),
  21644. name: "Maw",
  21645. image: {
  21646. source: "./media/characters/ofelia/maw.svg"
  21647. }
  21648. },
  21649. foot: {
  21650. height: math.unit(1.949, "feet"),
  21651. name: "Foot",
  21652. image: {
  21653. source: "./media/characters/ofelia/foot.svg"
  21654. }
  21655. },
  21656. },
  21657. [
  21658. {
  21659. name: "Canon Height",
  21660. height: math.unit(2000, "miles"),
  21661. default: true
  21662. },
  21663. ]
  21664. ))
  21665. characterMakers.push(() => makeCharacter(
  21666. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21667. {
  21668. front: {
  21669. height: math.unit(6, "feet"),
  21670. weight: math.unit(150, "lb"),
  21671. name: "Front",
  21672. image: {
  21673. source: "./media/characters/samuel/front.svg",
  21674. extra: 265 / 258,
  21675. bottom: 2 / 266.1566
  21676. }
  21677. },
  21678. },
  21679. [
  21680. {
  21681. name: "Macro",
  21682. height: math.unit(100, "feet"),
  21683. default: true
  21684. },
  21685. {
  21686. name: "Full Size",
  21687. height: math.unit(1000, "miles")
  21688. },
  21689. ]
  21690. ))
  21691. characterMakers.push(() => makeCharacter(
  21692. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21693. {
  21694. front: {
  21695. height: math.unit(6, "feet"),
  21696. weight: math.unit(300, "lb"),
  21697. name: "Front",
  21698. image: {
  21699. source: "./media/characters/beishir-kiel/front.svg",
  21700. extra: 569 / 547,
  21701. bottom: 41.9 / 609
  21702. }
  21703. },
  21704. maw: {
  21705. height: math.unit(6 * 0.202, "feet"),
  21706. name: "Maw",
  21707. image: {
  21708. source: "./media/characters/beishir-kiel/maw.svg"
  21709. }
  21710. },
  21711. },
  21712. [
  21713. {
  21714. name: "Macro",
  21715. height: math.unit(300, "feet"),
  21716. default: true
  21717. },
  21718. ]
  21719. ))
  21720. characterMakers.push(() => makeCharacter(
  21721. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21722. {
  21723. front: {
  21724. height: math.unit(5 + 8 / 12, "feet"),
  21725. weight: math.unit(120, "lb"),
  21726. name: "Front",
  21727. image: {
  21728. source: "./media/characters/logan-grey/front.svg",
  21729. extra: 2539 / 2393,
  21730. bottom: 97.6 / 2636.37
  21731. }
  21732. },
  21733. frontAlt: {
  21734. height: math.unit(5 + 8 / 12, "feet"),
  21735. weight: math.unit(120, "lb"),
  21736. name: "Front (Alt)",
  21737. image: {
  21738. source: "./media/characters/logan-grey/front-alt.svg",
  21739. extra: 958 / 893,
  21740. bottom: 15 / 970.768
  21741. }
  21742. },
  21743. back: {
  21744. height: math.unit(5 + 8 / 12, "feet"),
  21745. weight: math.unit(120, "lb"),
  21746. name: "Back",
  21747. image: {
  21748. source: "./media/characters/logan-grey/back.svg",
  21749. extra: 958 / 893,
  21750. bottom: 2.1881 / 970.9788
  21751. }
  21752. },
  21753. dick: {
  21754. height: math.unit(1.437, "feet"),
  21755. name: "Dick",
  21756. image: {
  21757. source: "./media/characters/logan-grey/dick.svg"
  21758. }
  21759. },
  21760. },
  21761. [
  21762. {
  21763. name: "Normal",
  21764. height: math.unit(5 + 8 / 12, "feet")
  21765. },
  21766. {
  21767. name: "The 500 Foot Femboy",
  21768. height: math.unit(500, "feet"),
  21769. default: true
  21770. },
  21771. {
  21772. name: "Megmacro",
  21773. height: math.unit(20, "miles")
  21774. },
  21775. ]
  21776. ))
  21777. characterMakers.push(() => makeCharacter(
  21778. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21779. {
  21780. front: {
  21781. height: math.unit(8 + 2 / 12, "feet"),
  21782. weight: math.unit(275, "lb"),
  21783. name: "Front",
  21784. image: {
  21785. source: "./media/characters/draganta/front.svg",
  21786. extra: 1177 / 1135,
  21787. bottom: 33.46 / 1212.1
  21788. }
  21789. },
  21790. },
  21791. [
  21792. {
  21793. name: "Normal",
  21794. height: math.unit(8 + 6 / 12, "feet"),
  21795. default: true
  21796. },
  21797. {
  21798. name: "Macro",
  21799. height: math.unit(150, "feet")
  21800. },
  21801. {
  21802. name: "Megamacro",
  21803. height: math.unit(1000, "miles")
  21804. },
  21805. ]
  21806. ))
  21807. characterMakers.push(() => makeCharacter(
  21808. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21809. {
  21810. front: {
  21811. height: math.unit(1.72, "m"),
  21812. weight: math.unit(80, "lb"),
  21813. name: "Front",
  21814. image: {
  21815. source: "./media/characters/voski/front.svg",
  21816. extra: 2076.22 / 2022.4,
  21817. bottom: 102.7 / 2177.3866
  21818. }
  21819. },
  21820. frontNsfw: {
  21821. height: math.unit(1.72, "m"),
  21822. weight: math.unit(80, "lb"),
  21823. name: "Front (NSFW)",
  21824. image: {
  21825. source: "./media/characters/voski/front-nsfw.svg",
  21826. extra: 2076.22 / 2022.4,
  21827. bottom: 102.7 / 2177.3866
  21828. }
  21829. },
  21830. back: {
  21831. height: math.unit(1.72, "m"),
  21832. weight: math.unit(80, "lb"),
  21833. name: "Back",
  21834. image: {
  21835. source: "./media/characters/voski/back.svg",
  21836. extra: 2104 / 2051,
  21837. bottom: 10.45 / 2113.63
  21838. }
  21839. },
  21840. },
  21841. [
  21842. {
  21843. name: "Normal",
  21844. height: math.unit(1.72, "m")
  21845. },
  21846. {
  21847. name: "Macro",
  21848. height: math.unit(55, "m"),
  21849. default: true
  21850. },
  21851. {
  21852. name: "Macro+",
  21853. height: math.unit(300, "m")
  21854. },
  21855. {
  21856. name: "Macro++",
  21857. height: math.unit(700, "m")
  21858. },
  21859. {
  21860. name: "Macro+++",
  21861. height: math.unit(4500, "m")
  21862. },
  21863. {
  21864. name: "Macro++++",
  21865. height: math.unit(45, "km")
  21866. },
  21867. {
  21868. name: "Macro+++++",
  21869. height: math.unit(1220, "km")
  21870. },
  21871. ]
  21872. ))
  21873. characterMakers.push(() => makeCharacter(
  21874. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21875. {
  21876. front: {
  21877. height: math.unit(2.3, "m"),
  21878. weight: math.unit(304, "kg"),
  21879. name: "Front",
  21880. image: {
  21881. source: "./media/characters/icowom-lee/front.svg",
  21882. extra: 985 / 955,
  21883. bottom: 25.4 / 1012
  21884. }
  21885. },
  21886. fronttentacles: {
  21887. height: math.unit(2.3, "m"),
  21888. weight: math.unit(304, "kg"),
  21889. name: "Front-tentacles",
  21890. image: {
  21891. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21892. extra: 985 / 955,
  21893. bottom: 25.4 / 1012
  21894. }
  21895. },
  21896. back: {
  21897. height: math.unit(2.3, "m"),
  21898. weight: math.unit(304, "kg"),
  21899. name: "Back",
  21900. image: {
  21901. source: "./media/characters/icowom-lee/back.svg",
  21902. extra: 975 / 954,
  21903. bottom: 9.5 / 985
  21904. }
  21905. },
  21906. backtentacles: {
  21907. height: math.unit(2.3, "m"),
  21908. weight: math.unit(304, "kg"),
  21909. name: "Back-tentacles",
  21910. image: {
  21911. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21912. extra: 975 / 954,
  21913. bottom: 9.5 / 985
  21914. }
  21915. },
  21916. frontDressed: {
  21917. height: math.unit(2.3, "m"),
  21918. weight: math.unit(304, "kg"),
  21919. name: "Front (Dressed)",
  21920. image: {
  21921. source: "./media/characters/icowom-lee/front-dressed.svg",
  21922. extra: 3076 / 2933,
  21923. bottom: 51.4 / 3125.1889
  21924. }
  21925. },
  21926. rump: {
  21927. height: math.unit(0.776, "meters"),
  21928. name: "Rump",
  21929. image: {
  21930. source: "./media/characters/icowom-lee/rump.svg"
  21931. }
  21932. },
  21933. genitals: {
  21934. height: math.unit(0.78, "meters"),
  21935. name: "Genitals",
  21936. image: {
  21937. source: "./media/characters/icowom-lee/genitals.svg"
  21938. }
  21939. },
  21940. },
  21941. [
  21942. {
  21943. name: "Normal",
  21944. height: math.unit(2.3, "meters"),
  21945. default: true
  21946. },
  21947. {
  21948. name: "Macro",
  21949. height: math.unit(94, "meters"),
  21950. default: true
  21951. },
  21952. ]
  21953. ))
  21954. characterMakers.push(() => makeCharacter(
  21955. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21956. {
  21957. front: {
  21958. height: math.unit(22, "meters"),
  21959. weight: math.unit(21000, "kg"),
  21960. name: "Front",
  21961. image: {
  21962. source: "./media/characters/shock-diamond/front.svg",
  21963. extra: 2204 / 2053,
  21964. bottom: 65 / 2239.47
  21965. }
  21966. },
  21967. frontNude: {
  21968. height: math.unit(22, "meters"),
  21969. weight: math.unit(21000, "kg"),
  21970. name: "Front (Nude)",
  21971. image: {
  21972. source: "./media/characters/shock-diamond/front-nude.svg",
  21973. extra: 2514 / 2285,
  21974. bottom: 13 / 2527.56
  21975. }
  21976. },
  21977. },
  21978. [
  21979. {
  21980. name: "Normal",
  21981. height: math.unit(3, "meters")
  21982. },
  21983. {
  21984. name: "Macro",
  21985. height: math.unit(22, "meters"),
  21986. default: true
  21987. },
  21988. ]
  21989. ))
  21990. characterMakers.push(() => makeCharacter(
  21991. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21992. {
  21993. front: {
  21994. height: math.unit(5 + 4 / 12, "feet"),
  21995. weight: math.unit(120, "lb"),
  21996. name: "Front",
  21997. image: {
  21998. source: "./media/characters/rory/front.svg",
  21999. extra: 589 / 556,
  22000. bottom: 45.7 / 635.76
  22001. }
  22002. },
  22003. frontNude: {
  22004. height: math.unit(5 + 4 / 12, "feet"),
  22005. weight: math.unit(120, "lb"),
  22006. name: "Front (Nude)",
  22007. image: {
  22008. source: "./media/characters/rory/front-nude.svg",
  22009. extra: 589 / 556,
  22010. bottom: 45.7 / 635.76
  22011. }
  22012. },
  22013. side: {
  22014. height: math.unit(5 + 4 / 12, "feet"),
  22015. weight: math.unit(120, "lb"),
  22016. name: "Side",
  22017. image: {
  22018. source: "./media/characters/rory/side.svg",
  22019. extra: 597 / 564,
  22020. bottom: 55 / 653
  22021. }
  22022. },
  22023. back: {
  22024. height: math.unit(5 + 4 / 12, "feet"),
  22025. weight: math.unit(120, "lb"),
  22026. name: "Back",
  22027. image: {
  22028. source: "./media/characters/rory/back.svg",
  22029. extra: 620 / 585,
  22030. bottom: 8.86 / 630.43
  22031. }
  22032. },
  22033. dick: {
  22034. height: math.unit(0.86, "feet"),
  22035. name: "Dick",
  22036. image: {
  22037. source: "./media/characters/rory/dick.svg"
  22038. }
  22039. },
  22040. },
  22041. [
  22042. {
  22043. name: "Normal",
  22044. height: math.unit(5 + 4 / 12, "feet"),
  22045. default: true
  22046. },
  22047. {
  22048. name: "Macro",
  22049. height: math.unit(100, "feet")
  22050. },
  22051. {
  22052. name: "Macro+",
  22053. height: math.unit(140, "feet")
  22054. },
  22055. {
  22056. name: "Macro++",
  22057. height: math.unit(300, "feet")
  22058. },
  22059. ]
  22060. ))
  22061. characterMakers.push(() => makeCharacter(
  22062. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22063. {
  22064. front: {
  22065. height: math.unit(5 + 9 / 12, "feet"),
  22066. weight: math.unit(190, "lb"),
  22067. name: "Front",
  22068. image: {
  22069. source: "./media/characters/sprisk/front.svg",
  22070. extra: 1225 / 1180,
  22071. bottom: 42.7 / 1266.4
  22072. }
  22073. },
  22074. frontNsfw: {
  22075. height: math.unit(5 + 9 / 12, "feet"),
  22076. weight: math.unit(190, "lb"),
  22077. name: "Front (NSFW)",
  22078. image: {
  22079. source: "./media/characters/sprisk/front-nsfw.svg",
  22080. extra: 1225 / 1180,
  22081. bottom: 42.7 / 1266.4
  22082. }
  22083. },
  22084. back: {
  22085. height: math.unit(5 + 9 / 12, "feet"),
  22086. weight: math.unit(190, "lb"),
  22087. name: "Back",
  22088. image: {
  22089. source: "./media/characters/sprisk/back.svg",
  22090. extra: 1247 / 1200,
  22091. bottom: 5.6 / 1253.04
  22092. }
  22093. },
  22094. },
  22095. [
  22096. {
  22097. name: "Tiny",
  22098. height: math.unit(2, "inches")
  22099. },
  22100. {
  22101. name: "Normal",
  22102. height: math.unit(5 + 9 / 12, "feet"),
  22103. default: true
  22104. },
  22105. {
  22106. name: "Mini Macro",
  22107. height: math.unit(18, "feet")
  22108. },
  22109. {
  22110. name: "Macro",
  22111. height: math.unit(100, "feet")
  22112. },
  22113. {
  22114. name: "MACRO",
  22115. height: math.unit(50, "miles")
  22116. },
  22117. {
  22118. name: "M A C R O",
  22119. height: math.unit(300, "miles")
  22120. },
  22121. ]
  22122. ))
  22123. characterMakers.push(() => makeCharacter(
  22124. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22125. {
  22126. side: {
  22127. height: math.unit(15.6, "meters"),
  22128. weight: math.unit(700000, "kg"),
  22129. name: "Side",
  22130. image: {
  22131. source: "./media/characters/bunsen/side.svg",
  22132. extra: 1644 / 358
  22133. }
  22134. },
  22135. foot: {
  22136. height: math.unit(1.611 * 1644 / 358, "meter"),
  22137. name: "Foot",
  22138. image: {
  22139. source: "./media/characters/bunsen/foot.svg"
  22140. }
  22141. },
  22142. },
  22143. [
  22144. {
  22145. name: "Small",
  22146. height: math.unit(10, "feet")
  22147. },
  22148. {
  22149. name: "Normal",
  22150. height: math.unit(15.6, "meters"),
  22151. default: true
  22152. },
  22153. ]
  22154. ))
  22155. characterMakers.push(() => makeCharacter(
  22156. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22157. {
  22158. front: {
  22159. height: math.unit(4 + 11 / 12, "feet"),
  22160. weight: math.unit(140, "lb"),
  22161. name: "Front",
  22162. image: {
  22163. source: "./media/characters/sesh/front.svg",
  22164. extra: 3420 / 3231,
  22165. bottom: 72 / 3949.5
  22166. }
  22167. },
  22168. },
  22169. [
  22170. {
  22171. name: "Normal",
  22172. height: math.unit(4 + 11 / 12, "feet")
  22173. },
  22174. {
  22175. name: "Grown",
  22176. height: math.unit(15, "feet"),
  22177. default: true
  22178. },
  22179. {
  22180. name: "Macro",
  22181. height: math.unit(1500, "feet")
  22182. },
  22183. {
  22184. name: "Megamacro",
  22185. height: math.unit(30, "miles")
  22186. },
  22187. {
  22188. name: "Continental",
  22189. height: math.unit(3000, "miles")
  22190. },
  22191. {
  22192. name: "Gravity Mass",
  22193. height: math.unit(300000, "miles")
  22194. },
  22195. {
  22196. name: "Planet Buster",
  22197. height: math.unit(30000000, "miles")
  22198. },
  22199. {
  22200. name: "Big",
  22201. height: math.unit(3000000000, "miles")
  22202. },
  22203. ]
  22204. ))
  22205. characterMakers.push(() => makeCharacter(
  22206. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22207. {
  22208. front: {
  22209. height: math.unit(9, "feet"),
  22210. weight: math.unit(350, "lb"),
  22211. name: "Front",
  22212. image: {
  22213. source: "./media/characters/pepper/front.svg",
  22214. extra: 1448 / 1312,
  22215. bottom: 9.4 / 1457.88
  22216. }
  22217. },
  22218. back: {
  22219. height: math.unit(9, "feet"),
  22220. weight: math.unit(350, "lb"),
  22221. name: "Back",
  22222. image: {
  22223. source: "./media/characters/pepper/back.svg",
  22224. extra: 1423 / 1300,
  22225. bottom: 4.6 / 1429
  22226. }
  22227. },
  22228. maw: {
  22229. height: math.unit(0.932, "feet"),
  22230. name: "Maw",
  22231. image: {
  22232. source: "./media/characters/pepper/maw.svg"
  22233. }
  22234. },
  22235. },
  22236. [
  22237. {
  22238. name: "Normal",
  22239. height: math.unit(9, "feet"),
  22240. default: true
  22241. },
  22242. ]
  22243. ))
  22244. characterMakers.push(() => makeCharacter(
  22245. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22246. {
  22247. front: {
  22248. height: math.unit(6, "feet"),
  22249. weight: math.unit(150, "lb"),
  22250. name: "Front",
  22251. image: {
  22252. source: "./media/characters/maelstrom/front.svg",
  22253. extra: 2100 / 1883,
  22254. bottom: 94 / 2196.7
  22255. }
  22256. },
  22257. },
  22258. [
  22259. {
  22260. name: "Less Kaiju",
  22261. height: math.unit(200, "feet")
  22262. },
  22263. {
  22264. name: "Kaiju",
  22265. height: math.unit(400, "feet"),
  22266. default: true
  22267. },
  22268. {
  22269. name: "Kaiju-er",
  22270. height: math.unit(600, "feet")
  22271. },
  22272. ]
  22273. ))
  22274. characterMakers.push(() => makeCharacter(
  22275. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22276. {
  22277. front: {
  22278. height: math.unit(6 + 5 / 12, "feet"),
  22279. weight: math.unit(180, "lb"),
  22280. name: "Front",
  22281. image: {
  22282. source: "./media/characters/lexir/front.svg",
  22283. extra: 180 / 172,
  22284. bottom: 12 / 192
  22285. }
  22286. },
  22287. back: {
  22288. height: math.unit(6 + 5 / 12, "feet"),
  22289. weight: math.unit(180, "lb"),
  22290. name: "Back",
  22291. image: {
  22292. source: "./media/characters/lexir/back.svg",
  22293. extra: 183.84 / 175.5,
  22294. bottom: 3.1 / 187
  22295. }
  22296. },
  22297. },
  22298. [
  22299. {
  22300. name: "Very Smal",
  22301. height: math.unit(1, "nm")
  22302. },
  22303. {
  22304. name: "Normal",
  22305. height: math.unit(6 + 5 / 12, "feet"),
  22306. default: true
  22307. },
  22308. {
  22309. name: "Macro",
  22310. height: math.unit(1, "mile")
  22311. },
  22312. {
  22313. name: "Megamacro",
  22314. height: math.unit(50, "miles")
  22315. },
  22316. ]
  22317. ))
  22318. characterMakers.push(() => makeCharacter(
  22319. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22320. {
  22321. front: {
  22322. height: math.unit(1.5, "meters"),
  22323. weight: math.unit(100, "lb"),
  22324. name: "Front",
  22325. image: {
  22326. source: "./media/characters/maksio/front.svg",
  22327. extra: 1549 / 1531,
  22328. bottom: 123.7 / 1674.5429
  22329. }
  22330. },
  22331. back: {
  22332. height: math.unit(1.5, "meters"),
  22333. weight: math.unit(100, "lb"),
  22334. name: "Back",
  22335. image: {
  22336. source: "./media/characters/maksio/back.svg",
  22337. extra: 1541 / 1509,
  22338. bottom: 97 / 1639
  22339. }
  22340. },
  22341. hand: {
  22342. height: math.unit(0.621, "feet"),
  22343. name: "Hand",
  22344. image: {
  22345. source: "./media/characters/maksio/hand.svg"
  22346. }
  22347. },
  22348. foot: {
  22349. height: math.unit(1.611, "feet"),
  22350. name: "Foot",
  22351. image: {
  22352. source: "./media/characters/maksio/foot.svg"
  22353. }
  22354. },
  22355. },
  22356. [
  22357. {
  22358. name: "Shrunken",
  22359. height: math.unit(10, "cm")
  22360. },
  22361. {
  22362. name: "Normal",
  22363. height: math.unit(150, "cm"),
  22364. default: true
  22365. },
  22366. ]
  22367. ))
  22368. characterMakers.push(() => makeCharacter(
  22369. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22370. {
  22371. front: {
  22372. height: math.unit(100, "feet"),
  22373. name: "Front",
  22374. image: {
  22375. source: "./media/characters/erza-bear/front.svg",
  22376. extra: 2449 / 2390,
  22377. bottom: 46 / 2494
  22378. }
  22379. },
  22380. back: {
  22381. height: math.unit(100, "feet"),
  22382. name: "Back",
  22383. image: {
  22384. source: "./media/characters/erza-bear/back.svg",
  22385. extra: 2489 / 2430,
  22386. bottom: 85.4 / 2480
  22387. }
  22388. },
  22389. tail: {
  22390. height: math.unit(42, "feet"),
  22391. name: "Tail",
  22392. image: {
  22393. source: "./media/characters/erza-bear/tail.svg"
  22394. }
  22395. },
  22396. tongue: {
  22397. height: math.unit(8, "feet"),
  22398. name: "Tongue",
  22399. image: {
  22400. source: "./media/characters/erza-bear/tongue.svg"
  22401. }
  22402. },
  22403. dick: {
  22404. height: math.unit(10.5, "feet"),
  22405. name: "Dick",
  22406. image: {
  22407. source: "./media/characters/erza-bear/dick.svg"
  22408. }
  22409. },
  22410. dickVertical: {
  22411. height: math.unit(16.9, "feet"),
  22412. name: "Dick (Vertical)",
  22413. image: {
  22414. source: "./media/characters/erza-bear/dick-vertical.svg"
  22415. }
  22416. },
  22417. },
  22418. [
  22419. {
  22420. name: "Macro",
  22421. height: math.unit(100, "feet"),
  22422. default: true
  22423. },
  22424. ]
  22425. ))
  22426. characterMakers.push(() => makeCharacter(
  22427. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22428. {
  22429. front: {
  22430. height: math.unit(172, "cm"),
  22431. weight: math.unit(73, "kg"),
  22432. name: "Front",
  22433. image: {
  22434. source: "./media/characters/violet-flor/front.svg",
  22435. extra: 1530 / 1442,
  22436. bottom: 61.9 / 1588.8
  22437. }
  22438. },
  22439. back: {
  22440. height: math.unit(180, "cm"),
  22441. weight: math.unit(73, "kg"),
  22442. name: "Back",
  22443. image: {
  22444. source: "./media/characters/violet-flor/back.svg",
  22445. extra: 1692 / 1630,
  22446. bottom: 20 / 1712
  22447. }
  22448. },
  22449. },
  22450. [
  22451. {
  22452. name: "Normal",
  22453. height: math.unit(172, "cm"),
  22454. default: true
  22455. },
  22456. ]
  22457. ))
  22458. characterMakers.push(() => makeCharacter(
  22459. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22460. {
  22461. front: {
  22462. height: math.unit(6, "feet"),
  22463. weight: math.unit(220, "lb"),
  22464. name: "Front",
  22465. image: {
  22466. source: "./media/characters/lynn-rhea/front.svg",
  22467. extra: 310 / 273
  22468. }
  22469. },
  22470. back: {
  22471. height: math.unit(6, "feet"),
  22472. weight: math.unit(220, "lb"),
  22473. name: "Back",
  22474. image: {
  22475. source: "./media/characters/lynn-rhea/back.svg",
  22476. extra: 310 / 273
  22477. }
  22478. },
  22479. dicks: {
  22480. height: math.unit(0.9, "feet"),
  22481. name: "Dicks",
  22482. image: {
  22483. source: "./media/characters/lynn-rhea/dicks.svg"
  22484. }
  22485. },
  22486. slit: {
  22487. height: math.unit(0.4, "feet"),
  22488. name: "Slit",
  22489. image: {
  22490. source: "./media/characters/lynn-rhea/slit.svg"
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Micro",
  22497. height: math.unit(1, "inch")
  22498. },
  22499. {
  22500. name: "Macro",
  22501. height: math.unit(60, "feet"),
  22502. default: true
  22503. },
  22504. {
  22505. name: "Megamacro",
  22506. height: math.unit(2, "miles")
  22507. },
  22508. {
  22509. name: "Gigamacro",
  22510. height: math.unit(3, "earths")
  22511. },
  22512. {
  22513. name: "Galactic",
  22514. height: math.unit(0.8, "galaxies")
  22515. },
  22516. ]
  22517. ))
  22518. characterMakers.push(() => makeCharacter(
  22519. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22520. {
  22521. front: {
  22522. height: math.unit(1600, "feet"),
  22523. weight: math.unit(85758785169, "kg"),
  22524. name: "Front",
  22525. image: {
  22526. source: "./media/characters/valathos/front.svg",
  22527. extra: 1451 / 1339
  22528. }
  22529. },
  22530. },
  22531. [
  22532. {
  22533. name: "Macro",
  22534. height: math.unit(1600, "feet"),
  22535. default: true
  22536. },
  22537. ]
  22538. ))
  22539. characterMakers.push(() => makeCharacter(
  22540. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22541. {
  22542. front: {
  22543. height: math.unit(7 + 5 / 12, "feet"),
  22544. weight: math.unit(300, "lb"),
  22545. name: "Front",
  22546. image: {
  22547. source: "./media/characters/azula/front.svg",
  22548. extra: 3208 / 2880,
  22549. bottom: 80.2 / 3277
  22550. }
  22551. },
  22552. back: {
  22553. height: math.unit(7 + 5 / 12, "feet"),
  22554. weight: math.unit(300, "lb"),
  22555. name: "Back",
  22556. image: {
  22557. source: "./media/characters/azula/back.svg",
  22558. extra: 3169 / 2822,
  22559. bottom: 150.6 / 3321
  22560. }
  22561. },
  22562. },
  22563. [
  22564. {
  22565. name: "Normal",
  22566. height: math.unit(7 + 5 / 12, "feet"),
  22567. default: true
  22568. },
  22569. {
  22570. name: "Big",
  22571. height: math.unit(20, "feet")
  22572. },
  22573. ]
  22574. ))
  22575. characterMakers.push(() => makeCharacter(
  22576. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22577. {
  22578. front: {
  22579. height: math.unit(5 + 1 / 12, "feet"),
  22580. weight: math.unit(110, "lb"),
  22581. name: "Front",
  22582. image: {
  22583. source: "./media/characters/rupert/front.svg",
  22584. extra: 1549 / 1495,
  22585. bottom: 54.2 / 1604.4
  22586. }
  22587. },
  22588. },
  22589. [
  22590. {
  22591. name: "Normal",
  22592. height: math.unit(5 + 1 / 12, "feet"),
  22593. default: true
  22594. },
  22595. ]
  22596. ))
  22597. characterMakers.push(() => makeCharacter(
  22598. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22599. {
  22600. front: {
  22601. height: math.unit(8 + 4 / 12, "feet"),
  22602. weight: math.unit(350, "lb"),
  22603. name: "Front",
  22604. image: {
  22605. source: "./media/characters/sheera-castellar/front.svg",
  22606. extra: 1957 / 1894,
  22607. bottom: 26.97 / 1975.017
  22608. }
  22609. },
  22610. side: {
  22611. height: math.unit(8 + 4 / 12, "feet"),
  22612. weight: math.unit(350, "lb"),
  22613. name: "Side",
  22614. image: {
  22615. source: "./media/characters/sheera-castellar/side.svg",
  22616. extra: 1957 / 1894
  22617. }
  22618. },
  22619. back: {
  22620. height: math.unit(8 + 4 / 12, "feet"),
  22621. weight: math.unit(350, "lb"),
  22622. name: "Back",
  22623. image: {
  22624. source: "./media/characters/sheera-castellar/back.svg",
  22625. extra: 1957 / 1894
  22626. }
  22627. },
  22628. angled: {
  22629. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22630. weight: math.unit(350, "lb"),
  22631. name: "Angled",
  22632. image: {
  22633. source: "./media/characters/sheera-castellar/angled.svg",
  22634. extra: 1807 / 1707,
  22635. bottom: 68 / 1875
  22636. }
  22637. },
  22638. genitals: {
  22639. height: math.unit(2.2, "feet"),
  22640. name: "Genitals",
  22641. image: {
  22642. source: "./media/characters/sheera-castellar/genitals.svg"
  22643. }
  22644. },
  22645. },
  22646. [
  22647. {
  22648. name: "Normal",
  22649. height: math.unit(8 + 4 / 12, "feet")
  22650. },
  22651. {
  22652. name: "Macro",
  22653. height: math.unit(150, "feet"),
  22654. default: true
  22655. },
  22656. {
  22657. name: "Macro+",
  22658. height: math.unit(800, "feet")
  22659. },
  22660. ]
  22661. ))
  22662. characterMakers.push(() => makeCharacter(
  22663. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22664. {
  22665. front: {
  22666. height: math.unit(6, "feet"),
  22667. weight: math.unit(150, "lb"),
  22668. name: "Front",
  22669. image: {
  22670. source: "./media/characters/jaipur/front.svg",
  22671. extra: 3860 / 3731,
  22672. bottom: 287 / 4140
  22673. }
  22674. },
  22675. back: {
  22676. height: math.unit(6, "feet"),
  22677. weight: math.unit(150, "lb"),
  22678. name: "Back",
  22679. image: {
  22680. source: "./media/characters/jaipur/back.svg",
  22681. extra: 4060 / 3930,
  22682. bottom: 151 / 4200
  22683. }
  22684. },
  22685. },
  22686. [
  22687. {
  22688. name: "Normal",
  22689. height: math.unit(1.85, "meters"),
  22690. default: true
  22691. },
  22692. {
  22693. name: "Macro",
  22694. height: math.unit(150, "meters")
  22695. },
  22696. {
  22697. name: "Macro+",
  22698. height: math.unit(0.5, "miles")
  22699. },
  22700. {
  22701. name: "Macro++",
  22702. height: math.unit(2.5, "miles")
  22703. },
  22704. {
  22705. name: "Macro+++",
  22706. height: math.unit(12, "miles")
  22707. },
  22708. {
  22709. name: "Macro++++",
  22710. height: math.unit(120, "miles")
  22711. },
  22712. {
  22713. name: "Macro+++++",
  22714. height: math.unit(1200, "miles")
  22715. },
  22716. ]
  22717. ))
  22718. characterMakers.push(() => makeCharacter(
  22719. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22720. {
  22721. front: {
  22722. height: math.unit(6, "feet"),
  22723. weight: math.unit(150, "lb"),
  22724. name: "Front",
  22725. image: {
  22726. source: "./media/characters/sheila-wolf/front.svg",
  22727. extra: 1931 / 1808,
  22728. bottom: 29.5 / 1960
  22729. }
  22730. },
  22731. dick: {
  22732. height: math.unit(1.464, "feet"),
  22733. name: "Dick",
  22734. image: {
  22735. source: "./media/characters/sheila-wolf/dick.svg"
  22736. }
  22737. },
  22738. muzzle: {
  22739. height: math.unit(0.513, "feet"),
  22740. name: "Muzzle",
  22741. image: {
  22742. source: "./media/characters/sheila-wolf/muzzle.svg"
  22743. }
  22744. },
  22745. },
  22746. [
  22747. {
  22748. name: "Macro",
  22749. height: math.unit(70, "feet"),
  22750. default: true
  22751. },
  22752. ]
  22753. ))
  22754. characterMakers.push(() => makeCharacter(
  22755. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22756. {
  22757. front: {
  22758. height: math.unit(32, "meters"),
  22759. weight: math.unit(300000, "kg"),
  22760. name: "Front",
  22761. image: {
  22762. source: "./media/characters/almor/front.svg",
  22763. extra: 1408 / 1322,
  22764. bottom: 94.6 / 1506.5
  22765. }
  22766. },
  22767. },
  22768. [
  22769. {
  22770. name: "Macro",
  22771. height: math.unit(32, "meters"),
  22772. default: true
  22773. },
  22774. ]
  22775. ))
  22776. characterMakers.push(() => makeCharacter(
  22777. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22778. {
  22779. front: {
  22780. height: math.unit(7, "feet"),
  22781. weight: math.unit(200, "lb"),
  22782. name: "Front",
  22783. image: {
  22784. source: "./media/characters/silver/front.svg",
  22785. extra: 472.1 / 450.5,
  22786. bottom: 26.5 / 499.424
  22787. }
  22788. },
  22789. },
  22790. [
  22791. {
  22792. name: "Normal",
  22793. height: math.unit(7, "feet"),
  22794. default: true
  22795. },
  22796. {
  22797. name: "Macro",
  22798. height: math.unit(800, "feet")
  22799. },
  22800. {
  22801. name: "Megamacro",
  22802. height: math.unit(250, "miles")
  22803. },
  22804. ]
  22805. ))
  22806. characterMakers.push(() => makeCharacter(
  22807. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22808. {
  22809. front: {
  22810. height: math.unit(6, "feet"),
  22811. weight: math.unit(150, "lb"),
  22812. name: "Front",
  22813. image: {
  22814. source: "./media/characters/pliskin/front.svg",
  22815. extra: 1469 / 1359,
  22816. bottom: 70 / 1540
  22817. }
  22818. },
  22819. },
  22820. [
  22821. {
  22822. name: "Micro",
  22823. height: math.unit(3, "inches")
  22824. },
  22825. {
  22826. name: "Normal",
  22827. height: math.unit(5 + 11 / 12, "feet"),
  22828. default: true
  22829. },
  22830. {
  22831. name: "Macro",
  22832. height: math.unit(120, "feet")
  22833. },
  22834. ]
  22835. ))
  22836. characterMakers.push(() => makeCharacter(
  22837. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22838. {
  22839. front: {
  22840. height: math.unit(6, "feet"),
  22841. weight: math.unit(150, "lb"),
  22842. name: "Front",
  22843. image: {
  22844. source: "./media/characters/sammy/front.svg",
  22845. extra: 1193 / 1089,
  22846. bottom: 30.5 / 1226
  22847. }
  22848. },
  22849. },
  22850. [
  22851. {
  22852. name: "Macro",
  22853. height: math.unit(1700, "feet"),
  22854. default: true
  22855. },
  22856. {
  22857. name: "Examacro",
  22858. height: math.unit(2.5e9, "lightyears")
  22859. },
  22860. ]
  22861. ))
  22862. characterMakers.push(() => makeCharacter(
  22863. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22864. {
  22865. front: {
  22866. height: math.unit(21, "meters"),
  22867. weight: math.unit(12, "tonnes"),
  22868. name: "Front",
  22869. image: {
  22870. source: "./media/characters/kuru/front.svg",
  22871. extra: 4301 / 3785,
  22872. bottom: 371.3 / 4691
  22873. }
  22874. },
  22875. },
  22876. [
  22877. {
  22878. name: "Macro",
  22879. height: math.unit(21, "meters"),
  22880. default: true
  22881. },
  22882. ]
  22883. ))
  22884. characterMakers.push(() => makeCharacter(
  22885. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22886. {
  22887. front: {
  22888. height: math.unit(23, "meters"),
  22889. weight: math.unit(12.2, "tonnes"),
  22890. name: "Front",
  22891. image: {
  22892. source: "./media/characters/rakka/front.svg",
  22893. extra: 4670 / 4169,
  22894. bottom: 301 / 4968.7
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Macro",
  22901. height: math.unit(23, "meters"),
  22902. default: true
  22903. },
  22904. ]
  22905. ))
  22906. characterMakers.push(() => makeCharacter(
  22907. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22908. {
  22909. front: {
  22910. height: math.unit(6, "feet"),
  22911. weight: math.unit(150, "lb"),
  22912. name: "Front",
  22913. image: {
  22914. source: "./media/characters/rhys-feline/front.svg",
  22915. extra: 2488 / 2308,
  22916. bottom: 35.67 / 2519.19
  22917. }
  22918. },
  22919. },
  22920. [
  22921. {
  22922. name: "Really Small",
  22923. height: math.unit(1, "nm")
  22924. },
  22925. {
  22926. name: "Micro",
  22927. height: math.unit(4, "inches")
  22928. },
  22929. {
  22930. name: "Normal",
  22931. height: math.unit(4 + 10 / 12, "feet"),
  22932. default: true
  22933. },
  22934. {
  22935. name: "Macro",
  22936. height: math.unit(100, "feet")
  22937. },
  22938. {
  22939. name: "Megamacto",
  22940. height: math.unit(50, "miles")
  22941. },
  22942. ]
  22943. ))
  22944. characterMakers.push(() => makeCharacter(
  22945. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22946. {
  22947. side: {
  22948. height: math.unit(30, "feet"),
  22949. weight: math.unit(35000, "kg"),
  22950. name: "Side",
  22951. image: {
  22952. source: "./media/characters/alydar/side.svg",
  22953. extra: 234 / 222,
  22954. bottom: 6.5 / 241
  22955. }
  22956. },
  22957. front: {
  22958. height: math.unit(30, "feet"),
  22959. weight: math.unit(35000, "kg"),
  22960. name: "Front",
  22961. image: {
  22962. source: "./media/characters/alydar/front.svg",
  22963. extra: 223.37 / 210.2,
  22964. bottom: 22.3 / 246.76
  22965. }
  22966. },
  22967. top: {
  22968. height: math.unit(64.54, "feet"),
  22969. weight: math.unit(35000, "kg"),
  22970. name: "Top",
  22971. image: {
  22972. source: "./media/characters/alydar/top.svg"
  22973. }
  22974. },
  22975. anthro: {
  22976. height: math.unit(30, "feet"),
  22977. weight: math.unit(9000, "kg"),
  22978. name: "Anthro",
  22979. image: {
  22980. source: "./media/characters/alydar/anthro.svg",
  22981. extra: 432 / 421,
  22982. bottom: 7.18 / 440
  22983. }
  22984. },
  22985. maw: {
  22986. height: math.unit(11.693, "feet"),
  22987. name: "Maw",
  22988. image: {
  22989. source: "./media/characters/alydar/maw.svg"
  22990. }
  22991. },
  22992. head: {
  22993. height: math.unit(11.693, "feet"),
  22994. name: "Head",
  22995. image: {
  22996. source: "./media/characters/alydar/head.svg"
  22997. }
  22998. },
  22999. headAlt: {
  23000. height: math.unit(12.861, "feet"),
  23001. name: "Head (Alt)",
  23002. image: {
  23003. source: "./media/characters/alydar/head-alt.svg"
  23004. }
  23005. },
  23006. wing: {
  23007. height: math.unit(20.712, "feet"),
  23008. name: "Wing",
  23009. image: {
  23010. source: "./media/characters/alydar/wing.svg"
  23011. }
  23012. },
  23013. wingFeather: {
  23014. height: math.unit(9.662, "feet"),
  23015. name: "Wing Feather",
  23016. image: {
  23017. source: "./media/characters/alydar/wing-feather.svg"
  23018. }
  23019. },
  23020. countourFeather: {
  23021. height: math.unit(4.154, "feet"),
  23022. name: "Contour Feather",
  23023. image: {
  23024. source: "./media/characters/alydar/contour-feather.svg"
  23025. }
  23026. },
  23027. },
  23028. [
  23029. {
  23030. name: "Diplomatic",
  23031. height: math.unit(13, "feet"),
  23032. default: true
  23033. },
  23034. {
  23035. name: "Small",
  23036. height: math.unit(30, "feet")
  23037. },
  23038. {
  23039. name: "Normal",
  23040. height: math.unit(95, "feet"),
  23041. default: true
  23042. },
  23043. {
  23044. name: "Large",
  23045. height: math.unit(285, "feet")
  23046. },
  23047. {
  23048. name: "Incomprehensible",
  23049. height: math.unit(450, "megameters")
  23050. },
  23051. ]
  23052. ))
  23053. characterMakers.push(() => makeCharacter(
  23054. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23055. {
  23056. side: {
  23057. height: math.unit(11, "feet"),
  23058. weight: math.unit(1750, "kg"),
  23059. name: "Side",
  23060. image: {
  23061. source: "./media/characters/selicia/side.svg",
  23062. extra: 440 / 396,
  23063. bottom: 24.8 / 465.979
  23064. }
  23065. },
  23066. maw: {
  23067. height: math.unit(4.665, "feet"),
  23068. name: "Maw",
  23069. image: {
  23070. source: "./media/characters/selicia/maw.svg"
  23071. }
  23072. },
  23073. },
  23074. [
  23075. {
  23076. name: "Normal",
  23077. height: math.unit(11, "feet"),
  23078. default: true
  23079. },
  23080. ]
  23081. ))
  23082. characterMakers.push(() => makeCharacter(
  23083. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23084. {
  23085. side: {
  23086. height: math.unit(2 + 6 / 12, "feet"),
  23087. weight: math.unit(30, "lb"),
  23088. name: "Side",
  23089. image: {
  23090. source: "./media/characters/layla/side.svg",
  23091. extra: 244 / 188,
  23092. bottom: 18.2 / 262.1
  23093. }
  23094. },
  23095. back: {
  23096. height: math.unit(2 + 6 / 12, "feet"),
  23097. weight: math.unit(30, "lb"),
  23098. name: "Back",
  23099. image: {
  23100. source: "./media/characters/layla/back.svg",
  23101. extra: 308 / 241.5,
  23102. bottom: 8.9 / 316.8
  23103. }
  23104. },
  23105. cumming: {
  23106. height: math.unit(2 + 6 / 12, "feet"),
  23107. weight: math.unit(30, "lb"),
  23108. name: "Cumming",
  23109. image: {
  23110. source: "./media/characters/layla/cumming.svg",
  23111. extra: 342 / 279,
  23112. bottom: 595 / 938
  23113. }
  23114. },
  23115. dickFlaccid: {
  23116. height: math.unit(2.595, "feet"),
  23117. name: "Flaccid Genitals",
  23118. image: {
  23119. source: "./media/characters/layla/dick-flaccid.svg"
  23120. }
  23121. },
  23122. dickErect: {
  23123. height: math.unit(2.359, "feet"),
  23124. name: "Erect Genitals",
  23125. image: {
  23126. source: "./media/characters/layla/dick-erect.svg"
  23127. }
  23128. },
  23129. },
  23130. [
  23131. {
  23132. name: "Micro",
  23133. height: math.unit(1, "inch")
  23134. },
  23135. {
  23136. name: "Small",
  23137. height: math.unit(1, "foot")
  23138. },
  23139. {
  23140. name: "Normal",
  23141. height: math.unit(2 + 6 / 12, "feet"),
  23142. default: true
  23143. },
  23144. {
  23145. name: "Macro",
  23146. height: math.unit(200, "feet")
  23147. },
  23148. {
  23149. name: "Megamacro",
  23150. height: math.unit(1000, "miles")
  23151. },
  23152. {
  23153. name: "Planetary",
  23154. height: math.unit(8000, "miles")
  23155. },
  23156. {
  23157. name: "True Layla",
  23158. height: math.unit(200000 * 7, "multiverses")
  23159. },
  23160. ]
  23161. ))
  23162. characterMakers.push(() => makeCharacter(
  23163. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23164. {
  23165. back: {
  23166. height: math.unit(10.5, "feet"),
  23167. weight: math.unit(800, "lb"),
  23168. name: "Back",
  23169. image: {
  23170. source: "./media/characters/knox/back.svg",
  23171. extra: 1486 / 1089,
  23172. bottom: 107 / 1601.4
  23173. }
  23174. },
  23175. side: {
  23176. height: math.unit(10.5, "feet"),
  23177. weight: math.unit(800, "lb"),
  23178. name: "Side",
  23179. image: {
  23180. source: "./media/characters/knox/side.svg",
  23181. extra: 244 / 218,
  23182. bottom: 14 / 260
  23183. }
  23184. },
  23185. },
  23186. [
  23187. {
  23188. name: "Compact",
  23189. height: math.unit(10.5, "feet"),
  23190. default: true
  23191. },
  23192. {
  23193. name: "Dynamax",
  23194. height: math.unit(210, "feet")
  23195. },
  23196. {
  23197. name: "Full Macro",
  23198. height: math.unit(850, "feet")
  23199. },
  23200. ]
  23201. ))
  23202. characterMakers.push(() => makeCharacter(
  23203. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23204. {
  23205. front: {
  23206. height: math.unit(6, "feet"),
  23207. weight: math.unit(152, "lb"),
  23208. name: "Front",
  23209. image: {
  23210. source: "./media/characters/shin-pikachu/front.svg",
  23211. extra: 1574 / 1480,
  23212. bottom: 53.3 / 1626
  23213. }
  23214. },
  23215. hand: {
  23216. height: math.unit(1.055, "feet"),
  23217. name: "Hand",
  23218. image: {
  23219. source: "./media/characters/shin-pikachu/hand.svg"
  23220. }
  23221. },
  23222. foot: {
  23223. height: math.unit(1.1, "feet"),
  23224. name: "Foot",
  23225. image: {
  23226. source: "./media/characters/shin-pikachu/foot.svg"
  23227. }
  23228. },
  23229. collar: {
  23230. height: math.unit(0.386, "feet"),
  23231. name: "Collar",
  23232. image: {
  23233. source: "./media/characters/shin-pikachu/collar.svg"
  23234. }
  23235. },
  23236. },
  23237. [
  23238. {
  23239. name: "Smallest",
  23240. height: math.unit(0.5, "inches")
  23241. },
  23242. {
  23243. name: "Micro",
  23244. height: math.unit(6, "inches")
  23245. },
  23246. {
  23247. name: "Normal",
  23248. height: math.unit(6, "feet"),
  23249. default: true
  23250. },
  23251. {
  23252. name: "Macro",
  23253. height: math.unit(150, "feet")
  23254. },
  23255. ]
  23256. ))
  23257. characterMakers.push(() => makeCharacter(
  23258. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23259. {
  23260. front: {
  23261. height: math.unit(28, "feet"),
  23262. weight: math.unit(10500, "lb"),
  23263. name: "Front",
  23264. image: {
  23265. source: "./media/characters/kayda/front.svg",
  23266. extra: 1536 / 1428,
  23267. bottom: 68.7 / 1603
  23268. }
  23269. },
  23270. back: {
  23271. height: math.unit(28, "feet"),
  23272. weight: math.unit(10500, "lb"),
  23273. name: "Back",
  23274. image: {
  23275. source: "./media/characters/kayda/back.svg",
  23276. extra: 1557 / 1464,
  23277. bottom: 39.5 / 1597.49
  23278. }
  23279. },
  23280. dick: {
  23281. height: math.unit(3.858, "feet"),
  23282. name: "Dick",
  23283. image: {
  23284. source: "./media/characters/kayda/dick.svg"
  23285. }
  23286. },
  23287. },
  23288. [
  23289. {
  23290. name: "Macro",
  23291. height: math.unit(28, "feet"),
  23292. default: true
  23293. },
  23294. ]
  23295. ))
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23298. {
  23299. front: {
  23300. height: math.unit(10 + 11 / 12, "feet"),
  23301. weight: math.unit(1400, "lb"),
  23302. name: "Front",
  23303. image: {
  23304. source: "./media/characters/brian/front.svg",
  23305. extra: 737 / 692,
  23306. bottom: 55.4 / 785
  23307. }
  23308. },
  23309. },
  23310. [
  23311. {
  23312. name: "Normal",
  23313. height: math.unit(10 + 11 / 12, "feet"),
  23314. default: true
  23315. },
  23316. ]
  23317. ))
  23318. characterMakers.push(() => makeCharacter(
  23319. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23320. {
  23321. front: {
  23322. height: math.unit(5 + 8 / 12, "feet"),
  23323. weight: math.unit(140, "lb"),
  23324. name: "Front",
  23325. image: {
  23326. source: "./media/characters/khemri/front.svg",
  23327. extra: 4780 / 4059,
  23328. bottom: 80.1 / 4859.25
  23329. }
  23330. },
  23331. },
  23332. [
  23333. {
  23334. name: "Micro",
  23335. height: math.unit(6, "inches")
  23336. },
  23337. {
  23338. name: "Normal",
  23339. height: math.unit(5 + 8 / 12, "feet"),
  23340. default: true
  23341. },
  23342. ]
  23343. ))
  23344. characterMakers.push(() => makeCharacter(
  23345. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23346. {
  23347. front: {
  23348. height: math.unit(13, "feet"),
  23349. weight: math.unit(1700, "lb"),
  23350. name: "Front",
  23351. image: {
  23352. source: "./media/characters/felix-braveheart/front.svg",
  23353. extra: 1222 / 1157,
  23354. bottom: 53.2 / 1280
  23355. }
  23356. },
  23357. back: {
  23358. height: math.unit(13, "feet"),
  23359. weight: math.unit(1700, "lb"),
  23360. name: "Back",
  23361. image: {
  23362. source: "./media/characters/felix-braveheart/back.svg",
  23363. extra: 1277 / 1203,
  23364. bottom: 50.2 / 1327
  23365. }
  23366. },
  23367. feral: {
  23368. height: math.unit(6, "feet"),
  23369. weight: math.unit(400, "lb"),
  23370. name: "Feral",
  23371. image: {
  23372. source: "./media/characters/felix-braveheart/feral.svg",
  23373. extra: 682 / 625,
  23374. bottom: 6.9 / 688
  23375. }
  23376. },
  23377. },
  23378. [
  23379. {
  23380. name: "Normal",
  23381. height: math.unit(13, "feet"),
  23382. default: true
  23383. },
  23384. ]
  23385. ))
  23386. characterMakers.push(() => makeCharacter(
  23387. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23388. {
  23389. side: {
  23390. height: math.unit(5 + 11 / 12, "feet"),
  23391. weight: math.unit(1400, "lb"),
  23392. name: "Side",
  23393. image: {
  23394. source: "./media/characters/shadow-blade/side.svg",
  23395. extra: 1726 / 1267,
  23396. bottom: 58.4 / 1785
  23397. }
  23398. },
  23399. },
  23400. [
  23401. {
  23402. name: "Normal",
  23403. height: math.unit(5 + 11 / 12, "feet"),
  23404. default: true
  23405. },
  23406. ]
  23407. ))
  23408. characterMakers.push(() => makeCharacter(
  23409. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23410. {
  23411. front: {
  23412. height: math.unit(1 + 6 / 12, "feet"),
  23413. weight: math.unit(25, "lb"),
  23414. name: "Front",
  23415. image: {
  23416. source: "./media/characters/karla-halldor/front.svg",
  23417. extra: 1459 / 1383,
  23418. bottom: 12 / 1472
  23419. }
  23420. },
  23421. },
  23422. [
  23423. {
  23424. name: "Normal",
  23425. height: math.unit(1 + 6 / 12, "feet"),
  23426. default: true
  23427. },
  23428. ]
  23429. ))
  23430. characterMakers.push(() => makeCharacter(
  23431. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23432. {
  23433. front: {
  23434. height: math.unit(6 + 2 / 12, "feet"),
  23435. weight: math.unit(160, "lb"),
  23436. name: "Front",
  23437. image: {
  23438. source: "./media/characters/ariam/front.svg",
  23439. extra: 714 / 617,
  23440. bottom: 23.4 / 737,
  23441. }
  23442. },
  23443. squatting: {
  23444. height: math.unit(4.1, "feet"),
  23445. weight: math.unit(160, "lb"),
  23446. name: "Squatting",
  23447. image: {
  23448. source: "./media/characters/ariam/squatting.svg",
  23449. extra: 2617 / 2112,
  23450. bottom: 61.2 / 2681,
  23451. }
  23452. },
  23453. },
  23454. [
  23455. {
  23456. name: "Normal",
  23457. height: math.unit(6 + 2 / 12, "feet"),
  23458. default: true
  23459. },
  23460. {
  23461. name: "Normal+",
  23462. height: math.unit(4, "meters")
  23463. },
  23464. {
  23465. name: "Macro",
  23466. height: math.unit(50, "meters")
  23467. },
  23468. {
  23469. name: "Macro+",
  23470. height: math.unit(100, "meters")
  23471. },
  23472. {
  23473. name: "Megamacro",
  23474. height: math.unit(20, "km")
  23475. },
  23476. ]
  23477. ))
  23478. characterMakers.push(() => makeCharacter(
  23479. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23480. {
  23481. front: {
  23482. height: math.unit(1.67, "meters"),
  23483. weight: math.unit(140, "lb"),
  23484. name: "Front",
  23485. image: {
  23486. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23487. extra: 438 / 410,
  23488. bottom: 0.75 / 439
  23489. }
  23490. },
  23491. },
  23492. [
  23493. {
  23494. name: "Shrunken",
  23495. height: math.unit(7.6, "cm")
  23496. },
  23497. {
  23498. name: "Human Scale",
  23499. height: math.unit(1.67, "meters")
  23500. },
  23501. {
  23502. name: "Wolxi Scale",
  23503. height: math.unit(36.7, "meters"),
  23504. default: true
  23505. },
  23506. ]
  23507. ))
  23508. characterMakers.push(() => makeCharacter(
  23509. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23510. {
  23511. front: {
  23512. height: math.unit(1.73, "meters"),
  23513. weight: math.unit(240, "lb"),
  23514. name: "Front",
  23515. image: {
  23516. source: "./media/characters/izue-two-mothers/front.svg",
  23517. extra: 469 / 437,
  23518. bottom: 1.24 / 470.6
  23519. }
  23520. },
  23521. },
  23522. [
  23523. {
  23524. name: "Shrunken",
  23525. height: math.unit(7.86, "cm")
  23526. },
  23527. {
  23528. name: "Human Scale",
  23529. height: math.unit(1.73, "meters")
  23530. },
  23531. {
  23532. name: "Wolxi Scale",
  23533. height: math.unit(38, "meters"),
  23534. default: true
  23535. },
  23536. ]
  23537. ))
  23538. characterMakers.push(() => makeCharacter(
  23539. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23540. {
  23541. front: {
  23542. height: math.unit(1.55, "meters"),
  23543. weight: math.unit(120, "lb"),
  23544. name: "Front",
  23545. image: {
  23546. source: "./media/characters/teeku-love-shack/front.svg",
  23547. extra: 387 / 362,
  23548. bottom: 1.51 / 388
  23549. }
  23550. },
  23551. },
  23552. [
  23553. {
  23554. name: "Shrunken",
  23555. height: math.unit(7, "cm")
  23556. },
  23557. {
  23558. name: "Human Scale",
  23559. height: math.unit(1.55, "meters")
  23560. },
  23561. {
  23562. name: "Wolxi Scale",
  23563. height: math.unit(34.1, "meters"),
  23564. default: true
  23565. },
  23566. ]
  23567. ))
  23568. characterMakers.push(() => makeCharacter(
  23569. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23570. {
  23571. front: {
  23572. height: math.unit(1.83, "meters"),
  23573. weight: math.unit(135, "lb"),
  23574. name: "Front",
  23575. image: {
  23576. source: "./media/characters/dejma-the-red/front.svg",
  23577. extra: 480 / 458,
  23578. bottom: 1.8 / 482
  23579. }
  23580. },
  23581. },
  23582. [
  23583. {
  23584. name: "Shrunken",
  23585. height: math.unit(8.3, "cm")
  23586. },
  23587. {
  23588. name: "Human Scale",
  23589. height: math.unit(1.83, "meters")
  23590. },
  23591. {
  23592. name: "Wolxi Scale",
  23593. height: math.unit(40, "meters"),
  23594. default: true
  23595. },
  23596. ]
  23597. ))
  23598. characterMakers.push(() => makeCharacter(
  23599. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23600. {
  23601. front: {
  23602. height: math.unit(1.78, "meters"),
  23603. weight: math.unit(65, "kg"),
  23604. name: "Front",
  23605. image: {
  23606. source: "./media/characters/aki/front.svg",
  23607. extra: 452 / 415
  23608. }
  23609. },
  23610. frontNsfw: {
  23611. height: math.unit(1.78, "meters"),
  23612. weight: math.unit(65, "kg"),
  23613. name: "Front (NSFW)",
  23614. image: {
  23615. source: "./media/characters/aki/front-nsfw.svg",
  23616. extra: 452 / 415
  23617. }
  23618. },
  23619. back: {
  23620. height: math.unit(1.78, "meters"),
  23621. weight: math.unit(65, "kg"),
  23622. name: "Back",
  23623. image: {
  23624. source: "./media/characters/aki/back.svg",
  23625. extra: 452 / 415
  23626. }
  23627. },
  23628. rump: {
  23629. height: math.unit(2.05, "feet"),
  23630. name: "Rump",
  23631. image: {
  23632. source: "./media/characters/aki/rump.svg"
  23633. }
  23634. },
  23635. dick: {
  23636. height: math.unit(0.95, "feet"),
  23637. name: "Dick",
  23638. image: {
  23639. source: "./media/characters/aki/dick.svg"
  23640. }
  23641. },
  23642. },
  23643. [
  23644. {
  23645. name: "Micro",
  23646. height: math.unit(15, "cm")
  23647. },
  23648. {
  23649. name: "Normal",
  23650. height: math.unit(178, "cm"),
  23651. default: true
  23652. },
  23653. {
  23654. name: "Macro",
  23655. height: math.unit(214, "m")
  23656. },
  23657. {
  23658. name: "Macro+",
  23659. height: math.unit(534, "m")
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23665. {
  23666. front: {
  23667. height: math.unit(5 + 5 / 12, "feet"),
  23668. weight: math.unit(120, "lb"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/ari/front.svg",
  23672. extra: 714.5 / 682,
  23673. bottom: 8 / 722.5
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Normal",
  23680. height: math.unit(5 + 5 / 12, "feet")
  23681. },
  23682. {
  23683. name: "Macro",
  23684. height: math.unit(100, "feet"),
  23685. default: true
  23686. },
  23687. {
  23688. name: "Megamacro",
  23689. height: math.unit(100, "miles")
  23690. },
  23691. {
  23692. name: "Gigamacro",
  23693. height: math.unit(80000, "miles")
  23694. },
  23695. ]
  23696. ))
  23697. characterMakers.push(() => makeCharacter(
  23698. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23699. {
  23700. side: {
  23701. height: math.unit(9, "feet"),
  23702. weight: math.unit(400, "kg"),
  23703. name: "Side",
  23704. image: {
  23705. source: "./media/characters/bolt/side.svg",
  23706. extra: 1126 / 896,
  23707. bottom: 60 / 1187.3,
  23708. }
  23709. },
  23710. },
  23711. [
  23712. {
  23713. name: "Micro",
  23714. height: math.unit(5, "inches")
  23715. },
  23716. {
  23717. name: "Normal",
  23718. height: math.unit(9, "feet"),
  23719. default: true
  23720. },
  23721. {
  23722. name: "Macro",
  23723. height: math.unit(700, "feet")
  23724. },
  23725. {
  23726. name: "Max Size",
  23727. height: math.unit(1.52e22, "yottameters")
  23728. },
  23729. ]
  23730. ))
  23731. characterMakers.push(() => makeCharacter(
  23732. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23733. {
  23734. front: {
  23735. height: math.unit(4.53, "meters"),
  23736. weight: math.unit(3, "tons"),
  23737. name: "Front",
  23738. image: {
  23739. source: "./media/characters/draekon-sylviar/front.svg",
  23740. extra: 1228 / 1068,
  23741. bottom: 41 / 1270
  23742. }
  23743. },
  23744. tail: {
  23745. height: math.unit(1.772, "meter"),
  23746. name: "Tail",
  23747. image: {
  23748. source: "./media/characters/draekon-sylviar/tail.svg"
  23749. }
  23750. },
  23751. head: {
  23752. height: math.unit(1.331, "meter"),
  23753. name: "Head",
  23754. image: {
  23755. source: "./media/characters/draekon-sylviar/head.svg"
  23756. }
  23757. },
  23758. hand: {
  23759. height: math.unit(0.564, "meter"),
  23760. name: "Hand",
  23761. image: {
  23762. source: "./media/characters/draekon-sylviar/hand.svg"
  23763. }
  23764. },
  23765. foot: {
  23766. height: math.unit(0.621, "meter"),
  23767. name: "Foot",
  23768. image: {
  23769. source: "./media/characters/draekon-sylviar/foot.svg",
  23770. bottom: 32 / 324
  23771. }
  23772. },
  23773. dick: {
  23774. height: math.unit(61, "cm"),
  23775. name: "Dick",
  23776. image: {
  23777. source: "./media/characters/draekon-sylviar/dick.svg"
  23778. }
  23779. },
  23780. dickseparated: {
  23781. height: math.unit(61, "cm"),
  23782. name: "Dick-separated",
  23783. image: {
  23784. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23785. }
  23786. },
  23787. },
  23788. [
  23789. {
  23790. name: "Small",
  23791. height: math.unit(4.53 / 2, "meters"),
  23792. default: true
  23793. },
  23794. {
  23795. name: "Normal",
  23796. height: math.unit(4.53, "meters"),
  23797. default: true
  23798. },
  23799. {
  23800. name: "Large",
  23801. height: math.unit(4.53 * 2, "meters"),
  23802. },
  23803. ]
  23804. ))
  23805. characterMakers.push(() => makeCharacter(
  23806. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23807. {
  23808. front: {
  23809. height: math.unit(6 + 2 / 12, "feet"),
  23810. weight: math.unit(180, "lb"),
  23811. name: "Front",
  23812. image: {
  23813. source: "./media/characters/brawler/front.svg",
  23814. extra: 3301 / 3027,
  23815. bottom: 138 / 3439
  23816. }
  23817. },
  23818. },
  23819. [
  23820. {
  23821. name: "Normal",
  23822. height: math.unit(6 + 2 / 12, "feet"),
  23823. default: true
  23824. },
  23825. ]
  23826. ))
  23827. characterMakers.push(() => makeCharacter(
  23828. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23829. {
  23830. front: {
  23831. height: math.unit(11, "feet"),
  23832. weight: math.unit(1000, "lb"),
  23833. name: "Front",
  23834. image: {
  23835. source: "./media/characters/alex/front.svg",
  23836. bottom: 44.5 / 620
  23837. }
  23838. },
  23839. },
  23840. [
  23841. {
  23842. name: "Micro",
  23843. height: math.unit(5, "inches")
  23844. },
  23845. {
  23846. name: "Normal",
  23847. height: math.unit(11, "feet"),
  23848. default: true
  23849. },
  23850. {
  23851. name: "Macro",
  23852. height: math.unit(9.5e9, "feet")
  23853. },
  23854. {
  23855. name: "Max Size",
  23856. height: math.unit(1.4e283, "yottameters")
  23857. },
  23858. ]
  23859. ))
  23860. characterMakers.push(() => makeCharacter(
  23861. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23862. {
  23863. female: {
  23864. height: math.unit(29.9, "m"),
  23865. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23866. name: "Female",
  23867. image: {
  23868. source: "./media/characters/zenari/female.svg",
  23869. extra: 3281.6 / 3217,
  23870. bottom: 72.2 / 3353
  23871. }
  23872. },
  23873. male: {
  23874. height: math.unit(27.7, "m"),
  23875. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23876. name: "Male",
  23877. image: {
  23878. source: "./media/characters/zenari/male.svg",
  23879. extra: 3008 / 2991,
  23880. bottom: 54.6 / 3069
  23881. }
  23882. },
  23883. },
  23884. [
  23885. {
  23886. name: "Macro",
  23887. height: math.unit(29.7, "meters"),
  23888. default: true
  23889. },
  23890. ]
  23891. ))
  23892. characterMakers.push(() => makeCharacter(
  23893. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23894. {
  23895. female: {
  23896. height: math.unit(23.8, "m"),
  23897. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23898. name: "Female",
  23899. image: {
  23900. source: "./media/characters/mactarian/female.svg",
  23901. extra: 2662 / 2569,
  23902. bottom: 73 / 2736
  23903. }
  23904. },
  23905. male: {
  23906. height: math.unit(23.8, "m"),
  23907. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23908. name: "Male",
  23909. image: {
  23910. source: "./media/characters/mactarian/male.svg",
  23911. extra: 2673 / 2600,
  23912. bottom: 76 / 2750
  23913. }
  23914. },
  23915. },
  23916. [
  23917. {
  23918. name: "Macro",
  23919. height: math.unit(23.8, "meters"),
  23920. default: true
  23921. },
  23922. ]
  23923. ))
  23924. characterMakers.push(() => makeCharacter(
  23925. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23926. {
  23927. female: {
  23928. height: math.unit(19.3, "m"),
  23929. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23930. name: "Female",
  23931. image: {
  23932. source: "./media/characters/umok/female.svg",
  23933. extra: 2186 / 2078,
  23934. bottom: 87 / 2277
  23935. }
  23936. },
  23937. male: {
  23938. height: math.unit(19.5, "m"),
  23939. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23940. name: "Male",
  23941. image: {
  23942. source: "./media/characters/umok/male.svg",
  23943. extra: 2233 / 2140,
  23944. bottom: 24.4 / 2258
  23945. }
  23946. },
  23947. },
  23948. [
  23949. {
  23950. name: "Macro",
  23951. height: math.unit(19.3, "meters"),
  23952. default: true
  23953. },
  23954. ]
  23955. ))
  23956. characterMakers.push(() => makeCharacter(
  23957. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23958. {
  23959. female: {
  23960. height: math.unit(26.15, "m"),
  23961. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23962. name: "Female",
  23963. image: {
  23964. source: "./media/characters/joraxian/female.svg",
  23965. extra: 2912 / 2824,
  23966. bottom: 36 / 2956
  23967. }
  23968. },
  23969. male: {
  23970. height: math.unit(25.4, "m"),
  23971. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23972. name: "Male",
  23973. image: {
  23974. source: "./media/characters/joraxian/male.svg",
  23975. extra: 2877 / 2721,
  23976. bottom: 82 / 2967
  23977. }
  23978. },
  23979. },
  23980. [
  23981. {
  23982. name: "Macro",
  23983. height: math.unit(26.15, "meters"),
  23984. default: true
  23985. },
  23986. ]
  23987. ))
  23988. characterMakers.push(() => makeCharacter(
  23989. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23990. {
  23991. female: {
  23992. height: math.unit(21.6, "m"),
  23993. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23994. name: "Female",
  23995. image: {
  23996. source: "./media/characters/sthara/female.svg",
  23997. extra: 2516 / 2347,
  23998. bottom: 21.5 / 2537
  23999. }
  24000. },
  24001. male: {
  24002. height: math.unit(24, "m"),
  24003. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24004. name: "Male",
  24005. image: {
  24006. source: "./media/characters/sthara/male.svg",
  24007. extra: 2732 / 2607,
  24008. bottom: 23 / 2732
  24009. }
  24010. },
  24011. },
  24012. [
  24013. {
  24014. name: "Macro",
  24015. height: math.unit(21.6, "meters"),
  24016. default: true
  24017. },
  24018. ]
  24019. ))
  24020. characterMakers.push(() => makeCharacter(
  24021. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24022. {
  24023. front: {
  24024. height: math.unit(6 + 4 / 12, "feet"),
  24025. weight: math.unit(175, "lb"),
  24026. name: "Front",
  24027. image: {
  24028. source: "./media/characters/luka-bryzant/front.svg",
  24029. extra: 311 / 289,
  24030. bottom: 4 / 315
  24031. }
  24032. },
  24033. back: {
  24034. height: math.unit(6 + 4 / 12, "feet"),
  24035. weight: math.unit(175, "lb"),
  24036. name: "Back",
  24037. image: {
  24038. source: "./media/characters/luka-bryzant/back.svg",
  24039. extra: 311 / 289,
  24040. bottom: 3.8 / 313.7
  24041. }
  24042. },
  24043. },
  24044. [
  24045. {
  24046. name: "Micro",
  24047. height: math.unit(10, "inches")
  24048. },
  24049. {
  24050. name: "Normal",
  24051. height: math.unit(6 + 4 / 12, "feet"),
  24052. default: true
  24053. },
  24054. {
  24055. name: "Large",
  24056. height: math.unit(12, "feet")
  24057. },
  24058. ]
  24059. ))
  24060. characterMakers.push(() => makeCharacter(
  24061. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24062. {
  24063. front: {
  24064. height: math.unit(5 + 7 / 12, "feet"),
  24065. weight: math.unit(185, "lb"),
  24066. name: "Front",
  24067. image: {
  24068. source: "./media/characters/aman-aquila/front.svg",
  24069. extra: 1013 / 976,
  24070. bottom: 45.6 / 1057
  24071. }
  24072. },
  24073. side: {
  24074. height: math.unit(5 + 7 / 12, "feet"),
  24075. weight: math.unit(185, "lb"),
  24076. name: "Side",
  24077. image: {
  24078. source: "./media/characters/aman-aquila/side.svg",
  24079. extra: 1054 / 1011,
  24080. bottom: 15 / 1070
  24081. }
  24082. },
  24083. back: {
  24084. height: math.unit(5 + 7 / 12, "feet"),
  24085. weight: math.unit(185, "lb"),
  24086. name: "Back",
  24087. image: {
  24088. source: "./media/characters/aman-aquila/back.svg",
  24089. extra: 1026 / 970,
  24090. bottom: 12 / 1039
  24091. }
  24092. },
  24093. head: {
  24094. height: math.unit(1.211, "feet"),
  24095. name: "Head",
  24096. image: {
  24097. source: "./media/characters/aman-aquila/head.svg",
  24098. }
  24099. },
  24100. },
  24101. [
  24102. {
  24103. name: "Minimicro",
  24104. height: math.unit(0.057, "inches")
  24105. },
  24106. {
  24107. name: "Micro",
  24108. height: math.unit(7, "inches")
  24109. },
  24110. {
  24111. name: "Mini",
  24112. height: math.unit(3 + 7 / 12, "feet")
  24113. },
  24114. {
  24115. name: "Normal",
  24116. height: math.unit(5 + 7 / 12, "feet"),
  24117. default: true
  24118. },
  24119. {
  24120. name: "Macro",
  24121. height: math.unit(157 + 7 / 12, "feet")
  24122. },
  24123. {
  24124. name: "Megamacro",
  24125. height: math.unit(1557 + 7 / 12, "feet")
  24126. },
  24127. {
  24128. name: "Gigamacro",
  24129. height: math.unit(15557 + 7 / 12, "feet")
  24130. },
  24131. ]
  24132. ))
  24133. characterMakers.push(() => makeCharacter(
  24134. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24135. {
  24136. front: {
  24137. height: math.unit(3 + 2 / 12, "inches"),
  24138. weight: math.unit(0.3, "ounces"),
  24139. name: "Front",
  24140. image: {
  24141. source: "./media/characters/hiphae/front.svg",
  24142. extra: 1931 / 1683,
  24143. bottom: 24 / 1955
  24144. }
  24145. },
  24146. },
  24147. [
  24148. {
  24149. name: "Normal",
  24150. height: math.unit(3 + 1 / 2, "inches"),
  24151. default: true
  24152. },
  24153. ]
  24154. ))
  24155. characterMakers.push(() => makeCharacter(
  24156. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24157. {
  24158. front: {
  24159. height: math.unit(5 + 10 / 12, "feet"),
  24160. weight: math.unit(165, "lb"),
  24161. name: "Front",
  24162. image: {
  24163. source: "./media/characters/nicky/front.svg",
  24164. extra: 3144 / 2886,
  24165. bottom: 45.6 / 3192
  24166. }
  24167. },
  24168. back: {
  24169. height: math.unit(5 + 10 / 12, "feet"),
  24170. weight: math.unit(165, "lb"),
  24171. name: "Back",
  24172. image: {
  24173. source: "./media/characters/nicky/back.svg",
  24174. extra: 3055 / 2804,
  24175. bottom: 28.4 / 3087
  24176. }
  24177. },
  24178. frontclothed: {
  24179. height: math.unit(5 + 10 / 12, "feet"),
  24180. weight: math.unit(165, "lb"),
  24181. name: "Front-clothed",
  24182. image: {
  24183. source: "./media/characters/nicky/front-clothed.svg",
  24184. extra: 3184.9 / 2926.9,
  24185. bottom: 86.5 / 3239.9
  24186. }
  24187. },
  24188. foot: {
  24189. height: math.unit(1.16, "feet"),
  24190. name: "Foot",
  24191. image: {
  24192. source: "./media/characters/nicky/foot.svg"
  24193. }
  24194. },
  24195. feet: {
  24196. height: math.unit(1.34, "feet"),
  24197. name: "Feet",
  24198. image: {
  24199. source: "./media/characters/nicky/feet.svg"
  24200. }
  24201. },
  24202. maw: {
  24203. height: math.unit(0.9, "feet"),
  24204. name: "Maw",
  24205. image: {
  24206. source: "./media/characters/nicky/maw.svg"
  24207. }
  24208. },
  24209. },
  24210. [
  24211. {
  24212. name: "Normal",
  24213. height: math.unit(5 + 10 / 12, "feet"),
  24214. default: true
  24215. },
  24216. {
  24217. name: "Macro",
  24218. height: math.unit(60, "feet")
  24219. },
  24220. {
  24221. name: "Megamacro",
  24222. height: math.unit(1, "mile")
  24223. },
  24224. ]
  24225. ))
  24226. characterMakers.push(() => makeCharacter(
  24227. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24228. {
  24229. side: {
  24230. height: math.unit(10, "feet"),
  24231. weight: math.unit(600, "lb"),
  24232. name: "Side",
  24233. image: {
  24234. source: "./media/characters/blair/side.svg",
  24235. bottom: 16.6 / 475,
  24236. extra: 458 / 431
  24237. }
  24238. },
  24239. },
  24240. [
  24241. {
  24242. name: "Micro",
  24243. height: math.unit(8, "inches")
  24244. },
  24245. {
  24246. name: "Normal",
  24247. height: math.unit(10, "feet"),
  24248. default: true
  24249. },
  24250. {
  24251. name: "Macro",
  24252. height: math.unit(180, "feet")
  24253. },
  24254. ]
  24255. ))
  24256. characterMakers.push(() => makeCharacter(
  24257. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24258. {
  24259. front: {
  24260. height: math.unit(5 + 4 / 12, "feet"),
  24261. weight: math.unit(125, "lb"),
  24262. name: "Front",
  24263. image: {
  24264. source: "./media/characters/fisher/front.svg",
  24265. extra: 444 / 390,
  24266. bottom: 2 / 444.8
  24267. }
  24268. },
  24269. },
  24270. [
  24271. {
  24272. name: "Micro",
  24273. height: math.unit(4, "inches")
  24274. },
  24275. {
  24276. name: "Normal",
  24277. height: math.unit(5 + 4 / 12, "feet"),
  24278. default: true
  24279. },
  24280. {
  24281. name: "Macro",
  24282. height: math.unit(100, "feet")
  24283. },
  24284. ]
  24285. ))
  24286. characterMakers.push(() => makeCharacter(
  24287. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24288. {
  24289. front: {
  24290. height: math.unit(6.71, "feet"),
  24291. weight: math.unit(200, "lb"),
  24292. capacity: math.unit(1000000, "people"),
  24293. name: "Front",
  24294. image: {
  24295. source: "./media/characters/gliss/front.svg",
  24296. extra: 2347 / 2231,
  24297. bottom: 113 / 2462
  24298. }
  24299. },
  24300. hammerspaceSize: {
  24301. height: math.unit(6.71 * 717, "feet"),
  24302. weight: math.unit(200, "lb"),
  24303. capacity: math.unit(1000000, "people"),
  24304. name: "Hammerspace Size",
  24305. image: {
  24306. source: "./media/characters/gliss/front.svg",
  24307. extra: 2347 / 2231,
  24308. bottom: 113 / 2462
  24309. }
  24310. },
  24311. },
  24312. [
  24313. {
  24314. name: "Normal",
  24315. height: math.unit(6.71, "feet"),
  24316. default: true
  24317. },
  24318. ]
  24319. ))
  24320. characterMakers.push(() => makeCharacter(
  24321. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24322. {
  24323. side: {
  24324. height: math.unit(1.44, "m"),
  24325. weight: math.unit(80, "kg"),
  24326. name: "Side",
  24327. image: {
  24328. source: "./media/characters/dune-anderson/side.svg",
  24329. bottom: 49 / 1426
  24330. }
  24331. },
  24332. },
  24333. [
  24334. {
  24335. name: "Wolf-sized",
  24336. height: math.unit(1.44, "meters")
  24337. },
  24338. {
  24339. name: "Normal",
  24340. height: math.unit(5.05, "meters"),
  24341. default: true
  24342. },
  24343. {
  24344. name: "Big",
  24345. height: math.unit(14.4, "meters")
  24346. },
  24347. {
  24348. name: "Huge",
  24349. height: math.unit(144, "meters")
  24350. },
  24351. ]
  24352. ))
  24353. characterMakers.push(() => makeCharacter(
  24354. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24355. {
  24356. front: {
  24357. height: math.unit(7, "feet"),
  24358. weight: math.unit(425, "lb"),
  24359. name: "Front",
  24360. image: {
  24361. source: "./media/characters/hind/front.svg",
  24362. extra: 2091 / 1860,
  24363. bottom: 129 / 2220
  24364. }
  24365. },
  24366. back: {
  24367. height: math.unit(7, "feet"),
  24368. weight: math.unit(425, "lb"),
  24369. name: "Back",
  24370. image: {
  24371. source: "./media/characters/hind/back.svg",
  24372. extra: 2091 / 1860,
  24373. bottom: 24.6 / 2309
  24374. }
  24375. },
  24376. tail: {
  24377. height: math.unit(2.8, "feet"),
  24378. name: "Tail",
  24379. image: {
  24380. source: "./media/characters/hind/tail.svg"
  24381. }
  24382. },
  24383. head: {
  24384. height: math.unit(2.55, "feet"),
  24385. name: "Head",
  24386. image: {
  24387. source: "./media/characters/hind/head.svg"
  24388. }
  24389. },
  24390. },
  24391. [
  24392. {
  24393. name: "XS",
  24394. height: math.unit(0.7, "feet")
  24395. },
  24396. {
  24397. name: "Normal",
  24398. height: math.unit(7, "feet"),
  24399. default: true
  24400. },
  24401. {
  24402. name: "XL",
  24403. height: math.unit(70, "feet")
  24404. },
  24405. ]
  24406. ))
  24407. characterMakers.push(() => makeCharacter(
  24408. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24409. {
  24410. front: {
  24411. height: math.unit(6, "feet"),
  24412. weight: math.unit(150, "lb"),
  24413. name: "Front",
  24414. image: {
  24415. source: "./media/characters/dylan-skaven/front.svg",
  24416. extra: 2318 / 2063,
  24417. bottom: 93.4 / 2410
  24418. }
  24419. },
  24420. },
  24421. [
  24422. {
  24423. name: "Nano",
  24424. height: math.unit(1, "mm")
  24425. },
  24426. {
  24427. name: "Micro",
  24428. height: math.unit(1, "cm")
  24429. },
  24430. {
  24431. name: "Normal",
  24432. height: math.unit(2.1, "meters"),
  24433. default: true
  24434. },
  24435. ]
  24436. ))
  24437. characterMakers.push(() => makeCharacter(
  24438. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24439. {
  24440. front: {
  24441. height: math.unit(7 + 5 / 12, "feet"),
  24442. weight: math.unit(357, "lb"),
  24443. name: "Front",
  24444. image: {
  24445. source: "./media/characters/solex-draconov/front.svg",
  24446. extra: 1993 / 1865,
  24447. bottom: 117 / 2111
  24448. }
  24449. },
  24450. },
  24451. [
  24452. {
  24453. name: "Natural Height",
  24454. height: math.unit(7 + 5 / 12, "feet"),
  24455. default: true
  24456. },
  24457. {
  24458. name: "Macro",
  24459. height: math.unit(350, "feet")
  24460. },
  24461. {
  24462. name: "Macro+",
  24463. height: math.unit(1000, "feet")
  24464. },
  24465. {
  24466. name: "Megamacro",
  24467. height: math.unit(20, "km")
  24468. },
  24469. {
  24470. name: "Megamacro+",
  24471. height: math.unit(1000, "km")
  24472. },
  24473. {
  24474. name: "Gigamacro",
  24475. height: math.unit(2.5, "Gm")
  24476. },
  24477. {
  24478. name: "Teramacro",
  24479. height: math.unit(15, "Tm")
  24480. },
  24481. {
  24482. name: "Galactic",
  24483. height: math.unit(30, "Zm")
  24484. },
  24485. {
  24486. name: "Universal",
  24487. height: math.unit(21000, "Ym")
  24488. },
  24489. {
  24490. name: "Omniversal",
  24491. height: math.unit(9.861e50, "Ym")
  24492. },
  24493. {
  24494. name: "Existential",
  24495. height: math.unit(1e300, "meters")
  24496. },
  24497. ]
  24498. ))
  24499. characterMakers.push(() => makeCharacter(
  24500. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24501. {
  24502. side: {
  24503. height: math.unit(25, "feet"),
  24504. weight: math.unit(90000, "lb"),
  24505. name: "Side",
  24506. image: {
  24507. source: "./media/characters/mandarax/side.svg",
  24508. extra: 614 / 332,
  24509. bottom: 55 / 630
  24510. }
  24511. },
  24512. head: {
  24513. height: math.unit(11.4, "feet"),
  24514. name: "Head",
  24515. image: {
  24516. source: "./media/characters/mandarax/head.svg"
  24517. }
  24518. },
  24519. belly: {
  24520. height: math.unit(33, "feet"),
  24521. name: "Belly",
  24522. capacity: math.unit(500, "people"),
  24523. image: {
  24524. source: "./media/characters/mandarax/belly.svg"
  24525. }
  24526. },
  24527. dick: {
  24528. height: math.unit(8.46, "feet"),
  24529. name: "Dick",
  24530. image: {
  24531. source: "./media/characters/mandarax/dick.svg"
  24532. }
  24533. },
  24534. top: {
  24535. height: math.unit(28, "meters"),
  24536. name: "Top",
  24537. image: {
  24538. source: "./media/characters/mandarax/top.svg"
  24539. }
  24540. },
  24541. },
  24542. [
  24543. {
  24544. name: "Normal",
  24545. height: math.unit(25, "feet"),
  24546. default: true
  24547. },
  24548. ]
  24549. ))
  24550. characterMakers.push(() => makeCharacter(
  24551. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24552. {
  24553. front: {
  24554. height: math.unit(5, "feet"),
  24555. weight: math.unit(90, "lb"),
  24556. name: "Front",
  24557. image: {
  24558. source: "./media/characters/pixil/front.svg",
  24559. extra: 2000 / 1618,
  24560. bottom: 12.3 / 2011
  24561. }
  24562. },
  24563. },
  24564. [
  24565. {
  24566. name: "Normal",
  24567. height: math.unit(5, "feet"),
  24568. default: true
  24569. },
  24570. {
  24571. name: "Megamacro",
  24572. height: math.unit(10, "miles"),
  24573. },
  24574. ]
  24575. ))
  24576. characterMakers.push(() => makeCharacter(
  24577. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24578. {
  24579. front: {
  24580. height: math.unit(7 + 2 / 12, "feet"),
  24581. weight: math.unit(200, "lb"),
  24582. name: "Front",
  24583. image: {
  24584. source: "./media/characters/angel/front.svg",
  24585. extra: 1830 / 1737,
  24586. bottom: 22.6 / 1854,
  24587. }
  24588. },
  24589. },
  24590. [
  24591. {
  24592. name: "Normal",
  24593. height: math.unit(7 + 2 / 12, "feet"),
  24594. default: true
  24595. },
  24596. {
  24597. name: "Macro",
  24598. height: math.unit(1000, "feet")
  24599. },
  24600. {
  24601. name: "Megamacro",
  24602. height: math.unit(2, "miles")
  24603. },
  24604. {
  24605. name: "Gigamacro",
  24606. height: math.unit(20, "earths")
  24607. },
  24608. ]
  24609. ))
  24610. characterMakers.push(() => makeCharacter(
  24611. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24612. {
  24613. front: {
  24614. height: math.unit(5, "feet"),
  24615. weight: math.unit(180, "lb"),
  24616. name: "Front",
  24617. image: {
  24618. source: "./media/characters/mekana/front.svg",
  24619. extra: 1671 / 1605,
  24620. bottom: 3.5 / 1691
  24621. }
  24622. },
  24623. side: {
  24624. height: math.unit(5, "feet"),
  24625. weight: math.unit(180, "lb"),
  24626. name: "Side",
  24627. image: {
  24628. source: "./media/characters/mekana/side.svg",
  24629. extra: 1671 / 1605,
  24630. bottom: 3.5 / 1691
  24631. }
  24632. },
  24633. back: {
  24634. height: math.unit(5, "feet"),
  24635. weight: math.unit(180, "lb"),
  24636. name: "Back",
  24637. image: {
  24638. source: "./media/characters/mekana/back.svg",
  24639. extra: 1671 / 1605,
  24640. bottom: 3.5 / 1691
  24641. }
  24642. },
  24643. },
  24644. [
  24645. {
  24646. name: "Normal",
  24647. height: math.unit(5, "feet"),
  24648. default: true
  24649. },
  24650. ]
  24651. ))
  24652. characterMakers.push(() => makeCharacter(
  24653. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24654. {
  24655. front: {
  24656. height: math.unit(4 + 6 / 12, "feet"),
  24657. weight: math.unit(80, "lb"),
  24658. name: "Front",
  24659. image: {
  24660. source: "./media/characters/pixie/front.svg",
  24661. extra: 1924 / 1825,
  24662. bottom: 22.4 / 1946
  24663. }
  24664. },
  24665. },
  24666. [
  24667. {
  24668. name: "Normal",
  24669. height: math.unit(4 + 6 / 12, "feet"),
  24670. default: true
  24671. },
  24672. {
  24673. name: "Macro",
  24674. height: math.unit(40, "feet")
  24675. },
  24676. ]
  24677. ))
  24678. characterMakers.push(() => makeCharacter(
  24679. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24680. {
  24681. front: {
  24682. height: math.unit(2.1, "meters"),
  24683. weight: math.unit(200, "lb"),
  24684. name: "Front",
  24685. image: {
  24686. source: "./media/characters/the-lascivious/front.svg",
  24687. extra: 1 / 0.893,
  24688. bottom: 3.5 / 573.7
  24689. }
  24690. },
  24691. },
  24692. [
  24693. {
  24694. name: "Human Scale",
  24695. height: math.unit(2.1, "meters")
  24696. },
  24697. {
  24698. name: "Wolxi Scale",
  24699. height: math.unit(46.2, "m"),
  24700. default: true
  24701. },
  24702. {
  24703. name: "Boinker of Buildings",
  24704. height: math.unit(10, "km")
  24705. },
  24706. {
  24707. name: "Shagger of Skyscrapers",
  24708. height: math.unit(40, "km")
  24709. },
  24710. {
  24711. name: "Banger of Boroughs",
  24712. height: math.unit(4000, "km")
  24713. },
  24714. {
  24715. name: "Screwer of States",
  24716. height: math.unit(100000, "km")
  24717. },
  24718. {
  24719. name: "Pounder of Planets",
  24720. height: math.unit(2000000, "km")
  24721. },
  24722. ]
  24723. ))
  24724. characterMakers.push(() => makeCharacter(
  24725. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24726. {
  24727. front: {
  24728. height: math.unit(6, "feet"),
  24729. weight: math.unit(150, "lb"),
  24730. name: "Front",
  24731. image: {
  24732. source: "./media/characters/aj/front.svg",
  24733. extra: 2039 / 1562,
  24734. bottom: 40 / 2079
  24735. }
  24736. },
  24737. },
  24738. [
  24739. {
  24740. name: "Normal",
  24741. height: math.unit(11 + 6 / 12, "feet"),
  24742. default: true
  24743. },
  24744. {
  24745. name: "Megamacro",
  24746. height: math.unit(60, "megameters")
  24747. },
  24748. ]
  24749. ))
  24750. characterMakers.push(() => makeCharacter(
  24751. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24752. {
  24753. side: {
  24754. height: math.unit(31 + 8 / 12, "feet"),
  24755. weight: math.unit(75000, "kg"),
  24756. name: "Side",
  24757. image: {
  24758. source: "./media/characters/koros/side.svg",
  24759. extra: 1442 / 1297,
  24760. bottom: 122.7 / 1562
  24761. }
  24762. },
  24763. dicksKingsCrown: {
  24764. height: math.unit(6, "feet"),
  24765. name: "Dicks (King's Crown)",
  24766. image: {
  24767. source: "./media/characters/koros/dicks-kings-crown.svg"
  24768. }
  24769. },
  24770. dicksTailSet: {
  24771. height: math.unit(3, "feet"),
  24772. name: "Dicks (Tail Set)",
  24773. image: {
  24774. source: "./media/characters/koros/dicks-tail-set.svg"
  24775. }
  24776. },
  24777. dickCumming: {
  24778. height: math.unit(7.98, "feet"),
  24779. name: "Dick (Cumming)",
  24780. image: {
  24781. source: "./media/characters/koros/dick-cumming.svg"
  24782. }
  24783. },
  24784. dicksBack: {
  24785. height: math.unit(5.9, "feet"),
  24786. name: "Dicks (Back)",
  24787. image: {
  24788. source: "./media/characters/koros/dicks-back.svg"
  24789. }
  24790. },
  24791. dicksFront: {
  24792. height: math.unit(3.72, "feet"),
  24793. name: "Dicks (Front)",
  24794. image: {
  24795. source: "./media/characters/koros/dicks-front.svg"
  24796. }
  24797. },
  24798. dicksPeeking: {
  24799. height: math.unit(3.0, "feet"),
  24800. name: "Dicks (Peeking)",
  24801. image: {
  24802. source: "./media/characters/koros/dicks-peeking.svg"
  24803. }
  24804. },
  24805. eye: {
  24806. height: math.unit(1.7, "feet"),
  24807. name: "Eye",
  24808. image: {
  24809. source: "./media/characters/koros/eye.svg"
  24810. }
  24811. },
  24812. headFront: {
  24813. height: math.unit(11.69, "feet"),
  24814. name: "Head (Front)",
  24815. image: {
  24816. source: "./media/characters/koros/head-front.svg"
  24817. }
  24818. },
  24819. headSide: {
  24820. height: math.unit(14, "feet"),
  24821. name: "Head (Side)",
  24822. image: {
  24823. source: "./media/characters/koros/head-side.svg"
  24824. }
  24825. },
  24826. leg: {
  24827. height: math.unit(17, "feet"),
  24828. name: "Leg",
  24829. image: {
  24830. source: "./media/characters/koros/leg.svg"
  24831. }
  24832. },
  24833. mawSide: {
  24834. height: math.unit(12.8, "feet"),
  24835. name: "Maw (Side)",
  24836. image: {
  24837. source: "./media/characters/koros/maw-side.svg"
  24838. }
  24839. },
  24840. mawSpitting: {
  24841. height: math.unit(17, "feet"),
  24842. name: "Maw (Spitting)",
  24843. image: {
  24844. source: "./media/characters/koros/maw-spitting.svg"
  24845. }
  24846. },
  24847. slit: {
  24848. height: math.unit(2.8, "feet"),
  24849. name: "Slit",
  24850. image: {
  24851. source: "./media/characters/koros/slit.svg"
  24852. }
  24853. },
  24854. stomach: {
  24855. height: math.unit(6.8, "feet"),
  24856. capacity: math.unit(20, "people"),
  24857. name: "Stomach",
  24858. image: {
  24859. source: "./media/characters/koros/stomach.svg"
  24860. }
  24861. },
  24862. wingspanBottom: {
  24863. height: math.unit(114, "feet"),
  24864. name: "Wingspan (Bottom)",
  24865. image: {
  24866. source: "./media/characters/koros/wingspan-bottom.svg"
  24867. }
  24868. },
  24869. wingspanTop: {
  24870. height: math.unit(104, "feet"),
  24871. name: "Wingspan (Top)",
  24872. image: {
  24873. source: "./media/characters/koros/wingspan-top.svg"
  24874. }
  24875. },
  24876. },
  24877. [
  24878. {
  24879. name: "Normal",
  24880. height: math.unit(31 + 8 / 12, "feet"),
  24881. default: true
  24882. },
  24883. ]
  24884. ))
  24885. characterMakers.push(() => makeCharacter(
  24886. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24887. {
  24888. front: {
  24889. height: math.unit(18 + 5 / 12, "feet"),
  24890. weight: math.unit(3750, "kg"),
  24891. name: "Front",
  24892. image: {
  24893. source: "./media/characters/vexx/front.svg",
  24894. extra: 426 / 396,
  24895. bottom: 31.5 / 458
  24896. }
  24897. },
  24898. maw: {
  24899. height: math.unit(6, "feet"),
  24900. name: "Maw",
  24901. image: {
  24902. source: "./media/characters/vexx/maw.svg"
  24903. }
  24904. },
  24905. },
  24906. [
  24907. {
  24908. name: "Normal",
  24909. height: math.unit(18 + 5 / 12, "feet"),
  24910. default: true
  24911. },
  24912. ]
  24913. ))
  24914. characterMakers.push(() => makeCharacter(
  24915. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24916. {
  24917. front: {
  24918. height: math.unit(17 + 6 / 12, "feet"),
  24919. weight: math.unit(150, "lb"),
  24920. name: "Front",
  24921. image: {
  24922. source: "./media/characters/baadra/front.svg",
  24923. extra: 3137 / 2890,
  24924. bottom: 168.4 / 3305
  24925. }
  24926. },
  24927. back: {
  24928. height: math.unit(17 + 6 / 12, "feet"),
  24929. weight: math.unit(150, "lb"),
  24930. name: "Back",
  24931. image: {
  24932. source: "./media/characters/baadra/back.svg",
  24933. extra: 3142 / 2890,
  24934. bottom: 220 / 3371
  24935. }
  24936. },
  24937. head: {
  24938. height: math.unit(5.45, "feet"),
  24939. name: "Head",
  24940. image: {
  24941. source: "./media/characters/baadra/head.svg"
  24942. }
  24943. },
  24944. headAngry: {
  24945. height: math.unit(4.95, "feet"),
  24946. name: "Head (Angry)",
  24947. image: {
  24948. source: "./media/characters/baadra/head-angry.svg"
  24949. }
  24950. },
  24951. headOpen: {
  24952. height: math.unit(6, "feet"),
  24953. name: "Head (Open)",
  24954. image: {
  24955. source: "./media/characters/baadra/head-open.svg"
  24956. }
  24957. },
  24958. },
  24959. [
  24960. {
  24961. name: "Normal",
  24962. height: math.unit(17 + 6 / 12, "feet"),
  24963. default: true
  24964. },
  24965. ]
  24966. ))
  24967. characterMakers.push(() => makeCharacter(
  24968. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24969. {
  24970. front: {
  24971. height: math.unit(7 + 3 / 12, "feet"),
  24972. weight: math.unit(180, "lb"),
  24973. name: "Front",
  24974. image: {
  24975. source: "./media/characters/juri/front.svg",
  24976. extra: 1401 / 1237,
  24977. bottom: 18.5 / 1418
  24978. }
  24979. },
  24980. side: {
  24981. height: math.unit(7 + 3 / 12, "feet"),
  24982. weight: math.unit(180, "lb"),
  24983. name: "Side",
  24984. image: {
  24985. source: "./media/characters/juri/side.svg",
  24986. extra: 1424 / 1242,
  24987. bottom: 18.5 / 1447
  24988. }
  24989. },
  24990. sitting: {
  24991. height: math.unit(6, "feet"),
  24992. weight: math.unit(180, "lb"),
  24993. name: "Sitting",
  24994. image: {
  24995. source: "./media/characters/juri/sitting.svg",
  24996. extra: 1270 / 1143,
  24997. bottom: 100 / 1343
  24998. }
  24999. },
  25000. back: {
  25001. height: math.unit(7 + 3 / 12, "feet"),
  25002. weight: math.unit(180, "lb"),
  25003. name: "Back",
  25004. image: {
  25005. source: "./media/characters/juri/back.svg",
  25006. extra: 1377 / 1240,
  25007. bottom: 23.7 / 1405
  25008. }
  25009. },
  25010. maw: {
  25011. height: math.unit(2.8, "feet"),
  25012. name: "Maw",
  25013. image: {
  25014. source: "./media/characters/juri/maw.svg"
  25015. }
  25016. },
  25017. stomach: {
  25018. height: math.unit(0.89, "feet"),
  25019. capacity: math.unit(4, "liters"),
  25020. name: "Stomach",
  25021. image: {
  25022. source: "./media/characters/juri/stomach.svg"
  25023. }
  25024. },
  25025. },
  25026. [
  25027. {
  25028. name: "Normal",
  25029. height: math.unit(7 + 3 / 12, "feet"),
  25030. default: true
  25031. },
  25032. ]
  25033. ))
  25034. characterMakers.push(() => makeCharacter(
  25035. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25036. {
  25037. fox: {
  25038. height: math.unit(5 + 6 / 12, "feet"),
  25039. weight: math.unit(140, "lb"),
  25040. name: "Fox",
  25041. image: {
  25042. source: "./media/characters/maxene-sita/fox.svg",
  25043. extra: 146 / 138,
  25044. bottom: 2.1 / 148.19
  25045. }
  25046. },
  25047. foxLaying: {
  25048. height: math.unit(1.70, "feet"),
  25049. weight: math.unit(140, "lb"),
  25050. name: "Fox (Laying)",
  25051. image: {
  25052. source: "./media/characters/maxene-sita/fox-laying.svg",
  25053. extra: 910 / 572,
  25054. bottom: 71 / 981
  25055. }
  25056. },
  25057. kitsune: {
  25058. height: math.unit(10, "feet"),
  25059. weight: math.unit(800, "lb"),
  25060. name: "Kitsune",
  25061. image: {
  25062. source: "./media/characters/maxene-sita/kitsune.svg",
  25063. extra: 185 / 176,
  25064. bottom: 4.7 / 189.9
  25065. }
  25066. },
  25067. hellhound: {
  25068. height: math.unit(10, "feet"),
  25069. weight: math.unit(700, "lb"),
  25070. name: "Hellhound",
  25071. image: {
  25072. source: "./media/characters/maxene-sita/hellhound.svg",
  25073. extra: 1600 / 1545,
  25074. bottom: 81 / 1681
  25075. }
  25076. },
  25077. },
  25078. [
  25079. {
  25080. name: "Normal",
  25081. height: math.unit(5 + 6 / 12, "feet"),
  25082. default: true
  25083. },
  25084. ]
  25085. ))
  25086. characterMakers.push(() => makeCharacter(
  25087. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25088. {
  25089. front: {
  25090. height: math.unit(3 + 4 / 12, "feet"),
  25091. weight: math.unit(70, "lb"),
  25092. name: "Front",
  25093. image: {
  25094. source: "./media/characters/maia/front.svg",
  25095. extra: 227 / 219.5,
  25096. bottom: 40 / 267
  25097. }
  25098. },
  25099. back: {
  25100. height: math.unit(3 + 4 / 12, "feet"),
  25101. weight: math.unit(70, "lb"),
  25102. name: "Back",
  25103. image: {
  25104. source: "./media/characters/maia/back.svg",
  25105. extra: 237 / 225
  25106. }
  25107. },
  25108. },
  25109. [
  25110. {
  25111. name: "Normal",
  25112. height: math.unit(3 + 4 / 12, "feet"),
  25113. default: true
  25114. },
  25115. ]
  25116. ))
  25117. characterMakers.push(() => makeCharacter(
  25118. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25119. {
  25120. front: {
  25121. height: math.unit(5 + 10 / 12, "feet"),
  25122. weight: math.unit(197, "lb"),
  25123. name: "Front",
  25124. image: {
  25125. source: "./media/characters/jabaro/front.svg",
  25126. extra: 225 / 216,
  25127. bottom: 5.06 / 230
  25128. }
  25129. },
  25130. back: {
  25131. height: math.unit(5 + 10 / 12, "feet"),
  25132. weight: math.unit(197, "lb"),
  25133. name: "Back",
  25134. image: {
  25135. source: "./media/characters/jabaro/back.svg",
  25136. extra: 225 / 219,
  25137. bottom: 1.9 / 227
  25138. }
  25139. },
  25140. },
  25141. [
  25142. {
  25143. name: "Normal",
  25144. height: math.unit(5 + 10 / 12, "feet"),
  25145. default: true
  25146. },
  25147. ]
  25148. ))
  25149. characterMakers.push(() => makeCharacter(
  25150. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25151. {
  25152. front: {
  25153. height: math.unit(5 + 8 / 12, "feet"),
  25154. weight: math.unit(139, "lb"),
  25155. name: "Front",
  25156. image: {
  25157. source: "./media/characters/risa/front.svg",
  25158. extra: 270 / 260,
  25159. bottom: 11.2 / 282
  25160. }
  25161. },
  25162. back: {
  25163. height: math.unit(5 + 8 / 12, "feet"),
  25164. weight: math.unit(139, "lb"),
  25165. name: "Back",
  25166. image: {
  25167. source: "./media/characters/risa/back.svg",
  25168. extra: 264 / 255,
  25169. bottom: 4 / 268
  25170. }
  25171. },
  25172. },
  25173. [
  25174. {
  25175. name: "Normal",
  25176. height: math.unit(5 + 8 / 12, "feet"),
  25177. default: true
  25178. },
  25179. ]
  25180. ))
  25181. characterMakers.push(() => makeCharacter(
  25182. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25183. {
  25184. front: {
  25185. height: math.unit(2 + 11 / 12, "feet"),
  25186. weight: math.unit(30, "lb"),
  25187. name: "Front",
  25188. image: {
  25189. source: "./media/characters/weatley/front.svg",
  25190. bottom: 10.7 / 414,
  25191. extra: 403.5 / 362
  25192. }
  25193. },
  25194. back: {
  25195. height: math.unit(2 + 11 / 12, "feet"),
  25196. weight: math.unit(30, "lb"),
  25197. name: "Back",
  25198. image: {
  25199. source: "./media/characters/weatley/back.svg",
  25200. bottom: 10.7 / 414,
  25201. extra: 403.5 / 362
  25202. }
  25203. },
  25204. },
  25205. [
  25206. {
  25207. name: "Normal",
  25208. height: math.unit(2 + 11 / 12, "feet"),
  25209. default: true
  25210. },
  25211. ]
  25212. ))
  25213. characterMakers.push(() => makeCharacter(
  25214. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25215. {
  25216. front: {
  25217. height: math.unit(5 + 2 / 12, "feet"),
  25218. weight: math.unit(50, "kg"),
  25219. name: "Front",
  25220. image: {
  25221. source: "./media/characters/mercury-crescent/front.svg",
  25222. extra: 1088 / 1033,
  25223. bottom: 18.9 / 1109
  25224. }
  25225. },
  25226. },
  25227. [
  25228. {
  25229. name: "Normal",
  25230. height: math.unit(5 + 2 / 12, "feet"),
  25231. default: true
  25232. },
  25233. ]
  25234. ))
  25235. characterMakers.push(() => makeCharacter(
  25236. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25237. {
  25238. front: {
  25239. height: math.unit(2, "feet"),
  25240. weight: math.unit(15, "kg"),
  25241. name: "Front",
  25242. image: {
  25243. source: "./media/characters/diamond-jones/front.svg",
  25244. bottom: 16 / 568
  25245. }
  25246. },
  25247. },
  25248. [
  25249. {
  25250. name: "Normal",
  25251. height: math.unit(2, "feet"),
  25252. default: true
  25253. },
  25254. ]
  25255. ))
  25256. characterMakers.push(() => makeCharacter(
  25257. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25258. {
  25259. front: {
  25260. height: math.unit(3, "feet"),
  25261. weight: math.unit(30, "kg"),
  25262. name: "Front",
  25263. image: {
  25264. source: "./media/characters/sweet-bit/front.svg",
  25265. extra: 675 / 567,
  25266. bottom: 27.7 / 703
  25267. }
  25268. },
  25269. },
  25270. [
  25271. {
  25272. name: "Normal",
  25273. height: math.unit(3, "feet"),
  25274. default: true
  25275. },
  25276. ]
  25277. ))
  25278. characterMakers.push(() => makeCharacter(
  25279. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25280. {
  25281. side: {
  25282. height: math.unit(9.178, "feet"),
  25283. weight: math.unit(500, "lb"),
  25284. name: "Side",
  25285. image: {
  25286. source: "./media/characters/umbrazen/side.svg",
  25287. extra: 1730 / 1473,
  25288. bottom: 34.6 / 1765
  25289. }
  25290. },
  25291. },
  25292. [
  25293. {
  25294. name: "Normal",
  25295. height: math.unit(9.178, "feet"),
  25296. default: true
  25297. },
  25298. ]
  25299. ))
  25300. characterMakers.push(() => makeCharacter(
  25301. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25302. {
  25303. front: {
  25304. height: math.unit(10, "feet"),
  25305. weight: math.unit(750, "lb"),
  25306. name: "Front",
  25307. image: {
  25308. source: "./media/characters/arlist/front.svg",
  25309. extra: 961 / 778,
  25310. bottom: 6.2 / 986
  25311. }
  25312. },
  25313. },
  25314. [
  25315. {
  25316. name: "Normal",
  25317. height: math.unit(10, "feet"),
  25318. default: true
  25319. },
  25320. ]
  25321. ))
  25322. characterMakers.push(() => makeCharacter(
  25323. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25324. {
  25325. front: {
  25326. height: math.unit(5 + 1 / 12, "feet"),
  25327. weight: math.unit(110, "lb"),
  25328. name: "Front",
  25329. image: {
  25330. source: "./media/characters/aradel/front.svg",
  25331. extra: 324 / 303,
  25332. bottom: 3.6 / 329.4
  25333. }
  25334. },
  25335. },
  25336. [
  25337. {
  25338. name: "Normal",
  25339. height: math.unit(5 + 1 / 12, "feet"),
  25340. default: true
  25341. },
  25342. ]
  25343. ))
  25344. characterMakers.push(() => makeCharacter(
  25345. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25346. {
  25347. front: {
  25348. height: math.unit(3 + 8 / 12, "feet"),
  25349. weight: math.unit(50, "lb"),
  25350. name: "Front",
  25351. image: {
  25352. source: "./media/characters/serryn/front.svg",
  25353. extra: 1792 / 1656,
  25354. bottom: 43.5 / 1840
  25355. }
  25356. },
  25357. },
  25358. [
  25359. {
  25360. name: "Normal",
  25361. height: math.unit(3 + 8 / 12, "feet"),
  25362. default: true
  25363. },
  25364. ]
  25365. ))
  25366. characterMakers.push(() => makeCharacter(
  25367. { name: "Xavier Thyme" },
  25368. {
  25369. front: {
  25370. height: math.unit(7 + 10 / 12, "feet"),
  25371. weight: math.unit(255, "lb"),
  25372. name: "Front",
  25373. image: {
  25374. source: "./media/characters/xavier-thyme/front.svg",
  25375. extra: 3733 / 3642,
  25376. bottom: 131 / 3869
  25377. }
  25378. },
  25379. frontRaven: {
  25380. height: math.unit(7 + 10 / 12, "feet"),
  25381. weight: math.unit(255, "lb"),
  25382. name: "Front (Raven)",
  25383. image: {
  25384. source: "./media/characters/xavier-thyme/front-raven.svg",
  25385. extra: 4385 / 3642,
  25386. bottom: 131 / 4517
  25387. }
  25388. },
  25389. },
  25390. [
  25391. {
  25392. name: "Normal",
  25393. height: math.unit(7 + 10 / 12, "feet"),
  25394. default: true
  25395. },
  25396. ]
  25397. ))
  25398. characterMakers.push(() => makeCharacter(
  25399. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25400. {
  25401. front: {
  25402. height: math.unit(1.6, "m"),
  25403. weight: math.unit(50, "kg"),
  25404. name: "Front",
  25405. image: {
  25406. source: "./media/characters/kiki/front.svg",
  25407. extra: 4682 / 3610,
  25408. bottom: 115 / 4777
  25409. }
  25410. },
  25411. },
  25412. [
  25413. {
  25414. name: "Normal",
  25415. height: math.unit(1.6, "meters"),
  25416. default: true
  25417. },
  25418. ]
  25419. ))
  25420. characterMakers.push(() => makeCharacter(
  25421. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25422. {
  25423. front: {
  25424. height: math.unit(50, "m"),
  25425. weight: math.unit(500, "tonnes"),
  25426. name: "Front",
  25427. image: {
  25428. source: "./media/characters/ryoko/front.svg",
  25429. extra: 4632 / 3926,
  25430. bottom: 193 / 4823
  25431. }
  25432. },
  25433. },
  25434. [
  25435. {
  25436. name: "Normal",
  25437. height: math.unit(50, "meters"),
  25438. default: true
  25439. },
  25440. ]
  25441. ))
  25442. characterMakers.push(() => makeCharacter(
  25443. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25444. {
  25445. front: {
  25446. height: math.unit(30, "m"),
  25447. weight: math.unit(22, "tonnes"),
  25448. name: "Front",
  25449. image: {
  25450. source: "./media/characters/elio/front.svg",
  25451. extra: 4582 / 3720,
  25452. bottom: 236 / 4828
  25453. }
  25454. },
  25455. },
  25456. [
  25457. {
  25458. name: "Normal",
  25459. height: math.unit(30, "meters"),
  25460. default: true
  25461. },
  25462. ]
  25463. ))
  25464. characterMakers.push(() => makeCharacter(
  25465. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25466. {
  25467. front: {
  25468. height: math.unit(6 + 3 / 12, "feet"),
  25469. weight: math.unit(120, "lb"),
  25470. name: "Front",
  25471. image: {
  25472. source: "./media/characters/azura/front.svg",
  25473. extra: 1149 / 1135,
  25474. bottom: 45 / 1194
  25475. }
  25476. },
  25477. frontClothed: {
  25478. height: math.unit(6 + 3 / 12, "feet"),
  25479. weight: math.unit(120, "lb"),
  25480. name: "Front (Clothed)",
  25481. image: {
  25482. source: "./media/characters/azura/front-clothed.svg",
  25483. extra: 1149 / 1135,
  25484. bottom: 45 / 1194
  25485. }
  25486. },
  25487. },
  25488. [
  25489. {
  25490. name: "Normal",
  25491. height: math.unit(6 + 3 / 12, "feet"),
  25492. default: true
  25493. },
  25494. {
  25495. name: "Macro",
  25496. height: math.unit(20 + 6 / 12, "feet")
  25497. },
  25498. {
  25499. name: "Megamacro",
  25500. height: math.unit(12, "miles")
  25501. },
  25502. {
  25503. name: "Gigamacro",
  25504. height: math.unit(10000, "miles")
  25505. },
  25506. {
  25507. name: "Teramacro",
  25508. height: math.unit(900000, "miles")
  25509. },
  25510. ]
  25511. ))
  25512. characterMakers.push(() => makeCharacter(
  25513. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25514. {
  25515. front: {
  25516. height: math.unit(12, "feet"),
  25517. weight: math.unit(1, "ton"),
  25518. capacity: math.unit(660000, "gallons"),
  25519. name: "Front",
  25520. image: {
  25521. source: "./media/characters/zeus/front.svg",
  25522. extra: 5005 / 4717,
  25523. bottom: 363 / 5388
  25524. }
  25525. },
  25526. },
  25527. [
  25528. {
  25529. name: "Normal",
  25530. height: math.unit(12, "feet")
  25531. },
  25532. {
  25533. name: "Preferred Size",
  25534. height: math.unit(0.5, "miles"),
  25535. default: true
  25536. },
  25537. {
  25538. name: "Giga Horse",
  25539. height: math.unit(300, "miles")
  25540. },
  25541. {
  25542. name: "Riding Planets",
  25543. height: math.unit(30, "megameters")
  25544. },
  25545. {
  25546. name: "Cosmic Giant",
  25547. height: math.unit(3, "zettameters")
  25548. },
  25549. {
  25550. name: "Breeding God",
  25551. height: math.unit(9.92e22, "yottameters")
  25552. },
  25553. ]
  25554. ))
  25555. characterMakers.push(() => makeCharacter(
  25556. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25557. {
  25558. side: {
  25559. height: math.unit(9, "feet"),
  25560. weight: math.unit(1500, "kg"),
  25561. name: "Side",
  25562. image: {
  25563. source: "./media/characters/fang/side.svg",
  25564. extra: 924 / 866,
  25565. bottom: 47.5 / 972.3
  25566. }
  25567. },
  25568. },
  25569. [
  25570. {
  25571. name: "Normal",
  25572. height: math.unit(9, "feet"),
  25573. default: true
  25574. },
  25575. {
  25576. name: "Macro",
  25577. height: math.unit(75 + 6 / 12, "feet")
  25578. },
  25579. {
  25580. name: "Teramacro",
  25581. height: math.unit(50000, "miles")
  25582. },
  25583. ]
  25584. ))
  25585. characterMakers.push(() => makeCharacter(
  25586. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25587. {
  25588. front: {
  25589. height: math.unit(10, "feet"),
  25590. weight: math.unit(2, "tons"),
  25591. name: "Front",
  25592. image: {
  25593. source: "./media/characters/rekhit/front.svg",
  25594. extra: 2796 / 2590,
  25595. bottom: 225 / 3022
  25596. }
  25597. },
  25598. },
  25599. [
  25600. {
  25601. name: "Normal",
  25602. height: math.unit(10, "feet"),
  25603. default: true
  25604. },
  25605. {
  25606. name: "Macro",
  25607. height: math.unit(500, "feet")
  25608. },
  25609. ]
  25610. ))
  25611. characterMakers.push(() => makeCharacter(
  25612. { name: "Dahlia Verrick" },
  25613. {
  25614. front: {
  25615. height: math.unit(7 + 6.451 / 12, "feet"),
  25616. weight: math.unit(310, "lb"),
  25617. name: "Front",
  25618. image: {
  25619. source: "./media/characters/dahlia-verrick/front.svg",
  25620. extra: 1488 / 1365,
  25621. bottom: 6.2 / 1495
  25622. }
  25623. },
  25624. back: {
  25625. height: math.unit(7 + 6.451 / 12, "feet"),
  25626. weight: math.unit(310, "lb"),
  25627. name: "Back",
  25628. image: {
  25629. source: "./media/characters/dahlia-verrick/back.svg",
  25630. extra: 1472 / 1351,
  25631. bottom: 5.28 / 1477
  25632. }
  25633. },
  25634. frontBusiness: {
  25635. height: math.unit(7 + 6.451 / 12, "feet"),
  25636. weight: math.unit(200, "lb"),
  25637. name: "Front (Business)",
  25638. image: {
  25639. source: "./media/characters/dahlia-verrick/front-business.svg",
  25640. extra: 1478 / 1381,
  25641. bottom: 5.5 / 1484
  25642. }
  25643. },
  25644. frontCasual: {
  25645. height: math.unit(7 + 6.451 / 12, "feet"),
  25646. weight: math.unit(200, "lb"),
  25647. name: "Front (Casual)",
  25648. image: {
  25649. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25650. extra: 1478 / 1381,
  25651. bottom: 5.5 / 1484
  25652. }
  25653. },
  25654. },
  25655. [
  25656. {
  25657. name: "Travel-Sized",
  25658. height: math.unit(7.45, "inches")
  25659. },
  25660. {
  25661. name: "Normal",
  25662. height: math.unit(7 + 6.451 / 12, "feet"),
  25663. default: true
  25664. },
  25665. {
  25666. name: "Hitting the Town",
  25667. height: math.unit(37 + 8 / 12, "feet")
  25668. },
  25669. {
  25670. name: "Stomp in the Suburbs",
  25671. height: math.unit(964 + 9.728 / 12, "feet")
  25672. },
  25673. {
  25674. name: "Sit on the City",
  25675. height: math.unit(61747 + 10.592 / 12, "feet")
  25676. },
  25677. {
  25678. name: "Glomp the Globe",
  25679. height: math.unit(252919327 + 4.832 / 12, "feet")
  25680. },
  25681. ]
  25682. ))
  25683. characterMakers.push(() => makeCharacter(
  25684. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25685. {
  25686. front: {
  25687. height: math.unit(6 + 4 / 12, "feet"),
  25688. weight: math.unit(320, "lb"),
  25689. name: "Front",
  25690. image: {
  25691. source: "./media/characters/balina-mahigan/front.svg",
  25692. extra: 447 / 428,
  25693. bottom: 18 / 466
  25694. }
  25695. },
  25696. back: {
  25697. height: math.unit(6 + 4 / 12, "feet"),
  25698. weight: math.unit(320, "lb"),
  25699. name: "Back",
  25700. image: {
  25701. source: "./media/characters/balina-mahigan/back.svg",
  25702. extra: 445 / 428,
  25703. bottom: 4.07 / 448
  25704. }
  25705. },
  25706. arm: {
  25707. height: math.unit(1.88, "feet"),
  25708. name: "Arm",
  25709. image: {
  25710. source: "./media/characters/balina-mahigan/arm.svg"
  25711. }
  25712. },
  25713. backPort: {
  25714. height: math.unit(0.685, "feet"),
  25715. name: "Back Port",
  25716. image: {
  25717. source: "./media/characters/balina-mahigan/back-port.svg"
  25718. }
  25719. },
  25720. hoofpaw: {
  25721. height: math.unit(1.41, "feet"),
  25722. name: "Hoofpaw",
  25723. image: {
  25724. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25725. }
  25726. },
  25727. leftHandBack: {
  25728. height: math.unit(0.938, "feet"),
  25729. name: "Left Hand (Back)",
  25730. image: {
  25731. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25732. }
  25733. },
  25734. leftHandFront: {
  25735. height: math.unit(0.938, "feet"),
  25736. name: "Left Hand (Front)",
  25737. image: {
  25738. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25739. }
  25740. },
  25741. rightHandBack: {
  25742. height: math.unit(0.95, "feet"),
  25743. name: "Right Hand (Back)",
  25744. image: {
  25745. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25746. }
  25747. },
  25748. rightHandFront: {
  25749. height: math.unit(0.95, "feet"),
  25750. name: "Right Hand (Front)",
  25751. image: {
  25752. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25753. }
  25754. },
  25755. },
  25756. [
  25757. {
  25758. name: "Normal",
  25759. height: math.unit(6 + 4 / 12, "feet"),
  25760. default: true
  25761. },
  25762. ]
  25763. ))
  25764. characterMakers.push(() => makeCharacter(
  25765. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25766. {
  25767. front: {
  25768. height: math.unit(6, "feet"),
  25769. weight: math.unit(320, "lb"),
  25770. name: "Front",
  25771. image: {
  25772. source: "./media/characters/balina-mejeri/front.svg",
  25773. extra: 517 / 488,
  25774. bottom: 44.2 / 561
  25775. }
  25776. },
  25777. },
  25778. [
  25779. {
  25780. name: "Normal",
  25781. height: math.unit(6 + 4 / 12, "feet")
  25782. },
  25783. {
  25784. name: "Business",
  25785. height: math.unit(155, "feet"),
  25786. default: true
  25787. },
  25788. ]
  25789. ))
  25790. characterMakers.push(() => makeCharacter(
  25791. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25792. {
  25793. kneeling: {
  25794. height: math.unit(6 + 4 / 12, "feet"),
  25795. weight: math.unit(300 * 20, "lb"),
  25796. name: "Kneeling",
  25797. image: {
  25798. source: "./media/characters/balbarian/kneeling.svg",
  25799. extra: 922 / 862,
  25800. bottom: 42.4 / 965
  25801. }
  25802. },
  25803. },
  25804. [
  25805. {
  25806. name: "Normal",
  25807. height: math.unit(6 + 4 / 12, "feet")
  25808. },
  25809. {
  25810. name: "Treasured",
  25811. height: math.unit(18 + 9 / 12, "feet"),
  25812. default: true
  25813. },
  25814. {
  25815. name: "Macro",
  25816. height: math.unit(900, "feet")
  25817. },
  25818. ]
  25819. ))
  25820. characterMakers.push(() => makeCharacter(
  25821. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25822. {
  25823. front: {
  25824. height: math.unit(6 + 4 / 12, "feet"),
  25825. weight: math.unit(325, "lb"),
  25826. name: "Front",
  25827. image: {
  25828. source: "./media/characters/balina-amarini/front.svg",
  25829. extra: 415 / 403,
  25830. bottom: 19 / 433.4
  25831. }
  25832. },
  25833. back: {
  25834. height: math.unit(6 + 4 / 12, "feet"),
  25835. weight: math.unit(325, "lb"),
  25836. name: "Back",
  25837. image: {
  25838. source: "./media/characters/balina-amarini/back.svg",
  25839. extra: 415 / 403,
  25840. bottom: 13.5 / 432
  25841. }
  25842. },
  25843. overdrive: {
  25844. height: math.unit(6 + 4 / 12, "feet"),
  25845. weight: math.unit(400, "lb"),
  25846. name: "Overdrive",
  25847. image: {
  25848. source: "./media/characters/balina-amarini/overdrive.svg",
  25849. extra: 269 / 259,
  25850. bottom: 12 / 282
  25851. }
  25852. },
  25853. },
  25854. [
  25855. {
  25856. name: "Boom",
  25857. height: math.unit(9 + 10 / 12, "feet"),
  25858. default: true
  25859. },
  25860. {
  25861. name: "Macro",
  25862. height: math.unit(280, "feet")
  25863. },
  25864. ]
  25865. ))
  25866. characterMakers.push(() => makeCharacter(
  25867. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25868. {
  25869. goddess: {
  25870. height: math.unit(600, "feet"),
  25871. weight: math.unit(2000000, "tons"),
  25872. name: "Goddess",
  25873. image: {
  25874. source: "./media/characters/lady-kubwa/goddess.svg",
  25875. extra: 1240.5 / 1223,
  25876. bottom: 22 / 1263
  25877. }
  25878. },
  25879. goddesser: {
  25880. height: math.unit(900, "feet"),
  25881. weight: math.unit(20000000, "lb"),
  25882. name: "Goddess-er",
  25883. image: {
  25884. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25885. extra: 899 / 888,
  25886. bottom: 12.6 / 912
  25887. }
  25888. },
  25889. },
  25890. [
  25891. {
  25892. name: "Macro",
  25893. height: math.unit(600, "feet"),
  25894. default: true
  25895. },
  25896. {
  25897. name: "Megamacro",
  25898. height: math.unit(250, "miles")
  25899. },
  25900. ]
  25901. ))
  25902. characterMakers.push(() => makeCharacter(
  25903. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25904. {
  25905. front: {
  25906. height: math.unit(7 + 7 / 12, "feet"),
  25907. weight: math.unit(250, "lb"),
  25908. name: "Front",
  25909. image: {
  25910. source: "./media/characters/tala-grovehorn/front.svg",
  25911. extra: 2636 / 2525,
  25912. bottom: 147 / 2781
  25913. }
  25914. },
  25915. back: {
  25916. height: math.unit(7 + 7 / 12, "feet"),
  25917. weight: math.unit(250, "lb"),
  25918. name: "Back",
  25919. image: {
  25920. source: "./media/characters/tala-grovehorn/back.svg",
  25921. extra: 2635 / 2539,
  25922. bottom: 100 / 2732.8
  25923. }
  25924. },
  25925. mouth: {
  25926. height: math.unit(1.15, "feet"),
  25927. name: "Mouth",
  25928. image: {
  25929. source: "./media/characters/tala-grovehorn/mouth.svg"
  25930. }
  25931. },
  25932. dick: {
  25933. height: math.unit(2.36, "feet"),
  25934. name: "Dick",
  25935. image: {
  25936. source: "./media/characters/tala-grovehorn/dick.svg"
  25937. }
  25938. },
  25939. slit: {
  25940. height: math.unit(0.61, "feet"),
  25941. name: "Slit",
  25942. image: {
  25943. source: "./media/characters/tala-grovehorn/slit.svg"
  25944. }
  25945. },
  25946. },
  25947. [
  25948. ]
  25949. ))
  25950. characterMakers.push(() => makeCharacter(
  25951. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25952. {
  25953. front: {
  25954. height: math.unit(7 + 7 / 12, "feet"),
  25955. weight: math.unit(225, "lb"),
  25956. name: "Front",
  25957. image: {
  25958. source: "./media/characters/epona/front.svg",
  25959. extra: 2445 / 2290,
  25960. bottom: 251 / 2696
  25961. }
  25962. },
  25963. back: {
  25964. height: math.unit(7 + 7 / 12, "feet"),
  25965. weight: math.unit(225, "lb"),
  25966. name: "Back",
  25967. image: {
  25968. source: "./media/characters/epona/back.svg",
  25969. extra: 2546 / 2408,
  25970. bottom: 44 / 2589
  25971. }
  25972. },
  25973. genitals: {
  25974. height: math.unit(1.5, "feet"),
  25975. name: "Genitals",
  25976. image: {
  25977. source: "./media/characters/epona/genitals.svg"
  25978. }
  25979. },
  25980. },
  25981. [
  25982. {
  25983. name: "Normal",
  25984. height: math.unit(7 + 7 / 12, "feet"),
  25985. default: true
  25986. },
  25987. ]
  25988. ))
  25989. characterMakers.push(() => makeCharacter(
  25990. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25991. {
  25992. front: {
  25993. height: math.unit(7, "feet"),
  25994. weight: math.unit(518, "lb"),
  25995. name: "Front",
  25996. image: {
  25997. source: "./media/characters/avia-bloodbourn/front.svg",
  25998. extra: 1466 / 1350,
  25999. bottom: 65 / 1527
  26000. }
  26001. },
  26002. },
  26003. [
  26004. ]
  26005. ))
  26006. characterMakers.push(() => makeCharacter(
  26007. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26008. {
  26009. front: {
  26010. height: math.unit(9.35, "feet"),
  26011. weight: math.unit(600, "lb"),
  26012. name: "Front",
  26013. image: {
  26014. source: "./media/characters/amera/front.svg",
  26015. extra: 891 / 818,
  26016. bottom: 30 / 922.7
  26017. }
  26018. },
  26019. back: {
  26020. height: math.unit(9.35, "feet"),
  26021. weight: math.unit(600, "lb"),
  26022. name: "Back",
  26023. image: {
  26024. source: "./media/characters/amera/back.svg",
  26025. extra: 876 / 824,
  26026. bottom: 6.8 / 884
  26027. }
  26028. },
  26029. dick: {
  26030. height: math.unit(2.14, "feet"),
  26031. name: "Dick",
  26032. image: {
  26033. source: "./media/characters/amera/dick.svg"
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Normal",
  26040. height: math.unit(9.35, "feet"),
  26041. default: true
  26042. },
  26043. ]
  26044. ))
  26045. characterMakers.push(() => makeCharacter(
  26046. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26047. {
  26048. kneeling: {
  26049. height: math.unit(3 + 4 / 12, "feet"),
  26050. weight: math.unit(90, "lb"),
  26051. name: "Kneeling",
  26052. image: {
  26053. source: "./media/characters/rosewen/kneeling.svg",
  26054. extra: 1835 / 1571,
  26055. bottom: 27.7 / 1862
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Normal",
  26062. height: math.unit(3 + 4 / 12, "feet"),
  26063. default: true
  26064. },
  26065. ]
  26066. ))
  26067. characterMakers.push(() => makeCharacter(
  26068. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26069. {
  26070. front: {
  26071. height: math.unit(5 + 10 / 12, "feet"),
  26072. weight: math.unit(200, "lb"),
  26073. name: "Front",
  26074. image: {
  26075. source: "./media/characters/sabah/front.svg",
  26076. extra: 849 / 763,
  26077. bottom: 33.9 / 881
  26078. }
  26079. },
  26080. },
  26081. [
  26082. {
  26083. name: "Normal",
  26084. height: math.unit(5 + 10 / 12, "feet"),
  26085. default: true
  26086. },
  26087. ]
  26088. ))
  26089. characterMakers.push(() => makeCharacter(
  26090. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26091. {
  26092. front: {
  26093. height: math.unit(3 + 5 / 12, "feet"),
  26094. weight: math.unit(40, "kg"),
  26095. name: "Front",
  26096. image: {
  26097. source: "./media/characters/purple-flame/front.svg",
  26098. extra: 1577 / 1412,
  26099. bottom: 97 / 1694
  26100. }
  26101. },
  26102. frontDressed: {
  26103. height: math.unit(3 + 5 / 12, "feet"),
  26104. weight: math.unit(40, "kg"),
  26105. name: "Front (Dressed)",
  26106. image: {
  26107. source: "./media/characters/purple-flame/front-dressed.svg",
  26108. extra: 1577 / 1412,
  26109. bottom: 97 / 1694
  26110. }
  26111. },
  26112. headphones: {
  26113. height: math.unit(0.85, "feet"),
  26114. name: "Headphones",
  26115. image: {
  26116. source: "./media/characters/purple-flame/headphones.svg"
  26117. }
  26118. },
  26119. },
  26120. [
  26121. {
  26122. name: "Really Small",
  26123. height: math.unit(5, "cm")
  26124. },
  26125. {
  26126. name: "Micro",
  26127. height: math.unit(1 + 5 / 12, "feet")
  26128. },
  26129. {
  26130. name: "Normal",
  26131. height: math.unit(3 + 5 / 12, "feet"),
  26132. default: true
  26133. },
  26134. {
  26135. name: "Minimacro",
  26136. height: math.unit(125, "feet")
  26137. },
  26138. {
  26139. name: "Macro",
  26140. height: math.unit(0.5, "miles")
  26141. },
  26142. {
  26143. name: "Megamacro",
  26144. height: math.unit(50, "miles")
  26145. },
  26146. {
  26147. name: "Gigantic",
  26148. height: math.unit(750, "miles")
  26149. },
  26150. {
  26151. name: "Planetary",
  26152. height: math.unit(15000, "miles")
  26153. },
  26154. ]
  26155. ))
  26156. characterMakers.push(() => makeCharacter(
  26157. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26158. {
  26159. front: {
  26160. height: math.unit(14, "feet"),
  26161. weight: math.unit(959, "lb"),
  26162. name: "Front",
  26163. image: {
  26164. source: "./media/characters/arsenal/front.svg",
  26165. extra: 2357 / 2157,
  26166. bottom: 93 / 2458
  26167. }
  26168. },
  26169. },
  26170. [
  26171. {
  26172. name: "Normal",
  26173. height: math.unit(14, "feet"),
  26174. default: true
  26175. },
  26176. ]
  26177. ))
  26178. characterMakers.push(() => makeCharacter(
  26179. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26180. {
  26181. front: {
  26182. height: math.unit(6, "feet"),
  26183. weight: math.unit(150, "lb"),
  26184. name: "Front",
  26185. image: {
  26186. source: "./media/characters/adira/front.svg",
  26187. extra: 1078 / 1029,
  26188. bottom: 87 / 1166
  26189. }
  26190. },
  26191. },
  26192. [
  26193. {
  26194. name: "Micro",
  26195. height: math.unit(4, "inches"),
  26196. default: true
  26197. },
  26198. {
  26199. name: "Macro",
  26200. height: math.unit(50, "feet")
  26201. },
  26202. ]
  26203. ))
  26204. characterMakers.push(() => makeCharacter(
  26205. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26206. {
  26207. front: {
  26208. height: math.unit(16, "feet"),
  26209. weight: math.unit(1000, "lb"),
  26210. name: "Front",
  26211. image: {
  26212. source: "./media/characters/grim/front.svg",
  26213. extra: 622 / 614,
  26214. bottom: 18.1 / 642
  26215. }
  26216. },
  26217. back: {
  26218. height: math.unit(16, "feet"),
  26219. weight: math.unit(1000, "lb"),
  26220. name: "Back",
  26221. image: {
  26222. source: "./media/characters/grim/back.svg",
  26223. extra: 610.6 / 602,
  26224. bottom: 40.8 / 652
  26225. }
  26226. },
  26227. hunched: {
  26228. height: math.unit(9.75, "feet"),
  26229. weight: math.unit(1000, "lb"),
  26230. name: "Hunched",
  26231. image: {
  26232. source: "./media/characters/grim/hunched.svg",
  26233. extra: 304 / 297,
  26234. bottom: 35.4 / 394
  26235. }
  26236. },
  26237. },
  26238. [
  26239. {
  26240. name: "Normal",
  26241. height: math.unit(16, "feet"),
  26242. default: true
  26243. },
  26244. ]
  26245. ))
  26246. characterMakers.push(() => makeCharacter(
  26247. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26248. {
  26249. front: {
  26250. height: math.unit(2.3, "meters"),
  26251. weight: math.unit(300, "lb"),
  26252. name: "Front",
  26253. image: {
  26254. source: "./media/characters/sinja/front-sfw.svg",
  26255. extra: 1393 / 1294,
  26256. bottom: 70 / 1463
  26257. }
  26258. },
  26259. frontNsfw: {
  26260. height: math.unit(2.3, "meters"),
  26261. weight: math.unit(300, "lb"),
  26262. name: "Front (NSFW)",
  26263. image: {
  26264. source: "./media/characters/sinja/front-nsfw.svg",
  26265. extra: 1393 / 1294,
  26266. bottom: 70 / 1463
  26267. }
  26268. },
  26269. back: {
  26270. height: math.unit(2.3, "meters"),
  26271. weight: math.unit(300, "lb"),
  26272. name: "Back",
  26273. image: {
  26274. source: "./media/characters/sinja/back.svg",
  26275. extra: 1393 / 1294,
  26276. bottom: 70 / 1463
  26277. }
  26278. },
  26279. head: {
  26280. height: math.unit(1.771, "feet"),
  26281. name: "Head",
  26282. image: {
  26283. source: "./media/characters/sinja/head.svg"
  26284. }
  26285. },
  26286. slit: {
  26287. height: math.unit(0.8, "feet"),
  26288. name: "Slit",
  26289. image: {
  26290. source: "./media/characters/sinja/slit.svg"
  26291. }
  26292. },
  26293. },
  26294. [
  26295. {
  26296. name: "Normal",
  26297. height: math.unit(2.3, "meters")
  26298. },
  26299. {
  26300. name: "Macro",
  26301. height: math.unit(91, "meters"),
  26302. default: true
  26303. },
  26304. {
  26305. name: "Megamacro",
  26306. height: math.unit(91440, "meters")
  26307. },
  26308. {
  26309. name: "Gigamacro",
  26310. height: math.unit(60960000, "meters")
  26311. },
  26312. {
  26313. name: "Teramacro",
  26314. height: math.unit(9144000000, "meters")
  26315. },
  26316. ]
  26317. ))
  26318. characterMakers.push(() => makeCharacter(
  26319. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26320. {
  26321. front: {
  26322. height: math.unit(1.7, "meters"),
  26323. weight: math.unit(130, "lb"),
  26324. name: "Front",
  26325. image: {
  26326. source: "./media/characters/kyu/front.svg",
  26327. extra: 415 / 395,
  26328. bottom: 5 / 420
  26329. }
  26330. },
  26331. head: {
  26332. height: math.unit(1.75, "feet"),
  26333. name: "Head",
  26334. image: {
  26335. source: "./media/characters/kyu/head.svg"
  26336. }
  26337. },
  26338. foot: {
  26339. height: math.unit(0.81, "feet"),
  26340. name: "Foot",
  26341. image: {
  26342. source: "./media/characters/kyu/foot.svg"
  26343. }
  26344. },
  26345. },
  26346. [
  26347. {
  26348. name: "Normal",
  26349. height: math.unit(1.7, "meters")
  26350. },
  26351. {
  26352. name: "Macro",
  26353. height: math.unit(131, "feet"),
  26354. default: true
  26355. },
  26356. {
  26357. name: "Megamacro",
  26358. height: math.unit(91440, "meters")
  26359. },
  26360. {
  26361. name: "Gigamacro",
  26362. height: math.unit(60960000, "meters")
  26363. },
  26364. {
  26365. name: "Teramacro",
  26366. height: math.unit(9144000000, "meters")
  26367. },
  26368. ]
  26369. ))
  26370. characterMakers.push(() => makeCharacter(
  26371. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26372. {
  26373. front: {
  26374. height: math.unit(7 + 1 / 12, "feet"),
  26375. weight: math.unit(250, "lb"),
  26376. name: "Front",
  26377. image: {
  26378. source: "./media/characters/joey/front.svg",
  26379. extra: 1791 / 1537,
  26380. bottom: 28 / 1816
  26381. }
  26382. },
  26383. },
  26384. [
  26385. {
  26386. name: "Micro",
  26387. height: math.unit(3, "inches")
  26388. },
  26389. {
  26390. name: "Normal",
  26391. height: math.unit(7 + 1 / 12, "feet"),
  26392. default: true
  26393. },
  26394. ]
  26395. ))
  26396. characterMakers.push(() => makeCharacter(
  26397. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26398. {
  26399. front: {
  26400. height: math.unit(165, "cm"),
  26401. weight: math.unit(140, "lb"),
  26402. name: "Front",
  26403. image: {
  26404. source: "./media/characters/sam-evans/front.svg",
  26405. extra: 3417 / 3230,
  26406. bottom: 41.3 / 3417
  26407. }
  26408. },
  26409. frontSixTails: {
  26410. height: math.unit(165, "cm"),
  26411. weight: math.unit(140, "lb"),
  26412. name: "Front-six-tails",
  26413. image: {
  26414. source: "./media/characters/sam-evans/front-six-tails.svg",
  26415. extra: 3417 / 3230,
  26416. bottom: 41.3 / 3417
  26417. }
  26418. },
  26419. back: {
  26420. height: math.unit(165, "cm"),
  26421. weight: math.unit(140, "lb"),
  26422. name: "Back",
  26423. image: {
  26424. source: "./media/characters/sam-evans/back.svg",
  26425. extra: 3227 / 3032,
  26426. bottom: 6.8 / 3234
  26427. }
  26428. },
  26429. face: {
  26430. height: math.unit(0.68, "feet"),
  26431. name: "Face",
  26432. image: {
  26433. source: "./media/characters/sam-evans/face.svg"
  26434. }
  26435. },
  26436. },
  26437. [
  26438. {
  26439. name: "Normal",
  26440. height: math.unit(165, "cm"),
  26441. default: true
  26442. },
  26443. {
  26444. name: "Macro",
  26445. height: math.unit(100, "meters")
  26446. },
  26447. {
  26448. name: "Macro+",
  26449. height: math.unit(800, "meters")
  26450. },
  26451. {
  26452. name: "Macro++",
  26453. height: math.unit(3, "km")
  26454. },
  26455. {
  26456. name: "Macro+++",
  26457. height: math.unit(30, "km")
  26458. },
  26459. ]
  26460. ))
  26461. characterMakers.push(() => makeCharacter(
  26462. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26463. {
  26464. front: {
  26465. height: math.unit(10, "feet"),
  26466. weight: math.unit(750, "lb"),
  26467. name: "Front",
  26468. image: {
  26469. source: "./media/characters/juliet-a/front.svg",
  26470. extra: 1766 / 1720,
  26471. bottom: 43 / 1809
  26472. }
  26473. },
  26474. back: {
  26475. height: math.unit(10, "feet"),
  26476. weight: math.unit(750, "lb"),
  26477. name: "Back",
  26478. image: {
  26479. source: "./media/characters/juliet-a/back.svg",
  26480. extra: 1781 / 1734,
  26481. bottom: 35 / 1810,
  26482. }
  26483. },
  26484. },
  26485. [
  26486. {
  26487. name: "Normal",
  26488. height: math.unit(10, "feet"),
  26489. default: true
  26490. },
  26491. {
  26492. name: "Dragon Form",
  26493. height: math.unit(250, "feet")
  26494. },
  26495. {
  26496. name: "Macro",
  26497. height: math.unit(1000, "feet")
  26498. },
  26499. {
  26500. name: "Megamacro",
  26501. height: math.unit(10000, "feet")
  26502. }
  26503. ]
  26504. ))
  26505. characterMakers.push(() => makeCharacter(
  26506. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26507. {
  26508. regular: {
  26509. height: math.unit(7 + 3 / 12, "feet"),
  26510. weight: math.unit(260, "lb"),
  26511. name: "Regular",
  26512. image: {
  26513. source: "./media/characters/wild/regular.svg",
  26514. extra: 97.45 / 92,
  26515. bottom: 6.8 / 104.3
  26516. }
  26517. },
  26518. biggums: {
  26519. height: math.unit(8 + 6 / 12, "feet"),
  26520. weight: math.unit(425, "lb"),
  26521. name: "Biggums",
  26522. image: {
  26523. source: "./media/characters/wild/biggums.svg",
  26524. extra: 97.45 / 92,
  26525. bottom: 7.5 / 132.34
  26526. }
  26527. },
  26528. mawRegular: {
  26529. height: math.unit(1.24, "feet"),
  26530. name: "Maw (Regular)",
  26531. image: {
  26532. source: "./media/characters/wild/maw.svg"
  26533. }
  26534. },
  26535. mawBiggums: {
  26536. height: math.unit(1.47, "feet"),
  26537. name: "Maw (Biggums)",
  26538. image: {
  26539. source: "./media/characters/wild/maw.svg"
  26540. }
  26541. },
  26542. },
  26543. [
  26544. {
  26545. name: "Normal",
  26546. height: math.unit(7 + 3 / 12, "feet"),
  26547. default: true
  26548. },
  26549. ]
  26550. ))
  26551. characterMakers.push(() => makeCharacter(
  26552. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26553. {
  26554. front: {
  26555. height: math.unit(2.5, "meters"),
  26556. weight: math.unit(200, "kg"),
  26557. name: "Front",
  26558. image: {
  26559. source: "./media/characters/vidar/front.svg",
  26560. extra: 2994 / 2795,
  26561. bottom: 56 / 3061
  26562. }
  26563. },
  26564. back: {
  26565. height: math.unit(2.5, "meters"),
  26566. weight: math.unit(200, "kg"),
  26567. name: "Back",
  26568. image: {
  26569. source: "./media/characters/vidar/back.svg",
  26570. extra: 3131 / 2928,
  26571. bottom: 13.5 / 3141.5
  26572. }
  26573. },
  26574. feral: {
  26575. height: math.unit(2.5, "meters"),
  26576. weight: math.unit(2000, "kg"),
  26577. name: "Feral",
  26578. image: {
  26579. source: "./media/characters/vidar/feral.svg",
  26580. extra: 2790 / 1765,
  26581. bottom: 6 / 2796
  26582. }
  26583. },
  26584. },
  26585. [
  26586. {
  26587. name: "Normal",
  26588. height: math.unit(2.5, "meters"),
  26589. default: true
  26590. },
  26591. {
  26592. name: "Macro",
  26593. height: math.unit(100, "meters")
  26594. },
  26595. ]
  26596. ))
  26597. characterMakers.push(() => makeCharacter(
  26598. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26599. {
  26600. front: {
  26601. height: math.unit(5 + 9 / 12, "feet"),
  26602. weight: math.unit(120, "lb"),
  26603. name: "Front",
  26604. image: {
  26605. source: "./media/characters/ash/front.svg",
  26606. extra: 2189 / 1961,
  26607. bottom: 5.2 / 2194
  26608. }
  26609. },
  26610. },
  26611. [
  26612. {
  26613. name: "Normal",
  26614. height: math.unit(5 + 9 / 12, "feet"),
  26615. default: true
  26616. },
  26617. ]
  26618. ))
  26619. characterMakers.push(() => makeCharacter(
  26620. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26621. {
  26622. front: {
  26623. height: math.unit(9, "feet"),
  26624. weight: math.unit(10000, "lb"),
  26625. name: "Front",
  26626. image: {
  26627. source: "./media/characters/gygabite/front.svg",
  26628. bottom: 31.7 / 537.8,
  26629. extra: 505 / 370
  26630. }
  26631. },
  26632. },
  26633. [
  26634. {
  26635. name: "Normal",
  26636. height: math.unit(9, "feet"),
  26637. default: true
  26638. },
  26639. ]
  26640. ))
  26641. characterMakers.push(() => makeCharacter(
  26642. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26643. {
  26644. front: {
  26645. height: math.unit(12, "feet"),
  26646. weight: math.unit(35000, "lb"),
  26647. name: "Front",
  26648. image: {
  26649. source: "./media/characters/p0tat0/front.svg",
  26650. extra: 1065 / 921,
  26651. bottom: 55.7 / 1121.25
  26652. }
  26653. },
  26654. },
  26655. [
  26656. {
  26657. name: "Normal",
  26658. height: math.unit(12, "feet"),
  26659. default: true
  26660. },
  26661. ]
  26662. ))
  26663. characterMakers.push(() => makeCharacter(
  26664. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26665. {
  26666. side: {
  26667. height: math.unit(6.5, "feet"),
  26668. weight: math.unit(800, "lb"),
  26669. name: "Side",
  26670. image: {
  26671. source: "./media/characters/dusk/side.svg",
  26672. extra: 615 / 373,
  26673. bottom: 53 / 664
  26674. }
  26675. },
  26676. sitting: {
  26677. height: math.unit(7, "feet"),
  26678. weight: math.unit(800, "lb"),
  26679. name: "Sitting",
  26680. image: {
  26681. source: "./media/characters/dusk/sitting.svg",
  26682. extra: 753 / 425,
  26683. bottom: 33 / 774
  26684. }
  26685. },
  26686. head: {
  26687. height: math.unit(6.1, "feet"),
  26688. name: "Head",
  26689. image: {
  26690. source: "./media/characters/dusk/head.svg"
  26691. }
  26692. },
  26693. },
  26694. [
  26695. {
  26696. name: "Normal",
  26697. height: math.unit(7, "feet"),
  26698. default: true
  26699. },
  26700. ]
  26701. ))
  26702. characterMakers.push(() => makeCharacter(
  26703. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26704. {
  26705. front: {
  26706. height: math.unit(15, "feet"),
  26707. weight: math.unit(7000, "lb"),
  26708. name: "Front",
  26709. image: {
  26710. source: "./media/characters/jay-direwolf/front.svg",
  26711. extra: 1810 / 1732,
  26712. bottom: 66 / 1892
  26713. }
  26714. },
  26715. },
  26716. [
  26717. {
  26718. name: "Normal",
  26719. height: math.unit(15, "feet"),
  26720. default: true
  26721. },
  26722. ]
  26723. ))
  26724. characterMakers.push(() => makeCharacter(
  26725. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26726. {
  26727. front: {
  26728. height: math.unit(4 + 9 / 12, "feet"),
  26729. weight: math.unit(130, "lb"),
  26730. name: "Front",
  26731. image: {
  26732. source: "./media/characters/anchovie/front.svg",
  26733. extra: 382 / 350,
  26734. bottom: 25 / 409
  26735. }
  26736. },
  26737. back: {
  26738. height: math.unit(4 + 9 / 12, "feet"),
  26739. weight: math.unit(130, "lb"),
  26740. name: "Back",
  26741. image: {
  26742. source: "./media/characters/anchovie/back.svg",
  26743. extra: 385 / 352,
  26744. bottom: 16.6 / 402
  26745. }
  26746. },
  26747. frontDressed: {
  26748. height: math.unit(4 + 9 / 12, "feet"),
  26749. weight: math.unit(130, "lb"),
  26750. name: "Front (Dressed)",
  26751. image: {
  26752. source: "./media/characters/anchovie/front-dressed.svg",
  26753. extra: 382 / 350,
  26754. bottom: 25 / 409
  26755. }
  26756. },
  26757. backDressed: {
  26758. height: math.unit(4 + 9 / 12, "feet"),
  26759. weight: math.unit(130, "lb"),
  26760. name: "Back (Dressed)",
  26761. image: {
  26762. source: "./media/characters/anchovie/back-dressed.svg",
  26763. extra: 385 / 352,
  26764. bottom: 16.6 / 402
  26765. }
  26766. },
  26767. },
  26768. [
  26769. {
  26770. name: "Micro",
  26771. height: math.unit(6.4, "inches")
  26772. },
  26773. {
  26774. name: "Normal",
  26775. height: math.unit(4 + 9 / 12, "feet"),
  26776. default: true
  26777. },
  26778. ]
  26779. ))
  26780. characterMakers.push(() => makeCharacter(
  26781. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26782. {
  26783. front: {
  26784. height: math.unit(2, "meters"),
  26785. weight: math.unit(180, "lb"),
  26786. name: "Front",
  26787. image: {
  26788. source: "./media/characters/acidrenamon/front.svg",
  26789. extra: 987 / 890,
  26790. bottom: 22.8 / 1009
  26791. }
  26792. },
  26793. back: {
  26794. height: math.unit(2, "meters"),
  26795. weight: math.unit(180, "lb"),
  26796. name: "Back",
  26797. image: {
  26798. source: "./media/characters/acidrenamon/back.svg",
  26799. extra: 983 / 891,
  26800. bottom: 8.4 / 992
  26801. }
  26802. },
  26803. head: {
  26804. height: math.unit(1.92, "feet"),
  26805. name: "Head",
  26806. image: {
  26807. source: "./media/characters/acidrenamon/head.svg"
  26808. }
  26809. },
  26810. rump: {
  26811. height: math.unit(1.72, "feet"),
  26812. name: "Rump",
  26813. image: {
  26814. source: "./media/characters/acidrenamon/rump.svg"
  26815. }
  26816. },
  26817. tail: {
  26818. height: math.unit(4.2, "feet"),
  26819. name: "Tail",
  26820. image: {
  26821. source: "./media/characters/acidrenamon/tail.svg"
  26822. }
  26823. },
  26824. },
  26825. [
  26826. {
  26827. name: "Normal",
  26828. height: math.unit(2, "meters"),
  26829. default: true
  26830. },
  26831. {
  26832. name: "Minimacro",
  26833. height: math.unit(7, "meters")
  26834. },
  26835. {
  26836. name: "Macro",
  26837. height: math.unit(200, "meters")
  26838. },
  26839. {
  26840. name: "Gigamacro",
  26841. height: math.unit(0.2, "earths")
  26842. },
  26843. ]
  26844. ))
  26845. characterMakers.push(() => makeCharacter(
  26846. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26847. {
  26848. front: {
  26849. height: math.unit(6, "feet"),
  26850. weight: math.unit(150, "lb"),
  26851. name: "Front",
  26852. image: {
  26853. source: "./media/characters/kenzie-lee/front.svg",
  26854. extra: 1525 / 1465,
  26855. bottom: 45 / 1570
  26856. }
  26857. },
  26858. side: {
  26859. height: math.unit(6, "feet"),
  26860. weight: math.unit(150, "lb"),
  26861. name: "Side",
  26862. image: {
  26863. source: "./media/characters/kenzie-lee/side.svg",
  26864. extra: 5505 / 5383,
  26865. bottom: 60 / 5573
  26866. }
  26867. },
  26868. paw: {
  26869. height: math.unit(0.57, "feet"),
  26870. name: "Paw",
  26871. image: {
  26872. source: "./media/characters/kenzie-lee/paw.svg"
  26873. }
  26874. },
  26875. },
  26876. [
  26877. {
  26878. name: "Normal",
  26879. height: math.unit(152, "feet"),
  26880. default: true
  26881. },
  26882. {
  26883. name: "Megamacro",
  26884. height: math.unit(7, "miles")
  26885. },
  26886. {
  26887. name: "Gigamacro",
  26888. height: math.unit(8000, "miles")
  26889. },
  26890. ]
  26891. ))
  26892. characterMakers.push(() => makeCharacter(
  26893. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26894. {
  26895. side: {
  26896. height: math.unit(6, "feet"),
  26897. weight: math.unit(150, "lb"),
  26898. name: "Side",
  26899. image: {
  26900. source: "./media/characters/withers/side.svg",
  26901. extra: 1830 / 1728,
  26902. bottom: 96 / 1927
  26903. }
  26904. },
  26905. front: {
  26906. height: math.unit(6, "feet"),
  26907. weight: math.unit(150, "lb"),
  26908. name: "Front",
  26909. image: {
  26910. source: "./media/characters/withers/front.svg",
  26911. extra: 1514 / 1438,
  26912. bottom: 118 / 1632
  26913. }
  26914. },
  26915. },
  26916. [
  26917. {
  26918. name: "Macro",
  26919. height: math.unit(168, "feet"),
  26920. default: true
  26921. },
  26922. {
  26923. name: "Megamacro",
  26924. height: math.unit(15, "miles")
  26925. }
  26926. ]
  26927. ))
  26928. characterMakers.push(() => makeCharacter(
  26929. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26930. {
  26931. front: {
  26932. height: math.unit(6 + 7 / 12, "feet"),
  26933. weight: math.unit(250, "lb"),
  26934. name: "Front",
  26935. image: {
  26936. source: "./media/characters/nemoskii/front.svg",
  26937. extra: 2270 / 1734,
  26938. bottom: 86 / 2354
  26939. }
  26940. },
  26941. back: {
  26942. height: math.unit(6 + 7 / 12, "feet"),
  26943. weight: math.unit(250, "lb"),
  26944. name: "Back",
  26945. image: {
  26946. source: "./media/characters/nemoskii/back.svg",
  26947. extra: 1845 / 1788,
  26948. bottom: 10.5 / 1852
  26949. }
  26950. },
  26951. head: {
  26952. height: math.unit(1.31, "feet"),
  26953. name: "Head",
  26954. image: {
  26955. source: "./media/characters/nemoskii/head.svg"
  26956. }
  26957. },
  26958. },
  26959. [
  26960. {
  26961. name: "Micro",
  26962. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26963. },
  26964. {
  26965. name: "Normal",
  26966. height: math.unit(6 + 7 / 12, "feet"),
  26967. default: true
  26968. },
  26969. {
  26970. name: "Macro",
  26971. height: math.unit((6 + 7 / 12) * 150, "feet")
  26972. },
  26973. {
  26974. name: "Macro+",
  26975. height: math.unit((6 + 7 / 12) * 500, "feet")
  26976. },
  26977. {
  26978. name: "Megamacro",
  26979. height: math.unit((6 + 7 / 12) * 100000, "feet")
  26980. },
  26981. ]
  26982. ))
  26983. characterMakers.push(() => makeCharacter(
  26984. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26985. {
  26986. front: {
  26987. height: math.unit(1, "mile"),
  26988. weight: math.unit(265261.9, "lb"),
  26989. name: "Front",
  26990. image: {
  26991. source: "./media/characters/shui/front.svg",
  26992. extra: 1633 / 1564,
  26993. bottom: 91.5 / 1726
  26994. }
  26995. },
  26996. },
  26997. [
  26998. {
  26999. name: "Macro",
  27000. height: math.unit(1, "mile"),
  27001. default: true
  27002. },
  27003. ]
  27004. ))
  27005. characterMakers.push(() => makeCharacter(
  27006. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27007. {
  27008. front: {
  27009. height: math.unit(12 + 6 / 12, "feet"),
  27010. weight: math.unit(1342, "lb"),
  27011. name: "Front",
  27012. image: {
  27013. source: "./media/characters/arokh-takakura/front.svg",
  27014. extra: 1089 / 1043,
  27015. bottom: 77.4 / 1176.7
  27016. }
  27017. },
  27018. back: {
  27019. height: math.unit(12 + 6 / 12, "feet"),
  27020. weight: math.unit(1342, "lb"),
  27021. name: "Back",
  27022. image: {
  27023. source: "./media/characters/arokh-takakura/back.svg",
  27024. extra: 1046 / 1019,
  27025. bottom: 102 / 1150
  27026. }
  27027. },
  27028. },
  27029. [
  27030. {
  27031. name: "Big",
  27032. height: math.unit(12 + 6 / 12, "feet"),
  27033. default: true
  27034. },
  27035. ]
  27036. ))
  27037. characterMakers.push(() => makeCharacter(
  27038. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27039. {
  27040. front: {
  27041. height: math.unit(5 + 6 / 12, "feet"),
  27042. weight: math.unit(150, "lb"),
  27043. name: "Front",
  27044. image: {
  27045. source: "./media/characters/theo/front.svg",
  27046. extra: 1184 / 1131,
  27047. bottom: 7.4 / 1191
  27048. }
  27049. },
  27050. },
  27051. [
  27052. {
  27053. name: "Micro",
  27054. height: math.unit(5, "inches")
  27055. },
  27056. {
  27057. name: "Normal",
  27058. height: math.unit(5 + 6 / 12, "feet"),
  27059. default: true
  27060. },
  27061. ]
  27062. ))
  27063. characterMakers.push(() => makeCharacter(
  27064. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27065. {
  27066. front: {
  27067. height: math.unit(5 + 9 / 12, "feet"),
  27068. weight: math.unit(130, "lb"),
  27069. name: "Front",
  27070. image: {
  27071. source: "./media/characters/cecelia-swift/front.svg",
  27072. extra: 502 / 484,
  27073. bottom: 23 / 523
  27074. }
  27075. },
  27076. back: {
  27077. height: math.unit(5 + 9 / 12, "feet"),
  27078. weight: math.unit(130, "lb"),
  27079. name: "Back",
  27080. image: {
  27081. source: "./media/characters/cecelia-swift/back.svg",
  27082. extra: 499 / 485,
  27083. bottom: 12 / 511
  27084. }
  27085. },
  27086. head: {
  27087. height: math.unit(0.90, "feet"),
  27088. name: "Head",
  27089. image: {
  27090. source: "./media/characters/cecelia-swift/head.svg"
  27091. }
  27092. },
  27093. rump: {
  27094. height: math.unit(1.75, "feet"),
  27095. name: "Rump",
  27096. image: {
  27097. source: "./media/characters/cecelia-swift/rump.svg"
  27098. }
  27099. },
  27100. },
  27101. [
  27102. {
  27103. name: "Normal",
  27104. height: math.unit(5 + 9 / 12, "feet"),
  27105. default: true
  27106. },
  27107. {
  27108. name: "Big",
  27109. height: math.unit(50, "feet")
  27110. },
  27111. {
  27112. name: "Macro",
  27113. height: math.unit(100, "feet")
  27114. },
  27115. {
  27116. name: "Macro+",
  27117. height: math.unit(500, "feet")
  27118. },
  27119. {
  27120. name: "Macro++",
  27121. height: math.unit(1000, "feet")
  27122. },
  27123. ]
  27124. ))
  27125. characterMakers.push(() => makeCharacter(
  27126. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27127. {
  27128. front: {
  27129. height: math.unit(6, "feet"),
  27130. weight: math.unit(150, "lb"),
  27131. name: "Front",
  27132. image: {
  27133. source: "./media/characters/kaunan/front.svg",
  27134. extra: 2890 / 2523,
  27135. bottom: 49 / 2939
  27136. }
  27137. },
  27138. },
  27139. [
  27140. {
  27141. name: "Macro",
  27142. height: math.unit(150, "feet"),
  27143. default: true
  27144. },
  27145. ]
  27146. ))
  27147. characterMakers.push(() => makeCharacter(
  27148. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27149. {
  27150. front: {
  27151. height: math.unit(175, "cm"),
  27152. weight: math.unit(60, "kg"),
  27153. name: "Front",
  27154. image: {
  27155. source: "./media/characters/fei/front.svg",
  27156. extra: 2581 / 2400,
  27157. bottom: 82.2 / 2663
  27158. }
  27159. },
  27160. },
  27161. [
  27162. {
  27163. name: "Mortal",
  27164. height: math.unit(175, "cm")
  27165. },
  27166. {
  27167. name: "Normal",
  27168. height: math.unit(3500, "m"),
  27169. default: true
  27170. },
  27171. {
  27172. name: "Stroll",
  27173. height: math.unit(17.5, "km")
  27174. },
  27175. {
  27176. name: "Showoff",
  27177. height: math.unit(175, "km")
  27178. },
  27179. ]
  27180. ))
  27181. characterMakers.push(() => makeCharacter(
  27182. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27183. {
  27184. front: {
  27185. height: math.unit(7, "feet"),
  27186. weight: math.unit(1000, "kg"),
  27187. name: "Front",
  27188. image: {
  27189. source: "./media/characters/edrax/front.svg",
  27190. extra: 2838 / 2550,
  27191. bottom: 130 / 2968
  27192. }
  27193. },
  27194. },
  27195. [
  27196. {
  27197. name: "Small",
  27198. height: math.unit(7, "feet")
  27199. },
  27200. {
  27201. name: "Normal",
  27202. height: math.unit(1500, "meters")
  27203. },
  27204. {
  27205. name: "Mega",
  27206. height: math.unit(12000000, "km"),
  27207. default: true
  27208. },
  27209. {
  27210. name: "Megamacro",
  27211. height: math.unit(10600000, "lightyears")
  27212. },
  27213. {
  27214. name: "Hypermacro",
  27215. height: math.unit(256, "yottameters")
  27216. },
  27217. ]
  27218. ))
  27219. characterMakers.push(() => makeCharacter(
  27220. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27221. {
  27222. front: {
  27223. height: math.unit(10, "feet"),
  27224. weight: math.unit(750, "lb"),
  27225. name: "Front",
  27226. image: {
  27227. source: "./media/characters/clove/front.svg",
  27228. extra: 2031 / 1860,
  27229. bottom: 47.8 / 2080
  27230. }
  27231. },
  27232. back: {
  27233. height: math.unit(10, "feet"),
  27234. weight: math.unit(750, "lb"),
  27235. name: "Back",
  27236. image: {
  27237. source: "./media/characters/clove/back.svg",
  27238. extra: 2025 / 1859,
  27239. bottom: 46 / 2071
  27240. }
  27241. },
  27242. },
  27243. [
  27244. {
  27245. name: "Normal",
  27246. height: math.unit(10, "feet"),
  27247. default: true
  27248. },
  27249. ]
  27250. ))
  27251. characterMakers.push(() => makeCharacter(
  27252. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27253. {
  27254. front: {
  27255. height: math.unit(4, "feet"),
  27256. weight: math.unit(50, "lb"),
  27257. name: "Front",
  27258. image: {
  27259. source: "./media/characters/alex-rabbit/front.svg",
  27260. extra: 507 / 458,
  27261. bottom: 18.5 / 527
  27262. }
  27263. },
  27264. back: {
  27265. height: math.unit(4, "feet"),
  27266. weight: math.unit(50, "lb"),
  27267. name: "Back",
  27268. image: {
  27269. source: "./media/characters/alex-rabbit/back.svg",
  27270. extra: 502 / 460,
  27271. bottom: 18.9 / 521
  27272. }
  27273. },
  27274. },
  27275. [
  27276. {
  27277. name: "Normal",
  27278. height: math.unit(4, "feet"),
  27279. default: true
  27280. },
  27281. ]
  27282. ))
  27283. characterMakers.push(() => makeCharacter(
  27284. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27285. {
  27286. front: {
  27287. height: math.unit(1 + 3 / 12, "feet"),
  27288. weight: math.unit(80, "lb"),
  27289. name: "Front",
  27290. image: {
  27291. source: "./media/characters/zander-rose/front.svg",
  27292. extra: 916 / 797,
  27293. bottom: 17 / 933
  27294. }
  27295. },
  27296. back: {
  27297. height: math.unit(1 + 3 / 12, "feet"),
  27298. weight: math.unit(80, "lb"),
  27299. name: "Back",
  27300. image: {
  27301. source: "./media/characters/zander-rose/back.svg",
  27302. extra: 903 / 779,
  27303. bottom: 31 / 934
  27304. }
  27305. },
  27306. },
  27307. [
  27308. {
  27309. name: "Normal",
  27310. height: math.unit(1 + 3 / 12, "feet"),
  27311. default: true
  27312. },
  27313. ]
  27314. ))
  27315. characterMakers.push(() => makeCharacter(
  27316. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27317. {
  27318. anthro: {
  27319. height: math.unit(6, "feet"),
  27320. weight: math.unit(150, "lb"),
  27321. name: "Anthro",
  27322. image: {
  27323. source: "./media/characters/razz/anthro.svg",
  27324. extra: 1437 / 1343,
  27325. bottom: 48 / 1485
  27326. }
  27327. },
  27328. feral: {
  27329. height: math.unit(6, "feet"),
  27330. weight: math.unit(150, "lb"),
  27331. name: "Feral",
  27332. image: {
  27333. source: "./media/characters/razz/feral.svg",
  27334. extra: 2569 / 1385,
  27335. bottom: 95 / 2664
  27336. }
  27337. },
  27338. },
  27339. [
  27340. {
  27341. name: "Normal",
  27342. height: math.unit(6, "feet"),
  27343. default: true
  27344. },
  27345. ]
  27346. ))
  27347. characterMakers.push(() => makeCharacter(
  27348. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27349. {
  27350. front: {
  27351. height: math.unit(9 + 4 / 12, "feet"),
  27352. weight: math.unit(500, "lb"),
  27353. name: "Front",
  27354. image: {
  27355. source: "./media/characters/morrigan/front.svg",
  27356. extra: 2707 / 2579,
  27357. bottom: 156 / 2863
  27358. }
  27359. },
  27360. },
  27361. [
  27362. {
  27363. name: "Normal",
  27364. height: math.unit(9 + 4 / 12, "feet"),
  27365. default: true
  27366. },
  27367. ]
  27368. ))
  27369. characterMakers.push(() => makeCharacter(
  27370. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27371. {
  27372. front: {
  27373. height: math.unit(5, "stories"),
  27374. weight: math.unit(4000, "lb"),
  27375. name: "Front",
  27376. image: {
  27377. source: "./media/characters/jenene/front.svg",
  27378. extra: 1780 / 1710,
  27379. bottom: 57 / 1837
  27380. }
  27381. },
  27382. },
  27383. [
  27384. {
  27385. name: "Normal",
  27386. height: math.unit(5, "stories"),
  27387. default: true
  27388. },
  27389. ]
  27390. ))
  27391. characterMakers.push(() => makeCharacter(
  27392. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27393. {
  27394. front: {
  27395. height: math.unit(6, "feet"),
  27396. weight: math.unit(150, "lb"),
  27397. name: "Front",
  27398. image: {
  27399. source: "./media/characters/vix-archaser/front.svg",
  27400. extra: 2767 / 2562,
  27401. bottom: 36 / 2803
  27402. }
  27403. },
  27404. },
  27405. [
  27406. {
  27407. name: "Micro",
  27408. height: math.unit(1, "foot")
  27409. },
  27410. {
  27411. name: "Normal",
  27412. height: math.unit(6 + 5 / 12, "feet")
  27413. },
  27414. {
  27415. name: "Minimacro",
  27416. height: math.unit(500, "feet")
  27417. },
  27418. {
  27419. name: "Macro",
  27420. height: math.unit(4, "miles")
  27421. },
  27422. {
  27423. name: "Megamacro",
  27424. height: math.unit(250, "miles"),
  27425. default: true
  27426. },
  27427. {
  27428. name: "Gigamacro",
  27429. height: math.unit(1, "universe")
  27430. },
  27431. {
  27432. name: "Endgame",
  27433. height: math.unit(100, "multiverses")
  27434. }
  27435. ]
  27436. ))
  27437. characterMakers.push(() => makeCharacter(
  27438. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27439. {
  27440. taurSfw: {
  27441. height: math.unit(10, "meters"),
  27442. weight: math.unit(17500, "kg"),
  27443. name: "Taur",
  27444. image: {
  27445. source: "./media/characters/faey/taur-sfw.svg",
  27446. extra: 1200 / 968,
  27447. bottom: 41 / 1241
  27448. }
  27449. },
  27450. chestmaw: {
  27451. height: math.unit(2.01, "meters"),
  27452. name: "Chestmaw",
  27453. image: {
  27454. source: "./media/characters/faey/chestmaw.svg"
  27455. }
  27456. },
  27457. foot: {
  27458. height: math.unit(2.43, "meters"),
  27459. name: "Foot",
  27460. image: {
  27461. source: "./media/characters/faey/foot.svg"
  27462. }
  27463. },
  27464. jaws: {
  27465. height: math.unit(1.66, "meters"),
  27466. name: "Jaws",
  27467. image: {
  27468. source: "./media/characters/faey/jaws.svg"
  27469. }
  27470. },
  27471. tongues: {
  27472. height: math.unit(2.01, "meters"),
  27473. name: "Tongues",
  27474. image: {
  27475. source: "./media/characters/faey/tongues.svg"
  27476. }
  27477. },
  27478. },
  27479. [
  27480. {
  27481. name: "Small",
  27482. height: math.unit(10, "meters"),
  27483. default: true
  27484. },
  27485. {
  27486. name: "Big",
  27487. height: math.unit(500000, "km")
  27488. },
  27489. ]
  27490. ))
  27491. characterMakers.push(() => makeCharacter(
  27492. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27493. {
  27494. front: {
  27495. height: math.unit(7, "feet"),
  27496. weight: math.unit(275, "lb"),
  27497. name: "Front",
  27498. image: {
  27499. source: "./media/characters/roku/front.svg",
  27500. extra: 903 / 878,
  27501. bottom: 37 / 940
  27502. }
  27503. },
  27504. },
  27505. [
  27506. {
  27507. name: "Normal",
  27508. height: math.unit(7, "feet"),
  27509. default: true
  27510. },
  27511. {
  27512. name: "Macro",
  27513. height: math.unit(500, "feet")
  27514. },
  27515. {
  27516. name: "Megamacro",
  27517. height: math.unit(200, "miles")
  27518. },
  27519. ]
  27520. ))
  27521. characterMakers.push(() => makeCharacter(
  27522. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27523. {
  27524. front: {
  27525. height: math.unit(6 + 2 / 12, "feet"),
  27526. weight: math.unit(150, "lb"),
  27527. name: "Front",
  27528. image: {
  27529. source: "./media/characters/lira/front.svg",
  27530. extra: 1727 / 1605,
  27531. bottom: 26 / 1753
  27532. }
  27533. },
  27534. back: {
  27535. height: math.unit(6 + 2 / 12, "feet"),
  27536. weight: math.unit(150, "lb"),
  27537. name: "Back",
  27538. image: {
  27539. source: "./media/characters/lira/back.svg",
  27540. extra: 1713 / 159,
  27541. bottom: 20 / 1733
  27542. }
  27543. },
  27544. hand: {
  27545. height: math.unit(0.75, "feet"),
  27546. name: "Hand",
  27547. image: {
  27548. source: "./media/characters/lira/hand.svg"
  27549. }
  27550. },
  27551. maw: {
  27552. height: math.unit(0.65, "feet"),
  27553. name: "Maw",
  27554. image: {
  27555. source: "./media/characters/lira/maw.svg"
  27556. }
  27557. },
  27558. pawDigi: {
  27559. height: math.unit(1.6, "feet"),
  27560. name: "Paw Digi",
  27561. image: {
  27562. source: "./media/characters/lira/paw-digi.svg"
  27563. }
  27564. },
  27565. pawPlanti: {
  27566. height: math.unit(1.4, "feet"),
  27567. name: "Paw Planti",
  27568. image: {
  27569. source: "./media/characters/lira/paw-planti.svg"
  27570. }
  27571. },
  27572. },
  27573. [
  27574. {
  27575. name: "Normal",
  27576. height: math.unit(6 + 2 / 12, "feet"),
  27577. default: true
  27578. },
  27579. {
  27580. name: "Macro",
  27581. height: math.unit(100, "feet")
  27582. },
  27583. {
  27584. name: "Macro²",
  27585. height: math.unit(1600, "feet")
  27586. },
  27587. {
  27588. name: "Planetary",
  27589. height: math.unit(20, "earths")
  27590. },
  27591. ]
  27592. ))
  27593. characterMakers.push(() => makeCharacter(
  27594. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27595. {
  27596. front: {
  27597. height: math.unit(6, "feet"),
  27598. weight: math.unit(150, "lb"),
  27599. name: "Front",
  27600. image: {
  27601. source: "./media/characters/hadjet/front.svg",
  27602. extra: 1480 / 1346,
  27603. bottom: 26 / 1506
  27604. }
  27605. },
  27606. frontNsfw: {
  27607. height: math.unit(6, "feet"),
  27608. weight: math.unit(150, "lb"),
  27609. name: "Front (NSFW)",
  27610. image: {
  27611. source: "./media/characters/hadjet/front-nsfw.svg",
  27612. extra: 1440 / 1358,
  27613. bottom: 52 / 1492
  27614. }
  27615. },
  27616. },
  27617. [
  27618. {
  27619. name: "Macro",
  27620. height: math.unit(10, "stories"),
  27621. default: true
  27622. },
  27623. {
  27624. name: "Megamacro",
  27625. height: math.unit(1.5, "miles")
  27626. },
  27627. {
  27628. name: "Megamacro+",
  27629. height: math.unit(5, "miles")
  27630. },
  27631. ]
  27632. ))
  27633. characterMakers.push(() => makeCharacter(
  27634. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27635. {
  27636. side: {
  27637. height: math.unit(106, "feet"),
  27638. weight: math.unit(500, "tonnes"),
  27639. name: "Side",
  27640. image: {
  27641. source: "./media/characters/kodran/side.svg",
  27642. extra: 553 / 480,
  27643. bottom: 33 / 586
  27644. }
  27645. },
  27646. front: {
  27647. height: math.unit(132, "feet"),
  27648. weight: math.unit(500, "tonnes"),
  27649. name: "Front",
  27650. image: {
  27651. source: "./media/characters/kodran/front.svg",
  27652. extra: 667 / 643,
  27653. bottom: 42 / 709
  27654. }
  27655. },
  27656. flying: {
  27657. height: math.unit(350, "feet"),
  27658. weight: math.unit(500, "tonnes"),
  27659. name: "Flying",
  27660. image: {
  27661. source: "./media/characters/kodran/flying.svg"
  27662. }
  27663. },
  27664. foot: {
  27665. height: math.unit(33, "feet"),
  27666. name: "Foot",
  27667. image: {
  27668. source: "./media/characters/kodran/foot.svg"
  27669. }
  27670. },
  27671. footFront: {
  27672. height: math.unit(19, "feet"),
  27673. name: "Foot (Front)",
  27674. image: {
  27675. source: "./media/characters/kodran/foot-front.svg",
  27676. extra: 261 / 261,
  27677. bottom: 91 / 352
  27678. }
  27679. },
  27680. headFront: {
  27681. height: math.unit(53, "feet"),
  27682. name: "Head (Front)",
  27683. image: {
  27684. source: "./media/characters/kodran/head-front.svg"
  27685. }
  27686. },
  27687. headSide: {
  27688. height: math.unit(65, "feet"),
  27689. name: "Head (Side)",
  27690. image: {
  27691. source: "./media/characters/kodran/head-side.svg"
  27692. }
  27693. },
  27694. throat: {
  27695. height: math.unit(79, "feet"),
  27696. name: "Throat",
  27697. image: {
  27698. source: "./media/characters/kodran/throat.svg"
  27699. }
  27700. },
  27701. },
  27702. [
  27703. {
  27704. name: "Large",
  27705. height: math.unit(106, "feet"),
  27706. default: true
  27707. },
  27708. ]
  27709. ))
  27710. characterMakers.push(() => makeCharacter(
  27711. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27712. {
  27713. side: {
  27714. height: math.unit(11, "feet"),
  27715. weight: math.unit(150, "lb"),
  27716. name: "Side",
  27717. image: {
  27718. source: "./media/characters/pyxaron/side.svg",
  27719. extra: 305 / 195,
  27720. bottom: 17 / 322
  27721. }
  27722. },
  27723. },
  27724. [
  27725. {
  27726. name: "Normal",
  27727. height: math.unit(11, "feet"),
  27728. default: true
  27729. },
  27730. ]
  27731. ))
  27732. characterMakers.push(() => makeCharacter(
  27733. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27734. {
  27735. front: {
  27736. height: math.unit(6, "feet"),
  27737. weight: math.unit(150, "lb"),
  27738. name: "Front",
  27739. image: {
  27740. source: "./media/characters/meep/front.svg",
  27741. extra: 88 / 80,
  27742. bottom: 6 / 94
  27743. }
  27744. },
  27745. },
  27746. [
  27747. {
  27748. name: "Fun Sized",
  27749. height: math.unit(2, "inches"),
  27750. default: true
  27751. },
  27752. {
  27753. name: "Friend Sized",
  27754. height: math.unit(8, "inches")
  27755. },
  27756. ]
  27757. ))
  27758. characterMakers.push(() => makeCharacter(
  27759. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27760. {
  27761. front: {
  27762. height: math.unit(15, "feet"),
  27763. weight: math.unit(2500, "lb"),
  27764. name: "Front",
  27765. image: {
  27766. source: "./media/characters/holly-rabbit/front.svg",
  27767. extra: 1433 / 1233,
  27768. bottom: 125 / 1558
  27769. }
  27770. },
  27771. dick: {
  27772. height: math.unit(4.6, "feet"),
  27773. name: "Dick",
  27774. image: {
  27775. source: "./media/characters/holly-rabbit/dick.svg"
  27776. }
  27777. },
  27778. },
  27779. [
  27780. {
  27781. name: "Normal",
  27782. height: math.unit(15, "feet"),
  27783. default: true
  27784. },
  27785. {
  27786. name: "Macro",
  27787. height: math.unit(250, "feet")
  27788. },
  27789. {
  27790. name: "Macro+",
  27791. height: math.unit(2500, "feet")
  27792. },
  27793. ]
  27794. ))
  27795. characterMakers.push(() => makeCharacter(
  27796. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27797. {
  27798. front: {
  27799. height: math.unit(3.02, "meters"),
  27800. weight: math.unit(500, "kg"),
  27801. name: "Front",
  27802. image: {
  27803. source: "./media/characters/drena/front.svg",
  27804. extra: 282 / 243,
  27805. bottom: 8 / 290
  27806. }
  27807. },
  27808. side: {
  27809. height: math.unit(3.02, "meters"),
  27810. weight: math.unit(500, "kg"),
  27811. name: "Side",
  27812. image: {
  27813. source: "./media/characters/drena/side.svg",
  27814. extra: 280 / 245,
  27815. bottom: 10 / 290
  27816. }
  27817. },
  27818. back: {
  27819. height: math.unit(3.02, "meters"),
  27820. weight: math.unit(500, "kg"),
  27821. name: "Back",
  27822. image: {
  27823. source: "./media/characters/drena/back.svg",
  27824. extra: 278 / 243,
  27825. bottom: 2 / 280
  27826. }
  27827. },
  27828. foot: {
  27829. height: math.unit(0.75, "meters"),
  27830. name: "Foot",
  27831. image: {
  27832. source: "./media/characters/drena/foot.svg"
  27833. }
  27834. },
  27835. maw: {
  27836. height: math.unit(0.82, "meters"),
  27837. name: "Maw",
  27838. image: {
  27839. source: "./media/characters/drena/maw.svg"
  27840. }
  27841. },
  27842. rump: {
  27843. height: math.unit(0.93, "meters"),
  27844. name: "Rump",
  27845. image: {
  27846. source: "./media/characters/drena/rump.svg"
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Normal",
  27853. height: math.unit(3.02, "meters"),
  27854. default: true
  27855. },
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27860. {
  27861. front: {
  27862. height: math.unit(6 + 4 / 12, "feet"),
  27863. weight: math.unit(250, "lb"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/remmyzilla/front.svg",
  27867. extra: 4033 / 3588,
  27868. bottom: 123 / 4156
  27869. }
  27870. },
  27871. back: {
  27872. height: math.unit(6 + 4 / 12, "feet"),
  27873. weight: math.unit(250, "lb"),
  27874. name: "Back",
  27875. image: {
  27876. source: "./media/characters/remmyzilla/back.svg",
  27877. extra: 2687 / 2555,
  27878. bottom: 48 / 2735
  27879. }
  27880. },
  27881. frontFancy: {
  27882. height: math.unit(6 + 4 / 12, "feet"),
  27883. weight: math.unit(250, "lb"),
  27884. name: "Front (Fancy)",
  27885. image: {
  27886. source: "./media/characters/remmyzilla/front-fancy.svg",
  27887. extra: 4119 / 3419,
  27888. bottom: 237 / 4356
  27889. }
  27890. },
  27891. paw: {
  27892. height: math.unit(1.73, "feet"),
  27893. name: "Paw",
  27894. image: {
  27895. source: "./media/characters/remmyzilla/paw.svg"
  27896. }
  27897. },
  27898. maw: {
  27899. height: math.unit(1.73, "feet"),
  27900. name: "Maw",
  27901. image: {
  27902. source: "./media/characters/remmyzilla/maw.svg"
  27903. }
  27904. },
  27905. },
  27906. [
  27907. {
  27908. name: "Normal",
  27909. height: math.unit(6 + 4 / 12, "feet")
  27910. },
  27911. {
  27912. name: "Minimacro",
  27913. height: math.unit(12 + 8 / 12, "feet")
  27914. },
  27915. {
  27916. name: "Normal",
  27917. height: math.unit(640, "feet"),
  27918. default: true
  27919. },
  27920. {
  27921. name: "Megamacro",
  27922. height: math.unit(6400, "feet")
  27923. },
  27924. {
  27925. name: "Gigamacro",
  27926. height: math.unit(64000, "miles")
  27927. },
  27928. ]
  27929. ))
  27930. characterMakers.push(() => makeCharacter(
  27931. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27932. {
  27933. front: {
  27934. height: math.unit(2.5, "meters"),
  27935. weight: math.unit(300, "lb"),
  27936. name: "Front",
  27937. image: {
  27938. source: "./media/characters/lawrence/front.svg",
  27939. extra: 357 / 335,
  27940. bottom: 30 / 387
  27941. }
  27942. },
  27943. back: {
  27944. height: math.unit(2.5, "meters"),
  27945. weight: math.unit(300, "lb"),
  27946. name: "Back",
  27947. image: {
  27948. source: "./media/characters/lawrence/back.svg",
  27949. extra: 357 / 338,
  27950. bottom: 16 / 373
  27951. }
  27952. },
  27953. head: {
  27954. height: math.unit(0.9, "meter"),
  27955. name: "Head",
  27956. image: {
  27957. source: "./media/characters/lawrence/head.svg"
  27958. }
  27959. },
  27960. maw: {
  27961. height: math.unit(0.7, "meter"),
  27962. name: "Maw",
  27963. image: {
  27964. source: "./media/characters/lawrence/maw.svg"
  27965. }
  27966. },
  27967. footBottom: {
  27968. height: math.unit(0.5, "meter"),
  27969. name: "Foot (Bottom)",
  27970. image: {
  27971. source: "./media/characters/lawrence/foot-bottom.svg"
  27972. }
  27973. },
  27974. footTop: {
  27975. height: math.unit(0.5, "meter"),
  27976. name: "Foot (Top)",
  27977. image: {
  27978. source: "./media/characters/lawrence/foot-top.svg"
  27979. }
  27980. },
  27981. },
  27982. [
  27983. {
  27984. name: "Normal",
  27985. height: math.unit(2.5, "meters"),
  27986. default: true
  27987. },
  27988. {
  27989. name: "Macro",
  27990. height: math.unit(95, "meters")
  27991. },
  27992. {
  27993. name: "Megamacro",
  27994. height: math.unit(150, "km")
  27995. },
  27996. ]
  27997. ))
  27998. characterMakers.push(() => makeCharacter(
  27999. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28000. {
  28001. front: {
  28002. height: math.unit(4.2, "meters"),
  28003. name: "Front",
  28004. image: {
  28005. source: "./media/characters/sydney/front.svg",
  28006. extra: 1323 / 1277,
  28007. bottom: 111 / 1434
  28008. }
  28009. },
  28010. },
  28011. [
  28012. {
  28013. name: "Normal",
  28014. height: math.unit(4.2, "meters"),
  28015. default: true
  28016. },
  28017. ]
  28018. ))
  28019. characterMakers.push(() => makeCharacter(
  28020. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28021. {
  28022. back: {
  28023. height: math.unit(201, "feet"),
  28024. name: "Back",
  28025. image: {
  28026. source: "./media/characters/jessica/back.svg",
  28027. extra: 273 / 259,
  28028. bottom: 7 / 280
  28029. }
  28030. },
  28031. },
  28032. [
  28033. {
  28034. name: "Normal",
  28035. height: math.unit(201, "feet"),
  28036. default: true
  28037. },
  28038. {
  28039. name: "Megamacro",
  28040. height: math.unit(8, "miles")
  28041. },
  28042. ]
  28043. ))
  28044. characterMakers.push(() => makeCharacter(
  28045. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28046. {
  28047. side: {
  28048. height: math.unit(320, "cm"),
  28049. name: "Side",
  28050. image: {
  28051. source: "./media/characters/victoria/side.svg",
  28052. extra: 778 / 346,
  28053. bottom: 56 / 834
  28054. }
  28055. },
  28056. maw: {
  28057. height: math.unit(5.9, "feet"),
  28058. name: "Maw",
  28059. image: {
  28060. source: "./media/characters/victoria/maw.svg"
  28061. }
  28062. },
  28063. },
  28064. [
  28065. {
  28066. name: "Normal",
  28067. height: math.unit(320, "cm"),
  28068. default: true
  28069. },
  28070. ]
  28071. ))
  28072. characterMakers.push(() => makeCharacter(
  28073. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28074. {
  28075. front: {
  28076. height: math.unit(5 + 6 / 12, "feet"),
  28077. name: "Front",
  28078. image: {
  28079. source: "./media/characters/cat/front.svg",
  28080. extra: 1374 / 1257,
  28081. bottom: 59 / 1433
  28082. }
  28083. },
  28084. back: {
  28085. height: math.unit(5 + 6 / 12, "feet"),
  28086. name: "Back",
  28087. image: {
  28088. source: "./media/characters/cat/back.svg",
  28089. extra: 1337 / 1226,
  28090. bottom: 34 / 1371
  28091. }
  28092. },
  28093. taur: {
  28094. height: math.unit(7, "feet"),
  28095. name: "Taur",
  28096. image: {
  28097. source: "./media/characters/cat/taur.svg",
  28098. extra: 1345 / 1231,
  28099. bottom: 66 / 1411
  28100. }
  28101. },
  28102. lucario: {
  28103. height: math.unit(4, "feet"),
  28104. name: "Lucario",
  28105. image: {
  28106. source: "./media/characters/cat/lucario.svg",
  28107. extra: 1470 / 1318,
  28108. bottom: 65 / 1535
  28109. }
  28110. },
  28111. megaLucario: {
  28112. height: math.unit(4, "feet"),
  28113. name: "Mega Lucario",
  28114. image: {
  28115. source: "./media/characters/cat/mega-lucario.svg",
  28116. extra: 1515 / 1319,
  28117. bottom: 63 / 1578
  28118. }
  28119. },
  28120. nickit: {
  28121. height: math.unit(2, "feet"),
  28122. name: "Nickit",
  28123. image: {
  28124. source: "./media/characters/cat/nickit.svg",
  28125. extra: 1980 / 1585,
  28126. bottom: 102 / 2082
  28127. }
  28128. },
  28129. lopunnyFront: {
  28130. height: math.unit(5, "feet"),
  28131. name: "Lopunny (Front)",
  28132. image: {
  28133. source: "./media/characters/cat/lopunny-front.svg",
  28134. extra: 1782 / 1469,
  28135. bottom: 38 / 1820
  28136. }
  28137. },
  28138. lopunnyBack: {
  28139. height: math.unit(5, "feet"),
  28140. name: "Lopunny (Back)",
  28141. image: {
  28142. source: "./media/characters/cat/lopunny-back.svg",
  28143. extra: 1660 / 1490,
  28144. bottom: 25 / 1685
  28145. }
  28146. },
  28147. },
  28148. [
  28149. {
  28150. name: "Really small",
  28151. height: math.unit(1, "nm")
  28152. },
  28153. {
  28154. name: "Micro",
  28155. height: math.unit(5, "inches")
  28156. },
  28157. {
  28158. name: "Normal",
  28159. height: math.unit(5 + 6 / 12, "feet"),
  28160. default: true
  28161. },
  28162. {
  28163. name: "Macro",
  28164. height: math.unit(50, "feet")
  28165. },
  28166. {
  28167. name: "Macro+",
  28168. height: math.unit(150, "feet")
  28169. },
  28170. {
  28171. name: "Megamacro",
  28172. height: math.unit(100, "miles")
  28173. },
  28174. ]
  28175. ))
  28176. characterMakers.push(() => makeCharacter(
  28177. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28178. {
  28179. front: {
  28180. height: math.unit(63.4, "meters"),
  28181. weight: math.unit(3.28349e+6, "kilograms"),
  28182. name: "Front",
  28183. image: {
  28184. source: "./media/characters/kirina-violet/front.svg",
  28185. extra: 2812 / 2725,
  28186. bottom: 0 / 2812
  28187. }
  28188. },
  28189. back: {
  28190. height: math.unit(63.4, "meters"),
  28191. weight: math.unit(3.28349e+6, "kilograms"),
  28192. name: "Back",
  28193. image: {
  28194. source: "./media/characters/kirina-violet/back.svg",
  28195. extra: 2812 / 2725,
  28196. bottom: 0 / 2812
  28197. }
  28198. },
  28199. mouth: {
  28200. height: math.unit(4.35, "meters"),
  28201. name: "Mouth",
  28202. image: {
  28203. source: "./media/characters/kirina-violet/mouth.svg"
  28204. }
  28205. },
  28206. paw: {
  28207. height: math.unit(5.6, "meters"),
  28208. name: "Paw",
  28209. image: {
  28210. source: "./media/characters/kirina-violet/paw.svg"
  28211. }
  28212. },
  28213. tail: {
  28214. height: math.unit(18, "meters"),
  28215. name: "Tail",
  28216. image: {
  28217. source: "./media/characters/kirina-violet/tail.svg"
  28218. }
  28219. },
  28220. },
  28221. [
  28222. {
  28223. name: "Macro",
  28224. height: math.unit(63.4, "meters"),
  28225. default: true
  28226. },
  28227. ]
  28228. ))
  28229. characterMakers.push(() => makeCharacter(
  28230. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28231. {
  28232. front: {
  28233. height: math.unit(60, "feet"),
  28234. name: "Front",
  28235. image: {
  28236. source: "./media/characters/cat-gigachu/front.svg",
  28237. extra: 1024 / 780,
  28238. bottom: 23 / 1047
  28239. }
  28240. },
  28241. back: {
  28242. height: math.unit(60, "feet"),
  28243. name: "Back",
  28244. image: {
  28245. source: "./media/characters/cat-gigachu/back.svg",
  28246. extra: 1024 / 780,
  28247. bottom: 23 / 1047
  28248. }
  28249. },
  28250. },
  28251. [
  28252. {
  28253. name: "Dynamax",
  28254. height: math.unit(60, "feet"),
  28255. default: true
  28256. },
  28257. ]
  28258. ))
  28259. characterMakers.push(() => makeCharacter(
  28260. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28261. {
  28262. front: {
  28263. height: math.unit(6, "feet"),
  28264. weight: math.unit(150, "lb"),
  28265. name: "Front",
  28266. image: {
  28267. source: "./media/characters/sfaiyan/front.svg",
  28268. extra: 999 / 978,
  28269. bottom: 5 / 1004
  28270. }
  28271. },
  28272. },
  28273. [
  28274. {
  28275. name: "Normal",
  28276. height: math.unit(1.82, "meters")
  28277. },
  28278. {
  28279. name: "Giant",
  28280. height: math.unit(2.27, "km"),
  28281. default: true
  28282. },
  28283. ]
  28284. ))
  28285. characterMakers.push(() => makeCharacter(
  28286. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28287. {
  28288. front: {
  28289. height: math.unit(179, "cm"),
  28290. weight: math.unit(100, "kg"),
  28291. name: "Front",
  28292. image: {
  28293. source: "./media/characters/raunehkeli/front.svg",
  28294. extra: 1934 / 1926,
  28295. bottom: 0 / 1934
  28296. }
  28297. },
  28298. },
  28299. [
  28300. {
  28301. name: "Normal",
  28302. height: math.unit(179, "cm")
  28303. },
  28304. {
  28305. name: "Maximum",
  28306. height: math.unit(575, "meters"),
  28307. default: true
  28308. },
  28309. ]
  28310. ))
  28311. characterMakers.push(() => makeCharacter(
  28312. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28313. {
  28314. front: {
  28315. height: math.unit(6, "feet"),
  28316. weight: math.unit(150, "lb"),
  28317. name: "Front",
  28318. image: {
  28319. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28320. extra: 2625 / 2518,
  28321. bottom: 60 / 2685
  28322. }
  28323. },
  28324. },
  28325. [
  28326. {
  28327. name: "Normal",
  28328. height: math.unit(6 + 2 / 12, "feet")
  28329. },
  28330. {
  28331. name: "Macro",
  28332. height: math.unit(1180, "feet"),
  28333. default: true
  28334. },
  28335. ]
  28336. ))
  28337. characterMakers.push(() => makeCharacter(
  28338. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28339. {
  28340. front: {
  28341. height: math.unit(5 + 6 / 12, "feet"),
  28342. weight: math.unit(108, "lb"),
  28343. name: "Front",
  28344. image: {
  28345. source: "./media/characters/lilith-zott/front.svg",
  28346. extra: 2510 / 2238,
  28347. bottom: 100 / 2610
  28348. }
  28349. },
  28350. frontDressed: {
  28351. height: math.unit(5 + 6 / 12, "feet"),
  28352. weight: math.unit(108, "lb"),
  28353. name: "Front (Dressed)",
  28354. image: {
  28355. source: "./media/characters/lilith-zott/front-dressed.svg",
  28356. extra: 2510 / 2238,
  28357. bottom: 100 / 2610
  28358. }
  28359. },
  28360. },
  28361. [
  28362. {
  28363. name: "Normal",
  28364. height: math.unit(5 + 6 / 12, "feet")
  28365. },
  28366. {
  28367. name: "Macro",
  28368. height: math.unit(1030, "feet"),
  28369. default: true
  28370. },
  28371. ]
  28372. ))
  28373. characterMakers.push(() => makeCharacter(
  28374. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28375. {
  28376. front: {
  28377. height: math.unit(6, "feet"),
  28378. weight: math.unit(150, "lb"),
  28379. name: "Front",
  28380. image: {
  28381. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28382. extra: 2567 / 2435,
  28383. bottom: 39 / 2606
  28384. }
  28385. },
  28386. frontSuper: {
  28387. height: math.unit(6, "feet"),
  28388. name: "Front (Super)",
  28389. image: {
  28390. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28391. extra: 2567 / 2435,
  28392. bottom: 39 / 2606
  28393. }
  28394. },
  28395. },
  28396. [
  28397. {
  28398. name: "Normal",
  28399. height: math.unit(5 + 10 / 12, "feet")
  28400. },
  28401. {
  28402. name: "Macro",
  28403. height: math.unit(1100, "feet"),
  28404. default: true
  28405. },
  28406. ]
  28407. ))
  28408. characterMakers.push(() => makeCharacter(
  28409. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28410. {
  28411. front: {
  28412. height: math.unit(100, "miles"),
  28413. name: "Front",
  28414. image: {
  28415. source: "./media/characters/sona/front.svg",
  28416. extra: 2433 / 2201,
  28417. bottom: 53 / 2486
  28418. }
  28419. },
  28420. foot: {
  28421. height: math.unit(16.1, "miles"),
  28422. name: "Foot",
  28423. image: {
  28424. source: "./media/characters/sona/foot.svg"
  28425. }
  28426. },
  28427. },
  28428. [
  28429. {
  28430. name: "Macro",
  28431. height: math.unit(100, "miles"),
  28432. default: true
  28433. },
  28434. ]
  28435. ))
  28436. characterMakers.push(() => makeCharacter(
  28437. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28438. {
  28439. front: {
  28440. height: math.unit(6, "feet"),
  28441. weight: math.unit(150, "lb"),
  28442. name: "Front",
  28443. image: {
  28444. source: "./media/characters/bailey/front.svg",
  28445. extra: 1778 / 1724,
  28446. bottom: 30 / 1808
  28447. }
  28448. },
  28449. },
  28450. [
  28451. {
  28452. name: "Micro",
  28453. height: math.unit(4, "inches")
  28454. },
  28455. {
  28456. name: "Normal",
  28457. height: math.unit(5 + 5 / 12, "feet"),
  28458. default: true
  28459. },
  28460. {
  28461. name: "Macro",
  28462. height: math.unit(250, "feet")
  28463. },
  28464. {
  28465. name: "Megamacro",
  28466. height: math.unit(100, "miles")
  28467. },
  28468. ]
  28469. ))
  28470. characterMakers.push(() => makeCharacter(
  28471. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28472. {
  28473. front: {
  28474. height: math.unit(5 + 2 / 12, "feet"),
  28475. weight: math.unit(120, "lb"),
  28476. name: "Front",
  28477. image: {
  28478. source: "./media/characters/snaps/front.svg",
  28479. extra: 2370 / 2177,
  28480. bottom: 48 / 2418
  28481. }
  28482. },
  28483. back: {
  28484. height: math.unit(5 + 2 / 12, "feet"),
  28485. weight: math.unit(120, "lb"),
  28486. name: "Back",
  28487. image: {
  28488. source: "./media/characters/snaps/back.svg",
  28489. extra: 2408 / 2258,
  28490. bottom: 15 / 2423
  28491. }
  28492. },
  28493. },
  28494. [
  28495. {
  28496. name: "Micro",
  28497. height: math.unit(9, "inches")
  28498. },
  28499. {
  28500. name: "Normal",
  28501. height: math.unit(5 + 2 / 12, "feet"),
  28502. default: true
  28503. },
  28504. {
  28505. name: "Mini Macro",
  28506. height: math.unit(10, "feet")
  28507. },
  28508. ]
  28509. ))
  28510. characterMakers.push(() => makeCharacter(
  28511. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28512. {
  28513. front: {
  28514. height: math.unit(1.8, "meters"),
  28515. weight: math.unit(85, "kg"),
  28516. name: "Front",
  28517. image: {
  28518. source: "./media/characters/azteck/front.svg",
  28519. extra: 2815 / 2625,
  28520. bottom: 89 / 2904
  28521. }
  28522. },
  28523. back: {
  28524. height: math.unit(1.8, "meters"),
  28525. weight: math.unit(85, "kg"),
  28526. name: "Back",
  28527. image: {
  28528. source: "./media/characters/azteck/back.svg",
  28529. extra: 2856 / 2648,
  28530. bottom: 85 / 2941
  28531. }
  28532. },
  28533. frontDressed: {
  28534. height: math.unit(1.8, "meters"),
  28535. weight: math.unit(85, "kg"),
  28536. name: "Front (Dressed)",
  28537. image: {
  28538. source: "./media/characters/azteck/front-dressed.svg",
  28539. extra: 2147 / 2003,
  28540. bottom: 68 / 2215
  28541. }
  28542. },
  28543. head: {
  28544. height: math.unit(0.47, "meters"),
  28545. weight: math.unit(85, "kg"),
  28546. name: "Head",
  28547. image: {
  28548. source: "./media/characters/azteck/head.svg"
  28549. }
  28550. },
  28551. },
  28552. [
  28553. {
  28554. name: "Bite sized",
  28555. height: math.unit(16, "cm")
  28556. },
  28557. {
  28558. name: "Normal",
  28559. height: math.unit(1.8, "meters"),
  28560. default: true
  28561. },
  28562. ]
  28563. ))
  28564. characterMakers.push(() => makeCharacter(
  28565. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28566. {
  28567. front: {
  28568. height: math.unit(6, "feet"),
  28569. weight: math.unit(150, "lb"),
  28570. name: "Front",
  28571. image: {
  28572. source: "./media/characters/pidge/front.svg",
  28573. extra: 620 / 588,
  28574. bottom: 9 / 629
  28575. }
  28576. },
  28577. back: {
  28578. height: math.unit(6, "feet"),
  28579. weight: math.unit(150, "lb"),
  28580. name: "Back",
  28581. image: {
  28582. source: "./media/characters/pidge/back.svg",
  28583. extra: 620 / 588,
  28584. bottom: 9 / 629
  28585. }
  28586. },
  28587. },
  28588. [
  28589. {
  28590. name: "Macro",
  28591. height: math.unit(1, "mile"),
  28592. default: true
  28593. },
  28594. ]
  28595. ))
  28596. characterMakers.push(() => makeCharacter(
  28597. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28598. {
  28599. front: {
  28600. height: math.unit(6, "feet"),
  28601. weight: math.unit(150, "lb"),
  28602. name: "Front",
  28603. image: {
  28604. source: "./media/characters/en/front.svg",
  28605. extra: 1697 / 1563,
  28606. bottom: 103 / 1800
  28607. }
  28608. },
  28609. back: {
  28610. height: math.unit(6, "feet"),
  28611. weight: math.unit(150, "lb"),
  28612. name: "Back",
  28613. image: {
  28614. source: "./media/characters/en/back.svg",
  28615. extra: 1700 / 1570,
  28616. bottom: 51 / 1751
  28617. }
  28618. },
  28619. frontDressed: {
  28620. height: math.unit(6, "feet"),
  28621. weight: math.unit(150, "lb"),
  28622. name: "Front (Dressed)",
  28623. image: {
  28624. source: "./media/characters/en/front-dressed.svg",
  28625. extra: 1697 / 1563,
  28626. bottom: 103 / 1800
  28627. }
  28628. },
  28629. backDressed: {
  28630. height: math.unit(6, "feet"),
  28631. weight: math.unit(150, "lb"),
  28632. name: "Back (Dressed)",
  28633. image: {
  28634. source: "./media/characters/en/back-dressed.svg",
  28635. extra: 1700 / 1570,
  28636. bottom: 51 / 1751
  28637. }
  28638. },
  28639. },
  28640. [
  28641. {
  28642. name: "Macro",
  28643. height: math.unit(210, "feet"),
  28644. default: true
  28645. },
  28646. ]
  28647. ))
  28648. characterMakers.push(() => makeCharacter(
  28649. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28650. {
  28651. front: {
  28652. height: math.unit(6, "feet"),
  28653. weight: math.unit(150, "lb"),
  28654. name: "Front",
  28655. image: {
  28656. source: "./media/characters/haze-orris/front.svg",
  28657. extra: 3975 / 3525,
  28658. bottom: 137 / 4112
  28659. }
  28660. },
  28661. },
  28662. [
  28663. {
  28664. name: "Micro",
  28665. height: math.unit(150, "mm"),
  28666. default: true
  28667. },
  28668. ]
  28669. ))
  28670. characterMakers.push(() => makeCharacter(
  28671. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28672. {
  28673. front: {
  28674. height: math.unit(6, "feet"),
  28675. weight: math.unit(150, "lb"),
  28676. name: "Front",
  28677. image: {
  28678. source: "./media/characters/casselene-yaro/front.svg",
  28679. extra: 4721 / 4541,
  28680. bottom: 82 / 4803
  28681. }
  28682. },
  28683. back: {
  28684. height: math.unit(6, "feet"),
  28685. weight: math.unit(150, "lb"),
  28686. name: "Back",
  28687. image: {
  28688. source: "./media/characters/casselene-yaro/back.svg",
  28689. extra: 4569 / 4377,
  28690. bottom: 69 / 4638
  28691. }
  28692. },
  28693. frontDressed: {
  28694. height: math.unit(6, "feet"),
  28695. weight: math.unit(150, "lb"),
  28696. name: "Front-dressed",
  28697. image: {
  28698. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28699. extra: 4721 / 4541,
  28700. bottom: 82 / 4803
  28701. }
  28702. },
  28703. },
  28704. [
  28705. {
  28706. name: "Macro",
  28707. height: math.unit(190, "feet"),
  28708. default: true
  28709. },
  28710. ]
  28711. ))
  28712. characterMakers.push(() => makeCharacter(
  28713. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28714. {
  28715. front: {
  28716. height: math.unit(6, "feet"),
  28717. weight: math.unit(150, "lb"),
  28718. name: "Front",
  28719. image: {
  28720. source: "./media/characters/myra-rue-delore/front.svg",
  28721. extra: 1340 / 1308,
  28722. bottom: 67 / 1407
  28723. }
  28724. },
  28725. back: {
  28726. height: math.unit(6, "feet"),
  28727. weight: math.unit(150, "lb"),
  28728. name: "Back",
  28729. image: {
  28730. source: "./media/characters/myra-rue-delore/back.svg",
  28731. extra: 1341 / 1310,
  28732. bottom: 40 / 1381
  28733. }
  28734. },
  28735. frontDressed: {
  28736. height: math.unit(6, "feet"),
  28737. weight: math.unit(150, "lb"),
  28738. name: "Front (Dressed)",
  28739. image: {
  28740. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28741. extra: 1340 / 1308,
  28742. bottom: 67 / 1407
  28743. }
  28744. },
  28745. },
  28746. [
  28747. {
  28748. name: "Macro",
  28749. height: math.unit(150, "feet"),
  28750. default: true
  28751. },
  28752. ]
  28753. ))
  28754. characterMakers.push(() => makeCharacter(
  28755. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28756. {
  28757. front: {
  28758. height: math.unit(10, "feet"),
  28759. weight: math.unit(15015, "lb"),
  28760. name: "Front",
  28761. image: {
  28762. source: "./media/characters/fem!plat/front.svg",
  28763. extra: 2799 / 2604,
  28764. bottom: 149 / 2948
  28765. }
  28766. },
  28767. },
  28768. [
  28769. {
  28770. name: "Normal",
  28771. height: math.unit(10, "feet"),
  28772. default: true
  28773. },
  28774. {
  28775. name: "Macro",
  28776. height: math.unit(100, "feet")
  28777. },
  28778. {
  28779. name: "Megamacro",
  28780. height: math.unit(1000, "feet")
  28781. },
  28782. ]
  28783. ))
  28784. characterMakers.push(() => makeCharacter(
  28785. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28786. {
  28787. front: {
  28788. height: math.unit(15 + 5 / 12, "feet"),
  28789. weight: math.unit(4600, "lb"),
  28790. name: "Front",
  28791. image: {
  28792. source: "./media/characters/neapolitan-ananassa/front.svg",
  28793. extra: 2903 / 2736,
  28794. bottom: 0 / 2903
  28795. }
  28796. },
  28797. side: {
  28798. height: math.unit(15 + 5 / 12, "feet"),
  28799. weight: math.unit(4600, "lb"),
  28800. name: "Side",
  28801. image: {
  28802. source: "./media/characters/neapolitan-ananassa/side.svg",
  28803. extra: 2925 / 2719,
  28804. bottom: 0 / 2925
  28805. }
  28806. },
  28807. back: {
  28808. height: math.unit(15 + 5 / 12, "feet"),
  28809. weight: math.unit(4600, "lb"),
  28810. name: "Back",
  28811. image: {
  28812. source: "./media/characters/neapolitan-ananassa/back.svg",
  28813. extra: 2903 / 2736,
  28814. bottom: 0 / 2903
  28815. }
  28816. },
  28817. },
  28818. [
  28819. {
  28820. name: "Normal",
  28821. height: math.unit(15 + 5 / 12, "feet"),
  28822. default: true
  28823. },
  28824. {
  28825. name: "Post-Millenium",
  28826. height: math.unit(35 + 5 / 12, "feet")
  28827. },
  28828. {
  28829. name: "Post-Era",
  28830. height: math.unit(450 + 5 / 12, "feet")
  28831. },
  28832. ]
  28833. ))
  28834. characterMakers.push(() => makeCharacter(
  28835. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28836. {
  28837. front: {
  28838. height: math.unit(300, "meters"),
  28839. weight: math.unit(125000, "tonnes"),
  28840. name: "Front",
  28841. image: {
  28842. source: "./media/characters/pazuzu/front.svg",
  28843. extra: 877 / 794,
  28844. bottom: 47 / 924
  28845. }
  28846. },
  28847. },
  28848. [
  28849. {
  28850. name: "Macro",
  28851. height: math.unit(300, "meters"),
  28852. default: true
  28853. },
  28854. ]
  28855. ))
  28856. characterMakers.push(() => makeCharacter(
  28857. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28858. {
  28859. side: {
  28860. height: math.unit(10 + 7 / 12, "feet"),
  28861. weight: math.unit(2.5, "tons"),
  28862. name: "Side",
  28863. image: {
  28864. source: "./media/characters/aasha/side.svg",
  28865. extra: 1345 / 1245,
  28866. bottom: 111 / 1456
  28867. }
  28868. },
  28869. back: {
  28870. height: math.unit(10 + 7 / 12, "feet"),
  28871. weight: math.unit(2.5, "tons"),
  28872. name: "Back",
  28873. image: {
  28874. source: "./media/characters/aasha/back.svg",
  28875. extra: 1133 / 1057,
  28876. bottom: 257 / 1390
  28877. }
  28878. },
  28879. },
  28880. [
  28881. {
  28882. name: "Normal",
  28883. height: math.unit(10 + 7 / 12, "feet"),
  28884. default: true
  28885. },
  28886. ]
  28887. ))
  28888. characterMakers.push(() => makeCharacter(
  28889. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28890. {
  28891. front: {
  28892. height: math.unit(6 + 3 / 12, "feet"),
  28893. name: "Front",
  28894. image: {
  28895. source: "./media/characters/nevan/front.svg",
  28896. extra: 704 / 704,
  28897. bottom: 28 / 732
  28898. }
  28899. },
  28900. back: {
  28901. height: math.unit(6 + 3 / 12, "feet"),
  28902. name: "Back",
  28903. image: {
  28904. source: "./media/characters/nevan/back.svg",
  28905. extra: 714 / 714,
  28906. bottom: 21 / 735
  28907. }
  28908. },
  28909. frontFlaccid: {
  28910. height: math.unit(6 + 3 / 12, "feet"),
  28911. name: "Front (Flaccid)",
  28912. image: {
  28913. source: "./media/characters/nevan/front-flaccid.svg",
  28914. extra: 704 / 704,
  28915. bottom: 28 / 732
  28916. }
  28917. },
  28918. frontErect: {
  28919. height: math.unit(6 + 3 / 12, "feet"),
  28920. name: "Front (Erect)",
  28921. image: {
  28922. source: "./media/characters/nevan/front-erect.svg",
  28923. extra: 704 / 704,
  28924. bottom: 28 / 732
  28925. }
  28926. },
  28927. backFlaccid: {
  28928. height: math.unit(6 + 3 / 12, "feet"),
  28929. name: "Back (Flaccid)",
  28930. image: {
  28931. source: "./media/characters/nevan/back-flaccid.svg",
  28932. extra: 714 / 714,
  28933. bottom: 21 / 735
  28934. }
  28935. },
  28936. },
  28937. [
  28938. {
  28939. name: "Normal",
  28940. height: math.unit(6 + 3 / 12, "feet"),
  28941. default: true
  28942. },
  28943. ]
  28944. ))
  28945. characterMakers.push(() => makeCharacter(
  28946. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28947. {
  28948. front: {
  28949. height: math.unit(4, "feet"),
  28950. name: "Front",
  28951. image: {
  28952. source: "./media/characters/arhan/front.svg",
  28953. extra: 3368 / 3133,
  28954. bottom: 0 / 3368
  28955. }
  28956. },
  28957. side: {
  28958. height: math.unit(4, "feet"),
  28959. name: "Side",
  28960. image: {
  28961. source: "./media/characters/arhan/side.svg",
  28962. extra: 3347 / 3105,
  28963. bottom: 0 / 3347
  28964. }
  28965. },
  28966. tongue: {
  28967. height: math.unit(1.42, "feet"),
  28968. name: "Tongue",
  28969. image: {
  28970. source: "./media/characters/arhan/tongue.svg"
  28971. }
  28972. },
  28973. head: {
  28974. height: math.unit(0.85, "feet"),
  28975. name: "Head",
  28976. image: {
  28977. source: "./media/characters/arhan/head.svg"
  28978. }
  28979. },
  28980. },
  28981. [
  28982. {
  28983. name: "Normal",
  28984. height: math.unit(4, "feet"),
  28985. default: true
  28986. },
  28987. ]
  28988. ))
  28989. characterMakers.push(() => makeCharacter(
  28990. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28991. {
  28992. front: {
  28993. height: math.unit(5 + 7.5 / 12, "feet"),
  28994. weight: math.unit(120, "lb"),
  28995. name: "Front",
  28996. image: {
  28997. source: "./media/characters/digi-duncan/front.svg",
  28998. extra: 330 / 326,
  28999. bottom: 16 / 346
  29000. }
  29001. },
  29002. side: {
  29003. height: math.unit(5 + 7.5 / 12, "feet"),
  29004. weight: math.unit(120, "lb"),
  29005. name: "Side",
  29006. image: {
  29007. source: "./media/characters/digi-duncan/side.svg",
  29008. extra: 341 / 337,
  29009. bottom: 1 / 342
  29010. }
  29011. },
  29012. back: {
  29013. height: math.unit(5 + 7.5 / 12, "feet"),
  29014. weight: math.unit(120, "lb"),
  29015. name: "Back",
  29016. image: {
  29017. source: "./media/characters/digi-duncan/back.svg",
  29018. extra: 330 / 326,
  29019. bottom: 12 / 342
  29020. }
  29021. },
  29022. },
  29023. [
  29024. {
  29025. name: "Speck",
  29026. height: math.unit(0.25, "mm")
  29027. },
  29028. {
  29029. name: "Micro",
  29030. height: math.unit(5, "mm")
  29031. },
  29032. {
  29033. name: "Tiny",
  29034. height: math.unit(0.5, "inches"),
  29035. default: true
  29036. },
  29037. {
  29038. name: "Human",
  29039. height: math.unit(5 + 7.5 / 12, "feet")
  29040. },
  29041. {
  29042. name: "Minigiant",
  29043. height: math.unit(8 + 5.25, "feet")
  29044. },
  29045. {
  29046. name: "Giant",
  29047. height: math.unit(2000, "feet")
  29048. },
  29049. {
  29050. name: "Mega",
  29051. height: math.unit(371.1, "miles")
  29052. },
  29053. ]
  29054. ))
  29055. characterMakers.push(() => makeCharacter(
  29056. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29057. {
  29058. front: {
  29059. height: math.unit(2, "meters"),
  29060. weight: math.unit(350, "kg"),
  29061. name: "Front",
  29062. image: {
  29063. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29064. extra: 898 / 838,
  29065. bottom: 9 / 907
  29066. }
  29067. },
  29068. },
  29069. [
  29070. {
  29071. name: "Micro",
  29072. height: math.unit(8, "meters")
  29073. },
  29074. {
  29075. name: "Normal",
  29076. height: math.unit(50, "meters"),
  29077. default: true
  29078. },
  29079. {
  29080. name: "Macro",
  29081. height: math.unit(500, "meters")
  29082. },
  29083. ]
  29084. ))
  29085. characterMakers.push(() => makeCharacter(
  29086. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29087. {
  29088. front: {
  29089. height: math.unit(6 + 6 / 12, "feet"),
  29090. name: "Front",
  29091. image: {
  29092. source: "./media/characters/khardesh/front.svg",
  29093. extra: 888 / 797,
  29094. bottom: 25 / 913
  29095. }
  29096. },
  29097. },
  29098. [
  29099. {
  29100. name: "Normal",
  29101. height: math.unit(6 + 6 / 12, "feet"),
  29102. default: true
  29103. },
  29104. {
  29105. name: "Normal+",
  29106. height: math.unit(4, "meters")
  29107. },
  29108. {
  29109. name: "Macro",
  29110. height: math.unit(50, "meters")
  29111. },
  29112. {
  29113. name: "Macro+",
  29114. height: math.unit(100, "meters")
  29115. },
  29116. {
  29117. name: "Megamacro",
  29118. height: math.unit(20, "km")
  29119. },
  29120. ]
  29121. ))
  29122. characterMakers.push(() => makeCharacter(
  29123. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29124. {
  29125. front: {
  29126. height: math.unit(6, "feet"),
  29127. weight: math.unit(150, "lb"),
  29128. name: "Front",
  29129. image: {
  29130. source: "./media/characters/kosho/front.svg",
  29131. extra: 1847 / 1847,
  29132. bottom: 86 / 1933
  29133. }
  29134. },
  29135. },
  29136. [
  29137. {
  29138. name: "Second-stage micro",
  29139. height: math.unit(0.5, "inches")
  29140. },
  29141. {
  29142. name: "First-stage micro",
  29143. height: math.unit(6, "inches")
  29144. },
  29145. {
  29146. name: "Normal",
  29147. height: math.unit(6, "feet"),
  29148. default: true
  29149. },
  29150. {
  29151. name: "First-stage macro",
  29152. height: math.unit(72, "feet")
  29153. },
  29154. {
  29155. name: "Second-stage macro",
  29156. height: math.unit(864, "feet")
  29157. },
  29158. ]
  29159. ))
  29160. characterMakers.push(() => makeCharacter(
  29161. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29162. {
  29163. normal: {
  29164. height: math.unit(4 + 6 / 12, "feet"),
  29165. name: "Normal",
  29166. image: {
  29167. source: "./media/characters/hydra/normal.svg",
  29168. extra: 2833 / 2634,
  29169. bottom: 68 / 2901
  29170. }
  29171. },
  29172. smol: {
  29173. height: math.unit(0.705, "inches"),
  29174. name: "Smol",
  29175. image: {
  29176. source: "./media/characters/hydra/smol.svg",
  29177. extra: 2715 / 2540,
  29178. bottom: 0 / 2715
  29179. }
  29180. },
  29181. },
  29182. [
  29183. {
  29184. name: "Normal",
  29185. height: math.unit(4 + 6 / 12, "feet"),
  29186. default: true
  29187. }
  29188. ]
  29189. ))
  29190. characterMakers.push(() => makeCharacter(
  29191. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29192. {
  29193. front: {
  29194. height: math.unit(0.6, "cm"),
  29195. name: "Front",
  29196. image: {
  29197. source: "./media/characters/daz/front.svg",
  29198. extra: 1682 / 1164,
  29199. bottom: 42 / 1724
  29200. }
  29201. },
  29202. },
  29203. [
  29204. {
  29205. name: "Normal",
  29206. height: math.unit(0.6, "cm"),
  29207. default: true
  29208. },
  29209. ]
  29210. ))
  29211. characterMakers.push(() => makeCharacter(
  29212. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29213. {
  29214. front: {
  29215. height: math.unit(6, "feet"),
  29216. weight: math.unit(235, "lb"),
  29217. name: "Front",
  29218. image: {
  29219. source: "./media/characters/theo-pangolin/front.svg",
  29220. extra: 1996 / 1969,
  29221. bottom: 115 / 2111
  29222. }
  29223. },
  29224. back: {
  29225. height: math.unit(6, "feet"),
  29226. weight: math.unit(235, "lb"),
  29227. name: "Back",
  29228. image: {
  29229. source: "./media/characters/theo-pangolin/back.svg",
  29230. extra: 1979 / 1979,
  29231. bottom: 40 / 2019
  29232. }
  29233. },
  29234. feral: {
  29235. height: math.unit(2, "feet"),
  29236. weight: math.unit(30, "lb"),
  29237. name: "Feral",
  29238. image: {
  29239. source: "./media/characters/theo-pangolin/feral.svg",
  29240. extra: 803 / 791,
  29241. bottom: 181 / 984
  29242. }
  29243. },
  29244. footFive: {
  29245. height: math.unit(1.43, "feet"),
  29246. name: "Foot (Five Toes)",
  29247. image: {
  29248. source: "./media/characters/theo-pangolin/foot-five.svg"
  29249. }
  29250. },
  29251. footFour: {
  29252. height: math.unit(1.43, "feet"),
  29253. name: "Foot (Four Toes)",
  29254. image: {
  29255. source: "./media/characters/theo-pangolin/foot-four.svg"
  29256. }
  29257. },
  29258. handFour: {
  29259. height: math.unit(0.81, "feet"),
  29260. name: "Hand (Four Fingers)",
  29261. image: {
  29262. source: "./media/characters/theo-pangolin/hand-four.svg"
  29263. }
  29264. },
  29265. handThree: {
  29266. height: math.unit(0.81, "feet"),
  29267. name: "Hand (Three Fingers)",
  29268. image: {
  29269. source: "./media/characters/theo-pangolin/hand-three.svg"
  29270. }
  29271. },
  29272. headFront: {
  29273. height: math.unit(1.37, "feet"),
  29274. name: "Head (Front)",
  29275. image: {
  29276. source: "./media/characters/theo-pangolin/head-front.svg"
  29277. }
  29278. },
  29279. headSide: {
  29280. height: math.unit(1.43, "feet"),
  29281. name: "Head (Side)",
  29282. image: {
  29283. source: "./media/characters/theo-pangolin/head-side.svg"
  29284. }
  29285. },
  29286. tongue: {
  29287. height: math.unit(2.29, "feet"),
  29288. name: "Tongue",
  29289. image: {
  29290. source: "./media/characters/theo-pangolin/tongue.svg"
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Normal",
  29297. height: math.unit(6, "feet")
  29298. },
  29299. {
  29300. name: "Macro",
  29301. height: math.unit(400, "feet"),
  29302. default: true
  29303. },
  29304. ]
  29305. ))
  29306. characterMakers.push(() => makeCharacter(
  29307. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29308. {
  29309. front: {
  29310. height: math.unit(6, "inches"),
  29311. weight: math.unit(0.036, "kg"),
  29312. name: "Front",
  29313. image: {
  29314. source: "./media/characters/renée/front.svg",
  29315. extra: 900 / 886,
  29316. bottom: 8 / 908
  29317. }
  29318. },
  29319. },
  29320. [
  29321. {
  29322. name: "Nano",
  29323. height: math.unit(1, "nm")
  29324. },
  29325. {
  29326. name: "Micro",
  29327. height: math.unit(1, "mm")
  29328. },
  29329. {
  29330. name: "Normal",
  29331. height: math.unit(6, "inches")
  29332. },
  29333. {
  29334. name: "Macro",
  29335. height: math.unit(2000, "feet"),
  29336. default: true
  29337. },
  29338. {
  29339. name: "Megamacro",
  29340. height: math.unit(2, "km")
  29341. },
  29342. {
  29343. name: "Gigamacro",
  29344. height: math.unit(2000, "km")
  29345. },
  29346. {
  29347. name: "Teramacro",
  29348. height: math.unit(250000, "km")
  29349. },
  29350. ]
  29351. ))
  29352. characterMakers.push(() => makeCharacter(
  29353. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29354. {
  29355. front: {
  29356. height: math.unit(4, "meters"),
  29357. weight: math.unit(150, "kg"),
  29358. name: "Front",
  29359. image: {
  29360. source: "./media/characters/caledvwlch/front.svg",
  29361. extra: 1760 / 1551,
  29362. bottom: 28 / 1788
  29363. }
  29364. },
  29365. side: {
  29366. height: math.unit(4, "meters"),
  29367. weight: math.unit(150, "kg"),
  29368. name: "Side",
  29369. image: {
  29370. source: "./media/characters/caledvwlch/side.svg",
  29371. extra: 1605 / 1536,
  29372. bottom: 31 / 1636
  29373. }
  29374. },
  29375. back: {
  29376. height: math.unit(4, "meters"),
  29377. weight: math.unit(150, "kg"),
  29378. name: "Back",
  29379. image: {
  29380. source: "./media/characters/caledvwlch/back.svg",
  29381. extra: 1635 / 1565,
  29382. bottom: 27 / 1662
  29383. }
  29384. },
  29385. },
  29386. [
  29387. {
  29388. name: "\"Incognito\"",
  29389. height: math.unit(4, "meters")
  29390. },
  29391. {
  29392. name: "Small rampage",
  29393. height: math.unit(600, "meters")
  29394. },
  29395. {
  29396. name: "Mega",
  29397. height: math.unit(30, "km")
  29398. },
  29399. {
  29400. name: "Home-size",
  29401. height: math.unit(50, "km"),
  29402. default: true
  29403. },
  29404. {
  29405. name: "Giga",
  29406. height: math.unit(300, "km")
  29407. },
  29408. {
  29409. name: "Lounging",
  29410. height: math.unit(11000, "km")
  29411. },
  29412. {
  29413. name: "Planet snacking",
  29414. height: math.unit(2000000, "km")
  29415. },
  29416. ]
  29417. ))
  29418. characterMakers.push(() => makeCharacter(
  29419. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29420. {
  29421. front: {
  29422. height: math.unit(6, "feet"),
  29423. weight: math.unit(215, "lb"),
  29424. name: "Front",
  29425. image: {
  29426. source: "./media/characters/sapphire-svell/front.svg",
  29427. extra: 495 / 455,
  29428. bottom: 20 / 515
  29429. }
  29430. },
  29431. back: {
  29432. height: math.unit(6, "feet"),
  29433. weight: math.unit(216, "lb"),
  29434. name: "Back",
  29435. image: {
  29436. source: "./media/characters/sapphire-svell/back.svg",
  29437. extra: 497 / 477,
  29438. bottom: 7 / 504
  29439. }
  29440. },
  29441. maw: {
  29442. height: math.unit(1.57, "feet"),
  29443. name: "Maw",
  29444. image: {
  29445. source: "./media/characters/sapphire-svell/maw.svg"
  29446. }
  29447. },
  29448. foot: {
  29449. height: math.unit(1.07, "feet"),
  29450. name: "Foot",
  29451. image: {
  29452. source: "./media/characters/sapphire-svell/foot.svg"
  29453. }
  29454. },
  29455. toering: {
  29456. height: math.unit(1.7, "inch"),
  29457. name: "Toering",
  29458. image: {
  29459. source: "./media/characters/sapphire-svell/toering.svg"
  29460. }
  29461. },
  29462. },
  29463. [
  29464. {
  29465. name: "Normal",
  29466. height: math.unit(300, "feet"),
  29467. default: true
  29468. },
  29469. {
  29470. name: "Augmented",
  29471. height: math.unit(1250, "feet")
  29472. },
  29473. {
  29474. name: "Unleashed",
  29475. height: math.unit(3000, "feet")
  29476. },
  29477. ]
  29478. ))
  29479. characterMakers.push(() => makeCharacter(
  29480. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29481. {
  29482. side: {
  29483. height: math.unit(2 + 3 / 12, "feet"),
  29484. weight: math.unit(110, "lb"),
  29485. name: "Side",
  29486. image: {
  29487. source: "./media/characters/glitch-flux/side.svg",
  29488. extra: 997 / 805,
  29489. bottom: 20 / 1017
  29490. }
  29491. },
  29492. },
  29493. [
  29494. {
  29495. name: "Normal",
  29496. height: math.unit(2 + 3 / 12, "feet"),
  29497. default: true
  29498. },
  29499. ]
  29500. ))
  29501. characterMakers.push(() => makeCharacter(
  29502. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29503. {
  29504. front: {
  29505. height: math.unit(4, "meters"),
  29506. name: "Front",
  29507. image: {
  29508. source: "./media/characters/mid/front.svg",
  29509. extra: 507 / 476,
  29510. bottom: 17 / 524
  29511. }
  29512. },
  29513. back: {
  29514. height: math.unit(4, "meters"),
  29515. name: "Back",
  29516. image: {
  29517. source: "./media/characters/mid/back.svg",
  29518. extra: 519 / 487,
  29519. bottom: 7 / 526
  29520. }
  29521. },
  29522. stuck: {
  29523. height: math.unit(2.2, "meters"),
  29524. name: "Stuck",
  29525. image: {
  29526. source: "./media/characters/mid/stuck.svg",
  29527. extra: 1951 / 1869,
  29528. bottom: 88 / 2039
  29529. }
  29530. }
  29531. },
  29532. [
  29533. {
  29534. name: "Normal",
  29535. height: math.unit(4, "meters"),
  29536. default: true
  29537. },
  29538. {
  29539. name: "Big",
  29540. height: math.unit(10, "meters")
  29541. },
  29542. {
  29543. name: "Macro",
  29544. height: math.unit(800, "meters")
  29545. },
  29546. {
  29547. name: "Megamacro",
  29548. height: math.unit(100, "km")
  29549. },
  29550. {
  29551. name: "Overgrown",
  29552. height: math.unit(1, "parsec")
  29553. },
  29554. ]
  29555. ))
  29556. characterMakers.push(() => makeCharacter(
  29557. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29558. {
  29559. front: {
  29560. height: math.unit(2.5, "meters"),
  29561. weight: math.unit(225, "kg"),
  29562. name: "Front",
  29563. image: {
  29564. source: "./media/characters/iris/front.svg",
  29565. extra: 3348 / 3251,
  29566. bottom: 205 / 3553
  29567. }
  29568. },
  29569. maw: {
  29570. height: math.unit(0.56, "meter"),
  29571. name: "Maw",
  29572. image: {
  29573. source: "./media/characters/iris/maw.svg"
  29574. }
  29575. },
  29576. },
  29577. [
  29578. {
  29579. name: "Mewter cat",
  29580. height: math.unit(1.2, "meters")
  29581. },
  29582. {
  29583. name: "Minimacro",
  29584. height: math.unit(2.5, "meters"),
  29585. default: true
  29586. },
  29587. {
  29588. name: "Macro",
  29589. height: math.unit(180, "meters")
  29590. },
  29591. {
  29592. name: "Megamacro",
  29593. height: math.unit(2746, "meters")
  29594. },
  29595. ]
  29596. ))
  29597. characterMakers.push(() => makeCharacter(
  29598. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29599. {
  29600. front: {
  29601. height: math.unit(6, "feet"),
  29602. weight: math.unit(135, "lb"),
  29603. name: "Front",
  29604. image: {
  29605. source: "./media/characters/axel/front.svg",
  29606. extra: 908 / 908,
  29607. bottom: 58 / 966
  29608. }
  29609. },
  29610. side: {
  29611. height: math.unit(6, "feet"),
  29612. weight: math.unit(135, "lb"),
  29613. name: "Side",
  29614. image: {
  29615. source: "./media/characters/axel/side.svg",
  29616. extra: 958 / 958,
  29617. bottom: 11 / 969
  29618. }
  29619. },
  29620. back: {
  29621. height: math.unit(6, "feet"),
  29622. weight: math.unit(135, "lb"),
  29623. name: "Back",
  29624. image: {
  29625. source: "./media/characters/axel/back.svg",
  29626. extra: 887 / 887,
  29627. bottom: 34 / 921
  29628. }
  29629. },
  29630. head: {
  29631. height: math.unit(1.07, "feet"),
  29632. name: "Head",
  29633. image: {
  29634. source: "./media/characters/axel/head.svg"
  29635. }
  29636. },
  29637. beak: {
  29638. height: math.unit(1.4, "feet"),
  29639. name: "Beak",
  29640. image: {
  29641. source: "./media/characters/axel/beak.svg"
  29642. }
  29643. },
  29644. beakSide: {
  29645. height: math.unit(1.4, "feet"),
  29646. name: "Beak Side",
  29647. image: {
  29648. source: "./media/characters/axel/beak-side.svg"
  29649. }
  29650. },
  29651. sheath: {
  29652. height: math.unit(0.5, "feet"),
  29653. name: "Sheath",
  29654. image: {
  29655. source: "./media/characters/axel/sheath.svg"
  29656. }
  29657. },
  29658. dick: {
  29659. height: math.unit(0.98, "feet"),
  29660. name: "Dick",
  29661. image: {
  29662. source: "./media/characters/axel/dick.svg"
  29663. }
  29664. },
  29665. },
  29666. [
  29667. {
  29668. name: "Macro",
  29669. height: math.unit(68, "meters"),
  29670. default: true
  29671. },
  29672. ]
  29673. ))
  29674. characterMakers.push(() => makeCharacter(
  29675. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29676. {
  29677. front: {
  29678. height: math.unit(3.5, "meters"),
  29679. weight: math.unit(1200, "kg"),
  29680. name: "Front",
  29681. image: {
  29682. source: "./media/characters/joanna/front.svg",
  29683. extra: 1596 / 1488,
  29684. bottom: 29 / 1625
  29685. }
  29686. },
  29687. back: {
  29688. height: math.unit(3.5, "meters"),
  29689. weight: math.unit(1200, "kg"),
  29690. name: "Back",
  29691. image: {
  29692. source: "./media/characters/joanna/back.svg",
  29693. extra: 1594 / 1495,
  29694. bottom: 26 / 1620
  29695. }
  29696. },
  29697. frontShorts: {
  29698. height: math.unit(3.5, "meters"),
  29699. weight: math.unit(1200, "kg"),
  29700. name: "Front (Shorts)",
  29701. image: {
  29702. source: "./media/characters/joanna/front-shorts.svg",
  29703. extra: 1596 / 1488,
  29704. bottom: 29 / 1625
  29705. }
  29706. },
  29707. frontBiker: {
  29708. height: math.unit(3.5, "meters"),
  29709. weight: math.unit(1200, "kg"),
  29710. name: "Front (Biker)",
  29711. image: {
  29712. source: "./media/characters/joanna/front-biker.svg",
  29713. extra: 1596 / 1488,
  29714. bottom: 29 / 1625
  29715. }
  29716. },
  29717. backBiker: {
  29718. height: math.unit(3.5, "meters"),
  29719. weight: math.unit(1200, "kg"),
  29720. name: "Back (Biker)",
  29721. image: {
  29722. source: "./media/characters/joanna/back-biker.svg",
  29723. extra: 1594 / 1495,
  29724. bottom: 88 / 1682
  29725. }
  29726. },
  29727. bikeLeft: {
  29728. height: math.unit(2.4, "meters"),
  29729. weight: math.unit(1600, "kg"),
  29730. name: "Bike (Left)",
  29731. image: {
  29732. source: "./media/characters/joanna/bike-left.svg",
  29733. extra: 720 / 720,
  29734. bottom: 8 / 728
  29735. }
  29736. },
  29737. bikeRight: {
  29738. height: math.unit(2.4, "meters"),
  29739. weight: math.unit(1600, "kg"),
  29740. name: "Bike (Right)",
  29741. image: {
  29742. source: "./media/characters/joanna/bike-right.svg",
  29743. extra: 720 / 720,
  29744. bottom: 8 / 728
  29745. }
  29746. },
  29747. },
  29748. [
  29749. {
  29750. name: "Incognito",
  29751. height: math.unit(3.5, "meters")
  29752. },
  29753. {
  29754. name: "Casual Big",
  29755. height: math.unit(200, "meters")
  29756. },
  29757. {
  29758. name: "Macro",
  29759. height: math.unit(600, "meters")
  29760. },
  29761. {
  29762. name: "Original",
  29763. height: math.unit(20, "km"),
  29764. default: true
  29765. },
  29766. {
  29767. name: "Giga",
  29768. height: math.unit(400, "km")
  29769. },
  29770. {
  29771. name: "Lounging",
  29772. height: math.unit(1500, "km")
  29773. },
  29774. {
  29775. name: "Planetary",
  29776. height: math.unit(200000, "km")
  29777. },
  29778. ]
  29779. ))
  29780. characterMakers.push(() => makeCharacter(
  29781. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29782. {
  29783. front: {
  29784. height: math.unit(6, "feet"),
  29785. weight: math.unit(150, "lb"),
  29786. name: "Front",
  29787. image: {
  29788. source: "./media/characters/hugo-sigil/front.svg",
  29789. extra: 522 / 500,
  29790. bottom: 2 / 524
  29791. }
  29792. },
  29793. back: {
  29794. height: math.unit(6, "feet"),
  29795. weight: math.unit(150, "lb"),
  29796. name: "Back",
  29797. image: {
  29798. source: "./media/characters/hugo-sigil/back.svg",
  29799. extra: 519 / 495,
  29800. bottom: 5 / 524
  29801. }
  29802. },
  29803. maw: {
  29804. height: math.unit(1.4, "feet"),
  29805. weight: math.unit(150, "lb"),
  29806. name: "Maw",
  29807. image: {
  29808. source: "./media/characters/hugo-sigil/maw.svg"
  29809. }
  29810. },
  29811. feet: {
  29812. height: math.unit(1.56, "feet"),
  29813. weight: math.unit(150, "lb"),
  29814. name: "Feet",
  29815. image: {
  29816. source: "./media/characters/hugo-sigil/feet.svg",
  29817. extra: 177 / 177,
  29818. bottom: 12 / 189
  29819. }
  29820. },
  29821. },
  29822. [
  29823. {
  29824. name: "Normal",
  29825. height: math.unit(6, "feet")
  29826. },
  29827. {
  29828. name: "Macro",
  29829. height: math.unit(200, "feet"),
  29830. default: true
  29831. },
  29832. ]
  29833. ))
  29834. characterMakers.push(() => makeCharacter(
  29835. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29836. {
  29837. front: {
  29838. height: math.unit(6, "feet"),
  29839. weight: math.unit(150, "lb"),
  29840. name: "Front",
  29841. image: {
  29842. source: "./media/characters/peri/front.svg",
  29843. extra: 2354 / 2233,
  29844. bottom: 49 / 2403
  29845. }
  29846. },
  29847. },
  29848. [
  29849. {
  29850. name: "Really Small",
  29851. height: math.unit(1, "nm")
  29852. },
  29853. {
  29854. name: "Micro",
  29855. height: math.unit(4, "inches")
  29856. },
  29857. {
  29858. name: "Normal",
  29859. height: math.unit(7, "inches"),
  29860. default: true
  29861. },
  29862. {
  29863. name: "Macro",
  29864. height: math.unit(400, "feet")
  29865. },
  29866. {
  29867. name: "Megamacro",
  29868. height: math.unit(100, "miles")
  29869. },
  29870. ]
  29871. ))
  29872. characterMakers.push(() => makeCharacter(
  29873. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29874. {
  29875. frontSlim: {
  29876. height: math.unit(7, "feet"),
  29877. name: "Front (Slim)",
  29878. image: {
  29879. source: "./media/characters/issilora/front-slim.svg",
  29880. extra: 529 / 449,
  29881. bottom: 53 / 582
  29882. }
  29883. },
  29884. sideSlim: {
  29885. height: math.unit(7, "feet"),
  29886. name: "Side (Slim)",
  29887. image: {
  29888. source: "./media/characters/issilora/side-slim.svg",
  29889. extra: 570 / 480,
  29890. bottom: 30 / 600
  29891. }
  29892. },
  29893. backSlim: {
  29894. height: math.unit(7, "feet"),
  29895. name: "Back (Slim)",
  29896. image: {
  29897. source: "./media/characters/issilora/back-slim.svg",
  29898. extra: 537 / 455,
  29899. bottom: 46 / 583
  29900. }
  29901. },
  29902. frontBuff: {
  29903. height: math.unit(7, "feet"),
  29904. name: "Front (Buff)",
  29905. image: {
  29906. source: "./media/characters/issilora/front-buff.svg",
  29907. extra: 2310 / 2035,
  29908. bottom: 335 / 2645
  29909. }
  29910. },
  29911. head: {
  29912. height: math.unit(1.94, "feet"),
  29913. name: "Head",
  29914. image: {
  29915. source: "./media/characters/issilora/head.svg"
  29916. }
  29917. },
  29918. },
  29919. [
  29920. {
  29921. name: "Minimum",
  29922. height: math.unit(7, "feet")
  29923. },
  29924. {
  29925. name: "Comfortable",
  29926. height: math.unit(17, "feet")
  29927. },
  29928. {
  29929. name: "Fun Size",
  29930. height: math.unit(47, "feet")
  29931. },
  29932. {
  29933. name: "Natural Macro",
  29934. height: math.unit(137, "feet"),
  29935. default: true
  29936. },
  29937. {
  29938. name: "Maximum Kaiju",
  29939. height: math.unit(397, "feet")
  29940. },
  29941. ]
  29942. ))
  29943. characterMakers.push(() => makeCharacter(
  29944. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29945. {
  29946. front: {
  29947. height: math.unit(50 + 9/12, "feet"),
  29948. weight: math.unit(32.8, "tons"),
  29949. name: "Front",
  29950. image: {
  29951. source: "./media/characters/irb'iiritaahn/front.svg",
  29952. extra: 1878/1826,
  29953. bottom: 326/2204
  29954. }
  29955. },
  29956. back: {
  29957. height: math.unit(50 + 9/12, "feet"),
  29958. weight: math.unit(32.8, "tons"),
  29959. name: "Back",
  29960. image: {
  29961. source: "./media/characters/irb'iiritaahn/back.svg",
  29962. extra: 2052/2018,
  29963. bottom: 152/2204
  29964. }
  29965. },
  29966. head: {
  29967. height: math.unit(12.86, "feet"),
  29968. name: "Head",
  29969. image: {
  29970. source: "./media/characters/irb'iiritaahn/head.svg"
  29971. }
  29972. },
  29973. maw: {
  29974. height: math.unit(9.66, "feet"),
  29975. name: "Maw",
  29976. image: {
  29977. source: "./media/characters/irb'iiritaahn/maw.svg"
  29978. }
  29979. },
  29980. frontDick: {
  29981. height: math.unit(8.78461, "feet"),
  29982. name: "Front Dick",
  29983. image: {
  29984. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29985. }
  29986. },
  29987. rearDick: {
  29988. height: math.unit(8.78461, "feet"),
  29989. name: "Rear Dick",
  29990. image: {
  29991. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29992. }
  29993. },
  29994. rearDickUnfolded: {
  29995. height: math.unit(8.78, "feet"),
  29996. name: "Rear Dick (Unfolded)",
  29997. image: {
  29998. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29999. }
  30000. },
  30001. wings: {
  30002. height: math.unit(43, "feet"),
  30003. name: "Wings",
  30004. image: {
  30005. source: "./media/characters/irb'iiritaahn/wings.svg"
  30006. }
  30007. },
  30008. },
  30009. [
  30010. {
  30011. name: "Macro",
  30012. height: math.unit(50 + 9/12, "feet"),
  30013. default: true
  30014. },
  30015. ]
  30016. ))
  30017. characterMakers.push(() => makeCharacter(
  30018. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30019. {
  30020. front: {
  30021. height: math.unit(205, "cm"),
  30022. weight: math.unit(102, "kg"),
  30023. name: "Front",
  30024. image: {
  30025. source: "./media/characters/irbisgreif/front.svg",
  30026. extra: 785/706,
  30027. bottom: 13/798
  30028. }
  30029. },
  30030. back: {
  30031. height: math.unit(205, "cm"),
  30032. weight: math.unit(102, "kg"),
  30033. name: "Back",
  30034. image: {
  30035. source: "./media/characters/irbisgreif/back.svg",
  30036. extra: 713/701,
  30037. bottom: 26/739
  30038. }
  30039. },
  30040. frontDressed: {
  30041. height: math.unit(216, "cm"),
  30042. weight: math.unit(102, "kg"),
  30043. name: "Front-dressed",
  30044. image: {
  30045. source: "./media/characters/irbisgreif/front-dressed.svg",
  30046. extra: 902/776,
  30047. bottom: 14/916
  30048. }
  30049. },
  30050. sideDressed: {
  30051. height: math.unit(195, "cm"),
  30052. weight: math.unit(102, "kg"),
  30053. name: "Side-dressed",
  30054. image: {
  30055. source: "./media/characters/irbisgreif/side-dressed.svg",
  30056. extra: 788/688,
  30057. bottom: 21/809
  30058. }
  30059. },
  30060. backDressed: {
  30061. height: math.unit(216, "cm"),
  30062. weight: math.unit(102, "kg"),
  30063. name: "Back-dressed",
  30064. image: {
  30065. source: "./media/characters/irbisgreif/back-dressed.svg",
  30066. extra: 901/783,
  30067. bottom: 10/911
  30068. }
  30069. },
  30070. dick: {
  30071. height: math.unit(0.49, "feet"),
  30072. name: "Dick",
  30073. image: {
  30074. source: "./media/characters/irbisgreif/dick.svg"
  30075. }
  30076. },
  30077. wingTop: {
  30078. height: math.unit(1.93 , "feet"),
  30079. name: "Wing-top",
  30080. image: {
  30081. source: "./media/characters/irbisgreif/wing-top.svg"
  30082. }
  30083. },
  30084. wingBottom: {
  30085. height: math.unit(1.93 , "feet"),
  30086. name: "Wing-bottom",
  30087. image: {
  30088. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30089. }
  30090. },
  30091. },
  30092. [
  30093. {
  30094. name: "Normal",
  30095. height: math.unit(216, "cm"),
  30096. default: true
  30097. },
  30098. ]
  30099. ))
  30100. characterMakers.push(() => makeCharacter(
  30101. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30102. {
  30103. front: {
  30104. height: math.unit(6, "feet"),
  30105. weight: math.unit(150, "lb"),
  30106. name: "Front",
  30107. image: {
  30108. source: "./media/characters/pride/front.svg",
  30109. extra: 1299/1230,
  30110. bottom: 18/1317
  30111. }
  30112. },
  30113. },
  30114. [
  30115. {
  30116. name: "Normal",
  30117. height: math.unit(7, "feet")
  30118. },
  30119. {
  30120. name: "Mini-macro",
  30121. height: math.unit(11, "feet")
  30122. },
  30123. {
  30124. name: "Macro",
  30125. height: math.unit(15, "meters"),
  30126. default: true
  30127. },
  30128. {
  30129. name: "Macro+",
  30130. height: math.unit(40, "meters")
  30131. },
  30132. ]
  30133. ))
  30134. characterMakers.push(() => makeCharacter(
  30135. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30136. {
  30137. front: {
  30138. height: math.unit(4 + 2 / 12, "feet"),
  30139. weight: math.unit(95, "lb"),
  30140. name: "Front",
  30141. image: {
  30142. source: "./media/characters/vaelophis-nyx/front.svg",
  30143. extra: 2532/2330,
  30144. bottom: 0/2532
  30145. }
  30146. },
  30147. back: {
  30148. height: math.unit(4 + 2 / 12, "feet"),
  30149. weight: math.unit(95, "lb"),
  30150. name: "Back",
  30151. image: {
  30152. source: "./media/characters/vaelophis-nyx/back.svg",
  30153. extra: 2484/2361,
  30154. bottom: 0/2484
  30155. }
  30156. },
  30157. feralSide: {
  30158. height: math.unit(2 + 1/12, "feet"),
  30159. weight: math.unit(20, "lb"),
  30160. name: "Feral (Side)",
  30161. image: {
  30162. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30163. extra: 1721/1581,
  30164. bottom: 70/1791
  30165. }
  30166. },
  30167. feralLazing: {
  30168. height: math.unit(1.08, "feet"),
  30169. weight: math.unit(20, "lb"),
  30170. name: "Feral (Lazing)",
  30171. image: {
  30172. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30173. extra: 822/822,
  30174. bottom: 248/1070
  30175. }
  30176. },
  30177. ear: {
  30178. height: math.unit(0.416, "feet"),
  30179. name: "Ear",
  30180. image: {
  30181. source: "./media/characters/vaelophis-nyx/ear.svg"
  30182. }
  30183. },
  30184. eye: {
  30185. height: math.unit(0.0748, "feet"),
  30186. name: "Eye",
  30187. image: {
  30188. source: "./media/characters/vaelophis-nyx/eye.svg"
  30189. }
  30190. },
  30191. mouth: {
  30192. height: math.unit(0.378, "feet"),
  30193. name: "Mouth",
  30194. image: {
  30195. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30196. }
  30197. },
  30198. spade: {
  30199. height: math.unit(0.55, "feet"),
  30200. name: "Spade",
  30201. image: {
  30202. source: "./media/characters/vaelophis-nyx/spade.svg"
  30203. }
  30204. },
  30205. },
  30206. [
  30207. {
  30208. name: "Normal",
  30209. height: math.unit(4 + 2/12, "feet"),
  30210. default: true
  30211. },
  30212. ]
  30213. ))
  30214. characterMakers.push(() => makeCharacter(
  30215. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30216. {
  30217. front: {
  30218. height: math.unit(7, "feet"),
  30219. weight: math.unit(231, "lb"),
  30220. name: "Front",
  30221. image: {
  30222. source: "./media/characters/flux/front.svg",
  30223. extra: 919/871,
  30224. bottom: 0/919
  30225. }
  30226. },
  30227. back: {
  30228. height: math.unit(7, "feet"),
  30229. weight: math.unit(231, "lb"),
  30230. name: "Back",
  30231. image: {
  30232. source: "./media/characters/flux/back.svg",
  30233. extra: 1040/992,
  30234. bottom: 0/1040
  30235. }
  30236. },
  30237. frontDressed: {
  30238. height: math.unit(7, "feet"),
  30239. weight: math.unit(231, "lb"),
  30240. name: "Front (Dressed)",
  30241. image: {
  30242. source: "./media/characters/flux/front-dressed.svg",
  30243. extra: 919/871,
  30244. bottom: 0/919
  30245. }
  30246. },
  30247. feralSide: {
  30248. height: math.unit(5, "feet"),
  30249. weight: math.unit(150, "lb"),
  30250. name: "Feral (Side)",
  30251. image: {
  30252. source: "./media/characters/flux/feral-side.svg",
  30253. extra: 598/528,
  30254. bottom: 28/626
  30255. }
  30256. },
  30257. head: {
  30258. height: math.unit(1.585, "feet"),
  30259. name: "Head",
  30260. image: {
  30261. source: "./media/characters/flux/head.svg"
  30262. }
  30263. },
  30264. headSide: {
  30265. height: math.unit(1.74, "feet"),
  30266. name: "Head (Side)",
  30267. image: {
  30268. source: "./media/characters/flux/head-side.svg"
  30269. }
  30270. },
  30271. headSideFire: {
  30272. height: math.unit(1.76, "feet"),
  30273. name: "Head (Side, Fire)",
  30274. image: {
  30275. source: "./media/characters/flux/head-side-fire.svg"
  30276. }
  30277. },
  30278. },
  30279. [
  30280. {
  30281. name: "Normal",
  30282. height: math.unit(7, "feet"),
  30283. default: true
  30284. },
  30285. ]
  30286. ))
  30287. characterMakers.push(() => makeCharacter(
  30288. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30289. {
  30290. front: {
  30291. height: math.unit(9, "feet"),
  30292. weight: math.unit(1012, "lb"),
  30293. name: "Front",
  30294. image: {
  30295. source: "./media/characters/ulfra-lupae/front.svg",
  30296. extra: 1083/1011,
  30297. bottom: 67/1150
  30298. }
  30299. },
  30300. },
  30301. [
  30302. {
  30303. name: "Micro",
  30304. height: math.unit(6, "inches")
  30305. },
  30306. {
  30307. name: "Socializing",
  30308. height: math.unit(6 + 5/12, "feet")
  30309. },
  30310. {
  30311. name: "Normal",
  30312. height: math.unit(9, "feet"),
  30313. default: true
  30314. },
  30315. {
  30316. name: "Macro",
  30317. height: math.unit(150, "feet")
  30318. },
  30319. ]
  30320. ))
  30321. characterMakers.push(() => makeCharacter(
  30322. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30323. {
  30324. front: {
  30325. height: math.unit(5 + 2/12, "feet"),
  30326. weight: math.unit(120, "lb"),
  30327. name: "Front",
  30328. image: {
  30329. source: "./media/characters/timber/front.svg",
  30330. extra: 2814/2705,
  30331. bottom: 181/2995
  30332. }
  30333. },
  30334. },
  30335. [
  30336. {
  30337. name: "Normal",
  30338. height: math.unit(5 + 2/12, "feet"),
  30339. default: true
  30340. },
  30341. ]
  30342. ))
  30343. characterMakers.push(() => makeCharacter(
  30344. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30345. {
  30346. front: {
  30347. height: math.unit(5 + 7/12, "feet"),
  30348. weight: math.unit(220, "lb"),
  30349. name: "Front",
  30350. image: {
  30351. source: "./media/characters/nicki/front.svg",
  30352. extra: 453/419,
  30353. bottom: 7/460
  30354. }
  30355. },
  30356. frontAlt: {
  30357. height: math.unit(5 + 7/12, "feet"),
  30358. weight: math.unit(220, "lb"),
  30359. name: "Front-alt",
  30360. image: {
  30361. source: "./media/characters/nicki/front-alt.svg",
  30362. extra: 435/411,
  30363. bottom: 12/447
  30364. }
  30365. },
  30366. back: {
  30367. height: math.unit(5 + 7/12, "feet"),
  30368. weight: math.unit(220, "lb"),
  30369. name: "Back",
  30370. image: {
  30371. source: "./media/characters/nicki/back.svg",
  30372. extra: 440/413,
  30373. bottom: 19/459
  30374. }
  30375. },
  30376. taur: {
  30377. height: math.unit(7 + 6/12, "feet"),
  30378. weight: math.unit(700, "lb"),
  30379. name: "Taur",
  30380. image: {
  30381. source: "./media/characters/nicki/taur.svg",
  30382. extra: 975/773,
  30383. bottom: 0/975
  30384. }
  30385. },
  30386. frontNsfw: {
  30387. height: math.unit(5 + 7/12, "feet"),
  30388. weight: math.unit(220, "lb"),
  30389. name: "Front (NSFW)",
  30390. image: {
  30391. source: "./media/characters/nicki/front-nsfw.svg",
  30392. extra: 453/419,
  30393. bottom: 7/460
  30394. }
  30395. },
  30396. frontNsfwAlt: {
  30397. height: math.unit(5 + 7/12, "feet"),
  30398. weight: math.unit(220, "lb"),
  30399. name: "Front (Alt, NSFW)",
  30400. image: {
  30401. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30402. extra: 435/411,
  30403. bottom: 12/447
  30404. }
  30405. },
  30406. backNsfw: {
  30407. height: math.unit(5 + 7/12, "feet"),
  30408. weight: math.unit(220, "lb"),
  30409. name: "Back (NSFW)",
  30410. image: {
  30411. source: "./media/characters/nicki/back-nsfw.svg",
  30412. extra: 440/413,
  30413. bottom: 19/459
  30414. }
  30415. },
  30416. head: {
  30417. height: math.unit(2.1, "feet"),
  30418. name: "Head",
  30419. image: {
  30420. source: "./media/characters/nicki/head.svg"
  30421. }
  30422. },
  30423. paw: {
  30424. height: math.unit(1.88, "feet"),
  30425. name: "Paw",
  30426. image: {
  30427. source: "./media/characters/nicki/paw.svg"
  30428. }
  30429. },
  30430. },
  30431. [
  30432. {
  30433. name: "Normal",
  30434. height: math.unit(5 + 7/12, "feet"),
  30435. default: true
  30436. },
  30437. ]
  30438. ))
  30439. characterMakers.push(() => makeCharacter(
  30440. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30441. {
  30442. front: {
  30443. height: math.unit(7 + 10/12, "feet"),
  30444. weight: math.unit(3.5, "tons"),
  30445. name: "Front",
  30446. image: {
  30447. source: "./media/characters/lee/front.svg",
  30448. extra: 1773/1615,
  30449. bottom: 86/1859
  30450. }
  30451. },
  30452. hand: {
  30453. height: math.unit(1.78, "feet"),
  30454. name: "Hand",
  30455. image: {
  30456. source: "./media/characters/lee/hand.svg"
  30457. }
  30458. },
  30459. maw: {
  30460. height: math.unit(1.18, "feet"),
  30461. name: "Maw",
  30462. image: {
  30463. source: "./media/characters/lee/maw.svg"
  30464. }
  30465. },
  30466. },
  30467. [
  30468. {
  30469. name: "Normal",
  30470. height: math.unit(7 + 10/12, "feet"),
  30471. default: true
  30472. },
  30473. ]
  30474. ))
  30475. characterMakers.push(() => makeCharacter(
  30476. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30477. {
  30478. front: {
  30479. height: math.unit(9, "feet"),
  30480. name: "Front",
  30481. image: {
  30482. source: "./media/characters/guti/front.svg",
  30483. extra: 4551/4355,
  30484. bottom: 123/4674
  30485. }
  30486. },
  30487. tongue: {
  30488. height: math.unit(1, "feet"),
  30489. name: "Tongue",
  30490. image: {
  30491. source: "./media/characters/guti/tongue.svg"
  30492. }
  30493. },
  30494. paw: {
  30495. height: math.unit(1.18, "feet"),
  30496. name: "Paw",
  30497. image: {
  30498. source: "./media/characters/guti/paw.svg"
  30499. }
  30500. },
  30501. },
  30502. [
  30503. {
  30504. name: "Normal",
  30505. height: math.unit(9, "feet"),
  30506. default: true
  30507. },
  30508. ]
  30509. ))
  30510. characterMakers.push(() => makeCharacter(
  30511. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30512. {
  30513. side: {
  30514. height: math.unit(5, "meters"),
  30515. name: "Side",
  30516. image: {
  30517. source: "./media/characters/vesper/side.svg",
  30518. extra: 1605/1518,
  30519. bottom: 0/1605
  30520. }
  30521. },
  30522. },
  30523. [
  30524. {
  30525. name: "Small",
  30526. height: math.unit(5, "meters")
  30527. },
  30528. {
  30529. name: "Sage",
  30530. height: math.unit(100, "meters"),
  30531. default: true
  30532. },
  30533. {
  30534. name: "Fun Size",
  30535. height: math.unit(600, "meters")
  30536. },
  30537. {
  30538. name: "Goddess",
  30539. height: math.unit(20000, "km")
  30540. },
  30541. {
  30542. name: "Maximum",
  30543. height: math.unit(5, "galaxies")
  30544. },
  30545. ]
  30546. ))
  30547. characterMakers.push(() => makeCharacter(
  30548. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30549. {
  30550. front: {
  30551. height: math.unit(6 + 3/12, "feet"),
  30552. weight: math.unit(190, "lb"),
  30553. name: "Front",
  30554. image: {
  30555. source: "./media/characters/gawain/front.svg",
  30556. extra: 2222/2139,
  30557. bottom: 90/2312
  30558. }
  30559. },
  30560. back: {
  30561. height: math.unit(6 + 3/12, "feet"),
  30562. weight: math.unit(190, "lb"),
  30563. name: "Back",
  30564. image: {
  30565. source: "./media/characters/gawain/back.svg",
  30566. extra: 2199/2111,
  30567. bottom: 73/2272
  30568. }
  30569. },
  30570. },
  30571. [
  30572. {
  30573. name: "Normal",
  30574. height: math.unit(6 + 3/12, "feet"),
  30575. default: true
  30576. },
  30577. ]
  30578. ))
  30579. characterMakers.push(() => makeCharacter(
  30580. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30581. {
  30582. side: {
  30583. height: math.unit(3.5, "meters"),
  30584. weight: math.unit(16000, "lb"),
  30585. name: "Side",
  30586. image: {
  30587. source: "./media/characters/dascalti/side.svg",
  30588. extra: 392/273,
  30589. bottom: 47/439
  30590. }
  30591. },
  30592. breath: {
  30593. height: math.unit(7.4, "feet"),
  30594. name: "Breath",
  30595. image: {
  30596. source: "./media/characters/dascalti/breath.svg"
  30597. }
  30598. },
  30599. fed: {
  30600. height: math.unit(3.6, "meters"),
  30601. weight: math.unit(16000, "lb"),
  30602. name: "Fed",
  30603. image: {
  30604. source: "./media/characters/dascalti/fed.svg",
  30605. extra: 1419/820,
  30606. bottom: 95/1514
  30607. }
  30608. },
  30609. },
  30610. [
  30611. {
  30612. name: "Normal",
  30613. height: math.unit(3.5, "meters"),
  30614. default: true
  30615. },
  30616. ]
  30617. ))
  30618. characterMakers.push(() => makeCharacter(
  30619. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30620. {
  30621. front: {
  30622. height: math.unit(3 + 5/12, "feet"),
  30623. name: "Front",
  30624. image: {
  30625. source: "./media/characters/mauve/front.svg",
  30626. extra: 1126/1033,
  30627. bottom: 65/1191
  30628. }
  30629. },
  30630. side: {
  30631. height: math.unit(3 + 5/12, "feet"),
  30632. name: "Side",
  30633. image: {
  30634. source: "./media/characters/mauve/side.svg",
  30635. extra: 1089/1001,
  30636. bottom: 29/1118
  30637. }
  30638. },
  30639. back: {
  30640. height: math.unit(3 + 5/12, "feet"),
  30641. name: "Back",
  30642. image: {
  30643. source: "./media/characters/mauve/back.svg",
  30644. extra: 1173/1053,
  30645. bottom: 109/1282
  30646. }
  30647. },
  30648. },
  30649. [
  30650. {
  30651. name: "Normal",
  30652. height: math.unit(3 + 5/12, "feet"),
  30653. default: true
  30654. },
  30655. ]
  30656. ))
  30657. characterMakers.push(() => makeCharacter(
  30658. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30659. {
  30660. front: {
  30661. height: math.unit(6 + 3/12, "feet"),
  30662. weight: math.unit(430, "lb"),
  30663. name: "Front",
  30664. image: {
  30665. source: "./media/characters/carlos/front.svg",
  30666. extra: 1964/1913,
  30667. bottom: 70/2034
  30668. }
  30669. },
  30670. },
  30671. [
  30672. {
  30673. name: "Normal",
  30674. height: math.unit(6 + 3/12, "feet"),
  30675. default: true
  30676. },
  30677. ]
  30678. ))
  30679. characterMakers.push(() => makeCharacter(
  30680. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30681. {
  30682. back: {
  30683. height: math.unit(5 + 10/12, "feet"),
  30684. weight: math.unit(200, "lb"),
  30685. name: "Back",
  30686. image: {
  30687. source: "./media/characters/jax/back.svg",
  30688. extra: 764/739,
  30689. bottom: 25/789
  30690. }
  30691. },
  30692. },
  30693. [
  30694. {
  30695. name: "Normal",
  30696. height: math.unit(5 + 10/12, "feet"),
  30697. default: true
  30698. },
  30699. ]
  30700. ))
  30701. characterMakers.push(() => makeCharacter(
  30702. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30703. {
  30704. front: {
  30705. height: math.unit(8, "feet"),
  30706. weight: math.unit(250, "lb"),
  30707. name: "Front",
  30708. image: {
  30709. source: "./media/characters/eikthynir/front.svg",
  30710. extra: 1332/1166,
  30711. bottom: 82/1414
  30712. }
  30713. },
  30714. back: {
  30715. height: math.unit(8, "feet"),
  30716. weight: math.unit(250, "lb"),
  30717. name: "Back",
  30718. image: {
  30719. source: "./media/characters/eikthynir/back.svg",
  30720. extra: 1342/1190,
  30721. bottom: 19/1361
  30722. }
  30723. },
  30724. dick: {
  30725. height: math.unit(2.35, "feet"),
  30726. name: "Dick",
  30727. image: {
  30728. source: "./media/characters/eikthynir/dick.svg"
  30729. }
  30730. },
  30731. },
  30732. [
  30733. {
  30734. name: "Normal",
  30735. height: math.unit(8, "feet"),
  30736. default: true
  30737. },
  30738. ]
  30739. ))
  30740. characterMakers.push(() => makeCharacter(
  30741. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30742. {
  30743. front: {
  30744. height: math.unit(99, "meters"),
  30745. weight: math.unit(13000, "tons"),
  30746. name: "Front",
  30747. image: {
  30748. source: "./media/characters/zlmos/front.svg",
  30749. extra: 2202/1992,
  30750. bottom: 315/2517
  30751. }
  30752. },
  30753. },
  30754. [
  30755. {
  30756. name: "Macro",
  30757. height: math.unit(99, "meters"),
  30758. default: true
  30759. },
  30760. ]
  30761. ))
  30762. characterMakers.push(() => makeCharacter(
  30763. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30764. {
  30765. front: {
  30766. height: math.unit(6 + 5/12, "feet"),
  30767. name: "Front",
  30768. image: {
  30769. source: "./media/characters/purri/front.svg",
  30770. extra: 1698/1610,
  30771. bottom: 32/1730
  30772. }
  30773. },
  30774. frontAlt: {
  30775. height: math.unit(6 + 5/12, "feet"),
  30776. name: "Front (Alt)",
  30777. image: {
  30778. source: "./media/characters/purri/front-alt.svg",
  30779. extra: 450/420,
  30780. bottom: 26/476
  30781. }
  30782. },
  30783. boots: {
  30784. height: math.unit(5.5, "feet"),
  30785. name: "Boots",
  30786. image: {
  30787. source: "./media/characters/purri/boots.svg",
  30788. extra: 905/853,
  30789. bottom: 18/923
  30790. }
  30791. },
  30792. lying: {
  30793. height: math.unit(2, "feet"),
  30794. name: "Lying",
  30795. image: {
  30796. source: "./media/characters/purri/lying.svg",
  30797. extra: 940/843,
  30798. bottom: 146/1086
  30799. }
  30800. },
  30801. devious: {
  30802. height: math.unit(1.77, "feet"),
  30803. name: "Devious",
  30804. image: {
  30805. source: "./media/characters/purri/devious.svg",
  30806. extra: 1440/1155,
  30807. bottom: 147/1587
  30808. }
  30809. },
  30810. bean: {
  30811. height: math.unit(1.94, "feet"),
  30812. name: "Bean",
  30813. image: {
  30814. source: "./media/characters/purri/bean.svg"
  30815. }
  30816. },
  30817. },
  30818. [
  30819. {
  30820. name: "Micro",
  30821. height: math.unit(1, "mm")
  30822. },
  30823. {
  30824. name: "Normal",
  30825. height: math.unit(6 + 5/12, "feet"),
  30826. default: true
  30827. },
  30828. {
  30829. name: "Macro :3c",
  30830. height: math.unit(2, "miles")
  30831. },
  30832. ]
  30833. ))
  30834. characterMakers.push(() => makeCharacter(
  30835. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30836. {
  30837. front: {
  30838. height: math.unit(6 + 2/12, "feet"),
  30839. weight: math.unit(250, "lb"),
  30840. name: "Front",
  30841. image: {
  30842. source: "./media/characters/moonlight/front.svg",
  30843. extra: 1044/908,
  30844. bottom: 56/1100
  30845. }
  30846. },
  30847. feral: {
  30848. height: math.unit(3 + 1/12, "feet"),
  30849. weight: math.unit(50, "kg"),
  30850. name: "Feral",
  30851. image: {
  30852. source: "./media/characters/moonlight/feral.svg",
  30853. extra: 3705/2791,
  30854. bottom: 145/3850
  30855. }
  30856. },
  30857. paw: {
  30858. height: math.unit(1, "feet"),
  30859. name: "Paw",
  30860. image: {
  30861. source: "./media/characters/moonlight/paw.svg"
  30862. }
  30863. },
  30864. paws: {
  30865. height: math.unit(0.98, "feet"),
  30866. name: "Paws",
  30867. image: {
  30868. source: "./media/characters/moonlight/paws.svg",
  30869. extra: 939/939,
  30870. bottom: 50/989
  30871. }
  30872. },
  30873. mouth: {
  30874. height: math.unit(0.48, "feet"),
  30875. name: "Mouth",
  30876. image: {
  30877. source: "./media/characters/moonlight/mouth.svg"
  30878. }
  30879. },
  30880. dick: {
  30881. height: math.unit(1.46, "feet"),
  30882. name: "Dick",
  30883. image: {
  30884. source: "./media/characters/moonlight/dick.svg"
  30885. }
  30886. },
  30887. },
  30888. [
  30889. {
  30890. name: "Normal",
  30891. height: math.unit(6 + 2/12, "feet"),
  30892. default: true
  30893. },
  30894. {
  30895. name: "Macro",
  30896. height: math.unit(300, "feet")
  30897. },
  30898. {
  30899. name: "Macro+",
  30900. height: math.unit(1, "mile")
  30901. },
  30902. {
  30903. name: "Mt. Moon",
  30904. height: math.unit(5, "miles")
  30905. },
  30906. {
  30907. name: "Megamacro",
  30908. height: math.unit(15, "miles")
  30909. },
  30910. ]
  30911. ))
  30912. characterMakers.push(() => makeCharacter(
  30913. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30914. {
  30915. back: {
  30916. height: math.unit(6, "feet"),
  30917. weight: math.unit(150, "lb"),
  30918. name: "Back",
  30919. image: {
  30920. source: "./media/characters/sylen/back.svg",
  30921. extra: 1335/1273,
  30922. bottom: 107/1442
  30923. }
  30924. },
  30925. },
  30926. [
  30927. {
  30928. name: "Normal",
  30929. height: math.unit(5 + 5/12, "feet")
  30930. },
  30931. {
  30932. name: "Megamacro",
  30933. height: math.unit(3, "miles"),
  30934. default: true
  30935. },
  30936. ]
  30937. ))
  30938. characterMakers.push(() => makeCharacter(
  30939. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30940. {
  30941. front: {
  30942. height: math.unit(6, "feet"),
  30943. weight: math.unit(190, "lb"),
  30944. name: "Front",
  30945. image: {
  30946. source: "./media/characters/huttser/front.svg",
  30947. extra: 1152/1058,
  30948. bottom: 23/1175
  30949. }
  30950. },
  30951. side: {
  30952. height: math.unit(6, "feet"),
  30953. weight: math.unit(190, "lb"),
  30954. name: "Side",
  30955. image: {
  30956. source: "./media/characters/huttser/side.svg",
  30957. extra: 1174/1065,
  30958. bottom: 18/1192
  30959. }
  30960. },
  30961. back: {
  30962. height: math.unit(6, "feet"),
  30963. weight: math.unit(190, "lb"),
  30964. name: "Back",
  30965. image: {
  30966. source: "./media/characters/huttser/back.svg",
  30967. extra: 1158/1056,
  30968. bottom: 12/1170
  30969. }
  30970. },
  30971. },
  30972. [
  30973. ]
  30974. ))
  30975. characterMakers.push(() => makeCharacter(
  30976. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30977. {
  30978. side: {
  30979. height: math.unit(12 + 9/12, "feet"),
  30980. weight: math.unit(15000, "lb"),
  30981. name: "Side",
  30982. image: {
  30983. source: "./media/characters/faan/side.svg",
  30984. extra: 2747/2697,
  30985. bottom: 0/2747
  30986. }
  30987. },
  30988. front: {
  30989. height: math.unit(12 + 9/12, "feet"),
  30990. weight: math.unit(15000, "lb"),
  30991. name: "Front",
  30992. image: {
  30993. source: "./media/characters/faan/front.svg",
  30994. extra: 607/571,
  30995. bottom: 24/631
  30996. }
  30997. },
  30998. head: {
  30999. height: math.unit(2.85, "feet"),
  31000. name: "Head",
  31001. image: {
  31002. source: "./media/characters/faan/head.svg"
  31003. }
  31004. },
  31005. headAlt: {
  31006. height: math.unit(3.13, "feet"),
  31007. name: "Head-alt",
  31008. image: {
  31009. source: "./media/characters/faan/head-alt.svg"
  31010. }
  31011. },
  31012. },
  31013. [
  31014. {
  31015. name: "Normal",
  31016. height: math.unit(12 + 9/12, "feet"),
  31017. default: true
  31018. },
  31019. ]
  31020. ))
  31021. characterMakers.push(() => makeCharacter(
  31022. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31023. {
  31024. front: {
  31025. height: math.unit(6, "feet"),
  31026. weight: math.unit(300, "lb"),
  31027. name: "Front",
  31028. image: {
  31029. source: "./media/characters/tanio/front.svg",
  31030. extra: 711/673,
  31031. bottom: 25/736
  31032. }
  31033. },
  31034. },
  31035. [
  31036. {
  31037. name: "Normal",
  31038. height: math.unit(6, "feet"),
  31039. default: true
  31040. },
  31041. ]
  31042. ))
  31043. characterMakers.push(() => makeCharacter(
  31044. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31045. {
  31046. front: {
  31047. height: math.unit(3, "inches"),
  31048. name: "Front",
  31049. image: {
  31050. source: "./media/characters/noboru/front.svg",
  31051. extra: 1039/932,
  31052. bottom: 18/1057
  31053. }
  31054. },
  31055. },
  31056. [
  31057. {
  31058. name: "Micro",
  31059. height: math.unit(3, "inches"),
  31060. default: true
  31061. },
  31062. ]
  31063. ))
  31064. characterMakers.push(() => makeCharacter(
  31065. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31066. {
  31067. front: {
  31068. height: math.unit(1.85, "meters"),
  31069. weight: math.unit(80, "kg"),
  31070. name: "Front",
  31071. image: {
  31072. source: "./media/characters/daniel-barrett/front.svg",
  31073. extra: 355/337,
  31074. bottom: 9/364
  31075. }
  31076. },
  31077. },
  31078. [
  31079. {
  31080. name: "Pico",
  31081. height: math.unit(0.0433, "mm")
  31082. },
  31083. {
  31084. name: "Nano",
  31085. height: math.unit(1.5, "mm")
  31086. },
  31087. {
  31088. name: "Micro",
  31089. height: math.unit(5.3, "cm"),
  31090. default: true
  31091. },
  31092. {
  31093. name: "Normal",
  31094. height: math.unit(1.85, "meters")
  31095. },
  31096. {
  31097. name: "Macro",
  31098. height: math.unit(64.7, "meters")
  31099. },
  31100. {
  31101. name: "Megamacro",
  31102. height: math.unit(2.26, "km")
  31103. },
  31104. {
  31105. name: "Gigamacro",
  31106. height: math.unit(79, "km")
  31107. },
  31108. {
  31109. name: "Teramacro",
  31110. height: math.unit(2765, "km")
  31111. },
  31112. {
  31113. name: "Petamacro",
  31114. height: math.unit(96678, "km")
  31115. },
  31116. ]
  31117. ))
  31118. characterMakers.push(() => makeCharacter(
  31119. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31120. {
  31121. front: {
  31122. height: math.unit(30, "meters"),
  31123. weight: math.unit(400, "tons"),
  31124. name: "Front",
  31125. image: {
  31126. source: "./media/characters/zeel/front.svg",
  31127. extra: 2599/2599,
  31128. bottom: 226/2825
  31129. }
  31130. },
  31131. },
  31132. [
  31133. {
  31134. name: "Macro",
  31135. height: math.unit(30, "meters"),
  31136. default: true
  31137. },
  31138. ]
  31139. ))
  31140. characterMakers.push(() => makeCharacter(
  31141. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31142. {
  31143. front: {
  31144. height: math.unit(6 + 7/12, "feet"),
  31145. weight: math.unit(210, "lb"),
  31146. name: "Front",
  31147. image: {
  31148. source: "./media/characters/tarn/front.svg",
  31149. extra: 3517/3220,
  31150. bottom: 91/3608
  31151. }
  31152. },
  31153. back: {
  31154. height: math.unit(6 + 7/12, "feet"),
  31155. weight: math.unit(210, "lb"),
  31156. name: "Back",
  31157. image: {
  31158. source: "./media/characters/tarn/back.svg",
  31159. extra: 3566/3241,
  31160. bottom: 34/3600
  31161. }
  31162. },
  31163. dick: {
  31164. height: math.unit(1.65, "feet"),
  31165. name: "Dick",
  31166. image: {
  31167. source: "./media/characters/tarn/dick.svg"
  31168. }
  31169. },
  31170. paw: {
  31171. height: math.unit(1.80, "feet"),
  31172. name: "Paw",
  31173. image: {
  31174. source: "./media/characters/tarn/paw.svg"
  31175. }
  31176. },
  31177. tongue: {
  31178. height: math.unit(0.97, "feet"),
  31179. name: "Tongue",
  31180. image: {
  31181. source: "./media/characters/tarn/tongue.svg"
  31182. }
  31183. },
  31184. },
  31185. [
  31186. {
  31187. name: "Micro",
  31188. height: math.unit(4, "inches")
  31189. },
  31190. {
  31191. name: "Normal",
  31192. height: math.unit(6 + 7/12, "feet"),
  31193. default: true
  31194. },
  31195. {
  31196. name: "Macro",
  31197. height: math.unit(300, "feet")
  31198. },
  31199. ]
  31200. ))
  31201. characterMakers.push(() => makeCharacter(
  31202. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31203. {
  31204. front: {
  31205. height: math.unit(5 + 7/12, "feet"),
  31206. weight: math.unit(80, "kg"),
  31207. name: "Front",
  31208. image: {
  31209. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31210. extra: 3023/2865,
  31211. bottom: 33/3056
  31212. }
  31213. },
  31214. back: {
  31215. height: math.unit(5 + 7/12, "feet"),
  31216. weight: math.unit(80, "kg"),
  31217. name: "Back",
  31218. image: {
  31219. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31220. extra: 3020/2886,
  31221. bottom: 30/3050
  31222. }
  31223. },
  31224. dick: {
  31225. height: math.unit(0.98, "feet"),
  31226. name: "Dick",
  31227. image: {
  31228. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31229. }
  31230. },
  31231. anatomy: {
  31232. height: math.unit(2.86, "feet"),
  31233. name: "Anatomy",
  31234. image: {
  31235. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31236. }
  31237. },
  31238. },
  31239. [
  31240. {
  31241. name: "Really Small",
  31242. height: math.unit(2, "inches")
  31243. },
  31244. {
  31245. name: "Micro",
  31246. height: math.unit(5.583, "inches")
  31247. },
  31248. {
  31249. name: "Normal",
  31250. height: math.unit(5 + 7/12, "feet"),
  31251. default: true
  31252. },
  31253. {
  31254. name: "Macro",
  31255. height: math.unit(67, "feet")
  31256. },
  31257. {
  31258. name: "Megamacro",
  31259. height: math.unit(134, "feet")
  31260. },
  31261. ]
  31262. ))
  31263. characterMakers.push(() => makeCharacter(
  31264. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31265. {
  31266. front: {
  31267. height: math.unit(9, "feet"),
  31268. weight: math.unit(120, "lb"),
  31269. name: "Front",
  31270. image: {
  31271. source: "./media/characters/sally/front.svg",
  31272. extra: 1506/1349,
  31273. bottom: 66/1572
  31274. }
  31275. },
  31276. },
  31277. [
  31278. {
  31279. name: "Normal",
  31280. height: math.unit(9, "feet"),
  31281. default: true
  31282. },
  31283. ]
  31284. ))
  31285. characterMakers.push(() => makeCharacter(
  31286. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31287. {
  31288. front: {
  31289. height: math.unit(8, "feet"),
  31290. weight: math.unit(900, "lb"),
  31291. name: "Front",
  31292. image: {
  31293. source: "./media/characters/owen/front.svg",
  31294. extra: 1761/1657,
  31295. bottom: 74/1835
  31296. }
  31297. },
  31298. side: {
  31299. height: math.unit(8, "feet"),
  31300. weight: math.unit(900, "lb"),
  31301. name: "Side",
  31302. image: {
  31303. source: "./media/characters/owen/side.svg",
  31304. extra: 1797/1734,
  31305. bottom: 30/1827
  31306. }
  31307. },
  31308. back: {
  31309. height: math.unit(8, "feet"),
  31310. weight: math.unit(900, "lb"),
  31311. name: "Back",
  31312. image: {
  31313. source: "./media/characters/owen/back.svg",
  31314. extra: 1796/1706,
  31315. bottom: 59/1855
  31316. }
  31317. },
  31318. maw: {
  31319. height: math.unit(1.76, "feet"),
  31320. name: "Maw",
  31321. image: {
  31322. source: "./media/characters/owen/maw.svg"
  31323. }
  31324. },
  31325. },
  31326. [
  31327. {
  31328. name: "Normal",
  31329. height: math.unit(8, "feet"),
  31330. default: true
  31331. },
  31332. ]
  31333. ))
  31334. characterMakers.push(() => makeCharacter(
  31335. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31336. {
  31337. front: {
  31338. height: math.unit(4, "feet"),
  31339. weight: math.unit(400, "lb"),
  31340. name: "Front",
  31341. image: {
  31342. source: "./media/characters/ryth/front.svg",
  31343. extra: 876/691,
  31344. bottom: 25/901
  31345. }
  31346. },
  31347. },
  31348. [
  31349. {
  31350. name: "Normal",
  31351. height: math.unit(4, "feet"),
  31352. default: true
  31353. },
  31354. ]
  31355. ))
  31356. characterMakers.push(() => makeCharacter(
  31357. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31358. {
  31359. front: {
  31360. height: math.unit(7, "feet"),
  31361. weight: math.unit(180, "lb"),
  31362. name: "Front",
  31363. image: {
  31364. source: "./media/characters/necrolance/front.svg",
  31365. extra: 1062/947,
  31366. bottom: 41/1103
  31367. }
  31368. },
  31369. back: {
  31370. height: math.unit(7, "feet"),
  31371. weight: math.unit(180, "lb"),
  31372. name: "Back",
  31373. image: {
  31374. source: "./media/characters/necrolance/back.svg",
  31375. extra: 1045/984,
  31376. bottom: 14/1059
  31377. }
  31378. },
  31379. wing: {
  31380. height: math.unit(2.67, "feet"),
  31381. name: "Wing",
  31382. image: {
  31383. source: "./media/characters/necrolance/wing.svg"
  31384. }
  31385. },
  31386. },
  31387. [
  31388. {
  31389. name: "Normal",
  31390. height: math.unit(7, "feet"),
  31391. default: true
  31392. },
  31393. ]
  31394. ))
  31395. characterMakers.push(() => makeCharacter(
  31396. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31397. {
  31398. front: {
  31399. height: math.unit(76, "meters"),
  31400. weight: math.unit(30000, "tons"),
  31401. name: "Front",
  31402. image: {
  31403. source: "./media/characters/tyler/front.svg",
  31404. extra: 1640/1640,
  31405. bottom: 114/1754
  31406. }
  31407. },
  31408. },
  31409. [
  31410. {
  31411. name: "Macro",
  31412. height: math.unit(76, "meters"),
  31413. default: true
  31414. },
  31415. ]
  31416. ))
  31417. characterMakers.push(() => makeCharacter(
  31418. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31419. {
  31420. front: {
  31421. height: math.unit(4 + 11/12, "feet"),
  31422. weight: math.unit(132, "lb"),
  31423. name: "Front",
  31424. image: {
  31425. source: "./media/characters/icey/front.svg",
  31426. extra: 2750/2550,
  31427. bottom: 33/2783
  31428. }
  31429. },
  31430. back: {
  31431. height: math.unit(4 + 11/12, "feet"),
  31432. weight: math.unit(132, "lb"),
  31433. name: "Back",
  31434. image: {
  31435. source: "./media/characters/icey/back.svg",
  31436. extra: 2624/2481,
  31437. bottom: 35/2659
  31438. }
  31439. },
  31440. },
  31441. [
  31442. {
  31443. name: "Normal",
  31444. height: math.unit(4 + 11/12, "feet"),
  31445. default: true
  31446. },
  31447. ]
  31448. ))
  31449. characterMakers.push(() => makeCharacter(
  31450. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31451. {
  31452. front: {
  31453. height: math.unit(100, "feet"),
  31454. weight: math.unit(0, "lb"),
  31455. name: "Front",
  31456. image: {
  31457. source: "./media/characters/smile/front.svg",
  31458. extra: 2983/2912,
  31459. bottom: 162/3145
  31460. }
  31461. },
  31462. back: {
  31463. height: math.unit(100, "feet"),
  31464. weight: math.unit(0, "lb"),
  31465. name: "Back",
  31466. image: {
  31467. source: "./media/characters/smile/back.svg",
  31468. extra: 3143/3031,
  31469. bottom: 91/3234
  31470. }
  31471. },
  31472. head: {
  31473. height: math.unit(26.3, "feet"),
  31474. weight: math.unit(0, "lb"),
  31475. name: "Head",
  31476. image: {
  31477. source: "./media/characters/smile/head.svg"
  31478. }
  31479. },
  31480. collar: {
  31481. height: math.unit(5.3, "feet"),
  31482. weight: math.unit(0, "lb"),
  31483. name: "Collar",
  31484. image: {
  31485. source: "./media/characters/smile/collar.svg"
  31486. }
  31487. },
  31488. },
  31489. [
  31490. {
  31491. name: "Macro",
  31492. height: math.unit(100, "feet"),
  31493. default: true
  31494. },
  31495. ]
  31496. ))
  31497. characterMakers.push(() => makeCharacter(
  31498. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31499. {
  31500. dragon: {
  31501. height: math.unit(26, "feet"),
  31502. weight: math.unit(36, "tons"),
  31503. name: "Dragon",
  31504. image: {
  31505. source: "./media/characters/arimphae/dragon.svg",
  31506. extra: 1574/983,
  31507. bottom: 357/1931
  31508. }
  31509. },
  31510. drake: {
  31511. height: math.unit(9, "feet"),
  31512. weight: math.unit(1.5, "tons"),
  31513. name: "Drake",
  31514. image: {
  31515. source: "./media/characters/arimphae/drake.svg",
  31516. extra: 1120/925,
  31517. bottom: 435/1555
  31518. }
  31519. },
  31520. },
  31521. [
  31522. {
  31523. name: "Small",
  31524. height: math.unit(26*5/9, "feet")
  31525. },
  31526. {
  31527. name: "Normal",
  31528. height: math.unit(26, "feet"),
  31529. default: true
  31530. },
  31531. ]
  31532. ))
  31533. characterMakers.push(() => makeCharacter(
  31534. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31535. {
  31536. front: {
  31537. height: math.unit(8 + 9/12, "feet"),
  31538. name: "Front",
  31539. image: {
  31540. source: "./media/characters/xander/front.svg",
  31541. extra: 848/673,
  31542. bottom: 62/910
  31543. }
  31544. },
  31545. },
  31546. [
  31547. {
  31548. name: "Normal",
  31549. height: math.unit(8 + 9/12, "feet"),
  31550. default: true
  31551. },
  31552. {
  31553. name: "Gaze Grabber",
  31554. height: math.unit(13 + 8/12, "feet")
  31555. },
  31556. {
  31557. name: "Jaw Dropper",
  31558. height: math.unit(27, "feet")
  31559. },
  31560. {
  31561. name: "Show Stopper",
  31562. height: math.unit(136, "feet")
  31563. },
  31564. {
  31565. name: "Superstar",
  31566. height: math.unit(1.9e6, "miles")
  31567. },
  31568. ]
  31569. ))
  31570. characterMakers.push(() => makeCharacter(
  31571. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31572. {
  31573. side: {
  31574. height: math.unit(2100, "feet"),
  31575. name: "Side",
  31576. image: {
  31577. source: "./media/characters/osiris/side.svg",
  31578. extra: 1105/939,
  31579. bottom: 167/1272
  31580. }
  31581. },
  31582. },
  31583. [
  31584. {
  31585. name: "Macro",
  31586. height: math.unit(2100, "feet"),
  31587. default: true
  31588. },
  31589. ]
  31590. ))
  31591. characterMakers.push(() => makeCharacter(
  31592. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31593. {
  31594. front: {
  31595. height: math.unit(6 + 8/12, "feet"),
  31596. weight: math.unit(225, "lb"),
  31597. name: "Front",
  31598. image: {
  31599. source: "./media/characters/rhys-londe/front.svg",
  31600. extra: 2258/2141,
  31601. bottom: 188/2446
  31602. }
  31603. },
  31604. back: {
  31605. height: math.unit(6 + 8/12, "feet"),
  31606. weight: math.unit(225, "lb"),
  31607. name: "Back",
  31608. image: {
  31609. source: "./media/characters/rhys-londe/back.svg",
  31610. extra: 2237/2137,
  31611. bottom: 63/2300
  31612. }
  31613. },
  31614. frontNsfw: {
  31615. height: math.unit(6 + 8/12, "feet"),
  31616. weight: math.unit(225, "lb"),
  31617. name: "Front (NSFW)",
  31618. image: {
  31619. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31620. extra: 2258/2141,
  31621. bottom: 188/2446
  31622. }
  31623. },
  31624. backNsfw: {
  31625. height: math.unit(6 + 8/12, "feet"),
  31626. weight: math.unit(225, "lb"),
  31627. name: "Back (NSFW)",
  31628. image: {
  31629. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31630. extra: 2237/2137,
  31631. bottom: 63/2300
  31632. }
  31633. },
  31634. dick: {
  31635. height: math.unit(30, "inches"),
  31636. name: "Dick",
  31637. image: {
  31638. source: "./media/characters/rhys-londe/dick.svg"
  31639. }
  31640. },
  31641. maw: {
  31642. height: math.unit(1.6, "feet"),
  31643. name: "Maw",
  31644. image: {
  31645. source: "./media/characters/rhys-londe/maw.svg"
  31646. }
  31647. },
  31648. },
  31649. [
  31650. {
  31651. name: "Normal",
  31652. height: math.unit(6 + 8/12, "feet"),
  31653. default: true
  31654. },
  31655. ]
  31656. ))
  31657. characterMakers.push(() => makeCharacter(
  31658. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31659. {
  31660. front: {
  31661. height: math.unit(3 + 10/12, "feet"),
  31662. weight: math.unit(90, "lb"),
  31663. name: "Front",
  31664. image: {
  31665. source: "./media/characters/taivas-ensim/front.svg",
  31666. extra: 1327/1216,
  31667. bottom: 96/1423
  31668. }
  31669. },
  31670. back: {
  31671. height: math.unit(3 + 10/12, "feet"),
  31672. weight: math.unit(90, "lb"),
  31673. name: "Back",
  31674. image: {
  31675. source: "./media/characters/taivas-ensim/back.svg",
  31676. extra: 1355/1247,
  31677. bottom: 11/1366
  31678. }
  31679. },
  31680. frontNsfw: {
  31681. height: math.unit(3 + 10/12, "feet"),
  31682. weight: math.unit(90, "lb"),
  31683. name: "Front (NSFW)",
  31684. image: {
  31685. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31686. extra: 1327/1216,
  31687. bottom: 96/1423
  31688. }
  31689. },
  31690. backNsfw: {
  31691. height: math.unit(3 + 10/12, "feet"),
  31692. weight: math.unit(90, "lb"),
  31693. name: "Back (NSFW)",
  31694. image: {
  31695. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31696. extra: 1355/1247,
  31697. bottom: 11/1366
  31698. }
  31699. },
  31700. },
  31701. [
  31702. {
  31703. name: "Normal",
  31704. height: math.unit(3 + 10/12, "feet"),
  31705. default: true
  31706. },
  31707. ]
  31708. ))
  31709. characterMakers.push(() => makeCharacter(
  31710. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31711. {
  31712. front: {
  31713. height: math.unit(9 + 6/12, "feet"),
  31714. weight: math.unit(940, "lb"),
  31715. name: "Front",
  31716. image: {
  31717. source: "./media/characters/byliss/front.svg",
  31718. extra: 1327/1290,
  31719. bottom: 82/1409
  31720. }
  31721. },
  31722. back: {
  31723. height: math.unit(9 + 6/12, "feet"),
  31724. weight: math.unit(940, "lb"),
  31725. name: "Back",
  31726. image: {
  31727. source: "./media/characters/byliss/back.svg",
  31728. extra: 1376/1349,
  31729. bottom: 9/1385
  31730. }
  31731. },
  31732. frontNsfw: {
  31733. height: math.unit(9 + 6/12, "feet"),
  31734. weight: math.unit(940, "lb"),
  31735. name: "Front (NSFW)",
  31736. image: {
  31737. source: "./media/characters/byliss/front-nsfw.svg",
  31738. extra: 1327/1290,
  31739. bottom: 82/1409
  31740. }
  31741. },
  31742. backNsfw: {
  31743. height: math.unit(9 + 6/12, "feet"),
  31744. weight: math.unit(940, "lb"),
  31745. name: "Back (NSFW)",
  31746. image: {
  31747. source: "./media/characters/byliss/back-nsfw.svg",
  31748. extra: 1376/1349,
  31749. bottom: 9/1385
  31750. }
  31751. },
  31752. },
  31753. [
  31754. {
  31755. name: "Normal",
  31756. height: math.unit(9 + 6/12, "feet"),
  31757. default: true
  31758. },
  31759. ]
  31760. ))
  31761. characterMakers.push(() => makeCharacter(
  31762. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31763. {
  31764. front: {
  31765. height: math.unit(5 + 2/12, "feet"),
  31766. weight: math.unit(200, "lb"),
  31767. name: "Front",
  31768. image: {
  31769. source: "./media/characters/noraly/front.svg",
  31770. extra: 4985/4773,
  31771. bottom: 150/5135
  31772. }
  31773. },
  31774. full: {
  31775. height: math.unit(5 + 2/12, "feet"),
  31776. weight: math.unit(164, "lb"),
  31777. name: "Full",
  31778. image: {
  31779. source: "./media/characters/noraly/full.svg",
  31780. extra: 1114/1059,
  31781. bottom: 35/1149
  31782. }
  31783. },
  31784. fuller: {
  31785. height: math.unit(5 + 2/12, "feet"),
  31786. weight: math.unit(230, "lb"),
  31787. name: "Fuller",
  31788. image: {
  31789. source: "./media/characters/noraly/fuller.svg",
  31790. extra: 1114/1059,
  31791. bottom: 35/1149
  31792. }
  31793. },
  31794. fullest: {
  31795. height: math.unit(5 + 2/12, "feet"),
  31796. weight: math.unit(300, "lb"),
  31797. name: "Fullest",
  31798. image: {
  31799. source: "./media/characters/noraly/fullest.svg",
  31800. extra: 1114/1059,
  31801. bottom: 35/1149
  31802. }
  31803. },
  31804. },
  31805. [
  31806. {
  31807. name: "Normal",
  31808. height: math.unit(5 + 2/12, "feet"),
  31809. default: true
  31810. },
  31811. ]
  31812. ))
  31813. characterMakers.push(() => makeCharacter(
  31814. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31815. {
  31816. front: {
  31817. height: math.unit(5 + 2/12, "feet"),
  31818. weight: math.unit(210, "lb"),
  31819. name: "Front",
  31820. image: {
  31821. source: "./media/characters/pera/front.svg",
  31822. extra: 1560/1531,
  31823. bottom: 165/1725
  31824. }
  31825. },
  31826. back: {
  31827. height: math.unit(5 + 2/12, "feet"),
  31828. weight: math.unit(210, "lb"),
  31829. name: "Back",
  31830. image: {
  31831. source: "./media/characters/pera/back.svg",
  31832. extra: 1523/1493,
  31833. bottom: 152/1675
  31834. }
  31835. },
  31836. dick: {
  31837. height: math.unit(2.4, "feet"),
  31838. name: "Dick",
  31839. image: {
  31840. source: "./media/characters/pera/dick.svg"
  31841. }
  31842. },
  31843. },
  31844. [
  31845. {
  31846. name: "Normal",
  31847. height: math.unit(5 + 2/12, "feet"),
  31848. default: true
  31849. },
  31850. ]
  31851. ))
  31852. characterMakers.push(() => makeCharacter(
  31853. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31854. {
  31855. front: {
  31856. height: math.unit(12, "feet"),
  31857. weight: math.unit(3200, "lb"),
  31858. name: "Front",
  31859. image: {
  31860. source: "./media/characters/julian/front.svg",
  31861. extra: 2962/2701,
  31862. bottom: 184/3146
  31863. }
  31864. },
  31865. maw: {
  31866. height: math.unit(5.35, "feet"),
  31867. name: "Maw",
  31868. image: {
  31869. source: "./media/characters/julian/maw.svg"
  31870. }
  31871. },
  31872. paw: {
  31873. height: math.unit(3.07, "feet"),
  31874. name: "Paw",
  31875. image: {
  31876. source: "./media/characters/julian/paw.svg"
  31877. }
  31878. },
  31879. },
  31880. [
  31881. {
  31882. name: "Default",
  31883. height: math.unit(12, "feet"),
  31884. default: true
  31885. },
  31886. {
  31887. name: "Big",
  31888. height: math.unit(50, "feet")
  31889. },
  31890. {
  31891. name: "Really Big",
  31892. height: math.unit(1, "mile")
  31893. },
  31894. {
  31895. name: "Extremely Big",
  31896. height: math.unit(100, "miles")
  31897. },
  31898. {
  31899. name: "Planet Hugger",
  31900. height: math.unit(200, "megameters")
  31901. },
  31902. {
  31903. name: "Unreasonably Big",
  31904. height: math.unit(1e300, "meters")
  31905. },
  31906. ]
  31907. ))
  31908. characterMakers.push(() => makeCharacter(
  31909. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31910. {
  31911. solgooleo: {
  31912. height: math.unit(4, "meters"),
  31913. weight: math.unit(6000*1.5, "kg"),
  31914. volume: math.unit(6000, "liters"),
  31915. name: "Solgooleo",
  31916. image: {
  31917. source: "./media/characters/pi/solgooleo.svg",
  31918. extra: 388/331,
  31919. bottom: 29/417
  31920. }
  31921. },
  31922. },
  31923. [
  31924. {
  31925. name: "Normal",
  31926. height: math.unit(4, "meters"),
  31927. default: true
  31928. },
  31929. ]
  31930. ))
  31931. characterMakers.push(() => makeCharacter(
  31932. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31933. {
  31934. front: {
  31935. height: math.unit(8 + 2/12, "feet"),
  31936. weight: math.unit(4, "tons"),
  31937. name: "Front",
  31938. image: {
  31939. source: "./media/characters/shaun/front.svg",
  31940. extra: 1550/1505,
  31941. bottom: 353/1903
  31942. }
  31943. },
  31944. },
  31945. [
  31946. {
  31947. name: "Lorg",
  31948. height: math.unit(8 + 2/12, "feet"),
  31949. default: true
  31950. },
  31951. ]
  31952. ))
  31953. characterMakers.push(() => makeCharacter(
  31954. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31955. {
  31956. front: {
  31957. height: math.unit(7, "feet"),
  31958. name: "Front",
  31959. image: {
  31960. source: "./media/characters/sini/front.svg",
  31961. extra: 726/678,
  31962. bottom: 35/761
  31963. }
  31964. },
  31965. back: {
  31966. height: math.unit(7, "feet"),
  31967. name: "Back",
  31968. image: {
  31969. source: "./media/characters/sini/back.svg",
  31970. extra: 743/701,
  31971. bottom: 12/755
  31972. }
  31973. },
  31974. mawAnthro: {
  31975. height: math.unit(2.14, "feet"),
  31976. name: "Maw (Anthro)",
  31977. image: {
  31978. source: "./media/characters/sini/maw-anthro.svg"
  31979. }
  31980. },
  31981. dick: {
  31982. height: math.unit(1.45, "feet"),
  31983. name: "Dick (Anthro)",
  31984. image: {
  31985. source: "./media/characters/sini/dick-anthro.svg"
  31986. }
  31987. },
  31988. feral: {
  31989. height: math.unit(13, "feet"),
  31990. name: "Feral",
  31991. image: {
  31992. source: "./media/characters/sini/feral.svg",
  31993. extra: 814/605,
  31994. bottom: 11/825
  31995. }
  31996. },
  31997. mawFeral: {
  31998. height: math.unit(4.6, "feet"),
  31999. name: "Maw-feral",
  32000. image: {
  32001. source: "./media/characters/sini/maw-feral.svg"
  32002. }
  32003. },
  32004. footFeral: {
  32005. height: math.unit(4.2, "feet"),
  32006. name: "Foot-feral",
  32007. image: {
  32008. source: "./media/characters/sini/foot-feral.svg"
  32009. }
  32010. },
  32011. },
  32012. [
  32013. {
  32014. name: "Normal",
  32015. height: math.unit(7, "feet"),
  32016. default: true
  32017. },
  32018. ]
  32019. ))
  32020. characterMakers.push(() => makeCharacter(
  32021. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32022. {
  32023. side: {
  32024. height: math.unit(13, "meters"),
  32025. weight: math.unit(9072, "kg"),
  32026. name: "Side",
  32027. image: {
  32028. source: "./media/characters/raylldo/side.svg",
  32029. extra: 403/344,
  32030. bottom: 42/445
  32031. }
  32032. },
  32033. leaping: {
  32034. height: math.unit(12.3, "meters"),
  32035. weight: math.unit(9072, "kg"),
  32036. name: "Leaping",
  32037. image: {
  32038. source: "./media/characters/raylldo/leaping.svg",
  32039. extra: 470/249,
  32040. bottom: 13/483
  32041. }
  32042. },
  32043. flying: {
  32044. height: math.unit(18, "meters"),
  32045. weight: math.unit(9072, "kg"),
  32046. name: "Flying",
  32047. image: {
  32048. source: "./media/characters/raylldo/flying.svg"
  32049. }
  32050. },
  32051. head: {
  32052. height: math.unit(5.85, "meters"),
  32053. name: "Head",
  32054. image: {
  32055. source: "./media/characters/raylldo/head.svg"
  32056. }
  32057. },
  32058. maw: {
  32059. height: math.unit(5.32, "meters"),
  32060. name: "Maw",
  32061. image: {
  32062. source: "./media/characters/raylldo/maw.svg"
  32063. }
  32064. },
  32065. eye: {
  32066. height: math.unit(0.54, "meters"),
  32067. name: "Eye",
  32068. image: {
  32069. source: "./media/characters/raylldo/eye.svg"
  32070. }
  32071. },
  32072. },
  32073. [
  32074. {
  32075. name: "Normal",
  32076. height: math.unit(13, "meters"),
  32077. default: true
  32078. },
  32079. ]
  32080. ))
  32081. characterMakers.push(() => makeCharacter(
  32082. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32083. {
  32084. anthroFront: {
  32085. height: math.unit(9, "feet"),
  32086. weight: math.unit(600, "lb"),
  32087. name: "Anthro (Front)",
  32088. image: {
  32089. source: "./media/characters/glint/anthro-front.svg",
  32090. extra: 1097/1018,
  32091. bottom: 28/1125
  32092. }
  32093. },
  32094. anthroBack: {
  32095. height: math.unit(9, "feet"),
  32096. weight: math.unit(600, "lb"),
  32097. name: "Anthro (Back)",
  32098. image: {
  32099. source: "./media/characters/glint/anthro-back.svg",
  32100. extra: 1154/997,
  32101. bottom: 36/1190
  32102. }
  32103. },
  32104. feral: {
  32105. height: math.unit(11, "feet"),
  32106. weight: math.unit(50000, "lb"),
  32107. name: "Feral",
  32108. image: {
  32109. source: "./media/characters/glint/feral.svg",
  32110. extra: 3035/1585,
  32111. bottom: 1169/4204
  32112. }
  32113. },
  32114. dickAnthro: {
  32115. height: math.unit(0.7, "meters"),
  32116. name: "Dick (Anthro)",
  32117. image: {
  32118. source: "./media/characters/glint/dick-anthro.svg"
  32119. }
  32120. },
  32121. dickFeral: {
  32122. height: math.unit(2.65, "meters"),
  32123. name: "Dick (Feral)",
  32124. image: {
  32125. source: "./media/characters/glint/dick-feral.svg"
  32126. }
  32127. },
  32128. slitHidden: {
  32129. height: math.unit(5.85, "meters"),
  32130. name: "Slit (Hidden)",
  32131. image: {
  32132. source: "./media/characters/glint/slit-hidden.svg"
  32133. }
  32134. },
  32135. slitErect: {
  32136. height: math.unit(5.85, "meters"),
  32137. name: "Slit (Erect)",
  32138. image: {
  32139. source: "./media/characters/glint/slit-erect.svg"
  32140. }
  32141. },
  32142. mawAnthro: {
  32143. height: math.unit(0.63, "meters"),
  32144. name: "Maw (Anthro)",
  32145. image: {
  32146. source: "./media/characters/glint/maw.svg"
  32147. }
  32148. },
  32149. mawFeral: {
  32150. height: math.unit(2.89, "meters"),
  32151. name: "Maw (Feral)",
  32152. image: {
  32153. source: "./media/characters/glint/maw.svg"
  32154. }
  32155. },
  32156. },
  32157. [
  32158. {
  32159. name: "Normal",
  32160. height: math.unit(9, "feet"),
  32161. default: true
  32162. },
  32163. ]
  32164. ))
  32165. characterMakers.push(() => makeCharacter(
  32166. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32167. {
  32168. side: {
  32169. height: math.unit(15, "feet"),
  32170. weight: math.unit(5000, "kg"),
  32171. name: "Side",
  32172. image: {
  32173. source: "./media/characters/kairne/side.svg",
  32174. extra: 979/811,
  32175. bottom: 13/992
  32176. }
  32177. },
  32178. front: {
  32179. height: math.unit(15, "feet"),
  32180. weight: math.unit(5000, "kg"),
  32181. name: "Front",
  32182. image: {
  32183. source: "./media/characters/kairne/front.svg",
  32184. extra: 908/814,
  32185. bottom: 26/934
  32186. }
  32187. },
  32188. sideNsfw: {
  32189. height: math.unit(15, "feet"),
  32190. weight: math.unit(5000, "kg"),
  32191. name: "Side (NSFW)",
  32192. image: {
  32193. source: "./media/characters/kairne/side-nsfw.svg",
  32194. extra: 979/811,
  32195. bottom: 13/992
  32196. }
  32197. },
  32198. frontNsfw: {
  32199. height: math.unit(15, "feet"),
  32200. weight: math.unit(5000, "kg"),
  32201. name: "Front (NSFW)",
  32202. image: {
  32203. source: "./media/characters/kairne/front-nsfw.svg",
  32204. extra: 908/814,
  32205. bottom: 26/934
  32206. }
  32207. },
  32208. dickCaged: {
  32209. height: math.unit(0.65, "meters"),
  32210. name: "Dick-caged",
  32211. image: {
  32212. source: "./media/characters/kairne/dick-caged.svg"
  32213. }
  32214. },
  32215. dick: {
  32216. height: math.unit(0.79, "meters"),
  32217. name: "Dick",
  32218. image: {
  32219. source: "./media/characters/kairne/dick.svg"
  32220. }
  32221. },
  32222. genitals: {
  32223. height: math.unit(1.29, "meters"),
  32224. name: "Genitals",
  32225. image: {
  32226. source: "./media/characters/kairne/genitals.svg"
  32227. }
  32228. },
  32229. maw: {
  32230. height: math.unit(1.73, "meters"),
  32231. name: "Maw",
  32232. image: {
  32233. source: "./media/characters/kairne/maw.svg"
  32234. }
  32235. },
  32236. },
  32237. [
  32238. {
  32239. name: "Normal",
  32240. height: math.unit(15, "feet"),
  32241. default: true
  32242. },
  32243. ]
  32244. ))
  32245. characterMakers.push(() => makeCharacter(
  32246. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32247. {
  32248. front: {
  32249. height: math.unit(5 + 8/12, "feet"),
  32250. weight: math.unit(139, "lb"),
  32251. name: "Front",
  32252. image: {
  32253. source: "./media/characters/biscuit-jackal/front.svg",
  32254. extra: 2106/1961,
  32255. bottom: 58/2164
  32256. }
  32257. },
  32258. back: {
  32259. height: math.unit(5 + 8/12, "feet"),
  32260. weight: math.unit(139, "lb"),
  32261. name: "Back",
  32262. image: {
  32263. source: "./media/characters/biscuit-jackal/back.svg",
  32264. extra: 2132/1976,
  32265. bottom: 57/2189
  32266. }
  32267. },
  32268. werejackal: {
  32269. height: math.unit(6 + 3/12, "feet"),
  32270. weight: math.unit(188, "lb"),
  32271. name: "Werejackal",
  32272. image: {
  32273. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32274. extra: 2373/2178,
  32275. bottom: 53/2426
  32276. }
  32277. },
  32278. },
  32279. [
  32280. {
  32281. name: "Normal",
  32282. height: math.unit(5 + 8/12, "feet"),
  32283. default: true
  32284. },
  32285. ]
  32286. ))
  32287. characterMakers.push(() => makeCharacter(
  32288. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32289. {
  32290. front: {
  32291. height: math.unit(140, "cm"),
  32292. weight: math.unit(45, "kg"),
  32293. name: "Front",
  32294. image: {
  32295. source: "./media/characters/tayra-white/front.svg",
  32296. extra: 2229/2192,
  32297. bottom: 75/2304
  32298. }
  32299. },
  32300. },
  32301. [
  32302. {
  32303. name: "Normal",
  32304. height: math.unit(140, "cm"),
  32305. default: true
  32306. },
  32307. ]
  32308. ))
  32309. characterMakers.push(() => makeCharacter(
  32310. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32311. {
  32312. front: {
  32313. height: math.unit(4 + 5/12, "feet"),
  32314. name: "Front",
  32315. image: {
  32316. source: "./media/characters/scoop/front.svg",
  32317. extra: 1257/1136,
  32318. bottom: 69/1326
  32319. }
  32320. },
  32321. back: {
  32322. height: math.unit(4 + 5/12, "feet"),
  32323. name: "Back",
  32324. image: {
  32325. source: "./media/characters/scoop/back.svg",
  32326. extra: 1321/1152,
  32327. bottom: 32/1353
  32328. }
  32329. },
  32330. maw: {
  32331. height: math.unit(0.68, "feet"),
  32332. name: "Maw",
  32333. image: {
  32334. source: "./media/characters/scoop/maw.svg"
  32335. }
  32336. },
  32337. },
  32338. [
  32339. {
  32340. name: "Really Small",
  32341. height: math.unit(1, "mm")
  32342. },
  32343. {
  32344. name: "Micro",
  32345. height: math.unit(1, "inch")
  32346. },
  32347. {
  32348. name: "Normal",
  32349. height: math.unit(4 + 5/12, "feet"),
  32350. default: true
  32351. },
  32352. {
  32353. name: "Macro",
  32354. height: math.unit(200, "feet")
  32355. },
  32356. {
  32357. name: "Megamacro",
  32358. height: math.unit(3240, "feet")
  32359. },
  32360. {
  32361. name: "Teramacro",
  32362. height: math.unit(2500, "miles")
  32363. },
  32364. ]
  32365. ))
  32366. characterMakers.push(() => makeCharacter(
  32367. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32368. {
  32369. front: {
  32370. height: math.unit(15 + 7/12, "feet"),
  32371. name: "Front",
  32372. image: {
  32373. source: "./media/characters/saphinara/front.svg",
  32374. extra: 604/546,
  32375. bottom: 19/623
  32376. }
  32377. },
  32378. side: {
  32379. height: math.unit(15 + 7/12, "feet"),
  32380. name: "Side",
  32381. image: {
  32382. source: "./media/characters/saphinara/side.svg",
  32383. extra: 605/547,
  32384. bottom: 6/611
  32385. }
  32386. },
  32387. back: {
  32388. height: math.unit(15 + 7/12, "feet"),
  32389. name: "Back",
  32390. image: {
  32391. source: "./media/characters/saphinara/back.svg",
  32392. extra: 591/531,
  32393. bottom: 13/604
  32394. }
  32395. },
  32396. frontTail: {
  32397. height: math.unit(15 + 7/12, "feet"),
  32398. name: "Front (Full Tail)",
  32399. image: {
  32400. source: "./media/characters/saphinara/front-tail.svg",
  32401. extra: 748/547,
  32402. bottom: 66/814
  32403. }
  32404. },
  32405. },
  32406. [
  32407. {
  32408. name: "Normal",
  32409. height: math.unit(15 + 7/12, "feet"),
  32410. default: true
  32411. },
  32412. {
  32413. name: "Angry",
  32414. height: math.unit(30 + 6/12, "feet")
  32415. },
  32416. {
  32417. name: "Enraged",
  32418. height: math.unit(102 + 1/12, "feet")
  32419. },
  32420. ]
  32421. ))
  32422. characterMakers.push(() => makeCharacter(
  32423. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32424. {
  32425. front: {
  32426. height: math.unit(6 + 8/12, "feet"),
  32427. weight: math.unit(300, "lb"),
  32428. name: "Front",
  32429. image: {
  32430. source: "./media/characters/jrain/front.svg",
  32431. extra: 3039/2865,
  32432. bottom: 399/3438
  32433. }
  32434. },
  32435. back: {
  32436. height: math.unit(6 + 8/12, "feet"),
  32437. weight: math.unit(300, "lb"),
  32438. name: "Back",
  32439. image: {
  32440. source: "./media/characters/jrain/back.svg",
  32441. extra: 3089/2938,
  32442. bottom: 172/3261
  32443. }
  32444. },
  32445. head: {
  32446. height: math.unit(2.14, "feet"),
  32447. name: "Head",
  32448. image: {
  32449. source: "./media/characters/jrain/head.svg"
  32450. }
  32451. },
  32452. maw: {
  32453. height: math.unit(1.77, "feet"),
  32454. name: "Maw",
  32455. image: {
  32456. source: "./media/characters/jrain/maw.svg"
  32457. }
  32458. },
  32459. leftHand: {
  32460. height: math.unit(1.1, "feet"),
  32461. name: "Left Hand",
  32462. image: {
  32463. source: "./media/characters/jrain/left-hand.svg"
  32464. }
  32465. },
  32466. rightHand: {
  32467. height: math.unit(1.1, "feet"),
  32468. name: "Right Hand",
  32469. image: {
  32470. source: "./media/characters/jrain/right-hand.svg"
  32471. }
  32472. },
  32473. eye: {
  32474. height: math.unit(0.35, "feet"),
  32475. name: "Eye",
  32476. image: {
  32477. source: "./media/characters/jrain/eye.svg"
  32478. }
  32479. },
  32480. },
  32481. [
  32482. {
  32483. name: "Normal",
  32484. height: math.unit(6 + 8/12, "feet"),
  32485. default: true
  32486. },
  32487. {
  32488. name: "Casually Large",
  32489. height: math.unit(25, "feet")
  32490. },
  32491. {
  32492. name: "Giant",
  32493. height: math.unit(100, "feet")
  32494. },
  32495. {
  32496. name: "Kaiju",
  32497. height: math.unit(300, "feet")
  32498. },
  32499. ]
  32500. ))
  32501. characterMakers.push(() => makeCharacter(
  32502. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32503. {
  32504. dragon: {
  32505. height: math.unit(5, "meters"),
  32506. name: "Dragon",
  32507. image: {
  32508. source: "./media/characters/sabrina/dragon.svg",
  32509. extra: 3670 / 2365,
  32510. bottom: 333 / 4003
  32511. }
  32512. },
  32513. gryphon: {
  32514. height: math.unit(3, "meters"),
  32515. name: "Gryphon",
  32516. image: {
  32517. source: "./media/characters/sabrina/gryphon.svg",
  32518. extra: 1576 / 945,
  32519. bottom: 71 / 1647
  32520. }
  32521. },
  32522. snake: {
  32523. height: math.unit(12, "meters"),
  32524. name: "Snake",
  32525. image: {
  32526. source: "./media/characters/sabrina/snake.svg",
  32527. extra: 1758 / 1320,
  32528. bottom: 186 / 1944
  32529. }
  32530. },
  32531. collar: {
  32532. height: math.unit(1.86, "meters"),
  32533. name: "Collar",
  32534. image: {
  32535. source: "./media/characters/sabrina/collar.svg"
  32536. }
  32537. },
  32538. eye: {
  32539. height: math.unit(0.53, "meters"),
  32540. name: "Eye",
  32541. image: {
  32542. source: "./media/characters/sabrina/eye.svg"
  32543. }
  32544. },
  32545. foot: {
  32546. height: math.unit(1.86, "meters"),
  32547. name: "Foot",
  32548. image: {
  32549. source: "./media/characters/sabrina/foot.svg"
  32550. }
  32551. },
  32552. hand: {
  32553. height: math.unit(1.32, "meters"),
  32554. name: "Hand",
  32555. image: {
  32556. source: "./media/characters/sabrina/hand.svg"
  32557. }
  32558. },
  32559. head: {
  32560. height: math.unit(2.44, "meters"),
  32561. name: "Head",
  32562. image: {
  32563. source: "./media/characters/sabrina/head.svg"
  32564. }
  32565. },
  32566. headAngry: {
  32567. height: math.unit(2.44, "meters"),
  32568. name: "Head (Angry))",
  32569. image: {
  32570. source: "./media/characters/sabrina/head-angry.svg"
  32571. }
  32572. },
  32573. maw: {
  32574. height: math.unit(1.65, "meters"),
  32575. name: "Maw",
  32576. image: {
  32577. source: "./media/characters/sabrina/maw.svg"
  32578. }
  32579. },
  32580. spikes: {
  32581. height: math.unit(1.69, "meters"),
  32582. name: "Spikes",
  32583. image: {
  32584. source: "./media/characters/sabrina/spikes.svg"
  32585. }
  32586. },
  32587. stomach: {
  32588. height: math.unit(1.15, "meters"),
  32589. name: "Stomach",
  32590. image: {
  32591. source: "./media/characters/sabrina/stomach.svg"
  32592. }
  32593. },
  32594. tongue: {
  32595. height: math.unit(1.27, "meters"),
  32596. name: "Tongue",
  32597. image: {
  32598. source: "./media/characters/sabrina/tongue.svg"
  32599. }
  32600. },
  32601. wingDorsal: {
  32602. height: math.unit(4.85, "meters"),
  32603. name: "Wing (Dorsal)",
  32604. image: {
  32605. source: "./media/characters/sabrina/wing-dorsal.svg"
  32606. }
  32607. },
  32608. wingVentral: {
  32609. height: math.unit(4.85, "meters"),
  32610. name: "Wing (Ventral)",
  32611. image: {
  32612. source: "./media/characters/sabrina/wing-ventral.svg"
  32613. }
  32614. },
  32615. },
  32616. [
  32617. {
  32618. name: "Normal",
  32619. height: math.unit(5, "meters"),
  32620. default: true
  32621. },
  32622. ]
  32623. ))
  32624. characterMakers.push(() => makeCharacter(
  32625. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32626. {
  32627. frontMaid: {
  32628. height: math.unit(5 + 5/12, "feet"),
  32629. weight: math.unit(130, "lb"),
  32630. name: "Front (Maid)",
  32631. image: {
  32632. source: "./media/characters/midnight-tales/front-maid.svg",
  32633. extra: 489/454,
  32634. bottom: 61/550
  32635. }
  32636. },
  32637. frontFormal: {
  32638. height: math.unit(5 + 5/12, "feet"),
  32639. weight: math.unit(130, "lb"),
  32640. name: "Front (Formal)",
  32641. image: {
  32642. source: "./media/characters/midnight-tales/front-formal.svg",
  32643. extra: 489/454,
  32644. bottom: 61/550
  32645. }
  32646. },
  32647. back: {
  32648. height: math.unit(5 + 5/12, "feet"),
  32649. weight: math.unit(130, "lb"),
  32650. name: "Back",
  32651. image: {
  32652. source: "./media/characters/midnight-tales/back.svg",
  32653. extra: 498/456,
  32654. bottom: 33/531
  32655. }
  32656. },
  32657. frontBeast: {
  32658. height: math.unit(40, "feet"),
  32659. weight: math.unit(64000, "lb"),
  32660. name: "Front (Beast)",
  32661. image: {
  32662. source: "./media/characters/midnight-tales/front-beast.svg",
  32663. extra: 927/860,
  32664. bottom: 53/980
  32665. }
  32666. },
  32667. backBeast: {
  32668. height: math.unit(40, "feet"),
  32669. weight: math.unit(64000, "lb"),
  32670. name: "Back (Beast)",
  32671. image: {
  32672. source: "./media/characters/midnight-tales/back-beast.svg",
  32673. extra: 929/855,
  32674. bottom: 16/945
  32675. }
  32676. },
  32677. footBeast: {
  32678. height: math.unit(6.7, "feet"),
  32679. name: "Foot (Beast)",
  32680. image: {
  32681. source: "./media/characters/midnight-tales/foot-beast.svg"
  32682. }
  32683. },
  32684. headBeast: {
  32685. height: math.unit(8, "feet"),
  32686. name: "Head (Beast)",
  32687. image: {
  32688. source: "./media/characters/midnight-tales/head-beast.svg"
  32689. }
  32690. },
  32691. },
  32692. [
  32693. {
  32694. name: "Normal",
  32695. height: math.unit(5 + 5 / 12, "feet"),
  32696. default: true
  32697. },
  32698. {
  32699. name: "Macro",
  32700. height: math.unit(25, "feet")
  32701. },
  32702. ]
  32703. ))
  32704. characterMakers.push(() => makeCharacter(
  32705. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32706. {
  32707. front: {
  32708. height: math.unit(5 + 10/12, "feet"),
  32709. name: "Front",
  32710. image: {
  32711. source: "./media/characters/argon/front.svg",
  32712. extra: 2009/1935,
  32713. bottom: 118/2127
  32714. }
  32715. },
  32716. back: {
  32717. height: math.unit(5 + 10/12, "feet"),
  32718. name: "Back",
  32719. image: {
  32720. source: "./media/characters/argon/back.svg",
  32721. extra: 2047/1992,
  32722. bottom: 20/2067
  32723. }
  32724. },
  32725. frontDressed: {
  32726. height: math.unit(5 + 10/12, "feet"),
  32727. name: "Front (Dressed)",
  32728. image: {
  32729. source: "./media/characters/argon/front-dressed.svg",
  32730. extra: 2009/1935,
  32731. bottom: 118/2127
  32732. }
  32733. },
  32734. },
  32735. [
  32736. {
  32737. name: "Normal",
  32738. height: math.unit(5 + 10/12, "feet"),
  32739. default: true
  32740. },
  32741. ]
  32742. ))
  32743. characterMakers.push(() => makeCharacter(
  32744. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32745. {
  32746. front: {
  32747. height: math.unit(8 + 6/12, "feet"),
  32748. weight: math.unit(1150, "lb"),
  32749. name: "Front",
  32750. image: {
  32751. source: "./media/characters/kichi/front.svg",
  32752. extra: 1267/1164,
  32753. bottom: 61/1328
  32754. }
  32755. },
  32756. back: {
  32757. height: math.unit(8 + 6/12, "feet"),
  32758. weight: math.unit(1150, "lb"),
  32759. name: "Back",
  32760. image: {
  32761. source: "./media/characters/kichi/back.svg",
  32762. extra: 1273/1166,
  32763. bottom: 33/1306
  32764. }
  32765. },
  32766. },
  32767. [
  32768. {
  32769. name: "Normal",
  32770. height: math.unit(8 + 6/12, "feet"),
  32771. default: true
  32772. },
  32773. ]
  32774. ))
  32775. characterMakers.push(() => makeCharacter(
  32776. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32777. {
  32778. front: {
  32779. height: math.unit(6, "feet"),
  32780. weight: math.unit(210, "lb"),
  32781. name: "Front",
  32782. image: {
  32783. source: "./media/characters/manetel-greyscale/front.svg",
  32784. extra: 350/312,
  32785. bottom: 8/358
  32786. }
  32787. },
  32788. },
  32789. [
  32790. {
  32791. name: "Micro",
  32792. height: math.unit(2, "inches")
  32793. },
  32794. {
  32795. name: "Normal",
  32796. height: math.unit(6, "feet"),
  32797. default: true
  32798. },
  32799. {
  32800. name: "Minimacro",
  32801. height: math.unit(17, "feet")
  32802. },
  32803. {
  32804. name: "Macro",
  32805. height: math.unit(117, "feet")
  32806. },
  32807. ]
  32808. ))
  32809. characterMakers.push(() => makeCharacter(
  32810. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32811. {
  32812. side: {
  32813. height: math.unit(5 + 1/12, "feet"),
  32814. weight: math.unit(418, "lb"),
  32815. name: "Side",
  32816. image: {
  32817. source: "./media/characters/softpurr/side.svg",
  32818. extra: 1993/1945,
  32819. bottom: 134/2127
  32820. }
  32821. },
  32822. front: {
  32823. height: math.unit(5 + 1/12, "feet"),
  32824. weight: math.unit(418, "lb"),
  32825. name: "Front",
  32826. image: {
  32827. source: "./media/characters/softpurr/front.svg",
  32828. extra: 1950/1856,
  32829. bottom: 174/2124
  32830. }
  32831. },
  32832. paw: {
  32833. height: math.unit(1, "feet"),
  32834. name: "Paw",
  32835. image: {
  32836. source: "./media/characters/softpurr/paw.svg"
  32837. }
  32838. },
  32839. },
  32840. [
  32841. {
  32842. name: "Normal",
  32843. height: math.unit(5 + 1/12, "feet"),
  32844. default: true
  32845. },
  32846. ]
  32847. ))
  32848. characterMakers.push(() => makeCharacter(
  32849. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32850. {
  32851. front: {
  32852. height: math.unit(260, "meters"),
  32853. name: "Front",
  32854. image: {
  32855. source: "./media/characters/anahita/front.svg",
  32856. extra: 665/635,
  32857. bottom: 89/754
  32858. }
  32859. },
  32860. },
  32861. [
  32862. {
  32863. name: "Macro",
  32864. height: math.unit(260, "meters"),
  32865. default: true
  32866. },
  32867. ]
  32868. ))
  32869. characterMakers.push(() => makeCharacter(
  32870. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32871. {
  32872. front: {
  32873. height: math.unit(4 + 10/12, "feet"),
  32874. weight: math.unit(160, "lb"),
  32875. name: "Front",
  32876. image: {
  32877. source: "./media/characters/chip-mouse/front.svg",
  32878. extra: 3528/3408,
  32879. bottom: 0/3528
  32880. }
  32881. },
  32882. frontNsfw: {
  32883. height: math.unit(4 + 10/12, "feet"),
  32884. weight: math.unit(160, "lb"),
  32885. name: "Front (NSFW)",
  32886. image: {
  32887. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32888. extra: 3528/3408,
  32889. bottom: 0/3528
  32890. }
  32891. },
  32892. },
  32893. [
  32894. {
  32895. name: "Normal",
  32896. height: math.unit(4 + 10/12, "feet"),
  32897. default: true
  32898. },
  32899. ]
  32900. ))
  32901. characterMakers.push(() => makeCharacter(
  32902. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32903. {
  32904. side: {
  32905. height: math.unit(10, "feet"),
  32906. weight: math.unit(14000, "lb"),
  32907. name: "Side",
  32908. image: {
  32909. source: "./media/characters/kremm/side.svg",
  32910. extra: 1390/1053,
  32911. bottom: 90/1480
  32912. }
  32913. },
  32914. gut: {
  32915. height: math.unit(5.8, "feet"),
  32916. name: "Gut",
  32917. image: {
  32918. source: "./media/characters/kremm/gut.svg"
  32919. }
  32920. },
  32921. ass: {
  32922. height: math.unit(6.1, "feet"),
  32923. name: "Ass",
  32924. image: {
  32925. source: "./media/characters/kremm/ass.svg"
  32926. }
  32927. },
  32928. jaws: {
  32929. height: math.unit(2.2, "feet"),
  32930. name: "Jaws",
  32931. image: {
  32932. source: "./media/characters/kremm/jaws.svg"
  32933. }
  32934. },
  32935. dick: {
  32936. height: math.unit(4.26, "feet"),
  32937. name: "Dick",
  32938. image: {
  32939. source: "./media/characters/kremm/dick.svg"
  32940. }
  32941. },
  32942. },
  32943. [
  32944. {
  32945. name: "Normal",
  32946. height: math.unit(10, "feet"),
  32947. default: true
  32948. },
  32949. ]
  32950. ))
  32951. characterMakers.push(() => makeCharacter(
  32952. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  32953. {
  32954. front: {
  32955. height: math.unit(30, "stories"),
  32956. name: "Front",
  32957. image: {
  32958. source: "./media/characters/kai/front.svg",
  32959. extra: 1892/1718,
  32960. bottom: 162/2054
  32961. }
  32962. },
  32963. },
  32964. [
  32965. {
  32966. name: "Macro",
  32967. height: math.unit(30, "stories"),
  32968. default: true
  32969. },
  32970. ]
  32971. ))
  32972. characterMakers.push(() => makeCharacter(
  32973. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  32974. {
  32975. front: {
  32976. height: math.unit(6 + 4/12, "feet"),
  32977. weight: math.unit(145, "lb"),
  32978. name: "Front",
  32979. image: {
  32980. source: "./media/characters/sykes/front.svg",
  32981. extra: 1321 / 1187,
  32982. bottom: 66 / 1387
  32983. }
  32984. },
  32985. back: {
  32986. height: math.unit(6 + 4/12, "feet"),
  32987. weight: math.unit(145, "lb"),
  32988. name: "Back",
  32989. image: {
  32990. source: "./media/characters/sykes/back.svg",
  32991. extra: 1326/1181,
  32992. bottom: 31/1357
  32993. }
  32994. },
  32995. handBack: {
  32996. height: math.unit(0.9, "feet"),
  32997. name: "Hand (Back)",
  32998. image: {
  32999. source: "./media/characters/sykes/hand-back.svg"
  33000. }
  33001. },
  33002. handFront: {
  33003. height: math.unit(0.839, "feet"),
  33004. name: "Hand (Front)",
  33005. image: {
  33006. source: "./media/characters/sykes/hand-front.svg"
  33007. }
  33008. },
  33009. leftFoot: {
  33010. height: math.unit(1.2, "feet"),
  33011. name: "Foot (Left)",
  33012. image: {
  33013. source: "./media/characters/sykes/foot-left.svg"
  33014. }
  33015. },
  33016. rightFoot: {
  33017. height: math.unit(1.2, "feet"),
  33018. name: "Foot (Right)",
  33019. image: {
  33020. source: "./media/characters/sykes/foot-right.svg"
  33021. }
  33022. },
  33023. maw: {
  33024. height: math.unit(1.93, "feet"),
  33025. name: "Maw",
  33026. image: {
  33027. source: "./media/characters/sykes/maw.svg"
  33028. }
  33029. },
  33030. teeth: {
  33031. height: math.unit(0.51, "feet"),
  33032. name: "Teeth",
  33033. image: {
  33034. source: "./media/characters/sykes/teeth.svg"
  33035. }
  33036. },
  33037. tongue: {
  33038. height: math.unit(2.13, "feet"),
  33039. name: "Tongue",
  33040. image: {
  33041. source: "./media/characters/sykes/tongue.svg"
  33042. }
  33043. },
  33044. uvula: {
  33045. height: math.unit(0.16, "feet"),
  33046. name: "Uvula",
  33047. image: {
  33048. source: "./media/characters/sykes/uvula.svg"
  33049. }
  33050. },
  33051. collar: {
  33052. height: math.unit(0.287, "feet"),
  33053. name: "Collar",
  33054. image: {
  33055. source: "./media/characters/sykes/collar.svg"
  33056. }
  33057. },
  33058. },
  33059. [
  33060. {
  33061. name: "Shrunken",
  33062. height: math.unit(5, "inches")
  33063. },
  33064. {
  33065. name: "Normal",
  33066. height: math.unit(6 + 4 / 12, "feet"),
  33067. default: true
  33068. },
  33069. {
  33070. name: "Big",
  33071. height: math.unit(15, "feet")
  33072. },
  33073. ]
  33074. ))
  33075. characterMakers.push(() => makeCharacter(
  33076. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33077. {
  33078. front: {
  33079. height: math.unit(5 + 8/12, "feet"),
  33080. weight: math.unit(190, "lb"),
  33081. name: "Front",
  33082. image: {
  33083. source: "./media/characters/oven-otter/front.svg",
  33084. extra: 1809/1740,
  33085. bottom: 181/1990
  33086. }
  33087. },
  33088. back: {
  33089. height: math.unit(5 + 8/12, "feet"),
  33090. weight: math.unit(190, "lb"),
  33091. name: "Back",
  33092. image: {
  33093. source: "./media/characters/oven-otter/back.svg",
  33094. extra: 1709/1635,
  33095. bottom: 118/1827
  33096. }
  33097. },
  33098. hand: {
  33099. height: math.unit(1.07, "feet"),
  33100. name: "Hand",
  33101. image: {
  33102. source: "./media/characters/oven-otter/hand.svg"
  33103. }
  33104. },
  33105. beans: {
  33106. height: math.unit(1.74, "feet"),
  33107. name: "Beans",
  33108. image: {
  33109. source: "./media/characters/oven-otter/beans.svg"
  33110. }
  33111. },
  33112. },
  33113. [
  33114. {
  33115. name: "Micro",
  33116. height: math.unit(0.5, "inches")
  33117. },
  33118. {
  33119. name: "Normal",
  33120. height: math.unit(5 + 8/12, "feet"),
  33121. default: true
  33122. },
  33123. {
  33124. name: "Macro",
  33125. height: math.unit(250, "feet")
  33126. },
  33127. {
  33128. name: "Really High",
  33129. height: math.unit(420, "feet")
  33130. },
  33131. ]
  33132. ))
  33133. characterMakers.push(() => makeCharacter(
  33134. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33135. {
  33136. front: {
  33137. height: math.unit(5, "meters"),
  33138. weight: math.unit(292000000000000, "kg"),
  33139. name: "Front",
  33140. image: {
  33141. source: "./media/characters/devourer/front.svg",
  33142. extra: 1800/1733,
  33143. bottom: 211/2011
  33144. }
  33145. },
  33146. maw: {
  33147. height: math.unit(1.1, "meter"),
  33148. name: "Maw",
  33149. image: {
  33150. source: "./media/characters/devourer/maw.svg"
  33151. }
  33152. },
  33153. },
  33154. [
  33155. {
  33156. name: "Small",
  33157. height: math.unit(3, "meters")
  33158. },
  33159. {
  33160. name: "Large",
  33161. height: math.unit(5, "meters"),
  33162. default: true
  33163. },
  33164. ]
  33165. ))
  33166. characterMakers.push(() => makeCharacter(
  33167. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33168. {
  33169. front: {
  33170. height: math.unit(6, "feet"),
  33171. weight: math.unit(400, "lb"),
  33172. name: "Front",
  33173. image: {
  33174. source: "./media/characters/ellarby/front.svg",
  33175. extra: 1909/1763,
  33176. bottom: 80/1989
  33177. }
  33178. },
  33179. back: {
  33180. height: math.unit(6, "feet"),
  33181. weight: math.unit(400, "lb"),
  33182. name: "Back",
  33183. image: {
  33184. source: "./media/characters/ellarby/back.svg",
  33185. extra: 1914/1784,
  33186. bottom: 172/2086
  33187. }
  33188. },
  33189. },
  33190. [
  33191. {
  33192. name: "Mischief",
  33193. height: math.unit(18, "inches")
  33194. },
  33195. {
  33196. name: "Trouble",
  33197. height: math.unit(12, "feet")
  33198. },
  33199. {
  33200. name: "Havoc",
  33201. height: math.unit(200, "feet"),
  33202. default: true
  33203. },
  33204. {
  33205. name: "Pandemonium",
  33206. height: math.unit(1, "mile")
  33207. },
  33208. {
  33209. name: "Catastrophe",
  33210. height: math.unit(100, "miles")
  33211. },
  33212. ]
  33213. ))
  33214. characterMakers.push(() => makeCharacter(
  33215. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33216. {
  33217. front: {
  33218. height: math.unit(4.7, "meters"),
  33219. weight: math.unit(6500, "kg"),
  33220. name: "Front",
  33221. image: {
  33222. source: "./media/characters/vex/front.svg",
  33223. extra: 1288/1140,
  33224. bottom: 100/1388
  33225. }
  33226. },
  33227. },
  33228. [
  33229. {
  33230. name: "Normal",
  33231. height: math.unit(4.7, "meters"),
  33232. default: true
  33233. },
  33234. ]
  33235. ))
  33236. characterMakers.push(() => makeCharacter(
  33237. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33238. {
  33239. normal: {
  33240. height: math.unit(6, "feet"),
  33241. weight: math.unit(350, "lb"),
  33242. name: "Normal",
  33243. image: {
  33244. source: "./media/characters/teshy/normal.svg",
  33245. extra: 1795/1735,
  33246. bottom: 16/1811
  33247. }
  33248. },
  33249. monsterFront: {
  33250. height: math.unit(12, "feet"),
  33251. weight: math.unit(4700, "lb"),
  33252. name: "Monster (Front)",
  33253. image: {
  33254. source: "./media/characters/teshy/monster-front.svg",
  33255. extra: 2042/2034,
  33256. bottom: 128/2170
  33257. }
  33258. },
  33259. monsterSide: {
  33260. height: math.unit(12, "feet"),
  33261. weight: math.unit(4700, "lb"),
  33262. name: "Monster (Side)",
  33263. image: {
  33264. source: "./media/characters/teshy/monster-side.svg",
  33265. extra: 2067/2056,
  33266. bottom: 70/2137
  33267. }
  33268. },
  33269. monsterBack: {
  33270. height: math.unit(12, "feet"),
  33271. weight: math.unit(4700, "lb"),
  33272. name: "Monster (Back)",
  33273. image: {
  33274. source: "./media/characters/teshy/monster-back.svg",
  33275. extra: 1921/1914,
  33276. bottom: 171/2092
  33277. }
  33278. },
  33279. },
  33280. [
  33281. {
  33282. name: "Normal",
  33283. height: math.unit(6, "feet"),
  33284. default: true
  33285. },
  33286. ]
  33287. ))
  33288. characterMakers.push(() => makeCharacter(
  33289. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33290. {
  33291. front: {
  33292. height: math.unit(6, "feet"),
  33293. name: "Front",
  33294. image: {
  33295. source: "./media/characters/ramey/front.svg",
  33296. extra: 790/787,
  33297. bottom: 27/817
  33298. }
  33299. },
  33300. },
  33301. [
  33302. {
  33303. name: "Normal",
  33304. height: math.unit(6, "feet"),
  33305. default: true
  33306. },
  33307. ]
  33308. ))
  33309. characterMakers.push(() => makeCharacter(
  33310. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33311. {
  33312. front: {
  33313. height: math.unit(5 + 5/12, "feet"),
  33314. weight: math.unit(120, "lb"),
  33315. name: "Front",
  33316. image: {
  33317. source: "./media/characters/phirae/front.svg",
  33318. extra: 2491/2436,
  33319. bottom: 38/2529
  33320. }
  33321. },
  33322. },
  33323. [
  33324. {
  33325. name: "Normal",
  33326. height: math.unit(5 + 5/12, "feet"),
  33327. default: true
  33328. },
  33329. ]
  33330. ))
  33331. characterMakers.push(() => makeCharacter(
  33332. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33333. {
  33334. front: {
  33335. height: math.unit(6, "feet"),
  33336. weight: math.unit(150, "lb"),
  33337. name: "Front",
  33338. image: {
  33339. source: "./media/characters/stagglas/front.svg",
  33340. extra: 962/882,
  33341. bottom: 53/1015
  33342. }
  33343. },
  33344. },
  33345. [
  33346. {
  33347. name: "Normal",
  33348. height: math.unit(5 + 3/12, "feet"),
  33349. default: true
  33350. },
  33351. ]
  33352. ))
  33353. characterMakers.push(() => makeCharacter(
  33354. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33355. {
  33356. front: {
  33357. height: math.unit(5 + 4/12, "feet"),
  33358. weight: math.unit(145, "lb"),
  33359. name: "Front",
  33360. image: {
  33361. source: "./media/characters/starra/front.svg",
  33362. extra: 1790/1691,
  33363. bottom: 91/1881
  33364. }
  33365. },
  33366. },
  33367. [
  33368. {
  33369. name: "Normal",
  33370. height: math.unit(5 + 4/12, "feet"),
  33371. default: true
  33372. },
  33373. ]
  33374. ))
  33375. characterMakers.push(() => makeCharacter(
  33376. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33377. {
  33378. front: {
  33379. height: math.unit(2.2, "meters"),
  33380. name: "Front",
  33381. image: {
  33382. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33383. extra: 1194/1005,
  33384. bottom: 25/1219
  33385. }
  33386. },
  33387. },
  33388. [
  33389. {
  33390. name: "Normal",
  33391. height: math.unit(2.2, "meters"),
  33392. default: true
  33393. },
  33394. ]
  33395. ))
  33396. characterMakers.push(() => makeCharacter(
  33397. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33398. {
  33399. side: {
  33400. height: math.unit(8 + 2/12, "feet"),
  33401. weight: math.unit(1240, "lb"),
  33402. name: "Side",
  33403. image: {
  33404. source: "./media/characters/mika-valentine/side.svg",
  33405. extra: 2670/2501,
  33406. bottom: 250/2920
  33407. }
  33408. },
  33409. },
  33410. [
  33411. {
  33412. name: "Normal",
  33413. height: math.unit(8 + 2/12, "feet"),
  33414. default: true
  33415. },
  33416. ]
  33417. ))
  33418. characterMakers.push(() => makeCharacter(
  33419. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33420. {
  33421. front: {
  33422. height: math.unit(7 + 2/12, "feet"),
  33423. name: "Front",
  33424. image: {
  33425. source: "./media/characters/xoltol/front.svg",
  33426. extra: 2212/2124,
  33427. bottom: 84/2296
  33428. }
  33429. },
  33430. side: {
  33431. height: math.unit(7 + 2/12, "feet"),
  33432. name: "Side",
  33433. image: {
  33434. source: "./media/characters/xoltol/side.svg",
  33435. extra: 2273/2197,
  33436. bottom: 26/2299
  33437. }
  33438. },
  33439. hand: {
  33440. height: math.unit(2.5, "feet"),
  33441. name: "Hand",
  33442. image: {
  33443. source: "./media/characters/xoltol/hand.svg"
  33444. }
  33445. },
  33446. },
  33447. [
  33448. {
  33449. name: "Small-ish",
  33450. height: math.unit(5 + 11/12, "feet")
  33451. },
  33452. {
  33453. name: "Normal",
  33454. height: math.unit(7 + 2/12, "feet")
  33455. },
  33456. {
  33457. name: "\"Macro\"",
  33458. height: math.unit(14 + 9/12, "feet"),
  33459. default: true
  33460. },
  33461. {
  33462. name: "Alternate Height",
  33463. height: math.unit(20, "feet")
  33464. },
  33465. {
  33466. name: "Actually Macro",
  33467. height: math.unit(100, "feet")
  33468. },
  33469. ]
  33470. ))
  33471. characterMakers.push(() => makeCharacter(
  33472. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33473. {
  33474. front: {
  33475. height: math.unit(5 + 2/12, "feet"),
  33476. name: "Front",
  33477. image: {
  33478. source: "./media/characters/kotetsu-redwood/front.svg",
  33479. extra: 1053/942,
  33480. bottom: 60/1113
  33481. }
  33482. },
  33483. },
  33484. [
  33485. {
  33486. name: "Normal",
  33487. height: math.unit(5 + 2/12, "feet"),
  33488. default: true
  33489. },
  33490. ]
  33491. ))
  33492. characterMakers.push(() => makeCharacter(
  33493. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33494. {
  33495. front: {
  33496. height: math.unit(2.4, "meters"),
  33497. weight: math.unit(125, "kg"),
  33498. name: "Front",
  33499. image: {
  33500. source: "./media/characters/lilith/front.svg",
  33501. extra: 1590/1513,
  33502. bottom: 203/1793
  33503. }
  33504. },
  33505. },
  33506. [
  33507. {
  33508. name: "Humanoid",
  33509. height: math.unit(2.4, "meters")
  33510. },
  33511. {
  33512. name: "Normal",
  33513. height: math.unit(6, "meters"),
  33514. default: true
  33515. },
  33516. {
  33517. name: "Largest",
  33518. height: math.unit(55, "meters")
  33519. },
  33520. ]
  33521. ))
  33522. characterMakers.push(() => makeCharacter(
  33523. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33524. {
  33525. front: {
  33526. height: math.unit(8 + 4/12, "feet"),
  33527. weight: math.unit(535, "lb"),
  33528. name: "Front",
  33529. image: {
  33530. source: "./media/characters/beh'kah-bolger/front.svg",
  33531. extra: 1660/1603,
  33532. bottom: 37/1697
  33533. }
  33534. },
  33535. },
  33536. [
  33537. {
  33538. name: "Normal",
  33539. height: math.unit(8 + 4/12, "feet"),
  33540. default: true
  33541. },
  33542. {
  33543. name: "Kaiju",
  33544. height: math.unit(250, "feet")
  33545. },
  33546. {
  33547. name: "Still Growing",
  33548. height: math.unit(10, "miles")
  33549. },
  33550. {
  33551. name: "Continental",
  33552. height: math.unit(5000, "miles")
  33553. },
  33554. {
  33555. name: "Final Form",
  33556. height: math.unit(2500000, "miles")
  33557. },
  33558. ]
  33559. ))
  33560. characterMakers.push(() => makeCharacter(
  33561. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33562. {
  33563. front: {
  33564. height: math.unit(7 + 2/12, "feet"),
  33565. weight: math.unit(230, "kg"),
  33566. name: "Front",
  33567. image: {
  33568. source: "./media/characters/tatyana-milewska/front.svg",
  33569. extra: 1199/1150,
  33570. bottom: 86/1285
  33571. }
  33572. },
  33573. },
  33574. [
  33575. {
  33576. name: "Normal",
  33577. height: math.unit(7 + 2/12, "feet"),
  33578. default: true
  33579. },
  33580. {
  33581. name: "Big",
  33582. height: math.unit(12, "feet")
  33583. },
  33584. {
  33585. name: "Minimacro",
  33586. height: math.unit(20, "feet")
  33587. },
  33588. {
  33589. name: "Macro",
  33590. height: math.unit(120, "feet")
  33591. },
  33592. ]
  33593. ))
  33594. characterMakers.push(() => makeCharacter(
  33595. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33596. {
  33597. front: {
  33598. height: math.unit(7 + 8/12, "feet"),
  33599. weight: math.unit(152, "kg"),
  33600. name: "Front",
  33601. image: {
  33602. source: "./media/characters/helen-arri/front.svg",
  33603. extra: 440/423,
  33604. bottom: 14/454
  33605. }
  33606. },
  33607. back: {
  33608. height: math.unit(7 + 8/12, "feet"),
  33609. weight: math.unit(152, "kg"),
  33610. name: "Back",
  33611. image: {
  33612. source: "./media/characters/helen-arri/back.svg",
  33613. extra: 443/426,
  33614. bottom: 8/451
  33615. }
  33616. },
  33617. },
  33618. [
  33619. {
  33620. name: "Normal",
  33621. height: math.unit(7 + 8/12, "feet"),
  33622. default: true
  33623. },
  33624. {
  33625. name: "Big",
  33626. height: math.unit(14, "feet")
  33627. },
  33628. {
  33629. name: "Minimacro",
  33630. height: math.unit(24, "feet")
  33631. },
  33632. {
  33633. name: "Macro",
  33634. height: math.unit(140, "feet")
  33635. },
  33636. ]
  33637. ))
  33638. characterMakers.push(() => makeCharacter(
  33639. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33640. {
  33641. front: {
  33642. height: math.unit(6, "meters"),
  33643. name: "Front",
  33644. image: {
  33645. source: "./media/characters/ehanu-rehu/front.svg",
  33646. extra: 1800/1800,
  33647. bottom: 59/1859
  33648. }
  33649. },
  33650. },
  33651. [
  33652. {
  33653. name: "Normal",
  33654. height: math.unit(6, "meters"),
  33655. default: true
  33656. },
  33657. ]
  33658. ))
  33659. characterMakers.push(() => makeCharacter(
  33660. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33661. {
  33662. front: {
  33663. height: math.unit(7 + 3/12, "feet"),
  33664. name: "Front",
  33665. image: {
  33666. source: "./media/characters/renholder/front.svg",
  33667. extra: 3096/2960,
  33668. bottom: 250/3346
  33669. }
  33670. },
  33671. },
  33672. [
  33673. {
  33674. name: "Normal Bat",
  33675. height: math.unit(7 + 3/12, "feet"),
  33676. default: true
  33677. },
  33678. {
  33679. name: "Slightly Tall Bat",
  33680. height: math.unit(100, "feet")
  33681. },
  33682. {
  33683. name: "Big Bat",
  33684. height: math.unit(1000, "feet")
  33685. },
  33686. {
  33687. name: "City-Sized Bat",
  33688. height: math.unit(200000, "feet")
  33689. },
  33690. {
  33691. name: "Bigger Bat",
  33692. height: math.unit(10000, "miles")
  33693. },
  33694. {
  33695. name: "Solar Sized Bat",
  33696. height: math.unit(100, "AU")
  33697. },
  33698. {
  33699. name: "Galactic Bat",
  33700. height: math.unit(200000, "lightyears")
  33701. },
  33702. {
  33703. name: "Universally Known Bat",
  33704. height: math.unit(1, "universe")
  33705. },
  33706. ]
  33707. ))
  33708. characterMakers.push(() => makeCharacter(
  33709. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33710. {
  33711. front: {
  33712. height: math.unit(6 + 11/12, "feet"),
  33713. weight: math.unit(250, "lb"),
  33714. name: "Front",
  33715. image: {
  33716. source: "./media/characters/cookiecat/front.svg",
  33717. extra: 893/827,
  33718. bottom: 14/907
  33719. }
  33720. },
  33721. },
  33722. [
  33723. {
  33724. name: "Micro",
  33725. height: math.unit(3, "inches")
  33726. },
  33727. {
  33728. name: "Normal",
  33729. height: math.unit(6 + 11/12, "feet"),
  33730. default: true
  33731. },
  33732. {
  33733. name: "Macro",
  33734. height: math.unit(100, "feet")
  33735. },
  33736. {
  33737. name: "Macro+",
  33738. height: math.unit(404, "feet")
  33739. },
  33740. {
  33741. name: "Megamacro",
  33742. height: math.unit(165, "miles")
  33743. },
  33744. {
  33745. name: "Planetary",
  33746. height: math.unit(4600, "miles")
  33747. },
  33748. ]
  33749. ))
  33750. characterMakers.push(() => makeCharacter(
  33751. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33752. {
  33753. front: {
  33754. height: math.unit(10 + 3/12, "feet"),
  33755. weight: math.unit(1500, "lb"),
  33756. name: "Front",
  33757. image: {
  33758. source: "./media/characters/tux-kusanagi/front.svg",
  33759. extra: 944/840,
  33760. bottom: 39/983
  33761. }
  33762. },
  33763. back: {
  33764. height: math.unit(10 + 3/12, "feet"),
  33765. weight: math.unit(1500, "lb"),
  33766. name: "Back",
  33767. image: {
  33768. source: "./media/characters/tux-kusanagi/back.svg",
  33769. extra: 941/842,
  33770. bottom: 28/969
  33771. }
  33772. },
  33773. rump: {
  33774. height: math.unit(5.25, "feet"),
  33775. name: "Rump",
  33776. image: {
  33777. source: "./media/characters/tux-kusanagi/rump.svg"
  33778. }
  33779. },
  33780. beak: {
  33781. height: math.unit(1.54, "feet"),
  33782. name: "Beak",
  33783. image: {
  33784. source: "./media/characters/tux-kusanagi/beak.svg"
  33785. }
  33786. },
  33787. },
  33788. [
  33789. {
  33790. name: "Normal",
  33791. height: math.unit(10 + 3/12, "feet"),
  33792. default: true
  33793. },
  33794. ]
  33795. ))
  33796. characterMakers.push(() => makeCharacter(
  33797. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33798. {
  33799. front: {
  33800. height: math.unit(58, "feet"),
  33801. weight: math.unit(200, "tons"),
  33802. name: "Front",
  33803. image: {
  33804. source: "./media/characters/uzarmazari/front.svg",
  33805. extra: 1575/1455,
  33806. bottom: 152/1727
  33807. }
  33808. },
  33809. back: {
  33810. height: math.unit(58, "feet"),
  33811. weight: math.unit(200, "tons"),
  33812. name: "Back",
  33813. image: {
  33814. source: "./media/characters/uzarmazari/back.svg",
  33815. extra: 1585/1510,
  33816. bottom: 157/1742
  33817. }
  33818. },
  33819. head: {
  33820. height: math.unit(26, "feet"),
  33821. name: "Head",
  33822. image: {
  33823. source: "./media/characters/uzarmazari/head.svg"
  33824. }
  33825. },
  33826. },
  33827. [
  33828. {
  33829. name: "Normal",
  33830. height: math.unit(58, "feet"),
  33831. default: true
  33832. },
  33833. ]
  33834. ))
  33835. characterMakers.push(() => makeCharacter(
  33836. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33837. {
  33838. side: {
  33839. height: math.unit(15, "feet"),
  33840. name: "Side",
  33841. image: {
  33842. source: "./media/characters/akitu/side.svg",
  33843. extra: 1421/1321,
  33844. bottom: 157/1578
  33845. }
  33846. },
  33847. front: {
  33848. height: math.unit(15, "feet"),
  33849. name: "Front",
  33850. image: {
  33851. source: "./media/characters/akitu/front.svg",
  33852. extra: 1435/1326,
  33853. bottom: 232/1667
  33854. }
  33855. },
  33856. },
  33857. [
  33858. {
  33859. name: "Normal",
  33860. height: math.unit(15, "feet"),
  33861. default: true
  33862. },
  33863. ]
  33864. ))
  33865. characterMakers.push(() => makeCharacter(
  33866. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33867. {
  33868. front: {
  33869. height: math.unit(10 + 8/12, "feet"),
  33870. name: "Front",
  33871. image: {
  33872. source: "./media/characters/azalie-croixland/front.svg",
  33873. extra: 1972/1856,
  33874. bottom: 31/2003
  33875. }
  33876. },
  33877. },
  33878. [
  33879. {
  33880. name: "Original Height",
  33881. height: math.unit(5 + 4/12, "feet")
  33882. },
  33883. {
  33884. name: "Normal Height",
  33885. height: math.unit(10 + 8/12, "feet"),
  33886. default: true
  33887. },
  33888. ]
  33889. ))
  33890. characterMakers.push(() => makeCharacter(
  33891. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  33892. {
  33893. side: {
  33894. height: math.unit(7 + 1/12, "feet"),
  33895. weight: math.unit(245, "lb"),
  33896. name: "Side",
  33897. image: {
  33898. source: "./media/characters/kavus-kazian/side.svg",
  33899. extra: 349/342,
  33900. bottom: 15/364
  33901. }
  33902. },
  33903. },
  33904. [
  33905. {
  33906. name: "Normal",
  33907. height: math.unit(7 + 1/12, "feet"),
  33908. default: true
  33909. },
  33910. ]
  33911. ))
  33912. characterMakers.push(() => makeCharacter(
  33913. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  33914. {
  33915. normal: {
  33916. height: math.unit(5 + 11/12, "feet"),
  33917. name: "Normal",
  33918. image: {
  33919. source: "./media/characters/moonlight-rose/normal.svg",
  33920. extra: 1979/1835,
  33921. bottom: 14/1993
  33922. }
  33923. },
  33924. demon: {
  33925. height: math.unit(5, "km"),
  33926. name: "Demon",
  33927. image: {
  33928. source: "./media/characters/moonlight-rose/demon.svg",
  33929. extra: 986/916,
  33930. bottom: 28/1014
  33931. }
  33932. },
  33933. },
  33934. [
  33935. {
  33936. name: "\"Natural\" height",
  33937. height: math.unit(5 + 11/12, "feet")
  33938. },
  33939. {
  33940. name: "Comfortable Size",
  33941. height: math.unit(40, "meters")
  33942. },
  33943. {
  33944. name: "Common Size",
  33945. height: math.unit(50, "km"),
  33946. default: true
  33947. },
  33948. {
  33949. name: "Demonic",
  33950. height: math.unit(1.24415e+21, "meters")
  33951. },
  33952. ]
  33953. ))
  33954. //characters
  33955. function makeCharacters() {
  33956. const results = [];
  33957. characterMakers.forEach(character => {
  33958. results.push(character());
  33959. });
  33960. return results;
  33961. }